blob: 3c3a2b83617ea52dcf7f64b0e48a62c1cf17876c [file] [log] [blame]
Jia Liue1d61962012-02-19 02:03:36 +00001//===-- X86Subtarget.h - Define Subtarget for the X86 ----------*- C++ -*--===//
Nate Begemanf26625e2005-07-12 01:41:54 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begemanf26625e2005-07-12 01:41:54 +00007//
8//===----------------------------------------------------------------------===//
9//
Evan Cheng0d639a22011-07-01 21:01:15 +000010// This file declares the X86 specific subclass of TargetSubtargetInfo.
Nate Begemanf26625e2005-07-12 01:41:54 +000011//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_TARGET_X86_X86SUBTARGET_H
15#define LLVM_LIB_TARGET_X86_X86SUBTARGET_H
Nate Begemanf26625e2005-07-12 01:41:54 +000016
Eric Christophera08f30b2014-06-09 17:08:19 +000017#include "X86FrameLowering.h"
18#include "X86ISelLowering.h"
19#include "X86InstrInfo.h"
Eric Christopherb9fd9ed2014-08-07 22:02:54 +000020#include "X86JITInfo.h"
Eric Christophera08f30b2014-06-09 17:08:19 +000021#include "X86SelectionDAGInfo.h"
Eric Christopherd4298462010-07-05 19:26:33 +000022#include "llvm/ADT/Triple.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/CallingConv.h"
Evan Cheng0d639a22011-07-01 21:01:15 +000024#include "llvm/Target/TargetSubtargetInfo.h"
Jim Laskey19058c32005-09-01 21:38:21 +000025#include <string>
26
Evan Cheng54b68e32011-07-01 20:45:01 +000027#define GET_SUBTARGETINFO_HEADER
Evan Chengc9c090d2011-07-01 22:36:09 +000028#include "X86GenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000029
Nate Begemanf26625e2005-07-12 01:41:54 +000030namespace llvm {
Anton Korobeynikov6dbdfe22006-11-30 22:42:55 +000031class GlobalValue;
Evan Cheng1a72add62011-07-07 07:07:08 +000032class StringRef;
Anton Korobeynikov430e68a12006-12-22 22:29:05 +000033class TargetMachine;
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +000034
Chris Lattner1c5bf9d2009-07-09 03:15:51 +000035/// PICStyles - The X86 backend supports a number of different styles of PIC.
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +000036///
Duncan Sands595a4422008-11-28 09:29:37 +000037namespace PICStyles {
Anton Korobeynikova0554d92007-01-12 19:20:47 +000038enum Style {
Chris Lattnerba4d7332009-07-10 20:58:47 +000039 StubPIC, // Used on i386-darwin in -fPIC mode.
40 StubDynamicNoPIC, // Used on i386-darwin in -mdynamic-no-pic mode.
41 GOT, // Used on many 32-bit unices in -fPIC mode.
42 RIPRel, // Used on X86-64 when not in -static mode.
43 None // Set when in -static mode (not PIC or DynamicNoPIC mode).
Anton Korobeynikova0554d92007-01-12 19:20:47 +000044};
45}
Nate Begemanf26625e2005-07-12 01:41:54 +000046
Craig Topperec828472014-03-31 06:53:13 +000047class X86Subtarget final : public X86GenSubtargetInfo {
Eric Christophera08f30b2014-06-09 17:08:19 +000048
Nate Begemanf26625e2005-07-12 01:41:54 +000049protected:
Evan Chengcde9e302006-01-27 08:10:46 +000050 enum X86SSEEnum {
Craig Topper5c94bb82013-08-21 03:57:57 +000051 NoMMXSSE, MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, AVX, AVX2, AVX512F
Evan Chengcde9e302006-01-27 08:10:46 +000052 };
53
Evan Chengff1beda2006-10-06 09:17:41 +000054 enum X863DNowEnum {
55 NoThreeDNow, ThreeDNow, ThreeDNowA
56 };
57
Andrew Trick8523b162012-02-01 23:20:51 +000058 enum X86ProcFamilyEnum {
Preston Gurd3fe264d2013-09-13 19:23:28 +000059 Others, IntelAtom, IntelSLM
Andrew Trick8523b162012-02-01 23:20:51 +000060 };
61
62 /// X86ProcFamily - X86 processor family: Intel Atom, and others
63 X86ProcFamilyEnum X86ProcFamily;
Chad Rosier24c19d22012-08-01 18:39:17 +000064
Anton Korobeynikova0554d92007-01-12 19:20:47 +000065 /// PICStyle - Which PIC style to use
Evan Cheng763cdfd2007-08-01 23:45:51 +000066 ///
Duncan Sands595a4422008-11-28 09:29:37 +000067 PICStyles::Style PICStyle;
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +000068
Evan Cheng352acec2008-02-12 07:59:55 +000069 /// X86SSELevel - MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, or
70 /// none supported.
Evan Chengcde9e302006-01-27 08:10:46 +000071 X86SSEEnum X86SSELevel;
72
Evan Chengff1beda2006-10-06 09:17:41 +000073 /// X863DNowLevel - 3DNow or 3DNow Athlon, or none supported.
Evan Cheng763cdfd2007-08-01 23:45:51 +000074 ///
Evan Chengff1beda2006-10-06 09:17:41 +000075 X863DNowEnum X863DNowLevel;
76
Chris Lattnercc8c5812009-09-02 05:53:04 +000077 /// HasCMov - True if this processor has conditional move instructions
78 /// (generally pentium pro+).
79 bool HasCMov;
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +000080
Evan Cheng11b0a5d2006-09-08 06:48:29 +000081 /// HasX86_64 - True if the processor supports X86-64 instructions.
Evan Cheng763cdfd2007-08-01 23:45:51 +000082 ///
Evan Cheng11b0a5d2006-09-08 06:48:29 +000083 bool HasX86_64;
Evan Cheng4c91aa32009-01-02 05:35:45 +000084
Benjamin Kramer2f489232010-12-04 20:32:23 +000085 /// HasPOPCNT - True if the processor supports POPCNT.
86 bool HasPOPCNT;
87
Stefanus Du Toit96180b52009-05-26 21:04:35 +000088 /// HasSSE4A - True if the processor supports SSE4A instructions.
89 bool HasSSE4A;
90
Eric Christopher2ef63182010-04-02 21:54:27 +000091 /// HasAES - Target has AES instructions
92 bool HasAES;
93
Benjamin Kramera0396e42012-05-31 14:34:17 +000094 /// HasPCLMUL - Target has carry-less multiplication
95 bool HasPCLMUL;
Bruno Cardoso Lopes09dc24b2010-07-23 01:17:51 +000096
Craig Topper79dbb0c2012-06-03 18:58:46 +000097 /// HasFMA - Target has 3-operand fused multiply-add
98 bool HasFMA;
David Greene8f6f72c2009-06-26 22:46:54 +000099
100 /// HasFMA4 - Target has 4-operand fused multiply-add
101 bool HasFMA4;
102
Jan Sjödin1280eb12011-12-02 15:14:37 +0000103 /// HasXOP - Target has XOP instructions
104 bool HasXOP;
105
Yunzhong Gaodd36e932013-09-24 18:21:52 +0000106 /// HasTBM - Target has TBM instructions.
107 bool HasTBM;
108
Craig Topperfe9179f2011-10-09 07:31:39 +0000109 /// HasMOVBE - True if the processor has the MOVBE instruction.
Craig Topper786bdb92011-10-03 17:28:23 +0000110 bool HasMOVBE;
111
Craig Topperfe9179f2011-10-09 07:31:39 +0000112 /// HasRDRAND - True if the processor has the RDRAND instruction.
Craig Topper786bdb92011-10-03 17:28:23 +0000113 bool HasRDRAND;
114
Craig Topperfe9179f2011-10-09 07:31:39 +0000115 /// HasF16C - Processor has 16-bit floating point conversion instructions.
116 bool HasF16C;
117
Craig Topper228d9132011-10-30 19:57:21 +0000118 /// HasFSGSBase - Processor has FS/GS base insturctions.
119 bool HasFSGSBase;
120
Craig Topper271064e2011-10-11 06:44:02 +0000121 /// HasLZCNT - Processor has LZCNT instruction.
122 bool HasLZCNT;
123
Craig Topper3657fe42011-10-14 03:21:46 +0000124 /// HasBMI - Processor has BMI1 instructions.
125 bool HasBMI;
126
Craig Topperaea148c2011-10-16 07:55:05 +0000127 /// HasBMI2 - Processor has BMI2 instructions.
128 bool HasBMI2;
129
Michael Liao73cffdd2012-11-08 07:28:54 +0000130 /// HasRTM - Processor has RTM instructions.
131 bool HasRTM;
132
Michael Liaoe344ec92013-03-26 22:46:02 +0000133 /// HasHLE - Processor has HLE.
134 bool HasHLE;
135
Kay Tiong Khoof809c642013-02-14 19:08:21 +0000136 /// HasADX - Processor has ADX instructions.
137 bool HasADX;
138
Ben Langmuir16501752013-09-12 15:51:31 +0000139 /// HasSHA - Processor has SHA instructions.
140 bool HasSHA;
141
Kevin Enderby0d928a12014-07-31 23:57:38 +0000142 /// HasSGX - Processor has SGX instructions.
143 bool HasSGX;
144
Michael Liao5173ee02013-03-26 17:47:11 +0000145 /// HasPRFCHW - Processor has PRFCHW instructions.
146 bool HasPRFCHW;
147
Michael Liaoa486a112013-03-28 23:41:26 +0000148 /// HasRDSEED - Processor has RDSEED instructions.
149 bool HasRDSEED;
150
David Greene8f6f72c2009-06-26 22:46:54 +0000151 /// IsBTMemSlow - True if BT (bit test) of memory instructions are slow.
152 bool IsBTMemSlow;
Evan Cheng4cf30b72009-12-18 07:40:29 +0000153
Ekaterina Romanovad5fa5542013-11-21 23:21:26 +0000154 /// IsSHLDSlow - True if SHLD instructions are slow.
155 bool IsSHLDSlow;
156
Evan Cheng738b0f92010-04-01 05:58:17 +0000157 /// IsUAMemFast - True if unaligned memory access is fast.
158 bool IsUAMemFast;
159
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +0000160 /// HasVectorUAMem - True if SIMD operations can have unaligned memory
Evan Cheng9c8cd8c2010-04-21 01:47:12 +0000161 /// operands. This may require setting a feature bit in the processor.
David Greene206351a2010-01-11 16:29:42 +0000162 bool HasVectorUAMem;
163
Eli Friedman5e570422011-08-26 21:21:21 +0000164 /// HasCmpxchg16b - True if this processor has the CMPXCHG16B instruction;
165 /// this is true for most x86-64 chips, but not the first AMD chips.
166 bool HasCmpxchg16b;
167
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000168 /// UseLeaForSP - True if the LEA instruction should be used for adjusting
169 /// the stack pointer. This is an optimization for Intel Atom processors.
170 bool UseLeaForSP;
171
Preston Gurdcdf540d2012-09-04 18:22:17 +0000172 /// HasSlowDivide - True if smaller divides are significantly faster than
173 /// full divides and should be used when possible.
174 bool HasSlowDivide;
175
Preston Gurda01daac2013-01-08 18:27:24 +0000176 /// PadShortFunctions - True if the short functions should be padded to prevent
177 /// a stall when returning too early.
178 bool PadShortFunctions;
179
Preston Gurd663e6f92013-03-27 19:14:02 +0000180 /// CallRegIndirect - True if the Calls with memory reference should be converted
181 /// to a register-based indirect call.
182 bool CallRegIndirect;
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000183 /// LEAUsesAG - True if the LEA instruction inputs have to be ready at
184 /// address generation (AG) time.
185 bool LEAUsesAG;
Preston Gurd663e6f92013-03-27 19:14:02 +0000186
Alexey Volkov6226de62014-05-20 08:55:50 +0000187 /// SlowLEA - True if the LEA instruction with certain arguments is slow
188 bool SlowLEA;
189
Alexey Volkov5260dba2014-06-09 11:40:41 +0000190 /// SlowIncDec - True if INC and DEC instructions are slow when writing to flags
191 bool SlowIncDec;
192
Elena Demikhovsky8cfb43f2013-07-24 11:02:47 +0000193 /// Processor has AVX-512 PreFetch Instructions
194 bool HasPFI;
Robert Khasanovbfa01312014-07-21 14:54:21 +0000195
Elena Demikhovsky8cfb43f2013-07-24 11:02:47 +0000196 /// Processor has AVX-512 Exponential and Reciprocal Instructions
197 bool HasERI;
Robert Khasanovbfa01312014-07-21 14:54:21 +0000198
Elena Demikhovsky8cfb43f2013-07-24 11:02:47 +0000199 /// Processor has AVX-512 Conflict Detection Instructions
200 bool HasCDI;
Robert Khasanovbfa01312014-07-21 14:54:21 +0000201
202 /// Processor has AVX-512 Doubleword and Quadword instructions
203 bool HasDQI;
204
205 /// Processor has AVX-512 Byte and Word instructions
206 bool HasBWI;
207
208 /// Processor has AVX-512 Vector Length eXtenstions
209 bool HasVLX;
210
Chris Lattner351817b2005-07-12 02:36:10 +0000211 /// stackAlignment - The minimum alignment known to hold of the stack frame on
212 /// entry to the function and which must be maintained by every function.
Nate Begemanf26625e2005-07-12 01:41:54 +0000213 unsigned stackAlignment;
Jeff Cohen33a030e2005-07-27 05:53:44 +0000214
Rafael Espindola063f1772007-10-31 11:52:06 +0000215 /// Max. memset / memcpy size that is turned into rep/movs, rep/stos ops.
Evan Cheng763cdfd2007-08-01 23:45:51 +0000216 ///
Rafael Espindola063f1772007-10-31 11:52:06 +0000217 unsigned MaxInlineSizeThreshold;
NAKAMURA Takumi0544fe72011-02-17 12:23:50 +0000218
Eric Christopherd4298462010-07-05 19:26:33 +0000219 /// TargetTriple - What processor and OS we're targeting.
220 Triple TargetTriple;
Chad Rosier24c19d22012-08-01 18:39:17 +0000221
Andrew Trick8523b162012-02-01 23:20:51 +0000222 /// Instruction itineraries for scheduling
223 InstrItineraryData InstrItins;
Evan Cheng03c1e6f2006-02-16 00:21:07 +0000224
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000225private:
Eric Christophere950b672014-08-09 04:38:53 +0000226 // Calculates type size & alignment
227 const DataLayout DL;
228
Bill Wendlingaef9c372013-02-15 22:31:27 +0000229 /// StackAlignOverride - Override the stack alignment.
230 unsigned StackAlignOverride;
231
Craig Topper3c80d622014-01-06 04:55:54 +0000232 /// In64BitMode - True if compiling for 64-bit, false for 16-bit or 32-bit.
Evan Cheng13bcc6c2011-07-07 21:06:52 +0000233 bool In64BitMode;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000234
Craig Topper3c80d622014-01-06 04:55:54 +0000235 /// In32BitMode - True if compiling for 32-bit, false for 16-bit or 64-bit.
236 bool In32BitMode;
237
238 /// In16BitMode - True if compiling for 16-bit, false for 32-bit or 64-bit.
239 bool In16BitMode;
240
Eric Christophera08f30b2014-06-09 17:08:19 +0000241 X86SelectionDAGInfo TSInfo;
Eric Christopher1a212032014-06-11 00:25:19 +0000242 // Ordering here is important. X86InstrInfo initializes X86RegisterInfo which
243 // X86TargetLowering needs.
244 X86InstrInfo InstrInfo;
245 X86TargetLowering TLInfo;
246 X86FrameLowering FrameLowering;
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000247 X86JITInfo JITInfo;
Eric Christophera08f30b2014-06-09 17:08:19 +0000248
Nate Begemanf26625e2005-07-12 01:41:54 +0000249public:
Jeff Cohen33a030e2005-07-27 05:53:44 +0000250 /// This constructor initializes the data members to match that
Daniel Dunbar31b44e82009-08-02 22:11:08 +0000251 /// of the specified triple.
Nate Begemanf26625e2005-07-12 01:41:54 +0000252 ///
Evan Chengfe6e4052011-06-30 01:53:36 +0000253 X86Subtarget(const std::string &TT, const std::string &CPU,
Eric Christophera08f30b2014-06-09 17:08:19 +0000254 const std::string &FS, X86TargetMachine &TM,
David Woodhouse1c3996a2014-01-08 00:08:50 +0000255 unsigned StackAlignOverride);
Eric Christophera08f30b2014-06-09 17:08:19 +0000256
Eric Christopherd9134482014-08-04 21:25:23 +0000257 const X86TargetLowering *getTargetLowering() const override {
258 return &TLInfo;
259 }
260 const X86InstrInfo *getInstrInfo() const override { return &InstrInfo; }
261 const DataLayout *getDataLayout() const override { return &DL; }
262 const X86FrameLowering *getFrameLowering() const override {
263 return &FrameLowering;
264 }
265 const X86SelectionDAGInfo *getSelectionDAGInfo() const override {
266 return &TSInfo;
267 }
268 const X86RegisterInfo *getRegisterInfo() const override {
269 return &getInstrInfo()->getRegisterInfo();
270 }
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000271 X86JITInfo *getJITInfo() override { return &JITInfo; }
Chris Lattner351817b2005-07-12 02:36:10 +0000272
273 /// getStackAlignment - Returns the minimum alignment known to hold of the
274 /// stack frame on entry to the function and which must be maintained by every
275 /// function for this subtarget.
Nate Begemanf26625e2005-07-12 01:41:54 +0000276 unsigned getStackAlignment() const { return stackAlignment; }
Jeff Cohen33a030e2005-07-27 05:53:44 +0000277
Rafael Espindola063f1772007-10-31 11:52:06 +0000278 /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
279 /// that still makes it profitable to inline the call.
280 unsigned getMaxInlineSizeThreshold() const { return MaxInlineSizeThreshold; }
Anton Korobeynikov5b96cde2006-11-21 00:01:06 +0000281
282 /// ParseSubtargetFeatures - Parses features string setting specified
Evan Chengff1beda2006-10-06 09:17:41 +0000283 /// subtarget options. Definition of function is auto generated by tblgen.
Evan Cheng1a72add62011-07-07 07:07:08 +0000284 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
Evan Chengff1beda2006-10-06 09:17:41 +0000285
Bill Wendlingaef9c372013-02-15 22:31:27 +0000286 /// \brief Reset the features for the X86 target.
Craig Topper2d9361e2014-03-09 07:44:38 +0000287 void resetSubtargetFeatures(const MachineFunction *MF) override;
Bill Wendling61375d82013-02-16 01:36:26 +0000288private:
Eric Christopher1a212032014-06-11 00:25:19 +0000289 /// \brief Initialize the full set of dependencies so we can use an initializer
290 /// list for X86Subtarget.
291 X86Subtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS);
Bill Wendling61375d82013-02-16 01:36:26 +0000292 void initializeEnvironment();
Bill Wendlingaef9c372013-02-15 22:31:27 +0000293 void resetSubtargetFeatures(StringRef CPU, StringRef FS);
Bill Wendling61375d82013-02-16 01:36:26 +0000294public:
Eli Bendersky597fc122013-01-25 22:07:43 +0000295 /// Is this x86_64? (disregarding specific ABI / programming model)
296 bool is64Bit() const {
297 return In64BitMode;
298 }
299
Craig Topper3c80d622014-01-06 04:55:54 +0000300 bool is32Bit() const {
301 return In32BitMode;
302 }
303
304 bool is16Bit() const {
305 return In16BitMode;
306 }
307
Eli Bendersky597fc122013-01-25 22:07:43 +0000308 /// Is this x86_64 with the ILP32 programming model (x32 ABI)?
309 bool isTarget64BitILP32() const {
Rafael Espindoladdb913c2013-12-19 00:44:37 +0000310 return In64BitMode && (TargetTriple.getEnvironment() == Triple::GNUX32 ||
311 TargetTriple.getOS() == Triple::NaCl);
Eli Bendersky597fc122013-01-25 22:07:43 +0000312 }
313
314 /// Is this x86_64 with the LP64 programming model (standard AMD64, no x32)?
315 bool isTarget64BitLP64() const {
Pavel Chupinf55eb452014-08-07 09:41:19 +0000316 return In64BitMode && (TargetTriple.getEnvironment() != Triple::GNUX32 &&
317 TargetTriple.getOS() != Triple::NaCl);
Eli Bendersky597fc122013-01-25 22:07:43 +0000318 }
Evan Cheng54c13da2006-01-26 09:53:06 +0000319
Duncan Sands595a4422008-11-28 09:29:37 +0000320 PICStyles::Style getPICStyle() const { return PICStyle; }
321 void setPICStyle(PICStyles::Style Style) { PICStyle = Style; }
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000322
Chris Lattnera30d4ce2010-03-14 18:31:44 +0000323 bool hasCMov() const { return HasCMov; }
Evan Chengcde9e302006-01-27 08:10:46 +0000324 bool hasMMX() const { return X86SSELevel >= MMX; }
Craig Toppereb8f9e92012-01-10 06:30:56 +0000325 bool hasSSE1() const { return X86SSELevel >= SSE1; }
326 bool hasSSE2() const { return X86SSELevel >= SSE2; }
327 bool hasSSE3() const { return X86SSELevel >= SSE3; }
328 bool hasSSSE3() const { return X86SSELevel >= SSSE3; }
329 bool hasSSE41() const { return X86SSELevel >= SSE41; }
330 bool hasSSE42() const { return X86SSELevel >= SSE42; }
Craig Topperb0c0f722012-01-10 06:54:16 +0000331 bool hasAVX() const { return X86SSELevel >= AVX; }
332 bool hasAVX2() const { return X86SSELevel >= AVX2; }
Craig Topper5c94bb82013-08-21 03:57:57 +0000333 bool hasAVX512() const { return X86SSELevel >= AVX512F; }
Elena Demikhovskyeace43b2012-11-29 12:44:59 +0000334 bool hasFp256() const { return hasAVX(); }
335 bool hasInt256() const { return hasAVX2(); }
Stefanus Du Toit96180b52009-05-26 21:04:35 +0000336 bool hasSSE4A() const { return HasSSE4A; }
Evan Chengff1beda2006-10-06 09:17:41 +0000337 bool has3DNow() const { return X863DNowLevel >= ThreeDNow; }
338 bool has3DNowA() const { return X863DNowLevel >= ThreeDNowA; }
Benjamin Kramer2f489232010-12-04 20:32:23 +0000339 bool hasPOPCNT() const { return HasPOPCNT; }
Eric Christopher2ef63182010-04-02 21:54:27 +0000340 bool hasAES() const { return HasAES; }
Benjamin Kramera0396e42012-05-31 14:34:17 +0000341 bool hasPCLMUL() const { return HasPCLMUL; }
Craig Topper79dbb0c2012-06-03 18:58:46 +0000342 bool hasFMA() const { return HasFMA; }
Craig Topper663d1602012-08-24 04:03:22 +0000343 // FIXME: Favor FMA when both are enabled. Is this the right thing to do?
Craig Topper4a4634d2012-08-23 18:14:30 +0000344 bool hasFMA4() const { return HasFMA4 && !HasFMA; }
Jan Sjödin1280eb12011-12-02 15:14:37 +0000345 bool hasXOP() const { return HasXOP; }
Yunzhong Gaodd36e932013-09-24 18:21:52 +0000346 bool hasTBM() const { return HasTBM; }
Craig Topper786bdb92011-10-03 17:28:23 +0000347 bool hasMOVBE() const { return HasMOVBE; }
348 bool hasRDRAND() const { return HasRDRAND; }
Craig Topperfe9179f2011-10-09 07:31:39 +0000349 bool hasF16C() const { return HasF16C; }
Craig Topper228d9132011-10-30 19:57:21 +0000350 bool hasFSGSBase() const { return HasFSGSBase; }
Craig Topper271064e2011-10-11 06:44:02 +0000351 bool hasLZCNT() const { return HasLZCNT; }
Craig Topper3657fe42011-10-14 03:21:46 +0000352 bool hasBMI() const { return HasBMI; }
Craig Topperaea148c2011-10-16 07:55:05 +0000353 bool hasBMI2() const { return HasBMI2; }
Michael Liao73cffdd2012-11-08 07:28:54 +0000354 bool hasRTM() const { return HasRTM; }
Michael Liaoe344ec92013-03-26 22:46:02 +0000355 bool hasHLE() const { return HasHLE; }
Kay Tiong Khoof809c642013-02-14 19:08:21 +0000356 bool hasADX() const { return HasADX; }
Ben Langmuir16501752013-09-12 15:51:31 +0000357 bool hasSHA() const { return HasSHA; }
Kevin Enderby0d928a12014-07-31 23:57:38 +0000358 bool hasSGX() const { return HasSGX; }
Michael Liao5173ee02013-03-26 17:47:11 +0000359 bool hasPRFCHW() const { return HasPRFCHW; }
Michael Liaoa486a112013-03-28 23:41:26 +0000360 bool hasRDSEED() const { return HasRDSEED; }
Evan Cheng4c91aa32009-01-02 05:35:45 +0000361 bool isBTMemSlow() const { return IsBTMemSlow; }
Ekaterina Romanovad5fa5542013-11-21 23:21:26 +0000362 bool isSHLDSlow() const { return IsSHLDSlow; }
Evan Cheng738b0f92010-04-01 05:58:17 +0000363 bool isUnalignedMemAccessFast() const { return IsUAMemFast; }
David Greene206351a2010-01-11 16:29:42 +0000364 bool hasVectorUAMem() const { return HasVectorUAMem; }
Eli Friedman5e570422011-08-26 21:21:21 +0000365 bool hasCmpxchg16b() const { return HasCmpxchg16b; }
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000366 bool useLeaForSP() const { return UseLeaForSP; }
Preston Gurdcdf540d2012-09-04 18:22:17 +0000367 bool hasSlowDivide() const { return HasSlowDivide; }
Preston Gurda01daac2013-01-08 18:27:24 +0000368 bool padShortFunctions() const { return PadShortFunctions; }
Preston Gurd663e6f92013-03-27 19:14:02 +0000369 bool callRegIndirect() const { return CallRegIndirect; }
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000370 bool LEAusesAG() const { return LEAUsesAG; }
Alexey Volkov6226de62014-05-20 08:55:50 +0000371 bool slowLEA() const { return SlowLEA; }
Alexey Volkov5260dba2014-06-09 11:40:41 +0000372 bool slowIncDec() const { return SlowIncDec; }
Elena Demikhovsky8cfb43f2013-07-24 11:02:47 +0000373 bool hasCDI() const { return HasCDI; }
374 bool hasPFI() const { return HasPFI; }
375 bool hasERI() const { return HasERI; }
Robert Khasanovbfa01312014-07-21 14:54:21 +0000376 bool hasDQI() const { return HasDQI; }
377 bool hasBWI() const { return HasBWI; }
378 bool hasVLX() const { return HasVLX; }
Evan Cheng4c91aa32009-01-02 05:35:45 +0000379
Andrew Trick8523b162012-02-01 23:20:51 +0000380 bool isAtom() const { return X86ProcFamily == IntelAtom; }
Alexey Volkov6226de62014-05-20 08:55:50 +0000381 bool isSLM() const { return X86ProcFamily == IntelSLM; }
Andrew Trick8523b162012-02-01 23:20:51 +0000382
Daniel Dunbar44b53032011-04-19 21:01:47 +0000383 const Triple &getTargetTriple() const { return TargetTriple; }
384
Daniel Dunbar2b9b0e32011-04-19 21:14:45 +0000385 bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); }
386 bool isTargetFreeBSD() const {
387 return TargetTriple.getOS() == Triple::FreeBSD;
388 }
389 bool isTargetSolaris() const {
390 return TargetTriple.getOS() == Triple::Solaris;
391 }
Tim Northover9653eb52013-12-10 16:57:43 +0000392
393 bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
394 bool isTargetCOFF() const { return TargetTriple.isOSBinFormatCOFF(); }
395 bool isTargetMacho() const { return TargetTriple.isOSBinFormatMachO(); }
396
Cameron Esfahani943908b2013-08-29 20:23:14 +0000397 bool isTargetLinux() const { return TargetTriple.isOSLinux(); }
398 bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
Nick Lewycky73df7e32011-09-05 21:51:43 +0000399 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
400 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
Yaron Keren28954962014-04-02 04:27:51 +0000401
402 bool isTargetWindowsMSVC() const {
403 return TargetTriple.isWindowsMSVCEnvironment();
404 }
405
Yaron Keren136fe7d2014-04-01 18:15:34 +0000406 bool isTargetKnownWindowsMSVC() const {
NAKAMURA Takumi09717bd2014-03-30 04:35:00 +0000407 return TargetTriple.isKnownWindowsMSVCEnvironment();
Saleem Abdulrasooledbdd2e2014-03-27 22:50:05 +0000408 }
Yaron Keren28954962014-04-02 04:27:51 +0000409
410 bool isTargetWindowsCygwin() const {
Saleem Abdulrasooledbdd2e2014-03-27 22:50:05 +0000411 return TargetTriple.isWindowsCygwinEnvironment();
412 }
Yaron Keren28954962014-04-02 04:27:51 +0000413
414 bool isTargetWindowsGNU() const {
415 return TargetTriple.isWindowsGNUEnvironment();
416 }
417
Chandler Carruthebd90c52012-02-05 08:26:40 +0000418 bool isTargetCygMing() const { return TargetTriple.isOSCygMing(); }
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +0000419
Yaron Keren79bb2662013-10-23 23:37:01 +0000420 bool isOSWindows() const { return TargetTriple.isOSWindows(); }
421
Anton Korobeynikov7f125b22008-03-22 20:57:27 +0000422 bool isTargetWin64() const {
Chandler Carruthebd90c52012-02-05 08:26:40 +0000423 return In64BitMode && TargetTriple.isOSWindows();
Evan Chengd22a4a12011-02-01 01:14:13 +0000424 }
425
Anton Korobeynikova5a64552010-09-02 23:03:46 +0000426 bool isTargetWin32() const {
Yaron Keren136fe7d2014-04-01 18:15:34 +0000427 return !In64BitMode && (isTargetCygMing() || isTargetKnownWindowsMSVC());
Anton Korobeynikova5a64552010-09-02 23:03:46 +0000428 }
429
Duncan Sands595a4422008-11-28 09:29:37 +0000430 bool isPICStyleSet() const { return PICStyle != PICStyles::None; }
431 bool isPICStyleGOT() const { return PICStyle == PICStyles::GOT; }
Duncan Sands595a4422008-11-28 09:29:37 +0000432 bool isPICStyleRIPRel() const { return PICStyle == PICStyles::RIPRel; }
Chris Lattnere2f524f2009-07-10 20:47:30 +0000433
Chris Lattner21c29402009-07-10 21:00:45 +0000434 bool isPICStyleStubPIC() const {
Chris Lattnerba4d7332009-07-10 20:58:47 +0000435 return PICStyle == PICStyles::StubPIC;
436 }
437
Chris Lattner21c29402009-07-10 21:00:45 +0000438 bool isPICStyleStubNoDynamic() const {
Chris Lattnerba4d7332009-07-10 20:58:47 +0000439 return PICStyle == PICStyles::StubDynamicNoPIC;
440 }
441 bool isPICStyleStubAny() const {
442 return PICStyle == PICStyles::StubDynamicNoPIC ||
Charles Davise8f297c2013-07-12 06:02:35 +0000443 PICStyle == PICStyles::StubPIC;
444 }
445
446 bool isCallingConvWin64(CallingConv::ID CC) const {
447 return (isTargetWin64() && CC != CallingConv::X86_64_SysV) ||
448 CC == CallingConv::X86_64_Win64;
449 }
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +0000450
Chris Lattnerdc842c02009-07-10 07:20:05 +0000451 /// ClassifyGlobalReference - Classify a global variable reference for the
452 /// current subtarget according to how we should reference it in a non-pcrel
453 /// context.
454 unsigned char ClassifyGlobalReference(const GlobalValue *GV,
455 const TargetMachine &TM)const;
Anton Korobeynikov93acb492006-12-20 01:03:20 +0000456
Dan Gohman7a6611792009-11-20 23:18:13 +0000457 /// ClassifyBlockAddressReference - Classify a blockaddress reference for the
458 /// current subtarget according to how we should reference it in a non-pcrel
459 /// context.
460 unsigned char ClassifyBlockAddressReference() const;
461
Evan Cheng96098332009-05-20 04:53:57 +0000462 /// IsLegalToCallImmediateAddr - Return true if the subtarget allows calls
463 /// to immediate address.
464 bool IsLegalToCallImmediateAddr(const TargetMachine &TM) const;
465
Dan Gohman980d7202008-04-01 20:38:36 +0000466 /// This function returns the name of a function which has an interface
467 /// like the non-standard bzero function, if such a function exists on
468 /// the current subtarget and it is considered prefereable over
469 /// memset with zero passed as the second argument. Otherwise it
470 /// returns null.
Bill Wendling17825842008-09-30 22:05:33 +0000471 const char *getBZeroEntry() const;
Andrew Tricke97d8d62013-10-15 23:33:07 +0000472
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000473 /// This function returns true if the target has sincos() routine in its
474 /// compiler runtime or math libraries.
475 bool hasSinCos() const;
Dan Gohmanb9a01212008-12-16 03:35:01 +0000476
Andrew Tricke97d8d62013-10-15 23:33:07 +0000477 /// Enable the MachineScheduler pass for all X86 subtargets.
Craig Topper73156022014-03-02 09:09:27 +0000478 bool enableMachineScheduler() const override { return true; }
Andrew Tricke97d8d62013-10-15 23:33:07 +0000479
Eric Christopher6b0fcfe2014-05-21 23:40:26 +0000480 bool enableEarlyIfConversion() const override;
481
Andrew Trick8523b162012-02-01 23:20:51 +0000482 /// getInstrItins = Return the instruction itineraries based on the
483 /// subtarget selection.
Eric Christopherd9134482014-08-04 21:25:23 +0000484 const InstrItineraryData *getInstrItineraryData() const override {
485 return &InstrItins;
486 }
Sanjay Patela2f658d2014-07-15 22:39:58 +0000487
488 AntiDepBreakMode getAntiDepBreakMode() const override {
489 return TargetSubtargetInfo::ANTIDEP_CRITICAL;
490 }
Evan Cheng47455a72009-09-03 04:37:05 +0000491};
Evan Chenga8b4aea2006-10-16 21:00:37 +0000492
Nate Begemanf26625e2005-07-12 01:41:54 +0000493} // End llvm namespace
494
495#endif