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 | |
17 | #include "llvm/Support/CodeGen.h" |
18 | |
19 | namespace llvm { |
20 | |
21 | class FunctionPass; |
22 | class InstructionSelector; |
23 | class PassRegistry; |
24 | class X86RegisterBankInfo; |
25 | class X86Subtarget; |
26 | class X86TargetMachine; |
27 | |
28 | /// This pass converts a legalized DAG into a X86-specific DAG, ready for |
29 | /// instruction scheduling. |
30 | FunctionPass *createX86ISelDag(X86TargetMachine &TM, CodeGenOptLevel OptLevel); |
31 | |
32 | /// This pass initializes a global base register for PIC on x86-32. |
33 | FunctionPass *createX86GlobalBaseRegPass(); |
34 | |
35 | /// This pass combines multiple accesses to local-dynamic TLS variables so that |
36 | /// the TLS base address for the module is only fetched once per execution path |
37 | /// through the function. |
38 | FunctionPass *createCleanupLocalDynamicTLSPass(); |
39 | |
40 | /// This function returns a pass which converts floating-point register |
41 | /// references and pseudo instructions into floating-point stack references and |
42 | /// physical instructions. |
43 | FunctionPass *createX86FloatingPointStackifierPass(); |
44 | |
45 | /// This pass inserts AVX vzeroupper instructions before each call to avoid |
46 | /// transition penalty between functions encoded with AVX and SSE. |
47 | FunctionPass *createX86IssueVZeroUpperPass(); |
48 | |
49 | /// This pass inserts ENDBR instructions before indirect jump/call |
50 | /// destinations as part of CET IBT mechanism. |
51 | FunctionPass *createX86IndirectBranchTrackingPass(); |
52 | |
53 | /// Return a pass that pads short functions with NOOPs. |
54 | /// This will prevent a stall when returning on the Atom. |
55 | FunctionPass *createX86PadShortFunctions(); |
56 | |
57 | /// Return a pass that selectively replaces certain instructions (like add, |
58 | /// sub, inc, dec, some shifts, and some multiplies) by equivalent LEA |
59 | /// instructions, in order to eliminate execution delays in some processors. |
60 | FunctionPass *createX86FixupLEAs(); |
61 | |
62 | /// Return a pass that replaces equivalent slower instructions with faster |
63 | /// ones. |
64 | FunctionPass *createX86FixupInstTuning(); |
65 | |
66 | /// Return a pass that reduces the size of vector constant pool loads. |
67 | FunctionPass *createX86FixupVectorConstants(); |
68 | |
69 | /// Return a pass that removes redundant LEA instructions and redundant address |
70 | /// recalculations. |
71 | FunctionPass *createX86OptimizeLEAs(); |
72 | |
73 | /// Return a pass that transforms setcc + movzx pairs into xor + setcc. |
74 | FunctionPass *createX86FixupSetCC(); |
75 | |
76 | /// Return a pass that transform inline buffer security check into seperate bb |
77 | FunctionPass *createX86WinFixupBufferSecurityCheckPass(); |
78 | |
79 | /// Return a pass that avoids creating store forward block issues in the hardware. |
80 | FunctionPass *createX86AvoidStoreForwardingBlocks(); |
81 | |
82 | /// Return a pass that lowers EFLAGS copy pseudo instructions. |
83 | FunctionPass *createX86FlagsCopyLoweringPass(); |
84 | |
85 | /// Return a pass that expands DynAlloca pseudo-instructions. |
86 | FunctionPass *createX86DynAllocaExpander(); |
87 | |
88 | /// Return a pass that config the tile registers. |
89 | FunctionPass *createX86TileConfigPass(); |
90 | |
91 | /// Return a pass that preconfig the tile registers before fast reg allocation. |
92 | FunctionPass *createX86FastPreTileConfigPass(); |
93 | |
94 | /// Return a pass that config the tile registers after fast reg allocation. |
95 | FunctionPass *createX86FastTileConfigPass(); |
96 | |
97 | /// Return a pass that insert pseudo tile config instruction. |
98 | FunctionPass *createX86PreTileConfigPass(); |
99 | |
100 | /// Return a pass that lower the tile copy instruction. |
101 | FunctionPass *createX86LowerTileCopyPass(); |
102 | |
103 | /// Return a pass that inserts int3 at the end of the function if it ends with a |
104 | /// CALL instruction. The pass does the same for each funclet as well. This |
105 | /// ensures that the open interval of function start and end PCs contains all |
106 | /// return addresses for the benefit of the Windows x64 unwinder. |
107 | FunctionPass *createX86AvoidTrailingCallPass(); |
108 | |
109 | /// Return a pass that optimizes the code-size of x86 call sequences. This is |
110 | /// done by replacing esp-relative movs with pushes. |
111 | FunctionPass *createX86CallFrameOptimization(); |
112 | |
113 | /// Return an IR pass that inserts EH registration stack objects and explicit |
114 | /// EH state updates. This pass must run after EH preparation, which does |
115 | /// Windows-specific but architecture-neutral preparation. |
116 | FunctionPass *createX86WinEHStatePass(); |
117 | |
118 | /// Return a Machine IR pass that expands X86-specific pseudo |
119 | /// instructions into a sequence of actual instructions. This pass |
120 | /// must run after prologue/epilogue insertion and before lowering |
121 | /// the MachineInstr to MC. |
122 | FunctionPass *createX86ExpandPseudoPass(); |
123 | |
124 | /// This pass converts X86 cmov instructions into branch when profitable. |
125 | FunctionPass *createX86CmovConverterPass(); |
126 | |
127 | /// Return a Machine IR pass that selectively replaces |
128 | /// certain byte and word instructions by equivalent 32 bit instructions, |
129 | /// in order to eliminate partial register usage, false dependences on |
130 | /// the upper portions of registers, and to save code size. |
131 | FunctionPass *createX86FixupBWInsts(); |
132 | |
133 | /// Return a Machine IR pass that reassigns instruction chains from one domain |
134 | /// to another, when profitable. |
135 | FunctionPass *createX86DomainReassignmentPass(); |
136 | |
137 | /// This pass compress instructions from EVEX space to legacy/VEX/EVEX space when |
138 | /// possible in order to reduce code size or facilitate HW decoding. |
139 | FunctionPass *createX86CompressEVEXPass(); |
140 | |
141 | /// This pass creates the thunks for the retpoline feature. |
142 | FunctionPass *createX86IndirectThunksPass(); |
143 | |
144 | /// This pass replaces ret instructions with jmp's to __x86_return thunk. |
145 | FunctionPass *createX86ReturnThunksPass(); |
146 | |
147 | /// This pass ensures instructions featuring a memory operand |
148 | /// have distinctive <LineNumber, Discriminator> (with respect to eachother) |
149 | FunctionPass *createX86DiscriminateMemOpsPass(); |
150 | |
151 | /// This pass applies profiling information to insert cache prefetches. |
152 | FunctionPass *createX86InsertPrefetchPass(); |
153 | |
154 | /// This pass insert wait instruction after X87 instructions which could raise |
155 | /// fp exceptions when strict-fp enabled. |
156 | FunctionPass *createX86InsertX87waitPass(); |
157 | |
158 | /// This pass optimizes arithmetic based on knowledge that is only used by |
159 | /// a reduction sequence and is therefore safe to reassociate in interesting |
160 | /// ways. |
161 | FunctionPass *createX86PartialReductionPass(); |
162 | |
163 | InstructionSelector *createX86InstructionSelector(const X86TargetMachine &TM, |
164 | const X86Subtarget &, |
165 | const X86RegisterBankInfo &); |
166 | |
167 | FunctionPass *createX86LoadValueInjectionLoadHardeningPass(); |
168 | FunctionPass *createX86LoadValueInjectionRetHardeningPass(); |
169 | FunctionPass *createX86SpeculativeLoadHardeningPass(); |
170 | FunctionPass *createX86SpeculativeExecutionSideEffectSuppression(); |
171 | FunctionPass *createX86ArgumentStackSlotPass(); |
172 | |
173 | void initializeCompressEVEXPassPass(PassRegistry &); |
174 | void initializeFPSPass(PassRegistry &); |
175 | void initializeFixupBWInstPassPass(PassRegistry &); |
176 | void initializeFixupLEAPassPass(PassRegistry &); |
177 | void initializeX86ArgumentStackSlotPassPass(PassRegistry &); |
178 | void initializeX86FixupInstTuningPassPass(PassRegistry &); |
179 | void initializeX86FixupVectorConstantsPassPass(PassRegistry &); |
180 | void initializeWinEHStatePassPass(PassRegistry &); |
181 | void initializeX86AvoidSFBPassPass(PassRegistry &); |
182 | void initializeX86AvoidTrailingCallPassPass(PassRegistry &); |
183 | void initializeX86CallFrameOptimizationPass(PassRegistry &); |
184 | void initializeX86CmovConverterPassPass(PassRegistry &); |
185 | void initializeX86DAGToDAGISelLegacyPass(PassRegistry &); |
186 | void initializeX86DomainReassignmentPass(PassRegistry &); |
187 | void initializeX86ExecutionDomainFixPass(PassRegistry &); |
188 | void initializeX86ExpandPseudoPass(PassRegistry &); |
189 | void initializeX86FastPreTileConfigPass(PassRegistry &); |
190 | void initializeX86FastTileConfigPass(PassRegistry &); |
191 | void initializeX86FixupSetCCPassPass(PassRegistry &); |
192 | void initializeX86WinFixupBufferSecurityCheckPassPass(PassRegistry &); |
193 | void initializeX86FlagsCopyLoweringPassPass(PassRegistry &); |
194 | void initializeX86LoadValueInjectionLoadHardeningPassPass(PassRegistry &); |
195 | void initializeX86LoadValueInjectionRetHardeningPassPass(PassRegistry &); |
196 | void initializeX86LowerAMXIntrinsicsLegacyPassPass(PassRegistry &); |
197 | void initializeX86LowerAMXTypeLegacyPassPass(PassRegistry &); |
198 | void initializeX86LowerTileCopyPass(PassRegistry &); |
199 | void initializeX86OptimizeLEAPassPass(PassRegistry &); |
200 | void initializeX86PartialReductionPass(PassRegistry &); |
201 | void initializeX86PreTileConfigPass(PassRegistry &); |
202 | void initializeX86ReturnThunksPass(PassRegistry &); |
203 | void initializeX86SpeculativeExecutionSideEffectSuppressionPass(PassRegistry &); |
204 | void initializeX86SpeculativeLoadHardeningPassPass(PassRegistry &); |
205 | void initializeX86TileConfigPass(PassRegistry &); |
206 | |
207 | namespace X86AS { |
208 | enum : unsigned { |
209 | GS = 256, |
210 | FS = 257, |
211 | SS = 258, |
212 | PTR32_SPTR = 270, |
213 | PTR32_UPTR = 271, |
214 | PTR64 = 272 |
215 | }; |
216 | } // End X86AS namespace |
217 | |
218 | } // End llvm namespace |
219 | |
220 | #endif |
221 | |