LLVM 24.0.0git
SPIRVGlobalRegistry.h
Go to the documentation of this file.
1//===-- SPIRVGlobalRegistry.h - SPIR-V Global Registry ----------*- C++ -*-===//
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// SPIRVGlobalRegistry is used to maintain rich type information required for
10// SPIR-V even after lowering from LLVM IR to GMIR. It can convert an llvm::Type
11// into an OpTypeXXX instruction, and map it to a virtual register. Also it
12// builds and supports consistency of constants and global variables.
13//
14//===----------------------------------------------------------------------===//
15
16#ifndef LLVM_LIB_TARGET_SPIRV_SPIRVGLOBALREGISTRY_H
17#define LLVM_LIB_TARGET_SPIRV_SPIRVGLOBALREGISTRY_H
18
20#include "SPIRVIRMapping.h"
21#include "SPIRVInstrInfo.h"
22#include "SPIRVTypeInst.h"
23#include "llvm/ADT/DenseSet.h"
25#include "llvm/IR/Constant.h"
27
28namespace llvm {
29class SPIRVSubtarget;
30
31using StructOffsetDecorator = std::function<void(Register)>;
32
34 // Registers holding values which have types associated with them.
35 // Initialized upon VReg definition in IRTranslator.
36 // Do not confuse this with DuplicatesTracker as DT maps Type* to <MF, Reg>
37 // where Reg = OpType...
38 // while VRegToTypeMap tracks SPIR-V type assigned to other regs (i.e. not
39 // type-declaring ones).
41 VRegToTypeMap;
42
44
45 // map a Function to its definition (as a machine instruction operand)
48 // map function pointer (as a machine instruction operand) to the used
49 // Function
51 // Maps Functions to their calls (in a form of the machine instruction,
52 // OpFunctionCall) that happened before the definition is available
54 // map a Function to its original return type before the clone function was
55 // created during substitution of aggregate arguments
56 // (see `SPIRVPrepareFunctions::removeAggregateTypesFromSignature()`)
57 DenseMap<Value *, Type *> MutatedAggRet;
58 // map an instruction to its value's attributes (type, name)
60
61 SmallPtrSet<const Type *, 4> TypesInProcessing;
62 DenseMap<const Type *, SPIRVTypeInst> ForwardPointerTypes;
63
64 // Struct types decorated with Block, recorded at the point the decoration
65 // is emitted.
66 DenseSet<SPIRVTypeInst> BlockDecoratedTypes;
67
68 // Stores for each function the last inserted SPIR-V Type.
69 // See: SPIRVGlobalRegistry::createOpType.
71
72 // if a function returns a pointer, this is to map it into TypedPointerType
74
75 // Current target's datalayout.
76 DataLayout DL;
77
78 // Holds the maximum ID we have in the module.
79 unsigned Bound;
80
81 // Maps values associated with untyped pointers into deduced element types of
82 // untyped pointers.
83 DenseMap<Value *, Type *> DeducedElTys;
84 // Maps composite values to deduced types where untyped pointers are replaced
85 // with typed ones.
86 DenseMap<Value *, Type *> DeducedNestedTys;
87
88 // Element type for each untyped-pointer register, which
89 // OpTypeUntypedPointerKHR omits but OpUntypedVariableKHR needs as a Data
90 // Type.
92 UntypedPointerElementTypes;
93 // Maps values to "assign type" calls, thus being a registry of created
94 // Intrinsic::spv_assign_ptr_type instructions.
95 DenseMap<Value *, CallInst *> AssignPtrTypeInstr;
96
97 // Maps OpVariable and OpFunction-related v-regs to its LLVM IR definition.
99
100 // map of aliasing decorations to aliasing metadata
102
103 // Add a new OpTypeXXX instruction without checking for duplicates.
104 SPIRVTypeInst createSPIRVType(const Type *Type, MachineIRBuilder &MIRBuilder,
105 SPIRV::AccessQualifier::AccessQualifier AQ,
106 bool ExplicitLayoutRequired, bool EmitIR);
108 findSPIRVType(const Type *Ty, MachineIRBuilder &MIRBuilder,
109 SPIRV::AccessQualifier::AccessQualifier accessQual,
110 bool ExplicitLayoutRequired, bool EmitIR);
112 restOfCreateSPIRVType(const Type *Type, MachineIRBuilder &MIRBuilder,
113 SPIRV::AccessQualifier::AccessQualifier AccessQual,
114 bool ExplicitLayoutRequired, bool EmitIR);
115
116 // Internal function creating the Types/Constants at the correct position
117 // in the function by tweaking the passed "MIRBuilder" insertion point and
118 // restoring it to the correct position. "Op" should be the function creating
119 // the specific operation you need, and should return the newly created
120 // instruction.
121 const MachineInstr *createConstOrTypeAtFunctionEntry(
122 MachineIRBuilder &MIRBuilder,
123 std::function<MachineInstr *(MachineIRBuilder &)> Op);
124
125public:
127
129
130 void setBound(unsigned V) { Bound = V; }
131 unsigned getBound() { return Bound; }
132
133 void addGlobalObject(const Value *V, const MachineFunction *MF, Register R) {
134 Reg2GO[std::make_pair(MF, R)] = V;
135 }
137 auto It = Reg2GO.find(std::make_pair(MF, R));
138 return It == Reg2GO.end() ? nullptr : It->second;
139 }
140
141 // Add a record to the map of function return pointer types.
142 void addReturnType(const Function *ArgF, TypedPointerType *DerivedTy) {
143 FunResPointerTypes[ArgF] = DerivedTy;
144 }
145 // Find a record in the map of function return pointer types.
147 auto It = FunResPointerTypes.find(ArgF);
148 return It == FunResPointerTypes.end() ? nullptr : It->second;
149 }
150
151 // A registry of "assign type" records:
152 // - Add a record.
153 void addAssignPtrTypeInstr(Value *Val, CallInst *AssignPtrTyCI) {
154 AssignPtrTypeInstr[Val] = AssignPtrTyCI;
155 }
156 // - Find a record.
158 auto It = AssignPtrTypeInstr.find(Val);
159 return It == AssignPtrTypeInstr.end() ? nullptr : It->second;
160 }
161 // - Find a record and update its key or add a new record, if found.
163 bool DeleteOld) {
164 if (CallInst *CI = findAssignPtrTypeInstr(OldVal)) {
165 if (DeleteOld)
166 AssignPtrTypeInstr.erase(OldVal);
167 AssignPtrTypeInstr[NewVal] = CI;
168 }
169 }
170
171 // A registry of mutated values
172 // (see `SPIRVPrepareFunctions::removeAggregateTypesFromSignature()`):
173 // - Add a record.
174 void addMutated(Value *Val, Type *Ty) { MutatedAggRet[Val] = Ty; }
175 // - Find a record.
176 Type *findMutated(const Value *Val) {
177 auto It = MutatedAggRet.find(Val);
178 return It == MutatedAggRet.end() ? nullptr : It->second;
179 }
180
181 // A registry of value's attributes (type, name)
182 // - Add a record.
183 void addValueAttrs(MachineInstr *Key, std::pair<Type *, std::string> Val) {
184 ValueAttrs[Key] = Val;
185 }
186 // - Find a record.
187 bool findValueAttrs(const MachineInstr *Key, Type *&Ty, StringRef &Name) {
188 auto It = ValueAttrs.find(Key);
189 if (It == ValueAttrs.end())
190 return false;
191 Ty = It->second.first;
192 Name = It->second.second;
193 return true;
194 }
195
196 // Deduced element types of untyped pointers and composites:
197 // - Add a record to the map of deduced element types.
198 void addDeducedElementType(Value *Val, Type *Ty) { DeducedElTys[Val] = Ty; }
199 // - Find a record in the map of deduced element types.
201 auto It = DeducedElTys.find(Val);
202 return It == DeducedElTys.end() ? nullptr : It->second;
203 }
204 // - Find a record and update its key or add a new record, if found.
206 bool DeleteOld) {
207 if (Type *Ty = findDeducedElementType(OldVal)) {
208 if (DeleteOld)
209 DeducedElTys.erase(OldVal);
210 DeducedElTys[NewVal] = Ty;
211 }
212 }
213 // - Add a record to the map of deduced composite types.
215 DeducedNestedTys[Val] = Ty;
216 }
217 // - Find a record in the map of deduced composite types.
219 auto It = DeducedNestedTys.find(Val);
220 return It == DeducedNestedTys.end() ? nullptr : It->second;
221 }
222
223 // Store the element type associated with an untyped-pointer register.
225 UntypedPointerElementTypes[{CurMF, Reg}] = ElemType;
226 }
227 // Get the element type associated with an untyped-pointer register.
229 auto It = UntypedPointerElementTypes.find({CurMF, Reg});
230 return It == UntypedPointerElementTypes.end() ? nullptr : It->second;
231 }
232 // - Find a type of the given Global value
234 // we may know element type if it was deduced earlier
235 Type *ElementTy = findDeducedElementType(Global);
236 if (!ElementTy) {
237 // or we may know element type if it's associated with a composite
238 // value
239 if (Value *GlobalElem =
240 Global->getNumOperands() > 0 ? Global->getOperand(0) : nullptr)
241 ElementTy = findDeducedCompositeType(GlobalElem);
242 else if (const Function *Fn = dyn_cast<Function>(Global))
243 ElementTy = SPIRV::getOriginalFunctionType(*Fn);
244 }
245 return ElementTy ? ElementTy : Global->getValueType();
246 }
247
248 // Map a machine operand that represents a use of a function via function
249 // pointer to a machine operand that represents the function definition.
250 // Return either the register or invalid value, because we have no context for
251 // a good diagnostic message in case of unexpectedly missing references.
253 auto ResF = InstrToFunction.find(Use);
254 if (ResF == InstrToFunction.end())
255 return nullptr;
256 auto ResReg = FunctionToInstr.find(ResF->second);
257 return ResReg == FunctionToInstr.end() ? nullptr : ResReg->second;
258 }
259
260 // Map a Function to a machine instruction that represents the function
261 // definition.
263 if (!F)
264 return nullptr;
265 auto MOIt = FunctionToInstr.find(F);
266 return MOIt == FunctionToInstr.end() ? nullptr : MOIt->second->getParent();
267 }
268
269 // Map a Function to a machine instruction that represents the function
270 // definition.
272 if (!MI)
273 return nullptr;
274 auto FIt = FunctionToInstrRev.find(MI);
275 return FIt == FunctionToInstrRev.end() ? nullptr : FIt->second;
276 }
277
278 // map function pointer (as a machine instruction operand) to the used
279 // Function
281 InstrToFunction[MO] = F;
282 }
283
284 // map a Function to its definition (as a machine instruction)
286 FunctionToInstr[F] = MO;
287 FunctionToInstrRev[MO->getParent()] = F;
288 }
289
290 // Return true if any OpConstantFunctionPointerINTEL were generated
291 bool hasConstFunPtr() { return !InstrToFunction.empty(); }
292
293 // Add a record about forward function call.
295 ForwardCalls[F].insert(MI);
296 }
297
298 // Map a Function to the vector of machine instructions that represents
299 // forward function calls or to nullptr if not found.
301 auto It = ForwardCalls.find(F);
302 return It == ForwardCalls.end() ? nullptr : &It->second;
303 }
304
305 // Get or create a SPIR-V type corresponding the given LLVM IR type,
306 // and map it to the given VReg.
308 MachineIRBuilder &MIRBuilder,
309 SPIRV::AccessQualifier::AccessQualifier AQ,
310 bool EmitIR);
313
314 // In cases where the SPIR-V type is already known, this function can be
315 // used to map it to the given VReg.
317 const MachineFunction &MF);
318
319 // Either generate a new OpTypeXXX instruction or return an existing one
320 // corresponding to the given LLVM IR type.
321 // EmitIR controls if we emit GMIR or SPV constants (e.g. for array sizes)
322 // because this method may be called from InstructionSelector and we don't
323 // want to emit extra IR instructions there.
325 SPIRV::AccessQualifier::AccessQualifier AQ,
326 bool EmitIR) {
327 MachineIRBuilder MIRBuilder(I);
328 return getOrCreateSPIRVType(Type, MIRBuilder, AQ, EmitIR);
329 }
330
332 MachineIRBuilder &MIRBuilder,
333 SPIRV::AccessQualifier::AccessQualifier AQ,
334 bool EmitIR) {
335 return getOrCreateSPIRVType(Type, MIRBuilder, AQ, false, EmitIR);
336 }
337
339 auto Res = SPIRVToLLVMType.find(Ty);
340 assert(Res != SPIRVToLLVMType.end());
341 return Res->second;
342 }
343
344 // Return a pointee's type, or nullptr otherwise.
346
347 // Either generate a new OpTypeXXX instruction or return an existing one
348 // corresponding to the given string containing the name of the builtin type.
349 // Return nullptr if unable to recognize SPIRV type name from `TypeStr`.
351 StringRef TypeStr, MachineIRBuilder &MIRBuilder, bool EmitIR,
352 SPIRV::StorageClass::StorageClass SC = SPIRV::StorageClass::Function,
353 SPIRV::AccessQualifier::AccessQualifier AQ =
354 SPIRV::AccessQualifier::ReadWrite);
355
356 // Return the SPIR-V type instruction corresponding to the given VReg, or
357 // nullptr if no such type instruction exists. The second argument MF
358 // allows to search for the association in a context of the machine functions
359 // than the current one, without switching between different "current" machine
360 // functions.
362 const MachineFunction *MF = nullptr) const;
363
364 // Return the result type of the instruction defining the register.
366
367 // Return the VReg holding the result of the given OpTypeXXX instruction.
368 Register getSPIRVTypeID(SPIRVTypeInst SpirvType) const;
369
370 // Return previous value of the current machine function
372 MachineFunction *Ret = CurMF;
373 CurMF = &MF;
374 return Ret;
375 }
376
377 // Return true if the type is an aggregate type.
379 return Type && (Type->getOpcode() == SPIRV::OpTypeStruct ||
380 Type->getOpcode() == SPIRV::OpTypeArray);
381 }
382
383 // Whether the given VReg has an OpTypeXXX instruction mapped to it with the
384 // given opcode (e.g. OpTypeFloat).
385 bool isScalarOfType(Register VReg, unsigned TypeOpcode) const;
386
387 // Return true if the given VReg's assigned SPIR-V type is either a scalar
388 // matching the given opcode, or a vector with an element type matching that
389 // opcode (e.g. OpTypeBool, or OpTypeVector %x 4, where %x is OpTypeBool).
390 bool isScalarOrVectorOfType(Register VReg, unsigned TypeOpcode) const;
391
392 // Returns true if `Type` is a resource type. This could be an image type
393 // or a struct for a buffer decorated with the block decoration.
395
396 // Return number of elements in a vector if the argument is associated with
397 // a vector type. Return 1 for a scalar type, and 0 for a missing type.
398 unsigned getScalarOrVectorComponentCount(Register VReg) const;
400
401 // Return the component type in a vector if the argument is associated with
402 // a vector type. Returns the argument itself for other types, and nullptr
403 // for a missing type.
405
406 // For vectors or scalars of booleans, integers and floats, return the scalar
407 // type's bitwidth. Otherwise calls llvm_unreachable().
409
410 // For vectors or scalars of integers and floats, return total bitwidth of the
411 // argument. Otherwise returns 0.
413
414 // True if a pointer to this element type must stay typed rather than become
415 // OpTypeUntypedPointerKHR. Such an element type is either a function type,
416 // which an untyped pointer cannot express, or an opaque builtin type such as
417 // an image or a sampler.
418 bool shouldKeepTypedPtrType(SPIRVTypeInst ElemType) const;
419
420 // True if a pointer to this element type should be emitted as
421 // OpTypeUntypedPointerKHR rather than OpTypePointer.
423 const SPIRVSubtarget &ST) const;
424
425 // Byte size of a pointer value's IR-deduced element type, or 0 if unknown.
426 // Array indexing and copy strides work in terms of the alloc size, so this
427 // reports the size a value of that type occupies in an array. For OpenCL
428 // that means a 3-component vector is as large as a 4-component one.
429 unsigned getDeducedPointeeByteSize(const Value *PtrVal) {
430 if (Type *ElemTy = findDeducedElementType(PtrVal))
431 return DL.getTypeAllocSize(ElemTy).getFixedValue();
432 return 0;
433 }
434
435 // Returns either pointer to integer type, that may be a type of vector
436 // elements or an original type, or nullptr if the argument is niether
437 // an integer scalar, nor an integer vector
439
440 // For integer vectors or scalars, return whether the integers are signed.
442
443 // Gets the storage class of the pointer type assigned to this vreg.
444 SPIRV::StorageClass::StorageClass getPointerStorageClass(Register VReg) const;
445 SPIRV::StorageClass::StorageClass
447
448 // Return the number of bits SPIR-V pointers and size_t variables require.
449 unsigned getPointerSize() const {
450 return DL.getPointerSizeInBits(/* AS = */ 0);
451 }
452
453 // Returns true if two types are defined and are compatible in a sense of
454 // OpBitcast instruction
455 bool isBitcastCompatible(SPIRVTypeInst Type1, SPIRVTypeInst Type2) const;
456
457 // Informs about removal of the machine instruction and invalidates data
458 // structures referring this instruction.
460
461private:
462 SPIRVTypeInst getOpTypeBool(MachineIRBuilder &MIRBuilder);
463
464 const Type *adjustIntTypeByWidth(const Type *Ty) const;
465 unsigned adjustOpTypeIntWidth(unsigned Width) const;
466
468 MachineIRBuilder &MIRBuilder,
469 SPIRV::AccessQualifier::AccessQualifier AQ,
470 bool ExplicitLayoutRequired, bool EmitIR);
471
472 SPIRVTypeInst getOpTypeInt(unsigned Width, MachineIRBuilder &MIRBuilder,
473 bool IsSigned = false);
474
475 SPIRVTypeInst getOpTypeFloat(uint32_t Width, MachineIRBuilder &MIRBuilder);
476
477 SPIRVTypeInst getOpTypeFloat(uint32_t Width, MachineIRBuilder &MIRBuilder,
478 SPIRV::FPEncoding::FPEncoding FPEncode);
479
480 SPIRVTypeInst getOpTypeVector(uint32_t NumElems, SPIRVTypeInst ElemType,
481 MachineIRBuilder &MIRBuilder);
482
483 SPIRVTypeInst getOpTypeArray(uint32_t NumElems, SPIRVTypeInst ElemType,
484 MachineIRBuilder &MIRBuilder,
485 bool ExplicitLayoutRequired, bool EmitIR);
486
487 SPIRVTypeInst getOpTypeOpaque(const StructType *Ty,
488 MachineIRBuilder &MIRBuilder);
489
490 SPIRVTypeInst getOpTypeStruct(const StructType *Ty,
491 MachineIRBuilder &MIRBuilder,
492 SPIRV::AccessQualifier::AccessQualifier AccQual,
493 StructOffsetDecorator Decorator, bool EmitIR);
494
495 SPIRVTypeInst getOpTypePointer(SPIRV::StorageClass::StorageClass SC,
496 SPIRVTypeInst ElemType,
497 MachineIRBuilder &MIRBuilder, Register Reg);
498
500 getOpTypeFunction(const FunctionType *Ty, SPIRVTypeInst RetType,
501 const SmallVectorImpl<SPIRVTypeInst> &ArgTypes,
502 MachineIRBuilder &MIRBuilder);
503
505 getOrCreateSpecialType(const Type *Ty, MachineIRBuilder &MIRBuilder,
506 SPIRV::AccessQualifier::AccessQualifier AccQual);
507
508 SPIRVTypeInst finishCreatingSPIRVType(const Type *LLVMTy,
509 SPIRVTypeInst SpirvType);
510 Register getOrCreateBaseRegister(Constant *Val, MachineInstr &I,
511 SPIRVTypeInst SpvType,
512 const SPIRVInstrInfo &TII, unsigned BitWidth,
513 bool ZeroAsNull);
514 Register getOrCreateCompositeOrNull(Constant *Val, MachineInstr &I,
515 SPIRVTypeInst SpvType,
516 const SPIRVInstrInfo &TII, Constant *CA,
517 unsigned BitWidth, unsigned ElemCnt,
518 bool ZeroAsNull = true);
519
520 Register getOrCreateIntCompositeOrNull(uint64_t Val,
521 MachineIRBuilder &MIRBuilder,
522 SPIRVTypeInst SpvType, bool EmitIR,
523 Constant *CA, unsigned BitWidth,
524 unsigned ElemCnt);
525
526 // Returns a pointer to a SPIR-V pointer type with the given base type and
527 // storage class. It is the responsibility of the caller to make sure the
528 // decorations on the base type are valid for the given storage class. For
529 // example, it has the correct offset and stride decorations.
530 // ForceTyped keeps an OpTypePointer even when untyped pointers are available,
531 // for cases where the pointee type must be preserved (e.g. a byval/byref/sret
532 // aggregate argument).
533 SPIRVTypeInst getOrCreateSPIRVPointerTypeInternal(
535 SPIRV::StorageClass::StorageClass SC, bool ForceTyped = false);
536
537 void addStructOffsetDecorations(Register Reg, StructType *Ty,
538 MachineIRBuilder &MIRBuilder);
539 void addArrayStrideDecorations(Register Reg, Type *ElementType,
540 MachineIRBuilder &MIRBuilder);
541
543
545 getOrCreateOpTypeImage(MachineIRBuilder &MIRBuilder,
546 SPIRVTypeInst SampledType, SPIRV::Dim::Dim Dim,
547 uint32_t Depth, uint32_t Arrayed,
548 uint32_t Multisampled, uint32_t Sampled,
549 SPIRV::ImageFormat::ImageFormat ImageFormat,
550 SPIRV::AccessQualifier::AccessQualifier AccQual);
551
552public:
554 SPIRVTypeInst SpvType, bool EmitIR,
555 bool ZeroAsNull = true);
557 SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII,
558 bool ZeroAsNull = true);
560 SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII,
561 bool ZeroAsNull = true);
563 SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII,
564 bool ZeroAsNull);
566 SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII,
567 bool ZeroAsNull = true);
569 SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII,
570 bool ZeroAsNull);
572 SPIRVTypeInst SpvType = nullptr);
573
575 SPIRVTypeInst SpvType,
576 const SPIRVInstrInfo &TII,
577 bool ZeroAsNull = true);
579 SPIRVTypeInst SpvType,
580 const SPIRVInstrInfo &TII,
581 bool ZeroAsNull = true);
583 SPIRVTypeInst SpvType,
584 const SPIRVInstrInfo &TII,
585 bool ZeroAsNull = true);
587 SPIRVTypeInst SpvType,
588 const SPIRVInstrInfo &TII);
590 SPIRVTypeInst SpvType, bool EmitIR);
592 SPIRVTypeInst SpvType);
593 Register buildConstantSampler(Register Res, unsigned AddrMode, unsigned Param,
594 unsigned FilerMode,
595 MachineIRBuilder &MIRBuilder);
597 const SPIRVInstrInfo &TII);
600 const GlobalValue *GV, SPIRV::StorageClass::StorageClass Storage,
601 const MachineInstr *Init, bool IsConst,
602 const std::optional<SPIRV::LinkageType::LinkageType> &LinkageType,
603 MachineIRBuilder &MIRBuilder, bool IsInstSelector);
606 StringRef Name,
607 MachineIRBuilder &MIRBuilder);
608
609 // Convenient helpers for getting types with check for duplicates.
611 MachineIRBuilder &MIRBuilder);
613 const SPIRVInstrInfo &TII);
615 const SPIRVInstrInfo &TII,
616 unsigned SPIRVOPcode, Type *LLVMTy);
618 const SPIRVInstrInfo &TII);
620 bool EmitIR);
622 const SPIRVInstrInfo &TII);
624 unsigned NumElements,
625 MachineIRBuilder &MIRBuilder,
626 bool EmitIR);
628 unsigned NumElements,
630 const SPIRVInstrInfo &TII);
632
633 // Returns a pointer to a SPIR-V pointer type with the given base type and
634 // storage class. The base type will be translated to a SPIR-V type, and the
635 // appropriate layout decorations will be added to the base type.
636 // See getOrCreateSPIRVPointerTypeInternal for ForceTyped.
638 const Type *BaseType, MachineIRBuilder &MIRBuilder,
639 SPIRV::StorageClass::StorageClass SC, bool ForceTyped = false);
642 SPIRV::StorageClass::StorageClass SC,
643 bool ForceTyped = false);
644
645 // Like getOrCreateSPIRVPointerType, but always returns an OpTypePointer even
646 // when untyped pointers are available. Use this when the pointee type must be
647 // preserved (e.g. a byval/byref/sret aggregate argument).
650 MachineIRBuilder &MIRBuilder,
651 SPIRV::StorageClass::StorageClass SC) {
652 return getOrCreateSPIRVPointerType(BaseType, MIRBuilder, SC,
653 /*ForceTyped=*/true);
654 }
655
656 // Returns a pointer to a SPIR-V pointer type with the given base type and
657 // storage class. It is the responsibility of the caller to make sure the
658 // decorations on the base type are valid for the given storage class. For
659 // example, it has the correct offset and stride decorations.
662 MachineIRBuilder &MIRBuilder,
663 SPIRV::StorageClass::StorageClass SC);
664
665 // Returns a pointer to a SPIR-V pointer type that is the same as `PtrType`
666 // except the stroage class has been changed to `SC`. It is the responsibility
667 // of the caller to be sure that the original and new storage class have the
668 // same layout requirements.
670 SPIRV::StorageClass::StorageClass SC,
671 MachineInstr &I);
672
673 // Returns OpTypeUntypedPointerKHR for the given storage class.
675 getOrCreateSPIRVUntypedPointerType(SPIRV::StorageClass::StorageClass SC,
676 MachineIRBuilder &MIRBuilder);
677
680 SPIRV::StorageClass::StorageClass SC,
681 bool IsWritable, bool EmitIr = false);
682
684
686 Type *ElemType);
687
689 const TargetExtType *T,
690 bool EmitIr = false);
691
693 getImageType(const TargetExtType *ExtensionType,
694 const SPIRV::AccessQualifier::AccessQualifier Qualifier,
695 MachineIRBuilder &MIRBuilder);
696
698
700 MachineIRBuilder &MIRBuilder);
702 const TargetExtType *ExtensionType,
703 SPIRVTypeInst ElemType,
704 uint32_t Scope, uint32_t Rows,
705 uint32_t Columns, uint32_t Use,
706 bool EmitIR);
709 SPIRV::AccessQualifier::AccessQualifier AccQual);
712 const Type *Ty, SPIRVTypeInst RetType,
713 const SmallVectorImpl<SPIRVTypeInst> &ArgTypes,
714 MachineIRBuilder &MIRBuilder);
716 MachineIRBuilder &MIRBuilder,
717 unsigned Opcode);
718
720 MachineIRBuilder &MIRBuilder,
721 unsigned Opcode,
723
724 const TargetRegisterClass *getRegClass(SPIRVTypeInst SpvType) const;
725 LLT getRegType(SPIRVTypeInst SpvType) const;
726
728 const MDNode *AliasingListMD);
730 uint32_t Dec, const MDNode *GVarMD);
731 // Replace all uses of a |Old| with |New| updates the global registry type
732 // mappings.
733 void replaceAllUsesWith(Value *Old, Value *New, bool DeleteOld = true);
734
735 void buildAssignType(IRBuilder<> &B, Type *Ty, Value *Arg);
736 void buildAssignPtr(IRBuilder<> &B, Type *ElemTy, Value *Arg);
737 void updateAssignType(CallInst *AssignCI, Value *Arg, Value *OfType);
738};
739} // end namespace llvm
740#endif // LLVM_LIB_TARGET_SPIRV_SPIRVGLOBALREGISTRY_H
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
DXIL Resource Implicit Binding
This file defines the DenseSet and SmallDenseSet classes.
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
This file declares the MachineIRBuilder class.
Register Reg
#define T
SI Fold Operands
BaseType
A given derived pointer can have multiple base pointers through phi/selects.
Class for arbitrary precision integers.
Definition APInt.h:78
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
This class represents a function call, abstracting a target machine's calling convention.
ConstantFP - Floating Point Values [float, double].
Definition Constants.h:420
This is the shared class of boolean and integer constants.
Definition Constants.h:87
This is an important base class in LLVM.
Definition Constant.h:43
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
Implements a dense probed hash-table based set.
Definition DenseSet.h:281
Class to represent function types.
iterator end()
Definition Function.h:839
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition IRBuilder.h:2893
Metadata node.
Definition Metadata.h:1069
Helper class to build MachineInstr.
Representation of each machine instruction.
const MachineBasicBlock * getParent() const
MachineOperand class - Representation of each machine instruction operand.
MachineInstr * getParent()
getParent - Return the instruction that this operand belongs to.
Wrapper class representing virtual and physical registers.
Definition Register.h:20
void recordFunctionDefinition(const Function *F, const MachineOperand *MO)
SPIRVTypeInst getImageType(const TargetExtType *ExtensionType, const SPIRV::AccessQualifier::AccessQualifier Qualifier, MachineIRBuilder &MIRBuilder)
const TypedPointerType * findReturnType(const Function *ArgF)
bool isScalarOrVectorSigned(SPIRVTypeInst Type) const
void addForwardCall(const Function *F, MachineInstr *MI)
void addAssignPtrTypeInstr(Value *Val, CallInst *AssignPtrTyCI)
const Value * getGlobalObject(const MachineFunction *MF, Register R)
SPIRVTypeInst getOrCreateOpTypeSampledImage(SPIRVTypeInst ImageType, MachineIRBuilder &MIRBuilder)
unsigned getNumScalarOrVectorTotalBitWidth(SPIRVTypeInst Type) const
SPIRVTypeInst getOrCreateSPIRVType(const Type *Type, MachineIRBuilder &MIRBuilder, SPIRV::AccessQualifier::AccessQualifier AQ, bool EmitIR)
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)
bool isAggregateType(SPIRVTypeInst Type) const
SPIRVTypeInst getOrCreateSPIRVTypedPointerType(const Type *BaseType, MachineIRBuilder &MIRBuilder, SPIRV::StorageClass::StorageClass SC)
unsigned getScalarOrVectorBitWidth(SPIRVTypeInst Type) const
void setUntypedPtrElementType(Register Reg, SPIRVTypeInst ElemType)
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)
Type * findDeducedCompositeType(const Value *Val)
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)
Register getOrCreateConstFP(APFloat Val, MachineInstr &I, SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII, bool ZeroAsNull=true)
const MachineInstr * getFunctionDefinition(const Function *F)
LLT getRegType(SPIRVTypeInst SpvType) const
void addReturnType(const Function *ArgF, TypedPointerType *DerivedTy)
const MachineOperand * getFunctionDefinitionByUse(const MachineOperand *Use)
SPIRVTypeInst getOpTypeVoid(MachineIRBuilder &MIRBuilder)
void invalidateMachineInstr(MachineInstr *MI)
bool isResourceType(SPIRVTypeInst Type) const
SPIRVTypeInst getOrCreateSPIRVBoolType(MachineIRBuilder &MIRBuilder, bool EmitIR)
void addMutated(Value *Val, Type *Ty)
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)
bool findValueAttrs(const MachineInstr *Key, Type *&Ty, StringRef &Name)
unsigned getDeducedPointeeByteSize(const Value *PtrVal)
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)
Type * findMutated(const Value *Val)
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
void addDeducedCompositeType(Value *Val, Type *Ty)
void buildAssignType(IRBuilder<> &B, Type *Ty, Value *Arg)
void recordFunctionPointer(const MachineOperand *MO, const Function *F)
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)
SmallPtrSet< MachineInstr *, 8 > * getForwardCalls(const Function *F)
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)
MachineFunction * setCurrentFunc(MachineFunction &MF)
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)
Type * getDeducedGlobalValueType(const GlobalValue *Global)
Register getOrCreateUndef(MachineInstr &I, SPIRVTypeInst SpvType, const SPIRVInstrInfo &TII)
SPIRVTypeInst getOrCreateOpTypeSampler(MachineIRBuilder &MIRBuilder)
void addValueAttrs(MachineInstr *Key, std::pair< Type *, std::string > Val)
const Function * getFunctionByDefinition(const MachineInstr *MI)
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
Type * findDeducedElementType(const Value *Val)
Register buildConstantSampler(Register Res, unsigned AddrMode, unsigned Param, unsigned FilerMode, MachineIRBuilder &MIRBuilder)
SPIRVTypeInst getUntypedPtrElementType(Register Reg) const
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)
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
Class to represent struct types.
Class to represent target extensions types, which are generally unintrospectable from target-independ...
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
A few GPU targets, such as DXIL and SPIR-V, have typed pointers.
A Use represents the edge between a Value definition and its users.
Definition Use.h:35
LLVM Value Representation.
Definition Value.h:75
FunctionType * getOriginalFunctionType(const Function &F)
This is an optimization pass for GlobalISel generic memory operations.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
LLVM_ABI void constrainSelectedInstRegOperands(MachineInstr &I, const TargetInstrInfo &TII, const TargetRegisterInfo &TRI, const RegisterBankInfo &RBI)
Mutate the newly-selected instruction I to constrain its (possibly generic) virtual register operands...
Definition Utils.cpp:159
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
std::function< void(Register)> StructOffsetDecorator
@ Global
Append to llvm.global_dtors.
DWARFExpression::Operation Op
constexpr unsigned BitWidth
MCRegisterClass TargetRegisterClass
Definition FastISel.h:58