Revert r138826 until PR10834 can be fixed.
[oota-llvm.git] / lib / Target / X86 / X86Subtarget.h
1 //=====---- X86Subtarget.h - Define Subtarget for the X86 -----*- C++ -*--====//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the X86 specific subclass of TargetSubtargetInfo.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef X86SUBTARGET_H
15 #define X86SUBTARGET_H
16
17 #include "llvm/ADT/Triple.h"
18 #include "llvm/Target/TargetSubtargetInfo.h"
19 #include "llvm/CallingConv.h"
20 #include <string>
21
22 #define GET_SUBTARGETINFO_HEADER
23 #include "X86GenSubtargetInfo.inc"
24
25 namespace llvm {
26 class GlobalValue;
27 class StringRef;
28 class TargetMachine;
29
30 /// PICStyles - The X86 backend supports a number of different styles of PIC.
31 ///
32 namespace PICStyles {
33 enum Style {
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).
39 };
40 }
41
42 class X86Subtarget : public X86GenSubtargetInfo {
43 protected:
44   enum X86SSEEnum {
45     NoMMXSSE, MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42
46   };
47
48   enum X863DNowEnum {
49     NoThreeDNow, ThreeDNow, ThreeDNowA
50   };
51
52   /// PICStyle - Which PIC style to use
53   ///
54   PICStyles::Style PICStyle;
55
56   /// X86SSELevel - MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, or
57   /// none supported.
58   X86SSEEnum X86SSELevel;
59
60   /// X863DNowLevel - 3DNow or 3DNow Athlon, or none supported.
61   ///
62   X863DNowEnum X863DNowLevel;
63
64   /// HasCMov - True if this processor has conditional move instructions
65   /// (generally pentium pro+).
66   bool HasCMov;
67
68   /// HasX86_64 - True if the processor supports X86-64 instructions.
69   ///
70   bool HasX86_64;
71
72   /// HasPOPCNT - True if the processor supports POPCNT.
73   bool HasPOPCNT;
74
75   /// HasSSE4A - True if the processor supports SSE4A instructions.
76   bool HasSSE4A;
77
78   /// HasAVX - Target has AVX instructions
79   bool HasAVX;
80
81   /// HasAES - Target has AES instructions
82   bool HasAES;
83
84   /// HasCLMUL - Target has carry-less multiplication
85   bool HasCLMUL;
86
87   /// HasFMA3 - Target has 3-operand fused multiply-add
88   bool HasFMA3;
89
90   /// HasFMA4 - Target has 4-operand fused multiply-add
91   bool HasFMA4;
92
93   /// IsBTMemSlow - True if BT (bit test) of memory instructions are slow.
94   bool IsBTMemSlow;
95
96   /// IsUAMemFast - True if unaligned memory access is fast.
97   bool IsUAMemFast;
98
99   /// HasVectorUAMem - True if SIMD operations can have unaligned memory
100   /// operands. This may require setting a feature bit in the processor.
101   bool HasVectorUAMem;
102
103   /// HasCmpxchg16b - True if this processor has the CMPXCHG16B instruction;
104   /// this is true for most x86-64 chips, but not the first AMD chips.
105   bool HasCmpxchg16b;
106
107   /// stackAlignment - The minimum alignment known to hold of the stack frame on
108   /// entry to the function and which must be maintained by every function.
109   unsigned stackAlignment;
110
111   /// Max. memset / memcpy size that is turned into rep/movs, rep/stos ops.
112   ///
113   unsigned MaxInlineSizeThreshold;
114
115   /// TargetTriple - What processor and OS we're targeting.
116   Triple TargetTriple;
117
118 private:
119   /// In64BitMode - True if compiling for 64-bit, false for 32-bit.
120   bool In64BitMode;
121
122 public:
123
124   /// This constructor initializes the data members to match that
125   /// of the specified triple.
126   ///
127   X86Subtarget(const std::string &TT, const std::string &CPU,
128                const std::string &FS,
129                unsigned StackAlignOverride, bool is64Bit);
130
131   /// getStackAlignment - Returns the minimum alignment known to hold of the
132   /// stack frame on entry to the function and which must be maintained by every
133   /// function for this subtarget.
134   unsigned getStackAlignment() const { return stackAlignment; }
135
136   /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
137   /// that still makes it profitable to inline the call.
138   unsigned getMaxInlineSizeThreshold() const { return MaxInlineSizeThreshold; }
139
140   /// ParseSubtargetFeatures - Parses features string setting specified
141   /// subtarget options.  Definition of function is auto generated by tblgen.
142   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
143
144   /// AutoDetectSubtargetFeatures - Auto-detect CPU features using CPUID
145   /// instruction.
146   void AutoDetectSubtargetFeatures();
147
148   bool is64Bit() const { return In64BitMode; }
149
150   PICStyles::Style getPICStyle() const { return PICStyle; }
151   void setPICStyle(PICStyles::Style Style)  { PICStyle = Style; }
152
153   bool hasCMov() const { return HasCMov; }
154   bool hasMMX() const { return X86SSELevel >= MMX; }
155   bool hasSSE1() const { return X86SSELevel >= SSE1; }
156   bool hasSSE2() const { return X86SSELevel >= SSE2; }
157   bool hasSSE3() const { return X86SSELevel >= SSE3; }
158   bool hasSSSE3() const { return X86SSELevel >= SSSE3; }
159   bool hasSSE41() const { return X86SSELevel >= SSE41; }
160   bool hasSSE42() const { return X86SSELevel >= SSE42; }
161   bool hasSSE4A() const { return HasSSE4A; }
162   bool has3DNow() const { return X863DNowLevel >= ThreeDNow; }
163   bool has3DNowA() const { return X863DNowLevel >= ThreeDNowA; }
164   bool hasPOPCNT() const { return HasPOPCNT; }
165   bool hasAVX() const { return HasAVX; }
166   bool hasXMM() const { return hasSSE1() || hasAVX(); }
167   bool hasXMMInt() const { return hasSSE2() || hasAVX(); }
168   bool hasAES() const { return HasAES; }
169   bool hasCLMUL() const { return HasCLMUL; }
170   bool hasFMA3() const { return HasFMA3; }
171   bool hasFMA4() const { return HasFMA4; }
172   bool isBTMemSlow() const { return IsBTMemSlow; }
173   bool isUnalignedMemAccessFast() const { return IsUAMemFast; }
174   bool hasVectorUAMem() const { return HasVectorUAMem; }
175   bool hasCmpxchg16b() const { return HasCmpxchg16b; }
176
177   const Triple &getTargetTriple() const { return TargetTriple; }
178
179   bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); }
180   bool isTargetFreeBSD() const {
181     return TargetTriple.getOS() == Triple::FreeBSD;
182   }
183   bool isTargetSolaris() const {
184     return TargetTriple.getOS() == Triple::Solaris;
185   }
186
187   // ELF is a reasonably sane default and the only other X86 targets we
188   // support are Darwin and Windows. Just use "not those".
189   bool isTargetELF() const {
190     return !isTargetDarwin() && !isTargetWindows() && !isTargetCygMing();
191   }
192   bool isTargetLinux() const { return TargetTriple.getOS() == Triple::Linux; }
193
194   bool isTargetWindows() const { return TargetTriple.getOS() == Triple::Win32; }
195   bool isTargetMingw() const { return TargetTriple.getOS() == Triple::MinGW32; }
196   bool isTargetCygwin() const { return TargetTriple.getOS() == Triple::Cygwin; }
197   bool isTargetCygMing() const {
198     return isTargetMingw() || isTargetCygwin();
199   }
200
201   /// isTargetCOFF - Return true if this is any COFF/Windows target variant.
202   bool isTargetCOFF() const {
203     return isTargetMingw() || isTargetCygwin() || isTargetWindows();
204   }
205
206   bool isTargetWin64() const {
207     // FIXME: x86_64-cygwin has not been released yet.
208     return In64BitMode && (isTargetCygMing() || isTargetWindows());
209   }
210
211   bool isTargetEnvMacho() const {
212     return isTargetDarwin() || (TargetTriple.getEnvironment() == Triple::MachO);
213   }
214
215   bool isTargetWin32() const {
216     return !In64BitMode && (isTargetMingw() || isTargetWindows());
217   }
218
219   bool isPICStyleSet() const { return PICStyle != PICStyles::None; }
220   bool isPICStyleGOT() const { return PICStyle == PICStyles::GOT; }
221   bool isPICStyleRIPRel() const { return PICStyle == PICStyles::RIPRel; }
222
223   bool isPICStyleStubPIC() const {
224     return PICStyle == PICStyles::StubPIC;
225   }
226
227   bool isPICStyleStubNoDynamic() const {
228     return PICStyle == PICStyles::StubDynamicNoPIC;
229   }
230   bool isPICStyleStubAny() const {
231     return PICStyle == PICStyles::StubDynamicNoPIC ||
232            PICStyle == PICStyles::StubPIC; }
233
234   /// ClassifyGlobalReference - Classify a global variable reference for the
235   /// current subtarget according to how we should reference it in a non-pcrel
236   /// context.
237   unsigned char ClassifyGlobalReference(const GlobalValue *GV,
238                                         const TargetMachine &TM)const;
239
240   /// ClassifyBlockAddressReference - Classify a blockaddress reference for the
241   /// current subtarget according to how we should reference it in a non-pcrel
242   /// context.
243   unsigned char ClassifyBlockAddressReference() const;
244
245   /// IsLegalToCallImmediateAddr - Return true if the subtarget allows calls
246   /// to immediate address.
247   bool IsLegalToCallImmediateAddr(const TargetMachine &TM) const;
248
249   /// This function returns the name of a function which has an interface
250   /// like the non-standard bzero function, if such a function exists on
251   /// the current subtarget and it is considered prefereable over
252   /// memset with zero passed as the second argument. Otherwise it
253   /// returns null.
254   const char *getBZeroEntry() const;
255
256   /// getSpecialAddressLatency - For targets where it is beneficial to
257   /// backschedule instructions that compute addresses, return a value
258   /// indicating the number of scheduling cycles of backscheduling that
259   /// should be attempted.
260   unsigned getSpecialAddressLatency() const;
261 };
262
263 } // End llvm namespace
264
265 #endif