Propagate CPU string out of SubtargetFeatures
[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 TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef X86SUBTARGET_H
15 #define X86SUBTARGET_H
16
17 #include "llvm/Target/TargetSubtarget.h"
18 #include <string>
19
20 namespace llvm {
21 class Module;
22 class GlobalValue;
23 class TargetMachine;
24   
25 namespace PICStyles {
26 enum Style {
27   Stub, GOT, RIPRel, WinPIC, None
28 };
29 }
30
31 class X86Subtarget : public TargetSubtarget {
32 public:
33   enum AsmWriterFlavorTy {
34     // Note: This numbering has to match the GCC assembler dialects for inline
35     // asm alternatives to work right.
36     ATT = 0, Intel = 1, Unset
37   };
38 protected:
39   enum X86SSEEnum {
40     NoMMXSSE, MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42
41   };
42
43   enum X863DNowEnum {
44     NoThreeDNow, ThreeDNow, ThreeDNowA
45   };
46
47   /// AsmFlavor - Which x86 asm dialect to use.
48   ///
49   AsmWriterFlavorTy AsmFlavor;
50
51   /// PICStyle - Which PIC style to use
52   ///
53   PICStyles::Style PICStyle;
54   
55   /// X86SSELevel - MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, or
56   /// none supported.
57   X86SSEEnum X86SSELevel;
58
59   /// X863DNowLevel - 3DNow or 3DNow Athlon, or none supported.
60   ///
61   X863DNowEnum X863DNowLevel;
62
63   /// HasX86_64 - True if the processor supports X86-64 instructions.
64   ///
65   bool HasX86_64;
66
67   /// IsBTMemSlow - True if BT (bit test) of memory instructions are slow.
68   bool IsBTMemSlow;
69   
70   /// DarwinVers - Nonzero if this is a darwin platform: the numeric
71   /// version of the platform, e.g. 8 = 10.4 (Tiger), 9 = 10.5 (Leopard), etc.
72   unsigned char DarwinVers; // Is any darwin-x86 platform.
73
74   /// isLinux - true if this is a "linux" platform.
75   bool IsLinux;
76
77   /// stackAlignment - The minimum alignment known to hold of the stack frame on
78   /// entry to the function and which must be maintained by every function.
79   unsigned stackAlignment;
80
81   /// Max. memset / memcpy size that is turned into rep/movs, rep/stos ops.
82   ///
83   unsigned MaxInlineSizeThreshold;
84
85 private:
86   /// Is64Bit - True if the processor supports 64-bit instructions and module
87   /// pointer size is 64 bit.
88   bool Is64Bit;
89
90 public:
91   enum {
92     isELF, isCygwin, isDarwin, isWindows, isMingw
93   } TargetType;
94
95   /// This constructor initializes the data members to match that
96   /// of the specified module.
97   ///
98   X86Subtarget(const Module &M, const std::string &FS, bool is64Bit);
99
100   /// getStackAlignment - Returns the minimum alignment known to hold of the
101   /// stack frame on entry to the function and which must be maintained by every
102   /// function for this subtarget.
103   unsigned getStackAlignment() const { return stackAlignment; }
104
105   /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
106   /// that still makes it profitable to inline the call.
107   unsigned getMaxInlineSizeThreshold() const { return MaxInlineSizeThreshold; }
108
109   /// ParseSubtargetFeatures - Parses features string setting specified
110   /// subtarget options.  Definition of function is auto generated by tblgen.
111   std::string ParseSubtargetFeatures(const std::string &FS,
112                                      const std::string &CPU);
113
114   /// AutoDetectSubtargetFeatures - Auto-detect CPU features using CPUID
115   /// instruction.
116   void AutoDetectSubtargetFeatures();
117
118   bool is64Bit() const { return Is64Bit; }
119
120   PICStyles::Style getPICStyle() const { return PICStyle; }
121   void setPICStyle(PICStyles::Style Style)  { PICStyle = Style; }
122
123   bool hasMMX() const { return X86SSELevel >= MMX; }
124   bool hasSSE1() const { return X86SSELevel >= SSE1; }
125   bool hasSSE2() const { return X86SSELevel >= SSE2; }
126   bool hasSSE3() const { return X86SSELevel >= SSE3; }
127   bool hasSSSE3() const { return X86SSELevel >= SSSE3; }
128   bool hasSSE41() const { return X86SSELevel >= SSE41; }
129   bool hasSSE42() const { return X86SSELevel >= SSE42; }
130   bool has3DNow() const { return X863DNowLevel >= ThreeDNow; }
131   bool has3DNowA() const { return X863DNowLevel >= ThreeDNowA; }
132
133   bool isBTMemSlow() const { return IsBTMemSlow; }
134
135   unsigned getAsmFlavor() const {
136     return AsmFlavor != Unset ? unsigned(AsmFlavor) : 0;
137   }
138
139   bool isFlavorAtt() const { return AsmFlavor == ATT; }
140   bool isFlavorIntel() const { return AsmFlavor == Intel; }
141
142   bool isTargetDarwin() const { return TargetType == isDarwin; }
143   bool isTargetELF() const {
144     return TargetType == isELF;
145   }
146   bool isTargetWindows() const { return TargetType == isWindows; }
147   bool isTargetMingw() const { return TargetType == isMingw; }
148   bool isTargetCygMing() const { return (TargetType == isMingw ||
149                                          TargetType == isCygwin); }
150   bool isTargetCygwin() const { return TargetType == isCygwin; }
151   bool isTargetWin64() const {
152     return (Is64Bit && (TargetType == isMingw || TargetType == isWindows));
153   }
154
155   std::string getDataLayout() const {
156     const char *p;
157     if (is64Bit())
158       p = "e-p:64:64-s:64-f64:64:64-i64:64:64-f80:128:128";
159     else {
160       if (isTargetDarwin())
161         p = "e-p:32:32-f64:32:64-i64:32:64-f80:128:128";
162       else
163         p = "e-p:32:32-f64:32:64-i64:32:64-f80:32:32";
164     }
165     return std::string(p);
166   }
167
168   bool isPICStyleSet() const { return PICStyle != PICStyles::None; }
169   bool isPICStyleGOT() const { return PICStyle == PICStyles::GOT; }
170   bool isPICStyleStub() const { return PICStyle == PICStyles::Stub; }
171   bool isPICStyleRIPRel() const { return PICStyle == PICStyles::RIPRel; }
172   bool isPICStyleWinPIC() const { return PICStyle == PICStyles:: WinPIC; }
173   
174   /// getDarwinVers - Return the darwin version number, 8 = tiger, 9 = leopard.
175   unsigned getDarwinVers() const { return DarwinVers; }
176   
177   /// isLinux - Return true if the target is "Linux".
178   bool isLinux() const { return IsLinux; }
179
180   /// True if accessing the GV requires an extra load. For Windows, dllimported
181   /// symbols are indirect, loading the value at address GV rather then the
182   /// value of GV itself. This means that the GlobalAddress must be in the base
183   /// or index register of the address, not the GV offset field.
184   bool GVRequiresExtraLoad(const GlobalValue* GV, const TargetMachine& TM,
185                            bool isDirectCall) const;
186
187   /// True if accessing the GV requires a register.  This is a superset of the
188   /// cases where GVRequiresExtraLoad is true.  Some variations of PIC require
189   /// a register, but not an extra load.
190   bool GVRequiresRegister(const GlobalValue* GV, const TargetMachine& TM,
191                            bool isDirectCall) const;
192
193   /// IsLegalToCallImmediateAddr - Return true if the subtarget allows calls
194   /// to immediate address.
195   bool IsLegalToCallImmediateAddr(const TargetMachine &TM) const;
196
197   /// This function returns the name of a function which has an interface
198   /// like the non-standard bzero function, if such a function exists on
199   /// the current subtarget and it is considered prefereable over
200   /// memset with zero passed as the second argument. Otherwise it
201   /// returns null.
202   const char *getBZeroEntry() const;
203
204   /// getSpecialAddressLatency - For targets where it is beneficial to
205   /// backschedule instructions that compute addresses, return a value
206   /// indicating the number of scheduling cycles of backscheduling that
207   /// should be attempted.
208   unsigned getSpecialAddressLatency() const;
209 };
210
211 namespace X86 {
212   /// GetCpuIDAndInfo - Execute the specified cpuid and return the 4 values in
213   /// the specified arguments.  If we can't run cpuid on the host, return true.
214   bool GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
215                        unsigned *rECX, unsigned *rEDX);
216 }
217
218 } // End llvm namespace
219
220 #endif