blob: e8619037564245319d06ff5f430490875ee83c7c [file] [log] [blame]
Eugene Zelenko79ea5b52017-09-21 23:20:16 +00001//===- TargetLoweringBase.cpp - Implement the TargetLoweringBase class ----===//
Benjamin Kramer69e42db2013-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 Kramer69e42db2013-01-11 20:05:37 +000014#include "llvm/ADT/BitVector.h"
15#include "llvm/ADT/STLExtras.h"
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000016#include "llvm/ADT/SmallVector.h"
Sanjay Patel928f0472016-10-20 16:55:45 +000017#include "llvm/ADT/StringExtras.h"
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000018#include "llvm/ADT/StringRef.h"
Paul Redmond86cdbc92013-02-15 18:45:18 +000019#include "llvm/ADT/Triple.h"
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000020#include "llvm/ADT/Twine.h"
Benjamin Kramer69e42db2013-01-11 20:05:37 +000021#include "llvm/CodeGen/Analysis.h"
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000022#include "llvm/CodeGen/ISDOpcodes.h"
23#include "llvm/CodeGen/MachineBasicBlock.h"
Benjamin Kramer69e42db2013-01-11 20:05:37 +000024#include "llvm/CodeGen/MachineFrameInfo.h"
25#include "llvm/CodeGen/MachineFunction.h"
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000026#include "llvm/CodeGen/MachineInstr.h"
Lang Hames1cbca512013-11-29 03:07:54 +000027#include "llvm/CodeGen/MachineInstrBuilder.h"
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000028#include "llvm/CodeGen/MachineMemOperand.h"
29#include "llvm/CodeGen/MachineOperand.h"
Matthias Braun81de6062017-04-28 20:25:05 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000031#include "llvm/CodeGen/RuntimeLibcalls.h"
Lang Hames1cbca512013-11-29 03:07:54 +000032#include "llvm/CodeGen/StackMaps.h"
David Blaikiee3a9b4c2017-11-17 01:07:10 +000033#include "llvm/CodeGen/TargetLowering.h"
34#include "llvm/CodeGen/TargetOpcodes.h"
35#include "llvm/CodeGen/TargetRegisterInfo.h"
Craig Topperf137ed22018-03-29 17:21:10 +000036#include "llvm/CodeGen/ValueTypes.h"
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000037#include "llvm/IR/Attributes.h"
38#include "llvm/IR/CallingConv.h"
Benjamin Kramer69e42db2013-01-11 20:05:37 +000039#include "llvm/IR/DataLayout.h"
40#include "llvm/IR/DerivedTypes.h"
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000041#include "llvm/IR/Function.h"
42#include "llvm/IR/GlobalValue.h"
Benjamin Kramer69e42db2013-01-11 20:05:37 +000043#include "llvm/IR/GlobalVariable.h"
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000044#include "llvm/IR/IRBuilder.h"
45#include "llvm/IR/Module.h"
46#include "llvm/IR/Type.h"
Sanjay Patel6f5aa792016-04-26 17:11:17 +000047#include "llvm/Support/BranchProbability.h"
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000048#include "llvm/Support/Casting.h"
Benjamin Kramer69e42db2013-01-11 20:05:37 +000049#include "llvm/Support/CommandLine.h"
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000050#include "llvm/Support/Compiler.h"
Benjamin Kramer69e42db2013-01-11 20:05:37 +000051#include "llvm/Support/ErrorHandling.h"
David Blaikie9d9a46a2018-03-23 23:58:25 +000052#include "llvm/Support/MachineValueType.h"
Benjamin Kramer69e42db2013-01-11 20:05:37 +000053#include "llvm/Support/MathExtras.h"
Benjamin Kramer69e42db2013-01-11 20:05:37 +000054#include "llvm/Target/TargetMachine.h"
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000055#include <algorithm>
56#include <cassert>
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000057#include <cstddef>
58#include <cstdint>
David Blaikiee3a9b4c2017-11-17 01:07:10 +000059#include <cstring>
Eugene Zelenko79ea5b52017-09-21 23:20:16 +000060#include <iterator>
61#include <string>
62#include <tuple>
63#include <utility>
64
Benjamin Kramer69e42db2013-01-11 20:05:37 +000065using namespace llvm;
66
Sanjay Patel74724562015-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 Menezes9d6f1232016-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 Menezes653861f2016-09-26 15:32:33 +000076static cl::opt<unsigned> MaximumJumpTableSize
Evandro Menezes9d6f1232016-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 Menezes653861f2016-09-26 15:32:33 +000079
Jun Bum Lim98e89d32017-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
Matthias Braun4f43d6f2017-12-18 23:19:42 +000092static bool darwinHasSinCos(const Triple &TT) {
93 assert(TT.isOSDarwin() && "should be called with darwin triple");
Matthias Braun9e15e212017-12-19 20:24:12 +000094 // Don't bother with 32 bit x86.
95 if (TT.getArch() == Triple::x86)
96 return false;
97 // Macos < 10.9 has no sincos_stret.
Matthias Braun4f43d6f2017-12-18 23:19:42 +000098 if (TT.isMacOSX())
99 return !TT.isMacOSXVersionLT(10, 9) && TT.isArch64Bit();
Matthias Braunc2b744f2017-12-18 23:33:28 +0000100 // iOS < 7.0 has no sincos_stret.
Matthias Braun4f43d6f2017-12-18 23:19:42 +0000101 if (TT.isiOS())
Matthias Braunc2b744f2017-12-18 23:33:28 +0000102 return !TT.isOSVersionLT(7, 0);
103 // Any other darwin such as WatchOS/TvOS is new enough.
Matthias Braun4f43d6f2017-12-18 23:19:42 +0000104 return true;
105}
106
Sanjay Patel6f5aa792016-04-26 17:11:17 +0000107// Although this default value is arbitrary, it is not random. It is assumed
108// that a condition that evaluates the same way by a higher percentage than this
109// is best represented as control flow. Therefore, the default value N should be
110// set such that the win from N% correct executions is greater than the loss
111// from (100 - N)% mispredicted executions for the majority of intended targets.
112static cl::opt<int> MinPercentageForPredictableBranch(
113 "min-predictable-branch", cl::init(99),
114 cl::desc("Minimum percentage (0-100) that a condition must be either true "
115 "or false to assume that the condition is predictable"),
116 cl::Hidden);
117
Matthias Braun4f43d6f2017-12-18 23:19:42 +0000118void TargetLoweringBase::InitLibcalls(const Triple &TT) {
Derek Schuffacdb8f92017-07-19 21:53:30 +0000119#define HANDLE_LIBCALL(code, name) \
Matthias Braun4f43d6f2017-12-18 23:19:42 +0000120 setLibcallName(RTLIB::code, name);
Peter Collingbourne5df3f9e2018-07-24 19:34:37 +0000121#include "llvm/IR/RuntimeLibcalls.def"
Derek Schuffacdb8f92017-07-19 21:53:30 +0000122#undef HANDLE_LIBCALL
Matthias Braunea2d46a2017-12-19 00:20:33 +0000123 // Initialize calling conventions to their default.
124 for (int LC = 0; LC < RTLIB::UNKNOWN_LIBCALL; ++LC)
125 setLibcallCallingConv((RTLIB::Libcall)LC, CallingConv::C);
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000126
Derek Schuffacdb8f92017-07-19 21:53:30 +0000127 // A few names are different on particular architectures or environments.
James Y Knight2a29a672016-04-12 22:32:47 +0000128 if (TT.isOSDarwin()) {
129 // For f16/f32 conversions, Darwin uses the standard naming scheme, instead
130 // of the gnueabi-style __gnu_*_ieee.
131 // FIXME: What about other targets?
Matthias Braun4f43d6f2017-12-18 23:19:42 +0000132 setLibcallName(RTLIB::FPEXT_F16_F32, "__extendhfsf2");
133 setLibcallName(RTLIB::FPROUND_F32_F16, "__truncsfhf2");
Matthias Braun40c16682017-12-18 23:14:28 +0000134
Matthias Braun40cc91a2018-01-10 20:49:57 +0000135 // Some darwins have an optimized __bzero/bzero function.
136 switch (TT.getArch()) {
137 case Triple::x86:
138 case Triple::x86_64:
139 if (TT.isMacOSX() && !TT.isMacOSXVersionLT(10, 6))
140 setLibcallName(RTLIB::BZERO, "__bzero");
141 break;
142 case Triple::aarch64:
143 setLibcallName(RTLIB::BZERO, "bzero");
144 break;
145 default:
146 break;
Matthias Braun51a1d9a2017-12-19 00:43:00 +0000147 }
Matthias Braun4f43d6f2017-12-18 23:19:42 +0000148
149 if (darwinHasSinCos(TT)) {
150 setLibcallName(RTLIB::SINCOS_STRET_F32, "__sincosf_stret");
151 setLibcallName(RTLIB::SINCOS_STRET_F64, "__sincos_stret");
152 if (TT.isWatchABI()) {
153 setLibcallCallingConv(RTLIB::SINCOS_STRET_F32,
154 CallingConv::ARM_AAPCS_VFP);
155 setLibcallCallingConv(RTLIB::SINCOS_STRET_F64,
156 CallingConv::ARM_AAPCS_VFP);
157 }
158 }
James Y Knight2a29a672016-04-12 22:32:47 +0000159 } else {
Matthias Braun4f43d6f2017-12-18 23:19:42 +0000160 setLibcallName(RTLIB::FPEXT_F16_F32, "__gnu_h2f_ieee");
161 setLibcallName(RTLIB::FPROUND_F32_F16, "__gnu_f2h_ieee");
James Y Knight2a29a672016-04-12 22:32:47 +0000162 }
James Y Knight238d8192016-04-12 20:18:48 +0000163
John Brawn0f5ab3b2018-09-18 13:18:21 +0000164 if (TT.isGNUEnvironment() || TT.isOSFuchsia() ||
165 (TT.isAndroid() && !TT.isAndroidVersionLT(9))) {
Matthias Braun4f43d6f2017-12-18 23:19:42 +0000166 setLibcallName(RTLIB::SINCOS_F32, "sincosf");
167 setLibcallName(RTLIB::SINCOS_F64, "sincos");
168 setLibcallName(RTLIB::SINCOS_F80, "sincosl");
169 setLibcallName(RTLIB::SINCOS_F128, "sincosl");
170 setLibcallName(RTLIB::SINCOS_PPCF128, "sincosl");
Paul Redmond86cdbc92013-02-15 18:45:18 +0000171 }
Michael Gottesman15b27822013-08-12 18:45:38 +0000172
Derek Schuffacdb8f92017-07-19 21:53:30 +0000173 if (TT.isOSOpenBSD()) {
Matthias Braun4f43d6f2017-12-18 23:19:42 +0000174 setLibcallName(RTLIB::STACKPROTECTOR_CHECK_FAIL, nullptr);
Ahmed Bougachad8b3f0d2015-05-14 01:00:51 +0000175 }
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000176}
177
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000178/// getFPEXT - Return the FPEXT_*_* value for the given types, or
179/// UNKNOWN_LIBCALL if there is none.
180RTLIB::Libcall RTLIB::getFPEXT(EVT OpVT, EVT RetVT) {
Tim Northoverf8d927f2014-07-21 09:13:56 +0000181 if (OpVT == MVT::f16) {
182 if (RetVT == MVT::f32)
183 return FPEXT_F16_F32;
184 } else if (OpVT == MVT::f32) {
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000185 if (RetVT == MVT::f64)
186 return FPEXT_F32_F64;
187 if (RetVT == MVT::f128)
188 return FPEXT_F32_F128;
Petar Jovanovic8ed05262016-02-04 14:43:50 +0000189 if (RetVT == MVT::ppcf128)
190 return FPEXT_F32_PPCF128;
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000191 } else if (OpVT == MVT::f64) {
192 if (RetVT == MVT::f128)
193 return FPEXT_F64_F128;
Petar Jovanovic8ed05262016-02-04 14:43:50 +0000194 else if (RetVT == MVT::ppcf128)
195 return FPEXT_F64_PPCF128;
Benjamin Kramer41019852018-01-17 22:29:16 +0000196 } else if (OpVT == MVT::f80) {
197 if (RetVT == MVT::f128)
198 return FPEXT_F80_F128;
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000199 }
200
201 return UNKNOWN_LIBCALL;
202}
203
204/// getFPROUND - Return the FPROUND_*_* value for the given types, or
205/// UNKNOWN_LIBCALL if there is none.
206RTLIB::Libcall RTLIB::getFPROUND(EVT OpVT, EVT RetVT) {
Tim Northover6c701b92014-07-17 11:12:12 +0000207 if (RetVT == MVT::f16) {
208 if (OpVT == MVT::f32)
209 return FPROUND_F32_F16;
210 if (OpVT == MVT::f64)
211 return FPROUND_F64_F16;
212 if (OpVT == MVT::f80)
213 return FPROUND_F80_F16;
214 if (OpVT == MVT::f128)
215 return FPROUND_F128_F16;
216 if (OpVT == MVT::ppcf128)
217 return FPROUND_PPCF128_F16;
218 } else if (RetVT == MVT::f32) {
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000219 if (OpVT == MVT::f64)
220 return FPROUND_F64_F32;
221 if (OpVT == MVT::f80)
222 return FPROUND_F80_F32;
223 if (OpVT == MVT::f128)
224 return FPROUND_F128_F32;
225 if (OpVT == MVT::ppcf128)
226 return FPROUND_PPCF128_F32;
227 } else if (RetVT == MVT::f64) {
228 if (OpVT == MVT::f80)
229 return FPROUND_F80_F64;
230 if (OpVT == MVT::f128)
231 return FPROUND_F128_F64;
232 if (OpVT == MVT::ppcf128)
233 return FPROUND_PPCF128_F64;
Benjamin Kramer41019852018-01-17 22:29:16 +0000234 } else if (RetVT == MVT::f80) {
235 if (OpVT == MVT::f128)
236 return FPROUND_F128_F80;
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000237 }
238
239 return UNKNOWN_LIBCALL;
240}
241
242/// getFPTOSINT - Return the FPTOSINT_*_* value for the given types, or
243/// UNKNOWN_LIBCALL if there is none.
244RTLIB::Libcall RTLIB::getFPTOSINT(EVT OpVT, EVT RetVT) {
245 if (OpVT == MVT::f32) {
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000246 if (RetVT == MVT::i32)
247 return FPTOSINT_F32_I32;
248 if (RetVT == MVT::i64)
249 return FPTOSINT_F32_I64;
250 if (RetVT == MVT::i128)
251 return FPTOSINT_F32_I128;
252 } else if (OpVT == MVT::f64) {
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000253 if (RetVT == MVT::i32)
254 return FPTOSINT_F64_I32;
255 if (RetVT == MVT::i64)
256 return FPTOSINT_F64_I64;
257 if (RetVT == MVT::i128)
258 return FPTOSINT_F64_I128;
259 } else if (OpVT == MVT::f80) {
260 if (RetVT == MVT::i32)
261 return FPTOSINT_F80_I32;
262 if (RetVT == MVT::i64)
263 return FPTOSINT_F80_I64;
264 if (RetVT == MVT::i128)
265 return FPTOSINT_F80_I128;
266 } else if (OpVT == MVT::f128) {
267 if (RetVT == MVT::i32)
268 return FPTOSINT_F128_I32;
269 if (RetVT == MVT::i64)
270 return FPTOSINT_F128_I64;
271 if (RetVT == MVT::i128)
272 return FPTOSINT_F128_I128;
273 } else if (OpVT == MVT::ppcf128) {
274 if (RetVT == MVT::i32)
275 return FPTOSINT_PPCF128_I32;
276 if (RetVT == MVT::i64)
277 return FPTOSINT_PPCF128_I64;
278 if (RetVT == MVT::i128)
279 return FPTOSINT_PPCF128_I128;
280 }
281 return UNKNOWN_LIBCALL;
282}
283
284/// getFPTOUINT - Return the FPTOUINT_*_* value for the given types, or
285/// UNKNOWN_LIBCALL if there is none.
286RTLIB::Libcall RTLIB::getFPTOUINT(EVT OpVT, EVT RetVT) {
287 if (OpVT == MVT::f32) {
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000288 if (RetVT == MVT::i32)
289 return FPTOUINT_F32_I32;
290 if (RetVT == MVT::i64)
291 return FPTOUINT_F32_I64;
292 if (RetVT == MVT::i128)
293 return FPTOUINT_F32_I128;
294 } else if (OpVT == MVT::f64) {
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000295 if (RetVT == MVT::i32)
296 return FPTOUINT_F64_I32;
297 if (RetVT == MVT::i64)
298 return FPTOUINT_F64_I64;
299 if (RetVT == MVT::i128)
300 return FPTOUINT_F64_I128;
301 } else if (OpVT == MVT::f80) {
302 if (RetVT == MVT::i32)
303 return FPTOUINT_F80_I32;
304 if (RetVT == MVT::i64)
305 return FPTOUINT_F80_I64;
306 if (RetVT == MVT::i128)
307 return FPTOUINT_F80_I128;
308 } else if (OpVT == MVT::f128) {
309 if (RetVT == MVT::i32)
310 return FPTOUINT_F128_I32;
311 if (RetVT == MVT::i64)
312 return FPTOUINT_F128_I64;
313 if (RetVT == MVT::i128)
314 return FPTOUINT_F128_I128;
315 } else if (OpVT == MVT::ppcf128) {
316 if (RetVT == MVT::i32)
317 return FPTOUINT_PPCF128_I32;
318 if (RetVT == MVT::i64)
319 return FPTOUINT_PPCF128_I64;
320 if (RetVT == MVT::i128)
321 return FPTOUINT_PPCF128_I128;
322 }
323 return UNKNOWN_LIBCALL;
324}
325
326/// getSINTTOFP - Return the SINTTOFP_*_* value for the given types, or
327/// UNKNOWN_LIBCALL if there is none.
328RTLIB::Libcall RTLIB::getSINTTOFP(EVT OpVT, EVT RetVT) {
329 if (OpVT == MVT::i32) {
330 if (RetVT == MVT::f32)
331 return SINTTOFP_I32_F32;
332 if (RetVT == MVT::f64)
333 return SINTTOFP_I32_F64;
334 if (RetVT == MVT::f80)
335 return SINTTOFP_I32_F80;
336 if (RetVT == MVT::f128)
337 return SINTTOFP_I32_F128;
338 if (RetVT == MVT::ppcf128)
339 return SINTTOFP_I32_PPCF128;
340 } else if (OpVT == MVT::i64) {
341 if (RetVT == MVT::f32)
342 return SINTTOFP_I64_F32;
343 if (RetVT == MVT::f64)
344 return SINTTOFP_I64_F64;
345 if (RetVT == MVT::f80)
346 return SINTTOFP_I64_F80;
347 if (RetVT == MVT::f128)
348 return SINTTOFP_I64_F128;
349 if (RetVT == MVT::ppcf128)
350 return SINTTOFP_I64_PPCF128;
351 } else if (OpVT == MVT::i128) {
352 if (RetVT == MVT::f32)
353 return SINTTOFP_I128_F32;
354 if (RetVT == MVT::f64)
355 return SINTTOFP_I128_F64;
356 if (RetVT == MVT::f80)
357 return SINTTOFP_I128_F80;
358 if (RetVT == MVT::f128)
359 return SINTTOFP_I128_F128;
360 if (RetVT == MVT::ppcf128)
361 return SINTTOFP_I128_PPCF128;
362 }
363 return UNKNOWN_LIBCALL;
364}
365
366/// getUINTTOFP - Return the UINTTOFP_*_* value for the given types, or
367/// UNKNOWN_LIBCALL if there is none.
368RTLIB::Libcall RTLIB::getUINTTOFP(EVT OpVT, EVT RetVT) {
369 if (OpVT == MVT::i32) {
370 if (RetVT == MVT::f32)
371 return UINTTOFP_I32_F32;
372 if (RetVT == MVT::f64)
373 return UINTTOFP_I32_F64;
374 if (RetVT == MVT::f80)
375 return UINTTOFP_I32_F80;
376 if (RetVT == MVT::f128)
377 return UINTTOFP_I32_F128;
378 if (RetVT == MVT::ppcf128)
379 return UINTTOFP_I32_PPCF128;
380 } else if (OpVT == MVT::i64) {
381 if (RetVT == MVT::f32)
382 return UINTTOFP_I64_F32;
383 if (RetVT == MVT::f64)
384 return UINTTOFP_I64_F64;
385 if (RetVT == MVT::f80)
386 return UINTTOFP_I64_F80;
387 if (RetVT == MVT::f128)
388 return UINTTOFP_I64_F128;
389 if (RetVT == MVT::ppcf128)
390 return UINTTOFP_I64_PPCF128;
391 } else if (OpVT == MVT::i128) {
392 if (RetVT == MVT::f32)
393 return UINTTOFP_I128_F32;
394 if (RetVT == MVT::f64)
395 return UINTTOFP_I128_F64;
396 if (RetVT == MVT::f80)
397 return UINTTOFP_I128_F80;
398 if (RetVT == MVT::f128)
399 return UINTTOFP_I128_F128;
400 if (RetVT == MVT::ppcf128)
401 return UINTTOFP_I128_PPCF128;
402 }
403 return UNKNOWN_LIBCALL;
404}
405
James Y Knightceb61bf2016-03-16 22:12:04 +0000406RTLIB::Libcall RTLIB::getSYNC(unsigned Opc, MVT VT) {
Benjamin Kramerf74b5c62015-03-05 20:04:29 +0000407#define OP_TO_LIBCALL(Name, Enum) \
408 case Name: \
409 switch (VT.SimpleTy) { \
410 default: \
411 return UNKNOWN_LIBCALL; \
412 case MVT::i8: \
413 return Enum##_1; \
414 case MVT::i16: \
415 return Enum##_2; \
416 case MVT::i32: \
417 return Enum##_4; \
418 case MVT::i64: \
419 return Enum##_8; \
420 case MVT::i128: \
421 return Enum##_16; \
422 }
423
424 switch (Opc) {
425 OP_TO_LIBCALL(ISD::ATOMIC_SWAP, SYNC_LOCK_TEST_AND_SET)
426 OP_TO_LIBCALL(ISD::ATOMIC_CMP_SWAP, SYNC_VAL_COMPARE_AND_SWAP)
427 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_ADD, SYNC_FETCH_AND_ADD)
428 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_SUB, SYNC_FETCH_AND_SUB)
429 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_AND, SYNC_FETCH_AND_AND)
430 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_OR, SYNC_FETCH_AND_OR)
431 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_XOR, SYNC_FETCH_AND_XOR)
432 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_NAND, SYNC_FETCH_AND_NAND)
433 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_MAX, SYNC_FETCH_AND_MAX)
434 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_UMAX, SYNC_FETCH_AND_UMAX)
435 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_MIN, SYNC_FETCH_AND_MIN)
436 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_UMIN, SYNC_FETCH_AND_UMIN)
437 }
438
439#undef OP_TO_LIBCALL
440
441 return UNKNOWN_LIBCALL;
442}
443
Daniel Neilson470c6952017-06-16 14:43:59 +0000444RTLIB::Libcall RTLIB::getMEMCPY_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
Igor Laevskyf7551532016-12-29 14:31:07 +0000445 switch (ElementSize) {
446 case 1:
Daniel Neilson470c6952017-06-16 14:43:59 +0000447 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_1;
Igor Laevskyf7551532016-12-29 14:31:07 +0000448 case 2:
Daniel Neilson470c6952017-06-16 14:43:59 +0000449 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_2;
Igor Laevskyf7551532016-12-29 14:31:07 +0000450 case 4:
Daniel Neilson470c6952017-06-16 14:43:59 +0000451 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_4;
Igor Laevskyf7551532016-12-29 14:31:07 +0000452 case 8:
Daniel Neilson470c6952017-06-16 14:43:59 +0000453 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_8;
Igor Laevskyf7551532016-12-29 14:31:07 +0000454 case 16:
Daniel Neilson470c6952017-06-16 14:43:59 +0000455 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_16;
Igor Laevskyf7551532016-12-29 14:31:07 +0000456 default:
457 return UNKNOWN_LIBCALL;
458 }
Igor Laevskyf7551532016-12-29 14:31:07 +0000459}
460
Daniel Neilsonc96acc52017-07-12 15:25:26 +0000461RTLIB::Libcall RTLIB::getMEMMOVE_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
462 switch (ElementSize) {
463 case 1:
464 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_1;
465 case 2:
466 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_2;
467 case 4:
468 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_4;
469 case 8:
470 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_8;
471 case 16:
472 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_16;
473 default:
474 return UNKNOWN_LIBCALL;
475 }
476}
477
Daniel Neilsona06b0912017-07-12 21:57:23 +0000478RTLIB::Libcall RTLIB::getMEMSET_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
479 switch (ElementSize) {
480 case 1:
481 return MEMSET_ELEMENT_UNORDERED_ATOMIC_1;
482 case 2:
483 return MEMSET_ELEMENT_UNORDERED_ATOMIC_2;
484 case 4:
485 return MEMSET_ELEMENT_UNORDERED_ATOMIC_4;
486 case 8:
487 return MEMSET_ELEMENT_UNORDERED_ATOMIC_8;
488 case 16:
489 return MEMSET_ELEMENT_UNORDERED_ATOMIC_16;
490 default:
491 return UNKNOWN_LIBCALL;
492 }
493}
494
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000495/// InitCmpLibcallCCs - Set default comparison libcall CC.
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000496static void InitCmpLibcallCCs(ISD::CondCode *CCs) {
497 memset(CCs, ISD::SETCC_INVALID, sizeof(ISD::CondCode)*RTLIB::UNKNOWN_LIBCALL);
498 CCs[RTLIB::OEQ_F32] = ISD::SETEQ;
499 CCs[RTLIB::OEQ_F64] = ISD::SETEQ;
500 CCs[RTLIB::OEQ_F128] = ISD::SETEQ;
Petar Jovanovic8ed05262016-02-04 14:43:50 +0000501 CCs[RTLIB::OEQ_PPCF128] = ISD::SETEQ;
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000502 CCs[RTLIB::UNE_F32] = ISD::SETNE;
503 CCs[RTLIB::UNE_F64] = ISD::SETNE;
504 CCs[RTLIB::UNE_F128] = ISD::SETNE;
Petar Jovanovic8ed05262016-02-04 14:43:50 +0000505 CCs[RTLIB::UNE_PPCF128] = ISD::SETNE;
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000506 CCs[RTLIB::OGE_F32] = ISD::SETGE;
507 CCs[RTLIB::OGE_F64] = ISD::SETGE;
508 CCs[RTLIB::OGE_F128] = ISD::SETGE;
Petar Jovanovic8ed05262016-02-04 14:43:50 +0000509 CCs[RTLIB::OGE_PPCF128] = ISD::SETGE;
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000510 CCs[RTLIB::OLT_F32] = ISD::SETLT;
511 CCs[RTLIB::OLT_F64] = ISD::SETLT;
512 CCs[RTLIB::OLT_F128] = ISD::SETLT;
Petar Jovanovic8ed05262016-02-04 14:43:50 +0000513 CCs[RTLIB::OLT_PPCF128] = ISD::SETLT;
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000514 CCs[RTLIB::OLE_F32] = ISD::SETLE;
515 CCs[RTLIB::OLE_F64] = ISD::SETLE;
516 CCs[RTLIB::OLE_F128] = ISD::SETLE;
Petar Jovanovic8ed05262016-02-04 14:43:50 +0000517 CCs[RTLIB::OLE_PPCF128] = ISD::SETLE;
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000518 CCs[RTLIB::OGT_F32] = ISD::SETGT;
519 CCs[RTLIB::OGT_F64] = ISD::SETGT;
520 CCs[RTLIB::OGT_F128] = ISD::SETGT;
Petar Jovanovic8ed05262016-02-04 14:43:50 +0000521 CCs[RTLIB::OGT_PPCF128] = ISD::SETGT;
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000522 CCs[RTLIB::UO_F32] = ISD::SETNE;
523 CCs[RTLIB::UO_F64] = ISD::SETNE;
524 CCs[RTLIB::UO_F128] = ISD::SETNE;
Petar Jovanovic8ed05262016-02-04 14:43:50 +0000525 CCs[RTLIB::UO_PPCF128] = ISD::SETNE;
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000526 CCs[RTLIB::O_F32] = ISD::SETEQ;
527 CCs[RTLIB::O_F64] = ISD::SETEQ;
528 CCs[RTLIB::O_F128] = ISD::SETEQ;
Petar Jovanovic8ed05262016-02-04 14:43:50 +0000529 CCs[RTLIB::O_PPCF128] = ISD::SETEQ;
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000530}
531
Aditya Nandakumar365df402014-11-13 21:29:21 +0000532/// NOTE: The TargetMachine owns TLOF.
Mehdi Amini529919f2015-03-10 02:37:25 +0000533TargetLoweringBase::TargetLoweringBase(const TargetMachine &tm) : TM(tm) {
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000534 initActions();
535
536 // Perform these initializations only once.
Zaara Syeda682f92f2017-05-31 17:12:38 +0000537 MaxStoresPerMemset = MaxStoresPerMemcpy = MaxStoresPerMemmove =
538 MaxLoadsPerMemcmp = 8;
Sirish Pandef9deb982018-05-16 15:36:52 +0000539 MaxGluedStoresPerMemcpy = 0;
Zaara Syeda682f92f2017-05-31 17:12:38 +0000540 MaxStoresPerMemsetOptSize = MaxStoresPerMemcpyOptSize =
541 MaxStoresPerMemmoveOptSize = MaxLoadsPerMemcmpOptSize = 4;
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000542 UseUnderscoreSetJmp = false;
543 UseUnderscoreLongJmp = false;
Hal Finkelac8ba0c2014-01-02 21:13:43 +0000544 HasMultipleConditionRegisters = false;
Yi Jiang32eba652014-04-21 22:22:44 +0000545 HasExtractBitsInsn = false;
Sanjay Patel74724562015-07-01 18:10:20 +0000546 JumpIsExpensive = JumpIsExpensiveOverride;
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000547 PredictableSelectIsExpensive = false;
Quentin Colombet1e2604d2014-12-17 01:36:17 +0000548 EnableExtLdPromotion = false;
Pedro Artigasef6ddcf2014-08-08 16:46:53 +0000549 HasFloatingPointExceptions = true;
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000550 StackPointerRegisterToSaveRestore = 0;
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000551 BooleanContents = UndefinedBooleanContent;
Daniel Sandersb0b31612014-07-10 10:18:12 +0000552 BooleanFloatContents = UndefinedBooleanContent;
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000553 BooleanVectorContents = UndefinedBooleanContent;
554 SchedPreferenceInfo = Sched::ILP;
555 JumpBufSize = 0;
556 JumpBufAlignment = 0;
557 MinFunctionAlignment = 0;
558 PrefFunctionAlignment = 0;
559 PrefLoopAlignment = 0;
Nirav Dave3bbf3942017-03-14 00:34:14 +0000560 GatherAllAliasesMaxDepth = 18;
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000561 MinStackArgumentAlignment = 1;
James Y Knight238d8192016-04-12 20:18:48 +0000562 // TODO: the default will be switched to 0 in the next commit, along
563 // with the Target-specific changes necessary.
564 MaxAtomicSizeInBitsSupported = 1024;
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000565
James Y Knight8d305022016-06-17 18:11:48 +0000566 MinCmpXchgSizeInBits = 0;
Dylan McKay68063cf2017-12-09 06:45:36 +0000567 SupportsUnalignedAtomics = false;
James Y Knight8d305022016-06-17 18:11:48 +0000568
James Y Knight2a29a672016-04-12 22:32:47 +0000569 std::fill(std::begin(LibcallRoutineNames), std::end(LibcallRoutineNames), nullptr);
570
Matthias Braun4f43d6f2017-12-18 23:19:42 +0000571 InitLibcalls(TM.getTargetTriple());
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000572 InitCmpLibcallCCs(CmpLibcallCCs);
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000573}
574
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000575void TargetLoweringBase::initActions() {
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000576 // All operations default to being supported.
577 memset(OpActions, 0, sizeof(OpActions));
578 memset(LoadExtActions, 0, sizeof(LoadExtActions));
579 memset(TruncStoreActions, 0, sizeof(TruncStoreActions));
580 memset(IndexedModeActions, 0, sizeof(IndexedModeActions));
581 memset(CondCodeActions, 0, sizeof(CondCodeActions));
Craig Topperb033fbe2016-04-08 07:10:46 +0000582 std::fill(std::begin(RegClassForVT), std::end(RegClassForVT), nullptr);
583 std::fill(std::begin(TargetDAGCombineArray),
584 std::end(TargetDAGCombineArray), 0);
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000585
586 // Set default actions for various operations.
Ahmed Bougacha80657382015-01-07 21:27:10 +0000587 for (MVT VT : MVT::all_valuetypes()) {
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000588 // Default all indexed load / store to expand.
589 for (unsigned IM = (unsigned)ISD::PRE_INC;
590 IM != (unsigned)ISD::LAST_INDEXED_MODE; ++IM) {
Ahmed Bougacha80657382015-01-07 21:27:10 +0000591 setIndexedLoadAction(IM, VT, Expand);
592 setIndexedStoreAction(IM, VT, Expand);
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000593 }
594
Tim Northover8f2a85e2014-06-13 14:24:07 +0000595 // Most backends expect to see the node which just returns the value loaded.
Ahmed Bougacha80657382015-01-07 21:27:10 +0000596 setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, VT, Expand);
Tim Northover8f2a85e2014-06-13 14:24:07 +0000597
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000598 // These operations default to expand.
Ahmed Bougacha80657382015-01-07 21:27:10 +0000599 setOperationAction(ISD::FGETSIGN, VT, Expand);
600 setOperationAction(ISD::CONCAT_VECTORS, VT, Expand);
601 setOperationAction(ISD::FMINNUM, VT, Expand);
602 setOperationAction(ISD::FMAXNUM, VT, Expand);
Matt Arsenaultc0db9a72018-10-22 16:27:27 +0000603 setOperationAction(ISD::FMINNUM_IEEE, VT, Expand);
604 setOperationAction(ISD::FMAXNUM_IEEE, VT, Expand);
Thomas Livelybbc2ea92018-10-24 22:49:55 +0000605 setOperationAction(ISD::FMINIMUM, VT, Expand);
606 setOperationAction(ISD::FMAXIMUM, VT, Expand);
Matt Arsenault4bacfe22015-02-20 22:10:33 +0000607 setOperationAction(ISD::FMAD, VT, Expand);
James Molloy4fa71b62015-05-15 09:03:15 +0000608 setOperationAction(ISD::SMIN, VT, Expand);
609 setOperationAction(ISD::SMAX, VT, Expand);
610 setOperationAction(ISD::UMIN, VT, Expand);
611 setOperationAction(ISD::UMAX, VT, Expand);
Simon Pilgrime35265b2017-03-14 21:26:58 +0000612 setOperationAction(ISD::ABS, VT, Expand);
Simon Pilgrim67f47572018-12-05 11:12:12 +0000613 setOperationAction(ISD::FSHL, VT, Expand);
614 setOperationAction(ISD::FSHR, VT, Expand);
Leonard Chanb325eb12018-10-16 17:35:41 +0000615 setOperationAction(ISD::SADDSAT, VT, Expand);
Leonard Chan152aae52018-10-22 23:08:40 +0000616 setOperationAction(ISD::UADDSAT, VT, Expand);
Leonard Chan5aeb36f2018-10-29 16:54:37 +0000617 setOperationAction(ISD::SSUBSAT, VT, Expand);
618 setOperationAction(ISD::USUBSAT, VT, Expand);
Leonard Chan8e3fdeb2018-12-12 06:29:14 +0000619 setOperationAction(ISD::SMULFIX, VT, Expand);
Hal Finkel3d7f79a2013-08-09 04:13:44 +0000620
Jan Vesely42eeb1d2015-04-29 16:30:46 +0000621 // Overflow operations default to expand
622 setOperationAction(ISD::SADDO, VT, Expand);
623 setOperationAction(ISD::SSUBO, VT, Expand);
624 setOperationAction(ISD::UADDO, VT, Expand);
625 setOperationAction(ISD::USUBO, VT, Expand);
626 setOperationAction(ISD::SMULO, VT, Expand);
627 setOperationAction(ISD::UMULO, VT, Expand);
Hal Finkel15c5be12015-12-11 23:11:52 +0000628
Amaury Sechetbcb98162017-04-30 19:24:09 +0000629 // ADDCARRY operations default to expand
630 setOperationAction(ISD::ADDCARRY, VT, Expand);
631 setOperationAction(ISD::SUBCARRY, VT, Expand);
Amaury Sechet0247f742017-06-01 11:14:17 +0000632 setOperationAction(ISD::SETCCCARRY, VT, Expand);
Amaury Sechetbcb98162017-04-30 19:24:09 +0000633
Amaury Sechet876db102018-06-01 13:21:33 +0000634 // ADDC/ADDE/SUBC/SUBE default to expand.
635 setOperationAction(ISD::ADDC, VT, Expand);
636 setOperationAction(ISD::ADDE, VT, Expand);
637 setOperationAction(ISD::SUBC, VT, Expand);
638 setOperationAction(ISD::SUBE, VT, Expand);
639
Craig Topper4366cdb2016-04-28 03:34:31 +0000640 // These default to Expand so they will be expanded to CTLZ/CTTZ by default.
641 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
642 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
643
James Molloyfdd6e1b2015-11-12 12:29:09 +0000644 setOperationAction(ISD::BITREVERSE, VT, Expand);
Fangrui Songaf7b1832018-07-30 19:41:25 +0000645
Hal Finkel3d7f79a2013-08-09 04:13:44 +0000646 // These library functions default to expand.
Ahmed Bougacha80657382015-01-07 21:27:10 +0000647 setOperationAction(ISD::FROUND, VT, Expand);
Craig Topper384602a2017-05-30 15:27:55 +0000648 setOperationAction(ISD::FPOWI, VT, Expand);
Hal Finkel66d1fa62013-08-19 23:35:46 +0000649
650 // These operations default to expand for vector types.
Ahmed Bougacha80657382015-01-07 21:27:10 +0000651 if (VT.isVector()) {
652 setOperationAction(ISD::FCOPYSIGN, VT, Expand);
653 setOperationAction(ISD::ANY_EXTEND_VECTOR_INREG, VT, Expand);
654 setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, VT, Expand);
655 setOperationAction(ISD::ZERO_EXTEND_VECTOR_INREG, VT, Expand);
Chandler Carruth515f2282014-07-09 22:53:04 +0000656 }
Yury Gribov2fdb3b82015-12-01 11:40:55 +0000657
Etienne Bergeron70cf01c2016-06-07 20:15:35 +0000658 // For most targets @llvm.get.dynamic.area.offset just returns 0.
Yury Gribov2fdb3b82015-12-01 11:40:55 +0000659 setOperationAction(ISD::GET_DYNAMIC_AREA_OFFSET, VT, Expand);
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000660 }
661
662 // Most targets ignore the @llvm.prefetch intrinsic.
663 setOperationAction(ISD::PREFETCH, MVT::Other, Expand);
664
Ahmed Bougacha5edf06b2015-08-28 01:49:59 +0000665 // Most targets also ignore the @llvm.readcyclecounter intrinsic.
666 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Expand);
667
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000668 // ConstantFP nodes default to expand. Targets can either change this to
669 // Legal, in which case all fp constants are legal, or use isFPImmLegal()
670 // to optimize expansions for certain constants.
671 setOperationAction(ISD::ConstantFP, MVT::f16, Expand);
672 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
673 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
674 setOperationAction(ISD::ConstantFP, MVT::f80, Expand);
675 setOperationAction(ISD::ConstantFP, MVT::f128, Expand);
676
677 // These library functions default to expand.
Ahmed Bougachaaff96c92015-03-26 23:21:03 +0000678 for (MVT VT : {MVT::f32, MVT::f64, MVT::f128}) {
Sanjay Patel9d4952d2018-09-16 16:50:26 +0000679 setOperationAction(ISD::FCBRT, VT, Expand);
Ahmed Bougachaaff96c92015-03-26 23:21:03 +0000680 setOperationAction(ISD::FLOG , VT, Expand);
681 setOperationAction(ISD::FLOG2, VT, Expand);
682 setOperationAction(ISD::FLOG10, VT, Expand);
683 setOperationAction(ISD::FEXP , VT, Expand);
684 setOperationAction(ISD::FEXP2, VT, Expand);
685 setOperationAction(ISD::FFLOOR, VT, Expand);
Ahmed Bougachaaff96c92015-03-26 23:21:03 +0000686 setOperationAction(ISD::FNEARBYINT, VT, Expand);
687 setOperationAction(ISD::FCEIL, VT, Expand);
688 setOperationAction(ISD::FRINT, VT, Expand);
689 setOperationAction(ISD::FTRUNC, VT, Expand);
690 setOperationAction(ISD::FROUND, VT, Expand);
691 }
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000692
693 // Default ISD::TRAP to expand (which turns it into abort).
694 setOperationAction(ISD::TRAP, MVT::Other, Expand);
695
696 // On most systems, DEBUGTRAP and TRAP have no difference. The "Expand"
697 // here is to inform DAG Legalizer to replace DEBUGTRAP with TRAP.
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000698 setOperationAction(ISD::DEBUGTRAP, MVT::Other, Expand);
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000699}
700
Mehdi Aminicdc323b2015-07-09 15:12:23 +0000701MVT TargetLoweringBase::getScalarShiftAmountTy(const DataLayout &DL,
702 EVT) const {
Mehdi Amini29a2d862015-07-09 02:09:20 +0000703 return MVT::getIntegerVT(8 * DL.getPointerSize(0));
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000704}
705
Craig Topperbff64492018-02-20 17:41:05 +0000706EVT TargetLoweringBase::getShiftAmountTy(EVT LHSTy, const DataLayout &DL,
707 bool LegalTypes) const {
Michael Liaoa6b20ce2013-03-01 18:40:30 +0000708 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
709 if (LHSTy.isVector())
710 return LHSTy;
Craig Topperbff64492018-02-20 17:41:05 +0000711 return LegalTypes ? getScalarShiftAmountTy(DL, LHSTy)
712 : getPointerTy(DL);
Michael Liaoa6b20ce2013-03-01 18:40:30 +0000713}
714
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000715bool TargetLoweringBase::canOpTrap(unsigned Op, EVT VT) const {
716 assert(isTypeLegal(VT));
717 switch (Op) {
718 default:
719 return false;
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000720 case ISD::SDIV:
721 case ISD::UDIV:
722 case ISD::SREM:
723 case ISD::UREM:
724 return true;
725 }
726}
727
Sanjay Patel74724562015-07-01 18:10:20 +0000728void TargetLoweringBase::setJumpIsExpensive(bool isExpensive) {
729 // If the command-line option was specified, ignore this request.
730 if (!JumpIsExpensiveOverride.getNumOccurrences())
731 JumpIsExpensive = isExpensive;
732}
733
Eric Christopherb97b8922015-02-25 22:41:30 +0000734TargetLoweringBase::LegalizeKind
735TargetLoweringBase::getTypeConversion(LLVMContext &Context, EVT VT) const {
736 // If this is a simple type, use the ComputeRegisterProp mechanism.
737 if (VT.isSimple()) {
738 MVT SVT = VT.getSimpleVT();
739 assert((unsigned)SVT.SimpleTy < array_lengthof(TransformToType));
740 MVT NVT = TransformToType[SVT.SimpleTy];
741 LegalizeTypeAction LA = ValueTypeActions.getTypeAction(SVT);
742
743 assert((LA == TypeLegal || LA == TypeSoftenFloat ||
744 ValueTypeActions.getTypeAction(NVT) != TypePromoteInteger) &&
745 "Promote may not follow Expand or Promote");
746
747 if (LA == TypeSplitVector)
748 return LegalizeKind(LA,
749 EVT::getVectorVT(Context, SVT.getVectorElementType(),
750 SVT.getVectorNumElements() / 2));
751 if (LA == TypeScalarizeVector)
752 return LegalizeKind(LA, SVT.getVectorElementType());
753 return LegalizeKind(LA, NVT);
754 }
755
756 // Handle Extended Scalar Types.
757 if (!VT.isVector()) {
758 assert(VT.isInteger() && "Float types must be simple");
759 unsigned BitSize = VT.getSizeInBits();
760 // First promote to a power-of-two size, then expand if necessary.
761 if (BitSize < 8 || !isPowerOf2_32(BitSize)) {
762 EVT NVT = VT.getRoundIntegerType(Context);
763 assert(NVT != VT && "Unable to round integer VT");
764 LegalizeKind NextStep = getTypeConversion(Context, NVT);
765 // Avoid multi-step promotion.
766 if (NextStep.first == TypePromoteInteger)
767 return NextStep;
768 // Return rounded integer type.
769 return LegalizeKind(TypePromoteInteger, NVT);
770 }
771
772 return LegalizeKind(TypeExpandInteger,
773 EVT::getIntegerVT(Context, VT.getSizeInBits() / 2));
774 }
775
776 // Handle vector types.
777 unsigned NumElts = VT.getVectorNumElements();
778 EVT EltVT = VT.getVectorElementType();
779
780 // Vectors with only one element are always scalarized.
781 if (NumElts == 1)
782 return LegalizeKind(TypeScalarizeVector, EltVT);
783
784 // Try to widen vector elements until the element type is a power of two and
785 // promote it to a legal type later on, for example:
786 // <3 x i8> -> <4 x i8> -> <4 x i32>
787 if (EltVT.isInteger()) {
788 // Vectors with a number of elements that is not a power of two are always
789 // widened, for example <3 x i8> -> <4 x i8>.
790 if (!VT.isPow2VectorType()) {
791 NumElts = (unsigned)NextPowerOf2(NumElts);
792 EVT NVT = EVT::getVectorVT(Context, EltVT, NumElts);
793 return LegalizeKind(TypeWidenVector, NVT);
794 }
795
796 // Examine the element type.
797 LegalizeKind LK = getTypeConversion(Context, EltVT);
798
799 // If type is to be expanded, split the vector.
800 // <4 x i140> -> <2 x i140>
801 if (LK.first == TypeExpandInteger)
802 return LegalizeKind(TypeSplitVector,
803 EVT::getVectorVT(Context, EltVT, NumElts / 2));
804
805 // Promote the integer element types until a legal vector type is found
806 // or until the element integer type is too big. If a legal type was not
807 // found, fallback to the usual mechanism of widening/splitting the
808 // vector.
809 EVT OldEltVT = EltVT;
Eugene Zelenko79ea5b52017-09-21 23:20:16 +0000810 while (true) {
Eric Christopherb97b8922015-02-25 22:41:30 +0000811 // Increase the bitwidth of the element to the next pow-of-two
812 // (which is greater than 8 bits).
813 EltVT = EVT::getIntegerVT(Context, 1 + EltVT.getSizeInBits())
814 .getRoundIntegerType(Context);
815
816 // Stop trying when getting a non-simple element type.
817 // Note that vector elements may be greater than legal vector element
818 // types. Example: X86 XMM registers hold 64bit element on 32bit
819 // systems.
820 if (!EltVT.isSimple())
821 break;
822
823 // Build a new vector type and check if it is legal.
824 MVT NVT = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
825 // Found a legal promoted vector type.
826 if (NVT != MVT() && ValueTypeActions.getTypeAction(NVT) == TypeLegal)
827 return LegalizeKind(TypePromoteInteger,
828 EVT::getVectorVT(Context, EltVT, NumElts));
829 }
830
831 // Reset the type to the unexpanded type if we did not find a legal vector
832 // type with a promoted vector element type.
833 EltVT = OldEltVT;
834 }
835
836 // Try to widen the vector until a legal type is found.
837 // If there is no wider legal type, split the vector.
Eugene Zelenko79ea5b52017-09-21 23:20:16 +0000838 while (true) {
Eric Christopherb97b8922015-02-25 22:41:30 +0000839 // Round up to the next power of 2.
840 NumElts = (unsigned)NextPowerOf2(NumElts);
841
842 // If there is no simple vector type with this many elements then there
843 // cannot be a larger legal vector type. Note that this assumes that
844 // there are no skipped intermediate vector types in the simple types.
845 if (!EltVT.isSimple())
846 break;
847 MVT LargerVector = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
848 if (LargerVector == MVT())
849 break;
850
851 // If this type is legal then widen the vector.
852 if (ValueTypeActions.getTypeAction(LargerVector) == TypeLegal)
853 return LegalizeKind(TypeWidenVector, LargerVector);
854 }
855
856 // Widen odd vectors to next power of two.
857 if (!VT.isPow2VectorType()) {
858 EVT NVT = VT.getPow2VectorType(Context);
859 return LegalizeKind(TypeWidenVector, NVT);
860 }
861
862 // Vectors with illegal element types are expanded.
863 EVT NVT = EVT::getVectorVT(Context, EltVT, VT.getVectorNumElements() / 2);
864 return LegalizeKind(TypeSplitVector, NVT);
865}
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000866
867static unsigned getVectorTypeBreakdownMVT(MVT VT, MVT &IntermediateVT,
868 unsigned &NumIntermediates,
869 MVT &RegisterVT,
870 TargetLoweringBase *TLI) {
871 // Figure out the right, legal destination reg to copy into.
872 unsigned NumElts = VT.getVectorNumElements();
873 MVT EltTy = VT.getVectorElementType();
874
875 unsigned NumVectorRegs = 1;
876
877 // FIXME: We don't support non-power-of-2-sized vectors for now. Ideally we
878 // could break down into LHS/RHS like LegalizeDAG does.
879 if (!isPowerOf2_32(NumElts)) {
880 NumVectorRegs = NumElts;
881 NumElts = 1;
882 }
883
884 // Divide the input until we get to a supported size. This will always
885 // end with a scalar if the target doesn't support vectors.
886 while (NumElts > 1 && !TLI->isTypeLegal(MVT::getVectorVT(EltTy, NumElts))) {
887 NumElts >>= 1;
888 NumVectorRegs <<= 1;
889 }
890
891 NumIntermediates = NumVectorRegs;
892
893 MVT NewVT = MVT::getVectorVT(EltTy, NumElts);
894 if (!TLI->isTypeLegal(NewVT))
895 NewVT = EltTy;
896 IntermediateVT = NewVT;
897
898 unsigned NewVTSize = NewVT.getSizeInBits();
899
900 // Convert sizes such as i33 to i64.
901 if (!isPowerOf2_32(NewVTSize))
902 NewVTSize = NextPowerOf2(NewVTSize);
903
904 MVT DestVT = TLI->getRegisterType(NewVT);
905 RegisterVT = DestVT;
906 if (EVT(DestVT).bitsLT(NewVT)) // Value is expanded, e.g. i64 -> i16.
907 return NumVectorRegs*(NewVTSize/DestVT.getSizeInBits());
908
909 // Otherwise, promotion or legal types use the same number of registers as
910 // the vector decimated to the appropriate level.
911 return NumVectorRegs;
912}
913
914/// isLegalRC - Return true if the value types that can be represented by the
915/// specified register class are all legal.
Krzysztof Parzyszekf3b0bf32017-04-24 19:51:12 +0000916bool TargetLoweringBase::isLegalRC(const TargetRegisterInfo &TRI,
917 const TargetRegisterClass &RC) const {
918 for (auto I = TRI.legalclasstypes_begin(RC); *I != MVT::Other; ++I)
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000919 if (isTypeLegal(*I))
920 return true;
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000921 return false;
922}
923
Lang Hames1cbca512013-11-29 03:07:54 +0000924/// Replace/modify any TargetFrameIndex operands with a targte-dependent
925/// sequence of memory operands that is recognized by PrologEpilogInserter.
Duncan P. N. Exon Smitha204da22016-06-30 22:52:52 +0000926MachineBasicBlock *
927TargetLoweringBase::emitPatchPoint(MachineInstr &InitialMI,
Lang Hames1cbca512013-11-29 03:07:54 +0000928 MachineBasicBlock *MBB) const {
Duncan P. N. Exon Smitha204da22016-06-30 22:52:52 +0000929 MachineInstr *MI = &InitialMI;
Justin Bogner1842f4a2017-10-10 23:50:49 +0000930 MachineFunction &MF = *MI->getMF();
Matthias Braunf79c57a2016-07-28 18:40:00 +0000931 MachineFrameInfo &MFI = MF.getFrameInfo();
Philip Reamesda801212015-12-23 23:44:28 +0000932
933 // We're handling multiple types of operands here:
934 // PATCHPOINT MetaArgs - live-in, read only, direct
935 // STATEPOINT Deopt Spill - live-through, read only, indirect
936 // STATEPOINT Deopt Alloca - live-through, read only, direct
937 // (We're currently conservative and mark the deopt slots read/write in
Fangrui Songaf7b1832018-07-30 19:41:25 +0000938 // practice.)
Philip Reamesda801212015-12-23 23:44:28 +0000939 // STATEPOINT GC Spill - live-through, read/write, indirect
940 // STATEPOINT GC Alloca - live-through, read/write, direct
941 // The live-in vs live-through is handled already (the live through ones are
942 // all stack slots), but we need to handle the different type of stackmap
943 // operands and memory effects here.
Lang Hames1cbca512013-11-29 03:07:54 +0000944
945 // MI changes inside this loop as we grow operands.
946 for(unsigned OperIdx = 0; OperIdx != MI->getNumOperands(); ++OperIdx) {
947 MachineOperand &MO = MI->getOperand(OperIdx);
948 if (!MO.isFI())
949 continue;
950
951 // foldMemoryOperand builds a new MI after replacing a single FI operand
952 // with the canonical set of five x86 addressing-mode operands.
953 int FI = MO.getIndex();
954 MachineInstrBuilder MIB = BuildMI(MF, MI->getDebugLoc(), MI->getDesc());
955
956 // Copy operands before the frame-index.
957 for (unsigned i = 0; i < OperIdx; ++i)
Diana Picus8a478102017-01-13 09:58:52 +0000958 MIB.add(MI->getOperand(i));
Philip Reamesda801212015-12-23 23:44:28 +0000959 // Add frame index operands recognized by stackmaps.cpp
960 if (MFI.isStatepointSpillSlotObjectIndex(FI)) {
961 // indirect-mem-ref tag, size, #FI, offset.
962 // Used for spills inserted by StatepointLowering. This codepath is not
963 // used for patchpoints/stackmaps at all, for these spilling is done via
964 // foldMemoryOperand callback only.
965 assert(MI->getOpcode() == TargetOpcode::STATEPOINT && "sanity");
966 MIB.addImm(StackMaps::IndirectMemRefOp);
967 MIB.addImm(MFI.getObjectSize(FI));
Diana Picus8a478102017-01-13 09:58:52 +0000968 MIB.add(MI->getOperand(OperIdx));
Philip Reamesda801212015-12-23 23:44:28 +0000969 MIB.addImm(0);
970 } else {
971 // direct-mem-ref tag, #FI, offset.
972 // Used by patchpoint, and direct alloca arguments to statepoints
973 MIB.addImm(StackMaps::DirectMemRefOp);
Diana Picus8a478102017-01-13 09:58:52 +0000974 MIB.add(MI->getOperand(OperIdx));
Philip Reamesda801212015-12-23 23:44:28 +0000975 MIB.addImm(0);
976 }
Lang Hames1cbca512013-11-29 03:07:54 +0000977 // Copy the operands after the frame index.
978 for (unsigned i = OperIdx + 1; i != MI->getNumOperands(); ++i)
Diana Picus8a478102017-01-13 09:58:52 +0000979 MIB.add(MI->getOperand(i));
Lang Hames1cbca512013-11-29 03:07:54 +0000980
981 // Inherit previous memory operands.
Chandler Carruth2a752bf2018-08-16 21:30:05 +0000982 MIB.cloneMemRefs(*MI);
Lang Hames1cbca512013-11-29 03:07:54 +0000983 assert(MIB->mayLoad() && "Folded a stackmap use to a non-load!");
984
985 // Add a new memory operand for this FI.
Lang Hames1cbca512013-11-29 03:07:54 +0000986 assert(MFI.getObjectOffset(FI) != -1);
Philip Reames78cc6fc2014-12-01 22:52:56 +0000987
Justin Lebar14fc45e2016-07-15 18:26:59 +0000988 auto Flags = MachineMemOperand::MOLoad;
Philip Reames78cc6fc2014-12-01 22:52:56 +0000989 if (MI->getOpcode() == TargetOpcode::STATEPOINT) {
990 Flags |= MachineMemOperand::MOStore;
991 Flags |= MachineMemOperand::MOVolatile;
992 }
Eric Christopher9f85dcc2014-08-04 21:25:23 +0000993 MachineMemOperand *MMO = MF.getMachineMemOperand(
Alex Lorenzde0129a2015-08-11 23:09:45 +0000994 MachinePointerInfo::getFixedStack(MF, FI), Flags,
Mehdi Amini9c5961b2015-07-16 06:11:10 +0000995 MF.getDataLayout().getPointerSize(), MFI.getObjectAlignment(FI));
Lang Hames1cbca512013-11-29 03:07:54 +0000996 MIB->addMemOperand(MF, MMO);
997
998 // Replace the instruction and update the operand index.
999 MBB->insert(MachineBasicBlock::iterator(MI), MIB);
1000 OperIdx += (MIB->getNumOperands() - MI->getNumOperands()) - 1;
1001 MI->eraseFromParent();
1002 MI = MIB;
1003 }
1004 return MBB;
1005}
1006
Dean Michael Berris194fef42018-02-01 02:21:54 +00001007MachineBasicBlock *
1008TargetLoweringBase::emitXRayCustomEvent(MachineInstr &MI,
1009 MachineBasicBlock *MBB) const {
1010 assert(MI.getOpcode() == TargetOpcode::PATCHABLE_EVENT_CALL &&
1011 "Called emitXRayCustomEvent on the wrong MI!");
1012 auto &MF = *MI.getMF();
1013 auto MIB = BuildMI(MF, MI.getDebugLoc(), MI.getDesc());
1014 for (unsigned OpIdx = 0; OpIdx != MI.getNumOperands(); ++OpIdx)
1015 MIB.add(MI.getOperand(OpIdx));
1016
1017 MBB->insert(MachineBasicBlock::iterator(MI), MIB);
1018 MI.eraseFromParent();
1019 return MBB;
1020}
1021
Keith Wysse103a562018-04-17 21:30:29 +00001022MachineBasicBlock *
1023TargetLoweringBase::emitXRayTypedEvent(MachineInstr &MI,
1024 MachineBasicBlock *MBB) const {
1025 assert(MI.getOpcode() == TargetOpcode::PATCHABLE_TYPED_EVENT_CALL &&
1026 "Called emitXRayTypedEvent on the wrong MI!");
1027 auto &MF = *MI.getMF();
1028 auto MIB = BuildMI(MF, MI.getDebugLoc(), MI.getDesc());
1029 for (unsigned OpIdx = 0; OpIdx != MI.getNumOperands(); ++OpIdx)
1030 MIB.add(MI.getOperand(OpIdx));
1031
1032 MBB->insert(MachineBasicBlock::iterator(MI), MIB);
1033 MI.eraseFromParent();
1034 return MBB;
1035}
1036
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001037/// findRepresentativeClass - Return the largest legal super-reg register class
1038/// of the register class for the specified type and its associated "cost".
Eric Christopher7b1d76b2015-03-03 19:47:14 +00001039// This function is in TargetLowering because it uses RegClassForVT which would
1040// need to be moved to TargetRegisterInfo and would necessitate moving
1041// isTypeLegal over as well - a massive change that would just require
1042// TargetLowering having a TargetRegisterInfo class member that it would use.
Eric Christophera01bc6a2015-02-26 00:00:24 +00001043std::pair<const TargetRegisterClass *, uint8_t>
1044TargetLoweringBase::findRepresentativeClass(const TargetRegisterInfo *TRI,
1045 MVT VT) const {
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001046 const TargetRegisterClass *RC = RegClassForVT[VT.SimpleTy];
1047 if (!RC)
1048 return std::make_pair(RC, 0);
1049
1050 // Compute the set of all super-register classes.
1051 BitVector SuperRegRC(TRI->getNumRegClasses());
1052 for (SuperRegClassIterator RCI(RC, TRI); RCI.isValid(); ++RCI)
1053 SuperRegRC.setBitsInMask(RCI.getMask());
1054
1055 // Find the first legal register class with the largest spill size.
1056 const TargetRegisterClass *BestRC = RC;
Francis Visoiu Mistrih1179b5e2017-05-17 01:07:53 +00001057 for (unsigned i : SuperRegRC.set_bits()) {
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001058 const TargetRegisterClass *SuperRC = TRI->getRegClass(i);
1059 // We want the largest possible spill size.
Krzysztof Parzyszek36d7c2b2017-04-24 18:55:33 +00001060 if (TRI->getSpillSize(*SuperRC) <= TRI->getSpillSize(*BestRC))
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001061 continue;
Krzysztof Parzyszekf3b0bf32017-04-24 19:51:12 +00001062 if (!isLegalRC(*TRI, *SuperRC))
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001063 continue;
1064 BestRC = SuperRC;
1065 }
1066 return std::make_pair(BestRC, 1);
1067}
1068
1069/// computeRegisterProperties - Once all of the register classes are added,
1070/// this allows us to compute derived properties we expose.
Eric Christophera01bc6a2015-02-26 00:00:24 +00001071void TargetLoweringBase::computeRegisterProperties(
1072 const TargetRegisterInfo *TRI) {
Craig Toppercac2f222014-11-17 00:26:50 +00001073 static_assert(MVT::LAST_VALUETYPE <= MVT::MAX_ALLOWED_VALUETYPE,
1074 "Too many value types for ValueTypeActions to hold!");
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001075
1076 // Everything defaults to needing one register.
1077 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i) {
1078 NumRegistersForVT[i] = 1;
1079 RegisterTypeForVT[i] = TransformToType[i] = (MVT::SimpleValueType)i;
1080 }
1081 // ...except isVoid, which doesn't need any registers.
1082 NumRegistersForVT[MVT::isVoid] = 0;
1083
1084 // Find the largest integer register class.
1085 unsigned LargestIntReg = MVT::LAST_INTEGER_VALUETYPE;
Craig Topper4ba84432014-04-14 00:51:57 +00001086 for (; RegClassForVT[LargestIntReg] == nullptr; --LargestIntReg)
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001087 assert(LargestIntReg != MVT::i1 && "No integer registers defined!");
1088
1089 // Every integer value type larger than this largest register takes twice as
1090 // many registers to represent as the previous ValueType.
1091 for (unsigned ExpandedReg = LargestIntReg + 1;
1092 ExpandedReg <= MVT::LAST_INTEGER_VALUETYPE; ++ExpandedReg) {
1093 NumRegistersForVT[ExpandedReg] = 2*NumRegistersForVT[ExpandedReg-1];
1094 RegisterTypeForVT[ExpandedReg] = (MVT::SimpleValueType)LargestIntReg;
1095 TransformToType[ExpandedReg] = (MVT::SimpleValueType)(ExpandedReg - 1);
1096 ValueTypeActions.setTypeAction((MVT::SimpleValueType)ExpandedReg,
1097 TypeExpandInteger);
1098 }
1099
1100 // Inspect all of the ValueType's smaller than the largest integer
1101 // register to see which ones need promotion.
1102 unsigned LegalIntReg = LargestIntReg;
1103 for (unsigned IntReg = LargestIntReg - 1;
1104 IntReg >= (unsigned)MVT::i1; --IntReg) {
1105 MVT IVT = (MVT::SimpleValueType)IntReg;
1106 if (isTypeLegal(IVT)) {
1107 LegalIntReg = IntReg;
1108 } else {
1109 RegisterTypeForVT[IntReg] = TransformToType[IntReg] =
Serge Guelton7c7c0a22018-11-07 16:17:30 +00001110 (MVT::SimpleValueType)LegalIntReg;
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001111 ValueTypeActions.setTypeAction(IVT, TypePromoteInteger);
1112 }
1113 }
1114
1115 // ppcf128 type is really two f64's.
1116 if (!isTypeLegal(MVT::ppcf128)) {
Petar Jovanovic8ed05262016-02-04 14:43:50 +00001117 if (isTypeLegal(MVT::f64)) {
1118 NumRegistersForVT[MVT::ppcf128] = 2*NumRegistersForVT[MVT::f64];
1119 RegisterTypeForVT[MVT::ppcf128] = MVT::f64;
1120 TransformToType[MVT::ppcf128] = MVT::f64;
1121 ValueTypeActions.setTypeAction(MVT::ppcf128, TypeExpandFloat);
1122 } else {
1123 NumRegistersForVT[MVT::ppcf128] = NumRegistersForVT[MVT::i128];
1124 RegisterTypeForVT[MVT::ppcf128] = RegisterTypeForVT[MVT::i128];
1125 TransformToType[MVT::ppcf128] = MVT::i128;
1126 ValueTypeActions.setTypeAction(MVT::ppcf128, TypeSoftenFloat);
1127 }
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001128 }
1129
Akira Hatanakac3c38102013-03-01 21:11:44 +00001130 // Decide how to handle f128. If the target does not have native f128 support,
1131 // expand it to i128 and we will be generating soft float library calls.
1132 if (!isTypeLegal(MVT::f128)) {
1133 NumRegistersForVT[MVT::f128] = NumRegistersForVT[MVT::i128];
1134 RegisterTypeForVT[MVT::f128] = RegisterTypeForVT[MVT::i128];
1135 TransformToType[MVT::f128] = MVT::i128;
1136 ValueTypeActions.setTypeAction(MVT::f128, TypeSoftenFloat);
1137 }
1138
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001139 // Decide how to handle f64. If the target does not have native f64 support,
1140 // expand it to i64 and we will be generating soft float library calls.
1141 if (!isTypeLegal(MVT::f64)) {
1142 NumRegistersForVT[MVT::f64] = NumRegistersForVT[MVT::i64];
1143 RegisterTypeForVT[MVT::f64] = RegisterTypeForVT[MVT::i64];
1144 TransformToType[MVT::f64] = MVT::i64;
1145 ValueTypeActions.setTypeAction(MVT::f64, TypeSoftenFloat);
1146 }
1147
Ahmed Bougacha44c1c892015-03-28 01:22:37 +00001148 // Decide how to handle f32. If the target does not have native f32 support,
1149 // expand it to i32 and we will be generating soft float library calls.
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001150 if (!isTypeLegal(MVT::f32)) {
Ahmed Bougacha44c1c892015-03-28 01:22:37 +00001151 NumRegistersForVT[MVT::f32] = NumRegistersForVT[MVT::i32];
1152 RegisterTypeForVT[MVT::f32] = RegisterTypeForVT[MVT::i32];
1153 TransformToType[MVT::f32] = MVT::i32;
1154 ValueTypeActions.setTypeAction(MVT::f32, TypeSoftenFloat);
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001155 }
1156
Oliver Stannardb3289472015-11-09 11:03:18 +00001157 // Decide how to handle f16. If the target does not have native f16 support,
1158 // promote it to f32, because there are no f16 library calls (except for
1159 // conversions).
Tim Northover0afed032014-07-18 12:41:46 +00001160 if (!isTypeLegal(MVT::f16)) {
Oliver Stannardb3289472015-11-09 11:03:18 +00001161 NumRegistersForVT[MVT::f16] = NumRegistersForVT[MVT::f32];
1162 RegisterTypeForVT[MVT::f16] = RegisterTypeForVT[MVT::f32];
1163 TransformToType[MVT::f16] = MVT::f32;
1164 ValueTypeActions.setTypeAction(MVT::f16, TypePromoteFloat);
Tim Northover0afed032014-07-18 12:41:46 +00001165 }
1166
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001167 // Loop over all of the vector value types to see which need transformations.
1168 for (unsigned i = MVT::FIRST_VECTOR_VALUETYPE;
1169 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
Chandler Carruth70968362014-07-03 00:23:43 +00001170 MVT VT = (MVT::SimpleValueType) i;
1171 if (isTypeLegal(VT))
1172 continue;
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001173
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001174 MVT EltVT = VT.getVectorElementType();
1175 unsigned NElts = VT.getVectorNumElements();
Chandler Carruth70968362014-07-03 00:23:43 +00001176 bool IsLegalWiderType = false;
1177 LegalizeTypeAction PreferredAction = getPreferredVectorAction(VT);
1178 switch (PreferredAction) {
Eugene Zelenko79ea5b52017-09-21 23:20:16 +00001179 case TypePromoteInteger:
Chandler Carruth70968362014-07-03 00:23:43 +00001180 // Try to promote the elements of integer vectors. If no legal
1181 // promotion was found, fall through to the widen-vector method.
Matt Arsenault6217a622016-04-22 21:16:17 +00001182 for (unsigned nVT = i + 1; nVT <= MVT::LAST_INTEGER_VECTOR_VALUETYPE; ++nVT) {
Chandler Carruth70968362014-07-03 00:23:43 +00001183 MVT SVT = (MVT::SimpleValueType) nVT;
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001184 // Promote vectors of integers to vectors with the same number
1185 // of elements, with a wider element type.
Sanjay Patelc0a42ff2016-09-14 16:37:15 +00001186 if (SVT.getScalarSizeInBits() > EltVT.getSizeInBits() &&
Matt Arsenault6217a622016-04-22 21:16:17 +00001187 SVT.getVectorNumElements() == NElts && isTypeLegal(SVT)) {
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001188 TransformToType[i] = SVT;
1189 RegisterTypeForVT[i] = SVT;
1190 NumRegistersForVT[i] = 1;
1191 ValueTypeActions.setTypeAction(VT, TypePromoteInteger);
1192 IsLegalWiderType = true;
1193 break;
1194 }
1195 }
Chandler Carruth70968362014-07-03 00:23:43 +00001196 if (IsLegalWiderType)
1197 break;
Galina Kistanova4c20f522017-06-03 05:11:14 +00001198 LLVM_FALLTHROUGH;
Eugene Zelenko79ea5b52017-09-21 23:20:16 +00001199
1200 case TypeWidenVector:
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001201 // Try to widen the vector.
Chandler Carruth70968362014-07-03 00:23:43 +00001202 for (unsigned nVT = i + 1; nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
1203 MVT SVT = (MVT::SimpleValueType) nVT;
1204 if (SVT.getVectorElementType() == EltVT
1205 && SVT.getVectorNumElements() > NElts && isTypeLegal(SVT)) {
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001206 TransformToType[i] = SVT;
1207 RegisterTypeForVT[i] = SVT;
1208 NumRegistersForVT[i] = 1;
1209 ValueTypeActions.setTypeAction(VT, TypeWidenVector);
1210 IsLegalWiderType = true;
1211 break;
1212 }
1213 }
Chandler Carruth70968362014-07-03 00:23:43 +00001214 if (IsLegalWiderType)
1215 break;
Galina Kistanova4c20f522017-06-03 05:11:14 +00001216 LLVM_FALLTHROUGH;
Eugene Zelenko79ea5b52017-09-21 23:20:16 +00001217
Chandler Carruth70968362014-07-03 00:23:43 +00001218 case TypeSplitVector:
1219 case TypeScalarizeVector: {
1220 MVT IntermediateVT;
1221 MVT RegisterVT;
1222 unsigned NumIntermediates;
1223 NumRegistersForVT[i] = getVectorTypeBreakdownMVT(VT, IntermediateVT,
1224 NumIntermediates, RegisterVT, this);
1225 RegisterTypeForVT[i] = RegisterVT;
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001226
Chandler Carruth70968362014-07-03 00:23:43 +00001227 MVT NVT = VT.getPow2VectorType();
1228 if (NVT == VT) {
1229 // Type is already a power of 2. The default action is to split.
1230 TransformToType[i] = MVT::Other;
1231 if (PreferredAction == TypeScalarizeVector)
1232 ValueTypeActions.setTypeAction(VT, TypeScalarizeVector);
Hao Liu80021c52014-10-31 02:35:34 +00001233 else if (PreferredAction == TypeSplitVector)
Chandler Carruth70968362014-07-03 00:23:43 +00001234 ValueTypeActions.setTypeAction(VT, TypeSplitVector);
Hao Liu80021c52014-10-31 02:35:34 +00001235 else
1236 // Set type action according to the number of elements.
1237 ValueTypeActions.setTypeAction(VT, NElts == 1 ? TypeScalarizeVector
1238 : TypeSplitVector);
Chandler Carruth70968362014-07-03 00:23:43 +00001239 } else {
1240 TransformToType[i] = NVT;
1241 ValueTypeActions.setTypeAction(VT, TypeWidenVector);
1242 }
1243 break;
1244 }
1245 default:
1246 llvm_unreachable("Unknown vector legalization action!");
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001247 }
1248 }
1249
1250 // Determine the 'representative' register class for each value type.
1251 // An representative register class is the largest (meaning one which is
1252 // not a sub-register class / subreg register class) legal register class for
1253 // a group of value types. For example, on i386, i8, i16, and i32
1254 // representative would be GR32; while on x86_64 it's GR64.
1255 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i) {
1256 const TargetRegisterClass* RRC;
1257 uint8_t Cost;
Eric Christophera01bc6a2015-02-26 00:00:24 +00001258 std::tie(RRC, Cost) = findRepresentativeClass(TRI, (MVT::SimpleValueType)i);
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001259 RepRegClassForVT[i] = RRC;
1260 RepRegClassCostForVT[i] = Cost;
1261 }
1262}
1263
Mehdi Aminif29cc182015-07-09 02:09:04 +00001264EVT TargetLoweringBase::getSetCCResultType(const DataLayout &DL, LLVMContext &,
1265 EVT VT) const {
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001266 assert(!VT.isVector() && "No default SetCC type for vectors!");
Mehdi Aminif29cc182015-07-09 02:09:04 +00001267 return getPointerTy(DL).SimpleTy;
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001268}
1269
1270MVT::SimpleValueType TargetLoweringBase::getCmpLibcallReturnType() const {
1271 return MVT::i32; // return the default value
1272}
1273
1274/// getVectorTypeBreakdown - Vector types are broken down into some number of
1275/// legal first class types. For example, MVT::v8f32 maps to 2 MVT::v4f32
1276/// with Altivec or SSE1, or 8 promoted MVT::f64 values with the X86 FP stack.
1277/// Similarly, MVT::v2i64 turns into 4 MVT::i32 values with both PPC and X86.
1278///
1279/// This method returns the number of registers needed, and the VT for each
1280/// register. It also returns the VT and quantity of the intermediate values
1281/// before they are promoted/expanded.
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001282unsigned TargetLoweringBase::getVectorTypeBreakdown(LLVMContext &Context, EVT VT,
1283 EVT &IntermediateVT,
1284 unsigned &NumIntermediates,
1285 MVT &RegisterVT) const {
1286 unsigned NumElts = VT.getVectorNumElements();
1287
1288 // If there is a wider vector type with the same element type as this one,
1289 // or a promoted vector type that has the same number of elements which
1290 // are wider, then we should convert to that legal vector type.
1291 // This handles things like <2 x float> -> <4 x float> and
1292 // <4 x i1> -> <4 x i32>.
1293 LegalizeTypeAction TA = getTypeAction(Context, VT);
1294 if (NumElts != 1 && (TA == TypeWidenVector || TA == TypePromoteInteger)) {
1295 EVT RegisterEVT = getTypeToTransformTo(Context, VT);
1296 if (isTypeLegal(RegisterEVT)) {
1297 IntermediateVT = RegisterEVT;
1298 RegisterVT = RegisterEVT.getSimpleVT();
1299 NumIntermediates = 1;
1300 return 1;
1301 }
1302 }
1303
1304 // Figure out the right, legal destination reg to copy into.
1305 EVT EltTy = VT.getVectorElementType();
1306
1307 unsigned NumVectorRegs = 1;
1308
1309 // FIXME: We don't support non-power-of-2-sized vectors for now. Ideally we
1310 // could break down into LHS/RHS like LegalizeDAG does.
1311 if (!isPowerOf2_32(NumElts)) {
1312 NumVectorRegs = NumElts;
1313 NumElts = 1;
1314 }
1315
1316 // Divide the input until we get to a supported size. This will always
1317 // end with a scalar if the target doesn't support vectors.
1318 while (NumElts > 1 && !isTypeLegal(
1319 EVT::getVectorVT(Context, EltTy, NumElts))) {
1320 NumElts >>= 1;
1321 NumVectorRegs <<= 1;
1322 }
1323
1324 NumIntermediates = NumVectorRegs;
1325
1326 EVT NewVT = EVT::getVectorVT(Context, EltTy, NumElts);
1327 if (!isTypeLegal(NewVT))
1328 NewVT = EltTy;
1329 IntermediateVT = NewVT;
1330
1331 MVT DestVT = getRegisterType(Context, NewVT);
1332 RegisterVT = DestVT;
1333 unsigned NewVTSize = NewVT.getSizeInBits();
1334
1335 // Convert sizes such as i33 to i64.
1336 if (!isPowerOf2_32(NewVTSize))
1337 NewVTSize = NextPowerOf2(NewVTSize);
1338
1339 if (EVT(DestVT).bitsLT(NewVT)) // Value is expanded, e.g. i64 -> i16.
1340 return NumVectorRegs*(NewVTSize/DestVT.getSizeInBits());
1341
1342 // Otherwise, promotion or legal types use the same number of registers as
1343 // the vector decimated to the appropriate level.
1344 return NumVectorRegs;
1345}
1346
1347/// Get the EVTs and ArgFlags collections that represent the legalized return
1348/// type of the given function. This does not require a DAG or a return value,
1349/// and is suitable for use before any DAGs for the function are constructed.
1350/// TODO: Move this out of TargetLowering.cpp.
Matt Arsenaultf02d8792018-07-28 13:25:19 +00001351void llvm::GetReturnInfo(CallingConv::ID CC, Type *ReturnType,
1352 AttributeList attr,
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001353 SmallVectorImpl<ISD::OutputArg> &Outs,
Mehdi Amini103bdfc2015-07-09 01:57:34 +00001354 const TargetLowering &TLI, const DataLayout &DL) {
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001355 SmallVector<EVT, 4> ValueVTs;
Mehdi Amini103bdfc2015-07-09 01:57:34 +00001356 ComputeValueVTs(TLI, DL, ReturnType, ValueVTs);
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001357 unsigned NumValues = ValueVTs.size();
1358 if (NumValues == 0) return;
1359
1360 for (unsigned j = 0, f = NumValues; j != f; ++j) {
1361 EVT VT = ValueVTs[j];
1362 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1363
Reid Kleckner67077702017-03-21 16:57:19 +00001364 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::SExt))
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001365 ExtendKind = ISD::SIGN_EXTEND;
Reid Kleckner67077702017-03-21 16:57:19 +00001366 else if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::ZExt))
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001367 ExtendKind = ISD::ZERO_EXTEND;
1368
1369 // FIXME: C calling convention requires the return type to be promoted to
1370 // at least 32-bit. But this is not necessary for non-C calling
1371 // conventions. The frontend should mark functions whose return values
1372 // require promoting with signext or zeroext attributes.
1373 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
1374 MVT MinVT = TLI.getRegisterType(ReturnType->getContext(), MVT::i32);
1375 if (VT.bitsLT(MinVT))
1376 VT = MinVT;
1377 }
1378
Simon Dardis00daab52017-06-09 14:37:08 +00001379 unsigned NumParts =
Matt Arsenaultf02d8792018-07-28 13:25:19 +00001380 TLI.getNumRegistersForCallingConv(ReturnType->getContext(), CC, VT);
Simon Dardis00daab52017-06-09 14:37:08 +00001381 MVT PartVT =
Matt Arsenaultf02d8792018-07-28 13:25:19 +00001382 TLI.getRegisterTypeForCallingConv(ReturnType->getContext(), CC, VT);
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001383
1384 // 'inreg' on function refers to return value
1385 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Reid Kleckner67077702017-03-21 16:57:19 +00001386 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::InReg))
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001387 Flags.setInReg();
1388
1389 // Propagate extension type if any
Reid Kleckner67077702017-03-21 16:57:19 +00001390 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::SExt))
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001391 Flags.setSExt();
Reid Kleckner67077702017-03-21 16:57:19 +00001392 else if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::ZExt))
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001393 Flags.setZExt();
1394
1395 for (unsigned i = 0; i < NumParts; ++i)
Tom Stellardd0716b02013-10-23 00:44:24 +00001396 Outs.push_back(ISD::OutputArg(Flags, PartVT, VT, /*isFixed=*/true, 0, 0));
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001397 }
1398}
1399
1400/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1401/// function arguments in the caller parameter area. This is the actual
1402/// alignment, not its logarithm.
Mehdi Amini027a9f42015-07-09 02:09:28 +00001403unsigned TargetLoweringBase::getByValTypeAlignment(Type *Ty,
1404 const DataLayout &DL) const {
1405 return DL.getABITypeAlignment(Ty);
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001406}
1407
Sanjay Patel7a641cc2015-07-29 18:24:18 +00001408bool TargetLoweringBase::allowsMemoryAccess(LLVMContext &Context,
1409 const DataLayout &DL, EVT VT,
1410 unsigned AddrSpace,
1411 unsigned Alignment,
1412 bool *Fast) const {
1413 // Check if the specified alignment is sufficient based on the data layout.
1414 // TODO: While using the data layout works in practice, a better solution
1415 // would be to implement this check directly (make this a virtual function).
1416 // For example, the ABI alignment may change based on software platform while
1417 // this function should only be affected by hardware implementation.
1418 Type *Ty = VT.getTypeForEVT(Context);
1419 if (Alignment >= DL.getABITypeAlignment(Ty)) {
1420 // Assume that an access that meets the ABI-specified alignment is fast.
1421 if (Fast != nullptr)
1422 *Fast = true;
1423 return true;
1424 }
Fangrui Songaf7b1832018-07-30 19:41:25 +00001425
Sanjay Patel7a641cc2015-07-29 18:24:18 +00001426 // This is a misaligned access.
1427 return allowsMisalignedMemoryAccesses(VT, AddrSpace, Alignment, Fast);
1428}
1429
Sanjay Patel6f5aa792016-04-26 17:11:17 +00001430BranchProbability TargetLoweringBase::getPredictableBranchThreshold() const {
1431 return BranchProbability(MinPercentageForPredictableBranch, 100);
1432}
Sanjay Patel7a641cc2015-07-29 18:24:18 +00001433
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001434//===----------------------------------------------------------------------===//
1435// TargetTransformInfo Helpers
1436//===----------------------------------------------------------------------===//
1437
1438int TargetLoweringBase::InstructionOpcodeToISD(unsigned Opcode) const {
1439 enum InstructionOpcodes {
1440#define HANDLE_INST(NUM, OPCODE, CLASS) OPCODE = NUM,
1441#define LAST_OTHER_INST(NUM) InstructionOpcodesCount = NUM
1442#include "llvm/IR/Instruction.def"
1443 };
1444 switch (static_cast<InstructionOpcodes>(Opcode)) {
1445 case Ret: return 0;
1446 case Br: return 0;
1447 case Switch: return 0;
1448 case IndirectBr: return 0;
1449 case Invoke: return 0;
1450 case Resume: return 0;
1451 case Unreachable: return 0;
David Majnemer4a45f082015-07-31 17:58:14 +00001452 case CleanupRet: return 0;
David Majnemer4a45f082015-07-31 17:58:14 +00001453 case CatchRet: return 0;
David Majnemer8cec2f22015-12-12 05:38:55 +00001454 case CatchPad: return 0;
1455 case CatchSwitch: return 0;
David Majnemer8cec2f22015-12-12 05:38:55 +00001456 case CleanupPad: return 0;
Cameron McInallyca8cb682018-11-13 18:15:47 +00001457 case FNeg: return ISD::FNEG;
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001458 case Add: return ISD::ADD;
1459 case FAdd: return ISD::FADD;
1460 case Sub: return ISD::SUB;
1461 case FSub: return ISD::FSUB;
1462 case Mul: return ISD::MUL;
1463 case FMul: return ISD::FMUL;
1464 case UDiv: return ISD::UDIV;
Benjamin Kramer35513842014-04-27 18:47:54 +00001465 case SDiv: return ISD::SDIV;
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001466 case FDiv: return ISD::FDIV;
1467 case URem: return ISD::UREM;
1468 case SRem: return ISD::SREM;
1469 case FRem: return ISD::FREM;
1470 case Shl: return ISD::SHL;
1471 case LShr: return ISD::SRL;
1472 case AShr: return ISD::SRA;
1473 case And: return ISD::AND;
1474 case Or: return ISD::OR;
1475 case Xor: return ISD::XOR;
1476 case Alloca: return 0;
1477 case Load: return ISD::LOAD;
1478 case Store: return ISD::STORE;
1479 case GetElementPtr: return 0;
1480 case Fence: return 0;
1481 case AtomicCmpXchg: return 0;
1482 case AtomicRMW: return 0;
1483 case Trunc: return ISD::TRUNCATE;
1484 case ZExt: return ISD::ZERO_EXTEND;
1485 case SExt: return ISD::SIGN_EXTEND;
1486 case FPToUI: return ISD::FP_TO_UINT;
1487 case FPToSI: return ISD::FP_TO_SINT;
1488 case UIToFP: return ISD::UINT_TO_FP;
1489 case SIToFP: return ISD::SINT_TO_FP;
1490 case FPTrunc: return ISD::FP_ROUND;
1491 case FPExt: return ISD::FP_EXTEND;
1492 case PtrToInt: return ISD::BITCAST;
1493 case IntToPtr: return ISD::BITCAST;
1494 case BitCast: return ISD::BITCAST;
Matt Arsenault59d3ae62013-11-15 01:34:59 +00001495 case AddrSpaceCast: return ISD::ADDRSPACECAST;
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001496 case ICmp: return ISD::SETCC;
1497 case FCmp: return ISD::SETCC;
1498 case PHI: return 0;
1499 case Call: return 0;
1500 case Select: return ISD::SELECT;
1501 case UserOp1: return 0;
1502 case UserOp2: return 0;
1503 case VAArg: return 0;
1504 case ExtractElement: return ISD::EXTRACT_VECTOR_ELT;
1505 case InsertElement: return ISD::INSERT_VECTOR_ELT;
1506 case ShuffleVector: return ISD::VECTOR_SHUFFLE;
1507 case ExtractValue: return ISD::MERGE_VALUES;
1508 case InsertValue: return ISD::MERGE_VALUES;
1509 case LandingPad: return 0;
1510 }
1511
1512 llvm_unreachable("Unknown instruction type encountered!");
1513}
1514
Chandler Carruthda494142015-08-05 18:08:10 +00001515std::pair<int, MVT>
Mehdi Aminif29cc182015-07-09 02:09:04 +00001516TargetLoweringBase::getTypeLegalizationCost(const DataLayout &DL,
1517 Type *Ty) const {
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001518 LLVMContext &C = Ty->getContext();
Mehdi Aminif29cc182015-07-09 02:09:04 +00001519 EVT MTy = getValueType(DL, Ty);
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001520
Chandler Carruthda494142015-08-05 18:08:10 +00001521 int Cost = 1;
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001522 // We keep legalizing the type until we find a legal kind. We assume that
1523 // the only operation that costs anything is the split. After splitting
1524 // we need to handle two types.
1525 while (true) {
1526 LegalizeKind LK = getTypeConversion(C, MTy);
1527
1528 if (LK.first == TypeLegal)
1529 return std::make_pair(Cost, MTy.getSimpleVT());
1530
1531 if (LK.first == TypeSplitVector || LK.first == TypeExpandInteger)
1532 Cost *= 2;
1533
Chih-Hung Hsieh9f51f8f2015-12-03 22:02:40 +00001534 // Do not loop with f128 type.
1535 if (MTy == LK.second)
1536 return std::make_pair(Cost, MTy.getSimpleVT());
1537
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001538 // Keep legalizing the type.
1539 MTy = LK.second;
1540 }
1541}
1542
David L Kreitzera7945e62016-10-14 17:56:00 +00001543Value *TargetLoweringBase::getDefaultSafeStackPointerLocation(IRBuilder<> &IRB,
1544 bool UseTLS) const {
1545 // compiler-rt provides a variable with a magic name. Targets that do not
1546 // link with compiler-rt may also provide such a variable.
1547 Module *M = IRB.GetInsertBlock()->getParent()->getParent();
1548 const char *UnsafeStackPtrVar = "__safestack_unsafe_stack_ptr";
1549 auto UnsafeStackPtr =
1550 dyn_cast_or_null<GlobalVariable>(M->getNamedValue(UnsafeStackPtrVar));
1551
1552 Type *StackPtrTy = Type::getInt8PtrTy(M->getContext());
1553
1554 if (!UnsafeStackPtr) {
1555 auto TLSModel = UseTLS ?
1556 GlobalValue::InitialExecTLSModel :
1557 GlobalValue::NotThreadLocal;
1558 // The global variable is not defined yet, define it ourselves.
1559 // We use the initial-exec TLS model because we do not support the
1560 // variable living anywhere other than in the main executable.
1561 UnsafeStackPtr = new GlobalVariable(
1562 *M, StackPtrTy, false, GlobalValue::ExternalLinkage, nullptr,
1563 UnsafeStackPtrVar, nullptr, TLSModel);
1564 } else {
1565 // The variable exists, check its type and attributes.
1566 if (UnsafeStackPtr->getValueType() != StackPtrTy)
1567 report_fatal_error(Twine(UnsafeStackPtrVar) + " must have void* type");
1568 if (UseTLS != UnsafeStackPtr->isThreadLocal())
1569 report_fatal_error(Twine(UnsafeStackPtrVar) + " must " +
1570 (UseTLS ? "" : "not ") + "be thread-local");
1571 }
1572 return UnsafeStackPtr;
1573}
1574
Evgeniy Stepanov324bf0d2015-10-26 18:28:25 +00001575Value *TargetLoweringBase::getSafeStackPointerLocation(IRBuilder<> &IRB) const {
1576 if (!TM.getTargetTriple().isAndroid())
David L Kreitzera7945e62016-10-14 17:56:00 +00001577 return getDefaultSafeStackPointerLocation(IRB, true);
Evgeniy Stepanov324bf0d2015-10-26 18:28:25 +00001578
1579 // Android provides a libc function to retrieve the address of the current
1580 // thread's unsafe stack pointer.
1581 Module *M = IRB.GetInsertBlock()->getParent()->getParent();
1582 Type *StackPtrTy = Type::getInt8PtrTy(M->getContext());
1583 Value *Fn = M->getOrInsertFunction("__safestack_pointer_address",
Serge Guelton9d544002017-04-11 15:01:18 +00001584 StackPtrTy->getPointerTo(0));
Evgeniy Stepanov324bf0d2015-10-26 18:28:25 +00001585 return IRB.CreateCall(Fn);
1586}
1587
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001588//===----------------------------------------------------------------------===//
1589// Loop Strength Reduction hooks
1590//===----------------------------------------------------------------------===//
1591
1592/// isLegalAddressingMode - Return true if the addressing mode represented
1593/// by AM is legal for this target, for a load/store of the specified type.
Mehdi Amini0e496c82015-07-09 02:09:40 +00001594bool TargetLoweringBase::isLegalAddressingMode(const DataLayout &DL,
1595 const AddrMode &AM, Type *Ty,
Jonas Paulssoned69aee2017-07-21 11:59:37 +00001596 unsigned AS, Instruction *I) const {
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001597 // The default implementation of this implements a conservative RISCy, r+r and
1598 // r+i addr mode.
1599
1600 // Allows a sign-extended 16-bit immediate field.
1601 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
1602 return false;
1603
1604 // No global is ever allowed as a base.
1605 if (AM.BaseGV)
1606 return false;
1607
1608 // Only support r+r,
1609 switch (AM.Scale) {
1610 case 0: // "r+i" or just "i", depending on HasBaseReg.
1611 break;
1612 case 1:
1613 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
1614 return false;
1615 // Otherwise we have r+r or r+i.
1616 break;
1617 case 2:
1618 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
1619 return false;
1620 // Allow 2*r as r+r.
1621 break;
Tom Stellard5f805942014-02-14 21:10:34 +00001622 default: // Don't allow n * r
1623 return false;
Benjamin Kramer69e42db2013-01-11 20:05:37 +00001624 }
1625
1626 return true;
1627}
Tim Shen1a7750e2016-04-08 21:26:31 +00001628
1629//===----------------------------------------------------------------------===//
1630// Stack Protector
1631//===----------------------------------------------------------------------===//
1632
1633// For OpenBSD return its special guard variable. Otherwise return nullptr,
1634// so that SelectionDAG handle SSP.
1635Value *TargetLoweringBase::getIRStackGuard(IRBuilder<> &IRB) const {
1636 if (getTargetMachine().getTargetTriple().isOSOpenBSD()) {
1637 Module &M = *IRB.GetInsertBlock()->getParent()->getParent();
1638 PointerType *PtrTy = Type::getInt8PtrTy(M.getContext());
Tim Shen06e3fec2016-08-22 18:26:27 +00001639 return M.getOrInsertGlobal("__guard_local", PtrTy);
Tim Shen1a7750e2016-04-08 21:26:31 +00001640 }
1641 return nullptr;
1642}
1643
1644// Currently only support "standard" __stack_chk_guard.
1645// TODO: add LOAD_STACK_GUARD support.
1646void TargetLoweringBase::insertSSPDeclarations(Module &M) const {
Eli Friedman78ffb442018-04-21 00:07:46 +00001647 if (!M.getNamedValue("__stack_chk_guard"))
1648 new GlobalVariable(M, Type::getInt8PtrTy(M.getContext()), false,
1649 GlobalVariable::ExternalLinkage,
1650 nullptr, "__stack_chk_guard");
Tim Shen1a7750e2016-04-08 21:26:31 +00001651}
1652
1653// Currently only support "standard" __stack_chk_guard.
1654// TODO: add LOAD_STACK_GUARD support.
Tim Shenac94d4b2016-04-19 20:14:52 +00001655Value *TargetLoweringBase::getSDagStackGuard(const Module &M) const {
Eli Friedman78ffb442018-04-21 00:07:46 +00001656 return M.getNamedValue("__stack_chk_guard");
Tim Shen1a7750e2016-04-08 21:26:31 +00001657}
Etienne Bergeron70cf01c2016-06-07 20:15:35 +00001658
1659Value *TargetLoweringBase::getSSPStackGuardCheck(const Module &M) const {
1660 return nullptr;
1661}
Evandro Menezes653861f2016-09-26 15:32:33 +00001662
Evandro Menezes9d6f1232016-10-25 19:53:51 +00001663unsigned TargetLoweringBase::getMinimumJumpTableEntries() const {
1664 return MinimumJumpTableEntries;
1665}
1666
1667void TargetLoweringBase::setMinimumJumpTableEntries(unsigned Val) {
1668 MinimumJumpTableEntries = Val;
1669}
1670
Jun Bum Lim98e89d32017-04-28 16:04:03 +00001671unsigned TargetLoweringBase::getMinimumJumpTableDensity(bool OptForSize) const {
1672 return OptForSize ? OptsizeJumpTableDensity : JumpTableDensity;
1673}
1674
Evandro Menezes653861f2016-09-26 15:32:33 +00001675unsigned TargetLoweringBase::getMaximumJumpTableSize() const {
1676 return MaximumJumpTableSize;
1677}
1678
1679void TargetLoweringBase::setMaximumJumpTableSize(unsigned Val) {
1680 MaximumJumpTableSize = Val;
1681}
Sanjay Patel928f0472016-10-20 16:55:45 +00001682
1683//===----------------------------------------------------------------------===//
1684// Reciprocal Estimates
1685//===----------------------------------------------------------------------===//
1686
1687/// Get the reciprocal estimate attribute string for a function that will
1688/// override the target defaults.
1689static StringRef getRecipEstimateForFunc(MachineFunction &MF) {
Matthias Braund3181392017-12-15 22:22:58 +00001690 const Function &F = MF.getFunction();
1691 return F.getFnAttribute("reciprocal-estimates").getValueAsString();
Sanjay Patel928f0472016-10-20 16:55:45 +00001692}
1693
1694/// Construct a string for the given reciprocal operation of the given type.
1695/// This string should match the corresponding option to the front-end's
1696/// "-mrecip" flag assuming those strings have been passed through in an
1697/// attribute string. For example, "vec-divf" for a division of a vXf32.
1698static std::string getReciprocalOpName(bool IsSqrt, EVT VT) {
1699 std::string Name = VT.isVector() ? "vec-" : "";
1700
1701 Name += IsSqrt ? "sqrt" : "div";
1702
1703 // TODO: Handle "half" or other float types?
1704 if (VT.getScalarType() == MVT::f64) {
1705 Name += "d";
1706 } else {
1707 assert(VT.getScalarType() == MVT::f32 &&
1708 "Unexpected FP type for reciprocal estimate");
1709 Name += "f";
1710 }
1711
1712 return Name;
1713}
1714
1715/// Return the character position and value (a single numeric character) of a
1716/// customized refinement operation in the input string if it exists. Return
1717/// false if there is no customized refinement step count.
1718static bool parseRefinementStep(StringRef In, size_t &Position,
1719 uint8_t &Value) {
1720 const char RefStepToken = ':';
1721 Position = In.find(RefStepToken);
1722 if (Position == StringRef::npos)
1723 return false;
1724
1725 StringRef RefStepString = In.substr(Position + 1);
1726 // Allow exactly one numeric character for the additional refinement
1727 // step parameter.
1728 if (RefStepString.size() == 1) {
1729 char RefStepChar = RefStepString[0];
1730 if (RefStepChar >= '0' && RefStepChar <= '9') {
1731 Value = RefStepChar - '0';
1732 return true;
1733 }
1734 }
1735 report_fatal_error("Invalid refinement step for -recip.");
1736}
1737
1738/// For the input attribute string, return one of the ReciprocalEstimate enum
1739/// status values (enabled, disabled, or not specified) for this operation on
1740/// the specified data type.
1741static int getOpEnabled(bool IsSqrt, EVT VT, StringRef Override) {
1742 if (Override.empty())
1743 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1744
1745 SmallVector<StringRef, 4> OverrideVector;
Craig Topperaf4d5d42018-05-07 01:32:18 +00001746 Override.split(OverrideVector, ',');
Sanjay Patel928f0472016-10-20 16:55:45 +00001747 unsigned NumArgs = OverrideVector.size();
1748
1749 // Check if "all", "none", or "default" was specified.
1750 if (NumArgs == 1) {
1751 // Look for an optional setting of the number of refinement steps needed
1752 // for this type of reciprocal operation.
1753 size_t RefPos;
1754 uint8_t RefSteps;
1755 if (parseRefinementStep(Override, RefPos, RefSteps)) {
1756 // Split the string for further processing.
1757 Override = Override.substr(0, RefPos);
1758 }
1759
1760 // All reciprocal types are enabled.
1761 if (Override == "all")
1762 return TargetLoweringBase::ReciprocalEstimate::Enabled;
1763
1764 // All reciprocal types are disabled.
1765 if (Override == "none")
1766 return TargetLoweringBase::ReciprocalEstimate::Disabled;
1767
1768 // Target defaults for enablement are used.
1769 if (Override == "default")
1770 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1771 }
1772
1773 // The attribute string may omit the size suffix ('f'/'d').
1774 std::string VTName = getReciprocalOpName(IsSqrt, VT);
1775 std::string VTNameNoSize = VTName;
Sanjay Patel73cda082016-10-21 14:58:30 +00001776 VTNameNoSize.pop_back();
Sanjay Patel928f0472016-10-20 16:55:45 +00001777 static const char DisabledPrefix = '!';
1778
1779 for (StringRef RecipType : OverrideVector) {
1780 size_t RefPos;
1781 uint8_t RefSteps;
1782 if (parseRefinementStep(RecipType, RefPos, RefSteps))
1783 RecipType = RecipType.substr(0, RefPos);
1784
1785 // Ignore the disablement token for string matching.
1786 bool IsDisabled = RecipType[0] == DisabledPrefix;
1787 if (IsDisabled)
1788 RecipType = RecipType.substr(1);
1789
1790 if (RecipType.equals(VTName) || RecipType.equals(VTNameNoSize))
1791 return IsDisabled ? TargetLoweringBase::ReciprocalEstimate::Disabled
1792 : TargetLoweringBase::ReciprocalEstimate::Enabled;
1793 }
1794
1795 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1796}
1797
1798/// For the input attribute string, return the customized refinement step count
1799/// for this operation on the specified data type. If the step count does not
1800/// exist, return the ReciprocalEstimate enum value for unspecified.
1801static int getOpRefinementSteps(bool IsSqrt, EVT VT, StringRef Override) {
1802 if (Override.empty())
1803 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1804
1805 SmallVector<StringRef, 4> OverrideVector;
Craig Topperaf4d5d42018-05-07 01:32:18 +00001806 Override.split(OverrideVector, ',');
Sanjay Patel928f0472016-10-20 16:55:45 +00001807 unsigned NumArgs = OverrideVector.size();
1808
1809 // Check if "all", "default", or "none" was specified.
1810 if (NumArgs == 1) {
1811 // Look for an optional setting of the number of refinement steps needed
1812 // for this type of reciprocal operation.
1813 size_t RefPos;
1814 uint8_t RefSteps;
1815 if (!parseRefinementStep(Override, RefPos, RefSteps))
1816 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1817
1818 // Split the string for further processing.
1819 Override = Override.substr(0, RefPos);
1820 assert(Override != "none" &&
1821 "Disabled reciprocals, but specifed refinement steps?");
1822
1823 // If this is a general override, return the specified number of steps.
1824 if (Override == "all" || Override == "default")
1825 return RefSteps;
1826 }
1827
1828 // The attribute string may omit the size suffix ('f'/'d').
1829 std::string VTName = getReciprocalOpName(IsSqrt, VT);
1830 std::string VTNameNoSize = VTName;
Sanjay Patel73cda082016-10-21 14:58:30 +00001831 VTNameNoSize.pop_back();
Sanjay Patel928f0472016-10-20 16:55:45 +00001832
1833 for (StringRef RecipType : OverrideVector) {
1834 size_t RefPos;
1835 uint8_t RefSteps;
1836 if (!parseRefinementStep(RecipType, RefPos, RefSteps))
1837 continue;
1838
1839 RecipType = RecipType.substr(0, RefPos);
1840 if (RecipType.equals(VTName) || RecipType.equals(VTNameNoSize))
1841 return RefSteps;
1842 }
1843
1844 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1845}
1846
1847int TargetLoweringBase::getRecipEstimateSqrtEnabled(EVT VT,
1848 MachineFunction &MF) const {
1849 return getOpEnabled(true, VT, getRecipEstimateForFunc(MF));
1850}
1851
1852int TargetLoweringBase::getRecipEstimateDivEnabled(EVT VT,
1853 MachineFunction &MF) const {
1854 return getOpEnabled(false, VT, getRecipEstimateForFunc(MF));
1855}
1856
1857int TargetLoweringBase::getSqrtRefinementSteps(EVT VT,
1858 MachineFunction &MF) const {
1859 return getOpRefinementSteps(true, VT, getRecipEstimateForFunc(MF));
1860}
1861
1862int TargetLoweringBase::getDivRefinementSteps(EVT VT,
1863 MachineFunction &MF) const {
1864 return getOpRefinementSteps(false, VT, getRecipEstimateForFunc(MF));
1865}
Matthias Braun81de6062017-04-28 20:25:05 +00001866
1867void TargetLoweringBase::finalizeLowering(MachineFunction &MF) const {
1868 MF.getRegInfo().freezeReservedRegs(MF);
1869}