36 UserDefineType = 1 << 9,
62 case OverloadKind::HALF:
64 case OverloadKind::FLOAT:
66 case OverloadKind::DOUBLE:
68 case OverloadKind::I1:
70 case OverloadKind::I8:
72 case OverloadKind::I16:
74 case OverloadKind::I32:
76 case OverloadKind::I64:
78 case OverloadKind::VOID:
79 case OverloadKind::UNDEFINED:
81 case OverloadKind::ObjectType:
82 case OverloadKind::UserDefineType:
90 return OverloadKind::VOID;
95 return OverloadKind::VOID;
97 return OverloadKind::HALF;
99 return OverloadKind::FLOAT;
101 return OverloadKind::DOUBLE;
107 return OverloadKind::I1;
109 return OverloadKind::I8;
111 return OverloadKind::I16;
113 return OverloadKind::I32;
115 return OverloadKind::I64;
118 return OverloadKind::VOID;
122 return OverloadKind::UserDefineType;
124 return OverloadKind::ObjectType;
127 return OverloadKind::VOID;
132 if (Kind < OverloadKind::UserDefineType) {
134 }
else if (Kind == OverloadKind::UserDefineType) {
136 return ST->getStructName().str();
137 }
else if (Kind == OverloadKind::ObjectType) {
139 return ST->getStructName().str();
165#define DXIL_OP_OPERATION_TABLE
166#include "DXILOperation.inc"
167#undef DXIL_OP_OPERATION_TABLE
171 if (Kind == OverloadKind::VOID) {
181 if (Kind == OverloadKind::VOID)
182 return TypeName.str();
184 assert(Kind < OverloadKind::UserDefineType &&
"invalid overload kind");
201 Type *FieldTypes[5] = {OverloadTy, OverloadTy, OverloadTy, OverloadTy,
214 case OpParamType::VoidTy:
216 case OpParamType::HalfTy:
218 case OpParamType::FloatTy:
220 case OpParamType::DoubleTy:
222 case OpParamType::Int1Ty:
224 case OpParamType::Int8Ty:
226 case OpParamType::Int16Ty:
228 case OpParamType::Int32Ty:
230 case OpParamType::Int64Ty:
232 case OpParamType::OverloadTy:
234 case OpParamType::ResRetTy:
236 case OpParamType::HandleTy:
246 return ShaderKind::pixel;
248 return ShaderKind::vertex;
250 return ShaderKind::geometry;
252 return ShaderKind::hull;
254 return ShaderKind::domain;
256 return ShaderKind::compute;
258 return ShaderKind::library;
260 return ShaderKind::raygeneration;
262 return ShaderKind::intersection;
264 return ShaderKind::anyhit;
266 return ShaderKind::closesthit;
268 return ShaderKind::miss;
270 return ShaderKind::callable;
272 return ShaderKind::mesh;
274 return ShaderKind::amplification;
279 "Shader Kind Not Found - Invalid DXIL Environment Specified");
301#define DXIL_OP_FUNCTION_TYPE(OpCode, RetType, ...) \
303 return FunctionType::get( \
304 getTypeFromOpParamType(RetType, Context, OverloadTy), \
305 getArgTypesFromOpParamTypes({__VA_ARGS__}, Context, OverloadTy), \
307#include "DXILOperation.inc"
319 for (
auto Iter = PropList.
rbegin(); Iter != PropList.
rend();
321 const T &Prop = *Iter;
322 if (
VersionTuple(Prop.DXILVersion.Major, Prop.DXILVersion.Minor) <=
339 DXILVersion = TT.getDXILVersion();
340 ShaderStage = TT.getEnvironment();
345 ": Unknown Compilation Target Shader Stage specified ",
351 return make_error<StringError>(
352 Twine(
"Cannot create ") + getOpCodeName(
OpCode) +
" operation: " + Msg,
361 Type *OverloadTy =
nullptr;
369 if (
static_cast<unsigned>(ArgIndex) >= Args.size())
371 OverloadTy = Args[ArgIndex]->getType();
376 std::optional<size_t> OlIndexOrErr =
378 if (!OlIndexOrErr.has_value())
388 if ((ValidTyMask != OverloadKind::UNDEFINED) &&
389 (ValidTyMask & (
uint16_t)Kind) == 0)
394 std::optional<size_t> StIndexOrErr =
396 if (!StIndexOrErr.has_value())
400 uint16_t ValidShaderKindMask = Prop->
Stages[*StIndexOrErr].ValidStages;
403 if (ValidShaderKindMask == ShaderKind::removed)
411 if (!(ValidShaderKindMask & ModuleStagekind))
420 OpArgs.
append(Args.begin(), Args.end());
428 if (
Error E = Result.takeError())
434 return ::getOpCodeName(DXILOp);
static ShaderKind getShaderKindEnum(Triple::EnvironmentType EnvType)
static Type * getTypeFromOpParamType(OpParamType Kind, LLVMContext &Ctx, Type *OverloadTy)
static std::optional< size_t > getPropIndex(ArrayRef< T > PropList, const VersionTuple DXILVer)
Get index of the property from PropList valid for the most recent DXIL version not greater than DXILV...
static SmallVector< Type * > getArgTypesFromOpParamTypes(ArrayRef< dxil::OpParamType > Types, LLVMContext &Context, Type *OverloadTy)
static StructType * getResRetType(Type *OverloadTy, LLVMContext &Ctx)
static const char * getOverloadTypeName(OverloadKind Kind)
static OverloadKind getOverloadKind(Type *Ty)
static StructType * getOrCreateStructType(StringRef Name, ArrayRef< Type * > EltTys, LLVMContext &Ctx)
static StructType * getHandleType(LLVMContext &Ctx)
static std::string constructOverloadName(OverloadKind Kind, Type *Ty, const OpCodeProperty &Prop)
static FunctionType * getDXILOpFunctionType(dxil::OpCode OpCode, LLVMContext &Context, Type *OverloadTy)
Construct DXIL function type.
constexpr StringLiteral DXILOpNamePrefix
static std::string constructOverloadTypeName(OverloadKind Kind, StringRef TypeName)
Module.h This file contains the declarations for the Module class.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
reverse_iterator rend() const
size_t size() const
size - Get the array size.
reverse_iterator rbegin() const
This class represents a function call, abstracting a target machine's calling convention.
Lightweight error class with error context and mandatory checking.
Tagged union holding either a T or a Error.
A handy container for a FunctionType+Callee-pointer pair, which can be passed around as a single enti...
Class to represent function types.
ConstantInt * getInt32(uint32_t C)
Get a constant 32-bit value.
CallInst * CreateCall(FunctionType *FTy, Value *Callee, ArrayRef< Value * > Args=std::nullopt, const Twine &Name="", MDNode *FPMathTag=nullptr)
Class to represent integer types.
unsigned getBitWidth() const
Get the number of bits in this IntegerType.
This is an important class for using LLVM in a threaded context.
A Module instance is used to store all the information related to an LLVM module.
LLVMContext & getContext() const
Get the global data context.
FunctionCallee getOrInsertFunction(StringRef Name, FunctionType *T, AttributeList AttributeList)
Look up the specified function in the module symbol table.
reference emplace_back(ArgTypes &&... Args)
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
A wrapper around a string literal that serves as a proxy for constructing global tables of StringRefs...
StringRef - Represent a constant reference to a string, i.e.
Class to represent struct types.
static StructType * getTypeByName(LLVMContext &C, StringRef Name)
Return the type with the specified name, or null if there is none by that name.
static StructType * create(LLVMContext &Context, StringRef Name)
This creates an identified struct.
Triple - Helper class for working with autoconf configuration names.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
static Type * getHalfTy(LLVMContext &C)
static Type * getDoubleTy(LLVMContext &C)
static IntegerType * getInt1Ty(LLVMContext &C)
TypeID
Definitions of all of the base types for the Type system.
@ HalfTyID
16-bit floating point type
@ VoidTyID
type with no size
@ FloatTyID
32-bit floating point type
@ IntegerTyID
Arbitrary bit width integers.
@ DoubleTyID
64-bit floating point type
void print(raw_ostream &O, bool IsForDebug=false, bool NoDetails=false) const
Print the current type.
static Type * getVoidTy(LLVMContext &C)
static IntegerType * getInt16Ty(LLVMContext &C)
static IntegerType * getInt8Ty(LLVMContext &C)
static IntegerType * getInt32Ty(LLVMContext &C)
static IntegerType * getInt64Ty(LLVMContext &C)
static Type * getFloatTy(LLVMContext &C)
TypeID getTypeID() const
Return the type id for the type.
Represents a version number in the form major[.minor[.subminor[.build]]].
std::string getAsString() const
Retrieve a string representation of the version number.
Expected< CallInst * > tryCreateOp(dxil::OpCode Op, ArrayRef< Value * > Args, Type *RetTy=nullptr)
Try to create a call instruction for the given DXIL op.
CallInst * createOp(dxil::OpCode Op, ArrayRef< Value * > Args, Type *RetTy=nullptr)
Create a call instruction for the given DXIL op.
static const char * getOpCodeName(dxil::OpCode DXILOp)
Return the name of the given opcode.
A raw_ostream that writes to an std::string.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
static Error makeOpError(dxil::OpCode OpCode, Twine Msg)
This is an optimization pass for GlobalISel generic memory operations.
std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
constexpr std::underlying_type_t< Enum > to_underlying(Enum E)
Returns underlying integer value of an enum.
StringRef getTypeName()
We provide a function which tries to compute the (demangled) name of a type statically.
llvm::SmallVector< OpOverload > Overloads
llvm::SmallVector< OpAttribute > Attributes
dxil::OpCodeClass OpCodeClass
unsigned OpCodeNameOffset
unsigned OpCodeClassNameOffset
llvm::SmallVector< OpStage > Stages