LLVM 20.0.0git
X86Subtarget.h
Go to the documentation of this file.
1//===-- X86Subtarget.h - Define Subtarget for the X86 ----------*- 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 declares the X86 specific subclass of TargetSubtargetInfo.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_LIB_TARGET_X86_X86SUBTARGET_H
14#define LLVM_LIB_TARGET_X86_X86SUBTARGET_H
15
16#include "X86FrameLowering.h"
17#include "X86ISelLowering.h"
18#include "X86InstrInfo.h"
19#include "X86SelectionDAGInfo.h"
22#include "llvm/IR/CallingConv.h"
24#include <climits>
25#include <memory>
26
27#define GET_SUBTARGETINFO_HEADER
28#include "X86GenSubtargetInfo.inc"
29
30namespace llvm {
31
32class CallLowering;
33class GlobalValue;
34class InstructionSelector;
35class LegalizerInfo;
36class RegisterBankInfo;
37class StringRef;
38class TargetMachine;
39
40/// The X86 backend supports a number of different styles of PIC.
41///
42namespace PICStyles {
43
44enum class Style {
45 StubPIC, // Used on i386-darwin in pic mode.
46 GOT, // Used on 32 bit elf on when in pic mode.
47 RIPRel, // Used on X86-64 when in pic mode.
48 None // Set when not in pic mode.
49};
50
51} // end namespace PICStyles
52
53class X86Subtarget final : public X86GenSubtargetInfo {
54 enum X86SSEEnum {
55 NoSSE, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, AVX, AVX2, AVX512
56 };
57
58 /// Which PIC style to use
59 PICStyles::Style PICStyle;
60
61 const TargetMachine &TM;
62
63 /// SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, or none supported.
64 X86SSEEnum X86SSELevel = NoSSE;
65
66#define GET_SUBTARGETINFO_MACRO(ATTRIBUTE, DEFAULT, GETTER) \
67 bool ATTRIBUTE = DEFAULT;
68#include "X86GenSubtargetInfo.inc"
69 /// The minimum alignment known to hold of the stack frame on
70 /// entry to the function and which must be maintained by every function.
71 Align stackAlignment = Align(4);
72
73 Align TileConfigAlignment = Align(4);
74
75 /// Max. memset / memcpy size that is turned into rep/movs, rep/stos ops.
76 ///
77 // FIXME: this is a known good value for Yonah. How about others?
78 unsigned MaxInlineSizeThreshold = 128;
79
80 /// What processor and OS we're targeting.
81 Triple TargetTriple;
82
83 /// GlobalISel related APIs.
84 std::unique_ptr<CallLowering> CallLoweringInfo;
85 std::unique_ptr<LegalizerInfo> Legalizer;
86 std::unique_ptr<RegisterBankInfo> RegBankInfo;
87 std::unique_ptr<InstructionSelector> InstSelector;
88
89 /// Override the stack alignment.
90 MaybeAlign StackAlignOverride;
91
92 /// Preferred vector width from function attribute.
93 unsigned PreferVectorWidthOverride;
94
95 /// Resolved preferred vector width from function attribute and subtarget
96 /// features.
97 unsigned PreferVectorWidth = UINT32_MAX;
98
99 /// Required vector width from function attribute.
100 unsigned RequiredVectorWidth;
101
102 X86SelectionDAGInfo TSInfo;
103 // Ordering here is important. X86InstrInfo initializes X86RegisterInfo which
104 // X86TargetLowering needs.
105 X86InstrInfo InstrInfo;
106 X86TargetLowering TLInfo;
107 X86FrameLowering FrameLowering;
108
109public:
110 /// This constructor initializes the data members to match that
111 /// of the specified triple.
112 ///
113 X86Subtarget(const Triple &TT, StringRef CPU, StringRef TuneCPU, StringRef FS,
114 const X86TargetMachine &TM, MaybeAlign StackAlignOverride,
115 unsigned PreferVectorWidthOverride,
116 unsigned RequiredVectorWidth);
117
118 const X86TargetLowering *getTargetLowering() const override {
119 return &TLInfo;
120 }
121
122 const X86InstrInfo *getInstrInfo() const override { return &InstrInfo; }
123
124 const X86FrameLowering *getFrameLowering() const override {
125 return &FrameLowering;
126 }
127
128 const X86SelectionDAGInfo *getSelectionDAGInfo() const override {
129 return &TSInfo;
130 }
131
132 const X86RegisterInfo *getRegisterInfo() const override {
133 return &getInstrInfo()->getRegisterInfo();
134 }
135
136 unsigned getTileConfigSize() const { return 64; }
137 Align getTileConfigAlignment() const { return TileConfigAlignment; }
138
139 /// Returns the minimum alignment known to hold of the
140 /// stack frame on entry to the function and which must be maintained by every
141 /// function for this subtarget.
142 Align getStackAlignment() const { return stackAlignment; }
143
144 /// Returns the maximum memset / memcpy size
145 /// that still makes it profitable to inline the call.
146 unsigned getMaxInlineSizeThreshold() const { return MaxInlineSizeThreshold; }
147
148 /// ParseSubtargetFeatures - Parses features string setting specified
149 /// subtarget options. Definition of function is auto generated by tblgen.
151
152 /// Methods used by Global ISel
153 const CallLowering *getCallLowering() const override;
155 const LegalizerInfo *getLegalizerInfo() const override;
156 const RegisterBankInfo *getRegBankInfo() const override;
157
158private:
159 /// Initialize the full set of dependencies so we can use an initializer
160 /// list for X86Subtarget.
161 X86Subtarget &initializeSubtargetDependencies(StringRef CPU,
162 StringRef TuneCPU,
163 StringRef FS);
164 void initSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
165
166public:
167
168#define GET_SUBTARGETINFO_MACRO(ATTRIBUTE, DEFAULT, GETTER) \
169 bool GETTER() const { return ATTRIBUTE; }
170#include "X86GenSubtargetInfo.inc"
171
172 /// Is this x86_64 with the ILP32 programming model (x32 ABI)?
173 bool isTarget64BitILP32() const {
174 return Is64Bit && (TargetTriple.isX32() || TargetTriple.isOSNaCl());
175 }
176
177 /// Is this x86_64 with the LP64 programming model (standard AMD64, no x32)?
178 bool isTarget64BitLP64() const {
179 return Is64Bit && (!TargetTriple.isX32() && !TargetTriple.isOSNaCl());
180 }
181
182 PICStyles::Style getPICStyle() const { return PICStyle; }
183 void setPICStyle(PICStyles::Style Style) { PICStyle = Style; }
184
185 bool canUseCMPXCHG8B() const { return hasCX8(); }
186 bool canUseCMPXCHG16B() const {
187 // CX16 is just the CPUID bit, instruction requires 64-bit mode too.
188 return hasCX16() && is64Bit();
189 }
190 // SSE codegen depends on cmovs, and all SSE1+ processors support them.
191 // All 64-bit processors support cmov.
192 bool canUseCMOV() const { return hasCMOV() || hasSSE1() || is64Bit(); }
193 bool hasSSE1() const { return X86SSELevel >= SSE1; }
194 bool hasSSE2() const { return X86SSELevel >= SSE2; }
195 bool hasSSE3() const { return X86SSELevel >= SSE3; }
196 bool hasSSSE3() const { return X86SSELevel >= SSSE3; }
197 bool hasSSE41() const { return X86SSELevel >= SSE41; }
198 bool hasSSE42() const { return X86SSELevel >= SSE42; }
199 bool hasAVX() const { return X86SSELevel >= AVX; }
200 bool hasAVX2() const { return X86SSELevel >= AVX2; }
201 bool hasAVX512() const { return X86SSELevel >= AVX512; }
202 bool hasInt256() const { return hasAVX2(); }
203 bool hasAnyFMA() const { return hasFMA() || hasFMA4(); }
204 bool hasPrefetchW() const {
205 // The PREFETCHW instruction was added with 3DNow but later CPUs gave it
206 // its own CPUID bit as part of deprecating 3DNow.
207 return hasPRFCHW();
208 }
209 bool hasSSEPrefetch() const {
210 // We also implicitly enable these when we have a write prefix supporting
211 // cache level OR if we have prfchw.
212 return hasSSE1() || hasPRFCHW() || hasPREFETCHI();
213 }
214 bool canUseLAHFSAHF() const { return hasLAHFSAHF64() || !is64Bit(); }
215 // These are generic getters that OR together all of the thunk types
216 // supported by the subtarget. Therefore useIndirectThunk*() will return true
217 // if any respective thunk feature is enabled.
219 return useRetpolineIndirectCalls() || useLVIControlFlowIntegrity();
220 }
222 return useRetpolineIndirectBranches() || useLVIControlFlowIntegrity();
223 }
224
225 unsigned getPreferVectorWidth() const { return PreferVectorWidth; }
226 unsigned getRequiredVectorWidth() const { return RequiredVectorWidth; }
227
228 // Helper functions to determine when we should allow widening to 512-bit
229 // during codegen.
230 // TODO: Currently we're always allowing widening on CPUs without VLX,
231 // because for many cases we don't have a better option.
232 bool canExtendTo512DQ() const {
233 return hasAVX512() && hasEVEX512() &&
234 (!hasVLX() || getPreferVectorWidth() >= 512);
235 }
236 bool canExtendTo512BW() const {
237 return hasBWI() && canExtendTo512DQ();
238 }
239
240 bool hasNoDomainDelay() const { return NoDomainDelay; }
241 bool hasNoDomainDelayMov() const {
242 return hasNoDomainDelay() || NoDomainDelayMov;
243 }
245 return hasNoDomainDelay() || NoDomainDelayBlend;
246 }
248 return hasNoDomainDelay() || NoDomainDelayShuffle;
249 }
250
251 // If there are no 512-bit vectors and we prefer not to use 512-bit registers,
252 // disable them in the legalizer.
253 bool useAVX512Regs() const {
254 return hasAVX512() && hasEVEX512() &&
255 (canExtendTo512DQ() || RequiredVectorWidth > 256);
256 }
257
259 return getPreferVectorWidth() >= 256 || AllowLight256Bit;
260 }
261
262 bool useBWIRegs() const {
263 return hasBWI() && useAVX512Regs();
264 }
265
266 bool isXRaySupported() const override { return is64Bit(); }
267
268 /// Use clflush if we have SSE2 or we're on x86-64 (even if we asked for
269 /// no-sse2). There isn't any reason to disable it if the target processor
270 /// supports it.
271 bool hasCLFLUSH() const { return hasSSE2() || is64Bit(); }
272
273 /// Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
274 /// no-sse2). There isn't any reason to disable it if the target processor
275 /// supports it.
276 bool hasMFence() const { return hasSSE2() || is64Bit(); }
277
278 const Triple &getTargetTriple() const { return TargetTriple; }
279
280 bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); }
281 bool isTargetFreeBSD() const { return TargetTriple.isOSFreeBSD(); }
282 bool isTargetDragonFly() const { return TargetTriple.isOSDragonFly(); }
283 bool isTargetSolaris() const { return TargetTriple.isOSSolaris(); }
284 bool isTargetPS() const { return TargetTriple.isPS(); }
285
286 bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
287 bool isTargetCOFF() const { return TargetTriple.isOSBinFormatCOFF(); }
288 bool isTargetMachO() const { return TargetTriple.isOSBinFormatMachO(); }
289
290 bool isTargetLinux() const { return TargetTriple.isOSLinux(); }
291 bool isTargetKFreeBSD() const { return TargetTriple.isOSKFreeBSD(); }
292 bool isTargetGlibc() const { return TargetTriple.isOSGlibc(); }
293 bool isTargetAndroid() const { return TargetTriple.isAndroid(); }
294 bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
295 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
296 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
297 bool isTargetMCU() const { return TargetTriple.isOSIAMCU(); }
298 bool isTargetFuchsia() const { return TargetTriple.isOSFuchsia(); }
299
300 bool isTargetWindowsMSVC() const {
301 return TargetTriple.isWindowsMSVCEnvironment();
302 }
303
305 return TargetTriple.isWindowsCoreCLREnvironment();
306 }
307
309 return TargetTriple.isWindowsCygwinEnvironment();
310 }
311
312 bool isTargetWindowsGNU() const {
313 return TargetTriple.isWindowsGNUEnvironment();
314 }
315
317 return TargetTriple.isWindowsItaniumEnvironment();
318 }
319
320 bool isTargetCygMing() const { return TargetTriple.isOSCygMing(); }
321
322 bool isOSWindows() const { return TargetTriple.isOSWindows(); }
323
324 bool isTargetWin64() const { return Is64Bit && isOSWindows(); }
325
326 bool isTargetWin32() const { return !Is64Bit && isOSWindows(); }
327
328 bool isPICStyleGOT() const { return PICStyle == PICStyles::Style::GOT; }
329 bool isPICStyleRIPRel() const { return PICStyle == PICStyles::Style::RIPRel; }
330
331 bool isPICStyleStubPIC() const {
332 return PICStyle == PICStyles::Style::StubPIC;
333 }
334
335 bool isPositionIndependent() const;
336
338 switch (CC) {
339 // On Win64, all these conventions just use the default convention.
340 case CallingConv::C:
350 return isTargetWin64();
351 // This convention allows using the Win64 convention on other targets.
353 return true;
354 // This convention allows using the SysV convention on Windows targets.
356 return false;
357 // Otherwise, who knows what this is.
358 default:
359 return false;
360 }
361 }
362
363 /// Classify a global variable reference for the current subtarget according
364 /// to how we should reference it in a non-pcrel context.
365 unsigned char classifyLocalReference(const GlobalValue *GV) const;
366
367 unsigned char classifyGlobalReference(const GlobalValue *GV,
368 const Module &M) const;
369 unsigned char classifyGlobalReference(const GlobalValue *GV) const;
370
371 /// Classify a global function reference for the current subtarget.
372 unsigned char classifyGlobalFunctionReference(const GlobalValue *GV,
373 const Module &M) const;
374 unsigned char
375 classifyGlobalFunctionReference(const GlobalValue *GV) const override;
376
377 /// Classify a blockaddress reference for the current subtarget according to
378 /// how we should reference it in a non-pcrel context.
379 unsigned char classifyBlockAddressReference() const;
380
381 /// Return true if the subtarget allows calls to immediate address.
382 bool isLegalToCallImmediateAddr() const;
383
384 /// Return whether FrameLowering should always set the "extended frame
385 /// present" bit in FP, or set it based on a symbol in the runtime.
387 // Older OS versions (particularly system unwinders) are confused by the
388 // Swift extended frame, so when building code that might be run on them we
389 // must dynamically query the concurrency library to determine whether
390 // extended frames should be flagged as present.
391 const Triple &TT = getTargetTriple();
392
393 unsigned Major = TT.getOSVersion().getMajor();
394 switch(TT.getOS()) {
395 default:
396 return false;
397 case Triple::IOS:
398 case Triple::TvOS:
399 return Major < 15;
400 case Triple::WatchOS:
401 return Major < 8;
402 case Triple::MacOSX:
403 case Triple::Darwin:
404 return Major < 12;
405 }
406 }
407
408 /// If we are using indirect thunks, we need to expand indirectbr to avoid it
409 /// lowering to an actual indirect jump.
410 bool enableIndirectBrExpand() const override {
412 }
413
414 /// Enable the MachineScheduler pass for all X86 subtargets.
415 bool enableMachineScheduler() const override { return true; }
416
417 bool enableEarlyIfConversion() const override;
418
419 void getPostRAMutations(std::vector<std::unique_ptr<ScheduleDAGMutation>>
420 &Mutations) const override;
421
422 AntiDepBreakMode getAntiDepBreakMode() const override {
423 return TargetSubtargetInfo::ANTIDEP_CRITICAL;
424 }
425};
426
427} // end namespace llvm
428
429#endif // LLVM_LIB_TARGET_X86_X86SUBTARGET_H
Interface for Targets to specify which operations they can successfully select and how the others sho...
const char LLVMTargetMachineRef TM
static bool is64Bit(const char *name)
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
Holds all the information related to register banks.
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:77
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
bool isOSDragonFly() const
Definition: Triple.h:594
bool isOSNaCl() const
Tests whether the OS is NaCl (Native Client)
Definition: Triple.h:675
bool isOSCygMing() const
Tests for either Cygwin or MinGW OS.
Definition: Triple.h:664
bool isX32() const
Tests whether the target is X32.
Definition: Triple.h:1039
bool isWindowsGNUEnvironment() const
Definition: Triple.h:659
bool isAndroid() const
Tests whether the target is Android.
Definition: Triple.h:771
bool isOSBinFormatMachO() const
Tests whether the environment is MachO.
Definition: Triple.h:734
bool isWindowsCoreCLREnvironment() const
Definition: Triple.h:647
bool isOSSolaris() const
Definition: Triple.h:596
bool isOSKFreeBSD() const
Tests whether the OS is kFreeBSD.
Definition: Triple.h:685
bool isOSBinFormatCOFF() const
Tests whether the OS uses the COFF binary format.
Definition: Triple.h:726
bool isOSWindows() const
Tests whether the OS is Windows.
Definition: Triple.h:626
bool isOSLinux() const
Tests whether the OS is Linux.
Definition: Triple.h:680
bool isWindowsCygwinEnvironment() const
Definition: Triple.h:655
bool isOSFreeBSD() const
Definition: Triple.h:586
bool isOSDarwin() const
Is this a "Darwin" OS (macOS, iOS, tvOS, watchOS, XROS, or DriverKit).
Definition: Triple.h:560
bool isOSGlibc() const
Tests whether the OS uses glibc.
Definition: Triple.h:705
bool isPS() const
Tests whether the target is the PS4 or PS5 platform.
Definition: Triple.h:768
bool isOSIAMCU() const
Definition: Triple.h:600
bool isOSFuchsia() const
Definition: Triple.h:590
bool isOSBinFormatELF() const
Tests whether the OS uses the ELF binary format.
Definition: Triple.h:721
bool isWindowsMSVCEnvironment() const
Checks if the environment could be MSVC.
Definition: Triple.h:636
bool isWindowsItaniumEnvironment() const
Definition: Triple.h:651
const X86RegisterInfo & getRegisterInfo() const
getRegisterInfo - TargetInstrInfo is a superset of MRegister info.
Definition: X86InstrInfo.h:211
bool canExtendTo512BW() const
Definition: X86Subtarget.h:236
bool hasAnyFMA() const
Definition: X86Subtarget.h:203
bool enableEarlyIfConversion() const override
bool isOSWindows() const
Definition: X86Subtarget.h:322
bool isTargetMachO() const
Definition: X86Subtarget.h:288
unsigned getTileConfigSize() const
Definition: X86Subtarget.h:136
bool canUseLAHFSAHF() const
Definition: X86Subtarget.h:214
bool isTargetKFreeBSD() const
Definition: X86Subtarget.h:291
bool isXRaySupported() const override
Definition: X86Subtarget.h:266
unsigned getRequiredVectorWidth() const
Definition: X86Subtarget.h:226
bool useIndirectThunkBranches() const
Definition: X86Subtarget.h:221
bool hasSSE1() const
Definition: X86Subtarget.h:193
bool useLight256BitInstructions() const
Definition: X86Subtarget.h:258
bool isTargetSolaris() const
Definition: X86Subtarget.h:283
bool isPICStyleGOT() const
Definition: X86Subtarget.h:328
bool isTargetWindowsCygwin() const
Definition: X86Subtarget.h:308
bool hasSSE42() const
Definition: X86Subtarget.h:198
InstructionSelector * getInstructionSelector() const override
const X86TargetLowering * getTargetLowering() const override
Definition: X86Subtarget.h:118
bool hasMFence() const
Use mfence if we have SSE2 or we're on x86-64 (even if we asked for no-sse2).
Definition: X86Subtarget.h:276
bool hasNoDomainDelayBlend() const
Definition: X86Subtarget.h:244
Align getTileConfigAlignment() const
Definition: X86Subtarget.h:137
bool isTargetMCU() const
Definition: X86Subtarget.h:297
bool isTargetDragonFly() const
Definition: X86Subtarget.h:282
bool canUseCMOV() const
Definition: X86Subtarget.h:192
bool isPICStyleStubPIC() const
Definition: X86Subtarget.h:331
bool isLegalToCallImmediateAddr() const
Return true if the subtarget allows calls to immediate address.
bool enableMachineScheduler() const override
Enable the MachineScheduler pass for all X86 subtargets.
Definition: X86Subtarget.h:415
bool isTargetWindowsMSVC() const
Definition: X86Subtarget.h:300
bool canUseCMPXCHG8B() const
Definition: X86Subtarget.h:185
bool isTarget64BitILP32() const
Is this x86_64 with the ILP32 programming model (x32 ABI)?
Definition: X86Subtarget.h:173
bool hasNoDomainDelayShuffle() const
Definition: X86Subtarget.h:247
bool isTargetDarwin() const
Definition: X86Subtarget.h:280
bool isTargetWin64() const
Definition: X86Subtarget.h:324
bool hasPrefetchW() const
Definition: X86Subtarget.h:204
bool isTarget64BitLP64() const
Is this x86_64 with the LP64 programming model (standard AMD64, no x32)?
Definition: X86Subtarget.h:178
bool swiftAsyncContextIsDynamicallySet() const
Return whether FrameLowering should always set the "extended frame present" bit in FP,...
Definition: X86Subtarget.h:386
const Triple & getTargetTriple() const
Definition: X86Subtarget.h:278
AntiDepBreakMode getAntiDepBreakMode() const override
Definition: X86Subtarget.h:422
bool isTargetWindowsCoreCLR() const
Definition: X86Subtarget.h:304
const X86InstrInfo * getInstrInfo() const override
Definition: X86Subtarget.h:122
const RegisterBankInfo * getRegBankInfo() const override
bool useAVX512Regs() const
Definition: X86Subtarget.h:253
bool isTargetCOFF() const
Definition: X86Subtarget.h:287
bool hasSSE3() const
Definition: X86Subtarget.h:195
bool isCallingConvWin64(CallingConv::ID CC) const
Definition: X86Subtarget.h:337
bool isTargetNaCl() const
Definition: X86Subtarget.h:294
bool hasAVX512() const
Definition: X86Subtarget.h:201
bool canExtendTo512DQ() const
Definition: X86Subtarget.h:232
bool hasSSE41() const
Definition: X86Subtarget.h:197
Align getStackAlignment() const
Returns the minimum alignment known to hold of the stack frame on entry to the function and which mus...
Definition: X86Subtarget.h:142
bool isTargetELF() const
Definition: X86Subtarget.h:286
bool hasSSEPrefetch() const
Definition: X86Subtarget.h:209
bool canUseCMPXCHG16B() const
Definition: X86Subtarget.h:186
unsigned char classifyGlobalReference(const GlobalValue *GV, const Module &M) const
const LegalizerInfo * getLegalizerInfo() const override
bool isPositionIndependent() const
bool hasSSE2() const
Definition: X86Subtarget.h:194
bool isTargetFreeBSD() const
Definition: X86Subtarget.h:281
bool isTargetGlibc() const
Definition: X86Subtarget.h:292
bool isTargetFuchsia() const
Definition: X86Subtarget.h:298
bool hasSSSE3() const
Definition: X86Subtarget.h:196
bool hasInt256() const
Definition: X86Subtarget.h:202
bool isPICStyleRIPRel() const
Definition: X86Subtarget.h:329
bool isTargetCygMing() const
Definition: X86Subtarget.h:320
bool hasNoDomainDelay() const
Definition: X86Subtarget.h:240
bool isTargetNaCl32() const
Definition: X86Subtarget.h:295
unsigned char classifyLocalReference(const GlobalValue *GV) const
Classify a global variable reference for the current subtarget according to how we should reference i...
unsigned char classifyBlockAddressReference() const
Classify a blockaddress reference for the current subtarget according to how we should reference it i...
PICStyles::Style getPICStyle() const
Definition: X86Subtarget.h:182
bool enableIndirectBrExpand() const override
If we are using indirect thunks, we need to expand indirectbr to avoid it lowering to an actual indir...
Definition: X86Subtarget.h:410
bool hasNoDomainDelayMov() const
Definition: X86Subtarget.h:241
bool isTargetPS() const
Definition: X86Subtarget.h:284
const X86RegisterInfo * getRegisterInfo() const override
Definition: X86Subtarget.h:132
void setPICStyle(PICStyles::Style Style)
Definition: X86Subtarget.h:183
bool hasAVX() const
Definition: X86Subtarget.h:199
bool isTargetWindowsGNU() const
Definition: X86Subtarget.h:312
unsigned getMaxInlineSizeThreshold() const
Returns the maximum memset / memcpy size that still makes it profitable to inline the call.
Definition: X86Subtarget.h:146
unsigned getPreferVectorWidth() const
Definition: X86Subtarget.h:225
bool isTargetWindowsItanium() const
Definition: X86Subtarget.h:316
bool isTargetAndroid() const
Definition: X86Subtarget.h:293
const CallLowering * getCallLowering() const override
Methods used by Global ISel.
bool isTargetNaCl64() const
Definition: X86Subtarget.h:296
bool hasCLFLUSH() const
Use clflush if we have SSE2 or we're on x86-64 (even if we asked for no-sse2).
Definition: X86Subtarget.h:271
void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS)
ParseSubtargetFeatures - Parses features string setting specified subtarget options.
const X86FrameLowering * getFrameLowering() const override
Definition: X86Subtarget.h:124
void getPostRAMutations(std::vector< std::unique_ptr< ScheduleDAGMutation > > &Mutations) const override
bool useBWIRegs() const
Definition: X86Subtarget.h:262
bool isTargetWin32() const
Definition: X86Subtarget.h:326
bool useIndirectThunkCalls() const
Definition: X86Subtarget.h:218
unsigned char classifyGlobalFunctionReference(const GlobalValue *GV, const Module &M) const
Classify a global function reference for the current subtarget.
bool hasAVX2() const
Definition: X86Subtarget.h:200
const X86SelectionDAGInfo * getSelectionDAGInfo() const override
Definition: X86Subtarget.h:128
bool isTargetLinux() const
Definition: X86Subtarget.h:290
@ X86_64_SysV
The C convention as specified in the x86-64 supplement to the System V ABI, used on most non-Windows ...
Definition: CallingConv.h:151
@ Swift
Calling convention for Swift.
Definition: CallingConv.h:69
@ X86_ThisCall
Similar to X86_StdCall.
Definition: CallingConv.h:122
@ X86_StdCall
stdcall is mostly used by the Win32 API.
Definition: CallingConv.h:99
@ Fast
Attempts to make calls as fast as possible (e.g.
Definition: CallingConv.h:41
@ X86_VectorCall
MSVC calling convention that passes vectors and vector aggregates in SSE registers.
Definition: CallingConv.h:163
@ Intel_OCL_BI
Used for Intel OpenCL built-ins.
Definition: CallingConv.h:147
@ Tail
Attemps to make calls as fast as possible while guaranteeing that tail call optimization can always b...
Definition: CallingConv.h:76
@ Win64
The C convention as implemented on Windows/x86-64 and AArch64.
Definition: CallingConv.h:159
@ SwiftTail
This follows the Swift calling convention in how arguments are passed but guarantees tail calls will ...
Definition: CallingConv.h:87
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
@ X86_FastCall
'fast' analog of X86_StdCall.
Definition: CallingConv.h:103
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Definition: Alignment.h:117