LLVM 19.0.0git
SPIRVUtils.cpp
Go to the documentation of this file.
1//===--- SPIRVUtils.cpp ---- SPIR-V Utility Functions -----------*- 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// This file contains miscellaneous utility functions.
10//
11//===----------------------------------------------------------------------===//
12
13#include "SPIRVUtils.h"
15#include "SPIRV.h"
16#include "SPIRVInstrInfo.h"
17#include "SPIRVSubtarget.h"
18#include "llvm/ADT/StringRef.h"
24#include "llvm/IR/IntrinsicsSPIRV.h"
25
26namespace llvm {
27
28// The following functions are used to add these string literals as a series of
29// 32-bit integer operands with the correct format, and unpack them if necessary
30// when making string comparisons in compiler passes.
31// SPIR-V requires null-terminated UTF-8 strings padded to 32-bit alignment.
32static uint32_t convertCharsToWord(const StringRef &Str, unsigned i) {
33 uint32_t Word = 0u; // Build up this 32-bit word from 4 8-bit chars.
34 for (unsigned WordIndex = 0; WordIndex < 4; ++WordIndex) {
35 unsigned StrIndex = i + WordIndex;
36 uint8_t CharToAdd = 0; // Initilize char as padding/null.
37 if (StrIndex < Str.size()) { // If it's within the string, get a real char.
38 CharToAdd = Str[StrIndex];
39 }
40 Word |= (CharToAdd << (WordIndex * 8));
41 }
42 return Word;
43}
44
45// Get length including padding and null terminator.
46static size_t getPaddedLen(const StringRef &Str) {
47 const size_t Len = Str.size() + 1;
48 return (Len % 4 == 0) ? Len : Len + (4 - (Len % 4));
49}
50
51void addStringImm(const StringRef &Str, MCInst &Inst) {
52 const size_t PaddedLen = getPaddedLen(Str);
53 for (unsigned i = 0; i < PaddedLen; i += 4) {
54 // Add an operand for the 32-bits of chars or padding.
56 }
57}
58
60 const size_t PaddedLen = getPaddedLen(Str);
61 for (unsigned i = 0; i < PaddedLen; i += 4) {
62 // Add an operand for the 32-bits of chars or padding.
63 MIB.addImm(convertCharsToWord(Str, i));
64 }
65}
66
68 std::vector<Value *> &Args) {
69 const size_t PaddedLen = getPaddedLen(Str);
70 for (unsigned i = 0; i < PaddedLen; i += 4) {
71 // Add a vector element for the 32-bits of chars or padding.
72 Args.push_back(B.getInt32(convertCharsToWord(Str, i)));
73 }
74}
75
76std::string getStringImm(const MachineInstr &MI, unsigned StartIndex) {
77 return getSPIRVStringOperand(MI, StartIndex);
78}
79
80void addNumImm(const APInt &Imm, MachineInstrBuilder &MIB) {
81 const auto Bitwidth = Imm.getBitWidth();
82 if (Bitwidth == 1)
83 return; // Already handled
84 else if (Bitwidth <= 32) {
85 MIB.addImm(Imm.getZExtValue());
86 // Asm Printer needs this info to print floating-type correctly
87 if (Bitwidth == 16)
89 return;
90 } else if (Bitwidth <= 64) {
91 uint64_t FullImm = Imm.getZExtValue();
92 uint32_t LowBits = FullImm & 0xffffffff;
93 uint32_t HighBits = (FullImm >> 32) & 0xffffffff;
94 MIB.addImm(LowBits).addImm(HighBits);
95 return;
96 }
97 report_fatal_error("Unsupported constant bitwidth");
98}
99
101 MachineIRBuilder &MIRBuilder) {
102 if (!Name.empty()) {
103 auto MIB = MIRBuilder.buildInstr(SPIRV::OpName).addUse(Target);
104 addStringImm(Name, MIB);
105 }
106}
107
109 const std::vector<uint32_t> &DecArgs,
110 StringRef StrImm) {
111 if (!StrImm.empty())
112 addStringImm(StrImm, MIB);
113 for (const auto &DecArg : DecArgs)
114 MIB.addImm(DecArg);
115}
116
118 SPIRV::Decoration::Decoration Dec,
119 const std::vector<uint32_t> &DecArgs, StringRef StrImm) {
120 auto MIB = MIRBuilder.buildInstr(SPIRV::OpDecorate)
121 .addUse(Reg)
122 .addImm(static_cast<uint32_t>(Dec));
123 finishBuildOpDecorate(MIB, DecArgs, StrImm);
124}
125
127 SPIRV::Decoration::Decoration Dec,
128 const std::vector<uint32_t> &DecArgs, StringRef StrImm) {
129 MachineBasicBlock &MBB = *I.getParent();
130 auto MIB = BuildMI(MBB, I, I.getDebugLoc(), TII.get(SPIRV::OpDecorate))
131 .addUse(Reg)
132 .addImm(static_cast<uint32_t>(Dec));
133 finishBuildOpDecorate(MIB, DecArgs, StrImm);
134}
135
137 const MDNode *GVarMD) {
138 for (unsigned I = 0, E = GVarMD->getNumOperands(); I != E; ++I) {
139 auto *OpMD = dyn_cast<MDNode>(GVarMD->getOperand(I));
140 if (!OpMD)
141 report_fatal_error("Invalid decoration");
142 if (OpMD->getNumOperands() == 0)
143 report_fatal_error("Expect operand(s) of the decoration");
144 ConstantInt *DecorationId =
145 mdconst::dyn_extract<ConstantInt>(OpMD->getOperand(0));
146 if (!DecorationId)
147 report_fatal_error("Expect SPIR-V <Decoration> operand to be the first "
148 "element of the decoration");
149 auto MIB = MIRBuilder.buildInstr(SPIRV::OpDecorate)
150 .addUse(Reg)
151 .addImm(static_cast<uint32_t>(DecorationId->getZExtValue()));
152 for (unsigned OpI = 1, OpE = OpMD->getNumOperands(); OpI != OpE; ++OpI) {
153 if (ConstantInt *OpV =
154 mdconst::dyn_extract<ConstantInt>(OpMD->getOperand(OpI)))
155 MIB.addImm(static_cast<uint32_t>(OpV->getZExtValue()));
156 else if (MDString *OpV = dyn_cast<MDString>(OpMD->getOperand(OpI)))
157 addStringImm(OpV->getString(), MIB);
158 else
159 report_fatal_error("Unexpected operand of the decoration");
160 }
161 }
162}
163
164// TODO: maybe the following two functions should be handled in the subtarget
165// to allow for different OpenCL vs Vulkan handling.
166unsigned storageClassToAddressSpace(SPIRV::StorageClass::StorageClass SC) {
167 switch (SC) {
168 case SPIRV::StorageClass::Function:
169 return 0;
170 case SPIRV::StorageClass::CrossWorkgroup:
171 return 1;
172 case SPIRV::StorageClass::UniformConstant:
173 return 2;
174 case SPIRV::StorageClass::Workgroup:
175 return 3;
176 case SPIRV::StorageClass::Generic:
177 return 4;
178 case SPIRV::StorageClass::DeviceOnlyINTEL:
179 return 5;
180 case SPIRV::StorageClass::HostOnlyINTEL:
181 return 6;
182 case SPIRV::StorageClass::Input:
183 return 7;
184 default:
185 report_fatal_error("Unable to get address space id");
186 }
187}
188
189SPIRV::StorageClass::StorageClass
190addressSpaceToStorageClass(unsigned AddrSpace, const SPIRVSubtarget &STI) {
191 switch (AddrSpace) {
192 case 0:
193 return SPIRV::StorageClass::Function;
194 case 1:
195 return SPIRV::StorageClass::CrossWorkgroup;
196 case 2:
197 return SPIRV::StorageClass::UniformConstant;
198 case 3:
199 return SPIRV::StorageClass::Workgroup;
200 case 4:
201 return SPIRV::StorageClass::Generic;
202 case 5:
203 return STI.canUseExtension(SPIRV::Extension::SPV_INTEL_usm_storage_classes)
204 ? SPIRV::StorageClass::DeviceOnlyINTEL
205 : SPIRV::StorageClass::CrossWorkgroup;
206 case 6:
207 return STI.canUseExtension(SPIRV::Extension::SPV_INTEL_usm_storage_classes)
208 ? SPIRV::StorageClass::HostOnlyINTEL
209 : SPIRV::StorageClass::CrossWorkgroup;
210 case 7:
211 return SPIRV::StorageClass::Input;
212 default:
213 report_fatal_error("Unknown address space");
214 }
215}
216
217SPIRV::MemorySemantics::MemorySemantics
218getMemSemanticsForStorageClass(SPIRV::StorageClass::StorageClass SC) {
219 switch (SC) {
220 case SPIRV::StorageClass::StorageBuffer:
221 case SPIRV::StorageClass::Uniform:
222 return SPIRV::MemorySemantics::UniformMemory;
223 case SPIRV::StorageClass::Workgroup:
224 return SPIRV::MemorySemantics::WorkgroupMemory;
225 case SPIRV::StorageClass::CrossWorkgroup:
226 return SPIRV::MemorySemantics::CrossWorkgroupMemory;
227 case SPIRV::StorageClass::AtomicCounter:
228 return SPIRV::MemorySemantics::AtomicCounterMemory;
229 case SPIRV::StorageClass::Image:
230 return SPIRV::MemorySemantics::ImageMemory;
231 default:
232 return SPIRV::MemorySemantics::None;
233 }
234}
235
236SPIRV::MemorySemantics::MemorySemantics getMemSemantics(AtomicOrdering Ord) {
237 switch (Ord) {
239 return SPIRV::MemorySemantics::Acquire;
241 return SPIRV::MemorySemantics::Release;
243 return SPIRV::MemorySemantics::AcquireRelease;
245 return SPIRV::MemorySemantics::SequentiallyConsistent;
249 return SPIRV::MemorySemantics::None;
250 }
251 llvm_unreachable(nullptr);
252}
253
255 const MachineRegisterInfo *MRI) {
256 MachineInstr *ConstInstr = MRI->getVRegDef(ConstReg);
257 if (auto *GI = dyn_cast<GIntrinsic>(ConstInstr)) {
258 if (GI->is(Intrinsic::spv_track_constant)) {
259 ConstReg = ConstInstr->getOperand(2).getReg();
260 return MRI->getVRegDef(ConstReg);
261 }
262 } else if (ConstInstr->getOpcode() == SPIRV::ASSIGN_TYPE) {
263 ConstReg = ConstInstr->getOperand(1).getReg();
264 return MRI->getVRegDef(ConstReg);
265 }
266 return MRI->getVRegDef(ConstReg);
267}
268
270 const MachineInstr *MI = getDefInstrMaybeConstant(ConstReg, MRI);
271 assert(MI && MI->getOpcode() == TargetOpcode::G_CONSTANT);
272 return MI->getOperand(1).getCImm()->getValue().getZExtValue();
273}
274
275bool isSpvIntrinsic(const MachineInstr &MI, Intrinsic::ID IntrinsicID) {
276 if (const auto *GI = dyn_cast<GIntrinsic>(&MI))
277 return GI->is(IntrinsicID);
278 return false;
279}
280
281Type *getMDOperandAsType(const MDNode *N, unsigned I) {
282 Type *ElementTy = cast<ValueAsMetadata>(N->getOperand(I))->getType();
283 return toTypedPointer(ElementTy, N->getContext());
284}
285
286// The set of names is borrowed from the SPIR-V translator.
287// TODO: may be implemented in SPIRVBuiltins.td.
288static bool isPipeOrAddressSpaceCastBI(const StringRef MangledName) {
289 return MangledName == "write_pipe_2" || MangledName == "read_pipe_2" ||
290 MangledName == "write_pipe_2_bl" || MangledName == "read_pipe_2_bl" ||
291 MangledName == "write_pipe_4" || MangledName == "read_pipe_4" ||
292 MangledName == "reserve_write_pipe" ||
293 MangledName == "reserve_read_pipe" ||
294 MangledName == "commit_write_pipe" ||
295 MangledName == "commit_read_pipe" ||
296 MangledName == "work_group_reserve_write_pipe" ||
297 MangledName == "work_group_reserve_read_pipe" ||
298 MangledName == "work_group_commit_write_pipe" ||
299 MangledName == "work_group_commit_read_pipe" ||
300 MangledName == "get_pipe_num_packets_ro" ||
301 MangledName == "get_pipe_max_packets_ro" ||
302 MangledName == "get_pipe_num_packets_wo" ||
303 MangledName == "get_pipe_max_packets_wo" ||
304 MangledName == "sub_group_reserve_write_pipe" ||
305 MangledName == "sub_group_reserve_read_pipe" ||
306 MangledName == "sub_group_commit_write_pipe" ||
307 MangledName == "sub_group_commit_read_pipe" ||
308 MangledName == "to_global" || MangledName == "to_local" ||
309 MangledName == "to_private";
310}
311
312static bool isEnqueueKernelBI(const StringRef MangledName) {
313 return MangledName == "__enqueue_kernel_basic" ||
314 MangledName == "__enqueue_kernel_basic_events" ||
315 MangledName == "__enqueue_kernel_varargs" ||
316 MangledName == "__enqueue_kernel_events_varargs";
317}
318
319static bool isKernelQueryBI(const StringRef MangledName) {
320 return MangledName == "__get_kernel_work_group_size_impl" ||
321 MangledName == "__get_kernel_sub_group_count_for_ndrange_impl" ||
322 MangledName == "__get_kernel_max_sub_group_size_for_ndrange_impl" ||
323 MangledName == "__get_kernel_preferred_work_group_size_multiple_impl";
324}
325
327 if (!Name.starts_with("__"))
328 return false;
329
331 isPipeOrAddressSpaceCastBI(Name.drop_front(2)) ||
332 Name == "__translate_sampler_initializer";
333}
334
336 bool IsNonMangledOCL = isNonMangledOCLBuiltin(Name);
337 bool IsNonMangledSPIRV = Name.starts_with("__spirv_");
338 bool IsNonMangledHLSL = Name.starts_with("__hlsl_");
339 bool IsMangled = Name.starts_with("_Z");
340
341 // Otherwise use simple demangling to return the function name.
342 if (IsNonMangledOCL || IsNonMangledSPIRV || IsNonMangledHLSL || !IsMangled)
343 return Name.str();
344
345 // Try to use the itanium demangler.
346 if (char *DemangledName = itaniumDemangle(Name.data())) {
347 std::string Result = DemangledName;
348 free(DemangledName);
349 return Result;
350 }
351
352 // Autocheck C++, maybe need to do explicit check of the source language.
353 // OpenCL C++ built-ins are declared in cl namespace.
354 // TODO: consider using 'St' abbriviation for cl namespace mangling.
355 // Similar to ::std:: in C++.
356 size_t Start, Len = 0;
357 size_t DemangledNameLenStart = 2;
358 if (Name.starts_with("_ZN")) {
359 // Skip CV and ref qualifiers.
360 size_t NameSpaceStart = Name.find_first_not_of("rVKRO", 3);
361 // All built-ins are in the ::cl:: namespace.
362 if (Name.substr(NameSpaceStart, 11) != "2cl7__spirv")
363 return std::string();
364 DemangledNameLenStart = NameSpaceStart + 11;
365 }
366 Start = Name.find_first_not_of("0123456789", DemangledNameLenStart);
367 Name.substr(DemangledNameLenStart, Start - DemangledNameLenStart)
368 .getAsInteger(10, Len);
369 return Name.substr(Start, Len).str();
370}
371
373 if (Name.starts_with("opencl.") || Name.starts_with("ocl_") ||
374 Name.starts_with("spirv."))
375 return true;
376 return false;
377}
378
379bool isSpecialOpaqueType(const Type *Ty) {
380 if (const TargetExtType *EType = dyn_cast<TargetExtType>(Ty))
381 return hasBuiltinTypePrefix(EType->getName());
382
383 return false;
384}
385
386bool isEntryPoint(const Function &F) {
387 // OpenCL handling: any function with the SPIR_KERNEL
388 // calling convention will be a potential entry point.
389 if (F.getCallingConv() == CallingConv::SPIR_KERNEL)
390 return true;
391
392 // HLSL handling: special attribute are emitted from the
393 // front-end.
394 if (F.getFnAttribute("hlsl.shader").isValid())
395 return true;
396
397 return false;
398}
399
401 TypeName.consume_front("atomic_");
402 if (TypeName.consume_front("void"))
403 return Type::getVoidTy(Ctx);
404 else if (TypeName.consume_front("bool"))
405 return Type::getIntNTy(Ctx, 1);
406 else if (TypeName.consume_front("char") ||
407 TypeName.consume_front("unsigned char") ||
408 TypeName.consume_front("uchar"))
409 return Type::getInt8Ty(Ctx);
410 else if (TypeName.consume_front("short") ||
411 TypeName.consume_front("unsigned short") ||
412 TypeName.consume_front("ushort"))
413 return Type::getInt16Ty(Ctx);
414 else if (TypeName.consume_front("int") ||
415 TypeName.consume_front("unsigned int") ||
416 TypeName.consume_front("uint"))
417 return Type::getInt32Ty(Ctx);
418 else if (TypeName.consume_front("long") ||
419 TypeName.consume_front("unsigned long") ||
420 TypeName.consume_front("ulong"))
421 return Type::getInt64Ty(Ctx);
422 else if (TypeName.consume_front("half"))
423 return Type::getHalfTy(Ctx);
424 else if (TypeName.consume_front("float"))
425 return Type::getFloatTy(Ctx);
426 else if (TypeName.consume_front("double"))
427 return Type::getDoubleTy(Ctx);
428
429 // Unable to recognize SPIRV type name
430 return nullptr;
431}
432
433} // namespace llvm
unsigned const MachineRegisterInfo * MRI
MachineBasicBlock & MBB
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
std::string Name
Declares convenience wrapper classes for interpreting MachineInstr instances as specific generic oper...
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
This file declares the MachineIRBuilder class.
unsigned Reg
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
Class for arbitrary precision integers.
Definition: APInt.h:76
This is the shared class of boolean and integer constants.
Definition: Constants.h:80
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
Definition: Constants.h:154
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition: IRBuilder.h:2666
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:67
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:184
void addOperand(const MCOperand Op)
Definition: MCInst.h:210
static MCOperand createImm(int64_t Val)
Definition: MCInst.h:141
Metadata node.
Definition: Metadata.h:1067
const MDOperand & getOperand(unsigned I) const
Definition: Metadata.h:1428
unsigned getNumOperands() const
Return number of MDNode operands.
Definition: Metadata.h:1434
A single uniqued string.
Definition: Metadata.h:720
Helper class to build MachineInstr.
MachineInstrBuilder buildInstr(unsigned Opcode)
Build and insert <empty> = Opcode <empty>.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & addUse(Register RegNo, unsigned Flags=0, unsigned SubReg=0) const
Add a virtual register use operand.
MachineInstr * getInstr() const
If conversion operators fail, use this method to get the MachineInstr explicitly.
Representation of each machine instruction.
Definition: MachineInstr.h:69
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
Definition: MachineInstr.h:558
void setAsmPrinterFlag(uint8_t Flag)
Set a flag for the AsmPrinter.
Definition: MachineInstr.h:372
const MachineOperand & getOperand(unsigned i) const
Definition: MachineInstr.h:568
Register getReg() const
getReg - Returns the register number.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
bool canUseExtension(SPIRV::Extension::Extension E) const
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
constexpr bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:134
Class to represent target extensions types, which are generally unintrospectable from target-independ...
Definition: DerivedTypes.h:720
Target - Wrapper for Target specific information.
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
static Type * getHalfTy(LLVMContext &C)
static Type * getDoubleTy(LLVMContext &C)
static IntegerType * getIntNTy(LLVMContext &C, unsigned N)
static Type * getVoidTy(LLVMContext &C)
static IntegerType * getInt16Ty(LLVMContext &C)
static IntegerType * getInt8Ty(LLVMContext &C)
static IntegerType * getInt32Ty(LLVMContext &C)
static IntegerType * getInt64Ty(LLVMContext &C)
static Type * getFloatTy(LLVMContext &C)
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ SPIR_KERNEL
Used for SPIR kernel functions.
Definition: CallingConv.h:144
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void buildOpName(Register Target, const StringRef &Name, MachineIRBuilder &MIRBuilder)
Definition: SPIRVUtils.cpp:100
unsigned storageClassToAddressSpace(SPIRV::StorageClass::StorageClass SC)
Definition: SPIRVUtils.cpp:166
std::string getStringImm(const MachineInstr &MI, unsigned StartIndex)
Definition: SPIRVUtils.cpp:76
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
static void finishBuildOpDecorate(MachineInstrBuilder &MIB, const std::vector< uint32_t > &DecArgs, StringRef StrImm)
Definition: SPIRVUtils.cpp:108
static uint32_t convertCharsToWord(const StringRef &Str, unsigned i)
Definition: SPIRVUtils.cpp:32
void addNumImm(const APInt &Imm, MachineInstrBuilder &MIB)
Definition: SPIRVUtils.cpp:80
uint64_t getIConstVal(Register ConstReg, const MachineRegisterInfo *MRI)
Definition: SPIRVUtils.cpp:269
SPIRV::MemorySemantics::MemorySemantics getMemSemanticsForStorageClass(SPIRV::StorageClass::StorageClass SC)
Definition: SPIRVUtils.cpp:218
std::string getOclOrSpirvBuiltinDemangledName(StringRef Name)
Definition: SPIRVUtils.cpp:335
void buildOpDecorate(Register Reg, MachineIRBuilder &MIRBuilder, SPIRV::Decoration::Decoration Dec, const std::vector< uint32_t > &DecArgs, StringRef StrImm)
Definition: SPIRVUtils.cpp:117
std::string getSPIRVStringOperand(const InstType &MI, unsigned StartIndex)
char * itaniumDemangle(std::string_view mangled_name, bool ParseParams=true)
Returns a non-NULL pointer to a NUL-terminated C style string that should be explicitly freed,...
bool isSpecialOpaqueType(const Type *Ty)
Definition: SPIRVUtils.cpp:379
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:156
static bool isNonMangledOCLBuiltin(StringRef Name)
Definition: SPIRVUtils.cpp:326
bool isEntryPoint(const Function &F)
Definition: SPIRVUtils.cpp:386
SPIRV::StorageClass::StorageClass addressSpaceToStorageClass(unsigned AddrSpace, const SPIRVSubtarget &STI)
Definition: SPIRVUtils.cpp:190
AtomicOrdering
Atomic ordering for LLVM's memory model.
Type * toTypedPointer(Type *Ty, LLVMContext &Ctx)
Definition: SPIRVUtils.h:156
static bool isPipeOrAddressSpaceCastBI(const StringRef MangledName)
Definition: SPIRVUtils.cpp:288
Type * parseBasicTypeName(StringRef &TypeName, LLVMContext &Ctx)
Definition: SPIRVUtils.cpp:400
MachineInstr * getDefInstrMaybeConstant(Register &ConstReg, const MachineRegisterInfo *MRI)
Definition: SPIRVUtils.cpp:254
bool hasBuiltinTypePrefix(StringRef Name)
Definition: SPIRVUtils.cpp:372
Type * getMDOperandAsType(const MDNode *N, unsigned I)
Definition: SPIRVUtils.cpp:281
static size_t getPaddedLen(const StringRef &Str)
Definition: SPIRVUtils.cpp:46
bool isSpvIntrinsic(const MachineInstr &MI, Intrinsic::ID IntrinsicID)
Definition: SPIRVUtils.cpp:275
void addStringImm(const StringRef &Str, MCInst &Inst)
Definition: SPIRVUtils.cpp:51
static bool isKernelQueryBI(const StringRef MangledName)
Definition: SPIRVUtils.cpp:319
void buildOpSpirvDecorations(Register Reg, MachineIRBuilder &MIRBuilder, const MDNode *GVarMD)
Definition: SPIRVUtils.cpp:136
static bool isEnqueueKernelBI(const StringRef MangledName)
Definition: SPIRVUtils.cpp:312
SPIRV::MemorySemantics::MemorySemantics getMemSemantics(AtomicOrdering Ord)
Definition: SPIRVUtils.cpp:236
#define N