LLVM 22.0.0git
SPIRVTargetMachine.cpp
Go to the documentation of this file.
1//===- SPIRVTargetMachine.cpp - Define TargetMachine for SPIR-V -*- 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// Implements the info about SPIR-V target spec.
10//
11//===----------------------------------------------------------------------===//
12
13#include "SPIRVTargetMachine.h"
14#include "SPIRV.h"
15#include "SPIRVCBufferAccess.h"
16#include "SPIRVGlobalRegistry.h"
17#include "SPIRVLegalizerInfo.h"
26#include "llvm/CodeGen/Passes.h"
30#include "llvm/Pass.h"
36#include <optional>
37
38using namespace llvm;
39
65
66static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
67 if (!RM)
68 return Reloc::PIC_;
69 return *RM;
70}
71
72// Pin SPIRVTargetObjectFile's vtables to this file.
74
76 StringRef CPU, StringRef FS,
78 std::optional<Reloc::Model> RM,
79 std::optional<CodeModel::Model> CM,
80 CodeGenOptLevel OL, bool JIT)
81 : CodeGenTargetMachineImpl(T, TT.computeDataLayout(), TT, CPU, FS, Options,
83 getEffectiveCodeModel(CM, CodeModel::Small), OL),
84 TLOF(std::make_unique<SPIRVTargetObjectFile>()),
85 Subtarget(TT, CPU.str(), FS.str(), *this) {
87 setGlobalISel(true);
88 setFastISel(false);
89 setO0WantsFastISel(false);
91}
92
94#define GET_PASS_REGISTRY "SPIRVPassRegistry.def"
96}
97
98namespace {
99// SPIR-V Code Generator Pass Configuration Options.
100class SPIRVPassConfig : public TargetPassConfig {
101public:
102 SPIRVPassConfig(SPIRVTargetMachine &TM, PassManagerBase &PM)
103 : TargetPassConfig(TM, PM), TM(TM) {}
104
105 SPIRVTargetMachine &getSPIRVTargetMachine() const {
107 }
108 void addMachineSSAOptimization() override;
109 void addIRPasses() override;
110 void addISelPrepare() override;
111
112 bool addIRTranslator() override;
113 void addPreLegalizeMachineIR() override;
114 bool addLegalizeMachineIR() override;
115 bool addRegBankSelect() override;
116 bool addGlobalInstructionSelect() override;
117
118 FunctionPass *createTargetRegisterAllocator(bool) override;
119 void addFastRegAlloc() override {}
120 void addOptimizedRegAlloc() override {}
121
122 void addPostRegAlloc() override;
123 void addPreEmitPass() override;
124
125private:
126 const SPIRVTargetMachine &TM;
127};
128} // namespace
129
130// We do not use physical registers, and maintain virtual registers throughout
131// the entire pipeline, so return nullptr to disable register allocation.
132FunctionPass *SPIRVPassConfig::createTargetRegisterAllocator(bool) {
133 return nullptr;
134}
135
136// A place to disable passes that may break CFG.
137void SPIRVPassConfig::addMachineSSAOptimization() {
139}
140
141// Disable passes that break from assuming no virtual registers exist.
142void SPIRVPassConfig::addPostRegAlloc() {
143 // Do not work with vregs instead of physical regs.
144 disablePass(&MachineCopyPropagationID);
145 disablePass(&PostRAMachineSinkingID);
146 disablePass(&PostRASchedulerID);
147 disablePass(&FuncletLayoutID);
148 disablePass(&StackMapLivenessID);
149 disablePass(&PatchableFunctionID);
150 disablePass(&ShrinkWrapID);
151 disablePass(&LiveDebugValuesID);
152 disablePass(&MachineLateInstrsCleanupID);
153 disablePass(&RemoveLoadsIntoFakeUsesID);
154
155 // Do not work with OpPhi.
156 disablePass(&BranchFolderPassID);
157 disablePass(&MachineBlockPlacementID);
158
160}
161
164 return TargetTransformInfo(std::make_unique<SPIRVTTIImpl>(this, F));
165}
166
168 return new SPIRVPassConfig(*this, PM);
169}
170
171void SPIRVPassConfig::addIRPasses() {
173
177}
178
179void SPIRVPassConfig::addISelPrepare() {
180 if (TM.getSubtargetImpl()->isShader()) {
181 // Vulkan does not allow address space casts. This pass is run to remove
182 // address space casts that can be removed.
183 // If an address space cast is not removed while targeting Vulkan, lowering
184 // will fail during MIR lowering.
186
187 // 1. Simplify loop for subsequent transformations. After this steps, loops
188 // have the following properties:
189 // - loops have a single entry edge (pre-header to loop header).
190 // - all loop exits are dominated by the loop pre-header.
191 // - loops have a single back-edge.
192 addPass(createLoopSimplifyPass());
193
194 // 2. Removes registers whose lifetime spans across basic blocks. Also
195 // removes phi nodes. This will greatly simplify the next steps.
196 addPass(createRegToMemWrapperPass());
197
198 // 3. Merge the convergence region exit nodes into one. After this step,
199 // regions are single-entry, single-exit. This will help determine the
200 // correct merge block.
202
203 // 4. Structurize.
205
206 // 5. Reduce the amount of variables required by pushing some operations
207 // back to virtual registers.
209 }
210
215 if (TM.getSubtargetImpl()->isLogicalSPIRV())
218}
219
220bool SPIRVPassConfig::addIRTranslator() {
221 addPass(new IRTranslator(getOptLevel()));
222 return false;
223}
224
225void SPIRVPassConfig::addPreLegalizeMachineIR() {
228}
229
230// Use the default legalizer.
231bool SPIRVPassConfig::addLegalizeMachineIR() {
232 addPass(new Legalizer());
234 return false;
235}
236
237// Do not add the RegBankSelect pass, as we only ever need virtual registers.
238bool SPIRVPassConfig::addRegBankSelect() {
239 disablePass(&RegBankSelect::ID);
240 return false;
241}
242
244 "spv-emit-nonsemantic-debug-info",
245 cl::desc("Emit SPIR-V NonSemantic.Shader.DebugInfo.100 instructions"),
246 cl::Optional, cl::init(false));
247
248void SPIRVPassConfig::addPreEmitPass() {
250 getSPIRVTargetMachine().getTargetTriple().getVendor() == Triple::AMD) {
252 }
253}
254
255namespace {
256// A custom subclass of InstructionSelect, which is mostly the same except from
257// not requiring RegBankSelect to occur previously.
258class SPIRVInstructionSelect : public InstructionSelect {
259 // We don't use register banks, so unset the requirement for them
260 MachineFunctionProperties getRequiredProperties() const override {
261 return InstructionSelect::getRequiredProperties().resetRegBankSelected();
262 }
263};
264} // namespace
265
266// Add the custom SPIRVInstructionSelect from above.
267bool SPIRVPassConfig::addGlobalInstructionSelect() {
268 addPass(new SPIRVInstructionSelect());
269 return false;
270}
static Reloc::Model getEffectiveRelocModel()
#define LLVM_ABI
Definition Compiler.h:213
#define LLVM_EXTERNAL_VISIBILITY
Definition Compiler.h:132
DXIL Legalizer
This file declares the IRTranslator pass.
#define F(x, y, z)
Definition MD5.cpp:54
#define T
PassBuilder PB(Machine, PassOpts->PTO, std::nullopt, &PIC)
This file describes the interface of the MachineFunctionPass responsible for assigning the generic vi...
const GCNTargetMachine & getTM(const GCNSubtarget *STI)
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeSPIRVTarget()
static cl::opt< bool > SPVEnableNonSemanticDI("spv-emit-nonsemantic-debug-info", cl::desc("Emit SPIR-V NonSemantic.Shader.DebugInfo.100 instructions"), cl::Optional, cl::init(false))
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static TableGen::Emitter::OptClass< SkeletonEmitter > X("gen-skeleton-class", "Generate example skeleton class")
Target-Independent Code Generator Pass Configuration Options pass.
CodeGenTargetMachineImpl(const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOptLevel OL)
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
This pass is responsible for selecting generic machine instructions to target-specific instructions.
MachineFunctionProperties getRequiredProperties() const override
This class provides access to building LLVM's passes.
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
void registerPassBuilderCallbacks(PassBuilder &PB) override
Allow the target to modify the pass pipeline.
SPIRVTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, std::optional< Reloc::Model > RM, std::optional< CodeModel::Model > CM, CodeGenOptLevel OL, bool JIT)
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
void setFastISel(bool Enable)
void setRequiresStructuredCFG(bool Value)
void setGlobalISel(bool Enable)
TargetOptions Options
void setO0WantsFastISel(bool Enable)
Target-Independent Code Generator Pass Configuration Options.
virtual void addPostRegAlloc()
This method may be implemented by targets that want to run passes after register allocation pass pipe...
virtual void addIRPasses()
Add common target configurable passes that perform LLVM IR to IR transforms following machine indepen...
virtual void addMachineSSAOptimization()
addMachineSSAOptimization - Add standard passes that optimize machine instructions in SSA form.
virtual void addISelPrepare()
Add common passes that perform LLVM IR to IR transforms in preparation for instruction selection.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:47
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
Interfaces for registering analysis passes, producing common pass manager configurations,...
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
void initializeSPIRVEmitIntrinsicsPass(PassRegistry &)
FunctionPass * createSPIRVStructurizerPass()
LLVM_ABI FunctionPass * createPromoteMemoryToRegisterPass()
Definition Mem2Reg.cpp:114
MachineFunctionPass * createSPIRVEmitNonSemanticDIPass(SPIRVTargetMachine *TM)
Target & getTheSPIRV32Target()
ModulePass * createSPIRVEmitIntrinsicsPass(SPIRVTargetMachine *TM)
void initializeSPIRVPrepareFunctionsPass(PassRegistry &)
LLVM_ABI FunctionPass * createRegToMemWrapperPass()
Definition Reg2Mem.cpp:146
FunctionPass * createSPIRVPreLegalizerPass()
LLVM_ABI char & PatchableFunctionID
This pass implements the "patchable-function" attribute.
LLVM_ABI char & PostRASchedulerID
PostRAScheduler - This pass performs post register allocation scheduling.
LLVM_ABI char & RemoveLoadsIntoFakeUsesID
RemoveLoadsIntoFakeUses pass.
void initializeSPIRVMergeRegionExitTargetsPass(PassRegistry &)
FunctionPass * createSPIRVStripConvergenceIntrinsicsPass()
void initializeSPIRVPreLegalizerCombinerPass(PassRegistry &)
LLVM_ABI char & LiveDebugValuesID
LiveDebugValues pass.
void initializeSPIRVLegalizePointerCastPass(PassRegistry &)
FunctionPass * createSPIRVPreLegalizerCombiner()
void initializeSPIRVModuleAnalysisPass(PassRegistry &)
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
FunctionPass * createSPIRVPostLegalizerPass()
CodeModel::Model getEffectiveCodeModel(std::optional< CodeModel::Model > CM, CodeModel::Model Default)
Helper method for getting the code model, returning Default if CM does not have a value.
LLVM_ABI char & ShrinkWrapID
ShrinkWrap pass. Look for the best place to insert save and restore.
LLVM_ABI char & MachineLateInstrsCleanupID
MachineLateInstrsCleanup - This pass removes redundant identical instructions after register allocati...
ModulePass * createSPIRVPrepareGlobalsPass()
void initializeSPIRVRegularizerPass(PassRegistry &)
LLVM_ABI char & StackMapLivenessID
StackMapLiveness - This pass analyses the register live-out set of stackmap/patchpoint intrinsics and...
LLVM_ABI char & FuncletLayoutID
This pass lays out funclets contiguously.
LLVM_ABI char & PostRAMachineSinkingID
This pass perform post-ra machine sink for COPY instructions.
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:82
Target & getTheSPIRV64Target()
void initializeSPIRVPostLegalizerPass(PassRegistry &)
void initializeSPIRVCBufferAccessLegacyPass(PassRegistry &)
ModulePass * createSPIRVCBufferAccessLegacyPass()
LLVM_ABI void initializeGlobalISel(PassRegistry &)
Initialize all passes linked into the GlobalISel library.
Target & getTheSPIRVLogicalTarget()
void initializeSPIRVAsmPrinterPass(PassRegistry &)
FunctionPass * createSPIRVRegularizerPass()
void initializeSPIRVStructurizerPass(PassRegistry &)
void initializeSPIRVEmitNonSemanticDIPass(PassRegistry &)
FunctionPass * createSPIRVMergeRegionExitTargetsPass()
LLVM_ABI FunctionPass * createInferAddressSpacesPass(unsigned AddressSpace=~0u)
void initializeSPIRVPreLegalizerPass(PassRegistry &)
void initializeSPIRVConvergenceRegionAnalysisWrapperPassPass(PassRegistry &)
LLVM_ABI char & MachineBlockPlacementID
MachineBlockPlacement - This pass places basic blocks based on branch probabilities.
LLVM_ABI char & BranchFolderPassID
BranchFolding - This pass performs machine code CFG based optimizations to delete branches to branche...
ModulePass * createSPIRVPrepareFunctionsPass(const SPIRVTargetMachine &TM)
void initializeSPIRVPrepareGlobalsPass(PassRegistry &)
FunctionPass * createSPIRVLegalizePointerCastPass(SPIRVTargetMachine *TM)
LLVM_ABI Pass * createLoopSimplifyPass()
LLVM_ABI char & MachineCopyPropagationID
MachineCopyPropagation - This pass performs copy propagation on machine instructions.
void initializeSPIRVStripConvergentIntrinsicsPass(PassRegistry &)
ModulePass * createSPIRVLegalizeImplicitBindingPass()
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:867
RegisterTargetMachine - Helper template for registering a target machine implementation,...