blob: ea655e1faacf625ff4d07ec44fd6ec6654cd02bb [file] [log] [blame]
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001//===- TargetLoweringBase.cpp - Implement the TargetLoweringBase class ----===//
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements the TargetLoweringBase class.
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000014#include "llvm/ADT/BitVector.h"
15#include "llvm/ADT/STLExtras.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000016#include "llvm/ADT/SmallVector.h"
Sanjay Patel0051efc2016-10-20 16:55:45 +000017#include "llvm/ADT/StringExtras.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000018#include "llvm/ADT/StringRef.h"
Paul Redmondf29ddfe2013-02-15 18:45:18 +000019#include "llvm/ADT/Triple.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000020#include "llvm/ADT/Twine.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000021#include "llvm/CodeGen/Analysis.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000022#include "llvm/CodeGen/ISDOpcodes.h"
23#include "llvm/CodeGen/MachineBasicBlock.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000024#include "llvm/CodeGen/MachineFrameInfo.h"
25#include "llvm/CodeGen/MachineFunction.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000026#include "llvm/CodeGen/MachineInstr.h"
Lang Hames39609992013-11-29 03:07:54 +000027#include "llvm/CodeGen/MachineInstrBuilder.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000028#include "llvm/CodeGen/MachineMemOperand.h"
29#include "llvm/CodeGen/MachineOperand.h"
Matthias Braun744c2152017-04-28 20:25:05 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000031#include "llvm/CodeGen/MachineValueType.h"
32#include "llvm/CodeGen/RuntimeLibcalls.h"
Lang Hames39609992013-11-29 03:07:54 +000033#include "llvm/CodeGen/StackMaps.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000034#include "llvm/CodeGen/ValueTypes.h"
35#include "llvm/IR/Attributes.h"
36#include "llvm/IR/CallingConv.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000037#include "llvm/IR/DataLayout.h"
38#include "llvm/IR/DerivedTypes.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000039#include "llvm/IR/Function.h"
40#include "llvm/IR/GlobalValue.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000041#include "llvm/IR/GlobalVariable.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000042#include "llvm/IR/IRBuilder.h"
43#include "llvm/IR/Module.h"
44#include "llvm/IR/Type.h"
Sanjay Pateld66607b2016-04-26 17:11:17 +000045#include "llvm/Support/BranchProbability.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000046#include "llvm/Support/Casting.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000047#include "llvm/Support/CommandLine.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000048#include "llvm/Support/Compiler.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000049#include "llvm/Support/ErrorHandling.h"
50#include "llvm/Support/MathExtras.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000051#include "llvm/Target/TargetLowering.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000052#include "llvm/Target/TargetMachine.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000053#include "llvm/Target/TargetOpcodes.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000054#include "llvm/Target/TargetRegisterInfo.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000055#include <algorithm>
56#include <cassert>
57#include <cstring>
58#include <cstddef>
59#include <cstdint>
60#include <iterator>
61#include <string>
62#include <tuple>
63#include <utility>
64
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000065using namespace llvm;
66
Sanjay Patel943829a2015-07-01 18:10:20 +000067static cl::opt<bool> JumpIsExpensiveOverride(
68 "jump-is-expensive", cl::init(false),
69 cl::desc("Do not create extra branches to split comparison logic."),
70 cl::Hidden);
71
Evandro Menezeseb97e352016-10-25 19:53:51 +000072static cl::opt<unsigned> MinimumJumpTableEntries
73 ("min-jump-table-entries", cl::init(4), cl::Hidden,
74 cl::desc("Set minimum number of entries to use a jump table."));
75
Evandro Menezese45de8a2016-09-26 15:32:33 +000076static cl::opt<unsigned> MaximumJumpTableSize
Evandro Menezeseb97e352016-10-25 19:53:51 +000077 ("max-jump-table-size", cl::init(0), cl::Hidden,
78 cl::desc("Set maximum size of jump tables; zero for no limit."));
Evandro Menezese45de8a2016-09-26 15:32:33 +000079
Jun Bum Lim919f9e82017-04-28 16:04:03 +000080/// Minimum jump table density for normal functions.
81static cl::opt<unsigned>
82 JumpTableDensity("jump-table-density", cl::init(10), cl::Hidden,
83 cl::desc("Minimum density for building a jump table in "
84 "a normal function"));
85
86/// Minimum jump table density for -Os or -Oz functions.
87static cl::opt<unsigned> OptsizeJumpTableDensity(
88 "optsize-jump-table-density", cl::init(40), cl::Hidden,
89 cl::desc("Minimum density for building a jump table in "
90 "an optsize function"));
91
Sanjay Pateld66607b2016-04-26 17:11:17 +000092// Although this default value is arbitrary, it is not random. It is assumed
93// that a condition that evaluates the same way by a higher percentage than this
94// is best represented as control flow. Therefore, the default value N should be
95// set such that the win from N% correct executions is greater than the loss
96// from (100 - N)% mispredicted executions for the majority of intended targets.
97static cl::opt<int> MinPercentageForPredictableBranch(
98 "min-predictable-branch", cl::init(99),
99 cl::desc("Minimum percentage (0-100) that a condition must be either true "
100 "or false to assume that the condition is predictable"),
101 cl::Hidden);
102
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000103/// InitLibcallNames - Set default libcall names.
Eric Christopherd91d6052014-06-02 20:51:49 +0000104static void InitLibcallNames(const char **Names, const Triple &TT) {
Derek Schuff36454af2017-07-19 21:53:30 +0000105#define HANDLE_LIBCALL(code, name) \
106 Names[RTLIB::code] = name;
107#include "llvm/CodeGen/RuntimeLibcalls.def"
108#undef HANDLE_LIBCALL
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000109
Derek Schuff36454af2017-07-19 21:53:30 +0000110 // A few names are different on particular architectures or environments.
James Y Knight7873fb92016-04-12 22:32:47 +0000111 if (TT.isOSDarwin()) {
112 // For f16/f32 conversions, Darwin uses the standard naming scheme, instead
113 // of the gnueabi-style __gnu_*_ieee.
114 // FIXME: What about other targets?
115 Names[RTLIB::FPEXT_F16_F32] = "__extendhfsf2";
116 Names[RTLIB::FPROUND_F32_F16] = "__truncsfhf2";
117 } else {
118 Names[RTLIB::FPEXT_F16_F32] = "__gnu_h2f_ieee";
119 Names[RTLIB::FPROUND_F32_F16] = "__gnu_f2h_ieee";
120 }
James Y Knight19f6cce2016-04-12 20:18:48 +0000121
Petr Hosek710479c2017-07-23 22:30:00 +0000122 if (TT.isGNUEnvironment() || TT.isOSFuchsia()) {
Paul Redmondf29ddfe2013-02-15 18:45:18 +0000123 Names[RTLIB::SINCOS_F32] = "sincosf";
124 Names[RTLIB::SINCOS_F64] = "sincos";
125 Names[RTLIB::SINCOS_F80] = "sincosl";
126 Names[RTLIB::SINCOS_F128] = "sincosl";
127 Names[RTLIB::SINCOS_PPCF128] = "sincosl";
Paul Redmondf29ddfe2013-02-15 18:45:18 +0000128 }
Michael Gottesman7dce16f2013-08-12 18:45:38 +0000129
Derek Schuff36454af2017-07-19 21:53:30 +0000130 if (TT.isOSOpenBSD()) {
131 Names[RTLIB::STACKPROTECTOR_CHECK_FAIL] = nullptr;
Ahmed Bougacha6402ad22015-05-14 01:00:51 +0000132 }
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000133}
134
Saleem Abdulrasool02d98512016-09-07 17:56:09 +0000135/// Set default libcall CallingConvs.
Saleem Abdulrasool92e33a32016-09-09 20:11:31 +0000136static void InitLibcallCallingConvs(CallingConv::ID *CCs) {
Saleem Abdulrasool02d98512016-09-07 17:56:09 +0000137 for (int LC = 0; LC < RTLIB::UNKNOWN_LIBCALL; ++LC)
138 CCs[LC] = CallingConv::C;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000139}
140
141/// getFPEXT - Return the FPEXT_*_* value for the given types, or
142/// UNKNOWN_LIBCALL if there is none.
143RTLIB::Libcall RTLIB::getFPEXT(EVT OpVT, EVT RetVT) {
Tim Northoverf7a02c12014-07-21 09:13:56 +0000144 if (OpVT == MVT::f16) {
145 if (RetVT == MVT::f32)
146 return FPEXT_F16_F32;
147 } else if (OpVT == MVT::f32) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000148 if (RetVT == MVT::f64)
149 return FPEXT_F32_F64;
150 if (RetVT == MVT::f128)
151 return FPEXT_F32_F128;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000152 if (RetVT == MVT::ppcf128)
153 return FPEXT_F32_PPCF128;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000154 } else if (OpVT == MVT::f64) {
155 if (RetVT == MVT::f128)
156 return FPEXT_F64_F128;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000157 else if (RetVT == MVT::ppcf128)
158 return FPEXT_F64_PPCF128;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000159 }
160
161 return UNKNOWN_LIBCALL;
162}
163
164/// getFPROUND - Return the FPROUND_*_* value for the given types, or
165/// UNKNOWN_LIBCALL if there is none.
166RTLIB::Libcall RTLIB::getFPROUND(EVT OpVT, EVT RetVT) {
Tim Northover84ce0a62014-07-17 11:12:12 +0000167 if (RetVT == MVT::f16) {
168 if (OpVT == MVT::f32)
169 return FPROUND_F32_F16;
170 if (OpVT == MVT::f64)
171 return FPROUND_F64_F16;
172 if (OpVT == MVT::f80)
173 return FPROUND_F80_F16;
174 if (OpVT == MVT::f128)
175 return FPROUND_F128_F16;
176 if (OpVT == MVT::ppcf128)
177 return FPROUND_PPCF128_F16;
178 } else if (RetVT == MVT::f32) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000179 if (OpVT == MVT::f64)
180 return FPROUND_F64_F32;
181 if (OpVT == MVT::f80)
182 return FPROUND_F80_F32;
183 if (OpVT == MVT::f128)
184 return FPROUND_F128_F32;
185 if (OpVT == MVT::ppcf128)
186 return FPROUND_PPCF128_F32;
187 } else if (RetVT == MVT::f64) {
188 if (OpVT == MVT::f80)
189 return FPROUND_F80_F64;
190 if (OpVT == MVT::f128)
191 return FPROUND_F128_F64;
192 if (OpVT == MVT::ppcf128)
193 return FPROUND_PPCF128_F64;
194 }
195
196 return UNKNOWN_LIBCALL;
197}
198
199/// getFPTOSINT - Return the FPTOSINT_*_* value for the given types, or
200/// UNKNOWN_LIBCALL if there is none.
201RTLIB::Libcall RTLIB::getFPTOSINT(EVT OpVT, EVT RetVT) {
202 if (OpVT == MVT::f32) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000203 if (RetVT == MVT::i32)
204 return FPTOSINT_F32_I32;
205 if (RetVT == MVT::i64)
206 return FPTOSINT_F32_I64;
207 if (RetVT == MVT::i128)
208 return FPTOSINT_F32_I128;
209 } else if (OpVT == MVT::f64) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000210 if (RetVT == MVT::i32)
211 return FPTOSINT_F64_I32;
212 if (RetVT == MVT::i64)
213 return FPTOSINT_F64_I64;
214 if (RetVT == MVT::i128)
215 return FPTOSINT_F64_I128;
216 } else if (OpVT == MVT::f80) {
217 if (RetVT == MVT::i32)
218 return FPTOSINT_F80_I32;
219 if (RetVT == MVT::i64)
220 return FPTOSINT_F80_I64;
221 if (RetVT == MVT::i128)
222 return FPTOSINT_F80_I128;
223 } else if (OpVT == MVT::f128) {
224 if (RetVT == MVT::i32)
225 return FPTOSINT_F128_I32;
226 if (RetVT == MVT::i64)
227 return FPTOSINT_F128_I64;
228 if (RetVT == MVT::i128)
229 return FPTOSINT_F128_I128;
230 } else if (OpVT == MVT::ppcf128) {
231 if (RetVT == MVT::i32)
232 return FPTOSINT_PPCF128_I32;
233 if (RetVT == MVT::i64)
234 return FPTOSINT_PPCF128_I64;
235 if (RetVT == MVT::i128)
236 return FPTOSINT_PPCF128_I128;
237 }
238 return UNKNOWN_LIBCALL;
239}
240
241/// getFPTOUINT - Return the FPTOUINT_*_* value for the given types, or
242/// UNKNOWN_LIBCALL if there is none.
243RTLIB::Libcall RTLIB::getFPTOUINT(EVT OpVT, EVT RetVT) {
244 if (OpVT == MVT::f32) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000245 if (RetVT == MVT::i32)
246 return FPTOUINT_F32_I32;
247 if (RetVT == MVT::i64)
248 return FPTOUINT_F32_I64;
249 if (RetVT == MVT::i128)
250 return FPTOUINT_F32_I128;
251 } else if (OpVT == MVT::f64) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000252 if (RetVT == MVT::i32)
253 return FPTOUINT_F64_I32;
254 if (RetVT == MVT::i64)
255 return FPTOUINT_F64_I64;
256 if (RetVT == MVT::i128)
257 return FPTOUINT_F64_I128;
258 } else if (OpVT == MVT::f80) {
259 if (RetVT == MVT::i32)
260 return FPTOUINT_F80_I32;
261 if (RetVT == MVT::i64)
262 return FPTOUINT_F80_I64;
263 if (RetVT == MVT::i128)
264 return FPTOUINT_F80_I128;
265 } else if (OpVT == MVT::f128) {
266 if (RetVT == MVT::i32)
267 return FPTOUINT_F128_I32;
268 if (RetVT == MVT::i64)
269 return FPTOUINT_F128_I64;
270 if (RetVT == MVT::i128)
271 return FPTOUINT_F128_I128;
272 } else if (OpVT == MVT::ppcf128) {
273 if (RetVT == MVT::i32)
274 return FPTOUINT_PPCF128_I32;
275 if (RetVT == MVT::i64)
276 return FPTOUINT_PPCF128_I64;
277 if (RetVT == MVT::i128)
278 return FPTOUINT_PPCF128_I128;
279 }
280 return UNKNOWN_LIBCALL;
281}
282
283/// getSINTTOFP - Return the SINTTOFP_*_* value for the given types, or
284/// UNKNOWN_LIBCALL if there is none.
285RTLIB::Libcall RTLIB::getSINTTOFP(EVT OpVT, EVT RetVT) {
286 if (OpVT == MVT::i32) {
287 if (RetVT == MVT::f32)
288 return SINTTOFP_I32_F32;
289 if (RetVT == MVT::f64)
290 return SINTTOFP_I32_F64;
291 if (RetVT == MVT::f80)
292 return SINTTOFP_I32_F80;
293 if (RetVT == MVT::f128)
294 return SINTTOFP_I32_F128;
295 if (RetVT == MVT::ppcf128)
296 return SINTTOFP_I32_PPCF128;
297 } else if (OpVT == MVT::i64) {
298 if (RetVT == MVT::f32)
299 return SINTTOFP_I64_F32;
300 if (RetVT == MVT::f64)
301 return SINTTOFP_I64_F64;
302 if (RetVT == MVT::f80)
303 return SINTTOFP_I64_F80;
304 if (RetVT == MVT::f128)
305 return SINTTOFP_I64_F128;
306 if (RetVT == MVT::ppcf128)
307 return SINTTOFP_I64_PPCF128;
308 } else if (OpVT == MVT::i128) {
309 if (RetVT == MVT::f32)
310 return SINTTOFP_I128_F32;
311 if (RetVT == MVT::f64)
312 return SINTTOFP_I128_F64;
313 if (RetVT == MVT::f80)
314 return SINTTOFP_I128_F80;
315 if (RetVT == MVT::f128)
316 return SINTTOFP_I128_F128;
317 if (RetVT == MVT::ppcf128)
318 return SINTTOFP_I128_PPCF128;
319 }
320 return UNKNOWN_LIBCALL;
321}
322
323/// getUINTTOFP - Return the UINTTOFP_*_* value for the given types, or
324/// UNKNOWN_LIBCALL if there is none.
325RTLIB::Libcall RTLIB::getUINTTOFP(EVT OpVT, EVT RetVT) {
326 if (OpVT == MVT::i32) {
327 if (RetVT == MVT::f32)
328 return UINTTOFP_I32_F32;
329 if (RetVT == MVT::f64)
330 return UINTTOFP_I32_F64;
331 if (RetVT == MVT::f80)
332 return UINTTOFP_I32_F80;
333 if (RetVT == MVT::f128)
334 return UINTTOFP_I32_F128;
335 if (RetVT == MVT::ppcf128)
336 return UINTTOFP_I32_PPCF128;
337 } else if (OpVT == MVT::i64) {
338 if (RetVT == MVT::f32)
339 return UINTTOFP_I64_F32;
340 if (RetVT == MVT::f64)
341 return UINTTOFP_I64_F64;
342 if (RetVT == MVT::f80)
343 return UINTTOFP_I64_F80;
344 if (RetVT == MVT::f128)
345 return UINTTOFP_I64_F128;
346 if (RetVT == MVT::ppcf128)
347 return UINTTOFP_I64_PPCF128;
348 } else if (OpVT == MVT::i128) {
349 if (RetVT == MVT::f32)
350 return UINTTOFP_I128_F32;
351 if (RetVT == MVT::f64)
352 return UINTTOFP_I128_F64;
353 if (RetVT == MVT::f80)
354 return UINTTOFP_I128_F80;
355 if (RetVT == MVT::f128)
356 return UINTTOFP_I128_F128;
357 if (RetVT == MVT::ppcf128)
358 return UINTTOFP_I128_PPCF128;
359 }
360 return UNKNOWN_LIBCALL;
361}
362
James Y Knightf44fc522016-03-16 22:12:04 +0000363RTLIB::Libcall RTLIB::getSYNC(unsigned Opc, MVT VT) {
Benjamin Kramerc54c38e2015-03-05 20:04:29 +0000364#define OP_TO_LIBCALL(Name, Enum) \
365 case Name: \
366 switch (VT.SimpleTy) { \
367 default: \
368 return UNKNOWN_LIBCALL; \
369 case MVT::i8: \
370 return Enum##_1; \
371 case MVT::i16: \
372 return Enum##_2; \
373 case MVT::i32: \
374 return Enum##_4; \
375 case MVT::i64: \
376 return Enum##_8; \
377 case MVT::i128: \
378 return Enum##_16; \
379 }
380
381 switch (Opc) {
382 OP_TO_LIBCALL(ISD::ATOMIC_SWAP, SYNC_LOCK_TEST_AND_SET)
383 OP_TO_LIBCALL(ISD::ATOMIC_CMP_SWAP, SYNC_VAL_COMPARE_AND_SWAP)
384 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_ADD, SYNC_FETCH_AND_ADD)
385 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_SUB, SYNC_FETCH_AND_SUB)
386 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_AND, SYNC_FETCH_AND_AND)
387 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_OR, SYNC_FETCH_AND_OR)
388 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_XOR, SYNC_FETCH_AND_XOR)
389 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_NAND, SYNC_FETCH_AND_NAND)
390 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_MAX, SYNC_FETCH_AND_MAX)
391 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_UMAX, SYNC_FETCH_AND_UMAX)
392 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_MIN, SYNC_FETCH_AND_MIN)
393 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_UMIN, SYNC_FETCH_AND_UMIN)
394 }
395
396#undef OP_TO_LIBCALL
397
398 return UNKNOWN_LIBCALL;
399}
400
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000401RTLIB::Libcall RTLIB::getMEMCPY_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
Igor Laevsky4f31e522016-12-29 14:31:07 +0000402 switch (ElementSize) {
403 case 1:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000404 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_1;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000405 case 2:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000406 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_2;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000407 case 4:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000408 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_4;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000409 case 8:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000410 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_8;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000411 case 16:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000412 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_16;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000413 default:
414 return UNKNOWN_LIBCALL;
415 }
Igor Laevsky4f31e522016-12-29 14:31:07 +0000416}
417
Daniel Neilson57226ef2017-07-12 15:25:26 +0000418RTLIB::Libcall RTLIB::getMEMMOVE_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
419 switch (ElementSize) {
420 case 1:
421 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_1;
422 case 2:
423 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_2;
424 case 4:
425 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_4;
426 case 8:
427 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_8;
428 case 16:
429 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_16;
430 default:
431 return UNKNOWN_LIBCALL;
432 }
433}
434
Daniel Neilson965613e2017-07-12 21:57:23 +0000435RTLIB::Libcall RTLIB::getMEMSET_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
436 switch (ElementSize) {
437 case 1:
438 return MEMSET_ELEMENT_UNORDERED_ATOMIC_1;
439 case 2:
440 return MEMSET_ELEMENT_UNORDERED_ATOMIC_2;
441 case 4:
442 return MEMSET_ELEMENT_UNORDERED_ATOMIC_4;
443 case 8:
444 return MEMSET_ELEMENT_UNORDERED_ATOMIC_8;
445 case 16:
446 return MEMSET_ELEMENT_UNORDERED_ATOMIC_16;
447 default:
448 return UNKNOWN_LIBCALL;
449 }
450}
451
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000452/// InitCmpLibcallCCs - Set default comparison libcall CC.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000453static void InitCmpLibcallCCs(ISD::CondCode *CCs) {
454 memset(CCs, ISD::SETCC_INVALID, sizeof(ISD::CondCode)*RTLIB::UNKNOWN_LIBCALL);
455 CCs[RTLIB::OEQ_F32] = ISD::SETEQ;
456 CCs[RTLIB::OEQ_F64] = ISD::SETEQ;
457 CCs[RTLIB::OEQ_F128] = ISD::SETEQ;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000458 CCs[RTLIB::OEQ_PPCF128] = ISD::SETEQ;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000459 CCs[RTLIB::UNE_F32] = ISD::SETNE;
460 CCs[RTLIB::UNE_F64] = ISD::SETNE;
461 CCs[RTLIB::UNE_F128] = ISD::SETNE;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000462 CCs[RTLIB::UNE_PPCF128] = ISD::SETNE;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000463 CCs[RTLIB::OGE_F32] = ISD::SETGE;
464 CCs[RTLIB::OGE_F64] = ISD::SETGE;
465 CCs[RTLIB::OGE_F128] = ISD::SETGE;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000466 CCs[RTLIB::OGE_PPCF128] = ISD::SETGE;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000467 CCs[RTLIB::OLT_F32] = ISD::SETLT;
468 CCs[RTLIB::OLT_F64] = ISD::SETLT;
469 CCs[RTLIB::OLT_F128] = ISD::SETLT;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000470 CCs[RTLIB::OLT_PPCF128] = ISD::SETLT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000471 CCs[RTLIB::OLE_F32] = ISD::SETLE;
472 CCs[RTLIB::OLE_F64] = ISD::SETLE;
473 CCs[RTLIB::OLE_F128] = ISD::SETLE;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000474 CCs[RTLIB::OLE_PPCF128] = ISD::SETLE;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000475 CCs[RTLIB::OGT_F32] = ISD::SETGT;
476 CCs[RTLIB::OGT_F64] = ISD::SETGT;
477 CCs[RTLIB::OGT_F128] = ISD::SETGT;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000478 CCs[RTLIB::OGT_PPCF128] = ISD::SETGT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000479 CCs[RTLIB::UO_F32] = ISD::SETNE;
480 CCs[RTLIB::UO_F64] = ISD::SETNE;
481 CCs[RTLIB::UO_F128] = ISD::SETNE;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000482 CCs[RTLIB::UO_PPCF128] = ISD::SETNE;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000483 CCs[RTLIB::O_F32] = ISD::SETEQ;
484 CCs[RTLIB::O_F64] = ISD::SETEQ;
485 CCs[RTLIB::O_F128] = ISD::SETEQ;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000486 CCs[RTLIB::O_PPCF128] = ISD::SETEQ;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000487}
488
Aditya Nandakumar30531552014-11-13 21:29:21 +0000489/// NOTE: The TargetMachine owns TLOF.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000490TargetLoweringBase::TargetLoweringBase(const TargetMachine &tm) : TM(tm) {
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000491 initActions();
492
493 // Perform these initializations only once.
Zaara Syeda3a7578c2017-05-31 17:12:38 +0000494 MaxStoresPerMemset = MaxStoresPerMemcpy = MaxStoresPerMemmove =
495 MaxLoadsPerMemcmp = 8;
496 MaxStoresPerMemsetOptSize = MaxStoresPerMemcpyOptSize =
497 MaxStoresPerMemmoveOptSize = MaxLoadsPerMemcmpOptSize = 4;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000498 UseUnderscoreSetJmp = false;
499 UseUnderscoreLongJmp = false;
Hal Finkeldecb0242014-01-02 21:13:43 +0000500 HasMultipleConditionRegisters = false;
Yi Jiangb23edeb2014-04-21 22:22:44 +0000501 HasExtractBitsInsn = false;
Sanjay Patel943829a2015-07-01 18:10:20 +0000502 JumpIsExpensive = JumpIsExpensiveOverride;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000503 PredictableSelectIsExpensive = false;
Quentin Colombetfc2201e2014-12-17 01:36:17 +0000504 EnableExtLdPromotion = false;
Pedro Artigascaa56582014-08-08 16:46:53 +0000505 HasFloatingPointExceptions = true;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000506 StackPointerRegisterToSaveRestore = 0;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000507 BooleanContents = UndefinedBooleanContent;
Daniel Sanderscbd44c52014-07-10 10:18:12 +0000508 BooleanFloatContents = UndefinedBooleanContent;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000509 BooleanVectorContents = UndefinedBooleanContent;
510 SchedPreferenceInfo = Sched::ILP;
511 JumpBufSize = 0;
512 JumpBufAlignment = 0;
513 MinFunctionAlignment = 0;
514 PrefFunctionAlignment = 0;
515 PrefLoopAlignment = 0;
Nirav Dave54e22f32017-03-14 00:34:14 +0000516 GatherAllAliasesMaxDepth = 18;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000517 MinStackArgumentAlignment = 1;
James Y Knight19f6cce2016-04-12 20:18:48 +0000518 // TODO: the default will be switched to 0 in the next commit, along
519 // with the Target-specific changes necessary.
520 MaxAtomicSizeInBitsSupported = 1024;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000521
James Y Knight148a6462016-06-17 18:11:48 +0000522 MinCmpXchgSizeInBits = 0;
523
James Y Knight7873fb92016-04-12 22:32:47 +0000524 std::fill(std::begin(LibcallRoutineNames), std::end(LibcallRoutineNames), nullptr);
525
Daniel Sanders110bf6d2015-06-24 13:25:57 +0000526 InitLibcallNames(LibcallRoutineNames, TM.getTargetTriple());
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000527 InitCmpLibcallCCs(CmpLibcallCCs);
Saleem Abdulrasool92e33a32016-09-09 20:11:31 +0000528 InitLibcallCallingConvs(LibcallCallingConvs);
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000529}
530
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000531void TargetLoweringBase::initActions() {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000532 // All operations default to being supported.
533 memset(OpActions, 0, sizeof(OpActions));
534 memset(LoadExtActions, 0, sizeof(LoadExtActions));
535 memset(TruncStoreActions, 0, sizeof(TruncStoreActions));
536 memset(IndexedModeActions, 0, sizeof(IndexedModeActions));
537 memset(CondCodeActions, 0, sizeof(CondCodeActions));
Craig Topper00230802016-04-08 07:10:46 +0000538 std::fill(std::begin(RegClassForVT), std::end(RegClassForVT), nullptr);
539 std::fill(std::begin(TargetDAGCombineArray),
540 std::end(TargetDAGCombineArray), 0);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000541
542 // Set default actions for various operations.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000543 for (MVT VT : MVT::all_valuetypes()) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000544 // Default all indexed load / store to expand.
545 for (unsigned IM = (unsigned)ISD::PRE_INC;
546 IM != (unsigned)ISD::LAST_INDEXED_MODE; ++IM) {
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000547 setIndexedLoadAction(IM, VT, Expand);
548 setIndexedStoreAction(IM, VT, Expand);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000549 }
550
Tim Northover420a2162014-06-13 14:24:07 +0000551 // Most backends expect to see the node which just returns the value loaded.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000552 setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, VT, Expand);
Tim Northover420a2162014-06-13 14:24:07 +0000553
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000554 // These operations default to expand.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000555 setOperationAction(ISD::FGETSIGN, VT, Expand);
556 setOperationAction(ISD::CONCAT_VECTORS, VT, Expand);
557 setOperationAction(ISD::FMINNUM, VT, Expand);
558 setOperationAction(ISD::FMAXNUM, VT, Expand);
James Molloy01cdecc2015-08-11 09:13:05 +0000559 setOperationAction(ISD::FMINNAN, VT, Expand);
560 setOperationAction(ISD::FMAXNAN, VT, Expand);
Matt Arsenault0dc54c42015-02-20 22:10:33 +0000561 setOperationAction(ISD::FMAD, VT, Expand);
James Molloy7e9776b2015-05-15 09:03:15 +0000562 setOperationAction(ISD::SMIN, VT, Expand);
563 setOperationAction(ISD::SMAX, VT, Expand);
564 setOperationAction(ISD::UMIN, VT, Expand);
565 setOperationAction(ISD::UMAX, VT, Expand);
Simon Pilgrimcf2da962017-03-14 21:26:58 +0000566 setOperationAction(ISD::ABS, VT, Expand);
Hal Finkel8ec43c62013-08-09 04:13:44 +0000567
Jan Vesely75395482015-04-29 16:30:46 +0000568 // Overflow operations default to expand
569 setOperationAction(ISD::SADDO, VT, Expand);
570 setOperationAction(ISD::SSUBO, VT, Expand);
571 setOperationAction(ISD::UADDO, VT, Expand);
572 setOperationAction(ISD::USUBO, VT, Expand);
573 setOperationAction(ISD::SMULO, VT, Expand);
574 setOperationAction(ISD::UMULO, VT, Expand);
Hal Finkelcd8664c2015-12-11 23:11:52 +0000575
Amaury Sechet8ac81f32017-04-30 19:24:09 +0000576 // ADDCARRY operations default to expand
577 setOperationAction(ISD::ADDCARRY, VT, Expand);
578 setOperationAction(ISD::SUBCARRY, VT, Expand);
Amaury Sechet251ea8a2017-06-01 11:14:17 +0000579 setOperationAction(ISD::SETCCCARRY, VT, Expand);
Amaury Sechet8ac81f32017-04-30 19:24:09 +0000580
Craig Topper33772c52016-04-28 03:34:31 +0000581 // These default to Expand so they will be expanded to CTLZ/CTTZ by default.
582 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
583 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
584
James Molloy90111f72015-11-12 12:29:09 +0000585 setOperationAction(ISD::BITREVERSE, VT, Expand);
586
Hal Finkel8ec43c62013-08-09 04:13:44 +0000587 // These library functions default to expand.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000588 setOperationAction(ISD::FROUND, VT, Expand);
Craig Topperf6d4dc52017-05-30 15:27:55 +0000589 setOperationAction(ISD::FPOWI, VT, Expand);
Hal Finkel0c5c01aa2013-08-19 23:35:46 +0000590
591 // These operations default to expand for vector types.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000592 if (VT.isVector()) {
593 setOperationAction(ISD::FCOPYSIGN, VT, Expand);
594 setOperationAction(ISD::ANY_EXTEND_VECTOR_INREG, VT, Expand);
595 setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, VT, Expand);
596 setOperationAction(ISD::ZERO_EXTEND_VECTOR_INREG, VT, Expand);
Chandler Carruthd3561f62014-07-09 22:53:04 +0000597 }
Yury Gribovd7dbb662015-12-01 11:40:55 +0000598
Etienne Bergeron22bfa832016-06-07 20:15:35 +0000599 // For most targets @llvm.get.dynamic.area.offset just returns 0.
Yury Gribovd7dbb662015-12-01 11:40:55 +0000600 setOperationAction(ISD::GET_DYNAMIC_AREA_OFFSET, VT, Expand);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000601 }
602
603 // Most targets ignore the @llvm.prefetch intrinsic.
604 setOperationAction(ISD::PREFETCH, MVT::Other, Expand);
605
Ahmed Bougachaf9c19da2015-08-28 01:49:59 +0000606 // Most targets also ignore the @llvm.readcyclecounter intrinsic.
607 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Expand);
608
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000609 // ConstantFP nodes default to expand. Targets can either change this to
610 // Legal, in which case all fp constants are legal, or use isFPImmLegal()
611 // to optimize expansions for certain constants.
612 setOperationAction(ISD::ConstantFP, MVT::f16, Expand);
613 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
614 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
615 setOperationAction(ISD::ConstantFP, MVT::f80, Expand);
616 setOperationAction(ISD::ConstantFP, MVT::f128, Expand);
617
618 // These library functions default to expand.
Ahmed Bougacha2a20e272015-03-26 23:21:03 +0000619 for (MVT VT : {MVT::f32, MVT::f64, MVT::f128}) {
620 setOperationAction(ISD::FLOG , VT, Expand);
621 setOperationAction(ISD::FLOG2, VT, Expand);
622 setOperationAction(ISD::FLOG10, VT, Expand);
623 setOperationAction(ISD::FEXP , VT, Expand);
624 setOperationAction(ISD::FEXP2, VT, Expand);
625 setOperationAction(ISD::FFLOOR, VT, Expand);
Ahmed Bougacha2a20e272015-03-26 23:21:03 +0000626 setOperationAction(ISD::FNEARBYINT, VT, Expand);
627 setOperationAction(ISD::FCEIL, VT, Expand);
628 setOperationAction(ISD::FRINT, VT, Expand);
629 setOperationAction(ISD::FTRUNC, VT, Expand);
630 setOperationAction(ISD::FROUND, VT, Expand);
631 }
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000632
633 // Default ISD::TRAP to expand (which turns it into abort).
634 setOperationAction(ISD::TRAP, MVT::Other, Expand);
635
636 // On most systems, DEBUGTRAP and TRAP have no difference. The "Expand"
637 // here is to inform DAG Legalizer to replace DEBUGTRAP with TRAP.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000638 setOperationAction(ISD::DEBUGTRAP, MVT::Other, Expand);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000639}
640
Mehdi Aminieaabc512015-07-09 15:12:23 +0000641MVT TargetLoweringBase::getScalarShiftAmountTy(const DataLayout &DL,
642 EVT) const {
Mehdi Amini9639d652015-07-09 02:09:20 +0000643 return MVT::getIntegerVT(8 * DL.getPointerSize(0));
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000644}
645
Mehdi Amini9639d652015-07-09 02:09:20 +0000646EVT TargetLoweringBase::getShiftAmountTy(EVT LHSTy,
647 const DataLayout &DL) const {
Michael Liao6af16fc2013-03-01 18:40:30 +0000648 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
649 if (LHSTy.isVector())
650 return LHSTy;
Mehdi Aminieaabc512015-07-09 15:12:23 +0000651 return getScalarShiftAmountTy(DL, LHSTy);
Michael Liao6af16fc2013-03-01 18:40:30 +0000652}
653
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000654bool TargetLoweringBase::canOpTrap(unsigned Op, EVT VT) const {
655 assert(isTypeLegal(VT));
656 switch (Op) {
657 default:
658 return false;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000659 case ISD::SDIV:
660 case ISD::UDIV:
661 case ISD::SREM:
662 case ISD::UREM:
663 return true;
664 }
665}
666
Sanjay Patel943829a2015-07-01 18:10:20 +0000667void TargetLoweringBase::setJumpIsExpensive(bool isExpensive) {
668 // If the command-line option was specified, ignore this request.
669 if (!JumpIsExpensiveOverride.getNumOccurrences())
670 JumpIsExpensive = isExpensive;
671}
672
Eric Christopher75dbd7c2015-02-25 22:41:30 +0000673TargetLoweringBase::LegalizeKind
674TargetLoweringBase::getTypeConversion(LLVMContext &Context, EVT VT) const {
675 // If this is a simple type, use the ComputeRegisterProp mechanism.
676 if (VT.isSimple()) {
677 MVT SVT = VT.getSimpleVT();
678 assert((unsigned)SVT.SimpleTy < array_lengthof(TransformToType));
679 MVT NVT = TransformToType[SVT.SimpleTy];
680 LegalizeTypeAction LA = ValueTypeActions.getTypeAction(SVT);
681
682 assert((LA == TypeLegal || LA == TypeSoftenFloat ||
683 ValueTypeActions.getTypeAction(NVT) != TypePromoteInteger) &&
684 "Promote may not follow Expand or Promote");
685
686 if (LA == TypeSplitVector)
687 return LegalizeKind(LA,
688 EVT::getVectorVT(Context, SVT.getVectorElementType(),
689 SVT.getVectorNumElements() / 2));
690 if (LA == TypeScalarizeVector)
691 return LegalizeKind(LA, SVT.getVectorElementType());
692 return LegalizeKind(LA, NVT);
693 }
694
695 // Handle Extended Scalar Types.
696 if (!VT.isVector()) {
697 assert(VT.isInteger() && "Float types must be simple");
698 unsigned BitSize = VT.getSizeInBits();
699 // First promote to a power-of-two size, then expand if necessary.
700 if (BitSize < 8 || !isPowerOf2_32(BitSize)) {
701 EVT NVT = VT.getRoundIntegerType(Context);
702 assert(NVT != VT && "Unable to round integer VT");
703 LegalizeKind NextStep = getTypeConversion(Context, NVT);
704 // Avoid multi-step promotion.
705 if (NextStep.first == TypePromoteInteger)
706 return NextStep;
707 // Return rounded integer type.
708 return LegalizeKind(TypePromoteInteger, NVT);
709 }
710
711 return LegalizeKind(TypeExpandInteger,
712 EVT::getIntegerVT(Context, VT.getSizeInBits() / 2));
713 }
714
715 // Handle vector types.
716 unsigned NumElts = VT.getVectorNumElements();
717 EVT EltVT = VT.getVectorElementType();
718
719 // Vectors with only one element are always scalarized.
720 if (NumElts == 1)
721 return LegalizeKind(TypeScalarizeVector, EltVT);
722
723 // Try to widen vector elements until the element type is a power of two and
724 // promote it to a legal type later on, for example:
725 // <3 x i8> -> <4 x i8> -> <4 x i32>
726 if (EltVT.isInteger()) {
727 // Vectors with a number of elements that is not a power of two are always
728 // widened, for example <3 x i8> -> <4 x i8>.
729 if (!VT.isPow2VectorType()) {
730 NumElts = (unsigned)NextPowerOf2(NumElts);
731 EVT NVT = EVT::getVectorVT(Context, EltVT, NumElts);
732 return LegalizeKind(TypeWidenVector, NVT);
733 }
734
735 // Examine the element type.
736 LegalizeKind LK = getTypeConversion(Context, EltVT);
737
738 // If type is to be expanded, split the vector.
739 // <4 x i140> -> <2 x i140>
740 if (LK.first == TypeExpandInteger)
741 return LegalizeKind(TypeSplitVector,
742 EVT::getVectorVT(Context, EltVT, NumElts / 2));
743
744 // Promote the integer element types until a legal vector type is found
745 // or until the element integer type is too big. If a legal type was not
746 // found, fallback to the usual mechanism of widening/splitting the
747 // vector.
748 EVT OldEltVT = EltVT;
Eugene Zelenkofb7f7922017-09-21 23:20:16 +0000749 while (true) {
Eric Christopher75dbd7c2015-02-25 22:41:30 +0000750 // Increase the bitwidth of the element to the next pow-of-two
751 // (which is greater than 8 bits).
752 EltVT = EVT::getIntegerVT(Context, 1 + EltVT.getSizeInBits())
753 .getRoundIntegerType(Context);
754
755 // Stop trying when getting a non-simple element type.
756 // Note that vector elements may be greater than legal vector element
757 // types. Example: X86 XMM registers hold 64bit element on 32bit
758 // systems.
759 if (!EltVT.isSimple())
760 break;
761
762 // Build a new vector type and check if it is legal.
763 MVT NVT = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
764 // Found a legal promoted vector type.
765 if (NVT != MVT() && ValueTypeActions.getTypeAction(NVT) == TypeLegal)
766 return LegalizeKind(TypePromoteInteger,
767 EVT::getVectorVT(Context, EltVT, NumElts));
768 }
769
770 // Reset the type to the unexpanded type if we did not find a legal vector
771 // type with a promoted vector element type.
772 EltVT = OldEltVT;
773 }
774
775 // Try to widen the vector until a legal type is found.
776 // If there is no wider legal type, split the vector.
Eugene Zelenkofb7f7922017-09-21 23:20:16 +0000777 while (true) {
Eric Christopher75dbd7c2015-02-25 22:41:30 +0000778 // Round up to the next power of 2.
779 NumElts = (unsigned)NextPowerOf2(NumElts);
780
781 // If there is no simple vector type with this many elements then there
782 // cannot be a larger legal vector type. Note that this assumes that
783 // there are no skipped intermediate vector types in the simple types.
784 if (!EltVT.isSimple())
785 break;
786 MVT LargerVector = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
787 if (LargerVector == MVT())
788 break;
789
790 // If this type is legal then widen the vector.
791 if (ValueTypeActions.getTypeAction(LargerVector) == TypeLegal)
792 return LegalizeKind(TypeWidenVector, LargerVector);
793 }
794
795 // Widen odd vectors to next power of two.
796 if (!VT.isPow2VectorType()) {
797 EVT NVT = VT.getPow2VectorType(Context);
798 return LegalizeKind(TypeWidenVector, NVT);
799 }
800
801 // Vectors with illegal element types are expanded.
802 EVT NVT = EVT::getVectorVT(Context, EltVT, VT.getVectorNumElements() / 2);
803 return LegalizeKind(TypeSplitVector, NVT);
804}
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000805
806static unsigned getVectorTypeBreakdownMVT(MVT VT, MVT &IntermediateVT,
807 unsigned &NumIntermediates,
808 MVT &RegisterVT,
809 TargetLoweringBase *TLI) {
810 // Figure out the right, legal destination reg to copy into.
811 unsigned NumElts = VT.getVectorNumElements();
812 MVT EltTy = VT.getVectorElementType();
813
814 unsigned NumVectorRegs = 1;
815
816 // FIXME: We don't support non-power-of-2-sized vectors for now. Ideally we
817 // could break down into LHS/RHS like LegalizeDAG does.
818 if (!isPowerOf2_32(NumElts)) {
819 NumVectorRegs = NumElts;
820 NumElts = 1;
821 }
822
823 // Divide the input until we get to a supported size. This will always
824 // end with a scalar if the target doesn't support vectors.
825 while (NumElts > 1 && !TLI->isTypeLegal(MVT::getVectorVT(EltTy, NumElts))) {
826 NumElts >>= 1;
827 NumVectorRegs <<= 1;
828 }
829
830 NumIntermediates = NumVectorRegs;
831
832 MVT NewVT = MVT::getVectorVT(EltTy, NumElts);
833 if (!TLI->isTypeLegal(NewVT))
834 NewVT = EltTy;
835 IntermediateVT = NewVT;
836
837 unsigned NewVTSize = NewVT.getSizeInBits();
838
839 // Convert sizes such as i33 to i64.
840 if (!isPowerOf2_32(NewVTSize))
841 NewVTSize = NextPowerOf2(NewVTSize);
842
843 MVT DestVT = TLI->getRegisterType(NewVT);
844 RegisterVT = DestVT;
845 if (EVT(DestVT).bitsLT(NewVT)) // Value is expanded, e.g. i64 -> i16.
846 return NumVectorRegs*(NewVTSize/DestVT.getSizeInBits());
847
848 // Otherwise, promotion or legal types use the same number of registers as
849 // the vector decimated to the appropriate level.
850 return NumVectorRegs;
851}
852
853/// isLegalRC - Return true if the value types that can be represented by the
854/// specified register class are all legal.
Krzysztof Parzyszekc8e8e2a2017-04-24 19:51:12 +0000855bool TargetLoweringBase::isLegalRC(const TargetRegisterInfo &TRI,
856 const TargetRegisterClass &RC) const {
857 for (auto I = TRI.legalclasstypes_begin(RC); *I != MVT::Other; ++I)
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000858 if (isTypeLegal(*I))
859 return true;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000860 return false;
861}
862
Lang Hames39609992013-11-29 03:07:54 +0000863/// Replace/modify any TargetFrameIndex operands with a targte-dependent
864/// sequence of memory operands that is recognized by PrologEpilogInserter.
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +0000865MachineBasicBlock *
866TargetLoweringBase::emitPatchPoint(MachineInstr &InitialMI,
Lang Hames39609992013-11-29 03:07:54 +0000867 MachineBasicBlock *MBB) const {
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +0000868 MachineInstr *MI = &InitialMI;
Lang Hames39609992013-11-29 03:07:54 +0000869 MachineFunction &MF = *MI->getParent()->getParent();
Matthias Braun941a7052016-07-28 18:40:00 +0000870 MachineFrameInfo &MFI = MF.getFrameInfo();
Philip Reamescb0f9472015-12-23 23:44:28 +0000871
872 // We're handling multiple types of operands here:
873 // PATCHPOINT MetaArgs - live-in, read only, direct
874 // STATEPOINT Deopt Spill - live-through, read only, indirect
875 // STATEPOINT Deopt Alloca - live-through, read only, direct
876 // (We're currently conservative and mark the deopt slots read/write in
877 // practice.)
878 // STATEPOINT GC Spill - live-through, read/write, indirect
879 // STATEPOINT GC Alloca - live-through, read/write, direct
880 // The live-in vs live-through is handled already (the live through ones are
881 // all stack slots), but we need to handle the different type of stackmap
882 // operands and memory effects here.
Lang Hames39609992013-11-29 03:07:54 +0000883
884 // MI changes inside this loop as we grow operands.
885 for(unsigned OperIdx = 0; OperIdx != MI->getNumOperands(); ++OperIdx) {
886 MachineOperand &MO = MI->getOperand(OperIdx);
887 if (!MO.isFI())
888 continue;
889
890 // foldMemoryOperand builds a new MI after replacing a single FI operand
891 // with the canonical set of five x86 addressing-mode operands.
892 int FI = MO.getIndex();
893 MachineInstrBuilder MIB = BuildMI(MF, MI->getDebugLoc(), MI->getDesc());
894
895 // Copy operands before the frame-index.
896 for (unsigned i = 0; i < OperIdx; ++i)
Diana Picus116bbab2017-01-13 09:58:52 +0000897 MIB.add(MI->getOperand(i));
Philip Reamescb0f9472015-12-23 23:44:28 +0000898 // Add frame index operands recognized by stackmaps.cpp
899 if (MFI.isStatepointSpillSlotObjectIndex(FI)) {
900 // indirect-mem-ref tag, size, #FI, offset.
901 // Used for spills inserted by StatepointLowering. This codepath is not
902 // used for patchpoints/stackmaps at all, for these spilling is done via
903 // foldMemoryOperand callback only.
904 assert(MI->getOpcode() == TargetOpcode::STATEPOINT && "sanity");
905 MIB.addImm(StackMaps::IndirectMemRefOp);
906 MIB.addImm(MFI.getObjectSize(FI));
Diana Picus116bbab2017-01-13 09:58:52 +0000907 MIB.add(MI->getOperand(OperIdx));
Philip Reamescb0f9472015-12-23 23:44:28 +0000908 MIB.addImm(0);
909 } else {
910 // direct-mem-ref tag, #FI, offset.
911 // Used by patchpoint, and direct alloca arguments to statepoints
912 MIB.addImm(StackMaps::DirectMemRefOp);
Diana Picus116bbab2017-01-13 09:58:52 +0000913 MIB.add(MI->getOperand(OperIdx));
Philip Reamescb0f9472015-12-23 23:44:28 +0000914 MIB.addImm(0);
915 }
Lang Hames39609992013-11-29 03:07:54 +0000916 // Copy the operands after the frame index.
917 for (unsigned i = OperIdx + 1; i != MI->getNumOperands(); ++i)
Diana Picus116bbab2017-01-13 09:58:52 +0000918 MIB.add(MI->getOperand(i));
Lang Hames39609992013-11-29 03:07:54 +0000919
920 // Inherit previous memory operands.
921 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
922 assert(MIB->mayLoad() && "Folded a stackmap use to a non-load!");
923
924 // Add a new memory operand for this FI.
Lang Hames39609992013-11-29 03:07:54 +0000925 assert(MFI.getObjectOffset(FI) != -1);
Philip Reames0365f1a2014-12-01 22:52:56 +0000926
Justin Lebar0af80cd2016-07-15 18:26:59 +0000927 auto Flags = MachineMemOperand::MOLoad;
Philip Reames0365f1a2014-12-01 22:52:56 +0000928 if (MI->getOpcode() == TargetOpcode::STATEPOINT) {
929 Flags |= MachineMemOperand::MOStore;
930 Flags |= MachineMemOperand::MOVolatile;
931 }
Eric Christopherd9134482014-08-04 21:25:23 +0000932 MachineMemOperand *MMO = MF.getMachineMemOperand(
Alex Lorenze40c8a22015-08-11 23:09:45 +0000933 MachinePointerInfo::getFixedStack(MF, FI), Flags,
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000934 MF.getDataLayout().getPointerSize(), MFI.getObjectAlignment(FI));
Lang Hames39609992013-11-29 03:07:54 +0000935 MIB->addMemOperand(MF, MMO);
936
937 // Replace the instruction and update the operand index.
938 MBB->insert(MachineBasicBlock::iterator(MI), MIB);
939 OperIdx += (MIB->getNumOperands() - MI->getNumOperands()) - 1;
940 MI->eraseFromParent();
941 MI = MIB;
942 }
943 return MBB;
944}
945
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000946/// findRepresentativeClass - Return the largest legal super-reg register class
947/// of the register class for the specified type and its associated "cost".
Eric Christopher720ab842015-03-03 19:47:14 +0000948// This function is in TargetLowering because it uses RegClassForVT which would
949// need to be moved to TargetRegisterInfo and would necessitate moving
950// isTypeLegal over as well - a massive change that would just require
951// TargetLowering having a TargetRegisterInfo class member that it would use.
Eric Christopher23a3a7c2015-02-26 00:00:24 +0000952std::pair<const TargetRegisterClass *, uint8_t>
953TargetLoweringBase::findRepresentativeClass(const TargetRegisterInfo *TRI,
954 MVT VT) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000955 const TargetRegisterClass *RC = RegClassForVT[VT.SimpleTy];
956 if (!RC)
957 return std::make_pair(RC, 0);
958
959 // Compute the set of all super-register classes.
960 BitVector SuperRegRC(TRI->getNumRegClasses());
961 for (SuperRegClassIterator RCI(RC, TRI); RCI.isValid(); ++RCI)
962 SuperRegRC.setBitsInMask(RCI.getMask());
963
964 // Find the first legal register class with the largest spill size.
965 const TargetRegisterClass *BestRC = RC;
Francis Visoiu Mistrihb52e0362017-05-17 01:07:53 +0000966 for (unsigned i : SuperRegRC.set_bits()) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000967 const TargetRegisterClass *SuperRC = TRI->getRegClass(i);
968 // We want the largest possible spill size.
Krzysztof Parzyszek44e25f32017-04-24 18:55:33 +0000969 if (TRI->getSpillSize(*SuperRC) <= TRI->getSpillSize(*BestRC))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000970 continue;
Krzysztof Parzyszekc8e8e2a2017-04-24 19:51:12 +0000971 if (!isLegalRC(*TRI, *SuperRC))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000972 continue;
973 BestRC = SuperRC;
974 }
975 return std::make_pair(BestRC, 1);
976}
977
978/// computeRegisterProperties - Once all of the register classes are added,
979/// this allows us to compute derived properties we expose.
Eric Christopher23a3a7c2015-02-26 00:00:24 +0000980void TargetLoweringBase::computeRegisterProperties(
981 const TargetRegisterInfo *TRI) {
Craig Topper6438fc32014-11-17 00:26:50 +0000982 static_assert(MVT::LAST_VALUETYPE <= MVT::MAX_ALLOWED_VALUETYPE,
983 "Too many value types for ValueTypeActions to hold!");
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000984
985 // Everything defaults to needing one register.
986 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i) {
987 NumRegistersForVT[i] = 1;
988 RegisterTypeForVT[i] = TransformToType[i] = (MVT::SimpleValueType)i;
989 }
990 // ...except isVoid, which doesn't need any registers.
991 NumRegistersForVT[MVT::isVoid] = 0;
992
993 // Find the largest integer register class.
994 unsigned LargestIntReg = MVT::LAST_INTEGER_VALUETYPE;
Craig Topperc0196b12014-04-14 00:51:57 +0000995 for (; RegClassForVT[LargestIntReg] == nullptr; --LargestIntReg)
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000996 assert(LargestIntReg != MVT::i1 && "No integer registers defined!");
997
998 // Every integer value type larger than this largest register takes twice as
999 // many registers to represent as the previous ValueType.
1000 for (unsigned ExpandedReg = LargestIntReg + 1;
1001 ExpandedReg <= MVT::LAST_INTEGER_VALUETYPE; ++ExpandedReg) {
1002 NumRegistersForVT[ExpandedReg] = 2*NumRegistersForVT[ExpandedReg-1];
1003 RegisterTypeForVT[ExpandedReg] = (MVT::SimpleValueType)LargestIntReg;
1004 TransformToType[ExpandedReg] = (MVT::SimpleValueType)(ExpandedReg - 1);
1005 ValueTypeActions.setTypeAction((MVT::SimpleValueType)ExpandedReg,
1006 TypeExpandInteger);
1007 }
1008
1009 // Inspect all of the ValueType's smaller than the largest integer
1010 // register to see which ones need promotion.
1011 unsigned LegalIntReg = LargestIntReg;
1012 for (unsigned IntReg = LargestIntReg - 1;
1013 IntReg >= (unsigned)MVT::i1; --IntReg) {
1014 MVT IVT = (MVT::SimpleValueType)IntReg;
1015 if (isTypeLegal(IVT)) {
1016 LegalIntReg = IntReg;
1017 } else {
1018 RegisterTypeForVT[IntReg] = TransformToType[IntReg] =
1019 (const MVT::SimpleValueType)LegalIntReg;
1020 ValueTypeActions.setTypeAction(IVT, TypePromoteInteger);
1021 }
1022 }
1023
1024 // ppcf128 type is really two f64's.
1025 if (!isTypeLegal(MVT::ppcf128)) {
Petar Jovanovic23e44f52016-02-04 14:43:50 +00001026 if (isTypeLegal(MVT::f64)) {
1027 NumRegistersForVT[MVT::ppcf128] = 2*NumRegistersForVT[MVT::f64];
1028 RegisterTypeForVT[MVT::ppcf128] = MVT::f64;
1029 TransformToType[MVT::ppcf128] = MVT::f64;
1030 ValueTypeActions.setTypeAction(MVT::ppcf128, TypeExpandFloat);
1031 } else {
1032 NumRegistersForVT[MVT::ppcf128] = NumRegistersForVT[MVT::i128];
1033 RegisterTypeForVT[MVT::ppcf128] = RegisterTypeForVT[MVT::i128];
1034 TransformToType[MVT::ppcf128] = MVT::i128;
1035 ValueTypeActions.setTypeAction(MVT::ppcf128, TypeSoftenFloat);
1036 }
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001037 }
1038
Akira Hatanaka3d055582013-03-01 21:11:44 +00001039 // Decide how to handle f128. If the target does not have native f128 support,
1040 // expand it to i128 and we will be generating soft float library calls.
1041 if (!isTypeLegal(MVT::f128)) {
1042 NumRegistersForVT[MVT::f128] = NumRegistersForVT[MVT::i128];
1043 RegisterTypeForVT[MVT::f128] = RegisterTypeForVT[MVT::i128];
1044 TransformToType[MVT::f128] = MVT::i128;
1045 ValueTypeActions.setTypeAction(MVT::f128, TypeSoftenFloat);
1046 }
1047
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001048 // Decide how to handle f64. If the target does not have native f64 support,
1049 // expand it to i64 and we will be generating soft float library calls.
1050 if (!isTypeLegal(MVT::f64)) {
1051 NumRegistersForVT[MVT::f64] = NumRegistersForVT[MVT::i64];
1052 RegisterTypeForVT[MVT::f64] = RegisterTypeForVT[MVT::i64];
1053 TransformToType[MVT::f64] = MVT::i64;
1054 ValueTypeActions.setTypeAction(MVT::f64, TypeSoftenFloat);
1055 }
1056
Ahmed Bougachaa0f35592015-03-28 01:22:37 +00001057 // Decide how to handle f32. If the target does not have native f32 support,
1058 // expand it to i32 and we will be generating soft float library calls.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001059 if (!isTypeLegal(MVT::f32)) {
Ahmed Bougachaa0f35592015-03-28 01:22:37 +00001060 NumRegistersForVT[MVT::f32] = NumRegistersForVT[MVT::i32];
1061 RegisterTypeForVT[MVT::f32] = RegisterTypeForVT[MVT::i32];
1062 TransformToType[MVT::f32] = MVT::i32;
1063 ValueTypeActions.setTypeAction(MVT::f32, TypeSoftenFloat);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001064 }
1065
Oliver Stannard56358572015-11-09 11:03:18 +00001066 // Decide how to handle f16. If the target does not have native f16 support,
1067 // promote it to f32, because there are no f16 library calls (except for
1068 // conversions).
Tim Northover20bd0ce2014-07-18 12:41:46 +00001069 if (!isTypeLegal(MVT::f16)) {
Oliver Stannard56358572015-11-09 11:03:18 +00001070 NumRegistersForVT[MVT::f16] = NumRegistersForVT[MVT::f32];
1071 RegisterTypeForVT[MVT::f16] = RegisterTypeForVT[MVT::f32];
1072 TransformToType[MVT::f16] = MVT::f32;
1073 ValueTypeActions.setTypeAction(MVT::f16, TypePromoteFloat);
Tim Northover20bd0ce2014-07-18 12:41:46 +00001074 }
1075
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001076 // Loop over all of the vector value types to see which need transformations.
1077 for (unsigned i = MVT::FIRST_VECTOR_VALUETYPE;
1078 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001079 MVT VT = (MVT::SimpleValueType) i;
1080 if (isTypeLegal(VT))
1081 continue;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001082
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001083 MVT EltVT = VT.getVectorElementType();
1084 unsigned NElts = VT.getVectorNumElements();
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001085 bool IsLegalWiderType = false;
1086 LegalizeTypeAction PreferredAction = getPreferredVectorAction(VT);
1087 switch (PreferredAction) {
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001088 case TypePromoteInteger:
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001089 // Try to promote the elements of integer vectors. If no legal
1090 // promotion was found, fall through to the widen-vector method.
Matt Arsenault940d19a2016-04-22 21:16:17 +00001091 for (unsigned nVT = i + 1; nVT <= MVT::LAST_INTEGER_VECTOR_VALUETYPE; ++nVT) {
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001092 MVT SVT = (MVT::SimpleValueType) nVT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001093 // Promote vectors of integers to vectors with the same number
1094 // of elements, with a wider element type.
Sanjay Patel1ed771f2016-09-14 16:37:15 +00001095 if (SVT.getScalarSizeInBits() > EltVT.getSizeInBits() &&
Matt Arsenault940d19a2016-04-22 21:16:17 +00001096 SVT.getVectorNumElements() == NElts && isTypeLegal(SVT)) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001097 TransformToType[i] = SVT;
1098 RegisterTypeForVT[i] = SVT;
1099 NumRegistersForVT[i] = 1;
1100 ValueTypeActions.setTypeAction(VT, TypePromoteInteger);
1101 IsLegalWiderType = true;
1102 break;
1103 }
1104 }
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001105 if (IsLegalWiderType)
1106 break;
Galina Kistanovabd79f732017-06-03 05:11:14 +00001107 LLVM_FALLTHROUGH;
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001108
1109 case TypeWidenVector:
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001110 // Try to widen the vector.
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001111 for (unsigned nVT = i + 1; nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
1112 MVT SVT = (MVT::SimpleValueType) nVT;
1113 if (SVT.getVectorElementType() == EltVT
1114 && SVT.getVectorNumElements() > NElts && isTypeLegal(SVT)) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001115 TransformToType[i] = SVT;
1116 RegisterTypeForVT[i] = SVT;
1117 NumRegistersForVT[i] = 1;
1118 ValueTypeActions.setTypeAction(VT, TypeWidenVector);
1119 IsLegalWiderType = true;
1120 break;
1121 }
1122 }
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001123 if (IsLegalWiderType)
1124 break;
Galina Kistanovabd79f732017-06-03 05:11:14 +00001125 LLVM_FALLTHROUGH;
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001126
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001127 case TypeSplitVector:
1128 case TypeScalarizeVector: {
1129 MVT IntermediateVT;
1130 MVT RegisterVT;
1131 unsigned NumIntermediates;
1132 NumRegistersForVT[i] = getVectorTypeBreakdownMVT(VT, IntermediateVT,
1133 NumIntermediates, RegisterVT, this);
1134 RegisterTypeForVT[i] = RegisterVT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001135
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001136 MVT NVT = VT.getPow2VectorType();
1137 if (NVT == VT) {
1138 // Type is already a power of 2. The default action is to split.
1139 TransformToType[i] = MVT::Other;
1140 if (PreferredAction == TypeScalarizeVector)
1141 ValueTypeActions.setTypeAction(VT, TypeScalarizeVector);
Hao Liue02b1a02014-10-31 02:35:34 +00001142 else if (PreferredAction == TypeSplitVector)
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001143 ValueTypeActions.setTypeAction(VT, TypeSplitVector);
Hao Liue02b1a02014-10-31 02:35:34 +00001144 else
1145 // Set type action according to the number of elements.
1146 ValueTypeActions.setTypeAction(VT, NElts == 1 ? TypeScalarizeVector
1147 : TypeSplitVector);
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001148 } else {
1149 TransformToType[i] = NVT;
1150 ValueTypeActions.setTypeAction(VT, TypeWidenVector);
1151 }
1152 break;
1153 }
1154 default:
1155 llvm_unreachable("Unknown vector legalization action!");
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001156 }
1157 }
1158
1159 // Determine the 'representative' register class for each value type.
1160 // An representative register class is the largest (meaning one which is
1161 // not a sub-register class / subreg register class) legal register class for
1162 // a group of value types. For example, on i386, i8, i16, and i32
1163 // representative would be GR32; while on x86_64 it's GR64.
1164 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i) {
1165 const TargetRegisterClass* RRC;
1166 uint8_t Cost;
Eric Christopher23a3a7c2015-02-26 00:00:24 +00001167 std::tie(RRC, Cost) = findRepresentativeClass(TRI, (MVT::SimpleValueType)i);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001168 RepRegClassForVT[i] = RRC;
1169 RepRegClassCostForVT[i] = Cost;
1170 }
1171}
1172
Mehdi Amini44ede332015-07-09 02:09:04 +00001173EVT TargetLoweringBase::getSetCCResultType(const DataLayout &DL, LLVMContext &,
1174 EVT VT) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001175 assert(!VT.isVector() && "No default SetCC type for vectors!");
Mehdi Amini44ede332015-07-09 02:09:04 +00001176 return getPointerTy(DL).SimpleTy;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001177}
1178
1179MVT::SimpleValueType TargetLoweringBase::getCmpLibcallReturnType() const {
1180 return MVT::i32; // return the default value
1181}
1182
1183/// getVectorTypeBreakdown - Vector types are broken down into some number of
1184/// legal first class types. For example, MVT::v8f32 maps to 2 MVT::v4f32
1185/// with Altivec or SSE1, or 8 promoted MVT::f64 values with the X86 FP stack.
1186/// Similarly, MVT::v2i64 turns into 4 MVT::i32 values with both PPC and X86.
1187///
1188/// This method returns the number of registers needed, and the VT for each
1189/// register. It also returns the VT and quantity of the intermediate values
1190/// before they are promoted/expanded.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001191unsigned TargetLoweringBase::getVectorTypeBreakdown(LLVMContext &Context, EVT VT,
1192 EVT &IntermediateVT,
1193 unsigned &NumIntermediates,
1194 MVT &RegisterVT) const {
1195 unsigned NumElts = VT.getVectorNumElements();
1196
1197 // If there is a wider vector type with the same element type as this one,
1198 // or a promoted vector type that has the same number of elements which
1199 // are wider, then we should convert to that legal vector type.
1200 // This handles things like <2 x float> -> <4 x float> and
1201 // <4 x i1> -> <4 x i32>.
1202 LegalizeTypeAction TA = getTypeAction(Context, VT);
1203 if (NumElts != 1 && (TA == TypeWidenVector || TA == TypePromoteInteger)) {
1204 EVT RegisterEVT = getTypeToTransformTo(Context, VT);
1205 if (isTypeLegal(RegisterEVT)) {
1206 IntermediateVT = RegisterEVT;
1207 RegisterVT = RegisterEVT.getSimpleVT();
1208 NumIntermediates = 1;
1209 return 1;
1210 }
1211 }
1212
1213 // Figure out the right, legal destination reg to copy into.
1214 EVT EltTy = VT.getVectorElementType();
1215
1216 unsigned NumVectorRegs = 1;
1217
1218 // FIXME: We don't support non-power-of-2-sized vectors for now. Ideally we
1219 // could break down into LHS/RHS like LegalizeDAG does.
1220 if (!isPowerOf2_32(NumElts)) {
1221 NumVectorRegs = NumElts;
1222 NumElts = 1;
1223 }
1224
1225 // Divide the input until we get to a supported size. This will always
1226 // end with a scalar if the target doesn't support vectors.
1227 while (NumElts > 1 && !isTypeLegal(
1228 EVT::getVectorVT(Context, EltTy, NumElts))) {
1229 NumElts >>= 1;
1230 NumVectorRegs <<= 1;
1231 }
1232
1233 NumIntermediates = NumVectorRegs;
1234
1235 EVT NewVT = EVT::getVectorVT(Context, EltTy, NumElts);
1236 if (!isTypeLegal(NewVT))
1237 NewVT = EltTy;
1238 IntermediateVT = NewVT;
1239
1240 MVT DestVT = getRegisterType(Context, NewVT);
1241 RegisterVT = DestVT;
1242 unsigned NewVTSize = NewVT.getSizeInBits();
1243
1244 // Convert sizes such as i33 to i64.
1245 if (!isPowerOf2_32(NewVTSize))
1246 NewVTSize = NextPowerOf2(NewVTSize);
1247
1248 if (EVT(DestVT).bitsLT(NewVT)) // Value is expanded, e.g. i64 -> i16.
1249 return NumVectorRegs*(NewVTSize/DestVT.getSizeInBits());
1250
1251 // Otherwise, promotion or legal types use the same number of registers as
1252 // the vector decimated to the appropriate level.
1253 return NumVectorRegs;
1254}
1255
1256/// Get the EVTs and ArgFlags collections that represent the legalized return
1257/// type of the given function. This does not require a DAG or a return value,
1258/// and is suitable for use before any DAGs for the function are constructed.
1259/// TODO: Move this out of TargetLowering.cpp.
Reid Klecknerb5180542017-03-21 16:57:19 +00001260void llvm::GetReturnInfo(Type *ReturnType, AttributeList attr,
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001261 SmallVectorImpl<ISD::OutputArg> &Outs,
Mehdi Amini56228da2015-07-09 01:57:34 +00001262 const TargetLowering &TLI, const DataLayout &DL) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001263 SmallVector<EVT, 4> ValueVTs;
Mehdi Amini56228da2015-07-09 01:57:34 +00001264 ComputeValueVTs(TLI, DL, ReturnType, ValueVTs);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001265 unsigned NumValues = ValueVTs.size();
1266 if (NumValues == 0) return;
1267
1268 for (unsigned j = 0, f = NumValues; j != f; ++j) {
1269 EVT VT = ValueVTs[j];
1270 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1271
Reid Klecknerb5180542017-03-21 16:57:19 +00001272 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::SExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001273 ExtendKind = ISD::SIGN_EXTEND;
Reid Klecknerb5180542017-03-21 16:57:19 +00001274 else if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::ZExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001275 ExtendKind = ISD::ZERO_EXTEND;
1276
1277 // FIXME: C calling convention requires the return type to be promoted to
1278 // at least 32-bit. But this is not necessary for non-C calling
1279 // conventions. The frontend should mark functions whose return values
1280 // require promoting with signext or zeroext attributes.
1281 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
1282 MVT MinVT = TLI.getRegisterType(ReturnType->getContext(), MVT::i32);
1283 if (VT.bitsLT(MinVT))
1284 VT = MinVT;
1285 }
1286
Simon Dardis212cccb2017-06-09 14:37:08 +00001287 unsigned NumParts =
1288 TLI.getNumRegistersForCallingConv(ReturnType->getContext(), VT);
1289 MVT PartVT =
1290 TLI.getRegisterTypeForCallingConv(ReturnType->getContext(), VT);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001291
1292 // 'inreg' on function refers to return value
1293 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Reid Klecknerb5180542017-03-21 16:57:19 +00001294 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::InReg))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001295 Flags.setInReg();
1296
1297 // Propagate extension type if any
Reid Klecknerb5180542017-03-21 16:57:19 +00001298 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::SExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001299 Flags.setSExt();
Reid Klecknerb5180542017-03-21 16:57:19 +00001300 else if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::ZExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001301 Flags.setZExt();
1302
1303 for (unsigned i = 0; i < NumParts; ++i)
Tom Stellard8d7d4de2013-10-23 00:44:24 +00001304 Outs.push_back(ISD::OutputArg(Flags, PartVT, VT, /*isFixed=*/true, 0, 0));
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001305 }
1306}
1307
1308/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1309/// function arguments in the caller parameter area. This is the actual
1310/// alignment, not its logarithm.
Mehdi Amini5c183d52015-07-09 02:09:28 +00001311unsigned TargetLoweringBase::getByValTypeAlignment(Type *Ty,
1312 const DataLayout &DL) const {
1313 return DL.getABITypeAlignment(Ty);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001314}
1315
Sanjay Patel0f9dcf82015-07-29 18:24:18 +00001316bool TargetLoweringBase::allowsMemoryAccess(LLVMContext &Context,
1317 const DataLayout &DL, EVT VT,
1318 unsigned AddrSpace,
1319 unsigned Alignment,
1320 bool *Fast) const {
1321 // Check if the specified alignment is sufficient based on the data layout.
1322 // TODO: While using the data layout works in practice, a better solution
1323 // would be to implement this check directly (make this a virtual function).
1324 // For example, the ABI alignment may change based on software platform while
1325 // this function should only be affected by hardware implementation.
1326 Type *Ty = VT.getTypeForEVT(Context);
1327 if (Alignment >= DL.getABITypeAlignment(Ty)) {
1328 // Assume that an access that meets the ABI-specified alignment is fast.
1329 if (Fast != nullptr)
1330 *Fast = true;
1331 return true;
1332 }
1333
1334 // This is a misaligned access.
1335 return allowsMisalignedMemoryAccesses(VT, AddrSpace, Alignment, Fast);
1336}
1337
Sanjay Pateld66607b2016-04-26 17:11:17 +00001338BranchProbability TargetLoweringBase::getPredictableBranchThreshold() const {
1339 return BranchProbability(MinPercentageForPredictableBranch, 100);
1340}
Sanjay Patel0f9dcf82015-07-29 18:24:18 +00001341
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001342//===----------------------------------------------------------------------===//
1343// TargetTransformInfo Helpers
1344//===----------------------------------------------------------------------===//
1345
1346int TargetLoweringBase::InstructionOpcodeToISD(unsigned Opcode) const {
1347 enum InstructionOpcodes {
1348#define HANDLE_INST(NUM, OPCODE, CLASS) OPCODE = NUM,
1349#define LAST_OTHER_INST(NUM) InstructionOpcodesCount = NUM
1350#include "llvm/IR/Instruction.def"
1351 };
1352 switch (static_cast<InstructionOpcodes>(Opcode)) {
1353 case Ret: return 0;
1354 case Br: return 0;
1355 case Switch: return 0;
1356 case IndirectBr: return 0;
1357 case Invoke: return 0;
1358 case Resume: return 0;
1359 case Unreachable: return 0;
David Majnemer654e1302015-07-31 17:58:14 +00001360 case CleanupRet: return 0;
David Majnemer654e1302015-07-31 17:58:14 +00001361 case CatchRet: return 0;
David Majnemer8a1c45d2015-12-12 05:38:55 +00001362 case CatchPad: return 0;
1363 case CatchSwitch: return 0;
David Majnemer8a1c45d2015-12-12 05:38:55 +00001364 case CleanupPad: return 0;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001365 case Add: return ISD::ADD;
1366 case FAdd: return ISD::FADD;
1367 case Sub: return ISD::SUB;
1368 case FSub: return ISD::FSUB;
1369 case Mul: return ISD::MUL;
1370 case FMul: return ISD::FMUL;
1371 case UDiv: return ISD::UDIV;
Benjamin Kramerce4b3fe2014-04-27 18:47:54 +00001372 case SDiv: return ISD::SDIV;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001373 case FDiv: return ISD::FDIV;
1374 case URem: return ISD::UREM;
1375 case SRem: return ISD::SREM;
1376 case FRem: return ISD::FREM;
1377 case Shl: return ISD::SHL;
1378 case LShr: return ISD::SRL;
1379 case AShr: return ISD::SRA;
1380 case And: return ISD::AND;
1381 case Or: return ISD::OR;
1382 case Xor: return ISD::XOR;
1383 case Alloca: return 0;
1384 case Load: return ISD::LOAD;
1385 case Store: return ISD::STORE;
1386 case GetElementPtr: return 0;
1387 case Fence: return 0;
1388 case AtomicCmpXchg: return 0;
1389 case AtomicRMW: return 0;
1390 case Trunc: return ISD::TRUNCATE;
1391 case ZExt: return ISD::ZERO_EXTEND;
1392 case SExt: return ISD::SIGN_EXTEND;
1393 case FPToUI: return ISD::FP_TO_UINT;
1394 case FPToSI: return ISD::FP_TO_SINT;
1395 case UIToFP: return ISD::UINT_TO_FP;
1396 case SIToFP: return ISD::SINT_TO_FP;
1397 case FPTrunc: return ISD::FP_ROUND;
1398 case FPExt: return ISD::FP_EXTEND;
1399 case PtrToInt: return ISD::BITCAST;
1400 case IntToPtr: return ISD::BITCAST;
1401 case BitCast: return ISD::BITCAST;
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001402 case AddrSpaceCast: return ISD::ADDRSPACECAST;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001403 case ICmp: return ISD::SETCC;
1404 case FCmp: return ISD::SETCC;
1405 case PHI: return 0;
1406 case Call: return 0;
1407 case Select: return ISD::SELECT;
1408 case UserOp1: return 0;
1409 case UserOp2: return 0;
1410 case VAArg: return 0;
1411 case ExtractElement: return ISD::EXTRACT_VECTOR_ELT;
1412 case InsertElement: return ISD::INSERT_VECTOR_ELT;
1413 case ShuffleVector: return ISD::VECTOR_SHUFFLE;
1414 case ExtractValue: return ISD::MERGE_VALUES;
1415 case InsertValue: return ISD::MERGE_VALUES;
1416 case LandingPad: return 0;
1417 }
1418
1419 llvm_unreachable("Unknown instruction type encountered!");
1420}
1421
Chandler Carruth93205eb2015-08-05 18:08:10 +00001422std::pair<int, MVT>
Mehdi Amini44ede332015-07-09 02:09:04 +00001423TargetLoweringBase::getTypeLegalizationCost(const DataLayout &DL,
1424 Type *Ty) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001425 LLVMContext &C = Ty->getContext();
Mehdi Amini44ede332015-07-09 02:09:04 +00001426 EVT MTy = getValueType(DL, Ty);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001427
Chandler Carruth93205eb2015-08-05 18:08:10 +00001428 int Cost = 1;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001429 // We keep legalizing the type until we find a legal kind. We assume that
1430 // the only operation that costs anything is the split. After splitting
1431 // we need to handle two types.
1432 while (true) {
1433 LegalizeKind LK = getTypeConversion(C, MTy);
1434
1435 if (LK.first == TypeLegal)
1436 return std::make_pair(Cost, MTy.getSimpleVT());
1437
1438 if (LK.first == TypeSplitVector || LK.first == TypeExpandInteger)
1439 Cost *= 2;
1440
Chih-Hung Hsiehed7d81e2015-12-03 22:02:40 +00001441 // Do not loop with f128 type.
1442 if (MTy == LK.second)
1443 return std::make_pair(Cost, MTy.getSimpleVT());
1444
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001445 // Keep legalizing the type.
1446 MTy = LK.second;
1447 }
1448}
1449
David L Kreitzerd5c67552016-10-14 17:56:00 +00001450Value *TargetLoweringBase::getDefaultSafeStackPointerLocation(IRBuilder<> &IRB,
1451 bool UseTLS) const {
1452 // compiler-rt provides a variable with a magic name. Targets that do not
1453 // link with compiler-rt may also provide such a variable.
1454 Module *M = IRB.GetInsertBlock()->getParent()->getParent();
1455 const char *UnsafeStackPtrVar = "__safestack_unsafe_stack_ptr";
1456 auto UnsafeStackPtr =
1457 dyn_cast_or_null<GlobalVariable>(M->getNamedValue(UnsafeStackPtrVar));
1458
1459 Type *StackPtrTy = Type::getInt8PtrTy(M->getContext());
1460
1461 if (!UnsafeStackPtr) {
1462 auto TLSModel = UseTLS ?
1463 GlobalValue::InitialExecTLSModel :
1464 GlobalValue::NotThreadLocal;
1465 // The global variable is not defined yet, define it ourselves.
1466 // We use the initial-exec TLS model because we do not support the
1467 // variable living anywhere other than in the main executable.
1468 UnsafeStackPtr = new GlobalVariable(
1469 *M, StackPtrTy, false, GlobalValue::ExternalLinkage, nullptr,
1470 UnsafeStackPtrVar, nullptr, TLSModel);
1471 } else {
1472 // The variable exists, check its type and attributes.
1473 if (UnsafeStackPtr->getValueType() != StackPtrTy)
1474 report_fatal_error(Twine(UnsafeStackPtrVar) + " must have void* type");
1475 if (UseTLS != UnsafeStackPtr->isThreadLocal())
1476 report_fatal_error(Twine(UnsafeStackPtrVar) + " must " +
1477 (UseTLS ? "" : "not ") + "be thread-local");
1478 }
1479 return UnsafeStackPtr;
1480}
1481
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +00001482Value *TargetLoweringBase::getSafeStackPointerLocation(IRBuilder<> &IRB) const {
1483 if (!TM.getTargetTriple().isAndroid())
David L Kreitzerd5c67552016-10-14 17:56:00 +00001484 return getDefaultSafeStackPointerLocation(IRB, true);
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +00001485
1486 // Android provides a libc function to retrieve the address of the current
1487 // thread's unsafe stack pointer.
1488 Module *M = IRB.GetInsertBlock()->getParent()->getParent();
1489 Type *StackPtrTy = Type::getInt8PtrTy(M->getContext());
1490 Value *Fn = M->getOrInsertFunction("__safestack_pointer_address",
Serge Guelton59a2d7b2017-04-11 15:01:18 +00001491 StackPtrTy->getPointerTo(0));
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +00001492 return IRB.CreateCall(Fn);
1493}
1494
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001495//===----------------------------------------------------------------------===//
1496// Loop Strength Reduction hooks
1497//===----------------------------------------------------------------------===//
1498
1499/// isLegalAddressingMode - Return true if the addressing mode represented
1500/// by AM is legal for this target, for a load/store of the specified type.
Mehdi Amini0cdec1e2015-07-09 02:09:40 +00001501bool TargetLoweringBase::isLegalAddressingMode(const DataLayout &DL,
1502 const AddrMode &AM, Type *Ty,
Jonas Paulsson024e3192017-07-21 11:59:37 +00001503 unsigned AS, Instruction *I) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001504 // The default implementation of this implements a conservative RISCy, r+r and
1505 // r+i addr mode.
1506
1507 // Allows a sign-extended 16-bit immediate field.
1508 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
1509 return false;
1510
1511 // No global is ever allowed as a base.
1512 if (AM.BaseGV)
1513 return false;
1514
1515 // Only support r+r,
1516 switch (AM.Scale) {
1517 case 0: // "r+i" or just "i", depending on HasBaseReg.
1518 break;
1519 case 1:
1520 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
1521 return false;
1522 // Otherwise we have r+r or r+i.
1523 break;
1524 case 2:
1525 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
1526 return false;
1527 // Allow 2*r as r+r.
1528 break;
Tom Stellard728d4172014-02-14 21:10:34 +00001529 default: // Don't allow n * r
1530 return false;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001531 }
1532
1533 return true;
1534}
Tim Shen00127562016-04-08 21:26:31 +00001535
1536//===----------------------------------------------------------------------===//
1537// Stack Protector
1538//===----------------------------------------------------------------------===//
1539
1540// For OpenBSD return its special guard variable. Otherwise return nullptr,
1541// so that SelectionDAG handle SSP.
1542Value *TargetLoweringBase::getIRStackGuard(IRBuilder<> &IRB) const {
1543 if (getTargetMachine().getTargetTriple().isOSOpenBSD()) {
1544 Module &M = *IRB.GetInsertBlock()->getParent()->getParent();
1545 PointerType *PtrTy = Type::getInt8PtrTy(M.getContext());
Tim Shena5cc25e2016-08-22 18:26:27 +00001546 return M.getOrInsertGlobal("__guard_local", PtrTy);
Tim Shen00127562016-04-08 21:26:31 +00001547 }
1548 return nullptr;
1549}
1550
1551// Currently only support "standard" __stack_chk_guard.
1552// TODO: add LOAD_STACK_GUARD support.
1553void TargetLoweringBase::insertSSPDeclarations(Module &M) const {
1554 M.getOrInsertGlobal("__stack_chk_guard", Type::getInt8PtrTy(M.getContext()));
1555}
1556
1557// Currently only support "standard" __stack_chk_guard.
1558// TODO: add LOAD_STACK_GUARD support.
Tim Shena1d8bc52016-04-19 20:14:52 +00001559Value *TargetLoweringBase::getSDagStackGuard(const Module &M) const {
Davide Italianobd4243c2016-06-09 14:23:38 +00001560 return M.getGlobalVariable("__stack_chk_guard", true);
Tim Shen00127562016-04-08 21:26:31 +00001561}
Etienne Bergeron22bfa832016-06-07 20:15:35 +00001562
1563Value *TargetLoweringBase::getSSPStackGuardCheck(const Module &M) const {
1564 return nullptr;
1565}
Evandro Menezese45de8a2016-09-26 15:32:33 +00001566
Evandro Menezeseb97e352016-10-25 19:53:51 +00001567unsigned TargetLoweringBase::getMinimumJumpTableEntries() const {
1568 return MinimumJumpTableEntries;
1569}
1570
1571void TargetLoweringBase::setMinimumJumpTableEntries(unsigned Val) {
1572 MinimumJumpTableEntries = Val;
1573}
1574
Jun Bum Lim919f9e82017-04-28 16:04:03 +00001575unsigned TargetLoweringBase::getMinimumJumpTableDensity(bool OptForSize) const {
1576 return OptForSize ? OptsizeJumpTableDensity : JumpTableDensity;
1577}
1578
Evandro Menezese45de8a2016-09-26 15:32:33 +00001579unsigned TargetLoweringBase::getMaximumJumpTableSize() const {
1580 return MaximumJumpTableSize;
1581}
1582
1583void TargetLoweringBase::setMaximumJumpTableSize(unsigned Val) {
1584 MaximumJumpTableSize = Val;
1585}
Sanjay Patel0051efc2016-10-20 16:55:45 +00001586
1587//===----------------------------------------------------------------------===//
1588// Reciprocal Estimates
1589//===----------------------------------------------------------------------===//
1590
1591/// Get the reciprocal estimate attribute string for a function that will
1592/// override the target defaults.
1593static StringRef getRecipEstimateForFunc(MachineFunction &MF) {
1594 const Function *F = MF.getFunction();
David Majnemere0ebdf42017-01-13 22:24:25 +00001595 return F->getFnAttribute("reciprocal-estimates").getValueAsString();
Sanjay Patel0051efc2016-10-20 16:55:45 +00001596}
1597
1598/// Construct a string for the given reciprocal operation of the given type.
1599/// This string should match the corresponding option to the front-end's
1600/// "-mrecip" flag assuming those strings have been passed through in an
1601/// attribute string. For example, "vec-divf" for a division of a vXf32.
1602static std::string getReciprocalOpName(bool IsSqrt, EVT VT) {
1603 std::string Name = VT.isVector() ? "vec-" : "";
1604
1605 Name += IsSqrt ? "sqrt" : "div";
1606
1607 // TODO: Handle "half" or other float types?
1608 if (VT.getScalarType() == MVT::f64) {
1609 Name += "d";
1610 } else {
1611 assert(VT.getScalarType() == MVT::f32 &&
1612 "Unexpected FP type for reciprocal estimate");
1613 Name += "f";
1614 }
1615
1616 return Name;
1617}
1618
1619/// Return the character position and value (a single numeric character) of a
1620/// customized refinement operation in the input string if it exists. Return
1621/// false if there is no customized refinement step count.
1622static bool parseRefinementStep(StringRef In, size_t &Position,
1623 uint8_t &Value) {
1624 const char RefStepToken = ':';
1625 Position = In.find(RefStepToken);
1626 if (Position == StringRef::npos)
1627 return false;
1628
1629 StringRef RefStepString = In.substr(Position + 1);
1630 // Allow exactly one numeric character for the additional refinement
1631 // step parameter.
1632 if (RefStepString.size() == 1) {
1633 char RefStepChar = RefStepString[0];
1634 if (RefStepChar >= '0' && RefStepChar <= '9') {
1635 Value = RefStepChar - '0';
1636 return true;
1637 }
1638 }
1639 report_fatal_error("Invalid refinement step for -recip.");
1640}
1641
1642/// For the input attribute string, return one of the ReciprocalEstimate enum
1643/// status values (enabled, disabled, or not specified) for this operation on
1644/// the specified data type.
1645static int getOpEnabled(bool IsSqrt, EVT VT, StringRef Override) {
1646 if (Override.empty())
1647 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1648
1649 SmallVector<StringRef, 4> OverrideVector;
1650 SplitString(Override, OverrideVector, ",");
1651 unsigned NumArgs = OverrideVector.size();
1652
1653 // Check if "all", "none", or "default" was specified.
1654 if (NumArgs == 1) {
1655 // Look for an optional setting of the number of refinement steps needed
1656 // for this type of reciprocal operation.
1657 size_t RefPos;
1658 uint8_t RefSteps;
1659 if (parseRefinementStep(Override, RefPos, RefSteps)) {
1660 // Split the string for further processing.
1661 Override = Override.substr(0, RefPos);
1662 }
1663
1664 // All reciprocal types are enabled.
1665 if (Override == "all")
1666 return TargetLoweringBase::ReciprocalEstimate::Enabled;
1667
1668 // All reciprocal types are disabled.
1669 if (Override == "none")
1670 return TargetLoweringBase::ReciprocalEstimate::Disabled;
1671
1672 // Target defaults for enablement are used.
1673 if (Override == "default")
1674 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1675 }
1676
1677 // The attribute string may omit the size suffix ('f'/'d').
1678 std::string VTName = getReciprocalOpName(IsSqrt, VT);
1679 std::string VTNameNoSize = VTName;
Sanjay Patel501be9b2016-10-21 14:58:30 +00001680 VTNameNoSize.pop_back();
Sanjay Patel0051efc2016-10-20 16:55:45 +00001681 static const char DisabledPrefix = '!';
1682
1683 for (StringRef RecipType : OverrideVector) {
1684 size_t RefPos;
1685 uint8_t RefSteps;
1686 if (parseRefinementStep(RecipType, RefPos, RefSteps))
1687 RecipType = RecipType.substr(0, RefPos);
1688
1689 // Ignore the disablement token for string matching.
1690 bool IsDisabled = RecipType[0] == DisabledPrefix;
1691 if (IsDisabled)
1692 RecipType = RecipType.substr(1);
1693
1694 if (RecipType.equals(VTName) || RecipType.equals(VTNameNoSize))
1695 return IsDisabled ? TargetLoweringBase::ReciprocalEstimate::Disabled
1696 : TargetLoweringBase::ReciprocalEstimate::Enabled;
1697 }
1698
1699 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1700}
1701
1702/// For the input attribute string, return the customized refinement step count
1703/// for this operation on the specified data type. If the step count does not
1704/// exist, return the ReciprocalEstimate enum value for unspecified.
1705static int getOpRefinementSteps(bool IsSqrt, EVT VT, StringRef Override) {
1706 if (Override.empty())
1707 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1708
1709 SmallVector<StringRef, 4> OverrideVector;
1710 SplitString(Override, OverrideVector, ",");
1711 unsigned NumArgs = OverrideVector.size();
1712
1713 // Check if "all", "default", or "none" was specified.
1714 if (NumArgs == 1) {
1715 // Look for an optional setting of the number of refinement steps needed
1716 // for this type of reciprocal operation.
1717 size_t RefPos;
1718 uint8_t RefSteps;
1719 if (!parseRefinementStep(Override, RefPos, RefSteps))
1720 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1721
1722 // Split the string for further processing.
1723 Override = Override.substr(0, RefPos);
1724 assert(Override != "none" &&
1725 "Disabled reciprocals, but specifed refinement steps?");
1726
1727 // If this is a general override, return the specified number of steps.
1728 if (Override == "all" || Override == "default")
1729 return RefSteps;
1730 }
1731
1732 // The attribute string may omit the size suffix ('f'/'d').
1733 std::string VTName = getReciprocalOpName(IsSqrt, VT);
1734 std::string VTNameNoSize = VTName;
Sanjay Patel501be9b2016-10-21 14:58:30 +00001735 VTNameNoSize.pop_back();
Sanjay Patel0051efc2016-10-20 16:55:45 +00001736
1737 for (StringRef RecipType : OverrideVector) {
1738 size_t RefPos;
1739 uint8_t RefSteps;
1740 if (!parseRefinementStep(RecipType, RefPos, RefSteps))
1741 continue;
1742
1743 RecipType = RecipType.substr(0, RefPos);
1744 if (RecipType.equals(VTName) || RecipType.equals(VTNameNoSize))
1745 return RefSteps;
1746 }
1747
1748 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1749}
1750
1751int TargetLoweringBase::getRecipEstimateSqrtEnabled(EVT VT,
1752 MachineFunction &MF) const {
1753 return getOpEnabled(true, VT, getRecipEstimateForFunc(MF));
1754}
1755
1756int TargetLoweringBase::getRecipEstimateDivEnabled(EVT VT,
1757 MachineFunction &MF) const {
1758 return getOpEnabled(false, VT, getRecipEstimateForFunc(MF));
1759}
1760
1761int TargetLoweringBase::getSqrtRefinementSteps(EVT VT,
1762 MachineFunction &MF) const {
1763 return getOpRefinementSteps(true, VT, getRecipEstimateForFunc(MF));
1764}
1765
1766int TargetLoweringBase::getDivRefinementSteps(EVT VT,
1767 MachineFunction &MF) const {
1768 return getOpRefinementSteps(false, VT, getRecipEstimateForFunc(MF));
1769}
Matthias Braun744c2152017-04-28 20:25:05 +00001770
1771void TargetLoweringBase::finalizeLowering(MachineFunction &MF) const {
1772 MF.getRegInfo().freezeReservedRegs(MF);
1773}