LLVM 23.0.0git
X86TargetMachine.cpp
Go to the documentation of this file.
1//===-- X86TargetMachine.cpp - Define TargetMachine for the X86 -----------===//
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 defines the X86 specific subclass of TargetMachine.
10//
11//===----------------------------------------------------------------------===//
12
13#include "X86TargetMachine.h"
16#include "X86.h"
18#include "X86MacroFusion.h"
19#include "X86Subtarget.h"
20#include "X86TargetObjectFile.h"
22#include "llvm-c/Visibility.h"
24#include "llvm/ADT/StringRef.h"
36#include "llvm/CodeGen/Passes.h"
38#include "llvm/IR/Attributes.h"
39#include "llvm/IR/DataLayout.h"
40#include "llvm/IR/Function.h"
41#include "llvm/MC/MCAsmInfo.h"
43#include "llvm/Pass.h"
51#include <memory>
52#include <optional>
53
54using namespace llvm;
55
57 X86EnableMachineCombinerPass("x86-machine-combiner",
58 cl::desc("Enable the machine combiner pass"),
59 cl::init(true), cl::Hidden);
60
61static cl::opt<bool>
62 EnableTileRAPass("x86-tile-ra",
63 cl::desc("Enable the tile register allocation pass"),
64 cl::init(true), cl::Hidden);
65
67 // Register the target.
70
112}
113
114static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
115 if (TT.isOSBinFormatMachO()) {
116 if (TT.isX86_64())
117 return std::make_unique<X86_64MachoTargetObjectFile>();
118 return std::make_unique<TargetLoweringObjectFileMachO>();
119 }
120
121 if (TT.isOSBinFormatCOFF())
122 return std::make_unique<TargetLoweringObjectFileCOFF>();
123
124 if (TT.isX86_64())
125 return std::make_unique<X86_64ELFTargetObjectFile>();
126 return std::make_unique<X86ELFTargetObjectFile>();
127}
128
129static Reloc::Model getEffectiveRelocModel(const Triple &TT, bool JIT,
130 std::optional<Reloc::Model> RM) {
131 bool is64Bit = TT.isX86_64();
132 if (!RM) {
133 // JIT codegen should use static relocations by default, since it's
134 // typically executed in process and not relocatable.
135 if (JIT)
136 return Reloc::Static;
137
138 // Darwin defaults to PIC in 64 bit mode and dynamic-no-pic in 32 bit mode.
139 // Win64 requires rip-rel addressing, thus we force it to PIC. Otherwise we
140 // use static relocation model by default.
141 if (TT.isOSDarwin()) {
142 if (is64Bit)
143 return Reloc::PIC_;
144 return Reloc::DynamicNoPIC;
145 }
146 if (TT.isOSWindows() && is64Bit)
147 return Reloc::PIC_;
148 return Reloc::Static;
149 }
150
151 // ELF and X86-64 don't have a distinct DynamicNoPIC model. DynamicNoPIC
152 // is defined as a model for code which may be used in static or dynamic
153 // executables but not necessarily a shared library. On X86-32 we just
154 // compile in -static mode, in x86-64 we use PIC.
155 if (*RM == Reloc::DynamicNoPIC) {
156 if (is64Bit)
157 return Reloc::PIC_;
158 if (!TT.isOSDarwin())
159 return Reloc::Static;
160 }
161
162 // If we are on Darwin, disallow static relocation model in X86-64 mode, since
163 // the Mach-O file format doesn't support it.
164 if (*RM == Reloc::Static && TT.isOSDarwin() && is64Bit)
165 return Reloc::PIC_;
166
167 return *RM;
168}
169
170static CodeModel::Model
171getEffectiveX86CodeModel(const Triple &TT, std::optional<CodeModel::Model> CM,
172 bool JIT) {
173 bool Is64Bit = TT.isX86_64();
174 if (CM) {
175 if (*CM == CodeModel::Tiny)
176 reportFatalUsageError("target does not support the tiny CodeModel");
177 return *CM;
178 }
179 if (JIT)
180 return Is64Bit ? CodeModel::Large : CodeModel::Small;
181 return CodeModel::Small;
182}
183
184/// Create an X86 target.
185///
187 StringRef CPU, StringRef FS,
188 const TargetOptions &Options,
189 std::optional<Reloc::Model> RM,
190 std::optional<CodeModel::Model> CM,
191 CodeGenOptLevel OL, bool JIT)
192 : CodeGenTargetMachineImpl(T, TT.computeDataLayout(), TT, CPU, FS, Options,
193 getEffectiveRelocModel(TT, JIT, RM),
194 getEffectiveX86CodeModel(TT, CM, JIT), OL),
195 TLOF(createTLOF(getTargetTriple())), IsJIT(JIT) {
196 // On PS4/PS5, the "return address" of a 'noreturn' call must still be within
197 // the calling function. Note that this also includes __stack_chk_fail,
198 // so there was some target-specific logic in the instruction selectors
199 // to handle that. That code has since been generalized, so the only thing
200 // needed is to set TrapUnreachable here.
201 if (TT.isPS() || TT.isOSBinFormatMachO()) {
202 this->Options.TrapUnreachable = true;
203 this->Options.NoTrapAfterNoreturn = TT.isOSBinFormatMachO();
204 }
205
206 setMachineOutliner(true);
207
208 // x86 supports the debug entry values.
210
211 initAsmInfo();
212}
213
215
216const X86Subtarget *
218 Attribute CPUAttr = F.getFnAttribute("target-cpu");
219 Attribute TuneAttr = F.getFnAttribute("tune-cpu");
220 Attribute FSAttr = F.getFnAttribute("target-features");
221
222 StringRef CPU =
223 CPUAttr.isValid() ? CPUAttr.getValueAsString() : (StringRef)TargetCPU;
224 // "x86-64" is a default target setting for many front ends. In these cases,
225 // they actually request for "generic" tuning unless the "tune-cpu" was
226 // specified.
227 StringRef TuneCPU = TuneAttr.isValid() ? TuneAttr.getValueAsString()
228 : CPU == "x86-64" ? "generic"
229 : (StringRef)CPU;
230 StringRef FS =
231 FSAttr.isValid() ? FSAttr.getValueAsString() : (StringRef)TargetFS;
232
234 // The additions here are ordered so that the definitely short strings are
235 // added first so we won't exceed the small size. We append the
236 // much longer FS string at the end so that we only heap allocate at most
237 // one time.
238
239 // Extract prefer-vector-width attribute.
240 unsigned PreferVectorWidthOverride = 0;
241 Attribute PreferVecWidthAttr = F.getFnAttribute("prefer-vector-width");
242 if (PreferVecWidthAttr.isValid()) {
243 StringRef Val = PreferVecWidthAttr.getValueAsString();
244 unsigned Width;
245 if (!Val.getAsInteger(0, Width)) {
246 Key += 'p';
247 Key += Val;
248 PreferVectorWidthOverride = Width;
249 }
250 }
251
252 // Extract min-legal-vector-width attribute.
253 unsigned RequiredVectorWidth = UINT32_MAX;
254 Attribute MinLegalVecWidthAttr = F.getFnAttribute("min-legal-vector-width");
255 if (MinLegalVecWidthAttr.isValid()) {
256 StringRef Val = MinLegalVecWidthAttr.getValueAsString();
257 unsigned Width;
258 if (!Val.getAsInteger(0, Width)) {
259 Key += 'm';
260 Key += Val;
261 RequiredVectorWidth = Width;
262 }
263 }
264
265 // Add CPU to the Key.
266 Key += CPU;
267
268 // Add tune CPU to the Key.
269 Key += TuneCPU;
270
271 // Keep track of the start of the feature portion of the string.
272 unsigned FSStart = Key.size();
273
274 // FIXME: This is related to the code below to reset the target options,
275 // we need to know whether or not the soft float flag is set on the
276 // function before we can generate a subtarget. We also need to use
277 // it as a key for the subtarget since that can be the only difference
278 // between two functions.
279 bool SoftFloat = F.getFnAttribute("use-soft-float").getValueAsBool();
280 // If the soft float attribute is set on the function turn on the soft float
281 // subtarget feature.
282 if (SoftFloat)
283 Key += FS.empty() ? "+soft-float" : "+soft-float,";
284
285 Key += FS;
286
287 // We may have added +soft-float to the features so move the StringRef to
288 // point to the full string in the Key.
289 FS = Key.substr(FSStart);
290
291 auto &I = SubtargetMap[Key];
292 if (!I) {
293 I = std::make_unique<X86Subtarget>(
294 TargetTriple, CPU, TuneCPU, FS, *this,
295 MaybeAlign(F.getParent()->getOverrideStackAlignment()),
296 PreferVectorWidthOverride, RequiredVectorWidth);
297 }
298 return I.get();
299}
300
304
307 const auto *MFI = MF.getInfo<X86MachineFunctionInfo>();
308 return new yaml::X86MachineFunctionInfo(*MFI);
309}
310
313 SMDiagnostic &Error, SMRange &SourceRange) const {
314 const auto &YamlMFI = static_cast<const yaml::X86MachineFunctionInfo &>(MFI);
315 PFS.MF.getInfo<X86MachineFunctionInfo>()->initializeBaseYamlFields(YamlMFI);
316 return false;
317}
318
320 unsigned DestAS) const {
321 assert(SrcAS != DestAS && "Expected different address spaces!");
322 if (getPointerSize(SrcAS) != getPointerSize(DestAS))
323 return false;
324 return SrcAS < 256 && DestAS < 256;
325}
326
327void X86TargetMachine::reset() { SubtargetMap.clear(); }
328
335
342
343//===----------------------------------------------------------------------===//
344// X86 TTI query.
345//===----------------------------------------------------------------------===//
346
349 return TargetTransformInfo(std::make_unique<X86TTIImpl>(this, F));
350}
351
352//===----------------------------------------------------------------------===//
353// Pass Pipeline Configuration
354//===----------------------------------------------------------------------===//
355
356namespace {
357
358/// X86 Code Generator Pass Configuration Options.
359class X86PassConfig : public TargetPassConfig {
360public:
361 X86PassConfig(X86TargetMachine &TM, PassManagerBase &PM)
362 : TargetPassConfig(TM, PM) {}
363
364 X86TargetMachine &getX86TargetMachine() const {
366 }
367
368 void addIRPasses() override;
369 bool addInstSelector() override;
370 bool addIRTranslator() override;
371 bool addLegalizeMachineIR() override;
372 void addPreRegBankSelect() override;
373 bool addRegBankSelect() override;
374 bool addGlobalInstructionSelect() override;
375 void addPreLegalizeMachineIR() override;
376 bool addILPOpts() override;
377 bool addPreISel() override;
378 void addMachineSSAOptimization() override;
379 void addPreRegAlloc() override;
380 bool addPostFastRegAllocRewrite() override;
381 void addPostRegAlloc() override;
382 void addPreEmitPass() override;
383 void addPreEmitPass2() override;
384 void addPreSched2() override;
385 bool addRegAssignAndRewriteOptimized() override;
386
387 std::unique_ptr<CSEConfigBase> getCSEConfig() const override;
388};
389
390class X86ExecutionDomainFix : public ExecutionDomainFix {
391public:
392 static char ID;
393 X86ExecutionDomainFix() : ExecutionDomainFix(ID, X86::VR128XRegClass) {}
394 StringRef getPassName() const override {
395 return "X86 Execution Dependency Fix";
396 }
397};
398char X86ExecutionDomainFix::ID;
399
400} // end anonymous namespace
401
402INITIALIZE_PASS_BEGIN(X86ExecutionDomainFix, "x86-execution-domain-fix",
403 "X86 Execution Domain Fix", false, false)
405INITIALIZE_PASS_END(X86ExecutionDomainFix, "x86-execution-domain-fix",
406 "X86 Execution Domain Fix", false, false)
407
409 return new X86PassConfig(*this, PM);
410}
411
418
419void X86PassConfig::addIRPasses() {
421
422 // We add both pass anyway and when these two passes run, we skip the pass
423 // based on the option level and option attribute.
426
428
429 if (TM->getOptLevel() != CodeGenOptLevel::None) {
432 }
433
434 // Add passes that handle indirect branch removal and insertion of a retpoline
435 // thunk. These will be a no-op unless a function subtarget has the retpoline
436 // feature enabled.
438
439 // Add Control Flow Guard checks.
440 const Triple &TT = TM->getTargetTriple();
441 if (TT.isOSWindows()) {
442 addPass(createCFGuardPass());
443 }
444
445 if (TM->Options.JMCInstrument)
446 addPass(createJMCInstrumenterPass());
447}
448
449bool X86PassConfig::addInstSelector() {
450 // Install an instruction selector.
451 addPass(createX86ISelDag(getX86TargetMachine(), getOptLevel()));
452
453 // For ELF, cleanup any local-dynamic TLS accesses.
454 if (TM->getTargetTriple().isOSBinFormatELF() &&
455 getOptLevel() != CodeGenOptLevel::None)
457
460 return false;
461}
462
463bool X86PassConfig::addIRTranslator() {
464 addPass(new IRTranslator(getOptLevel()));
465 return false;
466}
467
468void X86PassConfig::addPreRegBankSelect() {
469 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
470 if (!IsOptNone) {
472 }
473}
474bool X86PassConfig::addLegalizeMachineIR() {
475 addPass(new Legalizer());
476 return false;
477}
478
479bool X86PassConfig::addRegBankSelect() {
480 addPass(new RegBankSelect());
481 return false;
482}
483
484bool X86PassConfig::addGlobalInstructionSelect() {
485 addPass(new InstructionSelect(getOptLevel()));
486 // Add GlobalBaseReg in case there is no SelectionDAG passes afterwards
487 if (isGlobalISelAbortEnabled())
489 return false;
490}
491
492void X86PassConfig::addPreLegalizeMachineIR() {
493 if (getOptLevel() != CodeGenOptLevel::None) {
495 }
496}
497
498bool X86PassConfig::addILPOpts() {
499 addPass(&EarlyIfConverterLegacyID);
501 addPass(&MachineCombinerID);
503 return true;
504}
505
506bool X86PassConfig::addPreISel() {
507 // Only add this pass for 32-bit x86 Windows.
508 const Triple &TT = TM->getTargetTriple();
509 if (TT.isOSWindows() && TT.isX86_32())
511 return true;
512}
513
514void X86PassConfig::addPreRegAlloc() {
515 if (getOptLevel() != CodeGenOptLevel::None) {
516 addPass(&LiveRangeShrinkID);
521 }
522
524
528
529 if (getOptLevel() != CodeGenOptLevel::None)
531 else
533}
534
535void X86PassConfig::addMachineSSAOptimization() {
538}
539
540void X86PassConfig::addPostRegAlloc() {
543 // When -O0 is enabled, the Load Value Injection Hardening pass will fall back
544 // to using the Speculative Execution Side Effect Suppression pass for
545 // mitigation. This is to prevent slow downs due to
546 // analyses needed by the LVIHardening pass when compiling at -O0.
547 if (getOptLevel() != CodeGenOptLevel::None)
549}
550
551void X86PassConfig::addPreSched2() {
553 addPass(createKCFIPass());
554}
555
556void X86PassConfig::addPreEmitPass() {
557 if (getOptLevel() != CodeGenOptLevel::None) {
558 addPass(new X86ExecutionDomainFix());
560 }
561
563
565
566 if (getOptLevel() != CodeGenOptLevel::None) {
572 }
575}
576
577void X86PassConfig::addPreEmitPass2() {
578 const Triple &TT = TM->getTargetTriple();
579 const MCAsmInfo &MAI = TM->getMCAsmInfo();
580
581 // The X86 Speculative Execution Pass must run after all control
582 // flow graph modifying passes. As a result it was listed to run right before
583 // the X86 Retpoline Thunks pass. The reason it must run after control flow
584 // graph modifications is that the model of LFENCE in LLVM has to be updated
585 // (FIXME: https://bugs.llvm.org/show_bug.cgi?id=45167). Currently the
586 // placement of this pass was hand checked to ensure that the subsequent
587 // passes don't move the code around the LFENCEs in a way that will hurt the
588 // correctness of this pass. This placement has been shown to work based on
589 // hand inspection of the codegen output.
593
594 // Insert extra int3 instructions after trailing call instructions to avoid
595 // issues in the unwinder.
596 if (TT.isOSWindows() && TT.isX86_64())
598
599 // Verify basic block incoming and outgoing cfa offset and register values and
600 // correct CFA calculation rule where needed by inserting appropriate CFI
601 // instructions.
602 if (!TT.isOSDarwin() &&
603 (!TT.isOSWindows() ||
605 addPass(createCFIInstrInserter());
606
607 if (TT.isOSWindows()) {
608 // Identify valid longjmp targets for Windows Control Flow Guard.
609 addPass(createCFGuardLongjmpPass());
610 // Identify valid eh continuation targets for Windows EHCont Guard.
612 }
614
615 // Insert pseudo probe annotation for callsite profiling
616 addPass(createPseudoProbeInserter());
617
618 // KCFI indirect call checks are lowered to a bundle, and on Darwin platforms,
619 // also CALL_RVMARKER.
620 addPass(createUnpackMachineBundlesLegacy([&TT](const MachineFunction &MF) {
621 // Only run bundle expansion if the module uses kcfi, or there are relevant
622 // ObjC runtime functions present in the module.
623 const Function &F = MF.getFunction();
624 const Module *M = F.getParent();
625 return M->getModuleFlag("kcfi") ||
626 (TT.isOSDarwin() &&
627 (M->getFunction("objc_retainAutoreleasedReturnValue") ||
628 M->getFunction("objc_unsafeClaimAutoreleasedReturnValue")));
629 }));
630
631 // Analyzes and emits pseudos to support Win x64 Unwind V2. This pass must run
632 // after all real instructions have been added to the epilog.
633 if (TT.isOSWindows() && TT.isX86_64())
635}
636
637bool X86PassConfig::addPostFastRegAllocRewrite() {
639 return true;
640}
641
642std::unique_ptr<CSEConfigBase> X86PassConfig::getCSEConfig() const {
643 return getStandardCSEConfigForOpt(TM->getOptLevel());
644}
645
647 const MachineRegisterInfo &MRI,
648 const Register Reg) {
649 const TargetRegisterClass *RC = MRI.getRegClass(Reg);
650 return static_cast<const X86RegisterInfo &>(TRI).isTileRegisterClass(RC);
651}
652
653bool X86PassConfig::addRegAssignAndRewriteOptimized() {
654 // Don't support tile RA when RA is specified by command line "-regalloc".
655 if (!isCustomizedRegAlloc() && EnableTileRAPass) {
656 // Allocate tile register first.
659 }
661}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static std::unique_ptr< TargetLoweringObjectFile > createTLOF(const Triple &TT)
static Reloc::Model getEffectiveRelocModel()
This file contains the simple types necessary to represent the attributes associated with functions a...
#define X(NUM, ENUM, NAME)
Definition ELF.h:853
Provides analysis for continuously CSEing during GISel passes.
This file describes how to lower LLVM calls to machine code calls.
DXIL Legalizer
This file declares the IRTranslator pass.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
Register Reg
Register const TargetRegisterInfo * TRI
#define T
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition PassSupport.h:42
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
Definition PassSupport.h:44
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
Definition PassSupport.h:39
This file describes the interface of the MachineFunctionPass responsible for assigning the generic vi...
const GCNTargetMachine & getTM(const GCNSubtarget *STI)
This file defines the SmallString class.
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
Target-Independent Code Generator Pass Configuration Options pass.
This pass exposes codegen information to IR-level passes.
static std::unique_ptr< TargetLoweringObjectFile > createTLOF()
#define LLVM_C_ABI
LLVM_C_ABI is the export/visibility macro used to mark symbols declared in llvm-c as exported when bu...
Definition Visibility.h:40
cl::opt< bool > X86EnableMachineCombinerPass
static bool is64Bit(const char *name)
static cl::opt< bool > EnableTileRAPass("x86-tile-ra", cl::desc("Enable the tile register allocation pass"), cl::init(true), cl::Hidden)
static CodeModel::Model getEffectiveX86CodeModel(const Triple &TT, std::optional< CodeModel::Model > CM, bool JIT)
static bool onlyAllocateTileRegisters(const TargetRegisterInfo &TRI, const MachineRegisterInfo &MRI, const Register Reg)
LLVM_C_ABI void LLVMInitializeX86Target()
cl::opt< bool > X86EnableMachineCombinerPass("x86-machine-combiner", cl::desc("Enable the machine combiner pass"), cl::init(true), cl::Hidden)
This file a TargetTransformInfoImplBase conforming object specific to the X86 target machine.
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:105
LLVM_ABI StringRef getValueAsString() const
Return the attribute's value as a string.
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition Attributes.h:261
CodeGenTargetMachineImpl(const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOptLevel OL)
virtual void reset()
Reset internal state.
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
This pass is responsible for selecting generic machine instructions to target-specific instructions.
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition MCAsmInfo.h:66
ExceptionHandling getExceptionHandlingType() const
Definition MCAsmInfo.h:655
Function & getFunction()
Return the LLVM function that this machine code represents.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
const TargetRegisterClass * getRegClass(Register Reg) const
Return the register class of the specified virtual register.
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
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...
This pass implements the reg bank selector pass used in the GlobalISel pipeline.
Wrapper class representing virtual and physical registers.
Definition Register.h:20
Instances of this class encapsulate one diagnostic report, allowing printing to a raw_ostream as a ca...
Definition SourceMgr.h:303
Represents a range in source code.
Definition SMLoc.h:47
A ScheduleDAG for scheduling lists of MachineInstr.
ScheduleDAGMILive is an implementation of ScheduleDAGInstrs that schedules machine instructions while...
ScheduleDAGMI is an implementation of ScheduleDAGInstrs that simply schedules machine instructions ac...
void addMutation(std::unique_ptr< ScheduleDAGMutation > Mutation)
Add a postprocessing step to the DAG builder.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition SmallString.h:26
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
bool getAsInteger(unsigned Radix, T &Result) const
Parse the current string as an integer of the specified radix.
Definition StringRef.h:490
void setSupportsDebugEntryValues(bool Enable)
Triple TargetTriple
Triple string, CPU name, and target feature strings the TargetMachine instance is created with.
const Triple & getTargetTriple() const
void setMachineOutliner(bool Enable)
unsigned getPointerSize(unsigned AS) const
Get the pointer size for this target.
std::unique_ptr< const MCSubtargetInfo > STI
TargetOptions Options
Target-Independent Code Generator Pass Configuration Options.
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 bool addRegAssignAndRewriteOptimized()
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
TargetSubtargetInfo - Generic base class for all target subtargets.
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
X86MachineFunctionInfo - This class is derived from MachineFunction and contains private X86 target-s...
bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override
Returns true if a cast between SrcAS and DestAS is a noop.
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
yaml::MachineFunctionInfo * convertFuncInfoToYAML(const MachineFunction &MF) const override
Allocate and initialize an instance of the YAML representation of the MachineFunctionInfo.
const X86Subtarget * getSubtargetImpl() const =delete
ScheduleDAGInstrs * createMachineScheduler(MachineSchedContext *C) const override
Create an instance of ScheduleDAGInstrs to be run within the standard MachineScheduler pass for this ...
ScheduleDAGInstrs * createPostMachineScheduler(MachineSchedContext *C) const override
Similar to createMachineScheduler but used when postRA machine scheduling is enabled.
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
bool parseMachineFunctionInfo(const yaml::MachineFunctionInfo &, PerFunctionMIParsingState &PFS, SMDiagnostic &Error, SMRange &SourceRange) const override
Parse out the target's MachineFunctionInfo from the YAML reprsentation.
~X86TargetMachine() override
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
yaml::MachineFunctionInfo * createDefaultFuncInfoYAML() const override
Allocate and return a default initialized instance of the YAML representation for the MachineFunction...
X86TargetMachine(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)
Create an X86 target.
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
@ DynamicNoPIC
Definition CodeGen.h:25
@ X86
Windows x64, Windows Itanium (IA-64)
Definition MCAsmInfo.h:52
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
ScheduleDAGMILive * createSchedLive(MachineSchedContext *C)
Create the standard converging machine scheduler.
LLVM_ABI FunctionPass * createIndirectBrExpandPass()
void initializeX86LoadValueInjectionLoadHardeningLegacyPass(PassRegistry &)
FunctionPass * createX86LowerAMXIntrinsicsLegacyPass()
FunctionPass * createX86CompressEVEXLegacyPass()
FunctionPass * createX86FastTileConfigLegacyPass()
void initializeX86PartialReductionLegacyPass(PassRegistry &)
FunctionPass * createX86DomainReassignmentLegacyPass()
FunctionPass * createX86ExpandPseudoLegacyPass()
Returns an instance of the pseudo instruction expansion pass.
LLVM_ABI ModulePass * createJMCInstrumenterPass()
JMC instrument pass.
FunctionPass * createX86OptimizeLEAsLegacyPass()
void initializeCompressEVEXLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createGreedyRegisterAllocator()
Greedy register allocation pass - This pass implements a global register allocator for optimized buil...
void initializeX86PostLegalizerCombinerLegacyPass(PassRegistry &)
FunctionPass * createX86DynAllocaExpanderLegacyPass()
void initializeX86DomainReassignmentLegacyPass(PassRegistry &)
@ DwarfCFI
DWARF-like instruction based exceptions.
Definition CodeGen.h:55
FunctionPass * createX86TileConfigLegacyPass()
LLVM_ABI FunctionPass * createPseudoProbeInserter()
This pass inserts pseudo probe annotation for callsite profiling.
Target & getTheX86_32Target()
FunctionPass * createX86AvoidStoreForwardingBlocksLegacyPass()
void initializeX86LowerAMXIntrinsicsLegacyPassPass(PassRegistry &)
FunctionPass * createX86InsertX87WaitLegacyPass()
FunctionPass * createX86PartialReductionLegacyPass()
void initializeX86CmovConversionLegacyPass(PassRegistry &)
void initializeX86DynAllocaExpanderLegacyPass(PassRegistry &)
FunctionPass * createX86FixupSetCCLegacyPass()
LLVM_ABI std::unique_ptr< CSEConfigBase > getStandardCSEConfigForOpt(CodeGenOptLevel Level)
Definition CSEInfo.cpp:85
void initializeX86FastPreTileConfigLegacyPass(PassRegistry &)
FunctionPass * createX86SpeculativeExecutionSideEffectSuppressionLegacyPass()
LLVM_ABI char & EarlyIfConverterLegacyID
EarlyIfConverter - This pass performs if-conversion on SSA form by inserting cmov instructions.
FunctionPass * createX86LoadValueInjectionLoadHardeningLegacyPass()
FunctionPass * createX86PadShortFunctions()
Return a pass that pads short functions with NOOPs.
std::unique_ptr< ScheduleDAGMutation > createX86MacroFusionDAGMutation()
Note that you have to add: DAG.addMutation(createX86MacroFusionDAGMutation()); to X86TargetMachine::c...
LLVM_ABI void initializeMachineKCFILegacyPass(PassRegistry &)
LLVM_ABI char & MachineCombinerID
This pass performs instruction combining using trace metrics to estimate critical-path and resource d...
LLVM_ABI FunctionPass * createUnpackMachineBundlesLegacy(std::function< bool(const MachineFunction &)> Ftor)
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
void initializeX86FastTileConfigLegacyPass(PassRegistry &)
void initializeX86FixupVectorConstantsLegacyPass(PassRegistry &)
FunctionPass * createX86IndirectBranchTrackingLegacyPass()
void initializeX86AsmPrinterPass(PassRegistry &)
FunctionPass * createX86LowerTileCopyLegacyPass()
void initializeX86ExpandPseudoLegacyPass(PassRegistry &)
ScheduleDAGMI * createSchedPostRA(MachineSchedContext *C)
Create a generic scheduler with no vreg liveness or DAG mutation passes.
FunctionPass * createX86CmovConversionLegacyPass()
FunctionPass * createX86ArgumentStackSlotLegacyPass()
LLVM_ABI FunctionPass * createKCFIPass()
Lowers KCFI operand bundles for indirect calls.
Definition KCFI.cpp:69
void initializeX86SpeculativeExecutionSideEffectSuppressionLegacyPass(PassRegistry &)
void initializeX86FixupInstTuningLegacyPass(PassRegistry &)
LLVM_ABI char & LiveRangeShrinkID
LiveRangeShrink pass.
void initializeX86FlagsCopyLoweringLegacyPass(PassRegistry &)
FunctionPass * createX86PostLegalizerCombinerLegacy()
void initializeX86AvoidTrailingCallLegacyPassPass(PassRegistry &)
FunctionPass * createX86ISelDag(X86TargetMachine &TM, CodeGenOptLevel OptLevel)
This pass converts a legalized DAG into a X86-specific DAG, ready for instruction scheduling.
FunctionPass * createX86FixupLEAsLegacyPass()
FunctionPass * createX86CallFrameOptimizationLegacyPass()
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:82
void initializeX86CallFrameOptimizationLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createCFGuardLongjmpPass()
Creates CFGuard longjmp target identification pass.
FunctionPass * createX86FlagsCopyLoweringLegacyPass()
FunctionPass * createCleanupLocalDynamicTLSLegacyPass()
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
void initializeX86FixupBWInstLegacyPass(PassRegistry &)
void initializeX86LoadValueInjectionRetHardeningLegacyPass(PassRegistry &)
void initializeX86FPStackifierLegacyPass(PassRegistry &)
void initializeX86LowerTileCopyLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createInterleavedAccessPass()
InterleavedAccess Pass - This pass identifies and matches interleaved memory accesses to target speci...
void initializeX86SpeculativeLoadHardeningLegacyPass(PassRegistry &)
void initializeX86TileConfigLegacyPass(PassRegistry &)
LLVM_ABI void initializeGlobalISel(PassRegistry &)
Initialize all passes linked into the GlobalISel library.
void initializeFixupLEAsLegacyPass(PassRegistry &)
FunctionPass * createX86PreTileConfigLegacyPass()
FunctionPass * createX86InsertVZeroUpperLegacyPass()
FunctionPass * createX86SpeculativeLoadHardeningLegacyPass()
void initializeX86LowerAMXTypeLegacyPassPass(PassRegistry &)
FunctionPass * createX86ReturnThunksLegacyPass()
void initializeX86ArgumentStackSlotLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createCFGuardPass()
Insert Control Flow Guard checks on indirect function calls.
Definition CFGuard.cpp:316
FunctionPass * createX86FixupBWInstsLegacyPass()
FunctionPass * createX86PreLegalizerCombinerLegacy()
FunctionPass * createX86FPStackifierLegacyPass()
void initializeX86PreTileConfigLegacyPass(PassRegistry &)
FunctionPass * createX86SuppressAPXForRelocationLegacyPass()
FunctionPass * createX86FastPreTileConfigLegacyPass()
FunctionPass * createX86LoadValueInjectionRetHardeningLegacyPass()
FunctionPass * createX86LowerAMXTypeLegacyPass()
LLVM_ABI FunctionPass * createEHContGuardTargetsPass()
Creates Windows EH Continuation Guard target identification pass.
void initializeX86ReturnThunksLegacyPass(PassRegistry &)
void initializeX86PreLegalizerCombinerLegacyPass(PassRegistry &)
void initializeX86SuppressAPXForRelocationLegacyPass(PassRegistry &)
FunctionPass * createX86WinEHStateLegacyPass()
FunctionPass * createX86FixupVectorConstantsLegacyPass()
void initializeX86FixupSetCCLegacyPass(PassRegistry &)
void initializeWinEHStateLegacyPass(PassRegistry &)
FunctionPass * createX86IndirectThunksPass()
This pass creates the thunks for the retpoline feature.
LLVM_ABI FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
FunctionPass * createX86WinEHUnwindV2LegacyPass()
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:383
Target & getTheX86_64Target()
FunctionPass * createX86FixupInstTuningLegacyPass()
LLVM_ABI FunctionPass * createCFIInstrInserter()
Creates CFI Instruction Inserter pass.
void initializeX86ExecutionDomainFixPass(PassRegistry &)
LLVM_ABI FunctionPass * createBreakFalseDepsLegacyPass()
Creates Break False Dependencies pass.
void initializeX86DAGToDAGISelLegacyPass(PassRegistry &)
void initializeX86OptimizeLEAsLegacyPass(PassRegistry &)
void initializeX86AvoidSFBLegacyPass(PassRegistry &)
void initializeX86WinEHUnwindV2LegacyPass(PassRegistry &)
FunctionPass * createX86AvoidTrailingCallLegacyPass()
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
Definition Error.cpp:177
FunctionPass * createX86GlobalBaseRegLegacyPass()
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
static FuncInfoTy * create(BumpPtrAllocator &Allocator, const Function &F, const SubtargetTy *STI)
Factory function: default behavior is to call new using the supplied allocator.
MachineSchedContext provides enough context from the MachineScheduler pass for the target to instanti...
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Definition Alignment.h:106
RegisterTargetMachine - Helper template for registering a target machine implementation,...
Targets should override this in a way that mirrors the implementation of llvm::MachineFunctionInfo.