Make early if conversion dependent upon the subtarget and add
[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/IR/CallingConv.h"
19 #include "llvm/Target/TargetSubtargetInfo.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 final : public X86GenSubtargetInfo {
43 protected:
44   enum X86SSEEnum {
45     NoMMXSSE, MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, AVX, AVX2, AVX512F
46   };
47
48   enum X863DNowEnum {
49     NoThreeDNow, ThreeDNow, ThreeDNowA
50   };
51
52   enum X86ProcFamilyEnum {
53     Others, IntelAtom, IntelSLM
54   };
55
56   /// X86ProcFamily - X86 processor family: Intel Atom, and others
57   X86ProcFamilyEnum X86ProcFamily;
58
59   /// PICStyle - Which PIC style to use
60   ///
61   PICStyles::Style PICStyle;
62
63   /// X86SSELevel - MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, or
64   /// none supported.
65   X86SSEEnum X86SSELevel;
66
67   /// X863DNowLevel - 3DNow or 3DNow Athlon, or none supported.
68   ///
69   X863DNowEnum X863DNowLevel;
70
71   /// HasCMov - True if this processor has conditional move instructions
72   /// (generally pentium pro+).
73   bool HasCMov;
74
75   /// HasX86_64 - True if the processor supports X86-64 instructions.
76   ///
77   bool HasX86_64;
78
79   /// HasPOPCNT - True if the processor supports POPCNT.
80   bool HasPOPCNT;
81
82   /// HasSSE4A - True if the processor supports SSE4A instructions.
83   bool HasSSE4A;
84
85   /// HasAES - Target has AES instructions
86   bool HasAES;
87
88   /// HasPCLMUL - Target has carry-less multiplication
89   bool HasPCLMUL;
90
91   /// HasFMA - Target has 3-operand fused multiply-add
92   bool HasFMA;
93
94   /// HasFMA4 - Target has 4-operand fused multiply-add
95   bool HasFMA4;
96
97   /// HasXOP - Target has XOP instructions
98   bool HasXOP;
99
100   /// HasTBM - Target has TBM instructions.
101   bool HasTBM;
102
103   /// HasMOVBE - True if the processor has the MOVBE instruction.
104   bool HasMOVBE;
105
106   /// HasRDRAND - True if the processor has the RDRAND instruction.
107   bool HasRDRAND;
108
109   /// HasF16C - Processor has 16-bit floating point conversion instructions.
110   bool HasF16C;
111
112   /// HasFSGSBase - Processor has FS/GS base insturctions.
113   bool HasFSGSBase;
114
115   /// HasLZCNT - Processor has LZCNT instruction.
116   bool HasLZCNT;
117
118   /// HasBMI - Processor has BMI1 instructions.
119   bool HasBMI;
120
121   /// HasBMI2 - Processor has BMI2 instructions.
122   bool HasBMI2;
123
124   /// HasRTM - Processor has RTM instructions.
125   bool HasRTM;
126
127   /// HasHLE - Processor has HLE.
128   bool HasHLE;
129
130   /// HasADX - Processor has ADX instructions.
131   bool HasADX;
132
133   /// HasSHA - Processor has SHA instructions.
134   bool HasSHA;
135
136   /// HasPRFCHW - Processor has PRFCHW instructions.
137   bool HasPRFCHW;
138
139   /// HasRDSEED - Processor has RDSEED instructions.
140   bool HasRDSEED;
141
142   /// IsBTMemSlow - True if BT (bit test) of memory instructions are slow.
143   bool IsBTMemSlow;
144
145   /// IsSHLDSlow - True if SHLD instructions are slow.
146   bool IsSHLDSlow;
147
148   /// IsUAMemFast - True if unaligned memory access is fast.
149   bool IsUAMemFast;
150
151   /// HasVectorUAMem - True if SIMD operations can have unaligned memory
152   /// operands. This may require setting a feature bit in the processor.
153   bool HasVectorUAMem;
154
155   /// HasCmpxchg16b - True if this processor has the CMPXCHG16B instruction;
156   /// this is true for most x86-64 chips, but not the first AMD chips.
157   bool HasCmpxchg16b;
158
159   /// UseLeaForSP - True if the LEA instruction should be used for adjusting
160   /// the stack pointer. This is an optimization for Intel Atom processors.
161   bool UseLeaForSP;
162
163   /// HasSlowDivide - True if smaller divides are significantly faster than
164   /// full divides and should be used when possible.
165   bool HasSlowDivide;
166
167   /// PostRAScheduler - True if using post-register-allocation scheduler.
168   bool PostRAScheduler;
169
170   /// PadShortFunctions - True if the short functions should be padded to prevent
171   /// a stall when returning too early.
172   bool PadShortFunctions;
173
174   /// CallRegIndirect - True if the Calls with memory reference should be converted
175   /// to a register-based indirect call.
176   bool CallRegIndirect;
177   /// LEAUsesAG - True if the LEA instruction inputs have to be ready at
178   ///             address generation (AG) time.
179   bool LEAUsesAG;
180
181   /// SlowLEA - True if the LEA instruction with certain arguments is slow
182   bool SlowLEA;
183
184   /// Processor has AVX-512 PreFetch Instructions
185   bool HasPFI;
186   
187   /// Processor has AVX-512 Exponential and Reciprocal Instructions
188   bool HasERI;
189   
190   /// Processor has AVX-512 Conflict Detection Instructions
191   bool HasCDI;
192   
193   /// stackAlignment - The minimum alignment known to hold of the stack frame on
194   /// entry to the function and which must be maintained by every function.
195   unsigned stackAlignment;
196
197   /// Max. memset / memcpy size that is turned into rep/movs, rep/stos ops.
198   ///
199   unsigned MaxInlineSizeThreshold;
200
201   /// TargetTriple - What processor and OS we're targeting.
202   Triple TargetTriple;
203
204   /// Instruction itineraries for scheduling
205   InstrItineraryData InstrItins;
206
207 private:
208   /// StackAlignOverride - Override the stack alignment.
209   unsigned StackAlignOverride;
210
211   /// In64BitMode - True if compiling for 64-bit, false for 16-bit or 32-bit.
212   bool In64BitMode;
213
214   /// In32BitMode - True if compiling for 32-bit, false for 16-bit or 64-bit.
215   bool In32BitMode;
216
217   /// In16BitMode - True if compiling for 16-bit, false for 32-bit or 64-bit.
218   bool In16BitMode;
219
220 public:
221   /// This constructor initializes the data members to match that
222   /// of the specified triple.
223   ///
224   X86Subtarget(const std::string &TT, const std::string &CPU,
225                const std::string &FS,
226                unsigned StackAlignOverride);
227
228   /// getStackAlignment - Returns the minimum alignment known to hold of the
229   /// stack frame on entry to the function and which must be maintained by every
230   /// function for this subtarget.
231   unsigned getStackAlignment() const { return stackAlignment; }
232
233   /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
234   /// that still makes it profitable to inline the call.
235   unsigned getMaxInlineSizeThreshold() const { return MaxInlineSizeThreshold; }
236
237   /// ParseSubtargetFeatures - Parses features string setting specified
238   /// subtarget options.  Definition of function is auto generated by tblgen.
239   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
240
241   /// \brief Reset the features for the X86 target.
242   void resetSubtargetFeatures(const MachineFunction *MF) override;
243 private:
244   void initializeEnvironment();
245   void resetSubtargetFeatures(StringRef CPU, StringRef FS);
246 public:
247   /// Is this x86_64? (disregarding specific ABI / programming model)
248   bool is64Bit() const {
249     return In64BitMode;
250   }
251
252   bool is32Bit() const {
253     return In32BitMode;
254   }
255
256   bool is16Bit() const {
257     return In16BitMode;
258   }
259
260   /// Is this x86_64 with the ILP32 programming model (x32 ABI)?
261   bool isTarget64BitILP32() const {
262     return In64BitMode && (TargetTriple.getEnvironment() == Triple::GNUX32 ||
263                            TargetTriple.getOS() == Triple::NaCl);
264   }
265
266   /// Is this x86_64 with the LP64 programming model (standard AMD64, no x32)?
267   bool isTarget64BitLP64() const {
268     return In64BitMode && (TargetTriple.getEnvironment() != Triple::GNUX32);
269   }
270
271   PICStyles::Style getPICStyle() const { return PICStyle; }
272   void setPICStyle(PICStyles::Style Style)  { PICStyle = Style; }
273
274   bool hasCMov() const { return HasCMov; }
275   bool hasMMX() const { return X86SSELevel >= MMX; }
276   bool hasSSE1() const { return X86SSELevel >= SSE1; }
277   bool hasSSE2() const { return X86SSELevel >= SSE2; }
278   bool hasSSE3() const { return X86SSELevel >= SSE3; }
279   bool hasSSSE3() const { return X86SSELevel >= SSSE3; }
280   bool hasSSE41() const { return X86SSELevel >= SSE41; }
281   bool hasSSE42() const { return X86SSELevel >= SSE42; }
282   bool hasAVX() const { return X86SSELevel >= AVX; }
283   bool hasAVX2() const { return X86SSELevel >= AVX2; }
284   bool hasAVX512() const { return X86SSELevel >= AVX512F; }
285   bool hasFp256() const { return hasAVX(); }
286   bool hasInt256() const { return hasAVX2(); }
287   bool hasSSE4A() const { return HasSSE4A; }
288   bool has3DNow() const { return X863DNowLevel >= ThreeDNow; }
289   bool has3DNowA() const { return X863DNowLevel >= ThreeDNowA; }
290   bool hasPOPCNT() const { return HasPOPCNT; }
291   bool hasAES() const { return HasAES; }
292   bool hasPCLMUL() const { return HasPCLMUL; }
293   bool hasFMA() const { return HasFMA; }
294   // FIXME: Favor FMA when both are enabled. Is this the right thing to do?
295   bool hasFMA4() const { return HasFMA4 && !HasFMA; }
296   bool hasXOP() const { return HasXOP; }
297   bool hasTBM() const { return HasTBM; }
298   bool hasMOVBE() const { return HasMOVBE; }
299   bool hasRDRAND() const { return HasRDRAND; }
300   bool hasF16C() const { return HasF16C; }
301   bool hasFSGSBase() const { return HasFSGSBase; }
302   bool hasLZCNT() const { return HasLZCNT; }
303   bool hasBMI() const { return HasBMI; }
304   bool hasBMI2() const { return HasBMI2; }
305   bool hasRTM() const { return HasRTM; }
306   bool hasHLE() const { return HasHLE; }
307   bool hasADX() const { return HasADX; }
308   bool hasSHA() const { return HasSHA; }
309   bool hasPRFCHW() const { return HasPRFCHW; }
310   bool hasRDSEED() const { return HasRDSEED; }
311   bool isBTMemSlow() const { return IsBTMemSlow; }
312   bool isSHLDSlow() const { return IsSHLDSlow; }
313   bool isUnalignedMemAccessFast() const { return IsUAMemFast; }
314   bool hasVectorUAMem() const { return HasVectorUAMem; }
315   bool hasCmpxchg16b() const { return HasCmpxchg16b; }
316   bool useLeaForSP() const { return UseLeaForSP; }
317   bool hasSlowDivide() const { return HasSlowDivide; }
318   bool padShortFunctions() const { return PadShortFunctions; }
319   bool callRegIndirect() const { return CallRegIndirect; }
320   bool LEAusesAG() const { return LEAUsesAG; }
321   bool slowLEA() const { return SlowLEA; }
322   bool hasCDI() const { return HasCDI; }
323   bool hasPFI() const { return HasPFI; }
324   bool hasERI() const { return HasERI; }
325
326   bool isAtom() const { return X86ProcFamily == IntelAtom; }
327   bool isSLM() const { return X86ProcFamily == IntelSLM; }
328
329   const Triple &getTargetTriple() const { return TargetTriple; }
330
331   bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); }
332   bool isTargetFreeBSD() const {
333     return TargetTriple.getOS() == Triple::FreeBSD;
334   }
335   bool isTargetSolaris() const {
336     return TargetTriple.getOS() == Triple::Solaris;
337   }
338
339   bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
340   bool isTargetCOFF() const { return TargetTriple.isOSBinFormatCOFF(); }
341   bool isTargetMacho() const { return TargetTriple.isOSBinFormatMachO(); }
342
343   bool isTargetLinux() const { return TargetTriple.isOSLinux(); }
344   bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
345   bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
346   bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
347
348   bool isTargetWindowsMSVC() const {
349     return TargetTriple.isWindowsMSVCEnvironment();
350   }
351
352   bool isTargetKnownWindowsMSVC() const {
353     return TargetTriple.isKnownWindowsMSVCEnvironment();
354   }
355
356   bool isTargetWindowsCygwin() const {
357     return TargetTriple.isWindowsCygwinEnvironment();
358   }
359
360   bool isTargetWindowsGNU() const {
361     return TargetTriple.isWindowsGNUEnvironment();
362   }
363
364   bool isTargetCygMing() const { return TargetTriple.isOSCygMing(); }
365
366   bool isOSWindows() const { return TargetTriple.isOSWindows(); }
367
368   bool isTargetWin64() const {
369     return In64BitMode && TargetTriple.isOSWindows();
370   }
371
372   bool isTargetWin32() const {
373     return !In64BitMode && (isTargetCygMing() || isTargetKnownWindowsMSVC());
374   }
375
376   bool isPICStyleSet() const { return PICStyle != PICStyles::None; }
377   bool isPICStyleGOT() const { return PICStyle == PICStyles::GOT; }
378   bool isPICStyleRIPRel() const { return PICStyle == PICStyles::RIPRel; }
379
380   bool isPICStyleStubPIC() const {
381     return PICStyle == PICStyles::StubPIC;
382   }
383
384   bool isPICStyleStubNoDynamic() const {
385     return PICStyle == PICStyles::StubDynamicNoPIC;
386   }
387   bool isPICStyleStubAny() const {
388     return PICStyle == PICStyles::StubDynamicNoPIC ||
389            PICStyle == PICStyles::StubPIC;
390   }
391
392   bool isCallingConvWin64(CallingConv::ID CC) const {
393     return (isTargetWin64() && CC != CallingConv::X86_64_SysV) ||
394            CC == CallingConv::X86_64_Win64;
395   }
396
397   /// ClassifyGlobalReference - Classify a global variable reference for the
398   /// current subtarget according to how we should reference it in a non-pcrel
399   /// context.
400   unsigned char ClassifyGlobalReference(const GlobalValue *GV,
401                                         const TargetMachine &TM)const;
402
403   /// ClassifyBlockAddressReference - Classify a blockaddress reference for the
404   /// current subtarget according to how we should reference it in a non-pcrel
405   /// context.
406   unsigned char ClassifyBlockAddressReference() const;
407
408   /// IsLegalToCallImmediateAddr - Return true if the subtarget allows calls
409   /// to immediate address.
410   bool IsLegalToCallImmediateAddr(const TargetMachine &TM) const;
411
412   /// This function returns the name of a function which has an interface
413   /// like the non-standard bzero function, if such a function exists on
414   /// the current subtarget and it is considered prefereable over
415   /// memset with zero passed as the second argument. Otherwise it
416   /// returns null.
417   const char *getBZeroEntry() const;
418
419   /// This function returns true if the target has sincos() routine in its
420   /// compiler runtime or math libraries.
421   bool hasSinCos() const;
422
423   /// Enable the MachineScheduler pass for all X86 subtargets.
424   bool enableMachineScheduler() const override { return true; }
425
426   /// enablePostRAScheduler - run for Atom optimization.
427   bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,
428                              TargetSubtargetInfo::AntiDepBreakMode& Mode,
429                              RegClassVector& CriticalPathRCs) const override;
430
431   bool postRAScheduler() const { return PostRAScheduler; }
432
433   bool enableEarlyIfConversion() const override;
434
435   /// getInstrItins = Return the instruction itineraries based on the
436   /// subtarget selection.
437   const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
438 };
439
440 } // End llvm namespace
441
442 #endif