LLVM 22.0.0git
X86.h
Go to the documentation of this file.
1//===-- X86.h - Top-level interface for X86 representation ------*- 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 the entry points for global functions defined in the x86
10// target library, as used by the LLVM JIT.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_TARGET_X86_X86_H
15#define LLVM_LIB_TARGET_X86_X86_H
16
18#include "llvm/IR/Analysis.h"
19#include "llvm/IR/PassManager.h"
22
23namespace llvm {
24
25class FunctionPass;
27class PassRegistry;
29class X86Subtarget;
31
32/// This pass converts a legalized DAG into a X86-specific DAG, ready for
33/// instruction scheduling.
35
36/// This pass initializes a global base register for PIC on x86-32.
38
39/// This pass combines multiple accesses to local-dynamic TLS variables so that
40/// the TLS base address for the module is only fetched once per execution path
41/// through the function.
43
44/// This function returns a pass which converts floating-point register
45/// references and pseudo instructions into floating-point stack references and
46/// physical instructions.
48
49/// This pass inserts AVX vzeroupper instructions before each call to avoid
50/// transition penalty between functions encoded with AVX and SSE.
52
53/// This pass inserts ENDBR instructions before indirect jump/call
54/// destinations as part of CET IBT mechanism.
56
57/// Return a pass that pads short functions with NOOPs.
58/// This will prevent a stall when returning on the Atom.
60
61/// Return a pass that selectively replaces certain instructions (like add,
62/// sub, inc, dec, some shifts, and some multiplies) by equivalent LEA
63/// instructions, in order to eliminate execution delays in some processors.
65
66/// Return a pass that replaces equivalent slower instructions with faster
67/// ones.
69
70/// Return a pass that reduces the size of vector constant pool loads.
72
73/// Return a pass that removes redundant LEA instructions and redundant address
74/// recalculations.
76
77/// Return a pass that transforms setcc + movzx pairs into xor + setcc.
79
80/// Return a pass that avoids creating store forward block issues in the hardware.
82
83/// Return a pass that lowers EFLAGS copy pseudo instructions.
85
86/// Return a pass that expands DynAlloca pseudo-instructions.
88
89/// Return a pass that config the tile registers.
91
92/// Return a pass that preconfig the tile registers before fast reg allocation.
94
95/// Return a pass that config the tile registers after fast reg allocation.
97
98/// Return a pass that insert pseudo tile config instruction.
100
101/// Return a pass that lower the tile copy instruction.
103
104/// Return a pass that inserts int3 at the end of the function if it ends with a
105/// CALL instruction. The pass does the same for each funclet as well. This
106/// ensures that the open interval of function start and end PCs contains all
107/// return addresses for the benefit of the Windows x64 unwinder.
109 : public PassInfoMixin<X86AvoidTrailingCallPass> {
110public:
114 static bool isRequired() { return true; }
115};
116
118
119/// Return a pass that optimizes the code-size of x86 call sequences. This is
120/// done by replacing esp-relative movs with pushes.
121FunctionPass *createX86CallFrameOptimization();
122
123/// Return an IR pass that inserts EH registration stack objects and explicit
124/// EH state updates. This pass must run after EH preparation, which does
125/// Windows-specific but architecture-neutral preparation.
126FunctionPass *createX86WinEHStatePass();
127
128/// Return a Machine IR pass that expands X86-specific pseudo
129/// instructions into a sequence of actual instructions. This pass
130/// must run after prologue/epilogue insertion and before lowering
131/// the MachineInstr to MC.
132FunctionPass *createX86ExpandPseudoPass();
133
134/// This pass converts X86 cmov instructions into branch when profitable.
135FunctionPass *createX86CmovConverterPass();
136
137/// Return a Machine IR pass that selectively replaces
138/// certain byte and word instructions by equivalent 32 bit instructions,
139/// in order to eliminate partial register usage, false dependences on
140/// the upper portions of registers, and to save code size.
141FunctionPass *createX86FixupBWInsts();
142
143/// Return a Machine IR pass that reassigns instruction chains from one domain
144/// to another, when profitable.
146
147/// This pass compress instructions from EVEX space to legacy/VEX/EVEX space when
148/// possible in order to reduce code size or facilitate HW decoding.
150
151/// This pass creates the thunks for the retpoline feature.
153
154/// This pass replaces ret instructions with jmp's to __x86_return thunk.
156
157/// This pass ensures instructions featuring a memory operand
158/// have distinctive <LineNumber, Discriminator> (with respect to each other)
160
161/// This pass applies profiling information to insert cache prefetches.
163
164/// This pass insert wait instruction after X87 instructions which could raise
165/// fp exceptions when strict-fp enabled.
167
168/// This pass optimizes arithmetic based on knowledge that is only used by
169/// a reduction sequence and is therefore safe to reassociate in interesting
170/// ways.
171class X86PartialReductionPass : public PassInfoMixin<X86PartialReductionPass> {
172private:
173 const X86TargetMachine *TM;
174
175public:
178};
179
181
182/// // Analyzes and emits pseudos to support Win x64 Unwind V2.
184
185/// The pass transforms load/store <256 x i32> to AMX load/store intrinsics
186/// or split the data to two <128 x i32>.
187class X86LowerAMXTypePass : public PassInfoMixin<X86LowerAMXTypePass> {
188private:
189 const TargetMachine *TM;
190
191public:
192 X86LowerAMXTypePass(const TargetMachine *TM) : TM(TM) {}
194 static bool isRequired() { return true; }
195};
196
197FunctionPass *createX86LowerAMXTypeLegacyPass();
198
199/// The pass transforms amx intrinsics to scalar operation if the function has
200/// optnone attribute or it is O0.
202 : public PassInfoMixin<X86LowerAMXIntrinsicsPass> {
203private:
204 const TargetMachine *TM;
205
206public:
209 static bool isRequired() { return true; }
210};
211
213
214InstructionSelector *createX86InstructionSelector(const X86TargetMachine &TM,
215 const X86Subtarget &,
216 const X86RegisterBankInfo &);
217
224
261
262namespace X86AS {
263enum : unsigned {
264 GS = 256,
265 FS = 257,
266 SS = 258,
269 PTR64 = 272
270};
271} // End X86AS namespace
272
273} // End llvm namespace
274
275#endif
This header defines various interfaces for pass management in LLVM.
#define F(x, y, z)
Definition MD5.cpp:55
FunctionAnalysisManager FAM
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
Primary interface to the complete machine description for the target machine.
static bool isRequired()
Definition X86.h:114
PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
PreservedAnalyses run(Function &F, FunctionAnalysisManager &FAM)
X86LowerAMXIntrinsicsPass(const TargetMachine *TM)
Definition X86.h:207
static bool isRequired()
Definition X86.h:209
X86LowerAMXTypePass(const TargetMachine *TM)
Definition X86.h:192
PreservedAnalyses run(Function &F, FunctionAnalysisManager &FAM)
static bool isRequired()
Definition X86.h:194
PreservedAnalyses run(Function &F, FunctionAnalysisManager &FAM)
X86PartialReductionPass(const X86TargetMachine *TM)
Definition X86.h:176
This class provides the information for the target register banks.
Pass manager infrastructure for declaring and invalidating analyses.
@ PTR32_UPTR
Definition X86.h:268
@ PTR64
Definition X86.h:269
@ PTR32_SPTR
Definition X86.h:267
This is an optimization pass for GlobalISel generic memory operations.
FunctionPass * createX86FloatingPointStackifierPass()
This function returns a pass which converts floating-point register references and pseudo instruction...
FunctionPass * createX86WinEHStatePass()
Return an IR pass that inserts EH registration stack objects and explicit EH state updates.
void initializeX86TileConfigPass(PassRegistry &)
FunctionPass * createX86LowerAMXIntrinsicsLegacyPass()
void initializeX86PartialReductionLegacyPass(PassRegistry &)
FunctionPass * createX86SuppressAPXForRelocationPass()
void initializeX86CallFrameOptimizationPass(PassRegistry &)
void initializeFixupBWInstPassPass(PassRegistry &)
void initializeX86LoadValueInjectionRetHardeningPassPass(PassRegistry &)
FunctionPass * createX86LoadValueInjectionLoadHardeningPass()
FunctionPass * createX86IssueVZeroUpperPass()
This pass inserts AVX vzeroupper instructions before each call to avoid transition penalty between fu...
void initializeX86ArgumentStackSlotPassPass(PassRegistry &)
void initializeX86SpeculativeLoadHardeningPassPass(PassRegistry &)
void initializeWinEHStatePassPass(PassRegistry &)
FunctionPass * createX86InsertPrefetchPass()
This pass applies profiling information to insert cache prefetches.
FunctionPass * createX86GlobalBaseRegPass()
This pass initializes a global base register for PIC on x86-32.
FunctionPass * createX86FixupBWInsts()
Return a Machine IR pass that selectively replaces certain byte and word instructions by equivalent 3...
void initializeX86LowerAMXIntrinsicsLegacyPassPass(PassRegistry &)
FunctionPass * createX86DomainReassignmentPass()
Return a Machine IR pass that reassigns instruction chains from one domain to another,...
FunctionPass * createX86LoadValueInjectionRetHardeningPass()
FunctionPass * createX86SpeculativeExecutionSideEffectSuppression()
FunctionPass * createX86PartialReductionLegacyPass()
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
FunctionPass * createCleanupLocalDynamicTLSPass()
This pass combines multiple accesses to local-dynamic TLS variables so that the TLS base address for ...
FunctionPass * createX86FlagsCopyLoweringPass()
Return a pass that lowers EFLAGS copy pseudo instructions.
void initializeX86FastTileConfigPass(PassRegistry &)
FunctionPass * createX86CompressEVEXPass()
This pass compress instructions from EVEX space to legacy/VEX/EVEX space when possible in order to re...
void initializeX86ExpandPseudoPass(PassRegistry &)
FunctionPass * createX86ArgumentStackSlotPass()
void initializeX86PreTileConfigPass(PassRegistry &)
FunctionPass * createX86CmovConverterPass()
This pass converts X86 cmov instructions into branch when profitable.
FunctionPass * createX86TileConfigPass()
Return a pass that config the tile registers.
FunctionPass * createX86PadShortFunctions()
Return a pass that pads short functions with NOOPs.
void initializeX86DomainReassignmentPass(PassRegistry &)
void initializeX86LoadValueInjectionLoadHardeningPassPass(PassRegistry &)
void initializeX86SuppressAPXForRelocationPassPass(PassRegistry &)
FunctionPass * createX86FastPreTileConfigPass()
Return a pass that preconfig the tile registers before fast reg allocation.
void initializeX86AvoidSFBPassPass(PassRegistry &)
FunctionPass * createX86LowerTileCopyPass()
Return a pass that lower the tile copy instruction.
void initializeX86FastPreTileConfigPass(PassRegistry &)
FunctionPass * createX86SpeculativeLoadHardeningPass()
FunctionPass * createX86FixupSetCC()
Return a pass that transforms setcc + movzx pairs into xor + setcc.
FunctionPass * createX86IndirectBranchTrackingPass()
This pass inserts ENDBR instructions before indirect jump/call destinations as part of CET IBT mechan...
void initializeX86AsmPrinterPass(PassRegistry &)
FunctionPass * createX86InsertX87waitPass()
This pass insert wait instruction after X87 instructions which could raise fp exceptions when strict-...
void initializeX86FixupSetCCPassPass(PassRegistry &)
FunctionPass * createX86ExpandPseudoPass()
Return a Machine IR pass that expands X86-specific pseudo instructions into a sequence of actual inst...
FunctionPass * createX86FixupInstTuning()
Return a pass that replaces equivalent slower instructions with faster ones.
void initializeX86AvoidTrailingCallLegacyPassPass(PassRegistry &)
void initializeX86WinEHUnwindV2Pass(PassRegistry &)
FunctionPass * createX86ISelDag(X86TargetMachine &TM, CodeGenOptLevel OptLevel)
This pass converts a legalized DAG into a X86-specific DAG, ready for instruction scheduling.
void initializeX86LowerTileCopyPass(PassRegistry &)
void initializeX86OptimizeLEAPassPass(PassRegistry &)
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:82
FunctionPass * createX86FastTileConfigPass()
Return a pass that config the tile registers after fast reg allocation.
FunctionPass * createX86FixupLEAs()
Return a pass that selectively replaces certain instructions (like add, sub, inc, dec,...
void initializeX86FixupInstTuningPassPass(PassRegistry &)
void initializeX86LowerAMXTypeLegacyPassPass(PassRegistry &)
void initializeX86CmovConverterPassPass(PassRegistry &)
FunctionPass * createX86CallFrameOptimization()
Return a pass that optimizes the code-size of x86 call sequences.
void initializeX86FlagsCopyLoweringPassPass(PassRegistry &)
void initializeFPSPass(PassRegistry &)
FunctionPass * createX86WinEHUnwindV2Pass()
// Analyzes and emits pseudos to support Win x64 Unwind V2.
FunctionPass * createX86LowerAMXTypeLegacyPass()
FunctionPass * createX86DynAllocaExpander()
Return a pass that expands DynAlloca pseudo-instructions.
void initializeX86SpeculativeExecutionSideEffectSuppressionPass(PassRegistry &)
void initializeCompressEVEXPassPass(PassRegistry &)
FunctionPass * createX86OptimizeLEAs()
Return a pass that removes redundant LEA instructions and redundant address recalculations.
void initializeX86FixupVectorConstantsPassPass(PassRegistry &)
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
FunctionPass * createX86IndirectThunksPass()
This pass creates the thunks for the retpoline feature.
void initializeX86DynAllocaExpanderPass(PassRegistry &)
FunctionPass * createX86FixupVectorConstants()
Return a pass that reduces the size of vector constant pool loads.
void initializeX86ExecutionDomainFixPass(PassRegistry &)
FunctionPass * createX86PreTileConfigPass()
Return a pass that insert pseudo tile config instruction.
FunctionPass * createX86ReturnThunksPass()
This pass replaces ret instructions with jmp's to __x86_return thunk.
FunctionPass * createX86AvoidStoreForwardingBlocks()
Return a pass that avoids creating store forward block issues in the hardware.
void initializeX86ReturnThunksPass(PassRegistry &)
void initializeX86DAGToDAGISelLegacyPass(PassRegistry &)
FunctionPass * createX86DiscriminateMemOpsPass()
This pass ensures instructions featuring a memory operand have distinctive <LineNumber,...
void initializeFixupLEAPassPass(PassRegistry &)
FunctionPass * createX86AvoidTrailingCallLegacyPass()
InstructionSelector * createX86InstructionSelector(const X86TargetMachine &TM, const X86Subtarget &, const X86RegisterBankInfo &)
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition PassManager.h:70