blob: 87932388703e90f34c30be08c92be5a8b553a0a0 [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
14#ifndef X86SUBTARGET_H
15#define X86SUBTARGET_H
16
Eric Christopherd4298462010-07-05 19:26:33 +000017#include "llvm/ADT/Triple.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000018#include "llvm/IR/CallingConv.h"
Evan Cheng0d639a22011-07-01 21:01:15 +000019#include "llvm/Target/TargetSubtargetInfo.h"
Jim Laskey19058c32005-09-01 21:38:21 +000020#include <string>
21
Evan Cheng54b68e32011-07-01 20:45:01 +000022#define GET_SUBTARGETINFO_HEADER
Evan Chengc9c090d2011-07-01 22:36:09 +000023#include "X86GenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000024
Nate Begemanf26625e2005-07-12 01:41:54 +000025namespace llvm {
Anton Korobeynikov6dbdfe22006-11-30 22:42:55 +000026class GlobalValue;
Evan Cheng1a72add62011-07-07 07:07:08 +000027class StringRef;
Anton Korobeynikov430e68a12006-12-22 22:29:05 +000028class TargetMachine;
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +000029
Chris Lattner1c5bf9d2009-07-09 03:15:51 +000030/// PICStyles - The X86 backend supports a number of different styles of PIC.
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +000031///
Duncan Sands595a4422008-11-28 09:29:37 +000032namespace PICStyles {
Anton Korobeynikova0554d92007-01-12 19:20:47 +000033enum Style {
Chris Lattnerba4d7332009-07-10 20:58:47 +000034 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).
Anton Korobeynikova0554d92007-01-12 19:20:47 +000039};
40}
Nate Begemanf26625e2005-07-12 01:41:54 +000041
Evan Cheng54b68e32011-07-01 20:45:01 +000042class X86Subtarget : public X86GenSubtargetInfo {
Nate Begemanf26625e2005-07-12 01:41:54 +000043protected:
Evan Chengcde9e302006-01-27 08:10:46 +000044 enum X86SSEEnum {
Elena Demikhovsky8cfb43f2013-07-24 11:02:47 +000045 NoMMXSSE, MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, AVX, AVX2, AVX512
Evan Chengcde9e302006-01-27 08:10:46 +000046 };
47
Evan Chengff1beda2006-10-06 09:17:41 +000048 enum X863DNowEnum {
49 NoThreeDNow, ThreeDNow, ThreeDNowA
50 };
51
Andrew Trick8523b162012-02-01 23:20:51 +000052 enum X86ProcFamilyEnum {
53 Others, IntelAtom
54 };
55
56 /// X86ProcFamily - X86 processor family: Intel Atom, and others
57 X86ProcFamilyEnum X86ProcFamily;
Chad Rosier24c19d22012-08-01 18:39:17 +000058
Anton Korobeynikova0554d92007-01-12 19:20:47 +000059 /// PICStyle - Which PIC style to use
Evan Cheng763cdfd2007-08-01 23:45:51 +000060 ///
Duncan Sands595a4422008-11-28 09:29:37 +000061 PICStyles::Style PICStyle;
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +000062
Evan Cheng352acec2008-02-12 07:59:55 +000063 /// X86SSELevel - MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, or
64 /// none supported.
Evan Chengcde9e302006-01-27 08:10:46 +000065 X86SSEEnum X86SSELevel;
66
Evan Chengff1beda2006-10-06 09:17:41 +000067 /// X863DNowLevel - 3DNow or 3DNow Athlon, or none supported.
Evan Cheng763cdfd2007-08-01 23:45:51 +000068 ///
Evan Chengff1beda2006-10-06 09:17:41 +000069 X863DNowEnum X863DNowLevel;
70
Chris Lattnercc8c5812009-09-02 05:53:04 +000071 /// HasCMov - True if this processor has conditional move instructions
72 /// (generally pentium pro+).
73 bool HasCMov;
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +000074
Evan Cheng11b0a5d2006-09-08 06:48:29 +000075 /// HasX86_64 - True if the processor supports X86-64 instructions.
Evan Cheng763cdfd2007-08-01 23:45:51 +000076 ///
Evan Cheng11b0a5d2006-09-08 06:48:29 +000077 bool HasX86_64;
Evan Cheng4c91aa32009-01-02 05:35:45 +000078
Benjamin Kramer2f489232010-12-04 20:32:23 +000079 /// HasPOPCNT - True if the processor supports POPCNT.
80 bool HasPOPCNT;
81
Stefanus Du Toit96180b52009-05-26 21:04:35 +000082 /// HasSSE4A - True if the processor supports SSE4A instructions.
83 bool HasSSE4A;
84
Eric Christopher2ef63182010-04-02 21:54:27 +000085 /// HasAES - Target has AES instructions
86 bool HasAES;
87
Benjamin Kramera0396e42012-05-31 14:34:17 +000088 /// HasPCLMUL - Target has carry-less multiplication
89 bool HasPCLMUL;
Bruno Cardoso Lopes09dc24b2010-07-23 01:17:51 +000090
Craig Topper79dbb0c2012-06-03 18:58:46 +000091 /// HasFMA - Target has 3-operand fused multiply-add
92 bool HasFMA;
David Greene8f6f72c2009-06-26 22:46:54 +000093
94 /// HasFMA4 - Target has 4-operand fused multiply-add
95 bool HasFMA4;
96
Jan Sjödin1280eb12011-12-02 15:14:37 +000097 /// HasXOP - Target has XOP instructions
98 bool HasXOP;
99
Craig Topperfe9179f2011-10-09 07:31:39 +0000100 /// HasMOVBE - True if the processor has the MOVBE instruction.
Craig Topper786bdb92011-10-03 17:28:23 +0000101 bool HasMOVBE;
102
Craig Topperfe9179f2011-10-09 07:31:39 +0000103 /// HasRDRAND - True if the processor has the RDRAND instruction.
Craig Topper786bdb92011-10-03 17:28:23 +0000104 bool HasRDRAND;
105
Craig Topperfe9179f2011-10-09 07:31:39 +0000106 /// HasF16C - Processor has 16-bit floating point conversion instructions.
107 bool HasF16C;
108
Craig Topper228d9132011-10-30 19:57:21 +0000109 /// HasFSGSBase - Processor has FS/GS base insturctions.
110 bool HasFSGSBase;
111
Craig Topper271064e2011-10-11 06:44:02 +0000112 /// HasLZCNT - Processor has LZCNT instruction.
113 bool HasLZCNT;
114
Craig Topper3657fe42011-10-14 03:21:46 +0000115 /// HasBMI - Processor has BMI1 instructions.
116 bool HasBMI;
117
Craig Topperaea148c2011-10-16 07:55:05 +0000118 /// HasBMI2 - Processor has BMI2 instructions.
119 bool HasBMI2;
120
Michael Liao73cffdd2012-11-08 07:28:54 +0000121 /// HasRTM - Processor has RTM instructions.
122 bool HasRTM;
123
Michael Liaoe344ec92013-03-26 22:46:02 +0000124 /// HasHLE - Processor has HLE.
125 bool HasHLE;
126
Kay Tiong Khoof809c642013-02-14 19:08:21 +0000127 /// HasADX - Processor has ADX instructions.
128 bool HasADX;
129
Michael Liao5173ee02013-03-26 17:47:11 +0000130 /// HasPRFCHW - Processor has PRFCHW instructions.
131 bool HasPRFCHW;
132
Michael Liaoa486a112013-03-28 23:41:26 +0000133 /// HasRDSEED - Processor has RDSEED instructions.
134 bool HasRDSEED;
135
David Greene8f6f72c2009-06-26 22:46:54 +0000136 /// IsBTMemSlow - True if BT (bit test) of memory instructions are slow.
137 bool IsBTMemSlow;
Evan Cheng4cf30b72009-12-18 07:40:29 +0000138
Evan Cheng738b0f92010-04-01 05:58:17 +0000139 /// IsUAMemFast - True if unaligned memory access is fast.
140 bool IsUAMemFast;
141
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +0000142 /// HasVectorUAMem - True if SIMD operations can have unaligned memory
Evan Cheng9c8cd8c2010-04-21 01:47:12 +0000143 /// operands. This may require setting a feature bit in the processor.
David Greene206351a2010-01-11 16:29:42 +0000144 bool HasVectorUAMem;
145
Eli Friedman5e570422011-08-26 21:21:21 +0000146 /// HasCmpxchg16b - True if this processor has the CMPXCHG16B instruction;
147 /// this is true for most x86-64 chips, but not the first AMD chips.
148 bool HasCmpxchg16b;
149
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000150 /// UseLeaForSP - True if the LEA instruction should be used for adjusting
151 /// the stack pointer. This is an optimization for Intel Atom processors.
152 bool UseLeaForSP;
153
Preston Gurdcdf540d2012-09-04 18:22:17 +0000154 /// HasSlowDivide - True if smaller divides are significantly faster than
155 /// full divides and should be used when possible.
156 bool HasSlowDivide;
157
Andrew Trick8523b162012-02-01 23:20:51 +0000158 /// PostRAScheduler - True if using post-register-allocation scheduler.
159 bool PostRAScheduler;
160
Preston Gurda01daac2013-01-08 18:27:24 +0000161 /// PadShortFunctions - True if the short functions should be padded to prevent
162 /// a stall when returning too early.
163 bool PadShortFunctions;
164
Preston Gurd663e6f92013-03-27 19:14:02 +0000165 /// CallRegIndirect - True if the Calls with memory reference should be converted
166 /// to a register-based indirect call.
167 bool CallRegIndirect;
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000168 /// LEAUsesAG - True if the LEA instruction inputs have to be ready at
169 /// address generation (AG) time.
170 bool LEAUsesAG;
Preston Gurd663e6f92013-03-27 19:14:02 +0000171
Elena Demikhovsky8cfb43f2013-07-24 11:02:47 +0000172 /// Processor has AVX-512 PreFetch Instructions
173 bool HasPFI;
174
175 /// Processor has AVX-512 Exponential and Reciprocal Instructions
176 bool HasERI;
177
178 /// Processor has AVX-512 Conflict Detection Instructions
179 bool HasCDI;
180
Chris Lattner351817b2005-07-12 02:36:10 +0000181 /// stackAlignment - The minimum alignment known to hold of the stack frame on
182 /// entry to the function and which must be maintained by every function.
Nate Begemanf26625e2005-07-12 01:41:54 +0000183 unsigned stackAlignment;
Jeff Cohen33a030e2005-07-27 05:53:44 +0000184
Rafael Espindola063f1772007-10-31 11:52:06 +0000185 /// Max. memset / memcpy size that is turned into rep/movs, rep/stos ops.
Evan Cheng763cdfd2007-08-01 23:45:51 +0000186 ///
Rafael Espindola063f1772007-10-31 11:52:06 +0000187 unsigned MaxInlineSizeThreshold;
NAKAMURA Takumi0544fe72011-02-17 12:23:50 +0000188
Eric Christopherd4298462010-07-05 19:26:33 +0000189 /// TargetTriple - What processor and OS we're targeting.
190 Triple TargetTriple;
Chad Rosier24c19d22012-08-01 18:39:17 +0000191
Andrew Trick8523b162012-02-01 23:20:51 +0000192 /// Instruction itineraries for scheduling
193 InstrItineraryData InstrItins;
Evan Cheng03c1e6f2006-02-16 00:21:07 +0000194
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000195private:
Bill Wendlingaef9c372013-02-15 22:31:27 +0000196 /// StackAlignOverride - Override the stack alignment.
197 unsigned StackAlignOverride;
198
Evan Cheng13bcc6c2011-07-07 21:06:52 +0000199 /// In64BitMode - True if compiling for 64-bit, false for 32-bit.
200 bool In64BitMode;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000201
Nate Begemanf26625e2005-07-12 01:41:54 +0000202public:
Jeff Cohen33a030e2005-07-27 05:53:44 +0000203 /// This constructor initializes the data members to match that
Daniel Dunbar31b44e82009-08-02 22:11:08 +0000204 /// of the specified triple.
Nate Begemanf26625e2005-07-12 01:41:54 +0000205 ///
Evan Chengfe6e4052011-06-30 01:53:36 +0000206 X86Subtarget(const std::string &TT, const std::string &CPU,
Evan Cheng13bcc6c2011-07-07 21:06:52 +0000207 const std::string &FS,
Evan Cheng60fc0fc2011-07-08 22:30:25 +0000208 unsigned StackAlignOverride, bool is64Bit);
Chris Lattner351817b2005-07-12 02:36:10 +0000209
210 /// getStackAlignment - Returns the minimum alignment known to hold of the
211 /// stack frame on entry to the function and which must be maintained by every
212 /// function for this subtarget.
Nate Begemanf26625e2005-07-12 01:41:54 +0000213 unsigned getStackAlignment() const { return stackAlignment; }
Jeff Cohen33a030e2005-07-27 05:53:44 +0000214
Rafael Espindola063f1772007-10-31 11:52:06 +0000215 /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
216 /// that still makes it profitable to inline the call.
217 unsigned getMaxInlineSizeThreshold() const { return MaxInlineSizeThreshold; }
Anton Korobeynikov5b96cde2006-11-21 00:01:06 +0000218
219 /// ParseSubtargetFeatures - Parses features string setting specified
Evan Chengff1beda2006-10-06 09:17:41 +0000220 /// subtarget options. Definition of function is auto generated by tblgen.
Evan Cheng1a72add62011-07-07 07:07:08 +0000221 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
Evan Chengff1beda2006-10-06 09:17:41 +0000222
223 /// AutoDetectSubtargetFeatures - Auto-detect CPU features using CPUID
224 /// instruction.
225 void AutoDetectSubtargetFeatures();
Evan Cheng54c13da2006-01-26 09:53:06 +0000226
Bill Wendlingaef9c372013-02-15 22:31:27 +0000227 /// \brief Reset the features for the X86 target.
228 virtual void resetSubtargetFeatures(const MachineFunction *MF);
Bill Wendling61375d82013-02-16 01:36:26 +0000229private:
230 void initializeEnvironment();
Bill Wendlingaef9c372013-02-15 22:31:27 +0000231 void resetSubtargetFeatures(StringRef CPU, StringRef FS);
Bill Wendling61375d82013-02-16 01:36:26 +0000232public:
Eli Bendersky597fc122013-01-25 22:07:43 +0000233 /// Is this x86_64? (disregarding specific ABI / programming model)
234 bool is64Bit() const {
235 return In64BitMode;
236 }
237
238 /// Is this x86_64 with the ILP32 programming model (x32 ABI)?
239 bool isTarget64BitILP32() const {
240 return In64BitMode && (TargetTriple.getEnvironment() == Triple::GNUX32);
241 }
242
243 /// Is this x86_64 with the LP64 programming model (standard AMD64, no x32)?
244 bool isTarget64BitLP64() const {
245 return In64BitMode && (TargetTriple.getEnvironment() != Triple::GNUX32);
246 }
Evan Cheng54c13da2006-01-26 09:53:06 +0000247
Duncan Sands595a4422008-11-28 09:29:37 +0000248 PICStyles::Style getPICStyle() const { return PICStyle; }
249 void setPICStyle(PICStyles::Style Style) { PICStyle = Style; }
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000250
Chris Lattnera30d4ce2010-03-14 18:31:44 +0000251 bool hasCMov() const { return HasCMov; }
Evan Chengcde9e302006-01-27 08:10:46 +0000252 bool hasMMX() const { return X86SSELevel >= MMX; }
Craig Toppereb8f9e92012-01-10 06:30:56 +0000253 bool hasSSE1() const { return X86SSELevel >= SSE1; }
254 bool hasSSE2() const { return X86SSELevel >= SSE2; }
255 bool hasSSE3() const { return X86SSELevel >= SSE3; }
256 bool hasSSSE3() const { return X86SSELevel >= SSSE3; }
257 bool hasSSE41() const { return X86SSELevel >= SSE41; }
258 bool hasSSE42() const { return X86SSELevel >= SSE42; }
Craig Topperb0c0f722012-01-10 06:54:16 +0000259 bool hasAVX() const { return X86SSELevel >= AVX; }
260 bool hasAVX2() const { return X86SSELevel >= AVX2; }
Elena Demikhovsky8cfb43f2013-07-24 11:02:47 +0000261 bool hasAVX512() const { return X86SSELevel >= AVX512; }
Elena Demikhovskyeace43b2012-11-29 12:44:59 +0000262 bool hasFp256() const { return hasAVX(); }
263 bool hasInt256() const { return hasAVX2(); }
Stefanus Du Toit96180b52009-05-26 21:04:35 +0000264 bool hasSSE4A() const { return HasSSE4A; }
Evan Chengff1beda2006-10-06 09:17:41 +0000265 bool has3DNow() const { return X863DNowLevel >= ThreeDNow; }
266 bool has3DNowA() const { return X863DNowLevel >= ThreeDNowA; }
Benjamin Kramer2f489232010-12-04 20:32:23 +0000267 bool hasPOPCNT() const { return HasPOPCNT; }
Eric Christopher2ef63182010-04-02 21:54:27 +0000268 bool hasAES() const { return HasAES; }
Benjamin Kramera0396e42012-05-31 14:34:17 +0000269 bool hasPCLMUL() const { return HasPCLMUL; }
Craig Topper79dbb0c2012-06-03 18:58:46 +0000270 bool hasFMA() const { return HasFMA; }
Craig Topper663d1602012-08-24 04:03:22 +0000271 // FIXME: Favor FMA when both are enabled. Is this the right thing to do?
Craig Topper4a4634d2012-08-23 18:14:30 +0000272 bool hasFMA4() const { return HasFMA4 && !HasFMA; }
Jan Sjödin1280eb12011-12-02 15:14:37 +0000273 bool hasXOP() const { return HasXOP; }
Craig Topper786bdb92011-10-03 17:28:23 +0000274 bool hasMOVBE() const { return HasMOVBE; }
275 bool hasRDRAND() const { return HasRDRAND; }
Craig Topperfe9179f2011-10-09 07:31:39 +0000276 bool hasF16C() const { return HasF16C; }
Craig Topper228d9132011-10-30 19:57:21 +0000277 bool hasFSGSBase() const { return HasFSGSBase; }
Craig Topper271064e2011-10-11 06:44:02 +0000278 bool hasLZCNT() const { return HasLZCNT; }
Craig Topper3657fe42011-10-14 03:21:46 +0000279 bool hasBMI() const { return HasBMI; }
Craig Topperaea148c2011-10-16 07:55:05 +0000280 bool hasBMI2() const { return HasBMI2; }
Michael Liao73cffdd2012-11-08 07:28:54 +0000281 bool hasRTM() const { return HasRTM; }
Michael Liaoe344ec92013-03-26 22:46:02 +0000282 bool hasHLE() const { return HasHLE; }
Kay Tiong Khoof809c642013-02-14 19:08:21 +0000283 bool hasADX() const { return HasADX; }
Michael Liao5173ee02013-03-26 17:47:11 +0000284 bool hasPRFCHW() const { return HasPRFCHW; }
Michael Liaoa486a112013-03-28 23:41:26 +0000285 bool hasRDSEED() const { return HasRDSEED; }
Evan Cheng4c91aa32009-01-02 05:35:45 +0000286 bool isBTMemSlow() const { return IsBTMemSlow; }
Evan Cheng738b0f92010-04-01 05:58:17 +0000287 bool isUnalignedMemAccessFast() const { return IsUAMemFast; }
David Greene206351a2010-01-11 16:29:42 +0000288 bool hasVectorUAMem() const { return HasVectorUAMem; }
Eli Friedman5e570422011-08-26 21:21:21 +0000289 bool hasCmpxchg16b() const { return HasCmpxchg16b; }
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000290 bool useLeaForSP() const { return UseLeaForSP; }
Preston Gurdcdf540d2012-09-04 18:22:17 +0000291 bool hasSlowDivide() const { return HasSlowDivide; }
Preston Gurda01daac2013-01-08 18:27:24 +0000292 bool padShortFunctions() const { return PadShortFunctions; }
Preston Gurd663e6f92013-03-27 19:14:02 +0000293 bool callRegIndirect() const { return CallRegIndirect; }
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000294 bool LEAusesAG() const { return LEAUsesAG; }
Elena Demikhovsky8cfb43f2013-07-24 11:02:47 +0000295 bool hasCDI() const { return HasCDI; }
296 bool hasPFI() const { return HasPFI; }
297 bool hasERI() const { return HasERI; }
Evan Cheng4c91aa32009-01-02 05:35:45 +0000298
Andrew Trick8523b162012-02-01 23:20:51 +0000299 bool isAtom() const { return X86ProcFamily == IntelAtom; }
300
Daniel Dunbar44b53032011-04-19 21:01:47 +0000301 const Triple &getTargetTriple() const { return TargetTriple; }
302
Daniel Dunbar2b9b0e32011-04-19 21:14:45 +0000303 bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); }
304 bool isTargetFreeBSD() const {
305 return TargetTriple.getOS() == Triple::FreeBSD;
306 }
307 bool isTargetSolaris() const {
308 return TargetTriple.getOS() == Triple::Solaris;
309 }
Andrew Kaylorfeb805f2012-10-02 18:38:34 +0000310 bool isTargetELF() const {
311 return (TargetTriple.getEnvironment() == Triple::ELF ||
312 TargetTriple.isOSBinFormatELF());
313 }
Eric Christopherd4298462010-07-05 19:26:33 +0000314 bool isTargetLinux() const { return TargetTriple.getOS() == Triple::Linux; }
Nick Lewycky73df7e32011-09-05 21:51:43 +0000315 bool isTargetNaCl() const {
Eli Benderskyabe54632012-12-04 18:37:26 +0000316 return TargetTriple.getOS() == Triple::NaCl;
Nick Lewycky73df7e32011-09-05 21:51:43 +0000317 }
318 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
319 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
Eric Christopherd4298462010-07-05 19:26:33 +0000320 bool isTargetWindows() const { return TargetTriple.getOS() == Triple::Win32; }
NAKAMURA Takumi4c14a5c2011-02-17 12:24:17 +0000321 bool isTargetMingw() const { return TargetTriple.getOS() == Triple::MinGW32; }
Eric Christopherd4298462010-07-05 19:26:33 +0000322 bool isTargetCygwin() const { return TargetTriple.getOS() == Triple::Cygwin; }
Chandler Carruthebd90c52012-02-05 08:26:40 +0000323 bool isTargetCygMing() const { return TargetTriple.isOSCygMing(); }
Andrew Kaylorfeb805f2012-10-02 18:38:34 +0000324 bool isTargetCOFF() const {
325 return (TargetTriple.getEnvironment() != Triple::ELF &&
326 TargetTriple.isOSBinFormatCOFF());
327 }
Chandler Carruthebd90c52012-02-05 08:26:40 +0000328 bool isTargetEnvMacho() const { return TargetTriple.isEnvironmentMachO(); }
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +0000329
Anton Korobeynikov7f125b22008-03-22 20:57:27 +0000330 bool isTargetWin64() const {
NAKAMURA Takumib66d25552011-07-20 04:02:20 +0000331 // FIXME: x86_64-cygwin has not been released yet.
Chandler Carruthebd90c52012-02-05 08:26:40 +0000332 return In64BitMode && TargetTriple.isOSWindows();
Evan Chengd22a4a12011-02-01 01:14:13 +0000333 }
334
Anton Korobeynikova5a64552010-09-02 23:03:46 +0000335 bool isTargetWin32() const {
Chandler Carruthebd90c52012-02-05 08:26:40 +0000336 // FIXME: Cygwin is included for isTargetWin64 -- should it be included
337 // here too?
Evan Cheng13bcc6c2011-07-07 21:06:52 +0000338 return !In64BitMode && (isTargetMingw() || isTargetWindows());
Anton Korobeynikova5a64552010-09-02 23:03:46 +0000339 }
340
Duncan Sands595a4422008-11-28 09:29:37 +0000341 bool isPICStyleSet() const { return PICStyle != PICStyles::None; }
342 bool isPICStyleGOT() const { return PICStyle == PICStyles::GOT; }
Duncan Sands595a4422008-11-28 09:29:37 +0000343 bool isPICStyleRIPRel() const { return PICStyle == PICStyles::RIPRel; }
Chris Lattnere2f524f2009-07-10 20:47:30 +0000344
Chris Lattner21c29402009-07-10 21:00:45 +0000345 bool isPICStyleStubPIC() const {
Chris Lattnerba4d7332009-07-10 20:58:47 +0000346 return PICStyle == PICStyles::StubPIC;
347 }
348
Chris Lattner21c29402009-07-10 21:00:45 +0000349 bool isPICStyleStubNoDynamic() const {
Chris Lattnerba4d7332009-07-10 20:58:47 +0000350 return PICStyle == PICStyles::StubDynamicNoPIC;
351 }
352 bool isPICStyleStubAny() const {
353 return PICStyle == PICStyles::StubDynamicNoPIC ||
Charles Davise8f297c2013-07-12 06:02:35 +0000354 PICStyle == PICStyles::StubPIC;
355 }
356
357 bool isCallingConvWin64(CallingConv::ID CC) const {
358 return (isTargetWin64() && CC != CallingConv::X86_64_SysV) ||
359 CC == CallingConv::X86_64_Win64;
360 }
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +0000361
Chris Lattnerdc842c02009-07-10 07:20:05 +0000362 /// ClassifyGlobalReference - Classify a global variable reference for the
363 /// current subtarget according to how we should reference it in a non-pcrel
364 /// context.
365 unsigned char ClassifyGlobalReference(const GlobalValue *GV,
366 const TargetMachine &TM)const;
Anton Korobeynikov93acb492006-12-20 01:03:20 +0000367
Dan Gohman7a6611792009-11-20 23:18:13 +0000368 /// ClassifyBlockAddressReference - Classify a blockaddress reference for the
369 /// current subtarget according to how we should reference it in a non-pcrel
370 /// context.
371 unsigned char ClassifyBlockAddressReference() const;
372
Evan Cheng96098332009-05-20 04:53:57 +0000373 /// IsLegalToCallImmediateAddr - Return true if the subtarget allows calls
374 /// to immediate address.
375 bool IsLegalToCallImmediateAddr(const TargetMachine &TM) const;
376
Dan Gohman980d7202008-04-01 20:38:36 +0000377 /// This function returns the name of a function which has an interface
378 /// like the non-standard bzero function, if such a function exists on
379 /// the current subtarget and it is considered prefereable over
380 /// memset with zero passed as the second argument. Otherwise it
381 /// returns null.
Bill Wendling17825842008-09-30 22:05:33 +0000382 const char *getBZeroEntry() const;
Andrew Trick121124a2013-06-25 02:48:58 +0000383
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000384 /// This function returns true if the target has sincos() routine in its
385 /// compiler runtime or math libraries.
386 bool hasSinCos() const;
Dan Gohmanb9a01212008-12-16 03:35:01 +0000387
Andrew Trick8523b162012-02-01 23:20:51 +0000388 /// enablePostRAScheduler - run for Atom optimization.
389 bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,
390 TargetSubtargetInfo::AntiDepBreakMode& Mode,
391 RegClassVector& CriticalPathRCs) const;
392
Preston Gurd9a091472012-04-23 21:39:35 +0000393 bool postRAScheduler() const { return PostRAScheduler; }
394
Andrew Trick8523b162012-02-01 23:20:51 +0000395 /// getInstrItins = Return the instruction itineraries based on the
396 /// subtarget selection.
397 const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
Evan Cheng47455a72009-09-03 04:37:05 +0000398};
Evan Chenga8b4aea2006-10-16 21:00:37 +0000399
Nate Begemanf26625e2005-07-12 01:41:54 +0000400} // End llvm namespace
401
402#endif