28#include "llvm/IR/IntrinsicsSPIRV.h"
43 if (LI->getType()->isAggregateType())
50 return PType->getAddressSpace();
52 return PType->getAddressSpace();
55 return ExtTy->getIntParameter(0);
62 case SPIRV::StorageClass::Uniform:
63 case SPIRV::StorageClass::PushConstant:
64 case SPIRV::StorageClass::StorageBuffer:
65 case SPIRV::StorageClass::PhysicalStorageBufferEXT:
67 case SPIRV::StorageClass::UniformConstant:
68 case SPIRV::StorageClass::Input:
69 case SPIRV::StorageClass::Output:
70 case SPIRV::StorageClass::Workgroup:
71 case SPIRV::StorageClass::CrossWorkgroup:
72 case SPIRV::StorageClass::Private:
73 case SPIRV::StorageClass::Function:
74 case SPIRV::StorageClass::Generic:
75 case SPIRV::StorageClass::AtomicCounter:
76 case SPIRV::StorageClass::Image:
77 case SPIRV::StorageClass::CallableDataNV:
78 case SPIRV::StorageClass::IncomingCallableDataNV:
79 case SPIRV::StorageClass::RayPayloadNV:
80 case SPIRV::StorageClass::HitAttributeNV:
81 case SPIRV::StorageClass::IncomingRayPayloadNV:
82 case SPIRV::StorageClass::ShaderRecordBufferNV:
83 case SPIRV::StorageClass::CodeSectionINTEL:
84 case SPIRV::StorageClass::DeviceOnlyINTEL:
85 case SPIRV::StorageClass::HostOnlyINTEL:
92 : DL(DL), Bound(0),
CurMF(nullptr) {}
94void SPIRVGlobalRegistry::constrainSelectedInstRegOperands(
98 *ST.getRegBankInfo());
112 SPIRV::AccessQualifier::AccessQualifier AccessQual,
bool EmitIR) {
122 VRegToTypeMap[&MF][VReg] = SpirvType;
136 return createConstOrTypeAtFunctionEntry(
137 MIRBuilder, [&](MachineIRBuilder &MIRBuilder) {
138 return MIRBuilder.
buildInstr(SPIRV::OpTypeBool)
143unsigned SPIRVGlobalRegistry::adjustOpTypeIntWidth(
unsigned Width)
const {
145 if (
ST.canUseExtension(
146 SPIRV::Extension::SPV_ALTERA_arbitrary_precision_integers) ||
147 (Width == 4 &&
ST.canUseExtension(SPIRV::Extension::SPV_INTEL_int4)))
151 else if (Width <= 16)
153 else if (Width <= 32)
155 else if (Width <= 64)
157 else if (Width <= 128)
162SPIRVTypeInst SPIRVGlobalRegistry::getOpTypeInt(
unsigned Width,
165 Width = adjustOpTypeIntWidth(Width);
166 const SPIRVSubtarget &
ST =
168 return createConstOrTypeAtFunctionEntry(MIRBuilder, [&](MachineIRBuilder
170 if (Width == 4 &&
ST.canUseExtension(SPIRV::Extension::SPV_INTEL_int4)) {
172 .
addImm(SPIRV::Extension::SPV_INTEL_int4);
174 .
addImm(SPIRV::Capability::Int4TypeINTEL);
177 SPIRV::Extension::SPV_ALTERA_arbitrary_precision_integers)) {
179 .
addImm(SPIRV::Extension::SPV_ALTERA_arbitrary_precision_integers);
181 .
addImm(SPIRV::Capability::ArbitraryPrecisionIntegersALTERA);
183 return MIRBuilder.
buildInstr(SPIRV::OpTypeInt)
186 .
addImm(IsSigned ? 1 : 0);
191SPIRVGlobalRegistry::getOpTypeFloat(uint32_t Width,
193 return createConstOrTypeAtFunctionEntry(MIRBuilder, [&](MachineIRBuilder
195 return MIRBuilder.
buildInstr(SPIRV::OpTypeFloat)
202SPIRVGlobalRegistry::getOpTypeFloat(uint32_t Width,
204 SPIRV::FPEncoding::FPEncoding FPEncode) {
205 return createConstOrTypeAtFunctionEntry(MIRBuilder, [&](MachineIRBuilder
207 return MIRBuilder.
buildInstr(SPIRV::OpTypeFloat)
215 return createConstOrTypeAtFunctionEntry(
217 return MIRBuilder.
buildInstr(SPIRV::OpTypeVoid)
242 "Cannot invalidate aliasing instructions.");
243 assert(
MI->getOpcode() != SPIRV::OpFunction &&
244 "Cannot invalidate OpFunction.");
246 if (
MI->getOpcode() == SPIRV::OpFunctionCall) {
248 auto It = ForwardCalls.find(
F);
249 if (It != ForwardCalls.end()) {
250 It->second.erase(
MI);
251 if (It->second.empty())
252 ForwardCalls.erase(It);
258 auto It = LastInsertedTypeMap.find(MF);
259 if (It != LastInsertedTypeMap.end() && It->second ==
MI)
260 LastInsertedTypeMap.erase(MF);
265const MachineInstr *SPIRVGlobalRegistry::createConstOrTypeAtFunctionEntry(
272 auto LastInsertedType = LastInsertedTypeMap.find(
CurMF);
273 if (LastInsertedType != LastInsertedTypeMap.end()) {
274 auto It = LastInsertedType->second->getIterator();
278 if (It->getParent() != NewMBB)
279 InsertAt = oldInsertPoint->getParent() == NewMBB
282 else if (It->getNextNode())
283 InsertAt = It->getNextNode()->getIterator();
289 auto Result = LastInsertedTypeMap.try_emplace(
CurMF,
nullptr);
291 LastInsertedType = Result.first;
294 MachineInstr *ConstOrType =
Op(MIRBuilder);
298 LastInsertedType->second = ConstOrType;
301 while (
auto *
Next = LastInsertedType->second->getNextNode()) {
302 unsigned Opc =
Next->getOpcode();
303 if (
Opc == SPIRV::OpTypeStructContinuedINTEL ||
304 Opc == SPIRV::OpConstantCompositeContinuedINTEL ||
305 Opc == SPIRV::OpSpecConstantCompositeContinuedINTEL ||
306 Opc == SPIRV::OpCompositeConstructContinuedINTEL)
307 LastInsertedType->second =
Next;
318 bool IsLongVectorEXT) {
322 SPIRV::Extension::SPV_INTEL_masked_gather_scatter)) {
326 "Vector of pointers requires SPV_INTEL_masked_gather_scatter "
331 [[maybe_unused]]
auto EleOpc = ElemType->
getOpcode();
332 assert((EleOpc == SPIRV::OpTypeInt || EleOpc == SPIRV::OpTypeFloat ||
333 EleOpc == SPIRV::OpTypeBool) &&
334 "Invalid vector element type");
337 return createConstOrTypeAtFunctionEntry(
338 MIRBuilder, [&](MachineIRBuilder &MIRBuilder) {
340 IsLongVectorEXT ? SPIRV::OpTypeVectorIdEXT : SPIRV::OpTypeVector;
344 if (!IsLongVectorEXT)
345 return MIB.
addImm(NumElems);
350 Int32Ty, *
ST.getInstrInfo()));
355SPIRVGlobalRegistry::getOpTypeVector(uint32_t NumElems,
SPIRVTypeInst ElemType,
357 assert(NumElems >= 2 &&
"SPIR-V OpTypeVector requires at least 2 components");
358 return getOpTypeVectorImpl(NumElems, ElemType, MIRBuilder);
363 assert((NumElems < 2 || NumElems > 16 ||
364 (NumElems != 3 && NumElems != 4 && NumElems != 8)) &&
365 "SPIR-V OpTypeVectorIdExt should only be used for extended vectors");
366 return getOpTypeVectorImpl(NumElems, ElemType, MIRBuilder,
true);
374 auto *
const CF = ConstantFP::get(Ctx, Val);
376 if (
MI && (
MI->getOpcode() == SPIRV::OpConstantNull ||
377 MI->getOpcode() == SPIRV::OpConstantF))
378 return MI->getOperand(0).getReg();
389 Register Res =
CurMF->getRegInfo().createGenericVirtualRegister(LLTy);
390 CurMF->getRegInfo().setRegClass(Res, &SPIRV::fIDRegClass);
396 const MachineInstr *Const = createConstOrTypeAtFunctionEntry(
401 MIB = MIRBuilder.
buildInstr(SPIRV::OpConstantNull)
405 MIB = MIRBuilder.
buildInstr(SPIRV::OpConstantF)
412 constrainSelectedInstRegOperands(MIB);
424 SpvType,
TII, ZeroAsNull);
432 auto *
const CI = ConstantInt::get(
435 if (
MI && (
MI->getOpcode() == SPIRV::OpConstantNull ||
436 MI->getOpcode() == SPIRV::OpConstantI))
437 return MI->getOperand(0).getReg();
448 Register Res =
CurMF->getRegInfo().createGenericVirtualRegister(LLTy);
449 CurMF->getRegInfo().setRegClass(Res, &SPIRV::iIDRegClass);
455 const MachineInstr *Const = createConstOrTypeAtFunctionEntry(
461 : SPIRV::OpConstantTrue)
464 }
else if (!CI->
isZero() || !ZeroAsNull) {
465 MIB = MIRBuilder.
buildInstr(SPIRV::OpConstantI)
470 MIB = MIRBuilder.
buildInstr(SPIRV::OpConstantNull)
474 constrainSelectedInstRegOperands(MIB);
484 bool EmitIR,
bool ZeroAsNull) {
486 auto &MF = MIRBuilder.
getMF();
490 auto *
const CI = ConstantInt::get(
const_cast<IntegerType *
>(Ty), Val,
504 const MachineInstr *Const = createConstOrTypeAtFunctionEntry(
510 if (Val || !ZeroAsNull) {
511 MIB = MIRBuilder.
buildInstr(SPIRV::OpConstantI)
516 MIB = MIRBuilder.
buildInstr(SPIRV::OpConstantNull)
520 constrainSelectedInstRegOperands(MIB);
530 auto &MF = MIRBuilder.
getMF();
534 SPIRV::AccessQualifier::ReadWrite,
true);
535 auto *
const CF = ConstantFP::get(Ctx, Val);
541 Res = MF.getRegInfo().createGenericVirtualRegister(LLTy);
542 MF.getRegInfo().setRegClass(Res, &SPIRV::fIDRegClass);
545 const MachineInstr *Const = createConstOrTypeAtFunctionEntry(
548 MIB = MIRBuilder.
buildInstr(SPIRV::OpConstantF)
551 addNumImm(CF->getValueAPF().bitcastToAPInt(), MIB);
558Register SPIRVGlobalRegistry::getOrCreateBaseRegister(
566 if (
Type->getOpcode() == SPIRV::OpTypeFloat) {
571 assert(
Type->getOpcode() == SPIRV::OpTypeInt);
577Register SPIRVGlobalRegistry::getOrCreateCompositeOrNull(
580 unsigned ElemCnt,
bool ZeroAsNull) {
588 getOrCreateBaseRegister(Val,
I, SpvType,
TII,
BitWidth, ZeroAsNull);
591 Register Res =
CurMF->getRegInfo().createGenericVirtualRegister(LLTy);
595 MachineInstr *DepMI =
596 const_cast<MachineInstr *
>(
static_cast<const MachineInstr *
>(SpvType));
598 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
599 MIRBuilder, [&](MachineIRBuilder &MIRBuilder) {
600 MachineInstrBuilder MIB;
602 MIB = MIRBuilder.
buildInstr(SPIRV::OpConstantComposite)
605 for (
unsigned i = 0; i < ElemCnt; ++i)
608 MIB = MIRBuilder.
buildInstr(SPIRV::OpConstantNull)
612 constrainSelectedInstRegOperands(MIB);
625 I, SpvType,
TII, ZeroAsNull);
635 "Expected vector type for constant vector creation");
638 [[maybe_unused]]
const auto &ST =
I.getMF()->getSubtarget<
SPIRVSubtarget>();
642 SPIRV::Extension::SPV_INTEL_masked_gather_scatter))) &&
643 "Expected either integer element type for APInt constant vector or "
644 "pointer type if the SPV_INTEL_masked_gather_scatter extension is "
648 ConstVal = ConstantInt::get(LLVMBaseTy, Val);
658 return getOrCreateCompositeOrNull(ConstVal,
I, SpvType,
TII, ConstVec, BW,
673 auto *ConstVal = ConstantFP::get(LLVMBaseTy, Val);
677 return getOrCreateCompositeOrNull(ConstVal,
I, SpvType,
TII, ConstVec, BW,
689 Constant *CI = ConstantInt::get(LLVMBaseTy, Val);
704 ConstantInt::get(LLVMBaseTy, Val), ConstantInt::get(I64Ty, Num)});
705 return getOrCreateCompositeOrNull(CI,
I, SpvType,
TII, UniqueKey, BW,
709Register SPIRVGlobalRegistry::getOrCreateIntCompositeOrNull(
726 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
732 auto MIB = MIRBuilder.
buildInstr(SPIRV::OpConstantComposite)
735 for (
unsigned i = 0; i < ElemCnt; ++i)
740 return MIRBuilder.
buildInstr(SPIRV::OpConstantNull)
755 const auto ConstInt = ConstantInt::get(LLVMBaseTy, Val);
759 return getOrCreateIntCompositeOrNull(
760 Val, MIRBuilder, SpvType, EmitIR, ConstVec, BW,
778 Res =
CurMF->getRegInfo().createGenericVirtualRegister(LLTy);
779 CurMF->getRegInfo().setRegClass(Res, &SPIRV::pIDRegClass);
782 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
784 return MIRBuilder.
buildInstr(SPIRV::OpConstantNull)
794 unsigned Param,
unsigned FilerMode,
807 MIRBuilder.
buildInstr(SPIRV::OpConstantSampler)
818 const GlobalValue *GV, SPIRV::StorageClass::StorageClass Storage,
820 const std::optional<SPIRV::LinkageType::LinkageType> &LinkageType,
829 GVar = M->getGlobalVariable(Name);
830 if (GVar ==
nullptr) {
854 if (&GVBuilder.
getMBB() != &EntryBB)
859 const bool UseUntypedPointers =
860 BaseType->getOpcode() == SPIRV::OpTypeUntypedPointerKHR;
861 const unsigned VariableOpcode =
862 UseUntypedPointers ? SPIRV::OpUntypedVariableKHR : SPIRV::OpVariable;
864 auto MIB = GVBuilder.
buildInstr(VariableOpcode)
871 if (UseUntypedPointers) {
875 SPIRV::AccessQualifier::ReadWrite,
881 "Could not deduce the data type of untyped global variable '" +
887 SPIRV::AccessQualifier::ReadWrite,
897 if (IsInstSelector) {
898 constrainSelectedInstRegOperands(MIB);
906 auto MRI = MIRBuilder.
getMRI();
907 if (Reg != ResVReg) {
910 MRI->setType(Reg, RegLLTy);
929 if (IsConst && !ST.isShader())
934 buildOpDecorate(Reg, MIRBuilder, SPIRV::Decoration::Alignment, {Alignment});
939 {
static_cast<uint32_t>(*LinkageType)}, Name);
941 SPIRV::BuiltIn::BuiltIn BuiltInId;
944 {
static_cast<uint32_t>(BuiltInId)});
950 if (GVar && (GVarMD = GVar->
getMetadata(
"spirv.Decorations")) !=
nullptr)
967 std::nullopt, MIRBuilder,
false);
969 buildOpDecorate(VarReg, MIRBuilder, SPIRV::Decoration::DescriptorSet, {Set});
970 buildOpDecorate(VarReg, MIRBuilder, SPIRV::Decoration::Binding, {Binding});
979 bool ExplicitLayoutRequired,
982 "Invalid array element type");
990 ArrayType = createConstOrTypeAtFunctionEntry(
992 return MIRBuilder.
buildInstr(SPIRV::OpTypeArray)
1003 ArrayType = createConstOrTypeAtFunctionEntry(
1004 MIRBuilder, [&](MachineIRBuilder &MIRBuilder) {
1005 return MIRBuilder.
buildInstr(SPIRV::OpTypeArray)
1008 .
addUse(NumElementsVReg);
1011 if (!
ST.isShader()) {
1013 "Runtime arrays are not allowed in non-shader "
1017 ArrayType = createConstOrTypeAtFunctionEntry(
1018 MIRBuilder, [&](MachineIRBuilder &MIRBuilder) {
1019 return MIRBuilder.
buildInstr(SPIRV::OpTypeRuntimeArray)
1027 addArrayStrideDecorations(
ArrayType->defs().begin()->getReg(), ET,
1035SPIRVGlobalRegistry::getOpTypeOpaque(
const StructType *Ty,
1040 return createConstOrTypeAtFunctionEntry(
1041 MIRBuilder, [&](MachineIRBuilder &MIRBuilder) {
1051 SPIRV::AccessQualifier::AccessQualifier AccQual,
1053 Type *OriginalElementType =
nullptr;
1056 SPIRVTypeInst ElementSPIRVType = findSPIRVType(
1057 OriginalElementType, MIRBuilder, AccQual,
1058 Decorator !=
nullptr, EmitIR);
1059 return getOpTypeArray(TotalSize, ElementSPIRVType, MIRBuilder,
1060 Decorator !=
nullptr,
1064 const SPIRVSubtarget &
ST =
1067 constexpr unsigned MaxWordCount = UINT16_MAX;
1070 size_t MaxNumElements = MaxWordCount - 2;
1071 size_t SPIRVStructNumElements = NumElements;
1072 if (NumElements > MaxNumElements) {
1074 SPIRVStructNumElements = MaxNumElements;
1075 MaxNumElements = MaxWordCount - 1;
1078 for (
const auto &Elem : Ty->
elements()) {
1079 SPIRVTypeInst ElemTy = findSPIRVType(
1081 Decorator !=
nullptr, EmitIR);
1083 "Invalid struct element type");
1092 SPIRVTypeInst SPVType = createConstOrTypeAtFunctionEntry(
1093 MIRBuilder, [&](MachineIRBuilder &MIRBuilder) {
1096 for (
size_t I = 0;
I < SPIRVStructNumElements; ++
I)
1097 MIBStruct.
addUse(FieldTypes[
I]);
1098 for (
size_t I = SPIRVStructNumElements;
I < NumElements;
1099 I += MaxNumElements) {
1101 MIRBuilder.
buildInstr(SPIRV::OpTypeStructContinuedINTEL);
1102 for (
size_t J =
I; J < std::min(
I + MaxNumElements, NumElements); ++J)
1103 MIBCont.
addUse(FieldTypes[J]);
1109 Decorator(SPVType->defs().begin()->getReg());
1116 SPIRV::AccessQualifier::AccessQualifier AccQual) {
1122 SPIRV::StorageClass::StorageClass SC,
SPIRVTypeInst ElemType,
1125 const SPIRVSubtarget &
ST =
1133 return createConstOrTypeAtFunctionEntry(MIRBuilder, [&](MachineIRBuilder
1135 return MIRBuilder.
buildInstr(SPIRV::OpTypePointer)
1137 .
addImm(
static_cast<uint32_t
>(SC))
1146 const SPIRVSubtarget *
ST =
1147 static_cast<const SPIRVSubtarget *
>(&MIRBuilder.
getMF().getSubtarget());
1148 if (Ty->isVarArg() &&
ST->isShader()) {
1150 Ty->getContext().diagnose(DiagnosticInfoUnsupported(
1151 Fn,
"SPIR-V shaders do not support variadic functions",
1154 return createConstOrTypeAtFunctionEntry(MIRBuilder, [&](MachineIRBuilder
1156 auto MIB = MIRBuilder.
buildInstr(SPIRV::OpTypeFunction)
1159 for (
auto &ArgType : ArgTypes)
1173 add(Ty,
false, NewMI);
1174 return finishCreatingSPIRVType(Ty, NewMI);
1179 SPIRV::AccessQualifier::AccessQualifier AccQual,
1180 bool ExplicitLayoutRequired,
bool EmitIR) {
1184 FVT && FVT->getNumElements() == 1 &&
1185 !STI.canUseExtension(SPIRV::Extension::SPV_EXT_long_vector))
1186 return findSPIRVType(FVT->getElementType(), MIRBuilder, AccQual,
1187 ExplicitLayoutRequired, EmitIR);
1188 Ty = adjustIntTypeByWidth(Ty);
1191 findMI(Ty, ExplicitLayoutRequired, &MIRBuilder.
getMF()))
1193 if (
auto It = ForwardPointerTypes.find(Ty); It != ForwardPointerTypes.end())
1195 return restOfCreateSPIRVType(Ty, MIRBuilder, AccQual, ExplicitLayoutRequired,
1200 assert(SpirvType &&
"Attempting to get type id for nullptr type.");
1201 if (SpirvType->
getOpcode() == SPIRV::OpTypeForwardPointer ||
1202 SpirvType->
getOpcode() == SPIRV::OpTypeStructContinuedINTEL)
1203 return SpirvType->
uses().
begin()->getReg();
1204 return SpirvType->
defs().
begin()->getReg();
1215const Type *SPIRVGlobalRegistry::adjustIntTypeByWidth(
const Type *Ty)
const {
1217 unsigned SrcBitWidth = IType->getBitWidth();
1218 if (SrcBitWidth > 1) {
1219 unsigned BitWidth = adjustOpTypeIntWidth(SrcBitWidth);
1230 SPIRV::AccessQualifier::AccessQualifier AccQual,
1231 bool ExplicitLayoutRequired,
bool EmitIR) {
1233 return getOrCreateSpecialType(Ty, MIRBuilder, AccQual);
1235 if (
const MachineInstr *
MI =
1236 findMI(Ty, ExplicitLayoutRequired, &MIRBuilder.
getMF()))
1240 const unsigned Width = IType->getBitWidth();
1241 return Width == 1 ? getOpTypeBool(MIRBuilder)
1242 : getOpTypeInt(Width, MIRBuilder,
false);
1249 SPIRV::FPEncoding::BFloat16KHR);
1259 AccQual, ExplicitLayoutRequired, EmitIR);
1263 STI.canUseExtension(SPIRV::Extension::SPV_EXT_long_vector))
1264 return getOpTypeVectorIdEXT(NumElts, El, MIRBuilder);
1265 return getOpTypeVector(NumElts, El, MIRBuilder);
1269 AccQual, ExplicitLayoutRequired, EmitIR);
1271 ExplicitLayoutRequired, EmitIR);
1274 if (SType->isOpaque())
1275 return getOpTypeOpaque(SType, MIRBuilder);
1278 if (ExplicitLayoutRequired) {
1279 Decorator = [&MIRBuilder, SType,
this](
Register Reg) {
1280 addStructOffsetDecorations(
Reg,
const_cast<StructType *
>(SType),
1284 return getOpTypeStruct(SType, MIRBuilder, AccQual, std::move(Decorator),
1288 SPIRVTypeInst RetTy =
1289 findSPIRVType(FType->getReturnType(), MIRBuilder, AccQual,
1290 ExplicitLayoutRequired, EmitIR);
1292 for (
const auto &ParamTy : FType->params())
1293 ParamTypes.
push_back(findSPIRVType(ParamTy, MIRBuilder, AccQual,
1294 ExplicitLayoutRequired, EmitIR));
1295 return getOpTypeFunction(FType, RetTy, ParamTypes, MIRBuilder);
1301 const SPIRVSubtarget *
ST =
1302 static_cast<const SPIRVSubtarget *
>(&MIRBuilder.
getMF().getSubtarget());
1305 SPIRVTypeInst SpvElementType =
nullptr;
1308 !
ST->canUseExtension(SPIRV::Extension::SPV_INTEL_function_pointers))
1321 if (
auto It = ForwardPointerTypes.find(Ty); It != ForwardPointerTypes.end()) {
1324 return getOpTypePointer(SC, SpvElementType, MIRBuilder,
Reg);
1332 SPIRV::AccessQualifier::AccessQualifier AccessQual,
1333 bool ExplicitLayoutRequired,
bool EmitIR) {
1338 TypesInProcessing.insert(Ty);
1339 SPIRVTypeInst SpirvType = createSPIRVType(Ty, MIRBuilder, AccessQual,
1340 ExplicitLayoutRequired, EmitIR);
1341 TypesInProcessing.erase(Ty);
1348 if (SpirvType->
getOpcode() == SPIRV::OpTypeForwardPointer ||
1354 add(ExtTy->getTypeParameter(0), ExtTy->getIntParameter(0), SpirvType);
1356 add(Ty, ExplicitLayoutRequired, SpirvType);
1369 auto t = VRegToTypeMap.find(MF ? MF :
CurMF);
1370 if (t != VRegToTypeMap.end()) {
1371 auto tt = t->second.find(VReg);
1372 if (tt != t->second.end())
1388 SPIRV::AccessQualifier::AccessQualifier AccessQual,
1389 bool ExplicitLayoutRequired,
bool EmitIR) {
1394 FVT && FVT->getNumElements() == 1 &&
1395 !STI.canUseExtension(SPIRV::Extension::SPV_EXT_long_vector))
1397 ExplicitLayoutRequired, EmitIR);
1402 Reg =
find(ExtTy->getTypeParameter(0), ExtTy->getIntParameter(0), MF);
1404 Reg =
find(Ty = adjustIntTypeByWidth(Ty), ExplicitLayoutRequired, MF);
1414 TypesInProcessing.clear();
1415 SPIRVTypeInst STy = restOfCreateSPIRVType(Ty, MIRBuilder, AccessQual,
1416 ExplicitLayoutRequired, EmitIR);
1418 for (
auto &
CU : ForwardPointerTypes) {
1421 bool PtrNeedsLayout =
false;
1422 const Type *Ty2 =
CU.first;
1424 if ((Reg =
find(Ty2, PtrNeedsLayout, MF)).
isValid())
1427 STy2 = restOfCreateSPIRVType(Ty2, MIRBuilder, AccessQual, PtrNeedsLayout,
1432 ForwardPointerTypes.clear();
1437 unsigned TypeOpcode)
const {
1439 assert(
Type &&
"isScalarOfType VReg has no type assigned");
1440 return Type->getOpcode() == TypeOpcode;
1444 unsigned TypeOpcode)
const {
1446 assert(
Type &&
"isScalarOrVectorOfType VReg has no type assigned");
1447 if (
Type->getOpcode() == TypeOpcode)
1451 Register ScalarTypeVReg =
Type->getOperand(1).getReg();
1453 return ScalarType->
getOpcode() == TypeOpcode;
1457 switch (
Type->getOpcode()) {
1458 case SPIRV::OpTypeImage:
1459 case SPIRV::OpTypeSampler:
1460 case SPIRV::OpTypeSampledImage:
1462 case SPIRV::OpTypeStruct:
1463 return BlockDecoratedTypes.contains(
Type);
1479 return (
Type->getOpcode() == SPIRV::OpTypeVector)
1480 ?
static_cast<unsigned>(
Type->getOperand(2).
getImm())
1490 :
Type->getOperand(0).getReg();
1501 if (ScalarType->
getOpcode() == SPIRV::OpTypeInt ||
1502 ScalarType->
getOpcode() == SPIRV::OpTypeFloat)
1504 if (ScalarType->
getOpcode() == SPIRV::OpTypeBool)
1506 if (ScalarType->
getOpcode() == SPIRV::OpTypePointer)
1509 "Attempting to get bit width of non-integer/float/pointer type.");
1517 return ScalarType->
getOpcode() == SPIRV::OpTypeInt ||
1518 ScalarType->
getOpcode() == SPIRV::OpTypeFloat
1526 if (ElemType && ElemType->
getOpcode() == SPIRV::OpTypeFunction)
1528 auto It = SPIRVToLLVMType.find(ElemType);
1529 return It != SPIRVToLLVMType.end() && It->second &&
1536 return ST.canUseExtension(SPIRV::Extension::SPV_KHR_untyped_pointers) &&
1543 return ScalarType && ScalarType->
getOpcode() == SPIRV::OpTypeInt ? ScalarType
1553 return PtrType && PtrType->
getOpcode() == SPIRV::OpTypePointer
1560 if (!Type1 || !Type2)
1573 return Bits1 > 0 && Bits1 == Bits2;
1576SPIRV::StorageClass::StorageClass
1580 "Pointer type is expected");
1584SPIRV::StorageClass::StorageClass
1586 return static_cast<SPIRV::StorageClass::StorageClass
>(
1592 SPIRV::StorageClass::StorageClass SC,
bool IsWritable,
bool EmitIr) {
1603 ExplicitLayoutRequired, EmitIr);
1606 SPIRV::Decoration::Block, {});
1607 BlockDecoratedTypes.insert(BlockType);
1611 SPIRV::Decoration::NonWritable, 0, {});
1615 getOrCreateSPIRVPointerTypeInternal(BlockType, MIRBuilder, SC);
1627 finishCreatingSPIRVType(
T, R);
1634 const auto SC = SPIRV::StorageClass::PushConstant;
1643 T, MIRBuilder, SPIRV::AccessQualifier::None,
1647 SPIRV::Decoration::Block, {});
1648 BlockDecoratedTypes.insert(BlockType);
1662 assert(ST->getNumElements() == Offsets.size());
1675 getOpTypeStruct(ST, MIRBuilder, SPIRV::AccessQualifier::None,
1676 std::move(Decorator), EmitIr);
1677 add(
Key, SPIRVStructType);
1678 return SPIRVStructType;
1683 const SPIRV::AccessQualifier::AccessQualifier Qualifier,
1686 "SPIR-V image builtin type must have sampled type parameter!");
1689 SPIRV::AccessQualifier::ReadWrite,
true);
1692 "Invalid number of parameters for SPIR-V image builtin!");
1694 SPIRV::AccessQualifier::AccessQualifier accessQualifier =
1695 SPIRV::AccessQualifier::None;
1697 accessQualifier = Qualifier == SPIRV::AccessQualifier::WriteOnly
1698 ? SPIRV::AccessQualifier::WriteOnly
1699 : SPIRV::AccessQualifier::AccessQualifier(
1705 MIRBuilder, SampledType,
1711 SPIRVToLLVMType[R] = ExtensionType;
1719 SPIRV::ImageFormat::ImageFormat ImageFormat,
1720 SPIRV::AccessQualifier::AccessQualifier AccessQual) {
1722 Depth, Arrayed, Multisampled, Sampled,
1723 ImageFormat, AccessQual);
1726 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
1738 if (AccessQual != SPIRV::AccessQualifier::None)
1752 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
1754 return MIRBuilder.
buildInstr(SPIRV::OpTypeSampler)
1763 SPIRV::AccessQualifier::AccessQualifier AccessQual) {
1767 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
1769 return MIRBuilder.
buildInstr(SPIRV::OpTypePipe)
1782 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
1784 return MIRBuilder.
buildInstr(SPIRV::OpTypeDeviceEvent)
1799 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
1801 return MIRBuilder.
buildInstr(SPIRV::OpTypeSampledImage)
1814 findMI(ExtensionType,
false, &MIRBuilder.
getMF()))
1816 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
1823 .canUseExtension(SPIRV::Extension::SPV_INTEL_int4)) {
1825 .
addImm(SPIRV::Capability::Int4CooperativeMatrixINTEL);
1827 return MIRBuilder.
buildInstr(SPIRV::OpTypeCooperativeMatrixKHR)
1835 add(ExtensionType,
false, NewMI);
1843 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
1847 add(Ty,
false, NewMI);
1857 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
1863 if (Operand.isReg()) {
1864 MIB.
addUse(Operand.getReg());
1865 }
else if (Operand.isImm()) {
1866 MIB.
addImm(Operand.getImm());
1871 add(Ty,
false, NewMI);
1878 SPIRV::StorageClass::StorageClass SC,
1879 SPIRV::AccessQualifier::AccessQualifier AQ) {
1880 unsigned VecElts = 0;
1887 MIRBuilder, AQ,
false,
true);
1908 TypeStr = TypeStr.
substr(0, TypeStr.
find(
']'));
1925 MIRBuilder, SPIRV::AccessQualifier::ReadWrite,
false,
true);
1929SPIRVGlobalRegistry::finishCreatingSPIRVType(
const Type *LLVMTy,
1940 unsigned SPIRVOPcode,
Type *Ty) {
1945 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
1948 MIRBuilder.
getDL(),
TII.get(SPIRVOPcode))
1952 if (!Ty->isFloatTy()) {
1953 return NewTypeMI.addImm(0);
1958 add(Ty,
false, NewMI);
1959 return finishCreatingSPIRVType(Ty, NewMI);
1999 MIRBuilder, SPIRV::AccessQualifier::ReadWrite,
false, EmitIR);
2010 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
2013 MIRBuilder.
getDL(),
TII.get(SPIRV::OpTypeBool))
2016 add(Ty,
false, NewMI);
2017 return finishCreatingSPIRVType(Ty, NewMI);
2026 MIRBuilder, SPIRV::AccessQualifier::ReadWrite,
false, EmitIR);
2033 if (!STI.canUseExtension(SPIRV::Extension::SPV_EXT_long_vector))
2036 assert(NumElements >= 2 &&
2037 "SPIR-V vectors must have at least 2 components");
2045 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
2053 add(Ty,
false, NewMI);
2054 return finishCreatingSPIRVType(Ty, NewMI);
2066 SPIRV::StorageClass::StorageClass SC,
bool ForceTyped) {
2069 .canUseExtension(SPIRV::Extension::SPV_INTEL_function_pointers)) {
2071 F.getContext().diagnose(
2073 "Function used as a data pointer requires "
2074 "SPV_INTEL_function_pointers extension",
2079 BaseType, MIRBuilder, SPIRV::AccessQualifier::ReadWrite,
2082 return getOrCreateSPIRVPointerTypeInternal(SpirvBaseType, MIRBuilder, SC,
2087 SPIRVTypeInst PtrType, SPIRV::StorageClass::StorageClass SC,
2089 [[maybe_unused]] SPIRV::StorageClass::StorageClass OldSC =
2096 return getOrCreateSPIRVPointerTypeInternal(PointeeType, MIRBuilder, SC);
2101 SPIRV::StorageClass::StorageClass SC) {
2106 (R->getOpcode() == SPIRV::OpTypeUntypedPointerKHR ||
2108 "The base type was not correctly laid out for the given storage class.");
2112SPIRVTypeInst SPIRVGlobalRegistry::getOrCreateSPIRVPointerTypeInternal(
2114 SPIRV::StorageClass::StorageClass SC,
bool ForceTyped) {
2127 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
2131 MIRBuilder.
getTII().
get(SPIRV::OpTypePointer))
2137 return finishCreatingSPIRVType(Ty, NewMI);
2144 assert(ST.canUseExtension(SPIRV::Extension::SPV_KHR_untyped_pointers) &&
2145 !ST.isShader() &&
"Untyped pointers are not available");
2154 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
2158 MIRBuilder.
getTII().
get(SPIRV::OpTypeUntypedPointerKHR))
2163 return finishCreatingSPIRVType(Ty, NewMI);
2176 Res =
CurMF->getRegInfo().createGenericVirtualRegister(LLTy);
2177 CurMF->getRegInfo().setRegClass(Res, &SPIRV::iIDRegClass);
2183 const MachineInstr *NewMI = createConstOrTypeAtFunctionEntry(
2186 MIRBuilder.
getDL(),
TII.get(SPIRV::OpUndef))
2189 constrainSelectedInstRegOperands(MIB);
2200 case SPIRV::OpTypeFloat:
2201 return &SPIRV::fIDRegClass;
2202 case SPIRV::OpTypePointer:
2203 return &SPIRV::pIDRegClass;
2204 case SPIRV::OpTypeVector:
2205 case SPIRV::OpTypeVectorIdEXT: {
2207 unsigned ElemOpcode = ElemType ? ElemType->
getOpcode() : 0;
2208 if (ElemOpcode == SPIRV::OpTypeFloat)
2209 return &SPIRV::vfIDRegClass;
2210 if (ElemOpcode == SPIRV::OpTypePointer)
2211 return &SPIRV::vpIDRegClass;
2212 return &SPIRV::viIDRegClass;
2215 return &SPIRV::iIDRegClass;
2220 static_cast<SPIRV::StorageClass::StorageClass
>(
2225 unsigned Opcode = SpvType ? SpvType->
getOpcode() : 0;
2227 case SPIRV::OpTypeInt:
2228 case SPIRV::OpTypeFloat:
2229 case SPIRV::OpTypeBool:
2231 case SPIRV::OpTypePointer:
2232 case SPIRV::OpTypeUntypedPointerKHR:
2234 case SPIRV::OpTypeVector:
2235 case SPIRV::OpTypeVectorIdEXT: {
2238 switch (ElemType ? ElemType->
getOpcode() : 0) {
2239 case SPIRV::OpTypePointer:
2240 case SPIRV::OpTypeUntypedPointerKHR:
2243 case SPIRV::OpTypeInt:
2244 case SPIRV::OpTypeFloat:
2245 case SPIRV::OpTypeBool:
2268 if (
auto L = AliasInstMDMap.find(AliasingListMD); L != AliasInstMDMap.end())
2275 if (ScopeMD->getNumOperands() < 2)
2281 auto D = AliasInstMDMap.find(DomainMD);
2282 if (
D != AliasInstMDMap.end())
2289 AliasInstMDMap.insert(std::make_pair(DomainMD,
Domain));
2291 auto S = AliasInstMDMap.find(ScopeMD);
2292 if (S != AliasInstMDMap.end())
2295 auto MIB = MIRBuilder.
buildInstr(SPIRV::OpAliasScopeDeclINTEL)
2300 AliasInstMDMap.insert(std::make_pair(ScopeMD, Scope));
2308 for (
auto *Scope : ScopeList)
2309 MIB.
addUse(Scope->getOperand(0).getReg());
2311 AliasInstMDMap.
insert(std::make_pair(AliasingListMD,
List));
2317 const MDNode *AliasingListMD) {
2335 bool CanUseAnyVectorRank) {
2344 B.CreateIntrinsic(Intrinsic::spv_value_md,
2346 AssignCI =
B.CreateIntrinsicWithoutFolding(Intrinsic::fake_use, {Arg});
2349 OfType, Arg, {},
B);
2359 B.GetInsertBlock() ?
B.GetInsertBlock()->getParent() :
nullptr;
2360 if (AssignPtrTyCI ==
nullptr ||
2361 AssignPtrTyCI->
getParent()->getParent() != CurrF) {
2363 Intrinsic::spv_assign_ptr_type, {Arg->
getType()}, OfType, Arg,
2377 Intrinsic::spv_assign_ptr_type)
2386void SPIRVGlobalRegistry::addStructOffsetDecorations(
2389 for (
uint32_t I = 0;
I < Ty->getNumElements(); ++
I) {
2395void SPIRVGlobalRegistry::addArrayStrideDecorations(
2397 uint32_t SizeInBytes = DL.getTypeAllocSize(ElementType);
static unsigned getIntrinsicID(const SDNode *N)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Function Alias Analysis false
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
const HexagonInstrInfo * TII
static constexpr Value * getValue(Ty &ValueOrUse)
Promote Memory to Register
static bool isValid(const char C)
Returns true if C is a valid mangled character: <0-9a-zA-Z_>.
static bool storageClassRequiresExplictLayout(SPIRV::StorageClass::StorageClass SC)
static Register createTypeVReg(MachineRegisterInfo &MRI)
static bool allowEmitFakeUse(const Value *Arg)
static unsigned typeToAddressSpace(const Type *Ty)
unsigned getAS(SPIRVTypeInst SpvType)
Func getContext().diagnose(DiagnosticInfoUnsupported(Func
APInt bitcastToAPInt() const
Class for arbitrary precision integers.
uint64_t getZExtValue() const
Get zero extended value.
bool isZero() const
Determine if this value is zero, i.e. all bits are clear.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Class to represent array types.
uint64_t getNumElements() const
Type * getElementType() const
void setArgOperand(unsigned i, Value *v)
This class represents a function call, abstracting a target machine's calling convention.
ConstantFP - Floating Point Values [float, double].
const APFloat & getValue() const
const APFloat & getValueAPF() const
This is the shared class of boolean and integer constants.
bool isZero() const
This is just a convenience method to make client code smaller for a common code.
const APInt & getValue() const
Return the constant as an APInt value reference.
static LLVM_ABI ConstantPointerNull * get(PointerType *T)
Static factory methods - Return objects of the specified value.
static Constant * getAnon(ArrayRef< Constant * > V, bool Packed=false)
Return an anonymous struct that has the specified elements.
static LLVM_ABI ConstantTargetNone * get(TargetExtType *T)
Static factory methods - Return objects of the specified value.
static LLVM_ABI Constant * getSplat(ElementCount EC, Constant *Elt)
Return a ConstantVector with the specified constant in each element.
This is an important base class in LLVM.
bool isNullValue() const
Return true if this is the value that would be returned by getNullValue.
LLVM_ABI const APInt & getUniqueInteger() const
If C is a constant integer then return its value, otherwise C must be a vector of constant integers,...
A parsed version of the target data layout string in and methods for querying it.
Diagnostic information for unsupported feature in backend.
static constexpr ElementCount getFixed(ScalarTy MinVal)
Class to represent fixed width SIMD vectors.
static LLVM_ABI FixedVectorType * get(Type *ElementType, unsigned NumElts)
Class to represent function types.
LLVMContext & getContext() const
getContext - Return a reference to the LLVMContext associated with this function.
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this GlobalObject.
Module * getParent()
Get the module that this global value is contained inside of...
@ ExternalLinkage
Externally visible function.
Type * getValueType() const
MaybeAlign getAlign() const
Returns the alignment of the given variable.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Class to represent integer types.
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
static constexpr LLT scalar(unsigned SizeInBits)
Get a low-level scalar or aggregate "bag of bits".
static constexpr LLT pointer(unsigned AddressSpace, unsigned SizeInBits)
Get a low-level pointer in the given address space.
static constexpr LLT fixed_vector(unsigned NumElements, unsigned ScalarSizeInBits)
Get a low-level fixed-width vector of some number of elements and element width.
static constexpr LLT scalarOrVector(ElementCount EC, LLT ScalarTy)
This is an important class for using LLVM in a threaded context.
LLVM_ABI void diagnose(const DiagnosticInfo &DI)
Report a message to the currently installed diagnostic handler.
const MCInstrDesc & get(unsigned Opcode) const
Return the machine instruction descriptor that corresponds to the specified instruction opcode.
Instances of this class represent operands of the MCInst class.
ArrayRef< MDOperand > operands() const
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
unsigned getNumOperands() const
Return number of MDNode operands.
Tracking metadata reference owned by Metadata.
static LLVM_ABI MDString * get(LLVMContext &Context, StringRef Str)
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
LLVM_ABI iterator getFirstTerminator()
Returns an iterator to the first terminator instruction of this basic block.
LLVM_ABI iterator getFirstNonPHI()
Returns a pointer to the first instruction in this block that is not a PHINode instruction.
MachineInstrBundleIterator< MachineInstr > iterator
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
const MachineBasicBlock & front() const
Helper class to build MachineInstr.
void setInsertPt(MachineBasicBlock &MBB, MachineBasicBlock::iterator II)
Set the insertion point before the specified position.
LLVMContext & getContext() const
const TargetInstrInfo & getTII()
MachineBasicBlock::iterator getInsertPt()
Current insertion point for new instructions.
MachineInstrBuilder buildSplatBuildVector(const DstOp &Res, const SrcOp &Src)
Build and insert Res = G_BUILD_VECTOR with Src replicated to fill the number of elements.
MachineInstrBuilder buildInstr(unsigned Opcode)
Build and insert <empty> = Opcode <empty>.
const DebugLoc & getDL()
Getter for DebugLoc.
MachineFunction & getMF()
Getter for the function we currently build.
const MachineBasicBlock & getMBB() const
Getter for the basic block we currently build.
const DebugLoc & getDebugLoc()
Get the current instruction's debug location.
MachineRegisterInfo * getMRI()
Getter for MRI.
MachineIRBuilderState & getState()
Getter for the State.
MachineInstrBuilder buildCopy(const DstOp &Res, const SrcOp &Op)
Build and insert Res = COPY Op.
virtual MachineInstrBuilder buildConstant(const DstOp &Res, const ConstantInt &Val)
Build and insert Res = G_CONSTANT Val.
void constrainAllUses(const TargetInstrInfo &TII, const TargetRegisterInfo &TRI, const RegisterBankInfo &RBI) const
const MachineInstrBuilder & addUse(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a virtual register use operand.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & addDef(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a virtual register definition operand.
MachineInstr * getInstr() const
If conversion operators fail, use this method to get the MachineInstr explicitly.
Representation of each machine instruction.
mop_range defs()
Returns all explicit operands that are register definitions.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
const MachineBasicBlock * getParent() const
LLVM_ABI void insert(mop_iterator InsertBefore, ArrayRef< MachineOperand > Ops)
Inserts Ops BEFORE It. Can untie/retie tied operands.
mop_range uses()
Returns all operands which may be register uses.
LLVM_ABI const MachineFunction * getMF() const
Return the function that contains the basic block that this instruction belongs to.
const MachineOperand & getOperand(unsigned i) const
Register getReg() const
getReg - Returns the register number.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
LLVM_ABI LLVM_READONLY MachineInstr * getVRegDef(Register Reg) const
getVRegDef - Return the machine instr that defines the specified virtual register or null if none is ...
LLVM_ABI Register createVirtualRegister(const TargetRegisterClass *RegClass, StringRef Name="")
createVirtualRegister - Create and return a new virtual register in the function with the specified r...
LLVM_ABI void setRegClass(Register Reg, const TargetRegisterClass *RC)
setRegClass - Set the register class of the specified virtual register.
LLVM_ABI Register createGenericVirtualRegister(LLT Ty, StringRef Name="")
Create and return a new generic virtual register with low-level type Ty.
A Module instance is used to store all the information related to an LLVM module.
static LLVM_ABI PointerType * get(LLVMContext &C, unsigned AddressSpace)
This constructs an opaque pointer to an object in a numbered address space.
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
Wrapper class representing virtual and physical registers.
constexpr bool isValid() const
void buildAssignType(IRBuilder<> &B, Type *Ty, Value *Arg, bool CanUseAnyVectorRank)
SPIRVTypeInst getImageType(const TargetExtType *ExtensionType, const SPIRV::AccessQualifier::AccessQualifier Qualifier, MachineIRBuilder &MIRBuilder)
bool isScalarOrVectorSigned(SPIRVTypeInst Type) const
void addAssignPtrTypeInstr(Value *Val, CallInst *AssignPtrTyCI)
SPIRVTypeInst getOrCreateOpTypeSampledImage(SPIRVTypeInst ImageType, MachineIRBuilder &MIRBuilder)
unsigned getNumScalarOrVectorTotalBitWidth(SPIRVTypeInst Type) const
void assignSPIRVTypeToVReg(SPIRVTypeInst Type, Register VReg, const MachineFunction &MF)
SPIRVTypeInst getOrCreateOpTypeFunctionWithArgs(const Type *Ty, SPIRVTypeInst RetType, const SmallVectorImpl< SPIRVTypeInst > &ArgTypes, MachineIRBuilder &MIRBuilder)
SPIRVTypeInst getOrCreateSPIRVPointerType(const Type *BaseType, MachineIRBuilder &MIRBuilder, SPIRV::StorageClass::StorageClass SC, bool ForceTyped=false)
void buildAssignPtr(IRBuilder<> &B, Type *ElemTy, Value *Arg)
const TargetRegisterClass * getRegClass(SPIRVTypeInst SpvType) const
MachineInstr * getOrAddMemAliasingINTELInst(MachineIRBuilder &MIRBuilder, const MDNode *AliasingListMD)
unsigned getScalarOrVectorBitWidth(SPIRVTypeInst Type) const
SPIRVTypeInst getOrCreateSPIRVIntegerType(unsigned BitWidth, MachineIRBuilder &MIRBuilder)
SPIRVTypeInst getOrCreateSPIRVVectorType(SPIRVTypeInst BaseType, unsigned NumElements, MachineIRBuilder &MIRBuilder, bool EmitIR)
SPIRVTypeInst getOrCreateSPIRVTypeByName(StringRef TypeStr, MachineIRBuilder &MIRBuilder, bool EmitIR, SPIRV::StorageClass::StorageClass SC=SPIRV::StorageClass::Function, SPIRV::AccessQualifier::AccessQualifier AQ=SPIRV::AccessQualifier::ReadWrite)
Register buildGlobalVariable(Register Reg, SPIRVTypeInst BaseType, StringRef Name, const GlobalValue *GV, SPIRV::StorageClass::StorageClass Storage, const MachineInstr *Init, bool IsConst, const std::optional< SPIRV::LinkageType::LinkageType > &LinkageType, MachineIRBuilder &MIRBuilder, bool IsInstSelector)
SPIRVTypeInst assignIntTypeToVReg(unsigned BitWidth, Register VReg, MachineInstr &I, const SPIRVInstrInfo &TII)
SPIRVTypeInst getResultType(Register VReg, MachineFunction *MF=nullptr)
void replaceAllUsesWith(Value *Old, Value *New, bool DeleteOld=true)
SPIRVTypeInst getOrCreateOpTypeByOpcode(const Type *Ty, MachineIRBuilder &MIRBuilder, unsigned Opcode)
unsigned getScalarOrVectorComponentCount(Register VReg) const
const Type * getTypeForSPIRVType(SPIRVTypeInst Ty) const
bool isBitcastCompatible(SPIRVTypeInst Type1, SPIRVTypeInst Type2) const
void addDeducedElementType(Value *Val, Type *Ty)
bool shouldKeepTypedPtrType(SPIRVTypeInst ElemType) const
SPIRVTypeInst getOrCreatePaddingType(MachineIRBuilder &MIRBuilder)
unsigned getPointerSize() const
Register getOrCreateConstFP(APFloat Val, MachineInstr &I, SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII, bool ZeroAsNull=true)
LLT getRegType(SPIRVTypeInst SpvType) const
SPIRVGlobalRegistry(DataLayout DL)
SPIRVTypeInst getOpTypeVoid(MachineIRBuilder &MIRBuilder)
void invalidateMachineInstr(MachineInstr *MI)
bool isResourceType(SPIRVTypeInst Type) const
SPIRVTypeInst getOrCreateSPIRVBoolType(MachineIRBuilder &MIRBuilder, bool EmitIR)
void updateIfExistDeducedElementType(Value *OldVal, Value *NewVal, bool DeleteOld)
bool isScalarOfType(Register VReg, unsigned TypeOpcode) const
Register getSPIRVTypeID(SPIRVTypeInst SpirvType) const
Register getOrCreateConstInt(uint64_t Val, MachineInstr &I, SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII, bool ZeroAsNull=true)
Register getOrCreateConstIntArray(uint64_t Val, size_t Num, MachineInstr &I, SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII)
SPIRVTypeInst retrieveScalarOrVectorIntType(SPIRVTypeInst Type) const
Register getOrCreateGlobalVariableWithBinding(SPIRVTypeInst VarType, uint32_t Set, uint32_t Binding, StringRef Name, MachineIRBuilder &MIRBuilder)
SPIRVTypeInst getOrCreateOpTypeCoopMatr(MachineIRBuilder &MIRBuilder, const TargetExtType *ExtensionType, SPIRVTypeInst ElemType, uint32_t Scope, uint32_t Rows, uint32_t Columns, uint32_t Use, bool EmitIR)
SPIRVTypeInst changePointerStorageClass(SPIRVTypeInst PtrType, SPIRV::StorageClass::StorageClass SC, MachineInstr &I)
SPIRVTypeInst getOrCreateUnknownType(const Type *Ty, MachineIRBuilder &MIRBuilder, unsigned Opcode, const ArrayRef< MCOperand > Operands)
Register getOrCreateConstVector(uint64_t Val, MachineInstr &I, SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII, bool ZeroAsNull=true)
Register buildConstantFP(APFloat Val, MachineIRBuilder &MIRBuilder, SPIRVTypeInst SpvType=nullptr)
SPIRVTypeInst getOrCreateOpTypePipe(MachineIRBuilder &MIRBuilder, SPIRV::AccessQualifier::AccessQualifier AccQual)
void addGlobalObject(const Value *V, const MachineFunction *MF, Register R)
SPIRVTypeInst getScalarOrVectorComponentType(SPIRVTypeInst Type) const
SPIRVTypeInst getOrCreateSPIRVFloatType(unsigned BitWidth, MachineInstr &I, const SPIRVInstrInfo &TII)
SPIRVTypeInst getOrCreateVulkanBufferType(MachineIRBuilder &MIRBuilder, Type *ElemType, SPIRV::StorageClass::StorageClass SC, bool IsWritable, bool EmitIr=false)
SPIRVTypeInst getPointeeType(SPIRVTypeInst PtrType)
SPIRVTypeInst getOrCreateSPIRVType(const Type *Type, MachineInstr &I, SPIRV::AccessQualifier::AccessQualifier AQ, bool EmitIR)
Register getOrCreateConsIntVector(uint64_t Val, MachineIRBuilder &MIRBuilder, SPIRVTypeInst SpvType, bool EmitIR)
void updateIfExistAssignPtrTypeInstr(Value *OldVal, Value *NewVal, bool DeleteOld)
SPIRVTypeInst assignTypeToVReg(const Type *Type, Register VReg, MachineIRBuilder &MIRBuilder, SPIRV::AccessQualifier::AccessQualifier AQ, bool EmitIR)
bool isScalarOrVectorOfType(Register VReg, unsigned TypeOpcode) const
SPIRVTypeInst getOrCreateLayoutType(MachineIRBuilder &MIRBuilder, const TargetExtType *T, bool EmitIr=false)
Register createConstInt(const ConstantInt *CI, MachineInstr &I, SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII, bool ZeroAsNull)
Register getOrCreateConstNullPtr(MachineIRBuilder &MIRBuilder, SPIRVTypeInst SpvType)
SPIRVTypeInst getSPIRVTypeForVReg(Register VReg, const MachineFunction *MF=nullptr) const
SPIRVTypeInst getOrCreateSPIRVUntypedPointerType(SPIRV::StorageClass::StorageClass SC, MachineIRBuilder &MIRBuilder)
Register getOrCreateUndef(MachineInstr &I, SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII)
SPIRVTypeInst getOrCreateOpTypeSampler(MachineIRBuilder &MIRBuilder)
void buildMemAliasingOpDecorate(Register Reg, MachineIRBuilder &MIRBuilder, uint32_t Dec, const MDNode *GVarMD)
SPIRV::StorageClass::StorageClass getPointerStorageClass(Register VReg) const
bool shouldUseUntypedPointer(SPIRVTypeInst ElemType, const SPIRVSubtarget &ST) const
Register buildConstantSampler(Register Res, unsigned AddrMode, unsigned Param, unsigned FilerMode, MachineIRBuilder &MIRBuilder)
void updateAssignType(CallInst *AssignCI, Value *Arg, Value *OfType)
CallInst * findAssignPtrTypeInstr(const Value *Val)
Register buildConstantInt(uint64_t Val, MachineIRBuilder &MIRBuilder, SPIRVTypeInst SpvType, bool EmitIR, bool ZeroAsNull=true)
SPIRVTypeInst getOrCreateVulkanPushConstantType(MachineIRBuilder &MIRBuilder, Type *ElemType)
Register createConstFP(const ConstantFP *CF, MachineInstr &I, SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII, bool ZeroAsNull)
SPIRVTypeInst getOrCreateOpTypeDeviceEvent(MachineIRBuilder &MIRBuilder)
const MachineInstr * findMI(SPIRV::IRHandle Handle, const MachineFunction *MF)
bool erase(const MachineInstr *MI)
bool add(SPIRV::IRHandle Handle, const MachineInstr *MI)
Register find(SPIRV::IRHandle Handle, const MachineFunction *MF)
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
bool consume_back(StringRef Suffix)
Returns true if this StringRef has the given suffix and removes that suffix.
bool getAsInteger(unsigned Radix, T &Result) const
Parse the current string as an integer of the specified radix.
std::string str() const
Get the contents as an std::string.
constexpr StringRef substr(size_t Start, size_t N=npos) const
Return a reference to the substring from [Start, Start + N).
size_t find(char C, size_t From=0) const
Search for the first character C in the string.
bool consume_front(char Prefix)
Returns true if this StringRef has the given prefix and removes that prefix.
Class to represent struct types.
ArrayRef< Type * > elements() const
static LLVM_ABI StructType * create(LLVMContext &Context, StringRef Name)
This creates an identified struct.
unsigned getNumElements() const
Random access to the elements.
bool hasName() const
Return true if this is a named struct that has a non-empty name.
LLVM_ABI StringRef getName() const
Return the name for this struct type if it has an identity.
Class to represent target extensions types, which are generally unintrospectable from target-independ...
unsigned getNumIntParameters() const
Type * getTypeParameter(unsigned i) const
unsigned getNumTypeParameters() const
unsigned getIntParameter(unsigned i) const
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 LLVM_ABI IntegerType * getInt64Ty(LLVMContext &C)
LLVM_ABI unsigned getIntegerBitWidth() const
bool isVectorTy() const
True if this is an instance of VectorType.
bool isArrayTy() const
True if this is an instance of ArrayType.
bool isPointerTy() const
True if this is an instance of PointerType.
Type * getArrayElementType() const
bool isBFloatTy() const
Return true if this is 'bfloat', a 16-bit bfloat type.
LLVM_ABI uint64_t getArrayNumElements() const
bool isPPC_FP128Ty() const
Return true if this is powerpc long double.
bool isFP128Ty() const
Return true if this is 'fp128'.
static LLVM_ABI IntegerType * getInt8Ty(LLVMContext &C)
LLVM_ABI TypeSize getPrimitiveSizeInBits() const LLVM_READONLY
Return the basic size of this type if it is a primitive type.
bool isAggregateType() const
Return true if the type is an aggregate type.
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
bool isIntegerTy() const
True if this is an instance of IntegerType.
static LLVM_ABI Type * getDoubleTy(LLVMContext &C)
static LLVM_ABI Type * getFloatTy(LLVMContext &C)
static LLVM_ABI Type * getHalfTy(LLVMContext &C)
bool isVoidTy() const
Return true if this is 'void'.
static LLVM_ABI TypedPointerType * get(Type *ElementType, unsigned AddressSpace)
This constructs a pointer to an object of the specified type in a numbered address space.
'undef' values are things that do not have specified contents.
static LLVM_ABI UndefValue * get(Type *T)
Static factory methods - Return an 'undef' object of the specified type.
A Use represents the edge between a Value definition and its users.
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
LLVMContext & getContext() const
All values hold a context through their type.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
ElementCount getElementCount() const
Return an ElementCount instance to represent the (possibly scalable) number of elements in the vector...
Type * getElementType() const
const ParentTy * getParent() const
self_iterator getIterator()
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
IRHandle handle(const Type *Ty)
IRHandle irhandle_sampled_image(const Type *SampledTy, const MachineInstr *ImageTy)
IRHandle irhandle_padding()
IRHandle irhandle_vkbuffer(const Type *ElementType, StorageClass::StorageClass SC, bool IsWriteable)
IRHandle irhandle_untyped_pointer(unsigned AddressSpace)
IRHandle irhandle_sampler()
TargetExtType * parseBuiltinTypeNameToTargetExtType(std::string TypeName, LLVMContext &Context)
Translates a string representing a SPIR-V or OpenCL builtin type to a TargetExtType that can be furth...
IRHandle irhandle_event()
SPIRVTypeInst lowerBuiltinType(const Type *OpaqueType, SPIRV::AccessQualifier::AccessQualifier AccessQual, MachineIRBuilder &MIRBuilder, SPIRVGlobalRegistry *GR)
IRHandle irhandle_pipe(uint8_t AQ)
IRHandle irhandle_image(const Type *SampledTy, unsigned Dim, unsigned Depth, unsigned Arrayed, unsigned MS, unsigned Sampled, unsigned ImageFormat, unsigned AQ=0)
This is an optimization pass for GlobalISel generic memory operations.
void addStringImm(StringRef Str, MCInst &Inst)
bool isTypedPointerWrapper(const TargetExtType *ExtTy)
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
unsigned getPointerAddressSpace(const Type *T)
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
void addNumImm(const APInt &Imm, MachineInstrBuilder &MIB)
CallInst * buildIntrWithMD(Intrinsic::ID IntrID, ArrayRef< Type * > Types, Value *Arg, Value *Arg2, ArrayRef< Constant * > Imms, IRBuilder<> &B)
bool isLongVectorEXT(const Type *Ty)
bool matchPeeledArrayPattern(const StructType *Ty, Type *&OriginalElementType, uint64_t &TotalSize)
void buildOpDecorate(Register Reg, MachineIRBuilder &MIRBuilder, SPIRV::Decoration::Decoration Dec, ArrayRef< uint32_t > DecArgs, StringRef StrImm)
LLVM_ABI void reportFatalInternalError(Error Err)
Report a fatal error that indicates a bug in LLVM.
constexpr unsigned storageClassToAddressSpace(SPIRV::StorageClass::StorageClass SC)
bool isVectorType(SPIRVTypeInst SPVTy)
bool getSpirvBuiltInIdByName(llvm::StringRef Name, SPIRV::BuiltIn::BuiltIn &BI)
MetadataAsValue * buildMD(Value *Arg)
bool isTypedPointerTy(const Type *T)
void buildOpName(Register Target, StringRef Name, MachineIRBuilder &MIRBuilder)
MachineInstr * getImm(const MachineOperand &MO, const MachineRegisterInfo *MRI)
Type * getTypedPointerWrapper(Type *ElemTy, unsigned AS)
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
Type * toTypedPointer(Type *Ty)
bool isSpecialOpaqueType(const Type *Ty)
bool isPointerTy(const Type *T)
MachineBasicBlock::iterator getInsertPtValidEnd(MachineBasicBlock *MBB)
const Type * unifyPtrType(const Type *Ty)
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
std::function< void(Register)> StructOffsetDecorator
SPIRV::StorageClass::StorageClass addressSpaceToStorageClass(unsigned AddrSpace, const SPIRVSubtarget &STI)
void buildOpSpirvDecorations(Register Reg, MachineIRBuilder &MIRBuilder, const MDNode *GVarMD, const SPIRVSubtarget &ST)
int64_t foldImm(const MachineOperand &MO, const MachineRegisterInfo *MRI)
Type * parseBasicTypeName(StringRef &TypeName, LLVMContext &Ctx)
DWARFExpression::Operation Op
constexpr unsigned BitWidth
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
bool hasBuiltinTypePrefix(StringRef Name)
void buildOpMemberDecorate(Register Reg, MachineIRBuilder &MIRBuilder, SPIRV::Decoration::Decoration Dec, uint32_t Member, ArrayRef< uint32_t > DecArgs, StringRef StrImm)
bool isPointerTyOrWrapper(const Type *Ty)
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Next
bool isSpvIntrinsic(const MachineInstr &MI, Intrinsic::ID IntrinsicID)
PoisonValue * getNormalizedPoisonValue(Type *Ty, bool CanUseAnyVectorRank)
MachineInstr * getVRegDef(MachineRegisterInfo &MRI, Register Reg)
MCRegisterClass TargetRegisterClass
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
constexpr uint64_t value() const
This is a hole in the type system and should not be abused.
Align valueOrOne() const
For convenience, returns a valid alignment or 1 if undefined.