blob: 2d9eef978dfb32aabfdc4b6a478cacbc29d3df8c [file] [log] [blame]
Jia Liue1d61962012-02-19 02:03:36 +00001//===-- X86Subtarget.h - Define Subtarget for the X86 ----------*- C++ -*--===//
Nate Begemanf26625e2005-07-12 01:41:54 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begemanf26625e2005-07-12 01:41:54 +00007//
8//===----------------------------------------------------------------------===//
9//
Evan Cheng0d639a22011-07-01 21:01:15 +000010// This file declares the X86 specific subclass of TargetSubtargetInfo.
Nate Begemanf26625e2005-07-12 01:41:54 +000011//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_TARGET_X86_X86SUBTARGET_H
15#define LLVM_LIB_TARGET_X86_X86SUBTARGET_H
Nate Begemanf26625e2005-07-12 01:41:54 +000016
Eric Christophera08f30b2014-06-09 17:08:19 +000017#include "X86FrameLowering.h"
18#include "X86ISelLowering.h"
19#include "X86InstrInfo.h"
Eric Christophera08f30b2014-06-09 17:08:19 +000020#include "X86SelectionDAGInfo.h"
Eugene Zelenkofbd13c52017-02-02 22:55:55 +000021#include "llvm/ADT/StringRef.h"
Eric Christopherd4298462010-07-05 19:26:33 +000022#include "llvm/ADT/Triple.h"
Quentin Colombet61d71a12017-08-15 22:31:51 +000023#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 Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/CallingConv.h"
Eugene Zelenkofbd13c52017-02-02 22:55:55 +000028#include "llvm/MC/MCInstrItineraries.h"
29#include "llvm/Target/TargetMachine.h"
Evan Cheng0d639a22011-07-01 21:01:15 +000030#include "llvm/Target/TargetSubtargetInfo.h"
Eugene Zelenkofbd13c52017-02-02 22:55:55 +000031#include <memory>
Jim Laskey19058c32005-09-01 21:38:21 +000032
Evan Cheng54b68e32011-07-01 20:45:01 +000033#define GET_SUBTARGETINFO_HEADER
Evan Chengc9c090d2011-07-01 22:36:09 +000034#include "X86GenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000035
Nate Begemanf26625e2005-07-12 01:41:54 +000036namespace llvm {
Eugene Zelenkofbd13c52017-02-02 22:55:55 +000037
Anton Korobeynikov6dbdfe22006-11-30 22:42:55 +000038class GlobalValue;
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +000039
Sanjay Patele63abfe2015-02-03 18:47:32 +000040/// The X86 backend supports a number of different styles of PIC.
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +000041///
Duncan Sands595a4422008-11-28 09:29:37 +000042namespace PICStyles {
Eugene Zelenkofbd13c52017-02-02 22:55:55 +000043
Anton Korobeynikova0554d92007-01-12 19:20:47 +000044enum Style {
Rafael Espindola0d348262016-06-20 23:41:56 +000045 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 Korobeynikova0554d92007-01-12 19:20:47 +000049};
Eugene Zelenkofbd13c52017-02-02 22:55:55 +000050
51} // end namespace PICStyles
Nate Begemanf26625e2005-07-12 01:41:54 +000052
Craig Topperec828472014-03-31 06:53:13 +000053class X86Subtarget final : public X86GenSubtargetInfo {
Nate Begemanf26625e2005-07-12 01:41:54 +000054protected:
Evan Chengcde9e302006-01-27 08:10:46 +000055 enum X86SSEEnum {
Eric Christopher11e59832015-10-08 20:10:06 +000056 NoSSE, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, AVX, AVX2, AVX512F
Evan Chengcde9e302006-01-27 08:10:46 +000057 };
58
Evan Chengff1beda2006-10-06 09:17:41 +000059 enum X863DNowEnum {
Eric Christopher57a6e132015-11-14 03:04:00 +000060 NoThreeDNow, MMX, ThreeDNow, ThreeDNowA
Evan Chengff1beda2006-10-06 09:17:41 +000061 };
62
Andrew Trick8523b162012-02-01 23:20:51 +000063 enum X86ProcFamilyEnum {
Michael Zuckerman4bcb9c32017-06-29 10:00:33 +000064 Others, IntelAtom, IntelSLM, IntelGLM
Andrew Trick8523b162012-02-01 23:20:51 +000065 };
66
Sanjay Patele63abfe2015-02-03 18:47:32 +000067 /// X86 processor family: Intel Atom, and others
Andrew Trick8523b162012-02-01 23:20:51 +000068 X86ProcFamilyEnum X86ProcFamily;
Chad Rosier24c19d22012-08-01 18:39:17 +000069
Sanjay Patele63abfe2015-02-03 18:47:32 +000070 /// Which PIC style to use
Duncan Sands595a4422008-11-28 09:29:37 +000071 PICStyles::Style PICStyle;
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +000072
Rafael Espindolaab03eb02016-05-19 22:07:57 +000073 const TargetMachine &TM;
Rafael Espindola46107b92016-05-19 18:49:29 +000074
Eric Christopher11e59832015-10-08 20:10:06 +000075 /// SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, or none supported.
Evan Chengcde9e302006-01-27 08:10:46 +000076 X86SSEEnum X86SSELevel;
77
Eric Christopher57a6e132015-11-14 03:04:00 +000078 /// MMX, 3DNow, 3DNow Athlon, or none supported.
Evan Chengff1beda2006-10-06 09:17:41 +000079 X863DNowEnum X863DNowLevel;
80
Andrey Turetskiy6a3d5612016-03-23 11:13:54 +000081 /// True if the processor supports X87 instructions.
82 bool HasX87;
83
Sanjay Patele63abfe2015-02-03 18:47:32 +000084 /// True if this processor has conditional move instructions
Chris Lattnercc8c5812009-09-02 05:53:04 +000085 /// (generally pentium pro+).
86 bool HasCMov;
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +000087
Sanjay Patele63abfe2015-02-03 18:47:32 +000088 /// True if the processor supports X86-64 instructions.
Evan Cheng11b0a5d2006-09-08 06:48:29 +000089 bool HasX86_64;
Evan Cheng4c91aa32009-01-02 05:35:45 +000090
Sanjay Patele63abfe2015-02-03 18:47:32 +000091 /// True if the processor supports POPCNT.
Benjamin Kramer2f489232010-12-04 20:32:23 +000092 bool HasPOPCNT;
93
Sanjay Patele63abfe2015-02-03 18:47:32 +000094 /// True if the processor supports SSE4A instructions.
Stefanus Du Toit96180b52009-05-26 21:04:35 +000095 bool HasSSE4A;
96
Sanjay Patele63abfe2015-02-03 18:47:32 +000097 /// Target has AES instructions
Eric Christopher2ef63182010-04-02 21:54:27 +000098 bool HasAES;
99
Craig Topper09b65982015-10-16 06:03:09 +0000100 /// Target has FXSAVE/FXRESTOR instructions
101 bool HasFXSR;
102
Amjad Aboud1db6d7a2015-10-12 11:47:46 +0000103 /// Target has XSAVE instructions
104 bool HasXSAVE;
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000105
Amjad Aboud1db6d7a2015-10-12 11:47:46 +0000106 /// Target has XSAVEOPT instructions
107 bool HasXSAVEOPT;
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000108
Amjad Aboud1db6d7a2015-10-12 11:47:46 +0000109 /// Target has XSAVEC instructions
110 bool HasXSAVEC;
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000111
Amjad Aboud1db6d7a2015-10-12 11:47:46 +0000112 /// Target has XSAVES instructions
113 bool HasXSAVES;
114
Sanjay Patele63abfe2015-02-03 18:47:32 +0000115 /// Target has carry-less multiplication
Benjamin Kramera0396e42012-05-31 14:34:17 +0000116 bool HasPCLMUL;
Bruno Cardoso Lopes09dc24b2010-07-23 01:17:51 +0000117
Sanjay Patele63abfe2015-02-03 18:47:32 +0000118 /// Target has 3-operand fused multiply-add
Craig Topper79dbb0c2012-06-03 18:58:46 +0000119 bool HasFMA;
David Greene8f6f72c2009-06-26 22:46:54 +0000120
Sanjay Patele63abfe2015-02-03 18:47:32 +0000121 /// Target has 4-operand fused multiply-add
David Greene8f6f72c2009-06-26 22:46:54 +0000122 bool HasFMA4;
123
Sanjay Patele63abfe2015-02-03 18:47:32 +0000124 /// Target has XOP instructions
Jan Sjödin1280eb12011-12-02 15:14:37 +0000125 bool HasXOP;
126
Sanjay Patele63abfe2015-02-03 18:47:32 +0000127 /// Target has TBM instructions.
Yunzhong Gaodd36e932013-09-24 18:21:52 +0000128 bool HasTBM;
129
Simon Pilgrim99b925b2017-05-03 15:51:39 +0000130 /// Target has LWP instructions
131 bool HasLWP;
132
Sanjay Patele63abfe2015-02-03 18:47:32 +0000133 /// True if the processor has the MOVBE instruction.
Craig Topper786bdb92011-10-03 17:28:23 +0000134 bool HasMOVBE;
135
Sanjay Patele63abfe2015-02-03 18:47:32 +0000136 /// True if the processor has the RDRAND instruction.
Craig Topper786bdb92011-10-03 17:28:23 +0000137 bool HasRDRAND;
138
Sanjay Patele63abfe2015-02-03 18:47:32 +0000139 /// Processor has 16-bit floating point conversion instructions.
Craig Topperfe9179f2011-10-09 07:31:39 +0000140 bool HasF16C;
141
Sanjay Patele63abfe2015-02-03 18:47:32 +0000142 /// Processor has FS/GS base insturctions.
Craig Topper228d9132011-10-30 19:57:21 +0000143 bool HasFSGSBase;
144
Sanjay Patele63abfe2015-02-03 18:47:32 +0000145 /// Processor has LZCNT instruction.
Craig Topper271064e2011-10-11 06:44:02 +0000146 bool HasLZCNT;
147
Sanjay Patele63abfe2015-02-03 18:47:32 +0000148 /// Processor has BMI1 instructions.
Craig Topper3657fe42011-10-14 03:21:46 +0000149 bool HasBMI;
150
Sanjay Patele63abfe2015-02-03 18:47:32 +0000151 /// Processor has BMI2 instructions.
Craig Topperaea148c2011-10-16 07:55:05 +0000152 bool HasBMI2;
153
Michael Zuckerman97b6a6922016-01-17 13:42:12 +0000154 /// Processor has VBMI instructions.
155 bool HasVBMI;
156
Elena Demikhovsky29cde352016-01-24 10:41:28 +0000157 /// Processor has Integer Fused Multiply Add
158 bool HasIFMA;
159
Sanjay Patele63abfe2015-02-03 18:47:32 +0000160 /// Processor has RTM instructions.
Michael Liao73cffdd2012-11-08 07:28:54 +0000161 bool HasRTM;
162
Sanjay Patele63abfe2015-02-03 18:47:32 +0000163 /// Processor has ADX instructions.
Kay Tiong Khoof809c642013-02-14 19:08:21 +0000164 bool HasADX;
165
Sanjay Patele63abfe2015-02-03 18:47:32 +0000166 /// Processor has SHA instructions.
Ben Langmuir16501752013-09-12 15:51:31 +0000167 bool HasSHA;
168
Sanjay Patele63abfe2015-02-03 18:47:32 +0000169 /// Processor has PRFCHW instructions.
Michael Liao5173ee02013-03-26 17:47:11 +0000170 bool HasPRFCHW;
171
Sanjay Patele63abfe2015-02-03 18:47:32 +0000172 /// Processor has RDSEED instructions.
Michael Liaoa486a112013-03-28 23:41:26 +0000173 bool HasRDSEED;
174
Hans Wennborg5000ce82015-12-04 23:00:33 +0000175 /// Processor has LAHF/SAHF instructions.
176 bool HasLAHFSAHF;
177
Ashutosh Nema348af9c2016-05-18 11:59:12 +0000178 /// Processor has MONITORX/MWAITX instructions.
179 bool HasMWAITX;
180
Craig Topper50f3d142017-02-09 04:27:34 +0000181 /// Processor has Cache Line Zero instruction
182 bool HasCLZERO;
183
Elena Demikhovsky29cde352016-01-24 10:41:28 +0000184 /// Processor has Prefetch with intent to Write instruction
185 bool HasPFPREFETCHWT1;
186
Sanjay Patele63abfe2015-02-03 18:47:32 +0000187 /// True if BT (bit test) of memory instructions are slow.
David Greene8f6f72c2009-06-26 22:46:54 +0000188 bool IsBTMemSlow;
Evan Cheng4cf30b72009-12-18 07:40:29 +0000189
Sanjay Patele63abfe2015-02-03 18:47:32 +0000190 /// True if SHLD instructions are slow.
Ekaterina Romanovad5fa5542013-11-21 23:21:26 +0000191 bool IsSHLDSlow;
192
Zvi Rackover8bc7e4d2016-12-06 19:35:20 +0000193 /// True if the PMULLD instruction is slow compared to PMULLW/PMULHW and
194 // PMULUDQ.
195 bool IsPMULLDSlow;
196
Sanjay Patel30145672015-09-01 20:51:51 +0000197 /// True if unaligned memory accesses of 16-bytes are slow.
198 bool IsUAMem16Slow;
Evan Cheng738b0f92010-04-01 05:58:17 +0000199
Sanjay Patel9e916dc2015-08-21 20:17:26 +0000200 /// True if unaligned memory accesses of 32-bytes are slow.
Sanjay Patel501890e2014-11-21 17:40:04 +0000201 bool IsUAMem32Slow;
Michael Liao5bf95782014-12-04 05:20:33 +0000202
Sanjay Patelffd039b2015-02-03 17:13:04 +0000203 /// True if SSE operations can have unaligned memory operands.
204 /// This may require setting a configuration bit in the processor.
205 bool HasSSEUnalignedMem;
David Greene206351a2010-01-11 16:29:42 +0000206
Sanjay Patele63abfe2015-02-03 18:47:32 +0000207 /// True if this processor has the CMPXCHG16B instruction;
Eli Friedman5e570422011-08-26 21:21:21 +0000208 /// this is true for most x86-64 chips, but not the first AMD chips.
209 bool HasCmpxchg16b;
210
Sanjay Patele63abfe2015-02-03 18:47:32 +0000211 /// True if the LEA instruction should be used for adjusting
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000212 /// the stack pointer. This is an optimization for Intel Atom processors.
213 bool UseLeaForSP;
214
Yunzhong Gao0de36ec2016-02-12 23:37:57 +0000215 /// True if there is no performance penalty to writing only the lower parts
Amjad Aboud4f977512017-03-03 09:03:24 +0000216 /// of a YMM or ZMM register without clearing the upper part.
217 bool HasFastPartialYMMorZMMWrite;
Yunzhong Gao0de36ec2016-02-12 23:37:57 +0000218
Nikolai Bozhenovf6795302016-08-04 12:47:28 +0000219 /// 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 Patele63abfe2015-02-03 18:47:32 +0000227 /// True if 8-bit divisions are significantly faster than
Alexey Volkovfd1731d2014-11-21 11:19:34 +0000228 /// 32-bit divisions and should be used when possible.
229 bool HasSlowDivide32;
230
Nikolai Bozhenov6bdf92c2017-01-12 19:34:15 +0000231 /// True if 32-bit divides are significantly faster than
Alexey Volkovfd1731d2014-11-21 11:19:34 +0000232 /// 64-bit divisions and should be used when possible.
233 bool HasSlowDivide64;
Preston Gurdcdf540d2012-09-04 18:22:17 +0000234
Pierre Gousseaub6d652a2016-10-14 16:41:38 +0000235 /// True if LZCNT instruction is fast.
236 bool HasFastLZCNT;
237
Craig Topperd88389a2017-02-21 06:39:13 +0000238 /// True if SHLD based rotate is fast.
239 bool HasFastSHLDRotate;
240
Clement Courbet203fc172017-04-21 09:20:50 +0000241 /// True if the processor has enhanced REP MOVSB/STOSB.
242 bool HasERMSB;
Clement Courbet1ce3b822017-04-21 09:20:39 +0000243
Sanjay Patele63abfe2015-02-03 18:47:32 +0000244 /// True if the short functions should be padded to prevent
Preston Gurda01daac2013-01-08 18:27:24 +0000245 /// a stall when returning too early.
246 bool PadShortFunctions;
247
Sanjay Patele63abfe2015-02-03 18:47:32 +0000248 /// True if the Calls with memory reference should be converted
Preston Gurd663e6f92013-03-27 19:14:02 +0000249 /// to a register-based indirect call.
250 bool CallRegIndirect;
Sanjay Patele63abfe2015-02-03 18:47:32 +0000251
252 /// True if the LEA instruction inputs have to be ready at address generation
253 /// (AG) time.
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000254 bool LEAUsesAG;
Preston Gurd663e6f92013-03-27 19:14:02 +0000255
Sanjay Patele63abfe2015-02-03 18:47:32 +0000256 /// True if the LEA instruction with certain arguments is slow
Alexey Volkov6226de62014-05-20 08:55:50 +0000257 bool SlowLEA;
258
Lama Saba2ea271b2017-05-18 08:11:50 +0000259 /// 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 Patele63abfe2015-02-03 18:47:32 +0000264 /// True if INC and DEC instructions are slow when writing to flags
Alexey Volkov5260dba2014-06-09 11:40:41 +0000265 bool SlowIncDec;
266
Elena Demikhovsky8cfb43f2013-07-24 11:02:47 +0000267 /// Processor has AVX-512 PreFetch Instructions
268 bool HasPFI;
Robert Khasanovbfa01312014-07-21 14:54:21 +0000269
Elena Demikhovsky8cfb43f2013-07-24 11:02:47 +0000270 /// Processor has AVX-512 Exponential and Reciprocal Instructions
271 bool HasERI;
Robert Khasanovbfa01312014-07-21 14:54:21 +0000272
Elena Demikhovsky8cfb43f2013-07-24 11:02:47 +0000273 /// Processor has AVX-512 Conflict Detection Instructions
274 bool HasCDI;
Robert Khasanovbfa01312014-07-21 14:54:21 +0000275
Oren Ben Simhon7bf27f02017-05-25 13:45:23 +0000276 /// Processor has AVX-512 population count Instructions
277 bool HasVPOPCNTDQ;
278
Robert Khasanovbfa01312014-07-21 14:54:21 +0000279 /// 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 Badouh5acf66f2015-12-15 13:35:29 +0000288 /// Processor has PKU extenstions
289 bool HasPKU;
290
Elena Demikhovsky29cde352016-01-24 10:41:28 +0000291 /// Processor supports MPX - Memory Protection Extensions
Elena Demikhovskyf7e641c2015-06-03 10:30:57 +0000292 bool HasMPX;
293
Elena Demikhovsky29cde352016-01-24 10:41:28 +0000294 /// Processor has Software Guard Extensions
295 bool HasSGX;
296
297 /// Processor supports Flush Cache Line instruction
298 bool HasCLFLUSHOPT;
299
Elena Demikhovsky29cde352016-01-24 10:41:28 +0000300 /// Processor supports Cache Line Write Back instruction
301 bool HasCLWB;
302
Eric Christopher824f42f2015-05-12 01:26:05 +0000303 /// Use software floating point for code generation.
304 bool UseSoftFloat;
305
Sanjay Patele63abfe2015-02-03 18:47:32 +0000306 /// The minimum alignment known to hold of the stack frame on
Chris Lattner351817b2005-07-12 02:36:10 +0000307 /// entry to the function and which must be maintained by every function.
Nate Begemanf26625e2005-07-12 01:41:54 +0000308 unsigned stackAlignment;
Jeff Cohen33a030e2005-07-27 05:53:44 +0000309
Rafael Espindola063f1772007-10-31 11:52:06 +0000310 /// Max. memset / memcpy size that is turned into rep/movs, rep/stos ops.
Evan Cheng763cdfd2007-08-01 23:45:51 +0000311 ///
Rafael Espindola063f1772007-10-31 11:52:06 +0000312 unsigned MaxInlineSizeThreshold;
NAKAMURA Takumi0544fe72011-02-17 12:23:50 +0000313
Sanjay Patele63abfe2015-02-03 18:47:32 +0000314 /// What processor and OS we're targeting.
Eric Christopherd4298462010-07-05 19:26:33 +0000315 Triple TargetTriple;
Chad Rosier24c19d22012-08-01 18:39:17 +0000316
Andrew Trick8523b162012-02-01 23:20:51 +0000317 /// Instruction itineraries for scheduling
318 InstrItineraryData InstrItins;
Evan Cheng03c1e6f2006-02-16 00:21:07 +0000319
Quentin Colombet61d71a12017-08-15 22:31:51 +0000320 /// 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 Christophere950b672014-08-09 04:38:53 +0000325
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000326private:
Sanjay Patele63abfe2015-02-03 18:47:32 +0000327 /// Override the stack alignment.
Bill Wendlingaef9c372013-02-15 22:31:27 +0000328 unsigned StackAlignOverride;
329
Sanjay Patele63abfe2015-02-03 18:47:32 +0000330 /// True if compiling for 64-bit, false for 16-bit or 32-bit.
Evan Cheng13bcc6c2011-07-07 21:06:52 +0000331 bool In64BitMode;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000332
Sanjay Patele63abfe2015-02-03 18:47:32 +0000333 /// True if compiling for 32-bit, false for 16-bit or 64-bit.
Craig Topper3c80d622014-01-06 04:55:54 +0000334 bool In32BitMode;
335
Sanjay Patele63abfe2015-02-03 18:47:32 +0000336 /// True if compiling for 16-bit, false for 32-bit or 64-bit.
Craig Topper3c80d622014-01-06 04:55:54 +0000337 bool In16BitMode;
338
Eric Christophera08f30b2014-06-09 17:08:19 +0000339 X86SelectionDAGInfo TSInfo;
Eric Christopher1a212032014-06-11 00:25:19 +0000340 // Ordering here is important. X86InstrInfo initializes X86RegisterInfo which
341 // X86TargetLowering needs.
342 X86InstrInfo InstrInfo;
343 X86TargetLowering TLInfo;
344 X86FrameLowering FrameLowering;
Eric Christophera08f30b2014-06-09 17:08:19 +0000345
Nate Begemanf26625e2005-07-12 01:41:54 +0000346public:
Jeff Cohen33a030e2005-07-27 05:53:44 +0000347 /// This constructor initializes the data members to match that
Daniel Dunbar31b44e82009-08-02 22:11:08 +0000348 /// of the specified triple.
Nate Begemanf26625e2005-07-12 01:41:54 +0000349 ///
David Majnemerca290232016-05-20 18:16:06 +0000350 X86Subtarget(const Triple &TT, StringRef CPU, StringRef FS,
Daniel Sandersa1b2db792017-05-19 11:08:33 +0000351 const X86TargetMachine &TM, unsigned StackAlignOverride);
Eric Christophera08f30b2014-06-09 17:08:19 +0000352
Eric Christopherd9134482014-08-04 21:25:23 +0000353 const X86TargetLowering *getTargetLowering() const override {
354 return &TLInfo;
355 }
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000356
Eric Christopherd9134482014-08-04 21:25:23 +0000357 const X86InstrInfo *getInstrInfo() const override { return &InstrInfo; }
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000358
Eric Christopherd9134482014-08-04 21:25:23 +0000359 const X86FrameLowering *getFrameLowering() const override {
360 return &FrameLowering;
361 }
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000362
Eric Christopherd9134482014-08-04 21:25:23 +0000363 const X86SelectionDAGInfo *getSelectionDAGInfo() const override {
364 return &TSInfo;
365 }
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000366
Eric Christopherd9134482014-08-04 21:25:23 +0000367 const X86RegisterInfo *getRegisterInfo() const override {
368 return &getInstrInfo()->getRegisterInfo();
369 }
Chris Lattner351817b2005-07-12 02:36:10 +0000370
Sanjay Patele63abfe2015-02-03 18:47:32 +0000371 /// Returns the minimum alignment known to hold of the
Chris Lattner351817b2005-07-12 02:36:10 +0000372 /// stack frame on entry to the function and which must be maintained by every
373 /// function for this subtarget.
Nate Begemanf26625e2005-07-12 01:41:54 +0000374 unsigned getStackAlignment() const { return stackAlignment; }
Jeff Cohen33a030e2005-07-27 05:53:44 +0000375
Sanjay Patele63abfe2015-02-03 18:47:32 +0000376 /// Returns the maximum memset / memcpy size
Rafael Espindola063f1772007-10-31 11:52:06 +0000377 /// that still makes it profitable to inline the call.
378 unsigned getMaxInlineSizeThreshold() const { return MaxInlineSizeThreshold; }
Anton Korobeynikov5b96cde2006-11-21 00:01:06 +0000379
380 /// ParseSubtargetFeatures - Parses features string setting specified
Evan Chengff1beda2006-10-06 09:17:41 +0000381 /// subtarget options. Definition of function is auto generated by tblgen.
Evan Cheng1a72add62011-07-07 07:07:08 +0000382 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
Evan Chengff1beda2006-10-06 09:17:41 +0000383
Zvi Rackover76dbf262016-11-15 06:34:33 +0000384 /// 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 Zelenkofbd13c52017-02-02 22:55:55 +0000389
Bill Wendling61375d82013-02-16 01:36:26 +0000390private:
Sanjay Patele63abfe2015-02-03 18:47:32 +0000391 /// Initialize the full set of dependencies so we can use an initializer
Eric Christopher1a212032014-06-11 00:25:19 +0000392 /// list for X86Subtarget.
393 X86Subtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS);
Bill Wendling61375d82013-02-16 01:36:26 +0000394 void initializeEnvironment();
Eric Christopherb68e2532014-09-03 20:36:31 +0000395 void initSubtargetFeatures(StringRef CPU, StringRef FS);
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000396
Bill Wendling61375d82013-02-16 01:36:26 +0000397public:
Eli Bendersky597fc122013-01-25 22:07:43 +0000398 /// Is this x86_64? (disregarding specific ABI / programming model)
399 bool is64Bit() const {
400 return In64BitMode;
401 }
402
Craig Topper3c80d622014-01-06 04:55:54 +0000403 bool is32Bit() const {
404 return In32BitMode;
405 }
406
407 bool is16Bit() const {
408 return In16BitMode;
409 }
410
Eli Bendersky597fc122013-01-25 22:07:43 +0000411 /// Is this x86_64 with the ILP32 programming model (x32 ABI)?
412 bool isTarget64BitILP32() const {
Rafael Espindoladdb913c2013-12-19 00:44:37 +0000413 return In64BitMode && (TargetTriple.getEnvironment() == Triple::GNUX32 ||
Simon Pilgrima2794102014-11-22 19:12:10 +0000414 TargetTriple.isOSNaCl());
Eli Bendersky597fc122013-01-25 22:07:43 +0000415 }
416
417 /// Is this x86_64 with the LP64 programming model (standard AMD64, no x32)?
418 bool isTarget64BitLP64() const {
Pavel Chupinf55eb452014-08-07 09:41:19 +0000419 return In64BitMode && (TargetTriple.getEnvironment() != Triple::GNUX32 &&
Simon Pilgrima2794102014-11-22 19:12:10 +0000420 !TargetTriple.isOSNaCl());
Eli Bendersky597fc122013-01-25 22:07:43 +0000421 }
Evan Cheng54c13da2006-01-26 09:53:06 +0000422
Duncan Sands595a4422008-11-28 09:29:37 +0000423 PICStyles::Style getPICStyle() const { return PICStyle; }
424 void setPICStyle(PICStyles::Style Style) { PICStyle = Style; }
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000425
Andrey Turetskiy6a3d5612016-03-23 11:13:54 +0000426 bool hasX87() const { return HasX87; }
Chris Lattnera30d4ce2010-03-14 18:31:44 +0000427 bool hasCMov() const { return HasCMov; }
Craig Toppereb8f9e92012-01-10 06:30:56 +0000428 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 Topperb0c0f722012-01-10 06:54:16 +0000434 bool hasAVX() const { return X86SSELevel >= AVX; }
435 bool hasAVX2() const { return X86SSELevel >= AVX2; }
Craig Topper5c94bb82013-08-21 03:57:57 +0000436 bool hasAVX512() const { return X86SSELevel >= AVX512F; }
Elena Demikhovskyeace43b2012-11-29 12:44:59 +0000437 bool hasFp256() const { return hasAVX(); }
438 bool hasInt256() const { return hasAVX2(); }
Stefanus Du Toit96180b52009-05-26 21:04:35 +0000439 bool hasSSE4A() const { return HasSSE4A; }
Eric Christopher57a6e132015-11-14 03:04:00 +0000440 bool hasMMX() const { return X863DNowLevel >= MMX; }
Evan Chengff1beda2006-10-06 09:17:41 +0000441 bool has3DNow() const { return X863DNowLevel >= ThreeDNow; }
442 bool has3DNowA() const { return X863DNowLevel >= ThreeDNowA; }
Benjamin Kramer2f489232010-12-04 20:32:23 +0000443 bool hasPOPCNT() const { return HasPOPCNT; }
Eric Christopher2ef63182010-04-02 21:54:27 +0000444 bool hasAES() const { return HasAES; }
Craig Topper09b65982015-10-16 06:03:09 +0000445 bool hasFXSR() const { return HasFXSR; }
Amjad Aboud1db6d7a2015-10-12 11:47:46 +0000446 bool hasXSAVE() const { return HasXSAVE; }
447 bool hasXSAVEOPT() const { return HasXSAVEOPT; }
448 bool hasXSAVEC() const { return HasXSAVEC; }
449 bool hasXSAVES() const { return HasXSAVES; }
Benjamin Kramera0396e42012-05-31 14:34:17 +0000450 bool hasPCLMUL() const { return HasPCLMUL; }
Simon Pilgrimdb26b3d2015-11-30 22:22:06 +0000451 // Prefer FMA4 to FMA - its better for commutation/memory folding and
452 // has equal or better performance on all supported targets.
Craig Toppera8d40972017-03-17 07:37:31 +0000453 bool hasFMA() const { return (HasFMA || hasAVX512()) && !HasFMA4; }
Simon Pilgrimdb26b3d2015-11-30 22:22:06 +0000454 bool hasFMA4() const { return HasFMA4; }
Craig Toppera8d40972017-03-17 07:37:31 +0000455 bool hasAnyFMA() const { return hasFMA() || hasFMA4(); }
Jan Sjödin1280eb12011-12-02 15:14:37 +0000456 bool hasXOP() const { return HasXOP; }
Yunzhong Gaodd36e932013-09-24 18:21:52 +0000457 bool hasTBM() const { return HasTBM; }
Simon Pilgrim99b925b2017-05-03 15:51:39 +0000458 bool hasLWP() const { return HasLWP; }
Craig Topper786bdb92011-10-03 17:28:23 +0000459 bool hasMOVBE() const { return HasMOVBE; }
460 bool hasRDRAND() const { return HasRDRAND; }
Craig Topperfe9179f2011-10-09 07:31:39 +0000461 bool hasF16C() const { return HasF16C; }
Craig Topper228d9132011-10-30 19:57:21 +0000462 bool hasFSGSBase() const { return HasFSGSBase; }
Craig Topper271064e2011-10-11 06:44:02 +0000463 bool hasLZCNT() const { return HasLZCNT; }
Craig Topper3657fe42011-10-14 03:21:46 +0000464 bool hasBMI() const { return HasBMI; }
Craig Topperaea148c2011-10-16 07:55:05 +0000465 bool hasBMI2() const { return HasBMI2; }
Michael Zuckerman97b6a6922016-01-17 13:42:12 +0000466 bool hasVBMI() const { return HasVBMI; }
Elena Demikhovsky29cde352016-01-24 10:41:28 +0000467 bool hasIFMA() const { return HasIFMA; }
Michael Liao73cffdd2012-11-08 07:28:54 +0000468 bool hasRTM() const { return HasRTM; }
Kay Tiong Khoof809c642013-02-14 19:08:21 +0000469 bool hasADX() const { return HasADX; }
Ben Langmuir16501752013-09-12 15:51:31 +0000470 bool hasSHA() const { return HasSHA; }
Michael Liao5173ee02013-03-26 17:47:11 +0000471 bool hasPRFCHW() const { return HasPRFCHW; }
Michael Liaoa486a112013-03-28 23:41:26 +0000472 bool hasRDSEED() const { return HasRDSEED; }
Hans Wennborg5000ce82015-12-04 23:00:33 +0000473 bool hasLAHFSAHF() const { return HasLAHFSAHF; }
Ashutosh Nema348af9c2016-05-18 11:59:12 +0000474 bool hasMWAITX() const { return HasMWAITX; }
Craig Topper50f3d142017-02-09 04:27:34 +0000475 bool hasCLZERO() const { return HasCLZERO; }
Evan Cheng4c91aa32009-01-02 05:35:45 +0000476 bool isBTMemSlow() const { return IsBTMemSlow; }
Ekaterina Romanovad5fa5542013-11-21 23:21:26 +0000477 bool isSHLDSlow() const { return IsSHLDSlow; }
Zvi Rackover8bc7e4d2016-12-06 19:35:20 +0000478 bool isPMULLDSlow() const { return IsPMULLDSlow; }
Sanjay Patel30145672015-09-01 20:51:51 +0000479 bool isUnalignedMem16Slow() const { return IsUAMem16Slow; }
Sanjay Patel501890e2014-11-21 17:40:04 +0000480 bool isUnalignedMem32Slow() const { return IsUAMem32Slow; }
Sanjay Patelffd039b2015-02-03 17:13:04 +0000481 bool hasSSEUnalignedMem() const { return HasSSEUnalignedMem; }
Eli Friedman5e570422011-08-26 21:21:21 +0000482 bool hasCmpxchg16b() const { return HasCmpxchg16b; }
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000483 bool useLeaForSP() const { return UseLeaForSP; }
Amjad Aboud4f977512017-03-03 09:03:24 +0000484 bool hasFastPartialYMMorZMMWrite() const {
485 return HasFastPartialYMMorZMMWrite;
486 }
Nikolai Bozhenovf6795302016-08-04 12:47:28 +0000487 bool hasFastScalarFSQRT() const { return HasFastScalarFSQRT; }
488 bool hasFastVectorFSQRT() const { return HasFastVectorFSQRT; }
Pierre Gousseaub6d652a2016-10-14 16:41:38 +0000489 bool hasFastLZCNT() const { return HasFastLZCNT; }
Craig Topperd88389a2017-02-21 06:39:13 +0000490 bool hasFastSHLDRotate() const { return HasFastSHLDRotate; }
Clement Courbet203fc172017-04-21 09:20:50 +0000491 bool hasERMSB() const { return HasERMSB; }
Alexey Volkovfd1731d2014-11-21 11:19:34 +0000492 bool hasSlowDivide32() const { return HasSlowDivide32; }
493 bool hasSlowDivide64() const { return HasSlowDivide64; }
Preston Gurda01daac2013-01-08 18:27:24 +0000494 bool padShortFunctions() const { return PadShortFunctions; }
Preston Gurd663e6f92013-03-27 19:14:02 +0000495 bool callRegIndirect() const { return CallRegIndirect; }
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000496 bool LEAusesAG() const { return LEAUsesAG; }
Alexey Volkov6226de62014-05-20 08:55:50 +0000497 bool slowLEA() const { return SlowLEA; }
Lama Saba2ea271b2017-05-18 08:11:50 +0000498 bool slow3OpsLEA() const { return Slow3OpsLEA; }
Alexey Volkov5260dba2014-06-09 11:40:41 +0000499 bool slowIncDec() const { return SlowIncDec; }
Elena Demikhovsky8cfb43f2013-07-24 11:02:47 +0000500 bool hasCDI() const { return HasCDI; }
Oren Ben Simhon7bf27f02017-05-25 13:45:23 +0000501 bool hasVPOPCNTDQ() const { return HasVPOPCNTDQ; }
Elena Demikhovsky8cfb43f2013-07-24 11:02:47 +0000502 bool hasPFI() const { return HasPFI; }
503 bool hasERI() const { return HasERI; }
Robert Khasanovbfa01312014-07-21 14:54:21 +0000504 bool hasDQI() const { return HasDQI; }
505 bool hasBWI() const { return HasBWI; }
506 bool hasVLX() const { return HasVLX; }
Asaf Badouh5acf66f2015-12-15 13:35:29 +0000507 bool hasPKU() const { return HasPKU; }
Elena Demikhovskyf7e641c2015-06-03 10:30:57 +0000508 bool hasMPX() const { return HasMPX; }
Craig Topper3fd463a2017-02-08 05:45:46 +0000509 bool hasCLFLUSHOPT() const { return HasCLFLUSHOPT; }
Evan Cheng4c91aa32009-01-02 05:35:45 +0000510
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000511 bool isXRaySupported() const override { return is64Bit(); }
Dean Michael Berris464015442016-09-19 00:54:35 +0000512
Andrew Trick8523b162012-02-01 23:20:51 +0000513 bool isAtom() const { return X86ProcFamily == IntelAtom; }
Alexey Volkov6226de62014-05-20 08:55:50 +0000514 bool isSLM() const { return X86ProcFamily == IntelSLM; }
Eric Christopher824f42f2015-05-12 01:26:05 +0000515 bool useSoftFloat() const { return UseSoftFloat; }
Andrew Trick8523b162012-02-01 23:20:51 +0000516
Sanjay Patele9bf9932016-02-13 17:26:29 +0000517 /// Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
518 /// no-sse2). There isn't any reason to disable it if the target processor
519 /// supports it.
520 bool hasMFence() const { return hasSSE2() || is64Bit(); }
521
Daniel Dunbar44b53032011-04-19 21:01:47 +0000522 const Triple &getTargetTriple() const { return TargetTriple; }
523
Daniel Dunbar2b9b0e32011-04-19 21:14:45 +0000524 bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); }
Simon Pilgrima2794102014-11-22 19:12:10 +0000525 bool isTargetFreeBSD() const { return TargetTriple.isOSFreeBSD(); }
Rafael Espindola44eae722014-12-29 15:47:28 +0000526 bool isTargetDragonFly() const { return TargetTriple.isOSDragonFly(); }
Simon Pilgrima2794102014-11-22 19:12:10 +0000527 bool isTargetSolaris() const { return TargetTriple.isOSSolaris(); }
Paul Robinson78a69532016-11-30 23:14:27 +0000528 bool isTargetPS4() const { return TargetTriple.isPS4CPU(); }
Tim Northover9653eb52013-12-10 16:57:43 +0000529
530 bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
531 bool isTargetCOFF() const { return TargetTriple.isOSBinFormatCOFF(); }
Eric Christopher21895152014-12-05 00:22:38 +0000532 bool isTargetMachO() const { return TargetTriple.isOSBinFormatMachO(); }
Tim Northover9653eb52013-12-10 16:57:43 +0000533
Cameron Esfahani943908b2013-08-29 20:23:14 +0000534 bool isTargetLinux() const { return TargetTriple.isOSLinux(); }
Marcin Koscielnicki0275fac2016-05-05 11:35:51 +0000535 bool isTargetKFreeBSD() const { return TargetTriple.isOSKFreeBSD(); }
536 bool isTargetGlibc() const { return TargetTriple.isOSGlibc(); }
Evgeniy Stepanov5fe279e2015-10-08 21:21:24 +0000537 bool isTargetAndroid() const { return TargetTriple.isAndroid(); }
Cameron Esfahani943908b2013-08-29 20:23:14 +0000538 bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
Nick Lewycky73df7e32011-09-05 21:51:43 +0000539 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
540 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
Michael Kupersteine1194bd2015-10-27 07:23:59 +0000541 bool isTargetMCU() const { return TargetTriple.isOSIAMCU(); }
Petr Hoseka7d59162017-02-24 03:10:10 +0000542 bool isTargetFuchsia() const { return TargetTriple.isOSFuchsia(); }
Yaron Keren28954962014-04-02 04:27:51 +0000543
544 bool isTargetWindowsMSVC() const {
545 return TargetTriple.isWindowsMSVCEnvironment();
546 }
547
Yaron Keren136fe7d2014-04-01 18:15:34 +0000548 bool isTargetKnownWindowsMSVC() const {
NAKAMURA Takumi09717bd2014-03-30 04:35:00 +0000549 return TargetTriple.isKnownWindowsMSVCEnvironment();
Saleem Abdulrasooledbdd2e2014-03-27 22:50:05 +0000550 }
Yaron Keren28954962014-04-02 04:27:51 +0000551
Pat Gavlinb3990952015-08-14 22:41:43 +0000552 bool isTargetWindowsCoreCLR() const {
553 return TargetTriple.isWindowsCoreCLREnvironment();
554 }
555
Yaron Keren28954962014-04-02 04:27:51 +0000556 bool isTargetWindowsCygwin() const {
Saleem Abdulrasooledbdd2e2014-03-27 22:50:05 +0000557 return TargetTriple.isWindowsCygwinEnvironment();
558 }
Yaron Keren28954962014-04-02 04:27:51 +0000559
560 bool isTargetWindowsGNU() const {
561 return TargetTriple.isWindowsGNUEnvironment();
562 }
563
Saleem Abdulrasool2f3b3f32014-11-20 18:01:26 +0000564 bool isTargetWindowsItanium() const {
565 return TargetTriple.isWindowsItaniumEnvironment();
566 }
567
Chandler Carruthebd90c52012-02-05 08:26:40 +0000568 bool isTargetCygMing() const { return TargetTriple.isOSCygMing(); }
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +0000569
Yaron Keren79bb2662013-10-23 23:37:01 +0000570 bool isOSWindows() const { return TargetTriple.isOSWindows(); }
571
Anton Korobeynikov7f125b22008-03-22 20:57:27 +0000572 bool isTargetWin64() const {
Chandler Carruthebd90c52012-02-05 08:26:40 +0000573 return In64BitMode && TargetTriple.isOSWindows();
Evan Chengd22a4a12011-02-01 01:14:13 +0000574 }
575
Anton Korobeynikova5a64552010-09-02 23:03:46 +0000576 bool isTargetWin32() const {
Yaron Keren136fe7d2014-04-01 18:15:34 +0000577 return !In64BitMode && (isTargetCygMing() || isTargetKnownWindowsMSVC());
Anton Korobeynikova5a64552010-09-02 23:03:46 +0000578 }
579
Duncan Sands595a4422008-11-28 09:29:37 +0000580 bool isPICStyleGOT() const { return PICStyle == PICStyles::GOT; }
Duncan Sands595a4422008-11-28 09:29:37 +0000581 bool isPICStyleRIPRel() const { return PICStyle == PICStyles::RIPRel; }
Chris Lattnere2f524f2009-07-10 20:47:30 +0000582
Chris Lattner21c29402009-07-10 21:00:45 +0000583 bool isPICStyleStubPIC() const {
Chris Lattnerba4d7332009-07-10 20:58:47 +0000584 return PICStyle == PICStyles::StubPIC;
585 }
586
Rafael Espindolaf9e348b2016-06-27 21:33:08 +0000587 bool isPositionIndependent() const { return TM.isPositionIndependent(); }
Davide Italianoef5d8be2016-06-18 00:03:20 +0000588
Charles Davise8f297c2013-07-12 06:02:35 +0000589 bool isCallingConvWin64(CallingConv::ID CC) const {
Reid Kleckner4f21df22015-07-08 21:03:47 +0000590 switch (CC) {
591 // On Win64, all these conventions just use the default convention.
592 case CallingConv::C:
593 case CallingConv::Fast:
594 case CallingConv::X86_FastCall:
595 case CallingConv::X86_StdCall:
596 case CallingConv::X86_ThisCall:
597 case CallingConv::X86_VectorCall:
598 case CallingConv::Intel_OCL_BI:
599 return isTargetWin64();
600 // This convention allows using the Win64 convention on other targets.
Martin Storsjo2f24e932017-07-17 20:05:19 +0000601 case CallingConv::Win64:
Reid Kleckner4f21df22015-07-08 21:03:47 +0000602 return true;
603 // This convention allows using the SysV convention on Windows targets.
604 case CallingConv::X86_64_SysV:
605 return false;
606 // Otherwise, who knows what this is.
607 default:
608 return false;
609 }
Charles Davise8f297c2013-07-12 06:02:35 +0000610 }
Mikhail Glushenkovabd56bd2010-02-28 22:54:30 +0000611
Rafael Espindolacb2d2662016-05-19 18:34:20 +0000612 /// Classify a global variable reference for the current subtarget according
613 /// to how we should reference it in a non-pcrel context.
Rafael Espindolac7e98132016-05-20 12:20:10 +0000614 unsigned char classifyLocalReference(const GlobalValue *GV) const;
615
616 unsigned char classifyGlobalReference(const GlobalValue *GV,
617 const Module &M) const;
Rafael Espindolaab03eb02016-05-19 22:07:57 +0000618 unsigned char classifyGlobalReference(const GlobalValue *GV) const;
Anton Korobeynikov93acb492006-12-20 01:03:20 +0000619
Rafael Espindolacb2d2662016-05-19 18:34:20 +0000620 /// Classify a global function reference for the current subtarget.
Rafael Espindolac7e98132016-05-20 12:20:10 +0000621 unsigned char classifyGlobalFunctionReference(const GlobalValue *GV,
622 const Module &M) const;
Rafael Espindola46107b92016-05-19 18:49:29 +0000623 unsigned char classifyGlobalFunctionReference(const GlobalValue *GV) const;
Asaf Badouh89406d12016-04-20 08:32:57 +0000624
Sanjay Patele63abfe2015-02-03 18:47:32 +0000625 /// Classify a blockaddress reference for the current subtarget according to
626 /// how we should reference it in a non-pcrel context.
Rafael Espindolacb2d2662016-05-19 18:34:20 +0000627 unsigned char classifyBlockAddressReference() const;
Dan Gohman7a6611792009-11-20 23:18:13 +0000628
Sanjay Patele63abfe2015-02-03 18:47:32 +0000629 /// Return true if the subtarget allows calls to immediate address.
Rafael Espindola46107b92016-05-19 18:49:29 +0000630 bool isLegalToCallImmediateAddr() const;
Evan Cheng96098332009-05-20 04:53:57 +0000631
Dan Gohman980d7202008-04-01 20:38:36 +0000632 /// This function returns the name of a function which has an interface
633 /// like the non-standard bzero function, if such a function exists on
634 /// the current subtarget and it is considered prefereable over
635 /// memset with zero passed as the second argument. Otherwise it
636 /// returns null.
Bill Wendling17825842008-09-30 22:05:33 +0000637 const char *getBZeroEntry() const;
Andrew Tricke97d8d62013-10-15 23:33:07 +0000638
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000639 /// This function returns true if the target has sincos() routine in its
640 /// compiler runtime or math libraries.
641 bool hasSinCos() const;
Dan Gohmanb9a01212008-12-16 03:35:01 +0000642
Andrew Tricke97d8d62013-10-15 23:33:07 +0000643 /// Enable the MachineScheduler pass for all X86 subtargets.
Craig Topper73156022014-03-02 09:09:27 +0000644 bool enableMachineScheduler() const override { return true; }
Andrew Tricke97d8d62013-10-15 23:33:07 +0000645
Andrew V. Tischenko75745d02017-04-14 07:44:23 +0000646 // TODO: Update the regression tests and return true.
647 bool supportPrintSchedInfo() const override { return false; }
648
Eric Christopher6b0fcfe2014-05-21 23:40:26 +0000649 bool enableEarlyIfConversion() const override;
650
Sanjay Patele63abfe2015-02-03 18:47:32 +0000651 /// Return the instruction itineraries based on the subtarget selection.
Eric Christopherd9134482014-08-04 21:25:23 +0000652 const InstrItineraryData *getInstrItineraryData() const override {
653 return &InstrItins;
654 }
Sanjay Patela2f658d2014-07-15 22:39:58 +0000655
656 AntiDepBreakMode getAntiDepBreakMode() const override {
657 return TargetSubtargetInfo::ANTIDEP_CRITICAL;
658 }
Evan Cheng47455a72009-09-03 04:37:05 +0000659};
Evan Chenga8b4aea2006-10-16 21:00:37 +0000660
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000661} // end namespace llvm
Nate Begemanf26625e2005-07-12 01:41:54 +0000662
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000663#endif // LLVM_LIB_TARGET_X86_X86SUBTARGET_H