LLVM 20.0.0git
SPIRVAsmPrinter.cpp
Go to the documentation of this file.
1//===-- SPIRVAsmPrinter.cpp - SPIR-V LLVM assembly writer ------*- 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 a printer that converts from our internal representation
10// of machine-dependent LLVM code to the SPIR-V assembly language.
11//
12//===----------------------------------------------------------------------===//
13
15#include "SPIRV.h"
16#include "SPIRVInstrInfo.h"
17#include "SPIRVMCInstLower.h"
18#include "SPIRVModuleAnalysis.h"
19#include "SPIRVSubtarget.h"
20#include "SPIRVTargetMachine.h"
21#include "SPIRVUtils.h"
23#include "llvm/ADT/DenseMap.h"
31#include "llvm/MC/MCAsmInfo.h"
32#include "llvm/MC/MCAssembler.h"
33#include "llvm/MC/MCInst.h"
36#include "llvm/MC/MCStreamer.h"
37#include "llvm/MC/MCSymbol.h"
40
41using namespace llvm;
42
43#define DEBUG_TYPE "asm-printer"
44
45namespace {
46class SPIRVAsmPrinter : public AsmPrinter {
47 unsigned NLabels = 0;
49
50public:
51 explicit SPIRVAsmPrinter(TargetMachine &TM,
52 std::unique_ptr<MCStreamer> Streamer)
53 : AsmPrinter(TM, std::move(Streamer)), ST(nullptr), TII(nullptr) {}
54 bool ModuleSectionsEmitted;
55 const SPIRVSubtarget *ST;
56 const SPIRVInstrInfo *TII;
57
58 StringRef getPassName() const override { return "SPIRV Assembly Printer"; }
59 void printOperand(const MachineInstr *MI, int OpNum, raw_ostream &O);
60 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
61 const char *ExtraCode, raw_ostream &O) override;
62
63 void outputMCInst(MCInst &Inst);
64 void outputInstruction(const MachineInstr *MI);
65 void outputModuleSection(SPIRV::ModuleSectionType MSType);
66 void outputGlobalRequirements();
67 void outputEntryPoints();
68 void outputDebugSourceAndStrings(const Module &M);
69 void outputOpExtInstImports(const Module &M);
70 void outputOpMemoryModel();
71 void outputOpFunctionEnd();
72 void outputExtFuncDecls();
73 void outputExecutionModeFromMDNode(Register Reg, MDNode *Node,
74 SPIRV::ExecutionMode::ExecutionMode EM,
75 unsigned ExpectMDOps, int64_t DefVal);
76 void outputExecutionModeFromNumthreadsAttribute(
77 const Register &Reg, const Attribute &Attr,
78 SPIRV::ExecutionMode::ExecutionMode EM);
79 void outputExecutionMode(const Module &M);
80 void outputAnnotations(const Module &M);
81 void outputModuleSections();
82 bool isHidden() {
83 return MF->getFunction()
84 .getFnAttribute(SPIRV_BACKEND_SERVICE_FUN_NAME)
85 .isValid();
86 }
87
88 void emitInstruction(const MachineInstr *MI) override;
89 void emitFunctionEntryLabel() override {}
90 void emitFunctionHeader() override;
91 void emitFunctionBodyStart() override {}
92 void emitFunctionBodyEnd() override;
93 void emitBasicBlockStart(const MachineBasicBlock &MBB) override;
94 void emitBasicBlockEnd(const MachineBasicBlock &MBB) override {}
95 void emitGlobalVariable(const GlobalVariable *GV) override {}
96 void emitOpLabel(const MachineBasicBlock &MBB);
97 void emitEndOfAsmFile(Module &M) override;
98 bool doInitialization(Module &M) override;
99
100 void getAnalysisUsage(AnalysisUsage &AU) const override;
102
103protected:
104 void cleanUp(Module &M);
105};
106} // namespace
107
108void SPIRVAsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
112}
113
114// If the module has no functions, we need output global info anyway.
115void SPIRVAsmPrinter::emitEndOfAsmFile(Module &M) {
116 if (ModuleSectionsEmitted == false) {
117 outputModuleSections();
118 ModuleSectionsEmitted = true;
119 }
120
121 ST = static_cast<const SPIRVTargetMachine &>(TM).getSubtargetImpl();
122 VersionTuple SPIRVVersion = ST->getSPIRVVersion();
123 uint32_t Major = SPIRVVersion.getMajor();
124 uint32_t Minor = SPIRVVersion.getMinor().value_or(0);
125 // Bound is an approximation that accounts for the maximum used register
126 // number and number of generated OpLabels
127 unsigned Bound = 2 * (ST->getBound() + 1) + NLabels;
128 if (MCAssembler *Asm = OutStreamer->getAssemblerPtr())
129 static_cast<SPIRVObjectWriter &>(Asm->getWriter())
130 .setBuildVersion(Major, Minor, Bound);
131
132 cleanUp(M);
133}
134
135// Any cleanup actions with the Module after we don't care about its content
136// anymore.
137void SPIRVAsmPrinter::cleanUp(Module &M) {
138 // Verifier disallows uses of intrinsic global variables.
139 for (StringRef GVName : {"llvm.global_ctors", "llvm.global_dtors",
140 "llvm.used", "llvm.compiler.used"}) {
141 if (GlobalVariable *GV = M.getNamedGlobal(GVName))
142 GV->setName("");
143 }
144}
145
146void SPIRVAsmPrinter::emitFunctionHeader() {
147 if (ModuleSectionsEmitted == false) {
148 outputModuleSections();
149 ModuleSectionsEmitted = true;
150 }
151 // Get the subtarget from the current MachineFunction.
152 ST = &MF->getSubtarget<SPIRVSubtarget>();
153 TII = ST->getInstrInfo();
154 const Function &F = MF->getFunction();
155
156 if (isVerbose() && !isHidden()) {
157 OutStreamer->getCommentOS()
158 << "-- Begin function "
159 << GlobalValue::dropLLVMManglingEscape(F.getName()) << '\n';
160 }
161
162 auto Section = getObjFileLowering().SectionForGlobal(&F, TM);
163 MF->setSection(Section);
164}
165
166void SPIRVAsmPrinter::outputOpFunctionEnd() {
167 MCInst FunctionEndInst;
168 FunctionEndInst.setOpcode(SPIRV::OpFunctionEnd);
169 outputMCInst(FunctionEndInst);
170}
171
172void SPIRVAsmPrinter::emitFunctionBodyEnd() {
173 if (!isHidden())
174 outputOpFunctionEnd();
175}
176
177void SPIRVAsmPrinter::emitOpLabel(const MachineBasicBlock &MBB) {
178 // Do not emit anything if it's an internal service function.
179 if (isHidden())
180 return;
181
182 MCInst LabelInst;
183 LabelInst.setOpcode(SPIRV::OpLabel);
184 LabelInst.addOperand(MCOperand::createReg(MAI->getOrCreateMBBRegister(MBB)));
185 outputMCInst(LabelInst);
186 ++NLabels;
187 LabeledMBB.insert(&MBB);
188}
189
190void SPIRVAsmPrinter::emitBasicBlockStart(const MachineBasicBlock &MBB) {
191 // Do not emit anything if it's an internal service function.
192 if (MBB.empty())
193 return;
194
195 // If it's the first MBB in MF, it has OpFunction and OpFunctionParameter, so
196 // OpLabel should be output after them.
197 if (MBB.getNumber() == MF->front().getNumber()) {
198 for (const MachineInstr &MI : MBB)
199 if (MI.getOpcode() == SPIRV::OpFunction)
200 return;
201 // TODO: this case should be checked by the verifier.
202 report_fatal_error("OpFunction is expected in the front MBB of MF");
203 }
204 emitOpLabel(MBB);
205}
206
207void SPIRVAsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
208 raw_ostream &O) {
209 const MachineOperand &MO = MI->getOperand(OpNum);
210
211 switch (MO.getType()) {
214 break;
215
217 O << MO.getImm();
218 break;
219
221 O << MO.getFPImm();
222 break;
223
225 O << *MO.getMBB()->getSymbol();
226 break;
227
229 O << *getSymbol(MO.getGlobal());
230 break;
231
233 MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress());
234 O << BA->getName();
235 break;
236 }
237
239 O << *GetExternalSymbolSymbol(MO.getSymbolName());
240 break;
241
244 default:
245 llvm_unreachable("<unknown operand type>");
246 }
247}
248
249bool SPIRVAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
250 const char *ExtraCode, raw_ostream &O) {
251 if (ExtraCode && ExtraCode[0])
252 return true; // Invalid instruction - SPIR-V does not have special modifiers
253
254 printOperand(MI, OpNo, O);
255 return false;
256}
257
259 const SPIRVInstrInfo *TII) {
260 return TII->isHeaderInstr(*MI) || MI->getOpcode() == SPIRV::OpFunction ||
261 MI->getOpcode() == SPIRV::OpFunctionParameter;
262}
263
264void SPIRVAsmPrinter::outputMCInst(MCInst &Inst) {
265 OutStreamer->emitInstruction(Inst, *OutContext.getSubtargetInfo());
266}
267
268void SPIRVAsmPrinter::outputInstruction(const MachineInstr *MI) {
269 SPIRVMCInstLower MCInstLowering;
270 MCInst TmpInst;
271 MCInstLowering.lower(MI, TmpInst, MAI);
272 outputMCInst(TmpInst);
273}
274
275void SPIRVAsmPrinter::emitInstruction(const MachineInstr *MI) {
276 SPIRV_MC::verifyInstructionPredicates(MI->getOpcode(),
277 getSubtargetInfo().getFeatureBits());
278
279 if (!MAI->getSkipEmission(MI))
280 outputInstruction(MI);
281
282 // Output OpLabel after OpFunction and OpFunctionParameter in the first MBB.
283 const MachineInstr *NextMI = MI->getNextNode();
284 if (!LabeledMBB.contains(MI->getParent()) && isFuncOrHeaderInstr(MI, TII) &&
285 (!NextMI || !isFuncOrHeaderInstr(NextMI, TII))) {
286 assert(MI->getParent()->getNumber() == MF->front().getNumber() &&
287 "OpFunction is not in the front MBB of MF");
288 emitOpLabel(*MI->getParent());
289 }
290}
291
292void SPIRVAsmPrinter::outputModuleSection(SPIRV::ModuleSectionType MSType) {
293 for (const MachineInstr *MI : MAI->getMSInstrs(MSType))
294 outputInstruction(MI);
295}
296
297void SPIRVAsmPrinter::outputDebugSourceAndStrings(const Module &M) {
298 // Output OpSourceExtensions.
299 for (auto &Str : MAI->SrcExt) {
300 MCInst Inst;
301 Inst.setOpcode(SPIRV::OpSourceExtension);
302 addStringImm(Str.first(), Inst);
303 outputMCInst(Inst);
304 }
305 // Output OpString.
306 outputModuleSection(SPIRV::MB_DebugStrings);
307 // Output OpSource.
308 MCInst Inst;
309 Inst.setOpcode(SPIRV::OpSource);
310 Inst.addOperand(MCOperand::createImm(static_cast<unsigned>(MAI->SrcLang)));
311 Inst.addOperand(
312 MCOperand::createImm(static_cast<unsigned>(MAI->SrcLangVersion)));
313 outputMCInst(Inst);
314}
315
316void SPIRVAsmPrinter::outputOpExtInstImports(const Module &M) {
317 for (auto &CU : MAI->ExtInstSetMap) {
318 unsigned Set = CU.first;
319 Register Reg = CU.second;
320 MCInst Inst;
321 Inst.setOpcode(SPIRV::OpExtInstImport);
324 static_cast<SPIRV::InstructionSet::InstructionSet>(Set)),
325 Inst);
326 outputMCInst(Inst);
327 }
328}
329
330void SPIRVAsmPrinter::outputOpMemoryModel() {
331 MCInst Inst;
332 Inst.setOpcode(SPIRV::OpMemoryModel);
333 Inst.addOperand(MCOperand::createImm(static_cast<unsigned>(MAI->Addr)));
334 Inst.addOperand(MCOperand::createImm(static_cast<unsigned>(MAI->Mem)));
335 outputMCInst(Inst);
336}
337
338// Before the OpEntryPoints' output, we need to add the entry point's
339// interfaces. The interface is a list of IDs of global OpVariable instructions.
340// These declare the set of global variables from a module that form
341// the interface of this entry point.
342void SPIRVAsmPrinter::outputEntryPoints() {
343 // Find all OpVariable IDs with required StorageClass.
344 DenseSet<Register> InterfaceIDs;
345 for (const MachineInstr *MI : MAI->GlobalVarList) {
346 assert(MI->getOpcode() == SPIRV::OpVariable);
347 auto SC = static_cast<SPIRV::StorageClass::StorageClass>(
348 MI->getOperand(2).getImm());
349 // Before version 1.4, the interface's storage classes are limited to
350 // the Input and Output storage classes. Starting with version 1.4,
351 // the interface's storage classes are all storage classes used in
352 // declaring all global variables referenced by the entry point call tree.
353 if (ST->isAtLeastSPIRVVer(VersionTuple(1, 4)) ||
354 SC == SPIRV::StorageClass::Input || SC == SPIRV::StorageClass::Output) {
355 const MachineFunction *MF = MI->getMF();
356 Register Reg = MAI->getRegisterAlias(MF, MI->getOperand(0).getReg());
357 InterfaceIDs.insert(Reg);
358 }
359 }
360
361 // Output OpEntryPoints adding interface args to all of them.
362 for (const MachineInstr *MI : MAI->getMSInstrs(SPIRV::MB_EntryPoints)) {
363 SPIRVMCInstLower MCInstLowering;
364 MCInst TmpInst;
365 MCInstLowering.lower(MI, TmpInst, MAI);
366 for (Register Reg : InterfaceIDs) {
367 assert(Reg.isValid());
368 TmpInst.addOperand(MCOperand::createReg(Reg));
369 }
370 outputMCInst(TmpInst);
371 }
372}
373
374// Create global OpCapability instructions for the required capabilities.
375void SPIRVAsmPrinter::outputGlobalRequirements() {
376 // Abort here if not all requirements can be satisfied.
377 MAI->Reqs.checkSatisfiable(*ST);
378
379 for (const auto &Cap : MAI->Reqs.getMinimalCapabilities()) {
380 MCInst Inst;
381 Inst.setOpcode(SPIRV::OpCapability);
383 outputMCInst(Inst);
384 }
385
386 // Generate the final OpExtensions with strings instead of enums.
387 for (const auto &Ext : MAI->Reqs.getExtensions()) {
388 MCInst Inst;
389 Inst.setOpcode(SPIRV::OpExtension);
391 SPIRV::OperandCategory::ExtensionOperand, Ext),
392 Inst);
393 outputMCInst(Inst);
394 }
395 // TODO add a pseudo instr for version number.
396}
397
398void SPIRVAsmPrinter::outputExtFuncDecls() {
399 // Insert OpFunctionEnd after each declaration.
400 auto I = MAI->getMSInstrs(SPIRV::MB_ExtFuncDecls).begin(),
401 E = MAI->getMSInstrs(SPIRV::MB_ExtFuncDecls).end();
402 for (; I != E; ++I) {
403 outputInstruction(*I);
404 if ((I + 1) == E || (*(I + 1))->getOpcode() == SPIRV::OpFunction)
405 outputOpFunctionEnd();
406 }
407}
408
409// Encode LLVM type by SPIR-V execution mode VecTypeHint.
410static unsigned encodeVecTypeHint(Type *Ty) {
411 if (Ty->isHalfTy())
412 return 4;
413 if (Ty->isFloatTy())
414 return 5;
415 if (Ty->isDoubleTy())
416 return 6;
417 if (IntegerType *IntTy = dyn_cast<IntegerType>(Ty)) {
418 switch (IntTy->getIntegerBitWidth()) {
419 case 8:
420 return 0;
421 case 16:
422 return 1;
423 case 32:
424 return 2;
425 case 64:
426 return 3;
427 default:
428 llvm_unreachable("invalid integer type");
429 }
430 }
431 if (FixedVectorType *VecTy = dyn_cast<FixedVectorType>(Ty)) {
432 Type *EleTy = VecTy->getElementType();
433 unsigned Size = VecTy->getNumElements();
434 return Size << 16 | encodeVecTypeHint(EleTy);
435 }
436 llvm_unreachable("invalid type");
437}
438
439static void addOpsFromMDNode(MDNode *MDN, MCInst &Inst,
441 for (const MDOperand &MDOp : MDN->operands()) {
442 if (auto *CMeta = dyn_cast<ConstantAsMetadata>(MDOp)) {
443 Constant *C = CMeta->getValue();
444 if (ConstantInt *Const = dyn_cast<ConstantInt>(C)) {
445 Inst.addOperand(MCOperand::createImm(Const->getZExtValue()));
446 } else if (auto *CE = dyn_cast<Function>(C)) {
447 Register FuncReg = MAI->getFuncReg(CE);
448 assert(FuncReg.isValid());
449 Inst.addOperand(MCOperand::createReg(FuncReg));
450 }
451 }
452 }
453}
454
455void SPIRVAsmPrinter::outputExecutionModeFromMDNode(
456 Register Reg, MDNode *Node, SPIRV::ExecutionMode::ExecutionMode EM,
457 unsigned ExpectMDOps, int64_t DefVal) {
458 MCInst Inst;
459 Inst.setOpcode(SPIRV::OpExecutionMode);
461 Inst.addOperand(MCOperand::createImm(static_cast<unsigned>(EM)));
462 addOpsFromMDNode(Node, Inst, MAI);
463 // reqd_work_group_size and work_group_size_hint require 3 operands,
464 // if metadata contains less operands, just add a default value
465 unsigned NodeSz = Node->getNumOperands();
466 if (ExpectMDOps > 0 && NodeSz < ExpectMDOps)
467 for (unsigned i = NodeSz; i < ExpectMDOps; ++i)
468 Inst.addOperand(MCOperand::createImm(DefVal));
469 outputMCInst(Inst);
470}
471
472void SPIRVAsmPrinter::outputExecutionModeFromNumthreadsAttribute(
473 const Register &Reg, const Attribute &Attr,
474 SPIRV::ExecutionMode::ExecutionMode EM) {
475 assert(Attr.isValid() && "Function called with an invalid attribute.");
476
477 MCInst Inst;
478 Inst.setOpcode(SPIRV::OpExecutionMode);
480 Inst.addOperand(MCOperand::createImm(static_cast<unsigned>(EM)));
481
482 SmallVector<StringRef> NumThreads;
483 Attr.getValueAsString().split(NumThreads, ',');
484 assert(NumThreads.size() == 3 && "invalid numthreads");
485 for (uint32_t i = 0; i < 3; ++i) {
486 uint32_t V;
487 [[maybe_unused]] bool Result = NumThreads[i].getAsInteger(10, V);
488 assert(!Result && "Failed to parse numthreads");
490 }
491
492 outputMCInst(Inst);
493}
494
495void SPIRVAsmPrinter::outputExecutionMode(const Module &M) {
496 NamedMDNode *Node = M.getNamedMetadata("spirv.ExecutionMode");
497 if (Node) {
498 for (unsigned i = 0; i < Node->getNumOperands(); i++) {
499 MCInst Inst;
500 Inst.setOpcode(SPIRV::OpExecutionMode);
501 addOpsFromMDNode(cast<MDNode>(Node->getOperand(i)), Inst, MAI);
502 outputMCInst(Inst);
503 }
504 }
505 for (auto FI = M.begin(), E = M.end(); FI != E; ++FI) {
506 const Function &F = *FI;
507 // Only operands of OpEntryPoint instructions are allowed to be
508 // <Entry Point> operands of OpExecutionMode
509 if (F.isDeclaration() || !isEntryPoint(F))
510 continue;
511 Register FReg = MAI->getFuncReg(&F);
512 assert(FReg.isValid());
513 if (MDNode *Node = F.getMetadata("reqd_work_group_size"))
514 outputExecutionModeFromMDNode(FReg, Node, SPIRV::ExecutionMode::LocalSize,
515 3, 1);
516 if (Attribute Attr = F.getFnAttribute("hlsl.numthreads"); Attr.isValid())
517 outputExecutionModeFromNumthreadsAttribute(
518 FReg, Attr, SPIRV::ExecutionMode::LocalSize);
519 if (MDNode *Node = F.getMetadata("work_group_size_hint"))
520 outputExecutionModeFromMDNode(FReg, Node,
521 SPIRV::ExecutionMode::LocalSizeHint, 3, 1);
522 if (MDNode *Node = F.getMetadata("intel_reqd_sub_group_size"))
523 outputExecutionModeFromMDNode(FReg, Node,
524 SPIRV::ExecutionMode::SubgroupSize, 0, 0);
525 if (MDNode *Node = F.getMetadata("vec_type_hint")) {
526 MCInst Inst;
527 Inst.setOpcode(SPIRV::OpExecutionMode);
529 unsigned EM = static_cast<unsigned>(SPIRV::ExecutionMode::VecTypeHint);
531 unsigned TypeCode = encodeVecTypeHint(getMDOperandAsType(Node, 0));
532 Inst.addOperand(MCOperand::createImm(TypeCode));
533 outputMCInst(Inst);
534 }
535 if (ST->isOpenCLEnv() && !M.getNamedMetadata("spirv.ExecutionMode") &&
536 !M.getNamedMetadata("opencl.enable.FP_CONTRACT")) {
537 MCInst Inst;
538 Inst.setOpcode(SPIRV::OpExecutionMode);
540 unsigned EM = static_cast<unsigned>(SPIRV::ExecutionMode::ContractionOff);
542 outputMCInst(Inst);
543 }
544 }
545}
546
547void SPIRVAsmPrinter::outputAnnotations(const Module &M) {
548 outputModuleSection(SPIRV::MB_Annotations);
549 // Process llvm.global.annotations special global variable.
550 for (auto F = M.global_begin(), E = M.global_end(); F != E; ++F) {
551 if ((*F).getName() != "llvm.global.annotations")
552 continue;
553 const GlobalVariable *V = &(*F);
554 const ConstantArray *CA = cast<ConstantArray>(V->getOperand(0));
555 for (Value *Op : CA->operands()) {
556 ConstantStruct *CS = cast<ConstantStruct>(Op);
557 // The first field of the struct contains a pointer to
558 // the annotated variable.
559 Value *AnnotatedVar = CS->getOperand(0)->stripPointerCasts();
560 if (!isa<Function>(AnnotatedVar))
561 report_fatal_error("Unsupported value in llvm.global.annotations");
562 Function *Func = cast<Function>(AnnotatedVar);
563 Register Reg = MAI->getFuncReg(Func);
564 if (!Reg.isValid()) {
565 std::string DiagMsg;
566 raw_string_ostream OS(DiagMsg);
567 AnnotatedVar->print(OS);
568 DiagMsg = "Unknown function in llvm.global.annotations: " + DiagMsg;
569 report_fatal_error(DiagMsg.c_str());
570 }
571
572 // The second field contains a pointer to a global annotation string.
573 GlobalVariable *GV =
574 cast<GlobalVariable>(CS->getOperand(1)->stripPointerCasts());
575
576 StringRef AnnotationString;
577 getConstantStringInfo(GV, AnnotationString);
578 MCInst Inst;
579 Inst.setOpcode(SPIRV::OpDecorate);
581 unsigned Dec = static_cast<unsigned>(SPIRV::Decoration::UserSemantic);
583 addStringImm(AnnotationString, Inst);
584 outputMCInst(Inst);
585 }
586 }
587}
588
589void SPIRVAsmPrinter::outputModuleSections() {
590 const Module *M = MMI->getModule();
591 // Get the global subtarget to output module-level info.
592 ST = static_cast<const SPIRVTargetMachine &>(TM).getSubtargetImpl();
593 TII = ST->getInstrInfo();
595 assert(ST && TII && MAI && M && "Module analysis is required");
596 // Output instructions according to the Logical Layout of a Module:
597 // 1,2. All OpCapability instructions, then optional OpExtension instructions.
598 outputGlobalRequirements();
599 // 3. Optional OpExtInstImport instructions.
600 outputOpExtInstImports(*M);
601 // 4. The single required OpMemoryModel instruction.
602 outputOpMemoryModel();
603 // 5. All entry point declarations, using OpEntryPoint.
604 outputEntryPoints();
605 // 6. Execution-mode declarations, using OpExecutionMode or OpExecutionModeId.
606 outputExecutionMode(*M);
607 // 7a. Debug: all OpString, OpSourceExtension, OpSource, and
608 // OpSourceContinued, without forward references.
609 outputDebugSourceAndStrings(*M);
610 // 7b. Debug: all OpName and all OpMemberName.
611 outputModuleSection(SPIRV::MB_DebugNames);
612 // 7c. Debug: all OpModuleProcessed instructions.
613 outputModuleSection(SPIRV::MB_DebugModuleProcessed);
614 // 8. All annotation instructions (all decorations).
615 outputAnnotations(*M);
616 // 9. All type declarations (OpTypeXXX instructions), all constant
617 // instructions, and all global variable declarations. This section is
618 // the first section to allow use of: OpLine and OpNoLine debug information;
619 // non-semantic instructions with OpExtInst.
620 outputModuleSection(SPIRV::MB_TypeConstVars);
621 // 10. All global NonSemantic.Shader.DebugInfo.100 instructions.
622 outputModuleSection(SPIRV::MB_NonSemanticGlobalDI);
623 // 11. All function declarations (functions without a body).
624 outputExtFuncDecls();
625 // 12. All function definitions (functions with a body).
626 // This is done in regular function output.
627}
628
629bool SPIRVAsmPrinter::doInitialization(Module &M) {
630 ModuleSectionsEmitted = false;
631 // We need to call the parent's one explicitly.
633}
634
635// Force static initialization.
640}
MachineBasicBlock & MBB
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:128
This file defines the DenseMap class.
uint64_t Size
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
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 MachineConstantPool class which is an abstract constant pool to keep track of ...
static GCMetadataPrinterRegistry::Add< OcamlGCMetadataPrinter > Y("ocaml", "ocaml 3.10-compatible collector")
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static void addOpsFromMDNode(MDNode *MDN, MCInst &Inst, SPIRV::ModuleAnalysisInfo *MAI)
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeSPIRVAsmPrinter()
static bool isFuncOrHeaderInstr(const MachineInstr *MI, const SPIRVInstrInfo *TII)
static unsigned encodeVecTypeHint(Type *Ty)
#define SPIRV_BACKEND_SERVICE_FUN_NAME
Definition: SPIRVUtils.h:387
raw_pwrite_stream & OS
static bool printOperand(raw_ostream &OS, const SelectionDAG *G, const SDValue Value)
static std::optional< unsigned > getOpcode(ArrayRef< VPValue * > Values)
Returns the opcode of Values or ~0 if they do not all agree.
Definition: VPlanSLP.cpp:191
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
This class is intended to be used as a driving class for all asm writers.
Definition: AsmPrinter.h:86
virtual void emitInstruction(const MachineInstr *)
Targets should implement this to emit instructions.
Definition: AsmPrinter.h:561
virtual void emitGlobalVariable(const GlobalVariable *GV)
Emit the specified global variable to the .s file.
Definition: AsmPrinter.cpp:719
virtual void emitBasicBlockEnd(const MachineBasicBlock &MBB)
Targets can override this to emit stuff at the end of a basic block.
const MCAsmInfo * MAI
Target Asm Printer information.
Definition: AsmPrinter.h:92
virtual void emitFunctionBodyStart()
Targets can override this to emit stuff before the first basic block in the function.
Definition: AsmPrinter.h:545
virtual void emitEndOfAsmFile(Module &)
This virtual method can be overridden by targets that want to emit something at the end of their file...
Definition: AsmPrinter.h:541
bool doInitialization(Module &M) override
Set up the AsmPrinter when we are working on a new module.
Definition: AsmPrinter.cpp:459
void getAnalysisUsage(AnalysisUsage &AU) const override
Record analysis usage.
Definition: AsmPrinter.cpp:450
virtual void emitBasicBlockStart(const MachineBasicBlock &MBB)
Targets can override this to emit stuff at the start of a basic block.
virtual void emitFunctionBodyEnd()
Targets can override this to emit stuff after the last basic block in the function.
Definition: AsmPrinter.h:549
virtual void emitFunctionEntryLabel()
EmitFunctionEntryLabel - Emit the label that is the entrypoint for the function.
virtual bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo, const char *ExtraCode, raw_ostream &OS)
Print the specified operand of MI, an INLINEASM instruction, using the specified assembler variant.
StringRef getValueAsString() const
Return the attribute's value as a string.
Definition: Attributes.cpp:392
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition: Attributes.h:208
ConstantArray - Constant Array Declarations.
Definition: Constants.h:427
This is the shared class of boolean and integer constants.
Definition: Constants.h:83
This is an important base class in LLVM.
Definition: Constant.h:42
This class represents an Operation in the Expression.
Implements a dense probed hash-table based set.
Definition: DenseSet.h:278
Class to represent fixed width SIMD vectors.
Definition: DerivedTypes.h:563
static StringRef dropLLVMManglingEscape(StringRef Name)
If the given string begins with the GlobalValue name mangling escape character '\1',...
Definition: GlobalValue.h:567
Class to represent integer types.
Definition: DerivedTypes.h:42
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:185
void addOperand(const MCOperand Op)
Definition: MCInst.h:211
void setOpcode(unsigned Op)
Definition: MCInst.h:198
static MCOperand createReg(MCRegister Reg)
Definition: MCInst.h:135
static MCOperand createImm(int64_t Val)
Definition: MCInst.h:142
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:41
StringRef getName() const
getName - Get the symbol name.
Definition: MCSymbol.h:205
Metadata node.
Definition: Metadata.h:1069
ArrayRef< MDOperand > operands() const
Definition: Metadata.h:1428
Tracking metadata reference owned by Metadata.
Definition: Metadata.h:891
MCSymbol * getSymbol() const
Return the MCSymbol for this basic block.
int getNumber() const
MachineBasicBlocks are uniquely numbered at the function level, unless they're not in a MachineFuncti...
Representation of each machine instruction.
Definition: MachineInstr.h:69
MachineOperand class - Representation of each machine instruction operand.
const GlobalValue * getGlobal() const
int64_t getImm() const
MachineBasicBlock * getMBB() const
const BlockAddress * getBlockAddress() const
MachineOperandType getType() const
getType - Returns the MachineOperandType for this operand.
const char * getSymbolName() const
Register getReg() const
getReg - Returns the register number.
const ConstantFP * getFPImm() const
@ MO_Immediate
Immediate operand.
@ MO_ConstantPoolIndex
Address of indexed Constant in Constant Pool.
@ MO_GlobalAddress
Address of a global value.
@ MO_BlockAddress
Address of a basic block.
@ MO_MachineBasicBlock
MachineBasicBlock reference.
@ MO_Register
Register operand.
@ MO_ExternalSymbol
Name of external global symbol.
@ MO_JumpTableIndex
Address of indexed Jump Table for switch.
@ MO_FPImmediate
Floating-point immediate operand.
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
A tuple of MDNodes.
Definition: Metadata.h:1733
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
Definition: Pass.cpp:81
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
constexpr bool isValid() const
Definition: Register.h:116
static const char * getRegisterName(MCRegister Reg)
void lower(const MachineInstr *MI, MCInst &OutMI, SPIRV::ModuleAnalysisInfo *MAI) const
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
Definition: SmallPtrSet.h:519
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1196
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
Definition: StringRef.h:700
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:77
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
bool isFloatTy() const
Return true if this is 'float', a 32-bit IEEE fp type.
Definition: Type.h:153
bool isHalfTy() const
Return true if this is 'half', a 16-bit IEEE fp type.
Definition: Type.h:142
bool isDoubleTy() const
Return true if this is 'double', a 64-bit IEEE fp type.
Definition: Type.h:156
op_range operands()
Definition: User.h:288
Value * getOperand(unsigned i) const
Definition: User.h:228
LLVM Value Representation.
Definition: Value.h:74
void print(raw_ostream &O, bool IsForDebug=false) const
Implement operator<< on Value.
Definition: AsmWriter.cpp:5061
const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
Definition: Value.cpp:694
Represents a version number in the form major[.minor[.subminor[.build]]].
Definition: VersionTuple.h:29
unsigned getMajor() const
Retrieve the major version number.
Definition: VersionTuple.h:71
std::optional< unsigned > getMinor() const
Retrieve the minor version number, if provided.
Definition: VersionTuple.h:74
std::pair< iterator, bool > insert(const ValueT &V)
Definition: DenseSet.h:213
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
A raw_ostream that writes to an std::string.
Definition: raw_ostream.h:661
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
@ SC
CHAIN = SC CHAIN, Imm128 - System call.
Reg
All possible values of the reg field in the ModR/M byte.
NodeAddr< FuncNode * > Func
Definition: RDFGraph.h:393
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
Target & getTheSPIRV32Target()
bool getConstantStringInfo(const Value *V, StringRef &Str, bool TrimAtNul=true)
This function computes the length of a null-terminated C string pointed to by V.
std::string getExtInstSetName(SPIRV::InstructionSet::InstructionSet Set)
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:167
std::string getSymbolicOperandMnemonic(SPIRV::OperandCategory::OperandCategory Category, int32_t Value)
bool isEntryPoint(const Function &F)
Definition: SPIRVUtils.cpp:445
Target & getTheSPIRV64Target()
Target & getTheSPIRVLogicalTarget()
Type * getMDOperandAsType(const MDNode *N, unsigned I)
Definition: SPIRVUtils.cpp:338
void addStringImm(const StringRef &Str, MCInst &Inst)
Definition: SPIRVUtils.cpp:54
RegisterAsmPrinter - Helper template for registering a target specific assembly printer,...
static struct SPIRV::ModuleAnalysisInfo MAI
Register getFuncReg(const Function *F)