LLVM 24.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"
15#include "SPIRV.h"
16#include "SPIRVGlobalRegistry.h"
17#include "SPIRVLegalizerInfo.h"
25#include "llvm/CodeGen/Passes.h"
29#include "llvm/Pass.h"
37#include <optional>
38
39using namespace llvm;
40
69
70static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
71 if (!RM)
72 return Reloc::PIC_;
73 return *RM;
74}
75
76// Pin SPIRVTargetObjectFile's vtables to this file.
78
80 StringRef CPU, StringRef FS,
82 std::optional<Reloc::Model> RM,
83 std::optional<CodeModel::Model> CM,
84 CodeGenOptLevel OL, bool JIT)
85 : CodeGenTargetMachineImpl(T, TT.computeDataLayout(), TT, CPU, FS, Options,
87 getEffectiveCodeModel(CM, CodeModel::Small), OL),
88 TLOF(std::make_unique<SPIRVTargetObjectFile>()),
89 Subtarget(TT, CPU.str(), FS.str(), *this) {
91 setGlobalISel(true);
92 setFastISel(false);
93 setO0WantsFastISel(false);
95}
96
97namespace {
98// SPIR-V Code Generator Pass Configuration Options.
99class SPIRVPassConfig : public TargetPassConfig {
100public:
101 SPIRVPassConfig(SPIRVTargetMachine &TM, PassManagerBase &PM)
102 : TargetPassConfig(TM, PM), TM(TM) {}
103
104 SPIRVTargetMachine &getSPIRVTargetMachine() const {
106 }
107 void addMachineSSAOptimization() override;
108 void addIRPasses() override;
109 void addISelPrepare() override;
110
111 bool addIRTranslator() override;
112 void addPreLegalizeMachineIR() override;
113 bool addLegalizeMachineIR() override;
114 bool addRegBankSelect() override;
115 bool addGlobalInstructionSelect() override;
116
117 FunctionPass *createTargetRegisterAllocator(bool) override;
118 void addFastRegAlloc() override {}
119 void addOptimizedRegAlloc() override {}
120
121 void addPostRegAlloc() override;
122
123private:
124 const SPIRVTargetMachine &TM;
125};
126} // namespace
127
128// We do not use physical registers, and maintain virtual registers throughout
129// the entire pipeline, so return nullptr to disable register allocation.
130FunctionPass *SPIRVPassConfig::createTargetRegisterAllocator(bool) {
131 return nullptr;
132}
133
134// A place to disable passes that may break CFG.
135void SPIRVPassConfig::addMachineSSAOptimization() {
137}
138
139// Disable passes that break from assuming no virtual registers exist.
140void SPIRVPassConfig::addPostRegAlloc() {
141 // Do not work with vregs instead of physical regs.
142 disablePass(&MachineCopyPropagationID);
143 disablePass(&PostRAMachineSinkingID);
144 disablePass(&PostRASchedulerID);
145 disablePass(&FuncletLayoutID);
146 disablePass(&StackMapLivenessID);
147 disablePass(&PatchableFunctionID);
148 disablePass(&ShrinkWrapID);
149 disablePass(&LiveDebugValuesID);
150 disablePass(&MachineLateInstrsCleanupID);
151 disablePass(&RemoveLoadsIntoFakeUsesID);
152
153 // Do not work with OpPhi.
154 disablePass(&BranchFolderPassID);
155 disablePass(&MachineBlockPlacementID);
156
158}
159
162 return TargetTransformInfo(std::make_unique<SPIRVTTIImpl>(this, F));
163}
164
166 return new SPIRVPassConfig(*this, PM);
167}
168
169void SPIRVPassConfig::addIRPasses() {
171
173
174 if (TM.getSubtargetImpl()->isShader()) {
175 if (getOptLevel() != CodeGenOptLevel::None)
177 } else {
178 // Variadic function calls aren't supported in shader code.
179 // This needs to come before SPIRVPrepareFunctions because this
180 // may introduce intrinsic calls.
182 }
183
188}
189
190void SPIRVPassConfig::addISelPrepare() {
191 if (TM.getSubtargetImpl()->isShader()) {
192 // Vulkan does not allow address space casts. This pass is run to remove
193 // address space casts that can be removed.
194 // If an address space cast is not removed while targeting Vulkan, lowering
195 // will fail during MIR lowering.
197
198 // 1. Simplify loop for subsequent transformations. After this steps, loops
199 // have the following properties:
200 // - loops have a single entry edge (pre-header to loop header).
201 // - all loop exits are dominated by the loop pre-header.
202 // - loops have a single back-edge.
203 addPass(createLoopSimplifyPass());
204
205 // 2. Removes registers whose lifetime spans across basic blocks. Also
206 // removes phi nodes. This will greatly simplify the next steps.
207 addPass(createRegToMemWrapperPass());
208
209 // 3. Merge the convergence region exit nodes into one. After this step,
210 // regions are single-entry, single-exit. This will help determine the
211 // correct merge block.
213
214 // 4. Structurize.
216
217 // 5. Reduce the amount of variables required by pushing some operations
218 // back to virtual registers.
220 } else {
221 // Canonicalize loops so they have a single latch and preheader.
222 // This enables OpLoopMerge emission for non-shader targets.
223 addPass(createLoopSimplifyPass());
224 }
235}
236
237bool SPIRVPassConfig::addIRTranslator() {
238 addPass(new IRTranslatorLegacy(getOptLevel()));
239 return false;
240}
241
242void SPIRVPassConfig::addPreLegalizeMachineIR() {
245}
246
247// Use the default legalizer.
248bool SPIRVPassConfig::addLegalizeMachineIR() {
249 addPass(new LegalizerLegacy());
251 return false;
252}
253
254// Do not add the RegBankSelect pass, as we only ever need virtual registers.
255bool SPIRVPassConfig::addRegBankSelect() {
256 disablePass(&RegBankSelectLegacy::ID);
257 return false;
258}
259
260// Deprecated flag kept for backward compatibility. NSDI emission is now handled
261// by SPIRVNonSemanticDebugHandler, registered in SPIRVAsmPrinter::
262// doInitialization() when the module contains debug info (llvm.dbg.cu).
263// TODO: Remove this option after a deprecation period. Callers that used
264// -spv-emit-nonsemantic-debug-info should switch to -g.
266 "spv-emit-nonsemantic-debug-info",
267 cl::desc("Deprecated. Use -g to emit SPIR-V NonSemantic.Shader.DebugInfo "
268 "instructions"),
269 cl::Optional, cl::init(false));
270
271// Add the custom SPIRVInstructionSelect from above.
272bool SPIRVPassConfig::addGlobalInstructionSelect() {
273 addPass(new InstructionSelectLegacy(getOptLevel(),
274 /*RequireRegBankSelection=*/false));
275 return false;
276}
static Reloc::Model getEffectiveRelocModel()
#define X(NUM, ENUM, NAME)
Definition ELF.h:857
#define LLVM_ABI
Definition Compiler.h:215
#define LLVM_EXTERNAL_VISIBILITY
Definition Compiler.h:132
This file declares the IRTranslator pass.
#define F(x, y, z)
Definition MD5.cpp:54
#define T
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("Deprecated. Use -g to emit SPIR-V NonSemantic.Shader.DebugInfo " "instructions"), cl::Optional, cl::init(false))
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
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.
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...
bool isLogicalSPIRV() const
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)
const SPIRVSubtarget * getSubtargetImpl() const
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 ...
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
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:48
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.
ModulePass * createSPIRVPushConstantAccessLegacyPass(SPIRVTargetMachine *TM)
ModulePass * createSPIRVCtorDtorLoweringLegacyPass()
FunctionPass * createSPIRVStructurizerPass()
ModulePass * createSPIRVEmitIntrinsicsPass(const SPIRVTargetMachine &TM)
LLVM_ABI FunctionPass * createPromoteMemoryToRegisterPass()
Definition Mem2Reg.cpp:114
Target & getTheSPIRV32Target()
LLVM_ABI FunctionPass * createRegToMemWrapperPass()
Definition Reg2Mem.cpp:146
FunctionPass * createSPIRVPreLegalizerPass()
void initializeSPIRVPushConstantAccessLegacyPass(PassRegistry &)
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 initializeSPIRVLegalizePointerCastLegacyPass(PassRegistry &)
void initializeSPIRVPrepareFunctionsLegacyPass(PassRegistry &)
void initializeSPIRVPreLegalizerCombinerPass(PassRegistry &)
LLVM_ABI char & LiveDebugValuesID
LiveDebugValues pass.
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 ModulePass * createExpandVariadicsPass(ExpandVariadicsMode)
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...
void initializeSPIRVLegalizeZeroSizeArraysLegacyPass(PassRegistry &)
ModulePass * createSPIRVFinalizeShaderLinkagePass(const SPIRVTargetMachine &TM)
ModulePass * createSPIRVPrepareGlobalsPass()
void initializeSPIRVEmitIntrinsicsLegacyPass(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:149
Target & getTheSPIRV64Target()
ModulePass * createSPIRVLegalizeZeroSizeArraysPass(const SPIRVTargetMachine &TM)
LLVM_ABI FunctionPass * createStripConvergenceIntrinsicsPass()
void initializeSPIRVPostLegalizerPass(PassRegistry &)
void initializeSPIRVCBufferAccessLegacyPass(PassRegistry &)
ModulePass * createSPIRVCBufferAccessLegacyPass()
LLVM_ABI void initializeGlobalISel(PassRegistry &)
Initialize all passes linked into the GlobalISel library.
void initializeSPIRVPrepareGlobalsLegacyPass(PassRegistry &)
Target & getTheSPIRVLogicalTarget()
void initializeSPIRVAsmPrinterPass(PassRegistry &)
void initializeSPIRVRegularizerLegacyPass(PassRegistry &)
FunctionPass * createSPIRVRegularizerPass()
void initializeSPIRVStructurizerPass(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 FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
LLVM_ABI char & BranchFolderPassID
BranchFolding - This pass performs machine code CFG based optimizations to delete branches to branche...
ModulePass * createSPIRVPrepareFunctionsPass(const SPIRVTargetMachine &TM)
FunctionPass * createSPIRVLegalizePointerCastPass(SPIRVTargetMachine *TM)
LLVM_ABI Pass * createLoopSimplifyPass()
void initializeSPIRVLegalizeImplicitBindingLegacyPass(PassRegistry &)
void initializeSPIRVCtorDtorLoweringLegacyPass(PassRegistry &)
LLVM_ABI char & MachineCopyPropagationID
MachineCopyPropagation - This pass performs copy propagation on machine instructions.
void initializeSPIRVMergeRegionExitTargetsLegacyPass(PassRegistry &)
void initializeSPIRVFinalizeShaderLinkageLegacyPass(PassRegistry &)
ModulePass * createSPIRVLegalizeImplicitBindingPass()
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:878
RegisterTargetMachine - Helper template for registering a target machine implementation,...