Jia Liu | e1d6196 | 2012-02-19 02:03:36 +0000 | [diff] [blame] | 1 | //===-- X86Subtarget.h - Define Subtarget for the X86 ----------*- C++ -*--===// |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Evan Cheng | 0d639a2 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 10 | // This file declares the X86 specific subclass of TargetSubtargetInfo. |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 14 | #ifndef LLVM_LIB_TARGET_X86_X86SUBTARGET_H |
| 15 | #define LLVM_LIB_TARGET_X86_X86SUBTARGET_H |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 16 | |
Eric Christopher | a08f30b | 2014-06-09 17:08:19 +0000 | [diff] [blame] | 17 | #include "X86FrameLowering.h" |
| 18 | #include "X86ISelLowering.h" |
| 19 | #include "X86InstrInfo.h" |
Eric Christopher | a08f30b | 2014-06-09 17:08:19 +0000 | [diff] [blame] | 20 | #include "X86SelectionDAGInfo.h" |
Eric Christopher | d429846 | 2010-07-05 19:26:33 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/Triple.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 22 | #include "llvm/IR/CallingConv.h" |
Evan Cheng | 0d639a2 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetSubtargetInfo.h" |
Jim Laskey | 19058c3 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 24 | #include <string> |
| 25 | |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 26 | #define GET_SUBTARGETINFO_HEADER |
Evan Cheng | c9c090d | 2011-07-01 22:36:09 +0000 | [diff] [blame] | 27 | #include "X86GenSubtargetInfo.inc" |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 28 | |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 29 | namespace llvm { |
Anton Korobeynikov | 6dbdfe2 | 2006-11-30 22:42:55 +0000 | [diff] [blame] | 30 | class GlobalValue; |
Evan Cheng | 1a72add6 | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 31 | class StringRef; |
Anton Korobeynikov | 430e68a1 | 2006-12-22 22:29:05 +0000 | [diff] [blame] | 32 | class TargetMachine; |
Mikhail Glushenkov | abd56bd | 2010-02-28 22:54:30 +0000 | [diff] [blame] | 33 | |
Chris Lattner | 1c5bf9d | 2009-07-09 03:15:51 +0000 | [diff] [blame] | 34 | /// PICStyles - The X86 backend supports a number of different styles of PIC. |
Mikhail Glushenkov | abd56bd | 2010-02-28 22:54:30 +0000 | [diff] [blame] | 35 | /// |
Duncan Sands | 595a442 | 2008-11-28 09:29:37 +0000 | [diff] [blame] | 36 | namespace PICStyles { |
Anton Korobeynikov | a0554d9 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 37 | enum Style { |
Chris Lattner | ba4d733 | 2009-07-10 20:58:47 +0000 | [diff] [blame] | 38 | StubPIC, // Used on i386-darwin in -fPIC mode. |
| 39 | StubDynamicNoPIC, // Used on i386-darwin in -mdynamic-no-pic mode. |
| 40 | GOT, // Used on many 32-bit unices in -fPIC mode. |
| 41 | RIPRel, // Used on X86-64 when not in -static mode. |
| 42 | None // Set when in -static mode (not PIC or DynamicNoPIC mode). |
Anton Korobeynikov | a0554d9 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 43 | }; |
| 44 | } |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 45 | |
Craig Topper | ec82847 | 2014-03-31 06:53:13 +0000 | [diff] [blame] | 46 | class X86Subtarget final : public X86GenSubtargetInfo { |
Eric Christopher | a08f30b | 2014-06-09 17:08:19 +0000 | [diff] [blame] | 47 | |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 48 | protected: |
Evan Cheng | cde9e30 | 2006-01-27 08:10:46 +0000 | [diff] [blame] | 49 | enum X86SSEEnum { |
Craig Topper | 5c94bb8 | 2013-08-21 03:57:57 +0000 | [diff] [blame] | 50 | NoMMXSSE, MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, AVX, AVX2, AVX512F |
Evan Cheng | cde9e30 | 2006-01-27 08:10:46 +0000 | [diff] [blame] | 51 | }; |
| 52 | |
Evan Cheng | ff1beda | 2006-10-06 09:17:41 +0000 | [diff] [blame] | 53 | enum X863DNowEnum { |
| 54 | NoThreeDNow, ThreeDNow, ThreeDNowA |
| 55 | }; |
| 56 | |
Andrew Trick | 8523b16 | 2012-02-01 23:20:51 +0000 | [diff] [blame] | 57 | enum X86ProcFamilyEnum { |
Preston Gurd | 3fe264d | 2013-09-13 19:23:28 +0000 | [diff] [blame] | 58 | Others, IntelAtom, IntelSLM |
Andrew Trick | 8523b16 | 2012-02-01 23:20:51 +0000 | [diff] [blame] | 59 | }; |
| 60 | |
| 61 | /// X86ProcFamily - X86 processor family: Intel Atom, and others |
| 62 | X86ProcFamilyEnum X86ProcFamily; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 63 | |
Anton Korobeynikov | a0554d9 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 64 | /// PICStyle - Which PIC style to use |
Evan Cheng | 763cdfd | 2007-08-01 23:45:51 +0000 | [diff] [blame] | 65 | /// |
Duncan Sands | 595a442 | 2008-11-28 09:29:37 +0000 | [diff] [blame] | 66 | PICStyles::Style PICStyle; |
Mikhail Glushenkov | abd56bd | 2010-02-28 22:54:30 +0000 | [diff] [blame] | 67 | |
Evan Cheng | 352acec | 2008-02-12 07:59:55 +0000 | [diff] [blame] | 68 | /// X86SSELevel - MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, or |
| 69 | /// none supported. |
Evan Cheng | cde9e30 | 2006-01-27 08:10:46 +0000 | [diff] [blame] | 70 | X86SSEEnum X86SSELevel; |
| 71 | |
Evan Cheng | ff1beda | 2006-10-06 09:17:41 +0000 | [diff] [blame] | 72 | /// X863DNowLevel - 3DNow or 3DNow Athlon, or none supported. |
Evan Cheng | 763cdfd | 2007-08-01 23:45:51 +0000 | [diff] [blame] | 73 | /// |
Evan Cheng | ff1beda | 2006-10-06 09:17:41 +0000 | [diff] [blame] | 74 | X863DNowEnum X863DNowLevel; |
| 75 | |
Chris Lattner | cc8c581 | 2009-09-02 05:53:04 +0000 | [diff] [blame] | 76 | /// HasCMov - True if this processor has conditional move instructions |
| 77 | /// (generally pentium pro+). |
| 78 | bool HasCMov; |
Mikhail Glushenkov | abd56bd | 2010-02-28 22:54:30 +0000 | [diff] [blame] | 79 | |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 80 | /// HasX86_64 - True if the processor supports X86-64 instructions. |
Evan Cheng | 763cdfd | 2007-08-01 23:45:51 +0000 | [diff] [blame] | 81 | /// |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 82 | bool HasX86_64; |
Evan Cheng | 4c91aa3 | 2009-01-02 05:35:45 +0000 | [diff] [blame] | 83 | |
Benjamin Kramer | 2f48923 | 2010-12-04 20:32:23 +0000 | [diff] [blame] | 84 | /// HasPOPCNT - True if the processor supports POPCNT. |
| 85 | bool HasPOPCNT; |
| 86 | |
Stefanus Du Toit | 96180b5 | 2009-05-26 21:04:35 +0000 | [diff] [blame] | 87 | /// HasSSE4A - True if the processor supports SSE4A instructions. |
| 88 | bool HasSSE4A; |
| 89 | |
Eric Christopher | 2ef6318 | 2010-04-02 21:54:27 +0000 | [diff] [blame] | 90 | /// HasAES - Target has AES instructions |
| 91 | bool HasAES; |
| 92 | |
Benjamin Kramer | a0396e4 | 2012-05-31 14:34:17 +0000 | [diff] [blame] | 93 | /// HasPCLMUL - Target has carry-less multiplication |
| 94 | bool HasPCLMUL; |
Bruno Cardoso Lopes | 09dc24b | 2010-07-23 01:17:51 +0000 | [diff] [blame] | 95 | |
Craig Topper | 79dbb0c | 2012-06-03 18:58:46 +0000 | [diff] [blame] | 96 | /// HasFMA - Target has 3-operand fused multiply-add |
| 97 | bool HasFMA; |
David Greene | 8f6f72c | 2009-06-26 22:46:54 +0000 | [diff] [blame] | 98 | |
| 99 | /// HasFMA4 - Target has 4-operand fused multiply-add |
| 100 | bool HasFMA4; |
| 101 | |
Jan Sjödin | 1280eb1 | 2011-12-02 15:14:37 +0000 | [diff] [blame] | 102 | /// HasXOP - Target has XOP instructions |
| 103 | bool HasXOP; |
| 104 | |
Yunzhong Gao | dd36e93 | 2013-09-24 18:21:52 +0000 | [diff] [blame] | 105 | /// HasTBM - Target has TBM instructions. |
| 106 | bool HasTBM; |
| 107 | |
Craig Topper | fe9179f | 2011-10-09 07:31:39 +0000 | [diff] [blame] | 108 | /// HasMOVBE - True if the processor has the MOVBE instruction. |
Craig Topper | 786bdb9 | 2011-10-03 17:28:23 +0000 | [diff] [blame] | 109 | bool HasMOVBE; |
| 110 | |
Craig Topper | fe9179f | 2011-10-09 07:31:39 +0000 | [diff] [blame] | 111 | /// HasRDRAND - True if the processor has the RDRAND instruction. |
Craig Topper | 786bdb9 | 2011-10-03 17:28:23 +0000 | [diff] [blame] | 112 | bool HasRDRAND; |
| 113 | |
Craig Topper | fe9179f | 2011-10-09 07:31:39 +0000 | [diff] [blame] | 114 | /// HasF16C - Processor has 16-bit floating point conversion instructions. |
| 115 | bool HasF16C; |
| 116 | |
Craig Topper | 228d913 | 2011-10-30 19:57:21 +0000 | [diff] [blame] | 117 | /// HasFSGSBase - Processor has FS/GS base insturctions. |
| 118 | bool HasFSGSBase; |
| 119 | |
Craig Topper | 271064e | 2011-10-11 06:44:02 +0000 | [diff] [blame] | 120 | /// HasLZCNT - Processor has LZCNT instruction. |
| 121 | bool HasLZCNT; |
| 122 | |
Craig Topper | 3657fe4 | 2011-10-14 03:21:46 +0000 | [diff] [blame] | 123 | /// HasBMI - Processor has BMI1 instructions. |
| 124 | bool HasBMI; |
| 125 | |
Craig Topper | aea148c | 2011-10-16 07:55:05 +0000 | [diff] [blame] | 126 | /// HasBMI2 - Processor has BMI2 instructions. |
| 127 | bool HasBMI2; |
| 128 | |
Michael Liao | 73cffdd | 2012-11-08 07:28:54 +0000 | [diff] [blame] | 129 | /// HasRTM - Processor has RTM instructions. |
| 130 | bool HasRTM; |
| 131 | |
Michael Liao | e344ec9 | 2013-03-26 22:46:02 +0000 | [diff] [blame] | 132 | /// HasHLE - Processor has HLE. |
| 133 | bool HasHLE; |
| 134 | |
Kay Tiong Khoo | f809c64 | 2013-02-14 19:08:21 +0000 | [diff] [blame] | 135 | /// HasADX - Processor has ADX instructions. |
| 136 | bool HasADX; |
| 137 | |
Ben Langmuir | 1650175 | 2013-09-12 15:51:31 +0000 | [diff] [blame] | 138 | /// HasSHA - Processor has SHA instructions. |
| 139 | bool HasSHA; |
| 140 | |
Kevin Enderby | 0d928a1 | 2014-07-31 23:57:38 +0000 | [diff] [blame] | 141 | /// HasSGX - Processor has SGX instructions. |
| 142 | bool HasSGX; |
| 143 | |
Michael Liao | 5173ee0 | 2013-03-26 17:47:11 +0000 | [diff] [blame] | 144 | /// HasPRFCHW - Processor has PRFCHW instructions. |
| 145 | bool HasPRFCHW; |
| 146 | |
Michael Liao | a486a11 | 2013-03-28 23:41:26 +0000 | [diff] [blame] | 147 | /// HasRDSEED - Processor has RDSEED instructions. |
| 148 | bool HasRDSEED; |
| 149 | |
Robert Khasanov | 98441b6 | 2014-08-21 09:16:12 +0000 | [diff] [blame] | 150 | /// HasSMAP - Processor has SMAP instructions. |
| 151 | bool HasSMAP; |
| 152 | |
David Greene | 8f6f72c | 2009-06-26 22:46:54 +0000 | [diff] [blame] | 153 | /// IsBTMemSlow - True if BT (bit test) of memory instructions are slow. |
| 154 | bool IsBTMemSlow; |
Evan Cheng | 4cf30b7 | 2009-12-18 07:40:29 +0000 | [diff] [blame] | 155 | |
Ekaterina Romanova | d5fa554 | 2013-11-21 23:21:26 +0000 | [diff] [blame] | 156 | /// IsSHLDSlow - True if SHLD instructions are slow. |
| 157 | bool IsSHLDSlow; |
| 158 | |
Evan Cheng | 738b0f9 | 2010-04-01 05:58:17 +0000 | [diff] [blame] | 159 | /// IsUAMemFast - True if unaligned memory access is fast. |
| 160 | bool IsUAMemFast; |
| 161 | |
Mikhail Glushenkov | abd56bd | 2010-02-28 22:54:30 +0000 | [diff] [blame] | 162 | /// HasVectorUAMem - True if SIMD operations can have unaligned memory |
Evan Cheng | 9c8cd8c | 2010-04-21 01:47:12 +0000 | [diff] [blame] | 163 | /// operands. This may require setting a feature bit in the processor. |
David Greene | 206351a | 2010-01-11 16:29:42 +0000 | [diff] [blame] | 164 | bool HasVectorUAMem; |
| 165 | |
Eli Friedman | 5e57042 | 2011-08-26 21:21:21 +0000 | [diff] [blame] | 166 | /// HasCmpxchg16b - True if this processor has the CMPXCHG16B instruction; |
| 167 | /// this is true for most x86-64 chips, but not the first AMD chips. |
| 168 | bool HasCmpxchg16b; |
| 169 | |
Evan Cheng | 1b81fdd | 2012-02-07 22:50:41 +0000 | [diff] [blame] | 170 | /// UseLeaForSP - True if the LEA instruction should be used for adjusting |
| 171 | /// the stack pointer. This is an optimization for Intel Atom processors. |
| 172 | bool UseLeaForSP; |
| 173 | |
Preston Gurd | cdf540d | 2012-09-04 18:22:17 +0000 | [diff] [blame] | 174 | /// HasSlowDivide - True if smaller divides are significantly faster than |
| 175 | /// full divides and should be used when possible. |
| 176 | bool HasSlowDivide; |
| 177 | |
Preston Gurd | a01daac | 2013-01-08 18:27:24 +0000 | [diff] [blame] | 178 | /// PadShortFunctions - True if the short functions should be padded to prevent |
| 179 | /// a stall when returning too early. |
| 180 | bool PadShortFunctions; |
| 181 | |
Preston Gurd | 663e6f9 | 2013-03-27 19:14:02 +0000 | [diff] [blame] | 182 | /// CallRegIndirect - True if the Calls with memory reference should be converted |
| 183 | /// to a register-based indirect call. |
| 184 | bool CallRegIndirect; |
Preston Gurd | 8b7ab4b | 2013-04-25 20:29:37 +0000 | [diff] [blame] | 185 | /// LEAUsesAG - True if the LEA instruction inputs have to be ready at |
| 186 | /// address generation (AG) time. |
| 187 | bool LEAUsesAG; |
Preston Gurd | 663e6f9 | 2013-03-27 19:14:02 +0000 | [diff] [blame] | 188 | |
Alexey Volkov | 6226de6 | 2014-05-20 08:55:50 +0000 | [diff] [blame] | 189 | /// SlowLEA - True if the LEA instruction with certain arguments is slow |
| 190 | bool SlowLEA; |
| 191 | |
Alexey Volkov | 5260dba | 2014-06-09 11:40:41 +0000 | [diff] [blame] | 192 | /// SlowIncDec - True if INC and DEC instructions are slow when writing to flags |
| 193 | bool SlowIncDec; |
| 194 | |
Elena Demikhovsky | 8cfb43f | 2013-07-24 11:02:47 +0000 | [diff] [blame] | 195 | /// Processor has AVX-512 PreFetch Instructions |
| 196 | bool HasPFI; |
Robert Khasanov | bfa0131 | 2014-07-21 14:54:21 +0000 | [diff] [blame] | 197 | |
Elena Demikhovsky | 8cfb43f | 2013-07-24 11:02:47 +0000 | [diff] [blame] | 198 | /// Processor has AVX-512 Exponential and Reciprocal Instructions |
| 199 | bool HasERI; |
Robert Khasanov | bfa0131 | 2014-07-21 14:54:21 +0000 | [diff] [blame] | 200 | |
Elena Demikhovsky | 8cfb43f | 2013-07-24 11:02:47 +0000 | [diff] [blame] | 201 | /// Processor has AVX-512 Conflict Detection Instructions |
| 202 | bool HasCDI; |
Robert Khasanov | bfa0131 | 2014-07-21 14:54:21 +0000 | [diff] [blame] | 203 | |
| 204 | /// Processor has AVX-512 Doubleword and Quadword instructions |
| 205 | bool HasDQI; |
| 206 | |
| 207 | /// Processor has AVX-512 Byte and Word instructions |
| 208 | bool HasBWI; |
| 209 | |
| 210 | /// Processor has AVX-512 Vector Length eXtenstions |
| 211 | bool HasVLX; |
| 212 | |
Chris Lattner | 351817b | 2005-07-12 02:36:10 +0000 | [diff] [blame] | 213 | /// stackAlignment - The minimum alignment known to hold of the stack frame on |
| 214 | /// entry to the function and which must be maintained by every function. |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 215 | unsigned stackAlignment; |
Jeff Cohen | 33a030e | 2005-07-27 05:53:44 +0000 | [diff] [blame] | 216 | |
Rafael Espindola | 063f177 | 2007-10-31 11:52:06 +0000 | [diff] [blame] | 217 | /// Max. memset / memcpy size that is turned into rep/movs, rep/stos ops. |
Evan Cheng | 763cdfd | 2007-08-01 23:45:51 +0000 | [diff] [blame] | 218 | /// |
Rafael Espindola | 063f177 | 2007-10-31 11:52:06 +0000 | [diff] [blame] | 219 | unsigned MaxInlineSizeThreshold; |
NAKAMURA Takumi | 0544fe7 | 2011-02-17 12:23:50 +0000 | [diff] [blame] | 220 | |
Eric Christopher | d429846 | 2010-07-05 19:26:33 +0000 | [diff] [blame] | 221 | /// TargetTriple - What processor and OS we're targeting. |
| 222 | Triple TargetTriple; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 223 | |
Andrew Trick | 8523b16 | 2012-02-01 23:20:51 +0000 | [diff] [blame] | 224 | /// Instruction itineraries for scheduling |
| 225 | InstrItineraryData InstrItins; |
Evan Cheng | 03c1e6f | 2006-02-16 00:21:07 +0000 | [diff] [blame] | 226 | |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 227 | private: |
Eric Christopher | e950b67 | 2014-08-09 04:38:53 +0000 | [diff] [blame] | 228 | // Calculates type size & alignment |
| 229 | const DataLayout DL; |
| 230 | |
Bill Wendling | aef9c37 | 2013-02-15 22:31:27 +0000 | [diff] [blame] | 231 | /// StackAlignOverride - Override the stack alignment. |
| 232 | unsigned StackAlignOverride; |
| 233 | |
Craig Topper | 3c80d62 | 2014-01-06 04:55:54 +0000 | [diff] [blame] | 234 | /// In64BitMode - True if compiling for 64-bit, false for 16-bit or 32-bit. |
Evan Cheng | 13bcc6c | 2011-07-07 21:06:52 +0000 | [diff] [blame] | 235 | bool In64BitMode; |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 236 | |
Craig Topper | 3c80d62 | 2014-01-06 04:55:54 +0000 | [diff] [blame] | 237 | /// In32BitMode - True if compiling for 32-bit, false for 16-bit or 64-bit. |
| 238 | bool In32BitMode; |
| 239 | |
| 240 | /// In16BitMode - True if compiling for 16-bit, false for 32-bit or 64-bit. |
| 241 | bool In16BitMode; |
| 242 | |
Eric Christopher | a08f30b | 2014-06-09 17:08:19 +0000 | [diff] [blame] | 243 | X86SelectionDAGInfo TSInfo; |
Eric Christopher | 1a21203 | 2014-06-11 00:25:19 +0000 | [diff] [blame] | 244 | // Ordering here is important. X86InstrInfo initializes X86RegisterInfo which |
| 245 | // X86TargetLowering needs. |
| 246 | X86InstrInfo InstrInfo; |
| 247 | X86TargetLowering TLInfo; |
| 248 | X86FrameLowering FrameLowering; |
Eric Christopher | a08f30b | 2014-06-09 17:08:19 +0000 | [diff] [blame] | 249 | |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 250 | public: |
Jeff Cohen | 33a030e | 2005-07-27 05:53:44 +0000 | [diff] [blame] | 251 | /// This constructor initializes the data members to match that |
Daniel Dunbar | 31b44e8 | 2009-08-02 22:11:08 +0000 | [diff] [blame] | 252 | /// of the specified triple. |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 253 | /// |
Evan Cheng | fe6e405 | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 254 | X86Subtarget(const std::string &TT, const std::string &CPU, |
Eric Christopher | 12f4a78 | 2014-10-01 20:38:22 +0000 | [diff] [blame] | 255 | const std::string &FS, const X86TargetMachine &TM, |
David Woodhouse | 1c3996a | 2014-01-08 00:08:50 +0000 | [diff] [blame] | 256 | unsigned StackAlignOverride); |
Eric Christopher | a08f30b | 2014-06-09 17:08:19 +0000 | [diff] [blame] | 257 | |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 258 | const X86TargetLowering *getTargetLowering() const override { |
| 259 | return &TLInfo; |
| 260 | } |
| 261 | const X86InstrInfo *getInstrInfo() const override { return &InstrInfo; } |
| 262 | const DataLayout *getDataLayout() const override { return &DL; } |
| 263 | const X86FrameLowering *getFrameLowering() const override { |
| 264 | return &FrameLowering; |
| 265 | } |
| 266 | const X86SelectionDAGInfo *getSelectionDAGInfo() const override { |
| 267 | return &TSInfo; |
| 268 | } |
| 269 | const X86RegisterInfo *getRegisterInfo() const override { |
| 270 | return &getInstrInfo()->getRegisterInfo(); |
| 271 | } |
Chris Lattner | 351817b | 2005-07-12 02:36:10 +0000 | [diff] [blame] | 272 | |
| 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 Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 276 | unsigned getStackAlignment() const { return stackAlignment; } |
Jeff Cohen | 33a030e | 2005-07-27 05:53:44 +0000 | [diff] [blame] | 277 | |
Rafael Espindola | 063f177 | 2007-10-31 11:52:06 +0000 | [diff] [blame] | 278 | /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size |
| 279 | /// that still makes it profitable to inline the call. |
| 280 | unsigned getMaxInlineSizeThreshold() const { return MaxInlineSizeThreshold; } |
Anton Korobeynikov | 5b96cde | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 281 | |
| 282 | /// ParseSubtargetFeatures - Parses features string setting specified |
Evan Cheng | ff1beda | 2006-10-06 09:17:41 +0000 | [diff] [blame] | 283 | /// subtarget options. Definition of function is auto generated by tblgen. |
Evan Cheng | 1a72add6 | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 284 | void ParseSubtargetFeatures(StringRef CPU, StringRef FS); |
Evan Cheng | ff1beda | 2006-10-06 09:17:41 +0000 | [diff] [blame] | 285 | |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 286 | private: |
Eric Christopher | 1a21203 | 2014-06-11 00:25:19 +0000 | [diff] [blame] | 287 | /// \brief Initialize the full set of dependencies so we can use an initializer |
| 288 | /// list for X86Subtarget. |
| 289 | X86Subtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS); |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 290 | void initializeEnvironment(); |
Eric Christopher | b68e253 | 2014-09-03 20:36:31 +0000 | [diff] [blame] | 291 | void initSubtargetFeatures(StringRef CPU, StringRef FS); |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 292 | public: |
Eli Bendersky | 597fc12 | 2013-01-25 22:07:43 +0000 | [diff] [blame] | 293 | /// Is this x86_64? (disregarding specific ABI / programming model) |
| 294 | bool is64Bit() const { |
| 295 | return In64BitMode; |
| 296 | } |
| 297 | |
Craig Topper | 3c80d62 | 2014-01-06 04:55:54 +0000 | [diff] [blame] | 298 | bool is32Bit() const { |
| 299 | return In32BitMode; |
| 300 | } |
| 301 | |
| 302 | bool is16Bit() const { |
| 303 | return In16BitMode; |
| 304 | } |
| 305 | |
Eli Bendersky | 597fc12 | 2013-01-25 22:07:43 +0000 | [diff] [blame] | 306 | /// Is this x86_64 with the ILP32 programming model (x32 ABI)? |
| 307 | bool isTarget64BitILP32() const { |
Rafael Espindola | ddb913c | 2013-12-19 00:44:37 +0000 | [diff] [blame] | 308 | return In64BitMode && (TargetTriple.getEnvironment() == Triple::GNUX32 || |
| 309 | TargetTriple.getOS() == Triple::NaCl); |
Eli Bendersky | 597fc12 | 2013-01-25 22:07:43 +0000 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | /// Is this x86_64 with the LP64 programming model (standard AMD64, no x32)? |
| 313 | bool isTarget64BitLP64() const { |
Pavel Chupin | f55eb45 | 2014-08-07 09:41:19 +0000 | [diff] [blame] | 314 | return In64BitMode && (TargetTriple.getEnvironment() != Triple::GNUX32 && |
| 315 | TargetTriple.getOS() != Triple::NaCl); |
Eli Bendersky | 597fc12 | 2013-01-25 22:07:43 +0000 | [diff] [blame] | 316 | } |
Evan Cheng | 54c13da | 2006-01-26 09:53:06 +0000 | [diff] [blame] | 317 | |
Duncan Sands | 595a442 | 2008-11-28 09:29:37 +0000 | [diff] [blame] | 318 | PICStyles::Style getPICStyle() const { return PICStyle; } |
| 319 | void setPICStyle(PICStyles::Style Style) { PICStyle = Style; } |
Anton Korobeynikov | a0554d9 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 320 | |
Chris Lattner | a30d4ce | 2010-03-14 18:31:44 +0000 | [diff] [blame] | 321 | bool hasCMov() const { return HasCMov; } |
Evan Cheng | cde9e30 | 2006-01-27 08:10:46 +0000 | [diff] [blame] | 322 | bool hasMMX() const { return X86SSELevel >= MMX; } |
Craig Topper | eb8f9e9 | 2012-01-10 06:30:56 +0000 | [diff] [blame] | 323 | bool hasSSE1() const { return X86SSELevel >= SSE1; } |
| 324 | bool hasSSE2() const { return X86SSELevel >= SSE2; } |
| 325 | bool hasSSE3() const { return X86SSELevel >= SSE3; } |
| 326 | bool hasSSSE3() const { return X86SSELevel >= SSSE3; } |
| 327 | bool hasSSE41() const { return X86SSELevel >= SSE41; } |
| 328 | bool hasSSE42() const { return X86SSELevel >= SSE42; } |
Craig Topper | b0c0f72 | 2012-01-10 06:54:16 +0000 | [diff] [blame] | 329 | bool hasAVX() const { return X86SSELevel >= AVX; } |
| 330 | bool hasAVX2() const { return X86SSELevel >= AVX2; } |
Craig Topper | 5c94bb8 | 2013-08-21 03:57:57 +0000 | [diff] [blame] | 331 | bool hasAVX512() const { return X86SSELevel >= AVX512F; } |
Elena Demikhovsky | eace43b | 2012-11-29 12:44:59 +0000 | [diff] [blame] | 332 | bool hasFp256() const { return hasAVX(); } |
| 333 | bool hasInt256() const { return hasAVX2(); } |
Stefanus Du Toit | 96180b5 | 2009-05-26 21:04:35 +0000 | [diff] [blame] | 334 | bool hasSSE4A() const { return HasSSE4A; } |
Evan Cheng | ff1beda | 2006-10-06 09:17:41 +0000 | [diff] [blame] | 335 | bool has3DNow() const { return X863DNowLevel >= ThreeDNow; } |
| 336 | bool has3DNowA() const { return X863DNowLevel >= ThreeDNowA; } |
Benjamin Kramer | 2f48923 | 2010-12-04 20:32:23 +0000 | [diff] [blame] | 337 | bool hasPOPCNT() const { return HasPOPCNT; } |
Eric Christopher | 2ef6318 | 2010-04-02 21:54:27 +0000 | [diff] [blame] | 338 | bool hasAES() const { return HasAES; } |
Benjamin Kramer | a0396e4 | 2012-05-31 14:34:17 +0000 | [diff] [blame] | 339 | bool hasPCLMUL() const { return HasPCLMUL; } |
Craig Topper | 79dbb0c | 2012-06-03 18:58:46 +0000 | [diff] [blame] | 340 | bool hasFMA() const { return HasFMA; } |
Craig Topper | 663d160 | 2012-08-24 04:03:22 +0000 | [diff] [blame] | 341 | // FIXME: Favor FMA when both are enabled. Is this the right thing to do? |
Craig Topper | 4a4634d | 2012-08-23 18:14:30 +0000 | [diff] [blame] | 342 | bool hasFMA4() const { return HasFMA4 && !HasFMA; } |
Jan Sjödin | 1280eb1 | 2011-12-02 15:14:37 +0000 | [diff] [blame] | 343 | bool hasXOP() const { return HasXOP; } |
Yunzhong Gao | dd36e93 | 2013-09-24 18:21:52 +0000 | [diff] [blame] | 344 | bool hasTBM() const { return HasTBM; } |
Craig Topper | 786bdb9 | 2011-10-03 17:28:23 +0000 | [diff] [blame] | 345 | bool hasMOVBE() const { return HasMOVBE; } |
| 346 | bool hasRDRAND() const { return HasRDRAND; } |
Craig Topper | fe9179f | 2011-10-09 07:31:39 +0000 | [diff] [blame] | 347 | bool hasF16C() const { return HasF16C; } |
Craig Topper | 228d913 | 2011-10-30 19:57:21 +0000 | [diff] [blame] | 348 | bool hasFSGSBase() const { return HasFSGSBase; } |
Craig Topper | 271064e | 2011-10-11 06:44:02 +0000 | [diff] [blame] | 349 | bool hasLZCNT() const { return HasLZCNT; } |
Craig Topper | 3657fe4 | 2011-10-14 03:21:46 +0000 | [diff] [blame] | 350 | bool hasBMI() const { return HasBMI; } |
Craig Topper | aea148c | 2011-10-16 07:55:05 +0000 | [diff] [blame] | 351 | bool hasBMI2() const { return HasBMI2; } |
Michael Liao | 73cffdd | 2012-11-08 07:28:54 +0000 | [diff] [blame] | 352 | bool hasRTM() const { return HasRTM; } |
Michael Liao | e344ec9 | 2013-03-26 22:46:02 +0000 | [diff] [blame] | 353 | bool hasHLE() const { return HasHLE; } |
Kay Tiong Khoo | f809c64 | 2013-02-14 19:08:21 +0000 | [diff] [blame] | 354 | bool hasADX() const { return HasADX; } |
Ben Langmuir | 1650175 | 2013-09-12 15:51:31 +0000 | [diff] [blame] | 355 | bool hasSHA() const { return HasSHA; } |
Kevin Enderby | 0d928a1 | 2014-07-31 23:57:38 +0000 | [diff] [blame] | 356 | bool hasSGX() const { return HasSGX; } |
Michael Liao | 5173ee0 | 2013-03-26 17:47:11 +0000 | [diff] [blame] | 357 | bool hasPRFCHW() const { return HasPRFCHW; } |
Michael Liao | a486a11 | 2013-03-28 23:41:26 +0000 | [diff] [blame] | 358 | bool hasRDSEED() const { return HasRDSEED; } |
Robert Khasanov | 98441b6 | 2014-08-21 09:16:12 +0000 | [diff] [blame] | 359 | bool hasSMAP() const { return HasSMAP; } |
Evan Cheng | 4c91aa3 | 2009-01-02 05:35:45 +0000 | [diff] [blame] | 360 | bool isBTMemSlow() const { return IsBTMemSlow; } |
Ekaterina Romanova | d5fa554 | 2013-11-21 23:21:26 +0000 | [diff] [blame] | 361 | bool isSHLDSlow() const { return IsSHLDSlow; } |
Evan Cheng | 738b0f9 | 2010-04-01 05:58:17 +0000 | [diff] [blame] | 362 | bool isUnalignedMemAccessFast() const { return IsUAMemFast; } |
David Greene | 206351a | 2010-01-11 16:29:42 +0000 | [diff] [blame] | 363 | bool hasVectorUAMem() const { return HasVectorUAMem; } |
Eli Friedman | 5e57042 | 2011-08-26 21:21:21 +0000 | [diff] [blame] | 364 | bool hasCmpxchg16b() const { return HasCmpxchg16b; } |
Evan Cheng | 1b81fdd | 2012-02-07 22:50:41 +0000 | [diff] [blame] | 365 | bool useLeaForSP() const { return UseLeaForSP; } |
Preston Gurd | cdf540d | 2012-09-04 18:22:17 +0000 | [diff] [blame] | 366 | bool hasSlowDivide() const { return HasSlowDivide; } |
Preston Gurd | a01daac | 2013-01-08 18:27:24 +0000 | [diff] [blame] | 367 | bool padShortFunctions() const { return PadShortFunctions; } |
Preston Gurd | 663e6f9 | 2013-03-27 19:14:02 +0000 | [diff] [blame] | 368 | bool callRegIndirect() const { return CallRegIndirect; } |
Preston Gurd | 8b7ab4b | 2013-04-25 20:29:37 +0000 | [diff] [blame] | 369 | bool LEAusesAG() const { return LEAUsesAG; } |
Alexey Volkov | 6226de6 | 2014-05-20 08:55:50 +0000 | [diff] [blame] | 370 | bool slowLEA() const { return SlowLEA; } |
Alexey Volkov | 5260dba | 2014-06-09 11:40:41 +0000 | [diff] [blame] | 371 | bool slowIncDec() const { return SlowIncDec; } |
Elena Demikhovsky | 8cfb43f | 2013-07-24 11:02:47 +0000 | [diff] [blame] | 372 | bool hasCDI() const { return HasCDI; } |
| 373 | bool hasPFI() const { return HasPFI; } |
| 374 | bool hasERI() const { return HasERI; } |
Robert Khasanov | bfa0131 | 2014-07-21 14:54:21 +0000 | [diff] [blame] | 375 | bool hasDQI() const { return HasDQI; } |
| 376 | bool hasBWI() const { return HasBWI; } |
| 377 | bool hasVLX() const { return HasVLX; } |
Evan Cheng | 4c91aa3 | 2009-01-02 05:35:45 +0000 | [diff] [blame] | 378 | |
Andrew Trick | 8523b16 | 2012-02-01 23:20:51 +0000 | [diff] [blame] | 379 | bool isAtom() const { return X86ProcFamily == IntelAtom; } |
Alexey Volkov | 6226de6 | 2014-05-20 08:55:50 +0000 | [diff] [blame] | 380 | bool isSLM() const { return X86ProcFamily == IntelSLM; } |
Andrew Trick | 8523b16 | 2012-02-01 23:20:51 +0000 | [diff] [blame] | 381 | |
Daniel Dunbar | 44b5303 | 2011-04-19 21:01:47 +0000 | [diff] [blame] | 382 | const Triple &getTargetTriple() const { return TargetTriple; } |
| 383 | |
Daniel Dunbar | 2b9b0e3 | 2011-04-19 21:14:45 +0000 | [diff] [blame] | 384 | bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); } |
| 385 | bool isTargetFreeBSD() const { |
| 386 | return TargetTriple.getOS() == Triple::FreeBSD; |
| 387 | } |
| 388 | bool isTargetSolaris() const { |
| 389 | return TargetTriple.getOS() == Triple::Solaris; |
| 390 | } |
Tim Northover | 9653eb5 | 2013-12-10 16:57:43 +0000 | [diff] [blame] | 391 | |
| 392 | bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); } |
| 393 | bool isTargetCOFF() const { return TargetTriple.isOSBinFormatCOFF(); } |
| 394 | bool isTargetMacho() const { return TargetTriple.isOSBinFormatMachO(); } |
| 395 | |
Cameron Esfahani | 943908b | 2013-08-29 20:23:14 +0000 | [diff] [blame] | 396 | bool isTargetLinux() const { return TargetTriple.isOSLinux(); } |
| 397 | bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); } |
Nick Lewycky | 73df7e3 | 2011-09-05 21:51:43 +0000 | [diff] [blame] | 398 | bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); } |
| 399 | bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); } |
Yaron Keren | 2895496 | 2014-04-02 04:27:51 +0000 | [diff] [blame] | 400 | |
| 401 | bool isTargetWindowsMSVC() const { |
| 402 | return TargetTriple.isWindowsMSVCEnvironment(); |
| 403 | } |
| 404 | |
Yaron Keren | 136fe7d | 2014-04-01 18:15:34 +0000 | [diff] [blame] | 405 | bool isTargetKnownWindowsMSVC() const { |
NAKAMURA Takumi | 09717bd | 2014-03-30 04:35:00 +0000 | [diff] [blame] | 406 | return TargetTriple.isKnownWindowsMSVCEnvironment(); |
Saleem Abdulrasool | edbdd2e | 2014-03-27 22:50:05 +0000 | [diff] [blame] | 407 | } |
Yaron Keren | 2895496 | 2014-04-02 04:27:51 +0000 | [diff] [blame] | 408 | |
| 409 | bool isTargetWindowsCygwin() const { |
Saleem Abdulrasool | edbdd2e | 2014-03-27 22:50:05 +0000 | [diff] [blame] | 410 | return TargetTriple.isWindowsCygwinEnvironment(); |
| 411 | } |
Yaron Keren | 2895496 | 2014-04-02 04:27:51 +0000 | [diff] [blame] | 412 | |
| 413 | bool isTargetWindowsGNU() const { |
| 414 | return TargetTriple.isWindowsGNUEnvironment(); |
| 415 | } |
| 416 | |
Chandler Carruth | ebd90c5 | 2012-02-05 08:26:40 +0000 | [diff] [blame] | 417 | bool isTargetCygMing() const { return TargetTriple.isOSCygMing(); } |
Mikhail Glushenkov | abd56bd | 2010-02-28 22:54:30 +0000 | [diff] [blame] | 418 | |
Yaron Keren | 79bb266 | 2013-10-23 23:37:01 +0000 | [diff] [blame] | 419 | bool isOSWindows() const { return TargetTriple.isOSWindows(); } |
| 420 | |
Anton Korobeynikov | 7f125b2 | 2008-03-22 20:57:27 +0000 | [diff] [blame] | 421 | bool isTargetWin64() const { |
Chandler Carruth | ebd90c5 | 2012-02-05 08:26:40 +0000 | [diff] [blame] | 422 | return In64BitMode && TargetTriple.isOSWindows(); |
Evan Cheng | d22a4a1 | 2011-02-01 01:14:13 +0000 | [diff] [blame] | 423 | } |
| 424 | |
Anton Korobeynikov | a5a6455 | 2010-09-02 23:03:46 +0000 | [diff] [blame] | 425 | bool isTargetWin32() const { |
Yaron Keren | 136fe7d | 2014-04-01 18:15:34 +0000 | [diff] [blame] | 426 | return !In64BitMode && (isTargetCygMing() || isTargetKnownWindowsMSVC()); |
Anton Korobeynikov | a5a6455 | 2010-09-02 23:03:46 +0000 | [diff] [blame] | 427 | } |
| 428 | |
Duncan Sands | 595a442 | 2008-11-28 09:29:37 +0000 | [diff] [blame] | 429 | bool isPICStyleSet() const { return PICStyle != PICStyles::None; } |
| 430 | bool isPICStyleGOT() const { return PICStyle == PICStyles::GOT; } |
Duncan Sands | 595a442 | 2008-11-28 09:29:37 +0000 | [diff] [blame] | 431 | bool isPICStyleRIPRel() const { return PICStyle == PICStyles::RIPRel; } |
Chris Lattner | e2f524f | 2009-07-10 20:47:30 +0000 | [diff] [blame] | 432 | |
Chris Lattner | 21c2940 | 2009-07-10 21:00:45 +0000 | [diff] [blame] | 433 | bool isPICStyleStubPIC() const { |
Chris Lattner | ba4d733 | 2009-07-10 20:58:47 +0000 | [diff] [blame] | 434 | return PICStyle == PICStyles::StubPIC; |
| 435 | } |
| 436 | |
Chris Lattner | 21c2940 | 2009-07-10 21:00:45 +0000 | [diff] [blame] | 437 | bool isPICStyleStubNoDynamic() const { |
Chris Lattner | ba4d733 | 2009-07-10 20:58:47 +0000 | [diff] [blame] | 438 | return PICStyle == PICStyles::StubDynamicNoPIC; |
| 439 | } |
| 440 | bool isPICStyleStubAny() const { |
| 441 | return PICStyle == PICStyles::StubDynamicNoPIC || |
Charles Davis | e8f297c | 2013-07-12 06:02:35 +0000 | [diff] [blame] | 442 | PICStyle == PICStyles::StubPIC; |
| 443 | } |
| 444 | |
| 445 | bool isCallingConvWin64(CallingConv::ID CC) const { |
| 446 | return (isTargetWin64() && CC != CallingConv::X86_64_SysV) || |
| 447 | CC == CallingConv::X86_64_Win64; |
| 448 | } |
Mikhail Glushenkov | abd56bd | 2010-02-28 22:54:30 +0000 | [diff] [blame] | 449 | |
Chris Lattner | dc842c0 | 2009-07-10 07:20:05 +0000 | [diff] [blame] | 450 | /// ClassifyGlobalReference - Classify a global variable reference for the |
| 451 | /// current subtarget according to how we should reference it in a non-pcrel |
| 452 | /// context. |
| 453 | unsigned char ClassifyGlobalReference(const GlobalValue *GV, |
| 454 | const TargetMachine &TM)const; |
Anton Korobeynikov | 93acb49 | 2006-12-20 01:03:20 +0000 | [diff] [blame] | 455 | |
Dan Gohman | 7a661179 | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 456 | /// ClassifyBlockAddressReference - Classify a blockaddress reference for the |
| 457 | /// current subtarget according to how we should reference it in a non-pcrel |
| 458 | /// context. |
| 459 | unsigned char ClassifyBlockAddressReference() const; |
| 460 | |
Evan Cheng | 9609833 | 2009-05-20 04:53:57 +0000 | [diff] [blame] | 461 | /// IsLegalToCallImmediateAddr - Return true if the subtarget allows calls |
| 462 | /// to immediate address. |
| 463 | bool IsLegalToCallImmediateAddr(const TargetMachine &TM) const; |
| 464 | |
Dan Gohman | 980d720 | 2008-04-01 20:38:36 +0000 | [diff] [blame] | 465 | /// This function returns the name of a function which has an interface |
| 466 | /// like the non-standard bzero function, if such a function exists on |
| 467 | /// the current subtarget and it is considered prefereable over |
| 468 | /// memset with zero passed as the second argument. Otherwise it |
| 469 | /// returns null. |
Bill Wendling | 1782584 | 2008-09-30 22:05:33 +0000 | [diff] [blame] | 470 | const char *getBZeroEntry() const; |
Andrew Trick | e97d8d6 | 2013-10-15 23:33:07 +0000 | [diff] [blame] | 471 | |
Evan Cheng | 0e88c7d | 2013-01-29 02:32:37 +0000 | [diff] [blame] | 472 | /// This function returns true if the target has sincos() routine in its |
| 473 | /// compiler runtime or math libraries. |
| 474 | bool hasSinCos() const; |
Dan Gohman | b9a0121 | 2008-12-16 03:35:01 +0000 | [diff] [blame] | 475 | |
Andrew Trick | e97d8d6 | 2013-10-15 23:33:07 +0000 | [diff] [blame] | 476 | /// Enable the MachineScheduler pass for all X86 subtargets. |
Craig Topper | 7315602 | 2014-03-02 09:09:27 +0000 | [diff] [blame] | 477 | bool enableMachineScheduler() const override { return true; } |
Andrew Trick | e97d8d6 | 2013-10-15 23:33:07 +0000 | [diff] [blame] | 478 | |
Eric Christopher | 6b0fcfe | 2014-05-21 23:40:26 +0000 | [diff] [blame] | 479 | bool enableEarlyIfConversion() const override; |
| 480 | |
Andrew Trick | 8523b16 | 2012-02-01 23:20:51 +0000 | [diff] [blame] | 481 | /// getInstrItins = Return the instruction itineraries based on the |
| 482 | /// subtarget selection. |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 483 | const InstrItineraryData *getInstrItineraryData() const override { |
| 484 | return &InstrItins; |
| 485 | } |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 486 | |
| 487 | AntiDepBreakMode getAntiDepBreakMode() const override { |
| 488 | return TargetSubtargetInfo::ANTIDEP_CRITICAL; |
| 489 | } |
Evan Cheng | 47455a7 | 2009-09-03 04:37:05 +0000 | [diff] [blame] | 490 | }; |
Evan Cheng | a8b4aea | 2006-10-16 21:00:37 +0000 | [diff] [blame] | 491 | |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 492 | } // End llvm namespace |
| 493 | |
| 494 | #endif |