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" |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/StringRef.h" |
Eric Christopher | d429846 | 2010-07-05 19:26:33 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/Triple.h" |
Quentin Colombet | 61d71a1 | 2017-08-15 22:31:51 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/GlobalISel/CallLowering.h" |
| 24 | #include "llvm/CodeGen/GlobalISel/InstructionSelector.h" |
| 25 | #include "llvm/CodeGen/GlobalISel/LegalizerInfo.h" |
| 26 | #include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 27 | #include "llvm/IR/CallingConv.h" |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 28 | #include "llvm/MC/MCInstrItineraries.h" |
| 29 | #include "llvm/Target/TargetMachine.h" |
Evan Cheng | 0d639a2 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 30 | #include "llvm/Target/TargetSubtargetInfo.h" |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 31 | #include <memory> |
Jim Laskey | 19058c3 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 32 | |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 33 | #define GET_SUBTARGETINFO_HEADER |
Evan Cheng | c9c090d | 2011-07-01 22:36:09 +0000 | [diff] [blame] | 34 | #include "X86GenSubtargetInfo.inc" |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 35 | |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 36 | namespace llvm { |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 37 | |
Anton Korobeynikov | 6dbdfe2 | 2006-11-30 22:42:55 +0000 | [diff] [blame] | 38 | class GlobalValue; |
Mikhail Glushenkov | abd56bd | 2010-02-28 22:54:30 +0000 | [diff] [blame] | 39 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 40 | /// The X86 backend supports a number of different styles of PIC. |
Mikhail Glushenkov | abd56bd | 2010-02-28 22:54:30 +0000 | [diff] [blame] | 41 | /// |
Duncan Sands | 595a442 | 2008-11-28 09:29:37 +0000 | [diff] [blame] | 42 | namespace PICStyles { |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 43 | |
Anton Korobeynikov | a0554d9 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 44 | enum Style { |
Rafael Espindola | 0d34826 | 2016-06-20 23:41:56 +0000 | [diff] [blame] | 45 | StubPIC, // Used on i386-darwin in pic mode. |
| 46 | GOT, // Used on 32 bit elf on when in pic mode. |
| 47 | RIPRel, // Used on X86-64 when in pic mode. |
| 48 | None // Set when not in pic mode. |
Anton Korobeynikov | a0554d9 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 49 | }; |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 50 | |
| 51 | } // end namespace PICStyles |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 52 | |
Craig Topper | ec82847 | 2014-03-31 06:53:13 +0000 | [diff] [blame] | 53 | class X86Subtarget final : public X86GenSubtargetInfo { |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 54 | protected: |
Evan Cheng | cde9e30 | 2006-01-27 08:10:46 +0000 | [diff] [blame] | 55 | enum X86SSEEnum { |
Eric Christopher | 11e5983 | 2015-10-08 20:10:06 +0000 | [diff] [blame] | 56 | NoSSE, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, AVX, AVX2, AVX512F |
Evan Cheng | cde9e30 | 2006-01-27 08:10:46 +0000 | [diff] [blame] | 57 | }; |
| 58 | |
Evan Cheng | ff1beda | 2006-10-06 09:17:41 +0000 | [diff] [blame] | 59 | enum X863DNowEnum { |
Eric Christopher | 57a6e13 | 2015-11-14 03:04:00 +0000 | [diff] [blame] | 60 | NoThreeDNow, MMX, ThreeDNow, ThreeDNowA |
Evan Cheng | ff1beda | 2006-10-06 09:17:41 +0000 | [diff] [blame] | 61 | }; |
| 62 | |
Andrew Trick | 8523b16 | 2012-02-01 23:20:51 +0000 | [diff] [blame] | 63 | enum X86ProcFamilyEnum { |
Michael Zuckerman | 4bcb9c3 | 2017-06-29 10:00:33 +0000 | [diff] [blame] | 64 | Others, IntelAtom, IntelSLM, IntelGLM |
Andrew Trick | 8523b16 | 2012-02-01 23:20:51 +0000 | [diff] [blame] | 65 | }; |
| 66 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 67 | /// X86 processor family: Intel Atom, and others |
Andrew Trick | 8523b16 | 2012-02-01 23:20:51 +0000 | [diff] [blame] | 68 | X86ProcFamilyEnum X86ProcFamily; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 69 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 70 | /// Which PIC style to use |
Duncan Sands | 595a442 | 2008-11-28 09:29:37 +0000 | [diff] [blame] | 71 | PICStyles::Style PICStyle; |
Mikhail Glushenkov | abd56bd | 2010-02-28 22:54:30 +0000 | [diff] [blame] | 72 | |
Rafael Espindola | ab03eb0 | 2016-05-19 22:07:57 +0000 | [diff] [blame] | 73 | const TargetMachine &TM; |
Rafael Espindola | 46107b9 | 2016-05-19 18:49:29 +0000 | [diff] [blame] | 74 | |
Eric Christopher | 11e5983 | 2015-10-08 20:10:06 +0000 | [diff] [blame] | 75 | /// SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, or none supported. |
Evan Cheng | cde9e30 | 2006-01-27 08:10:46 +0000 | [diff] [blame] | 76 | X86SSEEnum X86SSELevel; |
| 77 | |
Eric Christopher | 57a6e13 | 2015-11-14 03:04:00 +0000 | [diff] [blame] | 78 | /// MMX, 3DNow, 3DNow Athlon, or none supported. |
Evan Cheng | ff1beda | 2006-10-06 09:17:41 +0000 | [diff] [blame] | 79 | X863DNowEnum X863DNowLevel; |
| 80 | |
Andrey Turetskiy | 6a3d561 | 2016-03-23 11:13:54 +0000 | [diff] [blame] | 81 | /// True if the processor supports X87 instructions. |
| 82 | bool HasX87; |
| 83 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 84 | /// True if this processor has conditional move instructions |
Chris Lattner | cc8c581 | 2009-09-02 05:53:04 +0000 | [diff] [blame] | 85 | /// (generally pentium pro+). |
| 86 | bool HasCMov; |
Mikhail Glushenkov | abd56bd | 2010-02-28 22:54:30 +0000 | [diff] [blame] | 87 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 88 | /// True if the processor supports X86-64 instructions. |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 89 | bool HasX86_64; |
Evan Cheng | 4c91aa3 | 2009-01-02 05:35:45 +0000 | [diff] [blame] | 90 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 91 | /// True if the processor supports POPCNT. |
Benjamin Kramer | 2f48923 | 2010-12-04 20:32:23 +0000 | [diff] [blame] | 92 | bool HasPOPCNT; |
| 93 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 94 | /// True if the processor supports SSE4A instructions. |
Stefanus Du Toit | 96180b5 | 2009-05-26 21:04:35 +0000 | [diff] [blame] | 95 | bool HasSSE4A; |
| 96 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 97 | /// Target has AES instructions |
Eric Christopher | 2ef6318 | 2010-04-02 21:54:27 +0000 | [diff] [blame] | 98 | bool HasAES; |
| 99 | |
Craig Topper | 09b6598 | 2015-10-16 06:03:09 +0000 | [diff] [blame] | 100 | /// Target has FXSAVE/FXRESTOR instructions |
| 101 | bool HasFXSR; |
| 102 | |
Amjad Aboud | 1db6d7a | 2015-10-12 11:47:46 +0000 | [diff] [blame] | 103 | /// Target has XSAVE instructions |
| 104 | bool HasXSAVE; |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 105 | |
Amjad Aboud | 1db6d7a | 2015-10-12 11:47:46 +0000 | [diff] [blame] | 106 | /// Target has XSAVEOPT instructions |
| 107 | bool HasXSAVEOPT; |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 108 | |
Amjad Aboud | 1db6d7a | 2015-10-12 11:47:46 +0000 | [diff] [blame] | 109 | /// Target has XSAVEC instructions |
| 110 | bool HasXSAVEC; |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 111 | |
Amjad Aboud | 1db6d7a | 2015-10-12 11:47:46 +0000 | [diff] [blame] | 112 | /// Target has XSAVES instructions |
| 113 | bool HasXSAVES; |
| 114 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 115 | /// Target has carry-less multiplication |
Benjamin Kramer | a0396e4 | 2012-05-31 14:34:17 +0000 | [diff] [blame] | 116 | bool HasPCLMUL; |
Bruno Cardoso Lopes | 09dc24b | 2010-07-23 01:17:51 +0000 | [diff] [blame] | 117 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 118 | /// Target has 3-operand fused multiply-add |
Craig Topper | 79dbb0c | 2012-06-03 18:58:46 +0000 | [diff] [blame] | 119 | bool HasFMA; |
David Greene | 8f6f72c | 2009-06-26 22:46:54 +0000 | [diff] [blame] | 120 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 121 | /// Target has 4-operand fused multiply-add |
David Greene | 8f6f72c | 2009-06-26 22:46:54 +0000 | [diff] [blame] | 122 | bool HasFMA4; |
| 123 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 124 | /// Target has XOP instructions |
Jan Sjödin | 1280eb1 | 2011-12-02 15:14:37 +0000 | [diff] [blame] | 125 | bool HasXOP; |
| 126 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 127 | /// Target has TBM instructions. |
Yunzhong Gao | dd36e93 | 2013-09-24 18:21:52 +0000 | [diff] [blame] | 128 | bool HasTBM; |
| 129 | |
Simon Pilgrim | 99b925b | 2017-05-03 15:51:39 +0000 | [diff] [blame] | 130 | /// Target has LWP instructions |
| 131 | bool HasLWP; |
| 132 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 133 | /// True if the processor has the MOVBE instruction. |
Craig Topper | 786bdb9 | 2011-10-03 17:28:23 +0000 | [diff] [blame] | 134 | bool HasMOVBE; |
| 135 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 136 | /// True if the processor has the RDRAND instruction. |
Craig Topper | 786bdb9 | 2011-10-03 17:28:23 +0000 | [diff] [blame] | 137 | bool HasRDRAND; |
| 138 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 139 | /// Processor has 16-bit floating point conversion instructions. |
Craig Topper | fe9179f | 2011-10-09 07:31:39 +0000 | [diff] [blame] | 140 | bool HasF16C; |
| 141 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 142 | /// Processor has FS/GS base insturctions. |
Craig Topper | 228d913 | 2011-10-30 19:57:21 +0000 | [diff] [blame] | 143 | bool HasFSGSBase; |
| 144 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 145 | /// Processor has LZCNT instruction. |
Craig Topper | 271064e | 2011-10-11 06:44:02 +0000 | [diff] [blame] | 146 | bool HasLZCNT; |
| 147 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 148 | /// Processor has BMI1 instructions. |
Craig Topper | 3657fe4 | 2011-10-14 03:21:46 +0000 | [diff] [blame] | 149 | bool HasBMI; |
| 150 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 151 | /// Processor has BMI2 instructions. |
Craig Topper | aea148c | 2011-10-16 07:55:05 +0000 | [diff] [blame] | 152 | bool HasBMI2; |
| 153 | |
Michael Zuckerman | 97b6a692 | 2016-01-17 13:42:12 +0000 | [diff] [blame] | 154 | /// Processor has VBMI instructions. |
| 155 | bool HasVBMI; |
| 156 | |
Elena Demikhovsky | 29cde35 | 2016-01-24 10:41:28 +0000 | [diff] [blame] | 157 | /// Processor has Integer Fused Multiply Add |
| 158 | bool HasIFMA; |
| 159 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 160 | /// Processor has RTM instructions. |
Michael Liao | 73cffdd | 2012-11-08 07:28:54 +0000 | [diff] [blame] | 161 | bool HasRTM; |
| 162 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 163 | /// Processor has ADX instructions. |
Kay Tiong Khoo | f809c64 | 2013-02-14 19:08:21 +0000 | [diff] [blame] | 164 | bool HasADX; |
| 165 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 166 | /// Processor has SHA instructions. |
Ben Langmuir | 1650175 | 2013-09-12 15:51:31 +0000 | [diff] [blame] | 167 | bool HasSHA; |
| 168 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 169 | /// Processor has PRFCHW instructions. |
Michael Liao | 5173ee0 | 2013-03-26 17:47:11 +0000 | [diff] [blame] | 170 | bool HasPRFCHW; |
| 171 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 172 | /// Processor has RDSEED instructions. |
Michael Liao | a486a11 | 2013-03-28 23:41:26 +0000 | [diff] [blame] | 173 | bool HasRDSEED; |
| 174 | |
Hans Wennborg | 5000ce8 | 2015-12-04 23:00:33 +0000 | [diff] [blame] | 175 | /// Processor has LAHF/SAHF instructions. |
| 176 | bool HasLAHFSAHF; |
| 177 | |
Ashutosh Nema | 348af9c | 2016-05-18 11:59:12 +0000 | [diff] [blame] | 178 | /// Processor has MONITORX/MWAITX instructions. |
| 179 | bool HasMWAITX; |
| 180 | |
Craig Topper | 50f3d14 | 2017-02-09 04:27:34 +0000 | [diff] [blame] | 181 | /// Processor has Cache Line Zero instruction |
| 182 | bool HasCLZERO; |
| 183 | |
Elena Demikhovsky | 29cde35 | 2016-01-24 10:41:28 +0000 | [diff] [blame] | 184 | /// Processor has Prefetch with intent to Write instruction |
| 185 | bool HasPFPREFETCHWT1; |
| 186 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 187 | /// True if BT (bit test) of memory instructions are slow. |
David Greene | 8f6f72c | 2009-06-26 22:46:54 +0000 | [diff] [blame] | 188 | bool IsBTMemSlow; |
Evan Cheng | 4cf30b7 | 2009-12-18 07:40:29 +0000 | [diff] [blame] | 189 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 190 | /// True if SHLD instructions are slow. |
Ekaterina Romanova | d5fa554 | 2013-11-21 23:21:26 +0000 | [diff] [blame] | 191 | bool IsSHLDSlow; |
| 192 | |
Zvi Rackover | 8bc7e4d | 2016-12-06 19:35:20 +0000 | [diff] [blame] | 193 | /// True if the PMULLD instruction is slow compared to PMULLW/PMULHW and |
| 194 | // PMULUDQ. |
| 195 | bool IsPMULLDSlow; |
| 196 | |
Sanjay Patel | 3014567 | 2015-09-01 20:51:51 +0000 | [diff] [blame] | 197 | /// True if unaligned memory accesses of 16-bytes are slow. |
| 198 | bool IsUAMem16Slow; |
Evan Cheng | 738b0f9 | 2010-04-01 05:58:17 +0000 | [diff] [blame] | 199 | |
Sanjay Patel | 9e916dc | 2015-08-21 20:17:26 +0000 | [diff] [blame] | 200 | /// True if unaligned memory accesses of 32-bytes are slow. |
Sanjay Patel | 501890e | 2014-11-21 17:40:04 +0000 | [diff] [blame] | 201 | bool IsUAMem32Slow; |
Michael Liao | 5bf9578 | 2014-12-04 05:20:33 +0000 | [diff] [blame] | 202 | |
Sanjay Patel | ffd039b | 2015-02-03 17:13:04 +0000 | [diff] [blame] | 203 | /// True if SSE operations can have unaligned memory operands. |
| 204 | /// This may require setting a configuration bit in the processor. |
| 205 | bool HasSSEUnalignedMem; |
David Greene | 206351a | 2010-01-11 16:29:42 +0000 | [diff] [blame] | 206 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 207 | /// True if this processor has the CMPXCHG16B instruction; |
Eli Friedman | 5e57042 | 2011-08-26 21:21:21 +0000 | [diff] [blame] | 208 | /// this is true for most x86-64 chips, but not the first AMD chips. |
| 209 | bool HasCmpxchg16b; |
| 210 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 211 | /// True if the LEA instruction should be used for adjusting |
Evan Cheng | 1b81fdd | 2012-02-07 22:50:41 +0000 | [diff] [blame] | 212 | /// the stack pointer. This is an optimization for Intel Atom processors. |
| 213 | bool UseLeaForSP; |
| 214 | |
Yunzhong Gao | 0de36ec | 2016-02-12 23:37:57 +0000 | [diff] [blame] | 215 | /// True if there is no performance penalty to writing only the lower parts |
Amjad Aboud | 4f97751 | 2017-03-03 09:03:24 +0000 | [diff] [blame] | 216 | /// of a YMM or ZMM register without clearing the upper part. |
| 217 | bool HasFastPartialYMMorZMMWrite; |
Yunzhong Gao | 0de36ec | 2016-02-12 23:37:57 +0000 | [diff] [blame] | 218 | |
Nikolai Bozhenov | f679530 | 2016-08-04 12:47:28 +0000 | [diff] [blame] | 219 | /// True if hardware SQRTSS instruction is at least as fast (latency) as |
| 220 | /// RSQRTSS followed by a Newton-Raphson iteration. |
| 221 | bool HasFastScalarFSQRT; |
| 222 | |
| 223 | /// True if hardware SQRTPS/VSQRTPS instructions are at least as fast |
| 224 | /// (throughput) as RSQRTPS/VRSQRTPS followed by a Newton-Raphson iteration. |
| 225 | bool HasFastVectorFSQRT; |
| 226 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 227 | /// True if 8-bit divisions are significantly faster than |
Alexey Volkov | fd1731d | 2014-11-21 11:19:34 +0000 | [diff] [blame] | 228 | /// 32-bit divisions and should be used when possible. |
| 229 | bool HasSlowDivide32; |
| 230 | |
Nikolai Bozhenov | 6bdf92c | 2017-01-12 19:34:15 +0000 | [diff] [blame] | 231 | /// True if 32-bit divides are significantly faster than |
Alexey Volkov | fd1731d | 2014-11-21 11:19:34 +0000 | [diff] [blame] | 232 | /// 64-bit divisions and should be used when possible. |
| 233 | bool HasSlowDivide64; |
Preston Gurd | cdf540d | 2012-09-04 18:22:17 +0000 | [diff] [blame] | 234 | |
Pierre Gousseau | b6d652a | 2016-10-14 16:41:38 +0000 | [diff] [blame] | 235 | /// True if LZCNT instruction is fast. |
| 236 | bool HasFastLZCNT; |
| 237 | |
Craig Topper | d88389a | 2017-02-21 06:39:13 +0000 | [diff] [blame] | 238 | /// True if SHLD based rotate is fast. |
| 239 | bool HasFastSHLDRotate; |
| 240 | |
Clement Courbet | 203fc17 | 2017-04-21 09:20:50 +0000 | [diff] [blame] | 241 | /// True if the processor has enhanced REP MOVSB/STOSB. |
| 242 | bool HasERMSB; |
Clement Courbet | 1ce3b82 | 2017-04-21 09:20:39 +0000 | [diff] [blame] | 243 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 244 | /// True if the short functions should be padded to prevent |
Preston Gurd | a01daac | 2013-01-08 18:27:24 +0000 | [diff] [blame] | 245 | /// a stall when returning too early. |
| 246 | bool PadShortFunctions; |
| 247 | |
Craig Topper | 62c47a2 | 2017-08-29 05:14:27 +0000 | [diff] [blame] | 248 | /// True if two memory operand instructions should use a temporary register |
| 249 | /// instead. |
| 250 | bool SlowTwoMemOps; |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 251 | |
| 252 | /// True if the LEA instruction inputs have to be ready at address generation |
| 253 | /// (AG) time. |
Preston Gurd | 8b7ab4b | 2013-04-25 20:29:37 +0000 | [diff] [blame] | 254 | bool LEAUsesAG; |
Preston Gurd | 663e6f9 | 2013-03-27 19:14:02 +0000 | [diff] [blame] | 255 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 256 | /// True if the LEA instruction with certain arguments is slow |
Alexey Volkov | 6226de6 | 2014-05-20 08:55:50 +0000 | [diff] [blame] | 257 | bool SlowLEA; |
| 258 | |
Lama Saba | 2ea271b | 2017-05-18 08:11:50 +0000 | [diff] [blame] | 259 | /// True if the LEA instruction has all three source operands: base, index, |
| 260 | /// and offset or if the LEA instruction uses base and index registers where |
| 261 | /// the base is EBP, RBP,or R13 |
| 262 | bool Slow3OpsLEA; |
| 263 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 264 | /// True if INC and DEC instructions are slow when writing to flags |
Alexey Volkov | 5260dba | 2014-06-09 11:40:41 +0000 | [diff] [blame] | 265 | bool SlowIncDec; |
| 266 | |
Elena Demikhovsky | 8cfb43f | 2013-07-24 11:02:47 +0000 | [diff] [blame] | 267 | /// Processor has AVX-512 PreFetch Instructions |
| 268 | bool HasPFI; |
Robert Khasanov | bfa0131 | 2014-07-21 14:54:21 +0000 | [diff] [blame] | 269 | |
Elena Demikhovsky | 8cfb43f | 2013-07-24 11:02:47 +0000 | [diff] [blame] | 270 | /// Processor has AVX-512 Exponential and Reciprocal Instructions |
| 271 | bool HasERI; |
Robert Khasanov | bfa0131 | 2014-07-21 14:54:21 +0000 | [diff] [blame] | 272 | |
Elena Demikhovsky | 8cfb43f | 2013-07-24 11:02:47 +0000 | [diff] [blame] | 273 | /// Processor has AVX-512 Conflict Detection Instructions |
| 274 | bool HasCDI; |
Robert Khasanov | bfa0131 | 2014-07-21 14:54:21 +0000 | [diff] [blame] | 275 | |
Oren Ben Simhon | 7bf27f0 | 2017-05-25 13:45:23 +0000 | [diff] [blame] | 276 | /// Processor has AVX-512 population count Instructions |
| 277 | bool HasVPOPCNTDQ; |
| 278 | |
Robert Khasanov | bfa0131 | 2014-07-21 14:54:21 +0000 | [diff] [blame] | 279 | /// Processor has AVX-512 Doubleword and Quadword instructions |
| 280 | bool HasDQI; |
| 281 | |
| 282 | /// Processor has AVX-512 Byte and Word instructions |
| 283 | bool HasBWI; |
| 284 | |
| 285 | /// Processor has AVX-512 Vector Length eXtenstions |
| 286 | bool HasVLX; |
| 287 | |
Asaf Badouh | 5acf66f | 2015-12-15 13:35:29 +0000 | [diff] [blame] | 288 | /// Processor has PKU extenstions |
| 289 | bool HasPKU; |
| 290 | |
Elena Demikhovsky | 29cde35 | 2016-01-24 10:41:28 +0000 | [diff] [blame] | 291 | /// Processor supports MPX - Memory Protection Extensions |
Elena Demikhovsky | f7e641c | 2015-06-03 10:30:57 +0000 | [diff] [blame] | 292 | bool HasMPX; |
| 293 | |
Elena Demikhovsky | 29cde35 | 2016-01-24 10:41:28 +0000 | [diff] [blame] | 294 | /// Processor has Software Guard Extensions |
| 295 | bool HasSGX; |
| 296 | |
| 297 | /// Processor supports Flush Cache Line instruction |
| 298 | bool HasCLFLUSHOPT; |
| 299 | |
Elena Demikhovsky | 29cde35 | 2016-01-24 10:41:28 +0000 | [diff] [blame] | 300 | /// Processor supports Cache Line Write Back instruction |
| 301 | bool HasCLWB; |
| 302 | |
Eric Christopher | 824f42f | 2015-05-12 01:26:05 +0000 | [diff] [blame] | 303 | /// Use software floating point for code generation. |
| 304 | bool UseSoftFloat; |
| 305 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 306 | /// The minimum alignment known to hold of the stack frame on |
Chris Lattner | 351817b | 2005-07-12 02:36:10 +0000 | [diff] [blame] | 307 | /// entry to the function and which must be maintained by every function. |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 308 | unsigned stackAlignment; |
Jeff Cohen | 33a030e | 2005-07-27 05:53:44 +0000 | [diff] [blame] | 309 | |
Rafael Espindola | 063f177 | 2007-10-31 11:52:06 +0000 | [diff] [blame] | 310 | /// 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] | 311 | /// |
Rafael Espindola | 063f177 | 2007-10-31 11:52:06 +0000 | [diff] [blame] | 312 | unsigned MaxInlineSizeThreshold; |
NAKAMURA Takumi | 0544fe7 | 2011-02-17 12:23:50 +0000 | [diff] [blame] | 313 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 314 | /// What processor and OS we're targeting. |
Eric Christopher | d429846 | 2010-07-05 19:26:33 +0000 | [diff] [blame] | 315 | Triple TargetTriple; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 316 | |
Andrew Trick | 8523b16 | 2012-02-01 23:20:51 +0000 | [diff] [blame] | 317 | /// Instruction itineraries for scheduling |
| 318 | InstrItineraryData InstrItins; |
Evan Cheng | 03c1e6f | 2006-02-16 00:21:07 +0000 | [diff] [blame] | 319 | |
Quentin Colombet | 61d71a1 | 2017-08-15 22:31:51 +0000 | [diff] [blame] | 320 | /// GlobalISel related APIs. |
| 321 | std::unique_ptr<CallLowering> CallLoweringInfo; |
| 322 | std::unique_ptr<LegalizerInfo> Legalizer; |
| 323 | std::unique_ptr<RegisterBankInfo> RegBankInfo; |
| 324 | std::unique_ptr<InstructionSelector> InstSelector; |
Eric Christopher | e950b67 | 2014-08-09 04:38:53 +0000 | [diff] [blame] | 325 | |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 326 | private: |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 327 | /// Override the stack alignment. |
Bill Wendling | aef9c37 | 2013-02-15 22:31:27 +0000 | [diff] [blame] | 328 | unsigned StackAlignOverride; |
| 329 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 330 | /// 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] | 331 | bool In64BitMode; |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 332 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 333 | /// True if compiling for 32-bit, false for 16-bit or 64-bit. |
Craig Topper | 3c80d62 | 2014-01-06 04:55:54 +0000 | [diff] [blame] | 334 | bool In32BitMode; |
| 335 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 336 | /// True if compiling for 16-bit, false for 32-bit or 64-bit. |
Craig Topper | 3c80d62 | 2014-01-06 04:55:54 +0000 | [diff] [blame] | 337 | bool In16BitMode; |
| 338 | |
Eric Christopher | a08f30b | 2014-06-09 17:08:19 +0000 | [diff] [blame] | 339 | X86SelectionDAGInfo TSInfo; |
Eric Christopher | 1a21203 | 2014-06-11 00:25:19 +0000 | [diff] [blame] | 340 | // Ordering here is important. X86InstrInfo initializes X86RegisterInfo which |
| 341 | // X86TargetLowering needs. |
| 342 | X86InstrInfo InstrInfo; |
| 343 | X86TargetLowering TLInfo; |
| 344 | X86FrameLowering FrameLowering; |
Eric Christopher | a08f30b | 2014-06-09 17:08:19 +0000 | [diff] [blame] | 345 | |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 346 | public: |
Jeff Cohen | 33a030e | 2005-07-27 05:53:44 +0000 | [diff] [blame] | 347 | /// This constructor initializes the data members to match that |
Daniel Dunbar | 31b44e8 | 2009-08-02 22:11:08 +0000 | [diff] [blame] | 348 | /// of the specified triple. |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 349 | /// |
David Majnemer | ca29023 | 2016-05-20 18:16:06 +0000 | [diff] [blame] | 350 | X86Subtarget(const Triple &TT, StringRef CPU, StringRef FS, |
Daniel Sanders | a1b2db79 | 2017-05-19 11:08:33 +0000 | [diff] [blame] | 351 | const X86TargetMachine &TM, unsigned StackAlignOverride); |
Eric Christopher | a08f30b | 2014-06-09 17:08:19 +0000 | [diff] [blame] | 352 | |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 353 | const X86TargetLowering *getTargetLowering() const override { |
| 354 | return &TLInfo; |
| 355 | } |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 356 | |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 357 | const X86InstrInfo *getInstrInfo() const override { return &InstrInfo; } |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 358 | |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 359 | const X86FrameLowering *getFrameLowering() const override { |
| 360 | return &FrameLowering; |
| 361 | } |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 362 | |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 363 | const X86SelectionDAGInfo *getSelectionDAGInfo() const override { |
| 364 | return &TSInfo; |
| 365 | } |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 366 | |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 367 | const X86RegisterInfo *getRegisterInfo() const override { |
| 368 | return &getInstrInfo()->getRegisterInfo(); |
| 369 | } |
Chris Lattner | 351817b | 2005-07-12 02:36:10 +0000 | [diff] [blame] | 370 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 371 | /// Returns the minimum alignment known to hold of the |
Chris Lattner | 351817b | 2005-07-12 02:36:10 +0000 | [diff] [blame] | 372 | /// stack frame on entry to the function and which must be maintained by every |
| 373 | /// function for this subtarget. |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 374 | unsigned getStackAlignment() const { return stackAlignment; } |
Jeff Cohen | 33a030e | 2005-07-27 05:53:44 +0000 | [diff] [blame] | 375 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 376 | /// Returns the maximum memset / memcpy size |
Rafael Espindola | 063f177 | 2007-10-31 11:52:06 +0000 | [diff] [blame] | 377 | /// that still makes it profitable to inline the call. |
| 378 | unsigned getMaxInlineSizeThreshold() const { return MaxInlineSizeThreshold; } |
Anton Korobeynikov | 5b96cde | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 379 | |
| 380 | /// ParseSubtargetFeatures - Parses features string setting specified |
Evan Cheng | ff1beda | 2006-10-06 09:17:41 +0000 | [diff] [blame] | 381 | /// subtarget options. Definition of function is auto generated by tblgen. |
Evan Cheng | 1a72add6 | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 382 | void ParseSubtargetFeatures(StringRef CPU, StringRef FS); |
Evan Cheng | ff1beda | 2006-10-06 09:17:41 +0000 | [diff] [blame] | 383 | |
Zvi Rackover | 76dbf26 | 2016-11-15 06:34:33 +0000 | [diff] [blame] | 384 | /// Methods used by Global ISel |
| 385 | const CallLowering *getCallLowering() const override; |
| 386 | const InstructionSelector *getInstructionSelector() const override; |
| 387 | const LegalizerInfo *getLegalizerInfo() const override; |
| 388 | const RegisterBankInfo *getRegBankInfo() const override; |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 389 | |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 390 | private: |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 391 | /// Initialize the full set of dependencies so we can use an initializer |
Eric Christopher | 1a21203 | 2014-06-11 00:25:19 +0000 | [diff] [blame] | 392 | /// list for X86Subtarget. |
| 393 | X86Subtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS); |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 394 | void initializeEnvironment(); |
Eric Christopher | b68e253 | 2014-09-03 20:36:31 +0000 | [diff] [blame] | 395 | void initSubtargetFeatures(StringRef CPU, StringRef FS); |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 396 | |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 397 | public: |
Eli Bendersky | 597fc12 | 2013-01-25 22:07:43 +0000 | [diff] [blame] | 398 | /// Is this x86_64? (disregarding specific ABI / programming model) |
| 399 | bool is64Bit() const { |
| 400 | return In64BitMode; |
| 401 | } |
| 402 | |
Craig Topper | 3c80d62 | 2014-01-06 04:55:54 +0000 | [diff] [blame] | 403 | bool is32Bit() const { |
| 404 | return In32BitMode; |
| 405 | } |
| 406 | |
| 407 | bool is16Bit() const { |
| 408 | return In16BitMode; |
| 409 | } |
| 410 | |
Eli Bendersky | 597fc12 | 2013-01-25 22:07:43 +0000 | [diff] [blame] | 411 | /// Is this x86_64 with the ILP32 programming model (x32 ABI)? |
| 412 | bool isTarget64BitILP32() const { |
Rafael Espindola | ddb913c | 2013-12-19 00:44:37 +0000 | [diff] [blame] | 413 | return In64BitMode && (TargetTriple.getEnvironment() == Triple::GNUX32 || |
Simon Pilgrim | a279410 | 2014-11-22 19:12:10 +0000 | [diff] [blame] | 414 | TargetTriple.isOSNaCl()); |
Eli Bendersky | 597fc12 | 2013-01-25 22:07:43 +0000 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | /// Is this x86_64 with the LP64 programming model (standard AMD64, no x32)? |
| 418 | bool isTarget64BitLP64() const { |
Pavel Chupin | f55eb45 | 2014-08-07 09:41:19 +0000 | [diff] [blame] | 419 | return In64BitMode && (TargetTriple.getEnvironment() != Triple::GNUX32 && |
Simon Pilgrim | a279410 | 2014-11-22 19:12:10 +0000 | [diff] [blame] | 420 | !TargetTriple.isOSNaCl()); |
Eli Bendersky | 597fc12 | 2013-01-25 22:07:43 +0000 | [diff] [blame] | 421 | } |
Evan Cheng | 54c13da | 2006-01-26 09:53:06 +0000 | [diff] [blame] | 422 | |
Duncan Sands | 595a442 | 2008-11-28 09:29:37 +0000 | [diff] [blame] | 423 | PICStyles::Style getPICStyle() const { return PICStyle; } |
| 424 | void setPICStyle(PICStyles::Style Style) { PICStyle = Style; } |
Anton Korobeynikov | a0554d9 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 425 | |
Andrey Turetskiy | 6a3d561 | 2016-03-23 11:13:54 +0000 | [diff] [blame] | 426 | bool hasX87() const { return HasX87; } |
Chris Lattner | a30d4ce | 2010-03-14 18:31:44 +0000 | [diff] [blame] | 427 | bool hasCMov() const { return HasCMov; } |
Craig Topper | eb8f9e9 | 2012-01-10 06:30:56 +0000 | [diff] [blame] | 428 | bool hasSSE1() const { return X86SSELevel >= SSE1; } |
| 429 | bool hasSSE2() const { return X86SSELevel >= SSE2; } |
| 430 | bool hasSSE3() const { return X86SSELevel >= SSE3; } |
| 431 | bool hasSSSE3() const { return X86SSELevel >= SSSE3; } |
| 432 | bool hasSSE41() const { return X86SSELevel >= SSE41; } |
| 433 | bool hasSSE42() const { return X86SSELevel >= SSE42; } |
Craig Topper | b0c0f72 | 2012-01-10 06:54:16 +0000 | [diff] [blame] | 434 | bool hasAVX() const { return X86SSELevel >= AVX; } |
| 435 | bool hasAVX2() const { return X86SSELevel >= AVX2; } |
Craig Topper | 5c94bb8 | 2013-08-21 03:57:57 +0000 | [diff] [blame] | 436 | bool hasAVX512() const { return X86SSELevel >= AVX512F; } |
Elena Demikhovsky | eace43b | 2012-11-29 12:44:59 +0000 | [diff] [blame] | 437 | bool hasFp256() const { return hasAVX(); } |
| 438 | bool hasInt256() const { return hasAVX2(); } |
Stefanus Du Toit | 96180b5 | 2009-05-26 21:04:35 +0000 | [diff] [blame] | 439 | bool hasSSE4A() const { return HasSSE4A; } |
Eric Christopher | 57a6e13 | 2015-11-14 03:04:00 +0000 | [diff] [blame] | 440 | bool hasMMX() const { return X863DNowLevel >= MMX; } |
Evan Cheng | ff1beda | 2006-10-06 09:17:41 +0000 | [diff] [blame] | 441 | bool has3DNow() const { return X863DNowLevel >= ThreeDNow; } |
| 442 | bool has3DNowA() const { return X863DNowLevel >= ThreeDNowA; } |
Benjamin Kramer | 2f48923 | 2010-12-04 20:32:23 +0000 | [diff] [blame] | 443 | bool hasPOPCNT() const { return HasPOPCNT; } |
Eric Christopher | 2ef6318 | 2010-04-02 21:54:27 +0000 | [diff] [blame] | 444 | bool hasAES() const { return HasAES; } |
Craig Topper | 09b6598 | 2015-10-16 06:03:09 +0000 | [diff] [blame] | 445 | bool hasFXSR() const { return HasFXSR; } |
Amjad Aboud | 1db6d7a | 2015-10-12 11:47:46 +0000 | [diff] [blame] | 446 | bool hasXSAVE() const { return HasXSAVE; } |
| 447 | bool hasXSAVEOPT() const { return HasXSAVEOPT; } |
| 448 | bool hasXSAVEC() const { return HasXSAVEC; } |
| 449 | bool hasXSAVES() const { return HasXSAVES; } |
Benjamin Kramer | a0396e4 | 2012-05-31 14:34:17 +0000 | [diff] [blame] | 450 | bool hasPCLMUL() const { return HasPCLMUL; } |
Simon Pilgrim | db26b3d | 2015-11-30 22:22:06 +0000 | [diff] [blame] | 451 | // Prefer FMA4 to FMA - its better for commutation/memory folding and |
| 452 | // has equal or better performance on all supported targets. |
Craig Topper | a8d4097 | 2017-03-17 07:37:31 +0000 | [diff] [blame] | 453 | bool hasFMA() const { return (HasFMA || hasAVX512()) && !HasFMA4; } |
Simon Pilgrim | db26b3d | 2015-11-30 22:22:06 +0000 | [diff] [blame] | 454 | bool hasFMA4() const { return HasFMA4; } |
Craig Topper | a8d4097 | 2017-03-17 07:37:31 +0000 | [diff] [blame] | 455 | bool hasAnyFMA() const { return hasFMA() || hasFMA4(); } |
Jan Sjödin | 1280eb1 | 2011-12-02 15:14:37 +0000 | [diff] [blame] | 456 | bool hasXOP() const { return HasXOP; } |
Yunzhong Gao | dd36e93 | 2013-09-24 18:21:52 +0000 | [diff] [blame] | 457 | bool hasTBM() const { return HasTBM; } |
Simon Pilgrim | 99b925b | 2017-05-03 15:51:39 +0000 | [diff] [blame] | 458 | bool hasLWP() const { return HasLWP; } |
Craig Topper | 786bdb9 | 2011-10-03 17:28:23 +0000 | [diff] [blame] | 459 | bool hasMOVBE() const { return HasMOVBE; } |
| 460 | bool hasRDRAND() const { return HasRDRAND; } |
Craig Topper | fe9179f | 2011-10-09 07:31:39 +0000 | [diff] [blame] | 461 | bool hasF16C() const { return HasF16C; } |
Craig Topper | 228d913 | 2011-10-30 19:57:21 +0000 | [diff] [blame] | 462 | bool hasFSGSBase() const { return HasFSGSBase; } |
Craig Topper | 271064e | 2011-10-11 06:44:02 +0000 | [diff] [blame] | 463 | bool hasLZCNT() const { return HasLZCNT; } |
Craig Topper | 3657fe4 | 2011-10-14 03:21:46 +0000 | [diff] [blame] | 464 | bool hasBMI() const { return HasBMI; } |
Craig Topper | aea148c | 2011-10-16 07:55:05 +0000 | [diff] [blame] | 465 | bool hasBMI2() const { return HasBMI2; } |
Michael Zuckerman | 97b6a692 | 2016-01-17 13:42:12 +0000 | [diff] [blame] | 466 | bool hasVBMI() const { return HasVBMI; } |
Elena Demikhovsky | 29cde35 | 2016-01-24 10:41:28 +0000 | [diff] [blame] | 467 | bool hasIFMA() const { return HasIFMA; } |
Michael Liao | 73cffdd | 2012-11-08 07:28:54 +0000 | [diff] [blame] | 468 | bool hasRTM() const { return HasRTM; } |
Kay Tiong Khoo | f809c64 | 2013-02-14 19:08:21 +0000 | [diff] [blame] | 469 | bool hasADX() const { return HasADX; } |
Ben Langmuir | 1650175 | 2013-09-12 15:51:31 +0000 | [diff] [blame] | 470 | bool hasSHA() const { return HasSHA; } |
Michael Liao | 5173ee0 | 2013-03-26 17:47:11 +0000 | [diff] [blame] | 471 | bool hasPRFCHW() const { return HasPRFCHW; } |
Michael Liao | a486a11 | 2013-03-28 23:41:26 +0000 | [diff] [blame] | 472 | bool hasRDSEED() const { return HasRDSEED; } |
Hans Wennborg | 5000ce8 | 2015-12-04 23:00:33 +0000 | [diff] [blame] | 473 | bool hasLAHFSAHF() const { return HasLAHFSAHF; } |
Ashutosh Nema | 348af9c | 2016-05-18 11:59:12 +0000 | [diff] [blame] | 474 | bool hasMWAITX() const { return HasMWAITX; } |
Craig Topper | 50f3d14 | 2017-02-09 04:27:34 +0000 | [diff] [blame] | 475 | bool hasCLZERO() const { return HasCLZERO; } |
Evan Cheng | 4c91aa3 | 2009-01-02 05:35:45 +0000 | [diff] [blame] | 476 | bool isBTMemSlow() const { return IsBTMemSlow; } |
Ekaterina Romanova | d5fa554 | 2013-11-21 23:21:26 +0000 | [diff] [blame] | 477 | bool isSHLDSlow() const { return IsSHLDSlow; } |
Zvi Rackover | 8bc7e4d | 2016-12-06 19:35:20 +0000 | [diff] [blame] | 478 | bool isPMULLDSlow() const { return IsPMULLDSlow; } |
Sanjay Patel | 3014567 | 2015-09-01 20:51:51 +0000 | [diff] [blame] | 479 | bool isUnalignedMem16Slow() const { return IsUAMem16Slow; } |
Sanjay Patel | 501890e | 2014-11-21 17:40:04 +0000 | [diff] [blame] | 480 | bool isUnalignedMem32Slow() const { return IsUAMem32Slow; } |
Sanjay Patel | ffd039b | 2015-02-03 17:13:04 +0000 | [diff] [blame] | 481 | bool hasSSEUnalignedMem() const { return HasSSEUnalignedMem; } |
Eli Friedman | 5e57042 | 2011-08-26 21:21:21 +0000 | [diff] [blame] | 482 | bool hasCmpxchg16b() const { return HasCmpxchg16b; } |
Evan Cheng | 1b81fdd | 2012-02-07 22:50:41 +0000 | [diff] [blame] | 483 | bool useLeaForSP() const { return UseLeaForSP; } |
Amjad Aboud | 4f97751 | 2017-03-03 09:03:24 +0000 | [diff] [blame] | 484 | bool hasFastPartialYMMorZMMWrite() const { |
| 485 | return HasFastPartialYMMorZMMWrite; |
| 486 | } |
Nikolai Bozhenov | f679530 | 2016-08-04 12:47:28 +0000 | [diff] [blame] | 487 | bool hasFastScalarFSQRT() const { return HasFastScalarFSQRT; } |
| 488 | bool hasFastVectorFSQRT() const { return HasFastVectorFSQRT; } |
Pierre Gousseau | b6d652a | 2016-10-14 16:41:38 +0000 | [diff] [blame] | 489 | bool hasFastLZCNT() const { return HasFastLZCNT; } |
Craig Topper | d88389a | 2017-02-21 06:39:13 +0000 | [diff] [blame] | 490 | bool hasFastSHLDRotate() const { return HasFastSHLDRotate; } |
Clement Courbet | 203fc17 | 2017-04-21 09:20:50 +0000 | [diff] [blame] | 491 | bool hasERMSB() const { return HasERMSB; } |
Alexey Volkov | fd1731d | 2014-11-21 11:19:34 +0000 | [diff] [blame] | 492 | bool hasSlowDivide32() const { return HasSlowDivide32; } |
| 493 | bool hasSlowDivide64() const { return HasSlowDivide64; } |
Preston Gurd | a01daac | 2013-01-08 18:27:24 +0000 | [diff] [blame] | 494 | bool padShortFunctions() const { return PadShortFunctions; } |
Craig Topper | 62c47a2 | 2017-08-29 05:14:27 +0000 | [diff] [blame] | 495 | bool slowTwoMemOps() const { return SlowTwoMemOps; } |
Preston Gurd | 8b7ab4b | 2013-04-25 20:29:37 +0000 | [diff] [blame] | 496 | bool LEAusesAG() const { return LEAUsesAG; } |
Alexey Volkov | 6226de6 | 2014-05-20 08:55:50 +0000 | [diff] [blame] | 497 | bool slowLEA() const { return SlowLEA; } |
Lama Saba | 2ea271b | 2017-05-18 08:11:50 +0000 | [diff] [blame] | 498 | bool slow3OpsLEA() const { return Slow3OpsLEA; } |
Alexey Volkov | 5260dba | 2014-06-09 11:40:41 +0000 | [diff] [blame] | 499 | bool slowIncDec() const { return SlowIncDec; } |
Elena Demikhovsky | 8cfb43f | 2013-07-24 11:02:47 +0000 | [diff] [blame] | 500 | bool hasCDI() const { return HasCDI; } |
Oren Ben Simhon | 7bf27f0 | 2017-05-25 13:45:23 +0000 | [diff] [blame] | 501 | bool hasVPOPCNTDQ() const { return HasVPOPCNTDQ; } |
Elena Demikhovsky | 8cfb43f | 2013-07-24 11:02:47 +0000 | [diff] [blame] | 502 | bool hasPFI() const { return HasPFI; } |
| 503 | bool hasERI() const { return HasERI; } |
Robert Khasanov | bfa0131 | 2014-07-21 14:54:21 +0000 | [diff] [blame] | 504 | bool hasDQI() const { return HasDQI; } |
| 505 | bool hasBWI() const { return HasBWI; } |
| 506 | bool hasVLX() const { return HasVLX; } |
Asaf Badouh | 5acf66f | 2015-12-15 13:35:29 +0000 | [diff] [blame] | 507 | bool hasPKU() const { return HasPKU; } |
Elena Demikhovsky | f7e641c | 2015-06-03 10:30:57 +0000 | [diff] [blame] | 508 | bool hasMPX() const { return HasMPX; } |
Craig Topper | 3fd463a | 2017-02-08 05:45:46 +0000 | [diff] [blame] | 509 | bool hasCLFLUSHOPT() const { return HasCLFLUSHOPT; } |
Craig Topper | 559f61e | 2017-08-29 23:13:36 +0000 | [diff] [blame^] | 510 | bool hasCLWB() const { return HasCLWB; } |
Evan Cheng | 4c91aa3 | 2009-01-02 05:35:45 +0000 | [diff] [blame] | 511 | |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 512 | bool isXRaySupported() const override { return is64Bit(); } |
Dean Michael Berris | 46401544 | 2016-09-19 00:54:35 +0000 | [diff] [blame] | 513 | |
Andrew Trick | 8523b16 | 2012-02-01 23:20:51 +0000 | [diff] [blame] | 514 | bool isAtom() const { return X86ProcFamily == IntelAtom; } |
Alexey Volkov | 6226de6 | 2014-05-20 08:55:50 +0000 | [diff] [blame] | 515 | bool isSLM() const { return X86ProcFamily == IntelSLM; } |
Eric Christopher | 824f42f | 2015-05-12 01:26:05 +0000 | [diff] [blame] | 516 | bool useSoftFloat() const { return UseSoftFloat; } |
Andrew Trick | 8523b16 | 2012-02-01 23:20:51 +0000 | [diff] [blame] | 517 | |
Sanjay Patel | e9bf993 | 2016-02-13 17:26:29 +0000 | [diff] [blame] | 518 | /// Use mfence if we have SSE2 or we're on x86-64 (even if we asked for |
| 519 | /// no-sse2). There isn't any reason to disable it if the target processor |
| 520 | /// supports it. |
| 521 | bool hasMFence() const { return hasSSE2() || is64Bit(); } |
| 522 | |
Daniel Dunbar | 44b5303 | 2011-04-19 21:01:47 +0000 | [diff] [blame] | 523 | const Triple &getTargetTriple() const { return TargetTriple; } |
| 524 | |
Daniel Dunbar | 2b9b0e3 | 2011-04-19 21:14:45 +0000 | [diff] [blame] | 525 | bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); } |
Simon Pilgrim | a279410 | 2014-11-22 19:12:10 +0000 | [diff] [blame] | 526 | bool isTargetFreeBSD() const { return TargetTriple.isOSFreeBSD(); } |
Rafael Espindola | 44eae72 | 2014-12-29 15:47:28 +0000 | [diff] [blame] | 527 | bool isTargetDragonFly() const { return TargetTriple.isOSDragonFly(); } |
Simon Pilgrim | a279410 | 2014-11-22 19:12:10 +0000 | [diff] [blame] | 528 | bool isTargetSolaris() const { return TargetTriple.isOSSolaris(); } |
Paul Robinson | 78a6953 | 2016-11-30 23:14:27 +0000 | [diff] [blame] | 529 | bool isTargetPS4() const { return TargetTriple.isPS4CPU(); } |
Tim Northover | 9653eb5 | 2013-12-10 16:57:43 +0000 | [diff] [blame] | 530 | |
| 531 | bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); } |
| 532 | bool isTargetCOFF() const { return TargetTriple.isOSBinFormatCOFF(); } |
Eric Christopher | 2189515 | 2014-12-05 00:22:38 +0000 | [diff] [blame] | 533 | bool isTargetMachO() const { return TargetTriple.isOSBinFormatMachO(); } |
Tim Northover | 9653eb5 | 2013-12-10 16:57:43 +0000 | [diff] [blame] | 534 | |
Cameron Esfahani | 943908b | 2013-08-29 20:23:14 +0000 | [diff] [blame] | 535 | bool isTargetLinux() const { return TargetTriple.isOSLinux(); } |
Marcin Koscielnicki | 0275fac | 2016-05-05 11:35:51 +0000 | [diff] [blame] | 536 | bool isTargetKFreeBSD() const { return TargetTriple.isOSKFreeBSD(); } |
| 537 | bool isTargetGlibc() const { return TargetTriple.isOSGlibc(); } |
Evgeniy Stepanov | 5fe279e | 2015-10-08 21:21:24 +0000 | [diff] [blame] | 538 | bool isTargetAndroid() const { return TargetTriple.isAndroid(); } |
Cameron Esfahani | 943908b | 2013-08-29 20:23:14 +0000 | [diff] [blame] | 539 | bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); } |
Nick Lewycky | 73df7e3 | 2011-09-05 21:51:43 +0000 | [diff] [blame] | 540 | bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); } |
| 541 | bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); } |
Michael Kuperstein | e1194bd | 2015-10-27 07:23:59 +0000 | [diff] [blame] | 542 | bool isTargetMCU() const { return TargetTriple.isOSIAMCU(); } |
Petr Hosek | a7d5916 | 2017-02-24 03:10:10 +0000 | [diff] [blame] | 543 | bool isTargetFuchsia() const { return TargetTriple.isOSFuchsia(); } |
Yaron Keren | 2895496 | 2014-04-02 04:27:51 +0000 | [diff] [blame] | 544 | |
| 545 | bool isTargetWindowsMSVC() const { |
| 546 | return TargetTriple.isWindowsMSVCEnvironment(); |
| 547 | } |
| 548 | |
Yaron Keren | 136fe7d | 2014-04-01 18:15:34 +0000 | [diff] [blame] | 549 | bool isTargetKnownWindowsMSVC() const { |
NAKAMURA Takumi | 09717bd | 2014-03-30 04:35:00 +0000 | [diff] [blame] | 550 | return TargetTriple.isKnownWindowsMSVCEnvironment(); |
Saleem Abdulrasool | edbdd2e | 2014-03-27 22:50:05 +0000 | [diff] [blame] | 551 | } |
Yaron Keren | 2895496 | 2014-04-02 04:27:51 +0000 | [diff] [blame] | 552 | |
Pat Gavlin | b399095 | 2015-08-14 22:41:43 +0000 | [diff] [blame] | 553 | bool isTargetWindowsCoreCLR() const { |
| 554 | return TargetTriple.isWindowsCoreCLREnvironment(); |
| 555 | } |
| 556 | |
Yaron Keren | 2895496 | 2014-04-02 04:27:51 +0000 | [diff] [blame] | 557 | bool isTargetWindowsCygwin() const { |
Saleem Abdulrasool | edbdd2e | 2014-03-27 22:50:05 +0000 | [diff] [blame] | 558 | return TargetTriple.isWindowsCygwinEnvironment(); |
| 559 | } |
Yaron Keren | 2895496 | 2014-04-02 04:27:51 +0000 | [diff] [blame] | 560 | |
| 561 | bool isTargetWindowsGNU() const { |
| 562 | return TargetTriple.isWindowsGNUEnvironment(); |
| 563 | } |
| 564 | |
Saleem Abdulrasool | 2f3b3f3 | 2014-11-20 18:01:26 +0000 | [diff] [blame] | 565 | bool isTargetWindowsItanium() const { |
| 566 | return TargetTriple.isWindowsItaniumEnvironment(); |
| 567 | } |
| 568 | |
Chandler Carruth | ebd90c5 | 2012-02-05 08:26:40 +0000 | [diff] [blame] | 569 | bool isTargetCygMing() const { return TargetTriple.isOSCygMing(); } |
Mikhail Glushenkov | abd56bd | 2010-02-28 22:54:30 +0000 | [diff] [blame] | 570 | |
Yaron Keren | 79bb266 | 2013-10-23 23:37:01 +0000 | [diff] [blame] | 571 | bool isOSWindows() const { return TargetTriple.isOSWindows(); } |
| 572 | |
Anton Korobeynikov | 7f125b2 | 2008-03-22 20:57:27 +0000 | [diff] [blame] | 573 | bool isTargetWin64() const { |
Chandler Carruth | ebd90c5 | 2012-02-05 08:26:40 +0000 | [diff] [blame] | 574 | return In64BitMode && TargetTriple.isOSWindows(); |
Evan Cheng | d22a4a1 | 2011-02-01 01:14:13 +0000 | [diff] [blame] | 575 | } |
| 576 | |
Anton Korobeynikov | a5a6455 | 2010-09-02 23:03:46 +0000 | [diff] [blame] | 577 | bool isTargetWin32() const { |
Yaron Keren | 136fe7d | 2014-04-01 18:15:34 +0000 | [diff] [blame] | 578 | return !In64BitMode && (isTargetCygMing() || isTargetKnownWindowsMSVC()); |
Anton Korobeynikov | a5a6455 | 2010-09-02 23:03:46 +0000 | [diff] [blame] | 579 | } |
| 580 | |
Duncan Sands | 595a442 | 2008-11-28 09:29:37 +0000 | [diff] [blame] | 581 | bool isPICStyleGOT() const { return PICStyle == PICStyles::GOT; } |
Duncan Sands | 595a442 | 2008-11-28 09:29:37 +0000 | [diff] [blame] | 582 | bool isPICStyleRIPRel() const { return PICStyle == PICStyles::RIPRel; } |
Chris Lattner | e2f524f | 2009-07-10 20:47:30 +0000 | [diff] [blame] | 583 | |
Chris Lattner | 21c2940 | 2009-07-10 21:00:45 +0000 | [diff] [blame] | 584 | bool isPICStyleStubPIC() const { |
Chris Lattner | ba4d733 | 2009-07-10 20:58:47 +0000 | [diff] [blame] | 585 | return PICStyle == PICStyles::StubPIC; |
| 586 | } |
| 587 | |
Rafael Espindola | f9e348b | 2016-06-27 21:33:08 +0000 | [diff] [blame] | 588 | bool isPositionIndependent() const { return TM.isPositionIndependent(); } |
Davide Italiano | ef5d8be | 2016-06-18 00:03:20 +0000 | [diff] [blame] | 589 | |
Charles Davis | e8f297c | 2013-07-12 06:02:35 +0000 | [diff] [blame] | 590 | bool isCallingConvWin64(CallingConv::ID CC) const { |
Reid Kleckner | 4f21df2 | 2015-07-08 21:03:47 +0000 | [diff] [blame] | 591 | switch (CC) { |
| 592 | // On Win64, all these conventions just use the default convention. |
| 593 | case CallingConv::C: |
| 594 | case CallingConv::Fast: |
| 595 | case CallingConv::X86_FastCall: |
| 596 | case CallingConv::X86_StdCall: |
| 597 | case CallingConv::X86_ThisCall: |
| 598 | case CallingConv::X86_VectorCall: |
| 599 | case CallingConv::Intel_OCL_BI: |
| 600 | return isTargetWin64(); |
| 601 | // This convention allows using the Win64 convention on other targets. |
Martin Storsjo | 2f24e93 | 2017-07-17 20:05:19 +0000 | [diff] [blame] | 602 | case CallingConv::Win64: |
Reid Kleckner | 4f21df2 | 2015-07-08 21:03:47 +0000 | [diff] [blame] | 603 | return true; |
| 604 | // This convention allows using the SysV convention on Windows targets. |
| 605 | case CallingConv::X86_64_SysV: |
| 606 | return false; |
| 607 | // Otherwise, who knows what this is. |
| 608 | default: |
| 609 | return false; |
| 610 | } |
Charles Davis | e8f297c | 2013-07-12 06:02:35 +0000 | [diff] [blame] | 611 | } |
Mikhail Glushenkov | abd56bd | 2010-02-28 22:54:30 +0000 | [diff] [blame] | 612 | |
Rafael Espindola | cb2d266 | 2016-05-19 18:34:20 +0000 | [diff] [blame] | 613 | /// Classify a global variable reference for the current subtarget according |
| 614 | /// to how we should reference it in a non-pcrel context. |
Rafael Espindola | c7e9813 | 2016-05-20 12:20:10 +0000 | [diff] [blame] | 615 | unsigned char classifyLocalReference(const GlobalValue *GV) const; |
| 616 | |
| 617 | unsigned char classifyGlobalReference(const GlobalValue *GV, |
| 618 | const Module &M) const; |
Rafael Espindola | ab03eb0 | 2016-05-19 22:07:57 +0000 | [diff] [blame] | 619 | unsigned char classifyGlobalReference(const GlobalValue *GV) const; |
Anton Korobeynikov | 93acb49 | 2006-12-20 01:03:20 +0000 | [diff] [blame] | 620 | |
Rafael Espindola | cb2d266 | 2016-05-19 18:34:20 +0000 | [diff] [blame] | 621 | /// Classify a global function reference for the current subtarget. |
Rafael Espindola | c7e9813 | 2016-05-20 12:20:10 +0000 | [diff] [blame] | 622 | unsigned char classifyGlobalFunctionReference(const GlobalValue *GV, |
| 623 | const Module &M) const; |
Rafael Espindola | 46107b9 | 2016-05-19 18:49:29 +0000 | [diff] [blame] | 624 | unsigned char classifyGlobalFunctionReference(const GlobalValue *GV) const; |
Asaf Badouh | 89406d1 | 2016-04-20 08:32:57 +0000 | [diff] [blame] | 625 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 626 | /// Classify a blockaddress reference for the current subtarget according to |
| 627 | /// how we should reference it in a non-pcrel context. |
Rafael Espindola | cb2d266 | 2016-05-19 18:34:20 +0000 | [diff] [blame] | 628 | unsigned char classifyBlockAddressReference() const; |
Dan Gohman | 7a661179 | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 629 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 630 | /// Return true if the subtarget allows calls to immediate address. |
Rafael Espindola | 46107b9 | 2016-05-19 18:49:29 +0000 | [diff] [blame] | 631 | bool isLegalToCallImmediateAddr() const; |
Evan Cheng | 9609833 | 2009-05-20 04:53:57 +0000 | [diff] [blame] | 632 | |
Dan Gohman | 980d720 | 2008-04-01 20:38:36 +0000 | [diff] [blame] | 633 | /// This function returns the name of a function which has an interface |
| 634 | /// like the non-standard bzero function, if such a function exists on |
| 635 | /// the current subtarget and it is considered prefereable over |
| 636 | /// memset with zero passed as the second argument. Otherwise it |
| 637 | /// returns null. |
Bill Wendling | 1782584 | 2008-09-30 22:05:33 +0000 | [diff] [blame] | 638 | const char *getBZeroEntry() const; |
Andrew Trick | e97d8d6 | 2013-10-15 23:33:07 +0000 | [diff] [blame] | 639 | |
Evan Cheng | 0e88c7d | 2013-01-29 02:32:37 +0000 | [diff] [blame] | 640 | /// This function returns true if the target has sincos() routine in its |
| 641 | /// compiler runtime or math libraries. |
| 642 | bool hasSinCos() const; |
Dan Gohman | b9a0121 | 2008-12-16 03:35:01 +0000 | [diff] [blame] | 643 | |
Andrew Trick | e97d8d6 | 2013-10-15 23:33:07 +0000 | [diff] [blame] | 644 | /// Enable the MachineScheduler pass for all X86 subtargets. |
Craig Topper | 7315602 | 2014-03-02 09:09:27 +0000 | [diff] [blame] | 645 | bool enableMachineScheduler() const override { return true; } |
Andrew Trick | e97d8d6 | 2013-10-15 23:33:07 +0000 | [diff] [blame] | 646 | |
Andrew V. Tischenko | 75745d0 | 2017-04-14 07:44:23 +0000 | [diff] [blame] | 647 | // TODO: Update the regression tests and return true. |
| 648 | bool supportPrintSchedInfo() const override { return false; } |
| 649 | |
Eric Christopher | 6b0fcfe | 2014-05-21 23:40:26 +0000 | [diff] [blame] | 650 | bool enableEarlyIfConversion() const override; |
| 651 | |
Sanjay Patel | e63abfe | 2015-02-03 18:47:32 +0000 | [diff] [blame] | 652 | /// Return the instruction itineraries based on the subtarget selection. |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 653 | const InstrItineraryData *getInstrItineraryData() const override { |
| 654 | return &InstrItins; |
| 655 | } |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 656 | |
| 657 | AntiDepBreakMode getAntiDepBreakMode() const override { |
| 658 | return TargetSubtargetInfo::ANTIDEP_CRITICAL; |
| 659 | } |
Evan Cheng | 47455a7 | 2009-09-03 04:37:05 +0000 | [diff] [blame] | 660 | }; |
Evan Cheng | a8b4aea | 2006-10-16 21:00:37 +0000 | [diff] [blame] | 661 | |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 662 | } // end namespace llvm |
Nate Begeman | f26625e | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 663 | |
Eugene Zelenko | fbd13c5 | 2017-02-02 22:55:55 +0000 | [diff] [blame] | 664 | #endif // LLVM_LIB_TARGET_X86_X86SUBTARGET_H |