blob: 44afbef946feb04a1150438b298cd652ce9acff8 [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/RuntimeLibcalls.h"
Lang Hames39609992013-11-29 03:07:54 +000032#include "llvm/CodeGen/StackMaps.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000033#include "llvm/CodeGen/TargetLowering.h"
34#include "llvm/CodeGen/TargetOpcodes.h"
35#include "llvm/CodeGen/TargetRegisterInfo.h"
Craig Topper2fa14362018-03-29 17:21:10 +000036#include "llvm/CodeGen/ValueTypes.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000037#include "llvm/IR/Attributes.h"
38#include "llvm/IR/CallingConv.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000039#include "llvm/IR/DataLayout.h"
40#include "llvm/IR/DerivedTypes.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000041#include "llvm/IR/Function.h"
42#include "llvm/IR/GlobalValue.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000043#include "llvm/IR/GlobalVariable.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000044#include "llvm/IR/IRBuilder.h"
45#include "llvm/IR/Module.h"
46#include "llvm/IR/Type.h"
Sanjay Pateld66607b2016-04-26 17:11:17 +000047#include "llvm/Support/BranchProbability.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000048#include "llvm/Support/Casting.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000049#include "llvm/Support/CommandLine.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000050#include "llvm/Support/Compiler.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000051#include "llvm/Support/ErrorHandling.h"
David Blaikie13e77db2018-03-23 23:58:25 +000052#include "llvm/Support/MachineValueType.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000053#include "llvm/Support/MathExtras.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000054#include "llvm/Target/TargetMachine.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000055#include <algorithm>
56#include <cassert>
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000057#include <cstddef>
58#include <cstdint>
David Blaikieb3bde2e2017-11-17 01:07:10 +000059#include <cstring>
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000060#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
Matthias Brauna4852d2c2017-12-18 23:19:42 +000092static bool darwinHasSinCos(const Triple &TT) {
93 assert(TT.isOSDarwin() && "should be called with darwin triple");
Matthias Braund2d7fb62017-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 Brauna4852d2c2017-12-18 23:19:42 +000098 if (TT.isMacOSX())
99 return !TT.isMacOSXVersionLT(10, 9) && TT.isArch64Bit();
Matthias Braun02820912017-12-18 23:33:28 +0000100 // iOS < 7.0 has no sincos_stret.
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000101 if (TT.isiOS())
Matthias Braun02820912017-12-18 23:33:28 +0000102 return !TT.isOSVersionLT(7, 0);
103 // Any other darwin such as WatchOS/TvOS is new enough.
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000104 return true;
105}
106
Sanjay Pateld66607b2016-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 Brauna4852d2c2017-12-18 23:19:42 +0000118void TargetLoweringBase::InitLibcalls(const Triple &TT) {
Derek Schuff36454af2017-07-19 21:53:30 +0000119#define HANDLE_LIBCALL(code, name) \
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000120 setLibcallName(RTLIB::code, name);
Peter Collingbournee06bac42018-07-24 19:34:37 +0000121#include "llvm/IR/RuntimeLibcalls.def"
Derek Schuff36454af2017-07-19 21:53:30 +0000122#undef HANDLE_LIBCALL
Matthias Braun92de8b22017-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 Kramer56b31bd2013-01-11 20:05:37 +0000126
Derek Schuff36454af2017-07-19 21:53:30 +0000127 // A few names are different on particular architectures or environments.
James Y Knight7873fb92016-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 Brauna4852d2c2017-12-18 23:19:42 +0000132 setLibcallName(RTLIB::FPEXT_F16_F32, "__extendhfsf2");
133 setLibcallName(RTLIB::FPROUND_F32_F16, "__truncsfhf2");
Matthias Brauna92cecf2017-12-18 23:14:28 +0000134
Matthias Braun725ad0e2018-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 Braune29c0b82017-12-19 00:43:00 +0000147 }
Matthias Brauna4852d2c2017-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 Knight7873fb92016-04-12 22:32:47 +0000159 } else {
Matthias Brauna4852d2c2017-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 Knight7873fb92016-04-12 22:32:47 +0000162 }
James Y Knight19f6cce2016-04-12 20:18:48 +0000163
John Brawn83d74142018-09-18 13:18:21 +0000164 if (TT.isGNUEnvironment() || TT.isOSFuchsia() ||
165 (TT.isAndroid() && !TT.isAndroidVersionLT(9))) {
Matthias Brauna4852d2c2017-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 Redmondf29ddfe2013-02-15 18:45:18 +0000171 }
Michael Gottesman7dce16f2013-08-12 18:45:38 +0000172
Derek Schuff36454af2017-07-19 21:53:30 +0000173 if (TT.isOSOpenBSD()) {
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000174 setLibcallName(RTLIB::STACKPROTECTOR_CHECK_FAIL, nullptr);
Ahmed Bougacha6402ad22015-05-14 01:00:51 +0000175 }
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000176}
177
Benjamin Kramer56b31bd2013-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 Northoverf7a02c12014-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 Kramer56b31bd2013-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 Jovanovic23e44f52016-02-04 14:43:50 +0000189 if (RetVT == MVT::ppcf128)
190 return FPEXT_F32_PPCF128;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000191 } else if (OpVT == MVT::f64) {
192 if (RetVT == MVT::f128)
193 return FPEXT_F64_F128;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000194 else if (RetVT == MVT::ppcf128)
195 return FPEXT_F64_PPCF128;
Benjamin Kramer8b1986b2018-01-17 22:29:16 +0000196 } else if (OpVT == MVT::f80) {
197 if (RetVT == MVT::f128)
198 return FPEXT_F80_F128;
Benjamin Kramer56b31bd2013-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 Northover84ce0a62014-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 Kramer56b31bd2013-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 Kramer8b1986b2018-01-17 22:29:16 +0000234 } else if (RetVT == MVT::f80) {
235 if (OpVT == MVT::f128)
236 return FPROUND_F128_F80;
Benjamin Kramer56b31bd2013-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 Kramer56b31bd2013-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 Kramer56b31bd2013-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 Kramer56b31bd2013-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 Kramer56b31bd2013-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 Knightf44fc522016-03-16 22:12:04 +0000406RTLIB::Libcall RTLIB::getSYNC(unsigned Opc, MVT VT) {
Benjamin Kramerc54c38e2015-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 Neilson3faabbb2017-06-16 14:43:59 +0000444RTLIB::Libcall RTLIB::getMEMCPY_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
Igor Laevsky4f31e522016-12-29 14:31:07 +0000445 switch (ElementSize) {
446 case 1:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000447 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_1;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000448 case 2:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000449 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_2;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000450 case 4:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000451 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_4;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000452 case 8:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000453 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_8;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000454 case 16:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000455 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_16;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000456 default:
457 return UNKNOWN_LIBCALL;
458 }
Igor Laevsky4f31e522016-12-29 14:31:07 +0000459}
460
Daniel Neilson57226ef2017-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 Neilson965613e2017-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 Kramer56b31bd2013-01-11 20:05:37 +0000495/// InitCmpLibcallCCs - Set default comparison libcall CC.
Benjamin Kramer56b31bd2013-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 Jovanovic23e44f52016-02-04 14:43:50 +0000501 CCs[RTLIB::OEQ_PPCF128] = ISD::SETEQ;
Benjamin Kramer56b31bd2013-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 Jovanovic23e44f52016-02-04 14:43:50 +0000505 CCs[RTLIB::UNE_PPCF128] = ISD::SETNE;
Benjamin Kramer56b31bd2013-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 Jovanovic23e44f52016-02-04 14:43:50 +0000509 CCs[RTLIB::OGE_PPCF128] = ISD::SETGE;
Benjamin Kramer56b31bd2013-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 Jovanovic23e44f52016-02-04 14:43:50 +0000513 CCs[RTLIB::OLT_PPCF128] = ISD::SETLT;
Benjamin Kramer56b31bd2013-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 Jovanovic23e44f52016-02-04 14:43:50 +0000517 CCs[RTLIB::OLE_PPCF128] = ISD::SETLE;
Benjamin Kramer56b31bd2013-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 Jovanovic23e44f52016-02-04 14:43:50 +0000521 CCs[RTLIB::OGT_PPCF128] = ISD::SETGT;
Benjamin Kramer56b31bd2013-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 Jovanovic23e44f52016-02-04 14:43:50 +0000525 CCs[RTLIB::UO_PPCF128] = ISD::SETNE;
Benjamin Kramer56b31bd2013-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 Jovanovic23e44f52016-02-04 14:43:50 +0000529 CCs[RTLIB::O_PPCF128] = ISD::SETEQ;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000530}
531
Aditya Nandakumar30531552014-11-13 21:29:21 +0000532/// NOTE: The TargetMachine owns TLOF.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000533TargetLoweringBase::TargetLoweringBase(const TargetMachine &tm) : TM(tm) {
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000534 initActions();
535
536 // Perform these initializations only once.
Zaara Syeda3a7578c2017-05-31 17:12:38 +0000537 MaxStoresPerMemset = MaxStoresPerMemcpy = MaxStoresPerMemmove =
538 MaxLoadsPerMemcmp = 8;
Sirish Pandecabe50a32018-05-16 15:36:52 +0000539 MaxGluedStoresPerMemcpy = 0;
Zaara Syeda3a7578c2017-05-31 17:12:38 +0000540 MaxStoresPerMemsetOptSize = MaxStoresPerMemcpyOptSize =
541 MaxStoresPerMemmoveOptSize = MaxLoadsPerMemcmpOptSize = 4;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000542 UseUnderscoreSetJmp = false;
543 UseUnderscoreLongJmp = false;
Hal Finkeldecb0242014-01-02 21:13:43 +0000544 HasMultipleConditionRegisters = false;
Yi Jiangb23edeb2014-04-21 22:22:44 +0000545 HasExtractBitsInsn = false;
Sanjay Patel943829a2015-07-01 18:10:20 +0000546 JumpIsExpensive = JumpIsExpensiveOverride;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000547 PredictableSelectIsExpensive = false;
Quentin Colombetfc2201e2014-12-17 01:36:17 +0000548 EnableExtLdPromotion = false;
Pedro Artigascaa56582014-08-08 16:46:53 +0000549 HasFloatingPointExceptions = true;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000550 StackPointerRegisterToSaveRestore = 0;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000551 BooleanContents = UndefinedBooleanContent;
Daniel Sanderscbd44c52014-07-10 10:18:12 +0000552 BooleanFloatContents = UndefinedBooleanContent;
Bill Wendlingeb108ba2013-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 Dave54e22f32017-03-14 00:34:14 +0000560 GatherAllAliasesMaxDepth = 18;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000561 MinStackArgumentAlignment = 1;
James Y Knight19f6cce2016-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 Wendlingeb108ba2013-04-05 21:52:40 +0000565
James Y Knight148a6462016-06-17 18:11:48 +0000566 MinCmpXchgSizeInBits = 0;
Dylan McKay80463fe2017-12-09 06:45:36 +0000567 SupportsUnalignedAtomics = false;
James Y Knight148a6462016-06-17 18:11:48 +0000568
James Y Knight7873fb92016-04-12 22:32:47 +0000569 std::fill(std::begin(LibcallRoutineNames), std::end(LibcallRoutineNames), nullptr);
570
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000571 InitLibcalls(TM.getTargetTriple());
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000572 InitCmpLibcallCCs(CmpLibcallCCs);
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000573}
574
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000575void TargetLoweringBase::initActions() {
Benjamin Kramer56b31bd2013-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 Topper00230802016-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 Kramer56b31bd2013-01-11 20:05:37 +0000585
586 // Set default actions for various operations.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000587 for (MVT VT : MVT::all_valuetypes()) {
Benjamin Kramer56b31bd2013-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 Bougacha67dd2d22015-01-07 21:27:10 +0000591 setIndexedLoadAction(IM, VT, Expand);
592 setIndexedStoreAction(IM, VT, Expand);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000593 }
594
Tim Northover420a2162014-06-13 14:24:07 +0000595 // Most backends expect to see the node which just returns the value loaded.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000596 setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, VT, Expand);
Tim Northover420a2162014-06-13 14:24:07 +0000597
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000598 // These operations default to expand.
Ahmed Bougacha67dd2d22015-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 Arsenault687ec752018-10-22 16:27:27 +0000603 setOperationAction(ISD::FMINNUM_IEEE, VT, Expand);
604 setOperationAction(ISD::FMAXNUM_IEEE, VT, Expand);
Thomas Lively30f1d692018-10-24 22:49:55 +0000605 setOperationAction(ISD::FMINIMUM, VT, Expand);
606 setOperationAction(ISD::FMAXIMUM, VT, Expand);
Matt Arsenault0dc54c42015-02-20 22:10:33 +0000607 setOperationAction(ISD::FMAD, VT, Expand);
James Molloy7e9776b2015-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 Pilgrimcf2da962017-03-14 21:26:58 +0000612 setOperationAction(ISD::ABS, VT, Expand);
Leonard Chan699b3b52018-10-16 17:35:41 +0000613 setOperationAction(ISD::SADDSAT, VT, Expand);
Leonard Chan0acfc6b2018-10-22 23:08:40 +0000614 setOperationAction(ISD::UADDSAT, VT, Expand);
Leonard Chan905abe52018-10-29 16:54:37 +0000615 setOperationAction(ISD::SSUBSAT, VT, Expand);
616 setOperationAction(ISD::USUBSAT, VT, Expand);
Hal Finkel8ec43c62013-08-09 04:13:44 +0000617
Jan Vesely75395482015-04-29 16:30:46 +0000618 // Overflow operations default to expand
619 setOperationAction(ISD::SADDO, VT, Expand);
620 setOperationAction(ISD::SSUBO, VT, Expand);
621 setOperationAction(ISD::UADDO, VT, Expand);
622 setOperationAction(ISD::USUBO, VT, Expand);
623 setOperationAction(ISD::SMULO, VT, Expand);
624 setOperationAction(ISD::UMULO, VT, Expand);
Hal Finkelcd8664c2015-12-11 23:11:52 +0000625
Amaury Sechet8ac81f32017-04-30 19:24:09 +0000626 // ADDCARRY operations default to expand
627 setOperationAction(ISD::ADDCARRY, VT, Expand);
628 setOperationAction(ISD::SUBCARRY, VT, Expand);
Amaury Sechet251ea8a2017-06-01 11:14:17 +0000629 setOperationAction(ISD::SETCCCARRY, VT, Expand);
Amaury Sechet8ac81f32017-04-30 19:24:09 +0000630
Amaury Sechet84674112018-06-01 13:21:33 +0000631 // ADDC/ADDE/SUBC/SUBE default to expand.
632 setOperationAction(ISD::ADDC, VT, Expand);
633 setOperationAction(ISD::ADDE, VT, Expand);
634 setOperationAction(ISD::SUBC, VT, Expand);
635 setOperationAction(ISD::SUBE, VT, Expand);
636
Craig Topper33772c52016-04-28 03:34:31 +0000637 // These default to Expand so they will be expanded to CTLZ/CTTZ by default.
638 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
639 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
640
James Molloy90111f72015-11-12 12:29:09 +0000641 setOperationAction(ISD::BITREVERSE, VT, Expand);
Fangrui Songf78650a2018-07-30 19:41:25 +0000642
Hal Finkel8ec43c62013-08-09 04:13:44 +0000643 // These library functions default to expand.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000644 setOperationAction(ISD::FROUND, VT, Expand);
Craig Topperf6d4dc52017-05-30 15:27:55 +0000645 setOperationAction(ISD::FPOWI, VT, Expand);
Hal Finkel0c5c01aa2013-08-19 23:35:46 +0000646
647 // These operations default to expand for vector types.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000648 if (VT.isVector()) {
649 setOperationAction(ISD::FCOPYSIGN, VT, Expand);
650 setOperationAction(ISD::ANY_EXTEND_VECTOR_INREG, VT, Expand);
651 setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, VT, Expand);
652 setOperationAction(ISD::ZERO_EXTEND_VECTOR_INREG, VT, Expand);
Chandler Carruthd3561f62014-07-09 22:53:04 +0000653 }
Yury Gribovd7dbb662015-12-01 11:40:55 +0000654
Etienne Bergeron22bfa832016-06-07 20:15:35 +0000655 // For most targets @llvm.get.dynamic.area.offset just returns 0.
Yury Gribovd7dbb662015-12-01 11:40:55 +0000656 setOperationAction(ISD::GET_DYNAMIC_AREA_OFFSET, VT, Expand);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000657 }
658
659 // Most targets ignore the @llvm.prefetch intrinsic.
660 setOperationAction(ISD::PREFETCH, MVT::Other, Expand);
661
Ahmed Bougachaf9c19da2015-08-28 01:49:59 +0000662 // Most targets also ignore the @llvm.readcyclecounter intrinsic.
663 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Expand);
664
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000665 // ConstantFP nodes default to expand. Targets can either change this to
666 // Legal, in which case all fp constants are legal, or use isFPImmLegal()
667 // to optimize expansions for certain constants.
668 setOperationAction(ISD::ConstantFP, MVT::f16, Expand);
669 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
670 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
671 setOperationAction(ISD::ConstantFP, MVT::f80, Expand);
672 setOperationAction(ISD::ConstantFP, MVT::f128, Expand);
673
674 // These library functions default to expand.
Ahmed Bougacha2a20e272015-03-26 23:21:03 +0000675 for (MVT VT : {MVT::f32, MVT::f64, MVT::f128}) {
Sanjay Patel3eaf5002018-09-16 16:50:26 +0000676 setOperationAction(ISD::FCBRT, VT, Expand);
Ahmed Bougacha2a20e272015-03-26 23:21:03 +0000677 setOperationAction(ISD::FLOG , VT, Expand);
678 setOperationAction(ISD::FLOG2, VT, Expand);
679 setOperationAction(ISD::FLOG10, VT, Expand);
680 setOperationAction(ISD::FEXP , VT, Expand);
681 setOperationAction(ISD::FEXP2, VT, Expand);
682 setOperationAction(ISD::FFLOOR, VT, Expand);
Ahmed Bougacha2a20e272015-03-26 23:21:03 +0000683 setOperationAction(ISD::FNEARBYINT, VT, Expand);
684 setOperationAction(ISD::FCEIL, VT, Expand);
685 setOperationAction(ISD::FRINT, VT, Expand);
686 setOperationAction(ISD::FTRUNC, VT, Expand);
687 setOperationAction(ISD::FROUND, VT, Expand);
688 }
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000689
690 // Default ISD::TRAP to expand (which turns it into abort).
691 setOperationAction(ISD::TRAP, MVT::Other, Expand);
692
693 // On most systems, DEBUGTRAP and TRAP have no difference. The "Expand"
694 // here is to inform DAG Legalizer to replace DEBUGTRAP with TRAP.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000695 setOperationAction(ISD::DEBUGTRAP, MVT::Other, Expand);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000696}
697
Mehdi Aminieaabc512015-07-09 15:12:23 +0000698MVT TargetLoweringBase::getScalarShiftAmountTy(const DataLayout &DL,
699 EVT) const {
Mehdi Amini9639d652015-07-09 02:09:20 +0000700 return MVT::getIntegerVT(8 * DL.getPointerSize(0));
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000701}
702
Craig Topper35801fa2018-02-20 17:41:05 +0000703EVT TargetLoweringBase::getShiftAmountTy(EVT LHSTy, const DataLayout &DL,
704 bool LegalTypes) const {
Michael Liao6af16fc2013-03-01 18:40:30 +0000705 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
706 if (LHSTy.isVector())
707 return LHSTy;
Craig Topper35801fa2018-02-20 17:41:05 +0000708 return LegalTypes ? getScalarShiftAmountTy(DL, LHSTy)
709 : getPointerTy(DL);
Michael Liao6af16fc2013-03-01 18:40:30 +0000710}
711
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000712bool TargetLoweringBase::canOpTrap(unsigned Op, EVT VT) const {
713 assert(isTypeLegal(VT));
714 switch (Op) {
715 default:
716 return false;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000717 case ISD::SDIV:
718 case ISD::UDIV:
719 case ISD::SREM:
720 case ISD::UREM:
721 return true;
722 }
723}
724
Sanjay Patel943829a2015-07-01 18:10:20 +0000725void TargetLoweringBase::setJumpIsExpensive(bool isExpensive) {
726 // If the command-line option was specified, ignore this request.
727 if (!JumpIsExpensiveOverride.getNumOccurrences())
728 JumpIsExpensive = isExpensive;
729}
730
Eric Christopher75dbd7c2015-02-25 22:41:30 +0000731TargetLoweringBase::LegalizeKind
732TargetLoweringBase::getTypeConversion(LLVMContext &Context, EVT VT) const {
733 // If this is a simple type, use the ComputeRegisterProp mechanism.
734 if (VT.isSimple()) {
735 MVT SVT = VT.getSimpleVT();
736 assert((unsigned)SVT.SimpleTy < array_lengthof(TransformToType));
737 MVT NVT = TransformToType[SVT.SimpleTy];
738 LegalizeTypeAction LA = ValueTypeActions.getTypeAction(SVT);
739
740 assert((LA == TypeLegal || LA == TypeSoftenFloat ||
741 ValueTypeActions.getTypeAction(NVT) != TypePromoteInteger) &&
742 "Promote may not follow Expand or Promote");
743
744 if (LA == TypeSplitVector)
745 return LegalizeKind(LA,
746 EVT::getVectorVT(Context, SVT.getVectorElementType(),
747 SVT.getVectorNumElements() / 2));
748 if (LA == TypeScalarizeVector)
749 return LegalizeKind(LA, SVT.getVectorElementType());
750 return LegalizeKind(LA, NVT);
751 }
752
753 // Handle Extended Scalar Types.
754 if (!VT.isVector()) {
755 assert(VT.isInteger() && "Float types must be simple");
756 unsigned BitSize = VT.getSizeInBits();
757 // First promote to a power-of-two size, then expand if necessary.
758 if (BitSize < 8 || !isPowerOf2_32(BitSize)) {
759 EVT NVT = VT.getRoundIntegerType(Context);
760 assert(NVT != VT && "Unable to round integer VT");
761 LegalizeKind NextStep = getTypeConversion(Context, NVT);
762 // Avoid multi-step promotion.
763 if (NextStep.first == TypePromoteInteger)
764 return NextStep;
765 // Return rounded integer type.
766 return LegalizeKind(TypePromoteInteger, NVT);
767 }
768
769 return LegalizeKind(TypeExpandInteger,
770 EVT::getIntegerVT(Context, VT.getSizeInBits() / 2));
771 }
772
773 // Handle vector types.
774 unsigned NumElts = VT.getVectorNumElements();
775 EVT EltVT = VT.getVectorElementType();
776
777 // Vectors with only one element are always scalarized.
778 if (NumElts == 1)
779 return LegalizeKind(TypeScalarizeVector, EltVT);
780
781 // Try to widen vector elements until the element type is a power of two and
782 // promote it to a legal type later on, for example:
783 // <3 x i8> -> <4 x i8> -> <4 x i32>
784 if (EltVT.isInteger()) {
785 // Vectors with a number of elements that is not a power of two are always
786 // widened, for example <3 x i8> -> <4 x i8>.
787 if (!VT.isPow2VectorType()) {
788 NumElts = (unsigned)NextPowerOf2(NumElts);
789 EVT NVT = EVT::getVectorVT(Context, EltVT, NumElts);
790 return LegalizeKind(TypeWidenVector, NVT);
791 }
792
793 // Examine the element type.
794 LegalizeKind LK = getTypeConversion(Context, EltVT);
795
796 // If type is to be expanded, split the vector.
797 // <4 x i140> -> <2 x i140>
798 if (LK.first == TypeExpandInteger)
799 return LegalizeKind(TypeSplitVector,
800 EVT::getVectorVT(Context, EltVT, NumElts / 2));
801
802 // Promote the integer element types until a legal vector type is found
803 // or until the element integer type is too big. If a legal type was not
804 // found, fallback to the usual mechanism of widening/splitting the
805 // vector.
806 EVT OldEltVT = EltVT;
Eugene Zelenkofb7f7922017-09-21 23:20:16 +0000807 while (true) {
Eric Christopher75dbd7c2015-02-25 22:41:30 +0000808 // Increase the bitwidth of the element to the next pow-of-two
809 // (which is greater than 8 bits).
810 EltVT = EVT::getIntegerVT(Context, 1 + EltVT.getSizeInBits())
811 .getRoundIntegerType(Context);
812
813 // Stop trying when getting a non-simple element type.
814 // Note that vector elements may be greater than legal vector element
815 // types. Example: X86 XMM registers hold 64bit element on 32bit
816 // systems.
817 if (!EltVT.isSimple())
818 break;
819
820 // Build a new vector type and check if it is legal.
821 MVT NVT = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
822 // Found a legal promoted vector type.
823 if (NVT != MVT() && ValueTypeActions.getTypeAction(NVT) == TypeLegal)
824 return LegalizeKind(TypePromoteInteger,
825 EVT::getVectorVT(Context, EltVT, NumElts));
826 }
827
828 // Reset the type to the unexpanded type if we did not find a legal vector
829 // type with a promoted vector element type.
830 EltVT = OldEltVT;
831 }
832
833 // Try to widen the vector until a legal type is found.
834 // If there is no wider legal type, split the vector.
Eugene Zelenkofb7f7922017-09-21 23:20:16 +0000835 while (true) {
Eric Christopher75dbd7c2015-02-25 22:41:30 +0000836 // Round up to the next power of 2.
837 NumElts = (unsigned)NextPowerOf2(NumElts);
838
839 // If there is no simple vector type with this many elements then there
840 // cannot be a larger legal vector type. Note that this assumes that
841 // there are no skipped intermediate vector types in the simple types.
842 if (!EltVT.isSimple())
843 break;
844 MVT LargerVector = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
845 if (LargerVector == MVT())
846 break;
847
848 // If this type is legal then widen the vector.
849 if (ValueTypeActions.getTypeAction(LargerVector) == TypeLegal)
850 return LegalizeKind(TypeWidenVector, LargerVector);
851 }
852
853 // Widen odd vectors to next power of two.
854 if (!VT.isPow2VectorType()) {
855 EVT NVT = VT.getPow2VectorType(Context);
856 return LegalizeKind(TypeWidenVector, NVT);
857 }
858
859 // Vectors with illegal element types are expanded.
860 EVT NVT = EVT::getVectorVT(Context, EltVT, VT.getVectorNumElements() / 2);
861 return LegalizeKind(TypeSplitVector, NVT);
862}
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000863
864static unsigned getVectorTypeBreakdownMVT(MVT VT, MVT &IntermediateVT,
865 unsigned &NumIntermediates,
866 MVT &RegisterVT,
867 TargetLoweringBase *TLI) {
868 // Figure out the right, legal destination reg to copy into.
869 unsigned NumElts = VT.getVectorNumElements();
870 MVT EltTy = VT.getVectorElementType();
871
872 unsigned NumVectorRegs = 1;
873
874 // FIXME: We don't support non-power-of-2-sized vectors for now. Ideally we
875 // could break down into LHS/RHS like LegalizeDAG does.
876 if (!isPowerOf2_32(NumElts)) {
877 NumVectorRegs = NumElts;
878 NumElts = 1;
879 }
880
881 // Divide the input until we get to a supported size. This will always
882 // end with a scalar if the target doesn't support vectors.
883 while (NumElts > 1 && !TLI->isTypeLegal(MVT::getVectorVT(EltTy, NumElts))) {
884 NumElts >>= 1;
885 NumVectorRegs <<= 1;
886 }
887
888 NumIntermediates = NumVectorRegs;
889
890 MVT NewVT = MVT::getVectorVT(EltTy, NumElts);
891 if (!TLI->isTypeLegal(NewVT))
892 NewVT = EltTy;
893 IntermediateVT = NewVT;
894
895 unsigned NewVTSize = NewVT.getSizeInBits();
896
897 // Convert sizes such as i33 to i64.
898 if (!isPowerOf2_32(NewVTSize))
899 NewVTSize = NextPowerOf2(NewVTSize);
900
901 MVT DestVT = TLI->getRegisterType(NewVT);
902 RegisterVT = DestVT;
903 if (EVT(DestVT).bitsLT(NewVT)) // Value is expanded, e.g. i64 -> i16.
904 return NumVectorRegs*(NewVTSize/DestVT.getSizeInBits());
905
906 // Otherwise, promotion or legal types use the same number of registers as
907 // the vector decimated to the appropriate level.
908 return NumVectorRegs;
909}
910
911/// isLegalRC - Return true if the value types that can be represented by the
912/// specified register class are all legal.
Krzysztof Parzyszekc8e8e2a2017-04-24 19:51:12 +0000913bool TargetLoweringBase::isLegalRC(const TargetRegisterInfo &TRI,
914 const TargetRegisterClass &RC) const {
915 for (auto I = TRI.legalclasstypes_begin(RC); *I != MVT::Other; ++I)
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000916 if (isTypeLegal(*I))
917 return true;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000918 return false;
919}
920
Lang Hames39609992013-11-29 03:07:54 +0000921/// Replace/modify any TargetFrameIndex operands with a targte-dependent
922/// sequence of memory operands that is recognized by PrologEpilogInserter.
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +0000923MachineBasicBlock *
924TargetLoweringBase::emitPatchPoint(MachineInstr &InitialMI,
Lang Hames39609992013-11-29 03:07:54 +0000925 MachineBasicBlock *MBB) const {
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +0000926 MachineInstr *MI = &InitialMI;
Justin Bognerfdf9bf42017-10-10 23:50:49 +0000927 MachineFunction &MF = *MI->getMF();
Matthias Braun941a7052016-07-28 18:40:00 +0000928 MachineFrameInfo &MFI = MF.getFrameInfo();
Philip Reamescb0f9472015-12-23 23:44:28 +0000929
930 // We're handling multiple types of operands here:
931 // PATCHPOINT MetaArgs - live-in, read only, direct
932 // STATEPOINT Deopt Spill - live-through, read only, indirect
933 // STATEPOINT Deopt Alloca - live-through, read only, direct
934 // (We're currently conservative and mark the deopt slots read/write in
Fangrui Songf78650a2018-07-30 19:41:25 +0000935 // practice.)
Philip Reamescb0f9472015-12-23 23:44:28 +0000936 // STATEPOINT GC Spill - live-through, read/write, indirect
937 // STATEPOINT GC Alloca - live-through, read/write, direct
938 // The live-in vs live-through is handled already (the live through ones are
939 // all stack slots), but we need to handle the different type of stackmap
940 // operands and memory effects here.
Lang Hames39609992013-11-29 03:07:54 +0000941
942 // MI changes inside this loop as we grow operands.
943 for(unsigned OperIdx = 0; OperIdx != MI->getNumOperands(); ++OperIdx) {
944 MachineOperand &MO = MI->getOperand(OperIdx);
945 if (!MO.isFI())
946 continue;
947
948 // foldMemoryOperand builds a new MI after replacing a single FI operand
949 // with the canonical set of five x86 addressing-mode operands.
950 int FI = MO.getIndex();
951 MachineInstrBuilder MIB = BuildMI(MF, MI->getDebugLoc(), MI->getDesc());
952
953 // Copy operands before the frame-index.
954 for (unsigned i = 0; i < OperIdx; ++i)
Diana Picus116bbab2017-01-13 09:58:52 +0000955 MIB.add(MI->getOperand(i));
Philip Reamescb0f9472015-12-23 23:44:28 +0000956 // Add frame index operands recognized by stackmaps.cpp
957 if (MFI.isStatepointSpillSlotObjectIndex(FI)) {
958 // indirect-mem-ref tag, size, #FI, offset.
959 // Used for spills inserted by StatepointLowering. This codepath is not
960 // used for patchpoints/stackmaps at all, for these spilling is done via
961 // foldMemoryOperand callback only.
962 assert(MI->getOpcode() == TargetOpcode::STATEPOINT && "sanity");
963 MIB.addImm(StackMaps::IndirectMemRefOp);
964 MIB.addImm(MFI.getObjectSize(FI));
Diana Picus116bbab2017-01-13 09:58:52 +0000965 MIB.add(MI->getOperand(OperIdx));
Philip Reamescb0f9472015-12-23 23:44:28 +0000966 MIB.addImm(0);
967 } else {
968 // direct-mem-ref tag, #FI, offset.
969 // Used by patchpoint, and direct alloca arguments to statepoints
970 MIB.addImm(StackMaps::DirectMemRefOp);
Diana Picus116bbab2017-01-13 09:58:52 +0000971 MIB.add(MI->getOperand(OperIdx));
Philip Reamescb0f9472015-12-23 23:44:28 +0000972 MIB.addImm(0);
973 }
Lang Hames39609992013-11-29 03:07:54 +0000974 // Copy the operands after the frame index.
975 for (unsigned i = OperIdx + 1; i != MI->getNumOperands(); ++i)
Diana Picus116bbab2017-01-13 09:58:52 +0000976 MIB.add(MI->getOperand(i));
Lang Hames39609992013-11-29 03:07:54 +0000977
978 // Inherit previous memory operands.
Chandler Carruthc73c0302018-08-16 21:30:05 +0000979 MIB.cloneMemRefs(*MI);
Lang Hames39609992013-11-29 03:07:54 +0000980 assert(MIB->mayLoad() && "Folded a stackmap use to a non-load!");
981
982 // Add a new memory operand for this FI.
Lang Hames39609992013-11-29 03:07:54 +0000983 assert(MFI.getObjectOffset(FI) != -1);
Philip Reames0365f1a2014-12-01 22:52:56 +0000984
Justin Lebar0af80cd2016-07-15 18:26:59 +0000985 auto Flags = MachineMemOperand::MOLoad;
Philip Reames0365f1a2014-12-01 22:52:56 +0000986 if (MI->getOpcode() == TargetOpcode::STATEPOINT) {
987 Flags |= MachineMemOperand::MOStore;
988 Flags |= MachineMemOperand::MOVolatile;
989 }
Eric Christopherd9134482014-08-04 21:25:23 +0000990 MachineMemOperand *MMO = MF.getMachineMemOperand(
Alex Lorenze40c8a22015-08-11 23:09:45 +0000991 MachinePointerInfo::getFixedStack(MF, FI), Flags,
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000992 MF.getDataLayout().getPointerSize(), MFI.getObjectAlignment(FI));
Lang Hames39609992013-11-29 03:07:54 +0000993 MIB->addMemOperand(MF, MMO);
994
995 // Replace the instruction and update the operand index.
996 MBB->insert(MachineBasicBlock::iterator(MI), MIB);
997 OperIdx += (MIB->getNumOperands() - MI->getNumOperands()) - 1;
998 MI->eraseFromParent();
999 MI = MIB;
1000 }
1001 return MBB;
1002}
1003
Dean Michael Berriscdca0732018-02-01 02:21:54 +00001004MachineBasicBlock *
1005TargetLoweringBase::emitXRayCustomEvent(MachineInstr &MI,
1006 MachineBasicBlock *MBB) const {
1007 assert(MI.getOpcode() == TargetOpcode::PATCHABLE_EVENT_CALL &&
1008 "Called emitXRayCustomEvent on the wrong MI!");
1009 auto &MF = *MI.getMF();
1010 auto MIB = BuildMI(MF, MI.getDebugLoc(), MI.getDesc());
1011 for (unsigned OpIdx = 0; OpIdx != MI.getNumOperands(); ++OpIdx)
1012 MIB.add(MI.getOperand(OpIdx));
1013
1014 MBB->insert(MachineBasicBlock::iterator(MI), MIB);
1015 MI.eraseFromParent();
1016 return MBB;
1017}
1018
Keith Wyss3d868232018-04-17 21:30:29 +00001019MachineBasicBlock *
1020TargetLoweringBase::emitXRayTypedEvent(MachineInstr &MI,
1021 MachineBasicBlock *MBB) const {
1022 assert(MI.getOpcode() == TargetOpcode::PATCHABLE_TYPED_EVENT_CALL &&
1023 "Called emitXRayTypedEvent on the wrong MI!");
1024 auto &MF = *MI.getMF();
1025 auto MIB = BuildMI(MF, MI.getDebugLoc(), MI.getDesc());
1026 for (unsigned OpIdx = 0; OpIdx != MI.getNumOperands(); ++OpIdx)
1027 MIB.add(MI.getOperand(OpIdx));
1028
1029 MBB->insert(MachineBasicBlock::iterator(MI), MIB);
1030 MI.eraseFromParent();
1031 return MBB;
1032}
1033
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001034/// findRepresentativeClass - Return the largest legal super-reg register class
1035/// of the register class for the specified type and its associated "cost".
Eric Christopher720ab842015-03-03 19:47:14 +00001036// This function is in TargetLowering because it uses RegClassForVT which would
1037// need to be moved to TargetRegisterInfo and would necessitate moving
1038// isTypeLegal over as well - a massive change that would just require
1039// TargetLowering having a TargetRegisterInfo class member that it would use.
Eric Christopher23a3a7c2015-02-26 00:00:24 +00001040std::pair<const TargetRegisterClass *, uint8_t>
1041TargetLoweringBase::findRepresentativeClass(const TargetRegisterInfo *TRI,
1042 MVT VT) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001043 const TargetRegisterClass *RC = RegClassForVT[VT.SimpleTy];
1044 if (!RC)
1045 return std::make_pair(RC, 0);
1046
1047 // Compute the set of all super-register classes.
1048 BitVector SuperRegRC(TRI->getNumRegClasses());
1049 for (SuperRegClassIterator RCI(RC, TRI); RCI.isValid(); ++RCI)
1050 SuperRegRC.setBitsInMask(RCI.getMask());
1051
1052 // Find the first legal register class with the largest spill size.
1053 const TargetRegisterClass *BestRC = RC;
Francis Visoiu Mistrihb52e0362017-05-17 01:07:53 +00001054 for (unsigned i : SuperRegRC.set_bits()) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001055 const TargetRegisterClass *SuperRC = TRI->getRegClass(i);
1056 // We want the largest possible spill size.
Krzysztof Parzyszek44e25f32017-04-24 18:55:33 +00001057 if (TRI->getSpillSize(*SuperRC) <= TRI->getSpillSize(*BestRC))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001058 continue;
Krzysztof Parzyszekc8e8e2a2017-04-24 19:51:12 +00001059 if (!isLegalRC(*TRI, *SuperRC))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001060 continue;
1061 BestRC = SuperRC;
1062 }
1063 return std::make_pair(BestRC, 1);
1064}
1065
1066/// computeRegisterProperties - Once all of the register classes are added,
1067/// this allows us to compute derived properties we expose.
Eric Christopher23a3a7c2015-02-26 00:00:24 +00001068void TargetLoweringBase::computeRegisterProperties(
1069 const TargetRegisterInfo *TRI) {
Craig Topper6438fc32014-11-17 00:26:50 +00001070 static_assert(MVT::LAST_VALUETYPE <= MVT::MAX_ALLOWED_VALUETYPE,
1071 "Too many value types for ValueTypeActions to hold!");
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001072
1073 // Everything defaults to needing one register.
1074 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i) {
1075 NumRegistersForVT[i] = 1;
1076 RegisterTypeForVT[i] = TransformToType[i] = (MVT::SimpleValueType)i;
1077 }
1078 // ...except isVoid, which doesn't need any registers.
1079 NumRegistersForVT[MVT::isVoid] = 0;
1080
1081 // Find the largest integer register class.
1082 unsigned LargestIntReg = MVT::LAST_INTEGER_VALUETYPE;
Craig Topperc0196b12014-04-14 00:51:57 +00001083 for (; RegClassForVT[LargestIntReg] == nullptr; --LargestIntReg)
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001084 assert(LargestIntReg != MVT::i1 && "No integer registers defined!");
1085
1086 // Every integer value type larger than this largest register takes twice as
1087 // many registers to represent as the previous ValueType.
1088 for (unsigned ExpandedReg = LargestIntReg + 1;
1089 ExpandedReg <= MVT::LAST_INTEGER_VALUETYPE; ++ExpandedReg) {
1090 NumRegistersForVT[ExpandedReg] = 2*NumRegistersForVT[ExpandedReg-1];
1091 RegisterTypeForVT[ExpandedReg] = (MVT::SimpleValueType)LargestIntReg;
1092 TransformToType[ExpandedReg] = (MVT::SimpleValueType)(ExpandedReg - 1);
1093 ValueTypeActions.setTypeAction((MVT::SimpleValueType)ExpandedReg,
1094 TypeExpandInteger);
1095 }
1096
1097 // Inspect all of the ValueType's smaller than the largest integer
1098 // register to see which ones need promotion.
1099 unsigned LegalIntReg = LargestIntReg;
1100 for (unsigned IntReg = LargestIntReg - 1;
1101 IntReg >= (unsigned)MVT::i1; --IntReg) {
1102 MVT IVT = (MVT::SimpleValueType)IntReg;
1103 if (isTypeLegal(IVT)) {
1104 LegalIntReg = IntReg;
1105 } else {
1106 RegisterTypeForVT[IntReg] = TransformToType[IntReg] =
Serge Gueltona4d9e222018-11-07 16:17:30 +00001107 (MVT::SimpleValueType)LegalIntReg;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001108 ValueTypeActions.setTypeAction(IVT, TypePromoteInteger);
1109 }
1110 }
1111
1112 // ppcf128 type is really two f64's.
1113 if (!isTypeLegal(MVT::ppcf128)) {
Petar Jovanovic23e44f52016-02-04 14:43:50 +00001114 if (isTypeLegal(MVT::f64)) {
1115 NumRegistersForVT[MVT::ppcf128] = 2*NumRegistersForVT[MVT::f64];
1116 RegisterTypeForVT[MVT::ppcf128] = MVT::f64;
1117 TransformToType[MVT::ppcf128] = MVT::f64;
1118 ValueTypeActions.setTypeAction(MVT::ppcf128, TypeExpandFloat);
1119 } else {
1120 NumRegistersForVT[MVT::ppcf128] = NumRegistersForVT[MVT::i128];
1121 RegisterTypeForVT[MVT::ppcf128] = RegisterTypeForVT[MVT::i128];
1122 TransformToType[MVT::ppcf128] = MVT::i128;
1123 ValueTypeActions.setTypeAction(MVT::ppcf128, TypeSoftenFloat);
1124 }
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001125 }
1126
Akira Hatanaka3d055582013-03-01 21:11:44 +00001127 // Decide how to handle f128. If the target does not have native f128 support,
1128 // expand it to i128 and we will be generating soft float library calls.
1129 if (!isTypeLegal(MVT::f128)) {
1130 NumRegistersForVT[MVT::f128] = NumRegistersForVT[MVT::i128];
1131 RegisterTypeForVT[MVT::f128] = RegisterTypeForVT[MVT::i128];
1132 TransformToType[MVT::f128] = MVT::i128;
1133 ValueTypeActions.setTypeAction(MVT::f128, TypeSoftenFloat);
1134 }
1135
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001136 // Decide how to handle f64. If the target does not have native f64 support,
1137 // expand it to i64 and we will be generating soft float library calls.
1138 if (!isTypeLegal(MVT::f64)) {
1139 NumRegistersForVT[MVT::f64] = NumRegistersForVT[MVT::i64];
1140 RegisterTypeForVT[MVT::f64] = RegisterTypeForVT[MVT::i64];
1141 TransformToType[MVT::f64] = MVT::i64;
1142 ValueTypeActions.setTypeAction(MVT::f64, TypeSoftenFloat);
1143 }
1144
Ahmed Bougachaa0f35592015-03-28 01:22:37 +00001145 // Decide how to handle f32. If the target does not have native f32 support,
1146 // expand it to i32 and we will be generating soft float library calls.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001147 if (!isTypeLegal(MVT::f32)) {
Ahmed Bougachaa0f35592015-03-28 01:22:37 +00001148 NumRegistersForVT[MVT::f32] = NumRegistersForVT[MVT::i32];
1149 RegisterTypeForVT[MVT::f32] = RegisterTypeForVT[MVT::i32];
1150 TransformToType[MVT::f32] = MVT::i32;
1151 ValueTypeActions.setTypeAction(MVT::f32, TypeSoftenFloat);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001152 }
1153
Oliver Stannard56358572015-11-09 11:03:18 +00001154 // Decide how to handle f16. If the target does not have native f16 support,
1155 // promote it to f32, because there are no f16 library calls (except for
1156 // conversions).
Tim Northover20bd0ce2014-07-18 12:41:46 +00001157 if (!isTypeLegal(MVT::f16)) {
Oliver Stannard56358572015-11-09 11:03:18 +00001158 NumRegistersForVT[MVT::f16] = NumRegistersForVT[MVT::f32];
1159 RegisterTypeForVT[MVT::f16] = RegisterTypeForVT[MVT::f32];
1160 TransformToType[MVT::f16] = MVT::f32;
1161 ValueTypeActions.setTypeAction(MVT::f16, TypePromoteFloat);
Tim Northover20bd0ce2014-07-18 12:41:46 +00001162 }
1163
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001164 // Loop over all of the vector value types to see which need transformations.
1165 for (unsigned i = MVT::FIRST_VECTOR_VALUETYPE;
1166 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001167 MVT VT = (MVT::SimpleValueType) i;
1168 if (isTypeLegal(VT))
1169 continue;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001170
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001171 MVT EltVT = VT.getVectorElementType();
1172 unsigned NElts = VT.getVectorNumElements();
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001173 bool IsLegalWiderType = false;
1174 LegalizeTypeAction PreferredAction = getPreferredVectorAction(VT);
1175 switch (PreferredAction) {
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001176 case TypePromoteInteger:
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001177 // Try to promote the elements of integer vectors. If no legal
1178 // promotion was found, fall through to the widen-vector method.
Matt Arsenault940d19a2016-04-22 21:16:17 +00001179 for (unsigned nVT = i + 1; nVT <= MVT::LAST_INTEGER_VECTOR_VALUETYPE; ++nVT) {
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001180 MVT SVT = (MVT::SimpleValueType) nVT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001181 // Promote vectors of integers to vectors with the same number
1182 // of elements, with a wider element type.
Sanjay Patel1ed771f2016-09-14 16:37:15 +00001183 if (SVT.getScalarSizeInBits() > EltVT.getSizeInBits() &&
Matt Arsenault940d19a2016-04-22 21:16:17 +00001184 SVT.getVectorNumElements() == NElts && isTypeLegal(SVT)) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001185 TransformToType[i] = SVT;
1186 RegisterTypeForVT[i] = SVT;
1187 NumRegistersForVT[i] = 1;
1188 ValueTypeActions.setTypeAction(VT, TypePromoteInteger);
1189 IsLegalWiderType = true;
1190 break;
1191 }
1192 }
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001193 if (IsLegalWiderType)
1194 break;
Galina Kistanovabd79f732017-06-03 05:11:14 +00001195 LLVM_FALLTHROUGH;
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001196
1197 case TypeWidenVector:
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001198 // Try to widen the vector.
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001199 for (unsigned nVT = i + 1; nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
1200 MVT SVT = (MVT::SimpleValueType) nVT;
1201 if (SVT.getVectorElementType() == EltVT
1202 && SVT.getVectorNumElements() > NElts && isTypeLegal(SVT)) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001203 TransformToType[i] = SVT;
1204 RegisterTypeForVT[i] = SVT;
1205 NumRegistersForVT[i] = 1;
1206 ValueTypeActions.setTypeAction(VT, TypeWidenVector);
1207 IsLegalWiderType = true;
1208 break;
1209 }
1210 }
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001211 if (IsLegalWiderType)
1212 break;
Galina Kistanovabd79f732017-06-03 05:11:14 +00001213 LLVM_FALLTHROUGH;
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001214
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001215 case TypeSplitVector:
1216 case TypeScalarizeVector: {
1217 MVT IntermediateVT;
1218 MVT RegisterVT;
1219 unsigned NumIntermediates;
1220 NumRegistersForVT[i] = getVectorTypeBreakdownMVT(VT, IntermediateVT,
1221 NumIntermediates, RegisterVT, this);
1222 RegisterTypeForVT[i] = RegisterVT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001223
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001224 MVT NVT = VT.getPow2VectorType();
1225 if (NVT == VT) {
1226 // Type is already a power of 2. The default action is to split.
1227 TransformToType[i] = MVT::Other;
1228 if (PreferredAction == TypeScalarizeVector)
1229 ValueTypeActions.setTypeAction(VT, TypeScalarizeVector);
Hao Liue02b1a02014-10-31 02:35:34 +00001230 else if (PreferredAction == TypeSplitVector)
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001231 ValueTypeActions.setTypeAction(VT, TypeSplitVector);
Hao Liue02b1a02014-10-31 02:35:34 +00001232 else
1233 // Set type action according to the number of elements.
1234 ValueTypeActions.setTypeAction(VT, NElts == 1 ? TypeScalarizeVector
1235 : TypeSplitVector);
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001236 } else {
1237 TransformToType[i] = NVT;
1238 ValueTypeActions.setTypeAction(VT, TypeWidenVector);
1239 }
1240 break;
1241 }
1242 default:
1243 llvm_unreachable("Unknown vector legalization action!");
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001244 }
1245 }
1246
1247 // Determine the 'representative' register class for each value type.
1248 // An representative register class is the largest (meaning one which is
1249 // not a sub-register class / subreg register class) legal register class for
1250 // a group of value types. For example, on i386, i8, i16, and i32
1251 // representative would be GR32; while on x86_64 it's GR64.
1252 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i) {
1253 const TargetRegisterClass* RRC;
1254 uint8_t Cost;
Eric Christopher23a3a7c2015-02-26 00:00:24 +00001255 std::tie(RRC, Cost) = findRepresentativeClass(TRI, (MVT::SimpleValueType)i);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001256 RepRegClassForVT[i] = RRC;
1257 RepRegClassCostForVT[i] = Cost;
1258 }
1259}
1260
Mehdi Amini44ede332015-07-09 02:09:04 +00001261EVT TargetLoweringBase::getSetCCResultType(const DataLayout &DL, LLVMContext &,
1262 EVT VT) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001263 assert(!VT.isVector() && "No default SetCC type for vectors!");
Mehdi Amini44ede332015-07-09 02:09:04 +00001264 return getPointerTy(DL).SimpleTy;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001265}
1266
1267MVT::SimpleValueType TargetLoweringBase::getCmpLibcallReturnType() const {
1268 return MVT::i32; // return the default value
1269}
1270
1271/// getVectorTypeBreakdown - Vector types are broken down into some number of
1272/// legal first class types. For example, MVT::v8f32 maps to 2 MVT::v4f32
1273/// with Altivec or SSE1, or 8 promoted MVT::f64 values with the X86 FP stack.
1274/// Similarly, MVT::v2i64 turns into 4 MVT::i32 values with both PPC and X86.
1275///
1276/// This method returns the number of registers needed, and the VT for each
1277/// register. It also returns the VT and quantity of the intermediate values
1278/// before they are promoted/expanded.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001279unsigned TargetLoweringBase::getVectorTypeBreakdown(LLVMContext &Context, EVT VT,
1280 EVT &IntermediateVT,
1281 unsigned &NumIntermediates,
1282 MVT &RegisterVT) const {
1283 unsigned NumElts = VT.getVectorNumElements();
1284
1285 // If there is a wider vector type with the same element type as this one,
1286 // or a promoted vector type that has the same number of elements which
1287 // are wider, then we should convert to that legal vector type.
1288 // This handles things like <2 x float> -> <4 x float> and
1289 // <4 x i1> -> <4 x i32>.
1290 LegalizeTypeAction TA = getTypeAction(Context, VT);
1291 if (NumElts != 1 && (TA == TypeWidenVector || TA == TypePromoteInteger)) {
1292 EVT RegisterEVT = getTypeToTransformTo(Context, VT);
1293 if (isTypeLegal(RegisterEVT)) {
1294 IntermediateVT = RegisterEVT;
1295 RegisterVT = RegisterEVT.getSimpleVT();
1296 NumIntermediates = 1;
1297 return 1;
1298 }
1299 }
1300
1301 // Figure out the right, legal destination reg to copy into.
1302 EVT EltTy = VT.getVectorElementType();
1303
1304 unsigned NumVectorRegs = 1;
1305
1306 // FIXME: We don't support non-power-of-2-sized vectors for now. Ideally we
1307 // could break down into LHS/RHS like LegalizeDAG does.
1308 if (!isPowerOf2_32(NumElts)) {
1309 NumVectorRegs = NumElts;
1310 NumElts = 1;
1311 }
1312
1313 // Divide the input until we get to a supported size. This will always
1314 // end with a scalar if the target doesn't support vectors.
1315 while (NumElts > 1 && !isTypeLegal(
1316 EVT::getVectorVT(Context, EltTy, NumElts))) {
1317 NumElts >>= 1;
1318 NumVectorRegs <<= 1;
1319 }
1320
1321 NumIntermediates = NumVectorRegs;
1322
1323 EVT NewVT = EVT::getVectorVT(Context, EltTy, NumElts);
1324 if (!isTypeLegal(NewVT))
1325 NewVT = EltTy;
1326 IntermediateVT = NewVT;
1327
1328 MVT DestVT = getRegisterType(Context, NewVT);
1329 RegisterVT = DestVT;
1330 unsigned NewVTSize = NewVT.getSizeInBits();
1331
1332 // Convert sizes such as i33 to i64.
1333 if (!isPowerOf2_32(NewVTSize))
1334 NewVTSize = NextPowerOf2(NewVTSize);
1335
1336 if (EVT(DestVT).bitsLT(NewVT)) // Value is expanded, e.g. i64 -> i16.
1337 return NumVectorRegs*(NewVTSize/DestVT.getSizeInBits());
1338
1339 // Otherwise, promotion or legal types use the same number of registers as
1340 // the vector decimated to the appropriate level.
1341 return NumVectorRegs;
1342}
1343
1344/// Get the EVTs and ArgFlags collections that represent the legalized return
1345/// type of the given function. This does not require a DAG or a return value,
1346/// and is suitable for use before any DAGs for the function are constructed.
1347/// TODO: Move this out of TargetLowering.cpp.
Matt Arsenault81920b02018-07-28 13:25:19 +00001348void llvm::GetReturnInfo(CallingConv::ID CC, Type *ReturnType,
1349 AttributeList attr,
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001350 SmallVectorImpl<ISD::OutputArg> &Outs,
Mehdi Amini56228da2015-07-09 01:57:34 +00001351 const TargetLowering &TLI, const DataLayout &DL) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001352 SmallVector<EVT, 4> ValueVTs;
Mehdi Amini56228da2015-07-09 01:57:34 +00001353 ComputeValueVTs(TLI, DL, ReturnType, ValueVTs);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001354 unsigned NumValues = ValueVTs.size();
1355 if (NumValues == 0) return;
1356
1357 for (unsigned j = 0, f = NumValues; j != f; ++j) {
1358 EVT VT = ValueVTs[j];
1359 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1360
Reid Klecknerb5180542017-03-21 16:57:19 +00001361 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::SExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001362 ExtendKind = ISD::SIGN_EXTEND;
Reid Klecknerb5180542017-03-21 16:57:19 +00001363 else if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::ZExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001364 ExtendKind = ISD::ZERO_EXTEND;
1365
1366 // FIXME: C calling convention requires the return type to be promoted to
1367 // at least 32-bit. But this is not necessary for non-C calling
1368 // conventions. The frontend should mark functions whose return values
1369 // require promoting with signext or zeroext attributes.
1370 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
1371 MVT MinVT = TLI.getRegisterType(ReturnType->getContext(), MVT::i32);
1372 if (VT.bitsLT(MinVT))
1373 VT = MinVT;
1374 }
1375
Simon Dardis212cccb2017-06-09 14:37:08 +00001376 unsigned NumParts =
Matt Arsenault81920b02018-07-28 13:25:19 +00001377 TLI.getNumRegistersForCallingConv(ReturnType->getContext(), CC, VT);
Simon Dardis212cccb2017-06-09 14:37:08 +00001378 MVT PartVT =
Matt Arsenault81920b02018-07-28 13:25:19 +00001379 TLI.getRegisterTypeForCallingConv(ReturnType->getContext(), CC, VT);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001380
1381 // 'inreg' on function refers to return value
1382 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Reid Klecknerb5180542017-03-21 16:57:19 +00001383 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::InReg))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001384 Flags.setInReg();
1385
1386 // Propagate extension type if any
Reid Klecknerb5180542017-03-21 16:57:19 +00001387 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::SExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001388 Flags.setSExt();
Reid Klecknerb5180542017-03-21 16:57:19 +00001389 else if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::ZExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001390 Flags.setZExt();
1391
1392 for (unsigned i = 0; i < NumParts; ++i)
Tom Stellard8d7d4de2013-10-23 00:44:24 +00001393 Outs.push_back(ISD::OutputArg(Flags, PartVT, VT, /*isFixed=*/true, 0, 0));
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001394 }
1395}
1396
1397/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1398/// function arguments in the caller parameter area. This is the actual
1399/// alignment, not its logarithm.
Mehdi Amini5c183d52015-07-09 02:09:28 +00001400unsigned TargetLoweringBase::getByValTypeAlignment(Type *Ty,
1401 const DataLayout &DL) const {
1402 return DL.getABITypeAlignment(Ty);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001403}
1404
Sanjay Patel0f9dcf82015-07-29 18:24:18 +00001405bool TargetLoweringBase::allowsMemoryAccess(LLVMContext &Context,
1406 const DataLayout &DL, EVT VT,
1407 unsigned AddrSpace,
1408 unsigned Alignment,
1409 bool *Fast) const {
1410 // Check if the specified alignment is sufficient based on the data layout.
1411 // TODO: While using the data layout works in practice, a better solution
1412 // would be to implement this check directly (make this a virtual function).
1413 // For example, the ABI alignment may change based on software platform while
1414 // this function should only be affected by hardware implementation.
1415 Type *Ty = VT.getTypeForEVT(Context);
1416 if (Alignment >= DL.getABITypeAlignment(Ty)) {
1417 // Assume that an access that meets the ABI-specified alignment is fast.
1418 if (Fast != nullptr)
1419 *Fast = true;
1420 return true;
1421 }
Fangrui Songf78650a2018-07-30 19:41:25 +00001422
Sanjay Patel0f9dcf82015-07-29 18:24:18 +00001423 // This is a misaligned access.
1424 return allowsMisalignedMemoryAccesses(VT, AddrSpace, Alignment, Fast);
1425}
1426
Sanjay Pateld66607b2016-04-26 17:11:17 +00001427BranchProbability TargetLoweringBase::getPredictableBranchThreshold() const {
1428 return BranchProbability(MinPercentageForPredictableBranch, 100);
1429}
Sanjay Patel0f9dcf82015-07-29 18:24:18 +00001430
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001431//===----------------------------------------------------------------------===//
1432// TargetTransformInfo Helpers
1433//===----------------------------------------------------------------------===//
1434
1435int TargetLoweringBase::InstructionOpcodeToISD(unsigned Opcode) const {
1436 enum InstructionOpcodes {
1437#define HANDLE_INST(NUM, OPCODE, CLASS) OPCODE = NUM,
1438#define LAST_OTHER_INST(NUM) InstructionOpcodesCount = NUM
1439#include "llvm/IR/Instruction.def"
1440 };
1441 switch (static_cast<InstructionOpcodes>(Opcode)) {
1442 case Ret: return 0;
1443 case Br: return 0;
1444 case Switch: return 0;
1445 case IndirectBr: return 0;
1446 case Invoke: return 0;
1447 case Resume: return 0;
1448 case Unreachable: return 0;
David Majnemer654e1302015-07-31 17:58:14 +00001449 case CleanupRet: return 0;
David Majnemer654e1302015-07-31 17:58:14 +00001450 case CatchRet: return 0;
David Majnemer8a1c45d2015-12-12 05:38:55 +00001451 case CatchPad: return 0;
1452 case CatchSwitch: return 0;
David Majnemer8a1c45d2015-12-12 05:38:55 +00001453 case CleanupPad: return 0;
Cameron McInallycbde0d92018-11-13 18:15:47 +00001454 case FNeg: return ISD::FNEG;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001455 case Add: return ISD::ADD;
1456 case FAdd: return ISD::FADD;
1457 case Sub: return ISD::SUB;
1458 case FSub: return ISD::FSUB;
1459 case Mul: return ISD::MUL;
1460 case FMul: return ISD::FMUL;
1461 case UDiv: return ISD::UDIV;
Benjamin Kramerce4b3fe2014-04-27 18:47:54 +00001462 case SDiv: return ISD::SDIV;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001463 case FDiv: return ISD::FDIV;
1464 case URem: return ISD::UREM;
1465 case SRem: return ISD::SREM;
1466 case FRem: return ISD::FREM;
1467 case Shl: return ISD::SHL;
1468 case LShr: return ISD::SRL;
1469 case AShr: return ISD::SRA;
1470 case And: return ISD::AND;
1471 case Or: return ISD::OR;
1472 case Xor: return ISD::XOR;
1473 case Alloca: return 0;
1474 case Load: return ISD::LOAD;
1475 case Store: return ISD::STORE;
1476 case GetElementPtr: return 0;
1477 case Fence: return 0;
1478 case AtomicCmpXchg: return 0;
1479 case AtomicRMW: return 0;
1480 case Trunc: return ISD::TRUNCATE;
1481 case ZExt: return ISD::ZERO_EXTEND;
1482 case SExt: return ISD::SIGN_EXTEND;
1483 case FPToUI: return ISD::FP_TO_UINT;
1484 case FPToSI: return ISD::FP_TO_SINT;
1485 case UIToFP: return ISD::UINT_TO_FP;
1486 case SIToFP: return ISD::SINT_TO_FP;
1487 case FPTrunc: return ISD::FP_ROUND;
1488 case FPExt: return ISD::FP_EXTEND;
1489 case PtrToInt: return ISD::BITCAST;
1490 case IntToPtr: return ISD::BITCAST;
1491 case BitCast: return ISD::BITCAST;
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001492 case AddrSpaceCast: return ISD::ADDRSPACECAST;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001493 case ICmp: return ISD::SETCC;
1494 case FCmp: return ISD::SETCC;
1495 case PHI: return 0;
1496 case Call: return 0;
1497 case Select: return ISD::SELECT;
1498 case UserOp1: return 0;
1499 case UserOp2: return 0;
1500 case VAArg: return 0;
1501 case ExtractElement: return ISD::EXTRACT_VECTOR_ELT;
1502 case InsertElement: return ISD::INSERT_VECTOR_ELT;
1503 case ShuffleVector: return ISD::VECTOR_SHUFFLE;
1504 case ExtractValue: return ISD::MERGE_VALUES;
1505 case InsertValue: return ISD::MERGE_VALUES;
1506 case LandingPad: return 0;
1507 }
1508
1509 llvm_unreachable("Unknown instruction type encountered!");
1510}
1511
Chandler Carruth93205eb2015-08-05 18:08:10 +00001512std::pair<int, MVT>
Mehdi Amini44ede332015-07-09 02:09:04 +00001513TargetLoweringBase::getTypeLegalizationCost(const DataLayout &DL,
1514 Type *Ty) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001515 LLVMContext &C = Ty->getContext();
Mehdi Amini44ede332015-07-09 02:09:04 +00001516 EVT MTy = getValueType(DL, Ty);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001517
Chandler Carruth93205eb2015-08-05 18:08:10 +00001518 int Cost = 1;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001519 // We keep legalizing the type until we find a legal kind. We assume that
1520 // the only operation that costs anything is the split. After splitting
1521 // we need to handle two types.
1522 while (true) {
1523 LegalizeKind LK = getTypeConversion(C, MTy);
1524
1525 if (LK.first == TypeLegal)
1526 return std::make_pair(Cost, MTy.getSimpleVT());
1527
1528 if (LK.first == TypeSplitVector || LK.first == TypeExpandInteger)
1529 Cost *= 2;
1530
Chih-Hung Hsiehed7d81e2015-12-03 22:02:40 +00001531 // Do not loop with f128 type.
1532 if (MTy == LK.second)
1533 return std::make_pair(Cost, MTy.getSimpleVT());
1534
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001535 // Keep legalizing the type.
1536 MTy = LK.second;
1537 }
1538}
1539
David L Kreitzerd5c67552016-10-14 17:56:00 +00001540Value *TargetLoweringBase::getDefaultSafeStackPointerLocation(IRBuilder<> &IRB,
1541 bool UseTLS) const {
1542 // compiler-rt provides a variable with a magic name. Targets that do not
1543 // link with compiler-rt may also provide such a variable.
1544 Module *M = IRB.GetInsertBlock()->getParent()->getParent();
1545 const char *UnsafeStackPtrVar = "__safestack_unsafe_stack_ptr";
1546 auto UnsafeStackPtr =
1547 dyn_cast_or_null<GlobalVariable>(M->getNamedValue(UnsafeStackPtrVar));
1548
1549 Type *StackPtrTy = Type::getInt8PtrTy(M->getContext());
1550
1551 if (!UnsafeStackPtr) {
1552 auto TLSModel = UseTLS ?
1553 GlobalValue::InitialExecTLSModel :
1554 GlobalValue::NotThreadLocal;
1555 // The global variable is not defined yet, define it ourselves.
1556 // We use the initial-exec TLS model because we do not support the
1557 // variable living anywhere other than in the main executable.
1558 UnsafeStackPtr = new GlobalVariable(
1559 *M, StackPtrTy, false, GlobalValue::ExternalLinkage, nullptr,
1560 UnsafeStackPtrVar, nullptr, TLSModel);
1561 } else {
1562 // The variable exists, check its type and attributes.
1563 if (UnsafeStackPtr->getValueType() != StackPtrTy)
1564 report_fatal_error(Twine(UnsafeStackPtrVar) + " must have void* type");
1565 if (UseTLS != UnsafeStackPtr->isThreadLocal())
1566 report_fatal_error(Twine(UnsafeStackPtrVar) + " must " +
1567 (UseTLS ? "" : "not ") + "be thread-local");
1568 }
1569 return UnsafeStackPtr;
1570}
1571
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +00001572Value *TargetLoweringBase::getSafeStackPointerLocation(IRBuilder<> &IRB) const {
1573 if (!TM.getTargetTriple().isAndroid())
David L Kreitzerd5c67552016-10-14 17:56:00 +00001574 return getDefaultSafeStackPointerLocation(IRB, true);
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +00001575
1576 // Android provides a libc function to retrieve the address of the current
1577 // thread's unsafe stack pointer.
1578 Module *M = IRB.GetInsertBlock()->getParent()->getParent();
1579 Type *StackPtrTy = Type::getInt8PtrTy(M->getContext());
1580 Value *Fn = M->getOrInsertFunction("__safestack_pointer_address",
Serge Guelton59a2d7b2017-04-11 15:01:18 +00001581 StackPtrTy->getPointerTo(0));
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +00001582 return IRB.CreateCall(Fn);
1583}
1584
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001585//===----------------------------------------------------------------------===//
1586// Loop Strength Reduction hooks
1587//===----------------------------------------------------------------------===//
1588
1589/// isLegalAddressingMode - Return true if the addressing mode represented
1590/// by AM is legal for this target, for a load/store of the specified type.
Mehdi Amini0cdec1e2015-07-09 02:09:40 +00001591bool TargetLoweringBase::isLegalAddressingMode(const DataLayout &DL,
1592 const AddrMode &AM, Type *Ty,
Jonas Paulsson024e3192017-07-21 11:59:37 +00001593 unsigned AS, Instruction *I) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001594 // The default implementation of this implements a conservative RISCy, r+r and
1595 // r+i addr mode.
1596
1597 // Allows a sign-extended 16-bit immediate field.
1598 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
1599 return false;
1600
1601 // No global is ever allowed as a base.
1602 if (AM.BaseGV)
1603 return false;
1604
1605 // Only support r+r,
1606 switch (AM.Scale) {
1607 case 0: // "r+i" or just "i", depending on HasBaseReg.
1608 break;
1609 case 1:
1610 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
1611 return false;
1612 // Otherwise we have r+r or r+i.
1613 break;
1614 case 2:
1615 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
1616 return false;
1617 // Allow 2*r as r+r.
1618 break;
Tom Stellard728d4172014-02-14 21:10:34 +00001619 default: // Don't allow n * r
1620 return false;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001621 }
1622
1623 return true;
1624}
Tim Shen00127562016-04-08 21:26:31 +00001625
1626//===----------------------------------------------------------------------===//
1627// Stack Protector
1628//===----------------------------------------------------------------------===//
1629
1630// For OpenBSD return its special guard variable. Otherwise return nullptr,
1631// so that SelectionDAG handle SSP.
1632Value *TargetLoweringBase::getIRStackGuard(IRBuilder<> &IRB) const {
1633 if (getTargetMachine().getTargetTriple().isOSOpenBSD()) {
1634 Module &M = *IRB.GetInsertBlock()->getParent()->getParent();
1635 PointerType *PtrTy = Type::getInt8PtrTy(M.getContext());
Tim Shena5cc25e2016-08-22 18:26:27 +00001636 return M.getOrInsertGlobal("__guard_local", PtrTy);
Tim Shen00127562016-04-08 21:26:31 +00001637 }
1638 return nullptr;
1639}
1640
1641// Currently only support "standard" __stack_chk_guard.
1642// TODO: add LOAD_STACK_GUARD support.
1643void TargetLoweringBase::insertSSPDeclarations(Module &M) const {
Eli Friedman06441302018-04-21 00:07:46 +00001644 if (!M.getNamedValue("__stack_chk_guard"))
1645 new GlobalVariable(M, Type::getInt8PtrTy(M.getContext()), false,
1646 GlobalVariable::ExternalLinkage,
1647 nullptr, "__stack_chk_guard");
Tim Shen00127562016-04-08 21:26:31 +00001648}
1649
1650// Currently only support "standard" __stack_chk_guard.
1651// TODO: add LOAD_STACK_GUARD support.
Tim Shena1d8bc52016-04-19 20:14:52 +00001652Value *TargetLoweringBase::getSDagStackGuard(const Module &M) const {
Eli Friedman06441302018-04-21 00:07:46 +00001653 return M.getNamedValue("__stack_chk_guard");
Tim Shen00127562016-04-08 21:26:31 +00001654}
Etienne Bergeron22bfa832016-06-07 20:15:35 +00001655
1656Value *TargetLoweringBase::getSSPStackGuardCheck(const Module &M) const {
1657 return nullptr;
1658}
Evandro Menezese45de8a2016-09-26 15:32:33 +00001659
Evandro Menezeseb97e352016-10-25 19:53:51 +00001660unsigned TargetLoweringBase::getMinimumJumpTableEntries() const {
1661 return MinimumJumpTableEntries;
1662}
1663
1664void TargetLoweringBase::setMinimumJumpTableEntries(unsigned Val) {
1665 MinimumJumpTableEntries = Val;
1666}
1667
Jun Bum Lim919f9e82017-04-28 16:04:03 +00001668unsigned TargetLoweringBase::getMinimumJumpTableDensity(bool OptForSize) const {
1669 return OptForSize ? OptsizeJumpTableDensity : JumpTableDensity;
1670}
1671
Evandro Menezese45de8a2016-09-26 15:32:33 +00001672unsigned TargetLoweringBase::getMaximumJumpTableSize() const {
1673 return MaximumJumpTableSize;
1674}
1675
1676void TargetLoweringBase::setMaximumJumpTableSize(unsigned Val) {
1677 MaximumJumpTableSize = Val;
1678}
Sanjay Patel0051efc2016-10-20 16:55:45 +00001679
1680//===----------------------------------------------------------------------===//
1681// Reciprocal Estimates
1682//===----------------------------------------------------------------------===//
1683
1684/// Get the reciprocal estimate attribute string for a function that will
1685/// override the target defaults.
1686static StringRef getRecipEstimateForFunc(MachineFunction &MF) {
Matthias Braunf1caa282017-12-15 22:22:58 +00001687 const Function &F = MF.getFunction();
1688 return F.getFnAttribute("reciprocal-estimates").getValueAsString();
Sanjay Patel0051efc2016-10-20 16:55:45 +00001689}
1690
1691/// Construct a string for the given reciprocal operation of the given type.
1692/// This string should match the corresponding option to the front-end's
1693/// "-mrecip" flag assuming those strings have been passed through in an
1694/// attribute string. For example, "vec-divf" for a division of a vXf32.
1695static std::string getReciprocalOpName(bool IsSqrt, EVT VT) {
1696 std::string Name = VT.isVector() ? "vec-" : "";
1697
1698 Name += IsSqrt ? "sqrt" : "div";
1699
1700 // TODO: Handle "half" or other float types?
1701 if (VT.getScalarType() == MVT::f64) {
1702 Name += "d";
1703 } else {
1704 assert(VT.getScalarType() == MVT::f32 &&
1705 "Unexpected FP type for reciprocal estimate");
1706 Name += "f";
1707 }
1708
1709 return Name;
1710}
1711
1712/// Return the character position and value (a single numeric character) of a
1713/// customized refinement operation in the input string if it exists. Return
1714/// false if there is no customized refinement step count.
1715static bool parseRefinementStep(StringRef In, size_t &Position,
1716 uint8_t &Value) {
1717 const char RefStepToken = ':';
1718 Position = In.find(RefStepToken);
1719 if (Position == StringRef::npos)
1720 return false;
1721
1722 StringRef RefStepString = In.substr(Position + 1);
1723 // Allow exactly one numeric character for the additional refinement
1724 // step parameter.
1725 if (RefStepString.size() == 1) {
1726 char RefStepChar = RefStepString[0];
1727 if (RefStepChar >= '0' && RefStepChar <= '9') {
1728 Value = RefStepChar - '0';
1729 return true;
1730 }
1731 }
1732 report_fatal_error("Invalid refinement step for -recip.");
1733}
1734
1735/// For the input attribute string, return one of the ReciprocalEstimate enum
1736/// status values (enabled, disabled, or not specified) for this operation on
1737/// the specified data type.
1738static int getOpEnabled(bool IsSqrt, EVT VT, StringRef Override) {
1739 if (Override.empty())
1740 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1741
1742 SmallVector<StringRef, 4> OverrideVector;
Craig Topper7413b322018-05-07 01:32:18 +00001743 Override.split(OverrideVector, ',');
Sanjay Patel0051efc2016-10-20 16:55:45 +00001744 unsigned NumArgs = OverrideVector.size();
1745
1746 // Check if "all", "none", or "default" was specified.
1747 if (NumArgs == 1) {
1748 // Look for an optional setting of the number of refinement steps needed
1749 // for this type of reciprocal operation.
1750 size_t RefPos;
1751 uint8_t RefSteps;
1752 if (parseRefinementStep(Override, RefPos, RefSteps)) {
1753 // Split the string for further processing.
1754 Override = Override.substr(0, RefPos);
1755 }
1756
1757 // All reciprocal types are enabled.
1758 if (Override == "all")
1759 return TargetLoweringBase::ReciprocalEstimate::Enabled;
1760
1761 // All reciprocal types are disabled.
1762 if (Override == "none")
1763 return TargetLoweringBase::ReciprocalEstimate::Disabled;
1764
1765 // Target defaults for enablement are used.
1766 if (Override == "default")
1767 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1768 }
1769
1770 // The attribute string may omit the size suffix ('f'/'d').
1771 std::string VTName = getReciprocalOpName(IsSqrt, VT);
1772 std::string VTNameNoSize = VTName;
Sanjay Patel501be9b2016-10-21 14:58:30 +00001773 VTNameNoSize.pop_back();
Sanjay Patel0051efc2016-10-20 16:55:45 +00001774 static const char DisabledPrefix = '!';
1775
1776 for (StringRef RecipType : OverrideVector) {
1777 size_t RefPos;
1778 uint8_t RefSteps;
1779 if (parseRefinementStep(RecipType, RefPos, RefSteps))
1780 RecipType = RecipType.substr(0, RefPos);
1781
1782 // Ignore the disablement token for string matching.
1783 bool IsDisabled = RecipType[0] == DisabledPrefix;
1784 if (IsDisabled)
1785 RecipType = RecipType.substr(1);
1786
1787 if (RecipType.equals(VTName) || RecipType.equals(VTNameNoSize))
1788 return IsDisabled ? TargetLoweringBase::ReciprocalEstimate::Disabled
1789 : TargetLoweringBase::ReciprocalEstimate::Enabled;
1790 }
1791
1792 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1793}
1794
1795/// For the input attribute string, return the customized refinement step count
1796/// for this operation on the specified data type. If the step count does not
1797/// exist, return the ReciprocalEstimate enum value for unspecified.
1798static int getOpRefinementSteps(bool IsSqrt, EVT VT, StringRef Override) {
1799 if (Override.empty())
1800 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1801
1802 SmallVector<StringRef, 4> OverrideVector;
Craig Topper7413b322018-05-07 01:32:18 +00001803 Override.split(OverrideVector, ',');
Sanjay Patel0051efc2016-10-20 16:55:45 +00001804 unsigned NumArgs = OverrideVector.size();
1805
1806 // Check if "all", "default", or "none" was specified.
1807 if (NumArgs == 1) {
1808 // Look for an optional setting of the number of refinement steps needed
1809 // for this type of reciprocal operation.
1810 size_t RefPos;
1811 uint8_t RefSteps;
1812 if (!parseRefinementStep(Override, RefPos, RefSteps))
1813 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1814
1815 // Split the string for further processing.
1816 Override = Override.substr(0, RefPos);
1817 assert(Override != "none" &&
1818 "Disabled reciprocals, but specifed refinement steps?");
1819
1820 // If this is a general override, return the specified number of steps.
1821 if (Override == "all" || Override == "default")
1822 return RefSteps;
1823 }
1824
1825 // The attribute string may omit the size suffix ('f'/'d').
1826 std::string VTName = getReciprocalOpName(IsSqrt, VT);
1827 std::string VTNameNoSize = VTName;
Sanjay Patel501be9b2016-10-21 14:58:30 +00001828 VTNameNoSize.pop_back();
Sanjay Patel0051efc2016-10-20 16:55:45 +00001829
1830 for (StringRef RecipType : OverrideVector) {
1831 size_t RefPos;
1832 uint8_t RefSteps;
1833 if (!parseRefinementStep(RecipType, RefPos, RefSteps))
1834 continue;
1835
1836 RecipType = RecipType.substr(0, RefPos);
1837 if (RecipType.equals(VTName) || RecipType.equals(VTNameNoSize))
1838 return RefSteps;
1839 }
1840
1841 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1842}
1843
1844int TargetLoweringBase::getRecipEstimateSqrtEnabled(EVT VT,
1845 MachineFunction &MF) const {
1846 return getOpEnabled(true, VT, getRecipEstimateForFunc(MF));
1847}
1848
1849int TargetLoweringBase::getRecipEstimateDivEnabled(EVT VT,
1850 MachineFunction &MF) const {
1851 return getOpEnabled(false, VT, getRecipEstimateForFunc(MF));
1852}
1853
1854int TargetLoweringBase::getSqrtRefinementSteps(EVT VT,
1855 MachineFunction &MF) const {
1856 return getOpRefinementSteps(true, VT, getRecipEstimateForFunc(MF));
1857}
1858
1859int TargetLoweringBase::getDivRefinementSteps(EVT VT,
1860 MachineFunction &MF) const {
1861 return getOpRefinementSteps(false, VT, getRecipEstimateForFunc(MF));
1862}
Matthias Braun744c2152017-04-28 20:25:05 +00001863
1864void TargetLoweringBase::finalizeLowering(MachineFunction &MF) const {
1865 MF.getRegInfo().freezeReservedRegs(MF);
1866}