1 //===-- X86Subtarget.h - Define Subtarget for the X86 ----------*- C++ -*--===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file declares the X86 specific subclass of TargetSubtargetInfo.
12 //===----------------------------------------------------------------------===//
14 #ifndef X86SUBTARGET_H
15 #define X86SUBTARGET_H
17 #include "llvm/CallingConv.h"
18 #include "llvm/ADT/Triple.h"
19 #include "llvm/Target/TargetSubtargetInfo.h"
22 #define GET_SUBTARGETINFO_HEADER
23 #include "X86GenSubtargetInfo.inc"
30 /// PICStyles - The X86 backend supports a number of different styles of PIC.
34 StubPIC, // Used on i386-darwin in -fPIC mode.
35 StubDynamicNoPIC, // Used on i386-darwin in -mdynamic-no-pic mode.
36 GOT, // Used on many 32-bit unices in -fPIC mode.
37 RIPRel, // Used on X86-64 when not in -static mode.
38 None // Set when in -static mode (not PIC or DynamicNoPIC mode).
42 class X86Subtarget : public X86GenSubtargetInfo {
45 NoMMXSSE, MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, AVX, AVX2
49 NoThreeDNow, ThreeDNow, ThreeDNowA
52 enum X86ProcFamilyEnum {
56 /// X86ProcFamily - X86 processor family: Intel Atom, and others
57 X86ProcFamilyEnum X86ProcFamily;
59 /// PICStyle - Which PIC style to use
61 PICStyles::Style PICStyle;
63 /// X86SSELevel - MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, or
65 X86SSEEnum X86SSELevel;
67 /// X863DNowLevel - 3DNow or 3DNow Athlon, or none supported.
69 X863DNowEnum X863DNowLevel;
71 /// HasCMov - True if this processor has conditional move instructions
72 /// (generally pentium pro+).
75 /// HasX86_64 - True if the processor supports X86-64 instructions.
79 /// HasPOPCNT - True if the processor supports POPCNT.
82 /// HasSSE4A - True if the processor supports SSE4A instructions.
85 /// HasAES - Target has AES instructions
88 /// HasPCLMUL - Target has carry-less multiplication
91 /// HasFMA - Target has 3-operand fused multiply-add
94 /// HasFMA4 - Target has 4-operand fused multiply-add
97 /// HasXOP - Target has XOP instructions
100 /// HasMOVBE - True if the processor has the MOVBE instruction.
103 /// HasRDRAND - True if the processor has the RDRAND instruction.
106 /// HasF16C - Processor has 16-bit floating point conversion instructions.
109 /// HasFSGSBase - Processor has FS/GS base insturctions.
112 /// HasLZCNT - Processor has LZCNT instruction.
115 /// HasBMI - Processor has BMI1 instructions.
118 /// HasBMI2 - Processor has BMI2 instructions.
121 /// HasRTM - Processor has RTM instructions.
124 /// IsBTMemSlow - True if BT (bit test) of memory instructions are slow.
127 /// IsUAMemFast - True if unaligned memory access is fast.
130 /// HasVectorUAMem - True if SIMD operations can have unaligned memory
131 /// operands. This may require setting a feature bit in the processor.
134 /// HasCmpxchg16b - True if this processor has the CMPXCHG16B instruction;
135 /// this is true for most x86-64 chips, but not the first AMD chips.
138 /// UseLeaForSP - True if the LEA instruction should be used for adjusting
139 /// the stack pointer. This is an optimization for Intel Atom processors.
142 /// HasSlowDivide - True if smaller divides are significantly faster than
143 /// full divides and should be used when possible.
146 /// PostRAScheduler - True if using post-register-allocation scheduler.
147 bool PostRAScheduler;
149 /// stackAlignment - The minimum alignment known to hold of the stack frame on
150 /// entry to the function and which must be maintained by every function.
151 unsigned stackAlignment;
153 /// Max. memset / memcpy size that is turned into rep/movs, rep/stos ops.
155 unsigned MaxInlineSizeThreshold;
157 /// TargetTriple - What processor and OS we're targeting.
160 /// Instruction itineraries for scheduling
161 InstrItineraryData InstrItins;
164 /// In64BitMode - True if compiling for 64-bit, false for 32-bit.
169 /// This constructor initializes the data members to match that
170 /// of the specified triple.
172 X86Subtarget(const std::string &TT, const std::string &CPU,
173 const std::string &FS,
174 unsigned StackAlignOverride, bool is64Bit);
176 /// getStackAlignment - Returns the minimum alignment known to hold of the
177 /// stack frame on entry to the function and which must be maintained by every
178 /// function for this subtarget.
179 unsigned getStackAlignment() const { return stackAlignment; }
181 /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
182 /// that still makes it profitable to inline the call.
183 unsigned getMaxInlineSizeThreshold() const { return MaxInlineSizeThreshold; }
185 /// ParseSubtargetFeatures - Parses features string setting specified
186 /// subtarget options. Definition of function is auto generated by tblgen.
187 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
189 /// AutoDetectSubtargetFeatures - Auto-detect CPU features using CPUID
191 void AutoDetectSubtargetFeatures();
193 bool is64Bit() const { return In64BitMode; }
195 PICStyles::Style getPICStyle() const { return PICStyle; }
196 void setPICStyle(PICStyles::Style Style) { PICStyle = Style; }
198 bool hasCMov() const { return HasCMov; }
199 bool hasMMX() const { return X86SSELevel >= MMX; }
200 bool hasSSE1() const { return X86SSELevel >= SSE1; }
201 bool hasSSE2() const { return X86SSELevel >= SSE2; }
202 bool hasSSE3() const { return X86SSELevel >= SSE3; }
203 bool hasSSSE3() const { return X86SSELevel >= SSSE3; }
204 bool hasSSE41() const { return X86SSELevel >= SSE41; }
205 bool hasSSE42() const { return X86SSELevel >= SSE42; }
206 bool hasAVX() const { return X86SSELevel >= AVX; }
207 bool hasAVX2() const { return X86SSELevel >= AVX2; }
208 bool hasSSE4A() const { return HasSSE4A; }
209 bool has3DNow() const { return X863DNowLevel >= ThreeDNow; }
210 bool has3DNowA() const { return X863DNowLevel >= ThreeDNowA; }
211 bool hasPOPCNT() const { return HasPOPCNT; }
212 bool hasAES() const { return HasAES; }
213 bool hasPCLMUL() const { return HasPCLMUL; }
214 bool hasFMA() const { return HasFMA; }
215 // FIXME: Favor FMA when both are enabled. Is this the right thing to do?
216 bool hasFMA4() const { return HasFMA4 && !HasFMA; }
217 bool hasXOP() const { return HasXOP; }
218 bool hasMOVBE() const { return HasMOVBE; }
219 bool hasRDRAND() const { return HasRDRAND; }
220 bool hasF16C() const { return HasF16C; }
221 bool hasFSGSBase() const { return HasFSGSBase; }
222 bool hasLZCNT() const { return HasLZCNT; }
223 bool hasBMI() const { return HasBMI; }
224 bool hasBMI2() const { return HasBMI2; }
225 bool hasRTM() const { return HasRTM; }
226 bool isBTMemSlow() const { return IsBTMemSlow; }
227 bool isUnalignedMemAccessFast() const { return IsUAMemFast; }
228 bool hasVectorUAMem() const { return HasVectorUAMem; }
229 bool hasCmpxchg16b() const { return HasCmpxchg16b; }
230 bool useLeaForSP() const { return UseLeaForSP; }
231 bool hasSlowDivide() const { return HasSlowDivide; }
233 bool isAtom() const { return X86ProcFamily == IntelAtom; }
235 const Triple &getTargetTriple() const { return TargetTriple; }
237 bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); }
238 bool isTargetFreeBSD() const {
239 return TargetTriple.getOS() == Triple::FreeBSD;
241 bool isTargetSolaris() const {
242 return TargetTriple.getOS() == Triple::Solaris;
244 bool isTargetELF() const {
245 return (TargetTriple.getEnvironment() == Triple::ELF ||
246 TargetTriple.isOSBinFormatELF());
248 bool isTargetLinux() const { return TargetTriple.getOS() == Triple::Linux; }
249 bool isTargetNaCl() const {
250 return TargetTriple.getOS() == Triple::NativeClient;
252 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
253 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
254 bool isTargetWindows() const { return TargetTriple.getOS() == Triple::Win32; }
255 bool isTargetMingw() const { return TargetTriple.getOS() == Triple::MinGW32; }
256 bool isTargetCygwin() const { return TargetTriple.getOS() == Triple::Cygwin; }
257 bool isTargetCygMing() const { return TargetTriple.isOSCygMing(); }
258 bool isTargetCOFF() const {
259 return (TargetTriple.getEnvironment() != Triple::ELF &&
260 TargetTriple.isOSBinFormatCOFF());
262 bool isTargetEnvMacho() const { return TargetTriple.isEnvironmentMachO(); }
264 bool isTargetWin64() const {
265 // FIXME: x86_64-cygwin has not been released yet.
266 return In64BitMode && TargetTriple.isOSWindows();
269 bool isTargetWin32() const {
270 // FIXME: Cygwin is included for isTargetWin64 -- should it be included
272 return !In64BitMode && (isTargetMingw() || isTargetWindows());
275 bool isPICStyleSet() const { return PICStyle != PICStyles::None; }
276 bool isPICStyleGOT() const { return PICStyle == PICStyles::GOT; }
277 bool isPICStyleRIPRel() const { return PICStyle == PICStyles::RIPRel; }
279 bool isPICStyleStubPIC() const {
280 return PICStyle == PICStyles::StubPIC;
283 bool isPICStyleStubNoDynamic() const {
284 return PICStyle == PICStyles::StubDynamicNoPIC;
286 bool isPICStyleStubAny() const {
287 return PICStyle == PICStyles::StubDynamicNoPIC ||
288 PICStyle == PICStyles::StubPIC; }
290 /// ClassifyGlobalReference - Classify a global variable reference for the
291 /// current subtarget according to how we should reference it in a non-pcrel
293 unsigned char ClassifyGlobalReference(const GlobalValue *GV,
294 const TargetMachine &TM)const;
296 /// ClassifyBlockAddressReference - Classify a blockaddress reference for the
297 /// current subtarget according to how we should reference it in a non-pcrel
299 unsigned char ClassifyBlockAddressReference() const;
301 /// IsLegalToCallImmediateAddr - Return true if the subtarget allows calls
302 /// to immediate address.
303 bool IsLegalToCallImmediateAddr(const TargetMachine &TM) const;
305 /// This function returns the name of a function which has an interface
306 /// like the non-standard bzero function, if such a function exists on
307 /// the current subtarget and it is considered prefereable over
308 /// memset with zero passed as the second argument. Otherwise it
310 const char *getBZeroEntry() const;
312 /// enablePostRAScheduler - run for Atom optimization.
313 bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,
314 TargetSubtargetInfo::AntiDepBreakMode& Mode,
315 RegClassVector& CriticalPathRCs) const;
317 bool postRAScheduler() const { return PostRAScheduler; }
319 /// getInstrItins = Return the instruction itineraries based on the
320 /// subtarget selection.
321 const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
324 } // End llvm namespace