LLVM 20.0.0git
HLSLResource.cpp
Go to the documentation of this file.
1//===- HLSLResource.cpp - HLSL Resource helper objects --------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file This file contains helper objects for working with HLSL Resources.
10///
11//===----------------------------------------------------------------------===//
12
14#include "llvm/IR/IRBuilder.h"
15#include "llvm/IR/Metadata.h"
16
17using namespace llvm;
18using namespace llvm::hlsl;
19
21 return cast<GlobalVariable>(
22 cast<ConstantAsMetadata>(Entry->getOperand(0))->getValue());
23}
24
26 return static_cast<ResourceKind>(
27 cast<ConstantInt>(
28 cast<ConstantAsMetadata>(Entry->getOperand(1))->getValue())
29 ->getLimitedValue());
30}
32 return static_cast<ElementType>(
33 cast<ConstantInt>(
34 cast<ConstantAsMetadata>(Entry->getOperand(2))->getValue())
35 ->getLimitedValue());
36}
38 return cast<ConstantInt>(
39 cast<ConstantAsMetadata>(Entry->getOperand(3))->getValue())
40 ->getLimitedValue();
41}
43 return cast<ConstantInt>(
44 cast<ConstantAsMetadata>(Entry->getOperand(4))->getValue())
45 ->getLimitedValue();
46}
48 return cast<ConstantInt>(
49 cast<ConstantAsMetadata>(Entry->getOperand(5))->getValue())
50 ->getLimitedValue();
51}
52
54 assert(Entry->getNumOperands() == 6 && "Unexpected metadata shape");
55}
56
58 ElementType ElTy, bool IsROV,
59 uint32_t ResIndex, uint32_t Space) {
60 auto &Ctx = GV->getContext();
61 IRBuilder<> B(Ctx);
62 Entry = MDNode::get(
63 Ctx, {ValueAsMetadata::get(GV),
64 ConstantAsMetadata::get(B.getInt32(static_cast<int>(RK))),
65 ConstantAsMetadata::get(B.getInt32(static_cast<int>(ElTy))),
66 ConstantAsMetadata::get(B.getInt1(IsROV)),
67 ConstantAsMetadata::get(B.getInt32(ResIndex)),
68 ConstantAsMetadata::get(B.getInt32(Space))});
69}
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file contains the declarations for metadata subclasses.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static ConstantAsMetadata * get(Constant *C)
Definition: Metadata.h:528
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition: IRBuilder.h:2697
Metadata node.
Definition: Metadata.h:1069
const MDOperand & getOperand(unsigned I) const
Definition: Metadata.h:1430
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
Definition: Metadata.h:1543
unsigned getNumOperands() const
Return number of MDNode operands.
Definition: Metadata.h:1436
static ValueAsMetadata * get(Value *V)
Definition: Metadata.cpp:501
LLVMContext & getContext() const
All values hold a context through their type.
Definition: Value.cpp:1075
GlobalVariable * getGlobalVariable()
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18