blob: b9cdbeabdb3ba6f03de7fb2fe37d669935ece231 [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
Petr Hosek710479c2017-07-23 22:30:00 +0000164 if (TT.isGNUEnvironment() || TT.isOSFuchsia()) {
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000165 setLibcallName(RTLIB::SINCOS_F32, "sincosf");
166 setLibcallName(RTLIB::SINCOS_F64, "sincos");
167 setLibcallName(RTLIB::SINCOS_F80, "sincosl");
168 setLibcallName(RTLIB::SINCOS_F128, "sincosl");
169 setLibcallName(RTLIB::SINCOS_PPCF128, "sincosl");
Paul Redmondf29ddfe2013-02-15 18:45:18 +0000170 }
Michael Gottesman7dce16f2013-08-12 18:45:38 +0000171
Derek Schuff36454af2017-07-19 21:53:30 +0000172 if (TT.isOSOpenBSD()) {
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000173 setLibcallName(RTLIB::STACKPROTECTOR_CHECK_FAIL, nullptr);
Ahmed Bougacha6402ad22015-05-14 01:00:51 +0000174 }
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000175}
176
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000177/// getFPEXT - Return the FPEXT_*_* value for the given types, or
178/// UNKNOWN_LIBCALL if there is none.
179RTLIB::Libcall RTLIB::getFPEXT(EVT OpVT, EVT RetVT) {
Tim Northoverf7a02c12014-07-21 09:13:56 +0000180 if (OpVT == MVT::f16) {
181 if (RetVT == MVT::f32)
182 return FPEXT_F16_F32;
183 } else if (OpVT == MVT::f32) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000184 if (RetVT == MVT::f64)
185 return FPEXT_F32_F64;
186 if (RetVT == MVT::f128)
187 return FPEXT_F32_F128;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000188 if (RetVT == MVT::ppcf128)
189 return FPEXT_F32_PPCF128;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000190 } else if (OpVT == MVT::f64) {
191 if (RetVT == MVT::f128)
192 return FPEXT_F64_F128;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000193 else if (RetVT == MVT::ppcf128)
194 return FPEXT_F64_PPCF128;
Benjamin Kramer8b1986b2018-01-17 22:29:16 +0000195 } else if (OpVT == MVT::f80) {
196 if (RetVT == MVT::f128)
197 return FPEXT_F80_F128;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000198 }
199
200 return UNKNOWN_LIBCALL;
201}
202
203/// getFPROUND - Return the FPROUND_*_* value for the given types, or
204/// UNKNOWN_LIBCALL if there is none.
205RTLIB::Libcall RTLIB::getFPROUND(EVT OpVT, EVT RetVT) {
Tim Northover84ce0a62014-07-17 11:12:12 +0000206 if (RetVT == MVT::f16) {
207 if (OpVT == MVT::f32)
208 return FPROUND_F32_F16;
209 if (OpVT == MVT::f64)
210 return FPROUND_F64_F16;
211 if (OpVT == MVT::f80)
212 return FPROUND_F80_F16;
213 if (OpVT == MVT::f128)
214 return FPROUND_F128_F16;
215 if (OpVT == MVT::ppcf128)
216 return FPROUND_PPCF128_F16;
217 } else if (RetVT == MVT::f32) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000218 if (OpVT == MVT::f64)
219 return FPROUND_F64_F32;
220 if (OpVT == MVT::f80)
221 return FPROUND_F80_F32;
222 if (OpVT == MVT::f128)
223 return FPROUND_F128_F32;
224 if (OpVT == MVT::ppcf128)
225 return FPROUND_PPCF128_F32;
226 } else if (RetVT == MVT::f64) {
227 if (OpVT == MVT::f80)
228 return FPROUND_F80_F64;
229 if (OpVT == MVT::f128)
230 return FPROUND_F128_F64;
231 if (OpVT == MVT::ppcf128)
232 return FPROUND_PPCF128_F64;
Benjamin Kramer8b1986b2018-01-17 22:29:16 +0000233 } else if (RetVT == MVT::f80) {
234 if (OpVT == MVT::f128)
235 return FPROUND_F128_F80;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000236 }
237
238 return UNKNOWN_LIBCALL;
239}
240
241/// getFPTOSINT - Return the FPTOSINT_*_* value for the given types, or
242/// UNKNOWN_LIBCALL if there is none.
243RTLIB::Libcall RTLIB::getFPTOSINT(EVT OpVT, EVT RetVT) {
244 if (OpVT == MVT::f32) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000245 if (RetVT == MVT::i32)
246 return FPTOSINT_F32_I32;
247 if (RetVT == MVT::i64)
248 return FPTOSINT_F32_I64;
249 if (RetVT == MVT::i128)
250 return FPTOSINT_F32_I128;
251 } else if (OpVT == MVT::f64) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000252 if (RetVT == MVT::i32)
253 return FPTOSINT_F64_I32;
254 if (RetVT == MVT::i64)
255 return FPTOSINT_F64_I64;
256 if (RetVT == MVT::i128)
257 return FPTOSINT_F64_I128;
258 } else if (OpVT == MVT::f80) {
259 if (RetVT == MVT::i32)
260 return FPTOSINT_F80_I32;
261 if (RetVT == MVT::i64)
262 return FPTOSINT_F80_I64;
263 if (RetVT == MVT::i128)
264 return FPTOSINT_F80_I128;
265 } else if (OpVT == MVT::f128) {
266 if (RetVT == MVT::i32)
267 return FPTOSINT_F128_I32;
268 if (RetVT == MVT::i64)
269 return FPTOSINT_F128_I64;
270 if (RetVT == MVT::i128)
271 return FPTOSINT_F128_I128;
272 } else if (OpVT == MVT::ppcf128) {
273 if (RetVT == MVT::i32)
274 return FPTOSINT_PPCF128_I32;
275 if (RetVT == MVT::i64)
276 return FPTOSINT_PPCF128_I64;
277 if (RetVT == MVT::i128)
278 return FPTOSINT_PPCF128_I128;
279 }
280 return UNKNOWN_LIBCALL;
281}
282
283/// getFPTOUINT - Return the FPTOUINT_*_* value for the given types, or
284/// UNKNOWN_LIBCALL if there is none.
285RTLIB::Libcall RTLIB::getFPTOUINT(EVT OpVT, EVT RetVT) {
286 if (OpVT == MVT::f32) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000287 if (RetVT == MVT::i32)
288 return FPTOUINT_F32_I32;
289 if (RetVT == MVT::i64)
290 return FPTOUINT_F32_I64;
291 if (RetVT == MVT::i128)
292 return FPTOUINT_F32_I128;
293 } else if (OpVT == MVT::f64) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000294 if (RetVT == MVT::i32)
295 return FPTOUINT_F64_I32;
296 if (RetVT == MVT::i64)
297 return FPTOUINT_F64_I64;
298 if (RetVT == MVT::i128)
299 return FPTOUINT_F64_I128;
300 } else if (OpVT == MVT::f80) {
301 if (RetVT == MVT::i32)
302 return FPTOUINT_F80_I32;
303 if (RetVT == MVT::i64)
304 return FPTOUINT_F80_I64;
305 if (RetVT == MVT::i128)
306 return FPTOUINT_F80_I128;
307 } else if (OpVT == MVT::f128) {
308 if (RetVT == MVT::i32)
309 return FPTOUINT_F128_I32;
310 if (RetVT == MVT::i64)
311 return FPTOUINT_F128_I64;
312 if (RetVT == MVT::i128)
313 return FPTOUINT_F128_I128;
314 } else if (OpVT == MVT::ppcf128) {
315 if (RetVT == MVT::i32)
316 return FPTOUINT_PPCF128_I32;
317 if (RetVT == MVT::i64)
318 return FPTOUINT_PPCF128_I64;
319 if (RetVT == MVT::i128)
320 return FPTOUINT_PPCF128_I128;
321 }
322 return UNKNOWN_LIBCALL;
323}
324
325/// getSINTTOFP - Return the SINTTOFP_*_* value for the given types, or
326/// UNKNOWN_LIBCALL if there is none.
327RTLIB::Libcall RTLIB::getSINTTOFP(EVT OpVT, EVT RetVT) {
328 if (OpVT == MVT::i32) {
329 if (RetVT == MVT::f32)
330 return SINTTOFP_I32_F32;
331 if (RetVT == MVT::f64)
332 return SINTTOFP_I32_F64;
333 if (RetVT == MVT::f80)
334 return SINTTOFP_I32_F80;
335 if (RetVT == MVT::f128)
336 return SINTTOFP_I32_F128;
337 if (RetVT == MVT::ppcf128)
338 return SINTTOFP_I32_PPCF128;
339 } else if (OpVT == MVT::i64) {
340 if (RetVT == MVT::f32)
341 return SINTTOFP_I64_F32;
342 if (RetVT == MVT::f64)
343 return SINTTOFP_I64_F64;
344 if (RetVT == MVT::f80)
345 return SINTTOFP_I64_F80;
346 if (RetVT == MVT::f128)
347 return SINTTOFP_I64_F128;
348 if (RetVT == MVT::ppcf128)
349 return SINTTOFP_I64_PPCF128;
350 } else if (OpVT == MVT::i128) {
351 if (RetVT == MVT::f32)
352 return SINTTOFP_I128_F32;
353 if (RetVT == MVT::f64)
354 return SINTTOFP_I128_F64;
355 if (RetVT == MVT::f80)
356 return SINTTOFP_I128_F80;
357 if (RetVT == MVT::f128)
358 return SINTTOFP_I128_F128;
359 if (RetVT == MVT::ppcf128)
360 return SINTTOFP_I128_PPCF128;
361 }
362 return UNKNOWN_LIBCALL;
363}
364
365/// getUINTTOFP - Return the UINTTOFP_*_* value for the given types, or
366/// UNKNOWN_LIBCALL if there is none.
367RTLIB::Libcall RTLIB::getUINTTOFP(EVT OpVT, EVT RetVT) {
368 if (OpVT == MVT::i32) {
369 if (RetVT == MVT::f32)
370 return UINTTOFP_I32_F32;
371 if (RetVT == MVT::f64)
372 return UINTTOFP_I32_F64;
373 if (RetVT == MVT::f80)
374 return UINTTOFP_I32_F80;
375 if (RetVT == MVT::f128)
376 return UINTTOFP_I32_F128;
377 if (RetVT == MVT::ppcf128)
378 return UINTTOFP_I32_PPCF128;
379 } else if (OpVT == MVT::i64) {
380 if (RetVT == MVT::f32)
381 return UINTTOFP_I64_F32;
382 if (RetVT == MVT::f64)
383 return UINTTOFP_I64_F64;
384 if (RetVT == MVT::f80)
385 return UINTTOFP_I64_F80;
386 if (RetVT == MVT::f128)
387 return UINTTOFP_I64_F128;
388 if (RetVT == MVT::ppcf128)
389 return UINTTOFP_I64_PPCF128;
390 } else if (OpVT == MVT::i128) {
391 if (RetVT == MVT::f32)
392 return UINTTOFP_I128_F32;
393 if (RetVT == MVT::f64)
394 return UINTTOFP_I128_F64;
395 if (RetVT == MVT::f80)
396 return UINTTOFP_I128_F80;
397 if (RetVT == MVT::f128)
398 return UINTTOFP_I128_F128;
399 if (RetVT == MVT::ppcf128)
400 return UINTTOFP_I128_PPCF128;
401 }
402 return UNKNOWN_LIBCALL;
403}
404
James Y Knightf44fc522016-03-16 22:12:04 +0000405RTLIB::Libcall RTLIB::getSYNC(unsigned Opc, MVT VT) {
Benjamin Kramerc54c38e2015-03-05 20:04:29 +0000406#define OP_TO_LIBCALL(Name, Enum) \
407 case Name: \
408 switch (VT.SimpleTy) { \
409 default: \
410 return UNKNOWN_LIBCALL; \
411 case MVT::i8: \
412 return Enum##_1; \
413 case MVT::i16: \
414 return Enum##_2; \
415 case MVT::i32: \
416 return Enum##_4; \
417 case MVT::i64: \
418 return Enum##_8; \
419 case MVT::i128: \
420 return Enum##_16; \
421 }
422
423 switch (Opc) {
424 OP_TO_LIBCALL(ISD::ATOMIC_SWAP, SYNC_LOCK_TEST_AND_SET)
425 OP_TO_LIBCALL(ISD::ATOMIC_CMP_SWAP, SYNC_VAL_COMPARE_AND_SWAP)
426 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_ADD, SYNC_FETCH_AND_ADD)
427 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_SUB, SYNC_FETCH_AND_SUB)
428 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_AND, SYNC_FETCH_AND_AND)
429 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_OR, SYNC_FETCH_AND_OR)
430 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_XOR, SYNC_FETCH_AND_XOR)
431 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_NAND, SYNC_FETCH_AND_NAND)
432 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_MAX, SYNC_FETCH_AND_MAX)
433 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_UMAX, SYNC_FETCH_AND_UMAX)
434 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_MIN, SYNC_FETCH_AND_MIN)
435 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_UMIN, SYNC_FETCH_AND_UMIN)
436 }
437
438#undef OP_TO_LIBCALL
439
440 return UNKNOWN_LIBCALL;
441}
442
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000443RTLIB::Libcall RTLIB::getMEMCPY_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
Igor Laevsky4f31e522016-12-29 14:31:07 +0000444 switch (ElementSize) {
445 case 1:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000446 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_1;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000447 case 2:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000448 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_2;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000449 case 4:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000450 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_4;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000451 case 8:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000452 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_8;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000453 case 16:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000454 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_16;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000455 default:
456 return UNKNOWN_LIBCALL;
457 }
Igor Laevsky4f31e522016-12-29 14:31:07 +0000458}
459
Daniel Neilson57226ef2017-07-12 15:25:26 +0000460RTLIB::Libcall RTLIB::getMEMMOVE_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
461 switch (ElementSize) {
462 case 1:
463 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_1;
464 case 2:
465 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_2;
466 case 4:
467 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_4;
468 case 8:
469 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_8;
470 case 16:
471 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_16;
472 default:
473 return UNKNOWN_LIBCALL;
474 }
475}
476
Daniel Neilson965613e2017-07-12 21:57:23 +0000477RTLIB::Libcall RTLIB::getMEMSET_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
478 switch (ElementSize) {
479 case 1:
480 return MEMSET_ELEMENT_UNORDERED_ATOMIC_1;
481 case 2:
482 return MEMSET_ELEMENT_UNORDERED_ATOMIC_2;
483 case 4:
484 return MEMSET_ELEMENT_UNORDERED_ATOMIC_4;
485 case 8:
486 return MEMSET_ELEMENT_UNORDERED_ATOMIC_8;
487 case 16:
488 return MEMSET_ELEMENT_UNORDERED_ATOMIC_16;
489 default:
490 return UNKNOWN_LIBCALL;
491 }
492}
493
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000494/// InitCmpLibcallCCs - Set default comparison libcall CC.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000495static void InitCmpLibcallCCs(ISD::CondCode *CCs) {
496 memset(CCs, ISD::SETCC_INVALID, sizeof(ISD::CondCode)*RTLIB::UNKNOWN_LIBCALL);
497 CCs[RTLIB::OEQ_F32] = ISD::SETEQ;
498 CCs[RTLIB::OEQ_F64] = ISD::SETEQ;
499 CCs[RTLIB::OEQ_F128] = ISD::SETEQ;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000500 CCs[RTLIB::OEQ_PPCF128] = ISD::SETEQ;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000501 CCs[RTLIB::UNE_F32] = ISD::SETNE;
502 CCs[RTLIB::UNE_F64] = ISD::SETNE;
503 CCs[RTLIB::UNE_F128] = ISD::SETNE;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000504 CCs[RTLIB::UNE_PPCF128] = ISD::SETNE;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000505 CCs[RTLIB::OGE_F32] = ISD::SETGE;
506 CCs[RTLIB::OGE_F64] = ISD::SETGE;
507 CCs[RTLIB::OGE_F128] = ISD::SETGE;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000508 CCs[RTLIB::OGE_PPCF128] = ISD::SETGE;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000509 CCs[RTLIB::OLT_F32] = ISD::SETLT;
510 CCs[RTLIB::OLT_F64] = ISD::SETLT;
511 CCs[RTLIB::OLT_F128] = ISD::SETLT;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000512 CCs[RTLIB::OLT_PPCF128] = ISD::SETLT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000513 CCs[RTLIB::OLE_F32] = ISD::SETLE;
514 CCs[RTLIB::OLE_F64] = ISD::SETLE;
515 CCs[RTLIB::OLE_F128] = ISD::SETLE;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000516 CCs[RTLIB::OLE_PPCF128] = ISD::SETLE;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000517 CCs[RTLIB::OGT_F32] = ISD::SETGT;
518 CCs[RTLIB::OGT_F64] = ISD::SETGT;
519 CCs[RTLIB::OGT_F128] = ISD::SETGT;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000520 CCs[RTLIB::OGT_PPCF128] = ISD::SETGT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000521 CCs[RTLIB::UO_F32] = ISD::SETNE;
522 CCs[RTLIB::UO_F64] = ISD::SETNE;
523 CCs[RTLIB::UO_F128] = ISD::SETNE;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000524 CCs[RTLIB::UO_PPCF128] = ISD::SETNE;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000525 CCs[RTLIB::O_F32] = ISD::SETEQ;
526 CCs[RTLIB::O_F64] = ISD::SETEQ;
527 CCs[RTLIB::O_F128] = ISD::SETEQ;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000528 CCs[RTLIB::O_PPCF128] = ISD::SETEQ;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000529}
530
Aditya Nandakumar30531552014-11-13 21:29:21 +0000531/// NOTE: The TargetMachine owns TLOF.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000532TargetLoweringBase::TargetLoweringBase(const TargetMachine &tm) : TM(tm) {
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000533 initActions();
534
535 // Perform these initializations only once.
Zaara Syeda3a7578c2017-05-31 17:12:38 +0000536 MaxStoresPerMemset = MaxStoresPerMemcpy = MaxStoresPerMemmove =
537 MaxLoadsPerMemcmp = 8;
Sirish Pandecabe50a32018-05-16 15:36:52 +0000538 MaxGluedStoresPerMemcpy = 0;
Zaara Syeda3a7578c2017-05-31 17:12:38 +0000539 MaxStoresPerMemsetOptSize = MaxStoresPerMemcpyOptSize =
540 MaxStoresPerMemmoveOptSize = MaxLoadsPerMemcmpOptSize = 4;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000541 UseUnderscoreSetJmp = false;
542 UseUnderscoreLongJmp = false;
Hal Finkeldecb0242014-01-02 21:13:43 +0000543 HasMultipleConditionRegisters = false;
Yi Jiangb23edeb2014-04-21 22:22:44 +0000544 HasExtractBitsInsn = false;
Sanjay Patel943829a2015-07-01 18:10:20 +0000545 JumpIsExpensive = JumpIsExpensiveOverride;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000546 PredictableSelectIsExpensive = false;
Quentin Colombetfc2201e2014-12-17 01:36:17 +0000547 EnableExtLdPromotion = false;
Pedro Artigascaa56582014-08-08 16:46:53 +0000548 HasFloatingPointExceptions = true;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000549 StackPointerRegisterToSaveRestore = 0;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000550 BooleanContents = UndefinedBooleanContent;
Daniel Sanderscbd44c52014-07-10 10:18:12 +0000551 BooleanFloatContents = UndefinedBooleanContent;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000552 BooleanVectorContents = UndefinedBooleanContent;
553 SchedPreferenceInfo = Sched::ILP;
554 JumpBufSize = 0;
555 JumpBufAlignment = 0;
556 MinFunctionAlignment = 0;
557 PrefFunctionAlignment = 0;
558 PrefLoopAlignment = 0;
Nirav Dave54e22f32017-03-14 00:34:14 +0000559 GatherAllAliasesMaxDepth = 18;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000560 MinStackArgumentAlignment = 1;
James Y Knight19f6cce2016-04-12 20:18:48 +0000561 // TODO: the default will be switched to 0 in the next commit, along
562 // with the Target-specific changes necessary.
563 MaxAtomicSizeInBitsSupported = 1024;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000564
James Y Knight148a6462016-06-17 18:11:48 +0000565 MinCmpXchgSizeInBits = 0;
Dylan McKay80463fe2017-12-09 06:45:36 +0000566 SupportsUnalignedAtomics = false;
James Y Knight148a6462016-06-17 18:11:48 +0000567
James Y Knight7873fb92016-04-12 22:32:47 +0000568 std::fill(std::begin(LibcallRoutineNames), std::end(LibcallRoutineNames), nullptr);
569
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000570 InitLibcalls(TM.getTargetTriple());
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000571 InitCmpLibcallCCs(CmpLibcallCCs);
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000572}
573
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000574void TargetLoweringBase::initActions() {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000575 // All operations default to being supported.
576 memset(OpActions, 0, sizeof(OpActions));
577 memset(LoadExtActions, 0, sizeof(LoadExtActions));
578 memset(TruncStoreActions, 0, sizeof(TruncStoreActions));
579 memset(IndexedModeActions, 0, sizeof(IndexedModeActions));
580 memset(CondCodeActions, 0, sizeof(CondCodeActions));
Craig Topper00230802016-04-08 07:10:46 +0000581 std::fill(std::begin(RegClassForVT), std::end(RegClassForVT), nullptr);
582 std::fill(std::begin(TargetDAGCombineArray),
583 std::end(TargetDAGCombineArray), 0);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000584
585 // Set default actions for various operations.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000586 for (MVT VT : MVT::all_valuetypes()) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000587 // Default all indexed load / store to expand.
588 for (unsigned IM = (unsigned)ISD::PRE_INC;
589 IM != (unsigned)ISD::LAST_INDEXED_MODE; ++IM) {
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000590 setIndexedLoadAction(IM, VT, Expand);
591 setIndexedStoreAction(IM, VT, Expand);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000592 }
593
Tim Northover420a2162014-06-13 14:24:07 +0000594 // Most backends expect to see the node which just returns the value loaded.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000595 setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, VT, Expand);
Tim Northover420a2162014-06-13 14:24:07 +0000596
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000597 // These operations default to expand.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000598 setOperationAction(ISD::FGETSIGN, VT, Expand);
599 setOperationAction(ISD::CONCAT_VECTORS, VT, Expand);
600 setOperationAction(ISD::FMINNUM, VT, Expand);
601 setOperationAction(ISD::FMAXNUM, VT, Expand);
James Molloy01cdecc2015-08-11 09:13:05 +0000602 setOperationAction(ISD::FMINNAN, VT, Expand);
603 setOperationAction(ISD::FMAXNAN, VT, Expand);
Matt Arsenault0dc54c42015-02-20 22:10:33 +0000604 setOperationAction(ISD::FMAD, VT, Expand);
James Molloy7e9776b2015-05-15 09:03:15 +0000605 setOperationAction(ISD::SMIN, VT, Expand);
606 setOperationAction(ISD::SMAX, VT, Expand);
607 setOperationAction(ISD::UMIN, VT, Expand);
608 setOperationAction(ISD::UMAX, VT, Expand);
Simon Pilgrimcf2da962017-03-14 21:26:58 +0000609 setOperationAction(ISD::ABS, VT, Expand);
Hal Finkel8ec43c62013-08-09 04:13:44 +0000610
Jan Vesely75395482015-04-29 16:30:46 +0000611 // Overflow operations default to expand
612 setOperationAction(ISD::SADDO, VT, Expand);
613 setOperationAction(ISD::SSUBO, VT, Expand);
614 setOperationAction(ISD::UADDO, VT, Expand);
615 setOperationAction(ISD::USUBO, VT, Expand);
616 setOperationAction(ISD::SMULO, VT, Expand);
617 setOperationAction(ISD::UMULO, VT, Expand);
Hal Finkelcd8664c2015-12-11 23:11:52 +0000618
Amaury Sechet8ac81f32017-04-30 19:24:09 +0000619 // ADDCARRY operations default to expand
620 setOperationAction(ISD::ADDCARRY, VT, Expand);
621 setOperationAction(ISD::SUBCARRY, VT, Expand);
Amaury Sechet251ea8a2017-06-01 11:14:17 +0000622 setOperationAction(ISD::SETCCCARRY, VT, Expand);
Amaury Sechet8ac81f32017-04-30 19:24:09 +0000623
Amaury Sechet84674112018-06-01 13:21:33 +0000624 // ADDC/ADDE/SUBC/SUBE default to expand.
625 setOperationAction(ISD::ADDC, VT, Expand);
626 setOperationAction(ISD::ADDE, VT, Expand);
627 setOperationAction(ISD::SUBC, VT, Expand);
628 setOperationAction(ISD::SUBE, VT, Expand);
629
Craig Topper33772c52016-04-28 03:34:31 +0000630 // These default to Expand so they will be expanded to CTLZ/CTTZ by default.
631 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
632 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
633
James Molloy90111f72015-11-12 12:29:09 +0000634 setOperationAction(ISD::BITREVERSE, VT, Expand);
Fangrui Songf78650a2018-07-30 19:41:25 +0000635
Hal Finkel8ec43c62013-08-09 04:13:44 +0000636 // These library functions default to expand.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000637 setOperationAction(ISD::FROUND, VT, Expand);
Craig Topperf6d4dc52017-05-30 15:27:55 +0000638 setOperationAction(ISD::FPOWI, VT, Expand);
Hal Finkel0c5c01aa2013-08-19 23:35:46 +0000639
640 // These operations default to expand for vector types.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000641 if (VT.isVector()) {
642 setOperationAction(ISD::FCOPYSIGN, VT, Expand);
643 setOperationAction(ISD::ANY_EXTEND_VECTOR_INREG, VT, Expand);
644 setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, VT, Expand);
645 setOperationAction(ISD::ZERO_EXTEND_VECTOR_INREG, VT, Expand);
Chandler Carruthd3561f62014-07-09 22:53:04 +0000646 }
Yury Gribovd7dbb662015-12-01 11:40:55 +0000647
Etienne Bergeron22bfa832016-06-07 20:15:35 +0000648 // For most targets @llvm.get.dynamic.area.offset just returns 0.
Yury Gribovd7dbb662015-12-01 11:40:55 +0000649 setOperationAction(ISD::GET_DYNAMIC_AREA_OFFSET, VT, Expand);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000650 }
651
652 // Most targets ignore the @llvm.prefetch intrinsic.
653 setOperationAction(ISD::PREFETCH, MVT::Other, Expand);
654
Ahmed Bougachaf9c19da2015-08-28 01:49:59 +0000655 // Most targets also ignore the @llvm.readcyclecounter intrinsic.
656 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Expand);
657
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000658 // ConstantFP nodes default to expand. Targets can either change this to
659 // Legal, in which case all fp constants are legal, or use isFPImmLegal()
660 // to optimize expansions for certain constants.
661 setOperationAction(ISD::ConstantFP, MVT::f16, Expand);
662 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
663 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
664 setOperationAction(ISD::ConstantFP, MVT::f80, Expand);
665 setOperationAction(ISD::ConstantFP, MVT::f128, Expand);
666
667 // These library functions default to expand.
Ahmed Bougacha2a20e272015-03-26 23:21:03 +0000668 for (MVT VT : {MVT::f32, MVT::f64, MVT::f128}) {
Sanjay Patel3eaf5002018-09-16 16:50:26 +0000669 setOperationAction(ISD::FCBRT, VT, Expand);
Ahmed Bougacha2a20e272015-03-26 23:21:03 +0000670 setOperationAction(ISD::FLOG , VT, Expand);
671 setOperationAction(ISD::FLOG2, VT, Expand);
672 setOperationAction(ISD::FLOG10, VT, Expand);
673 setOperationAction(ISD::FEXP , VT, Expand);
674 setOperationAction(ISD::FEXP2, VT, Expand);
675 setOperationAction(ISD::FFLOOR, VT, Expand);
Ahmed Bougacha2a20e272015-03-26 23:21:03 +0000676 setOperationAction(ISD::FNEARBYINT, VT, Expand);
677 setOperationAction(ISD::FCEIL, VT, Expand);
678 setOperationAction(ISD::FRINT, VT, Expand);
679 setOperationAction(ISD::FTRUNC, VT, Expand);
680 setOperationAction(ISD::FROUND, VT, Expand);
681 }
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000682
683 // Default ISD::TRAP to expand (which turns it into abort).
684 setOperationAction(ISD::TRAP, MVT::Other, Expand);
685
686 // On most systems, DEBUGTRAP and TRAP have no difference. The "Expand"
687 // here is to inform DAG Legalizer to replace DEBUGTRAP with TRAP.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000688 setOperationAction(ISD::DEBUGTRAP, MVT::Other, Expand);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000689}
690
Mehdi Aminieaabc512015-07-09 15:12:23 +0000691MVT TargetLoweringBase::getScalarShiftAmountTy(const DataLayout &DL,
692 EVT) const {
Mehdi Amini9639d652015-07-09 02:09:20 +0000693 return MVT::getIntegerVT(8 * DL.getPointerSize(0));
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000694}
695
Craig Topper35801fa2018-02-20 17:41:05 +0000696EVT TargetLoweringBase::getShiftAmountTy(EVT LHSTy, const DataLayout &DL,
697 bool LegalTypes) const {
Michael Liao6af16fc2013-03-01 18:40:30 +0000698 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
699 if (LHSTy.isVector())
700 return LHSTy;
Craig Topper35801fa2018-02-20 17:41:05 +0000701 return LegalTypes ? getScalarShiftAmountTy(DL, LHSTy)
702 : getPointerTy(DL);
Michael Liao6af16fc2013-03-01 18:40:30 +0000703}
704
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000705bool TargetLoweringBase::canOpTrap(unsigned Op, EVT VT) const {
706 assert(isTypeLegal(VT));
707 switch (Op) {
708 default:
709 return false;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000710 case ISD::SDIV:
711 case ISD::UDIV:
712 case ISD::SREM:
713 case ISD::UREM:
714 return true;
715 }
716}
717
Sanjay Patel943829a2015-07-01 18:10:20 +0000718void TargetLoweringBase::setJumpIsExpensive(bool isExpensive) {
719 // If the command-line option was specified, ignore this request.
720 if (!JumpIsExpensiveOverride.getNumOccurrences())
721 JumpIsExpensive = isExpensive;
722}
723
Eric Christopher75dbd7c2015-02-25 22:41:30 +0000724TargetLoweringBase::LegalizeKind
725TargetLoweringBase::getTypeConversion(LLVMContext &Context, EVT VT) const {
726 // If this is a simple type, use the ComputeRegisterProp mechanism.
727 if (VT.isSimple()) {
728 MVT SVT = VT.getSimpleVT();
729 assert((unsigned)SVT.SimpleTy < array_lengthof(TransformToType));
730 MVT NVT = TransformToType[SVT.SimpleTy];
731 LegalizeTypeAction LA = ValueTypeActions.getTypeAction(SVT);
732
733 assert((LA == TypeLegal || LA == TypeSoftenFloat ||
734 ValueTypeActions.getTypeAction(NVT) != TypePromoteInteger) &&
735 "Promote may not follow Expand or Promote");
736
737 if (LA == TypeSplitVector)
738 return LegalizeKind(LA,
739 EVT::getVectorVT(Context, SVT.getVectorElementType(),
740 SVT.getVectorNumElements() / 2));
741 if (LA == TypeScalarizeVector)
742 return LegalizeKind(LA, SVT.getVectorElementType());
743 return LegalizeKind(LA, NVT);
744 }
745
746 // Handle Extended Scalar Types.
747 if (!VT.isVector()) {
748 assert(VT.isInteger() && "Float types must be simple");
749 unsigned BitSize = VT.getSizeInBits();
750 // First promote to a power-of-two size, then expand if necessary.
751 if (BitSize < 8 || !isPowerOf2_32(BitSize)) {
752 EVT NVT = VT.getRoundIntegerType(Context);
753 assert(NVT != VT && "Unable to round integer VT");
754 LegalizeKind NextStep = getTypeConversion(Context, NVT);
755 // Avoid multi-step promotion.
756 if (NextStep.first == TypePromoteInteger)
757 return NextStep;
758 // Return rounded integer type.
759 return LegalizeKind(TypePromoteInteger, NVT);
760 }
761
762 return LegalizeKind(TypeExpandInteger,
763 EVT::getIntegerVT(Context, VT.getSizeInBits() / 2));
764 }
765
766 // Handle vector types.
767 unsigned NumElts = VT.getVectorNumElements();
768 EVT EltVT = VT.getVectorElementType();
769
770 // Vectors with only one element are always scalarized.
771 if (NumElts == 1)
772 return LegalizeKind(TypeScalarizeVector, EltVT);
773
774 // Try to widen vector elements until the element type is a power of two and
775 // promote it to a legal type later on, for example:
776 // <3 x i8> -> <4 x i8> -> <4 x i32>
777 if (EltVT.isInteger()) {
778 // Vectors with a number of elements that is not a power of two are always
779 // widened, for example <3 x i8> -> <4 x i8>.
780 if (!VT.isPow2VectorType()) {
781 NumElts = (unsigned)NextPowerOf2(NumElts);
782 EVT NVT = EVT::getVectorVT(Context, EltVT, NumElts);
783 return LegalizeKind(TypeWidenVector, NVT);
784 }
785
786 // Examine the element type.
787 LegalizeKind LK = getTypeConversion(Context, EltVT);
788
789 // If type is to be expanded, split the vector.
790 // <4 x i140> -> <2 x i140>
791 if (LK.first == TypeExpandInteger)
792 return LegalizeKind(TypeSplitVector,
793 EVT::getVectorVT(Context, EltVT, NumElts / 2));
794
795 // Promote the integer element types until a legal vector type is found
796 // or until the element integer type is too big. If a legal type was not
797 // found, fallback to the usual mechanism of widening/splitting the
798 // vector.
799 EVT OldEltVT = EltVT;
Eugene Zelenkofb7f7922017-09-21 23:20:16 +0000800 while (true) {
Eric Christopher75dbd7c2015-02-25 22:41:30 +0000801 // Increase the bitwidth of the element to the next pow-of-two
802 // (which is greater than 8 bits).
803 EltVT = EVT::getIntegerVT(Context, 1 + EltVT.getSizeInBits())
804 .getRoundIntegerType(Context);
805
806 // Stop trying when getting a non-simple element type.
807 // Note that vector elements may be greater than legal vector element
808 // types. Example: X86 XMM registers hold 64bit element on 32bit
809 // systems.
810 if (!EltVT.isSimple())
811 break;
812
813 // Build a new vector type and check if it is legal.
814 MVT NVT = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
815 // Found a legal promoted vector type.
816 if (NVT != MVT() && ValueTypeActions.getTypeAction(NVT) == TypeLegal)
817 return LegalizeKind(TypePromoteInteger,
818 EVT::getVectorVT(Context, EltVT, NumElts));
819 }
820
821 // Reset the type to the unexpanded type if we did not find a legal vector
822 // type with a promoted vector element type.
823 EltVT = OldEltVT;
824 }
825
826 // Try to widen the vector until a legal type is found.
827 // If there is no wider legal type, split the vector.
Eugene Zelenkofb7f7922017-09-21 23:20:16 +0000828 while (true) {
Eric Christopher75dbd7c2015-02-25 22:41:30 +0000829 // Round up to the next power of 2.
830 NumElts = (unsigned)NextPowerOf2(NumElts);
831
832 // If there is no simple vector type with this many elements then there
833 // cannot be a larger legal vector type. Note that this assumes that
834 // there are no skipped intermediate vector types in the simple types.
835 if (!EltVT.isSimple())
836 break;
837 MVT LargerVector = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
838 if (LargerVector == MVT())
839 break;
840
841 // If this type is legal then widen the vector.
842 if (ValueTypeActions.getTypeAction(LargerVector) == TypeLegal)
843 return LegalizeKind(TypeWidenVector, LargerVector);
844 }
845
846 // Widen odd vectors to next power of two.
847 if (!VT.isPow2VectorType()) {
848 EVT NVT = VT.getPow2VectorType(Context);
849 return LegalizeKind(TypeWidenVector, NVT);
850 }
851
852 // Vectors with illegal element types are expanded.
853 EVT NVT = EVT::getVectorVT(Context, EltVT, VT.getVectorNumElements() / 2);
854 return LegalizeKind(TypeSplitVector, NVT);
855}
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000856
857static unsigned getVectorTypeBreakdownMVT(MVT VT, MVT &IntermediateVT,
858 unsigned &NumIntermediates,
859 MVT &RegisterVT,
860 TargetLoweringBase *TLI) {
861 // Figure out the right, legal destination reg to copy into.
862 unsigned NumElts = VT.getVectorNumElements();
863 MVT EltTy = VT.getVectorElementType();
864
865 unsigned NumVectorRegs = 1;
866
867 // FIXME: We don't support non-power-of-2-sized vectors for now. Ideally we
868 // could break down into LHS/RHS like LegalizeDAG does.
869 if (!isPowerOf2_32(NumElts)) {
870 NumVectorRegs = NumElts;
871 NumElts = 1;
872 }
873
874 // Divide the input until we get to a supported size. This will always
875 // end with a scalar if the target doesn't support vectors.
876 while (NumElts > 1 && !TLI->isTypeLegal(MVT::getVectorVT(EltTy, NumElts))) {
877 NumElts >>= 1;
878 NumVectorRegs <<= 1;
879 }
880
881 NumIntermediates = NumVectorRegs;
882
883 MVT NewVT = MVT::getVectorVT(EltTy, NumElts);
884 if (!TLI->isTypeLegal(NewVT))
885 NewVT = EltTy;
886 IntermediateVT = NewVT;
887
888 unsigned NewVTSize = NewVT.getSizeInBits();
889
890 // Convert sizes such as i33 to i64.
891 if (!isPowerOf2_32(NewVTSize))
892 NewVTSize = NextPowerOf2(NewVTSize);
893
894 MVT DestVT = TLI->getRegisterType(NewVT);
895 RegisterVT = DestVT;
896 if (EVT(DestVT).bitsLT(NewVT)) // Value is expanded, e.g. i64 -> i16.
897 return NumVectorRegs*(NewVTSize/DestVT.getSizeInBits());
898
899 // Otherwise, promotion or legal types use the same number of registers as
900 // the vector decimated to the appropriate level.
901 return NumVectorRegs;
902}
903
904/// isLegalRC - Return true if the value types that can be represented by the
905/// specified register class are all legal.
Krzysztof Parzyszekc8e8e2a2017-04-24 19:51:12 +0000906bool TargetLoweringBase::isLegalRC(const TargetRegisterInfo &TRI,
907 const TargetRegisterClass &RC) const {
908 for (auto I = TRI.legalclasstypes_begin(RC); *I != MVT::Other; ++I)
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000909 if (isTypeLegal(*I))
910 return true;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000911 return false;
912}
913
Lang Hames39609992013-11-29 03:07:54 +0000914/// Replace/modify any TargetFrameIndex operands with a targte-dependent
915/// sequence of memory operands that is recognized by PrologEpilogInserter.
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +0000916MachineBasicBlock *
917TargetLoweringBase::emitPatchPoint(MachineInstr &InitialMI,
Lang Hames39609992013-11-29 03:07:54 +0000918 MachineBasicBlock *MBB) const {
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +0000919 MachineInstr *MI = &InitialMI;
Justin Bognerfdf9bf42017-10-10 23:50:49 +0000920 MachineFunction &MF = *MI->getMF();
Matthias Braun941a7052016-07-28 18:40:00 +0000921 MachineFrameInfo &MFI = MF.getFrameInfo();
Philip Reamescb0f9472015-12-23 23:44:28 +0000922
923 // We're handling multiple types of operands here:
924 // PATCHPOINT MetaArgs - live-in, read only, direct
925 // STATEPOINT Deopt Spill - live-through, read only, indirect
926 // STATEPOINT Deopt Alloca - live-through, read only, direct
927 // (We're currently conservative and mark the deopt slots read/write in
Fangrui Songf78650a2018-07-30 19:41:25 +0000928 // practice.)
Philip Reamescb0f9472015-12-23 23:44:28 +0000929 // STATEPOINT GC Spill - live-through, read/write, indirect
930 // STATEPOINT GC Alloca - live-through, read/write, direct
931 // The live-in vs live-through is handled already (the live through ones are
932 // all stack slots), but we need to handle the different type of stackmap
933 // operands and memory effects here.
Lang Hames39609992013-11-29 03:07:54 +0000934
935 // MI changes inside this loop as we grow operands.
936 for(unsigned OperIdx = 0; OperIdx != MI->getNumOperands(); ++OperIdx) {
937 MachineOperand &MO = MI->getOperand(OperIdx);
938 if (!MO.isFI())
939 continue;
940
941 // foldMemoryOperand builds a new MI after replacing a single FI operand
942 // with the canonical set of five x86 addressing-mode operands.
943 int FI = MO.getIndex();
944 MachineInstrBuilder MIB = BuildMI(MF, MI->getDebugLoc(), MI->getDesc());
945
946 // Copy operands before the frame-index.
947 for (unsigned i = 0; i < OperIdx; ++i)
Diana Picus116bbab2017-01-13 09:58:52 +0000948 MIB.add(MI->getOperand(i));
Philip Reamescb0f9472015-12-23 23:44:28 +0000949 // Add frame index operands recognized by stackmaps.cpp
950 if (MFI.isStatepointSpillSlotObjectIndex(FI)) {
951 // indirect-mem-ref tag, size, #FI, offset.
952 // Used for spills inserted by StatepointLowering. This codepath is not
953 // used for patchpoints/stackmaps at all, for these spilling is done via
954 // foldMemoryOperand callback only.
955 assert(MI->getOpcode() == TargetOpcode::STATEPOINT && "sanity");
956 MIB.addImm(StackMaps::IndirectMemRefOp);
957 MIB.addImm(MFI.getObjectSize(FI));
Diana Picus116bbab2017-01-13 09:58:52 +0000958 MIB.add(MI->getOperand(OperIdx));
Philip Reamescb0f9472015-12-23 23:44:28 +0000959 MIB.addImm(0);
960 } else {
961 // direct-mem-ref tag, #FI, offset.
962 // Used by patchpoint, and direct alloca arguments to statepoints
963 MIB.addImm(StackMaps::DirectMemRefOp);
Diana Picus116bbab2017-01-13 09:58:52 +0000964 MIB.add(MI->getOperand(OperIdx));
Philip Reamescb0f9472015-12-23 23:44:28 +0000965 MIB.addImm(0);
966 }
Lang Hames39609992013-11-29 03:07:54 +0000967 // Copy the operands after the frame index.
968 for (unsigned i = OperIdx + 1; i != MI->getNumOperands(); ++i)
Diana Picus116bbab2017-01-13 09:58:52 +0000969 MIB.add(MI->getOperand(i));
Lang Hames39609992013-11-29 03:07:54 +0000970
971 // Inherit previous memory operands.
Chandler Carruthc73c0302018-08-16 21:30:05 +0000972 MIB.cloneMemRefs(*MI);
Lang Hames39609992013-11-29 03:07:54 +0000973 assert(MIB->mayLoad() && "Folded a stackmap use to a non-load!");
974
975 // Add a new memory operand for this FI.
Lang Hames39609992013-11-29 03:07:54 +0000976 assert(MFI.getObjectOffset(FI) != -1);
Philip Reames0365f1a2014-12-01 22:52:56 +0000977
Justin Lebar0af80cd2016-07-15 18:26:59 +0000978 auto Flags = MachineMemOperand::MOLoad;
Philip Reames0365f1a2014-12-01 22:52:56 +0000979 if (MI->getOpcode() == TargetOpcode::STATEPOINT) {
980 Flags |= MachineMemOperand::MOStore;
981 Flags |= MachineMemOperand::MOVolatile;
982 }
Eric Christopherd9134482014-08-04 21:25:23 +0000983 MachineMemOperand *MMO = MF.getMachineMemOperand(
Alex Lorenze40c8a22015-08-11 23:09:45 +0000984 MachinePointerInfo::getFixedStack(MF, FI), Flags,
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000985 MF.getDataLayout().getPointerSize(), MFI.getObjectAlignment(FI));
Lang Hames39609992013-11-29 03:07:54 +0000986 MIB->addMemOperand(MF, MMO);
987
988 // Replace the instruction and update the operand index.
989 MBB->insert(MachineBasicBlock::iterator(MI), MIB);
990 OperIdx += (MIB->getNumOperands() - MI->getNumOperands()) - 1;
991 MI->eraseFromParent();
992 MI = MIB;
993 }
994 return MBB;
995}
996
Dean Michael Berriscdca0732018-02-01 02:21:54 +0000997MachineBasicBlock *
998TargetLoweringBase::emitXRayCustomEvent(MachineInstr &MI,
999 MachineBasicBlock *MBB) const {
1000 assert(MI.getOpcode() == TargetOpcode::PATCHABLE_EVENT_CALL &&
1001 "Called emitXRayCustomEvent on the wrong MI!");
1002 auto &MF = *MI.getMF();
1003 auto MIB = BuildMI(MF, MI.getDebugLoc(), MI.getDesc());
1004 for (unsigned OpIdx = 0; OpIdx != MI.getNumOperands(); ++OpIdx)
1005 MIB.add(MI.getOperand(OpIdx));
1006
1007 MBB->insert(MachineBasicBlock::iterator(MI), MIB);
1008 MI.eraseFromParent();
1009 return MBB;
1010}
1011
Keith Wyss3d868232018-04-17 21:30:29 +00001012MachineBasicBlock *
1013TargetLoweringBase::emitXRayTypedEvent(MachineInstr &MI,
1014 MachineBasicBlock *MBB) const {
1015 assert(MI.getOpcode() == TargetOpcode::PATCHABLE_TYPED_EVENT_CALL &&
1016 "Called emitXRayTypedEvent on the wrong MI!");
1017 auto &MF = *MI.getMF();
1018 auto MIB = BuildMI(MF, MI.getDebugLoc(), MI.getDesc());
1019 for (unsigned OpIdx = 0; OpIdx != MI.getNumOperands(); ++OpIdx)
1020 MIB.add(MI.getOperand(OpIdx));
1021
1022 MBB->insert(MachineBasicBlock::iterator(MI), MIB);
1023 MI.eraseFromParent();
1024 return MBB;
1025}
1026
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001027/// findRepresentativeClass - Return the largest legal super-reg register class
1028/// of the register class for the specified type and its associated "cost".
Eric Christopher720ab842015-03-03 19:47:14 +00001029// This function is in TargetLowering because it uses RegClassForVT which would
1030// need to be moved to TargetRegisterInfo and would necessitate moving
1031// isTypeLegal over as well - a massive change that would just require
1032// TargetLowering having a TargetRegisterInfo class member that it would use.
Eric Christopher23a3a7c2015-02-26 00:00:24 +00001033std::pair<const TargetRegisterClass *, uint8_t>
1034TargetLoweringBase::findRepresentativeClass(const TargetRegisterInfo *TRI,
1035 MVT VT) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001036 const TargetRegisterClass *RC = RegClassForVT[VT.SimpleTy];
1037 if (!RC)
1038 return std::make_pair(RC, 0);
1039
1040 // Compute the set of all super-register classes.
1041 BitVector SuperRegRC(TRI->getNumRegClasses());
1042 for (SuperRegClassIterator RCI(RC, TRI); RCI.isValid(); ++RCI)
1043 SuperRegRC.setBitsInMask(RCI.getMask());
1044
1045 // Find the first legal register class with the largest spill size.
1046 const TargetRegisterClass *BestRC = RC;
Francis Visoiu Mistrihb52e0362017-05-17 01:07:53 +00001047 for (unsigned i : SuperRegRC.set_bits()) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001048 const TargetRegisterClass *SuperRC = TRI->getRegClass(i);
1049 // We want the largest possible spill size.
Krzysztof Parzyszek44e25f32017-04-24 18:55:33 +00001050 if (TRI->getSpillSize(*SuperRC) <= TRI->getSpillSize(*BestRC))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001051 continue;
Krzysztof Parzyszekc8e8e2a2017-04-24 19:51:12 +00001052 if (!isLegalRC(*TRI, *SuperRC))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001053 continue;
1054 BestRC = SuperRC;
1055 }
1056 return std::make_pair(BestRC, 1);
1057}
1058
1059/// computeRegisterProperties - Once all of the register classes are added,
1060/// this allows us to compute derived properties we expose.
Eric Christopher23a3a7c2015-02-26 00:00:24 +00001061void TargetLoweringBase::computeRegisterProperties(
1062 const TargetRegisterInfo *TRI) {
Craig Topper6438fc32014-11-17 00:26:50 +00001063 static_assert(MVT::LAST_VALUETYPE <= MVT::MAX_ALLOWED_VALUETYPE,
1064 "Too many value types for ValueTypeActions to hold!");
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001065
1066 // Everything defaults to needing one register.
1067 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i) {
1068 NumRegistersForVT[i] = 1;
1069 RegisterTypeForVT[i] = TransformToType[i] = (MVT::SimpleValueType)i;
1070 }
1071 // ...except isVoid, which doesn't need any registers.
1072 NumRegistersForVT[MVT::isVoid] = 0;
1073
1074 // Find the largest integer register class.
1075 unsigned LargestIntReg = MVT::LAST_INTEGER_VALUETYPE;
Craig Topperc0196b12014-04-14 00:51:57 +00001076 for (; RegClassForVT[LargestIntReg] == nullptr; --LargestIntReg)
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001077 assert(LargestIntReg != MVT::i1 && "No integer registers defined!");
1078
1079 // Every integer value type larger than this largest register takes twice as
1080 // many registers to represent as the previous ValueType.
1081 for (unsigned ExpandedReg = LargestIntReg + 1;
1082 ExpandedReg <= MVT::LAST_INTEGER_VALUETYPE; ++ExpandedReg) {
1083 NumRegistersForVT[ExpandedReg] = 2*NumRegistersForVT[ExpandedReg-1];
1084 RegisterTypeForVT[ExpandedReg] = (MVT::SimpleValueType)LargestIntReg;
1085 TransformToType[ExpandedReg] = (MVT::SimpleValueType)(ExpandedReg - 1);
1086 ValueTypeActions.setTypeAction((MVT::SimpleValueType)ExpandedReg,
1087 TypeExpandInteger);
1088 }
1089
1090 // Inspect all of the ValueType's smaller than the largest integer
1091 // register to see which ones need promotion.
1092 unsigned LegalIntReg = LargestIntReg;
1093 for (unsigned IntReg = LargestIntReg - 1;
1094 IntReg >= (unsigned)MVT::i1; --IntReg) {
1095 MVT IVT = (MVT::SimpleValueType)IntReg;
1096 if (isTypeLegal(IVT)) {
1097 LegalIntReg = IntReg;
1098 } else {
1099 RegisterTypeForVT[IntReg] = TransformToType[IntReg] =
1100 (const MVT::SimpleValueType)LegalIntReg;
1101 ValueTypeActions.setTypeAction(IVT, TypePromoteInteger);
1102 }
1103 }
1104
1105 // ppcf128 type is really two f64's.
1106 if (!isTypeLegal(MVT::ppcf128)) {
Petar Jovanovic23e44f52016-02-04 14:43:50 +00001107 if (isTypeLegal(MVT::f64)) {
1108 NumRegistersForVT[MVT::ppcf128] = 2*NumRegistersForVT[MVT::f64];
1109 RegisterTypeForVT[MVT::ppcf128] = MVT::f64;
1110 TransformToType[MVT::ppcf128] = MVT::f64;
1111 ValueTypeActions.setTypeAction(MVT::ppcf128, TypeExpandFloat);
1112 } else {
1113 NumRegistersForVT[MVT::ppcf128] = NumRegistersForVT[MVT::i128];
1114 RegisterTypeForVT[MVT::ppcf128] = RegisterTypeForVT[MVT::i128];
1115 TransformToType[MVT::ppcf128] = MVT::i128;
1116 ValueTypeActions.setTypeAction(MVT::ppcf128, TypeSoftenFloat);
1117 }
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001118 }
1119
Akira Hatanaka3d055582013-03-01 21:11:44 +00001120 // Decide how to handle f128. If the target does not have native f128 support,
1121 // expand it to i128 and we will be generating soft float library calls.
1122 if (!isTypeLegal(MVT::f128)) {
1123 NumRegistersForVT[MVT::f128] = NumRegistersForVT[MVT::i128];
1124 RegisterTypeForVT[MVT::f128] = RegisterTypeForVT[MVT::i128];
1125 TransformToType[MVT::f128] = MVT::i128;
1126 ValueTypeActions.setTypeAction(MVT::f128, TypeSoftenFloat);
1127 }
1128
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001129 // Decide how to handle f64. If the target does not have native f64 support,
1130 // expand it to i64 and we will be generating soft float library calls.
1131 if (!isTypeLegal(MVT::f64)) {
1132 NumRegistersForVT[MVT::f64] = NumRegistersForVT[MVT::i64];
1133 RegisterTypeForVT[MVT::f64] = RegisterTypeForVT[MVT::i64];
1134 TransformToType[MVT::f64] = MVT::i64;
1135 ValueTypeActions.setTypeAction(MVT::f64, TypeSoftenFloat);
1136 }
1137
Ahmed Bougachaa0f35592015-03-28 01:22:37 +00001138 // Decide how to handle f32. If the target does not have native f32 support,
1139 // expand it to i32 and we will be generating soft float library calls.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001140 if (!isTypeLegal(MVT::f32)) {
Ahmed Bougachaa0f35592015-03-28 01:22:37 +00001141 NumRegistersForVT[MVT::f32] = NumRegistersForVT[MVT::i32];
1142 RegisterTypeForVT[MVT::f32] = RegisterTypeForVT[MVT::i32];
1143 TransformToType[MVT::f32] = MVT::i32;
1144 ValueTypeActions.setTypeAction(MVT::f32, TypeSoftenFloat);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001145 }
1146
Oliver Stannard56358572015-11-09 11:03:18 +00001147 // Decide how to handle f16. If the target does not have native f16 support,
1148 // promote it to f32, because there are no f16 library calls (except for
1149 // conversions).
Tim Northover20bd0ce2014-07-18 12:41:46 +00001150 if (!isTypeLegal(MVT::f16)) {
Oliver Stannard56358572015-11-09 11:03:18 +00001151 NumRegistersForVT[MVT::f16] = NumRegistersForVT[MVT::f32];
1152 RegisterTypeForVT[MVT::f16] = RegisterTypeForVT[MVT::f32];
1153 TransformToType[MVT::f16] = MVT::f32;
1154 ValueTypeActions.setTypeAction(MVT::f16, TypePromoteFloat);
Tim Northover20bd0ce2014-07-18 12:41:46 +00001155 }
1156
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001157 // Loop over all of the vector value types to see which need transformations.
1158 for (unsigned i = MVT::FIRST_VECTOR_VALUETYPE;
1159 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001160 MVT VT = (MVT::SimpleValueType) i;
1161 if (isTypeLegal(VT))
1162 continue;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001163
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001164 MVT EltVT = VT.getVectorElementType();
1165 unsigned NElts = VT.getVectorNumElements();
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001166 bool IsLegalWiderType = false;
1167 LegalizeTypeAction PreferredAction = getPreferredVectorAction(VT);
1168 switch (PreferredAction) {
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001169 case TypePromoteInteger:
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001170 // Try to promote the elements of integer vectors. If no legal
1171 // promotion was found, fall through to the widen-vector method.
Matt Arsenault940d19a2016-04-22 21:16:17 +00001172 for (unsigned nVT = i + 1; nVT <= MVT::LAST_INTEGER_VECTOR_VALUETYPE; ++nVT) {
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001173 MVT SVT = (MVT::SimpleValueType) nVT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001174 // Promote vectors of integers to vectors with the same number
1175 // of elements, with a wider element type.
Sanjay Patel1ed771f2016-09-14 16:37:15 +00001176 if (SVT.getScalarSizeInBits() > EltVT.getSizeInBits() &&
Matt Arsenault940d19a2016-04-22 21:16:17 +00001177 SVT.getVectorNumElements() == NElts && isTypeLegal(SVT)) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001178 TransformToType[i] = SVT;
1179 RegisterTypeForVT[i] = SVT;
1180 NumRegistersForVT[i] = 1;
1181 ValueTypeActions.setTypeAction(VT, TypePromoteInteger);
1182 IsLegalWiderType = true;
1183 break;
1184 }
1185 }
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001186 if (IsLegalWiderType)
1187 break;
Galina Kistanovabd79f732017-06-03 05:11:14 +00001188 LLVM_FALLTHROUGH;
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001189
1190 case TypeWidenVector:
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001191 // Try to widen the vector.
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001192 for (unsigned nVT = i + 1; nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
1193 MVT SVT = (MVT::SimpleValueType) nVT;
1194 if (SVT.getVectorElementType() == EltVT
1195 && SVT.getVectorNumElements() > NElts && isTypeLegal(SVT)) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001196 TransformToType[i] = SVT;
1197 RegisterTypeForVT[i] = SVT;
1198 NumRegistersForVT[i] = 1;
1199 ValueTypeActions.setTypeAction(VT, TypeWidenVector);
1200 IsLegalWiderType = true;
1201 break;
1202 }
1203 }
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001204 if (IsLegalWiderType)
1205 break;
Galina Kistanovabd79f732017-06-03 05:11:14 +00001206 LLVM_FALLTHROUGH;
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001207
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001208 case TypeSplitVector:
1209 case TypeScalarizeVector: {
1210 MVT IntermediateVT;
1211 MVT RegisterVT;
1212 unsigned NumIntermediates;
1213 NumRegistersForVT[i] = getVectorTypeBreakdownMVT(VT, IntermediateVT,
1214 NumIntermediates, RegisterVT, this);
1215 RegisterTypeForVT[i] = RegisterVT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001216
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001217 MVT NVT = VT.getPow2VectorType();
1218 if (NVT == VT) {
1219 // Type is already a power of 2. The default action is to split.
1220 TransformToType[i] = MVT::Other;
1221 if (PreferredAction == TypeScalarizeVector)
1222 ValueTypeActions.setTypeAction(VT, TypeScalarizeVector);
Hao Liue02b1a02014-10-31 02:35:34 +00001223 else if (PreferredAction == TypeSplitVector)
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001224 ValueTypeActions.setTypeAction(VT, TypeSplitVector);
Hao Liue02b1a02014-10-31 02:35:34 +00001225 else
1226 // Set type action according to the number of elements.
1227 ValueTypeActions.setTypeAction(VT, NElts == 1 ? TypeScalarizeVector
1228 : TypeSplitVector);
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001229 } else {
1230 TransformToType[i] = NVT;
1231 ValueTypeActions.setTypeAction(VT, TypeWidenVector);
1232 }
1233 break;
1234 }
1235 default:
1236 llvm_unreachable("Unknown vector legalization action!");
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001237 }
1238 }
1239
1240 // Determine the 'representative' register class for each value type.
1241 // An representative register class is the largest (meaning one which is
1242 // not a sub-register class / subreg register class) legal register class for
1243 // a group of value types. For example, on i386, i8, i16, and i32
1244 // representative would be GR32; while on x86_64 it's GR64.
1245 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i) {
1246 const TargetRegisterClass* RRC;
1247 uint8_t Cost;
Eric Christopher23a3a7c2015-02-26 00:00:24 +00001248 std::tie(RRC, Cost) = findRepresentativeClass(TRI, (MVT::SimpleValueType)i);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001249 RepRegClassForVT[i] = RRC;
1250 RepRegClassCostForVT[i] = Cost;
1251 }
1252}
1253
Mehdi Amini44ede332015-07-09 02:09:04 +00001254EVT TargetLoweringBase::getSetCCResultType(const DataLayout &DL, LLVMContext &,
1255 EVT VT) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001256 assert(!VT.isVector() && "No default SetCC type for vectors!");
Mehdi Amini44ede332015-07-09 02:09:04 +00001257 return getPointerTy(DL).SimpleTy;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001258}
1259
1260MVT::SimpleValueType TargetLoweringBase::getCmpLibcallReturnType() const {
1261 return MVT::i32; // return the default value
1262}
1263
1264/// getVectorTypeBreakdown - Vector types are broken down into some number of
1265/// legal first class types. For example, MVT::v8f32 maps to 2 MVT::v4f32
1266/// with Altivec or SSE1, or 8 promoted MVT::f64 values with the X86 FP stack.
1267/// Similarly, MVT::v2i64 turns into 4 MVT::i32 values with both PPC and X86.
1268///
1269/// This method returns the number of registers needed, and the VT for each
1270/// register. It also returns the VT and quantity of the intermediate values
1271/// before they are promoted/expanded.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001272unsigned TargetLoweringBase::getVectorTypeBreakdown(LLVMContext &Context, EVT VT,
1273 EVT &IntermediateVT,
1274 unsigned &NumIntermediates,
1275 MVT &RegisterVT) const {
1276 unsigned NumElts = VT.getVectorNumElements();
1277
1278 // If there is a wider vector type with the same element type as this one,
1279 // or a promoted vector type that has the same number of elements which
1280 // are wider, then we should convert to that legal vector type.
1281 // This handles things like <2 x float> -> <4 x float> and
1282 // <4 x i1> -> <4 x i32>.
1283 LegalizeTypeAction TA = getTypeAction(Context, VT);
1284 if (NumElts != 1 && (TA == TypeWidenVector || TA == TypePromoteInteger)) {
1285 EVT RegisterEVT = getTypeToTransformTo(Context, VT);
1286 if (isTypeLegal(RegisterEVT)) {
1287 IntermediateVT = RegisterEVT;
1288 RegisterVT = RegisterEVT.getSimpleVT();
1289 NumIntermediates = 1;
1290 return 1;
1291 }
1292 }
1293
1294 // Figure out the right, legal destination reg to copy into.
1295 EVT EltTy = VT.getVectorElementType();
1296
1297 unsigned NumVectorRegs = 1;
1298
1299 // FIXME: We don't support non-power-of-2-sized vectors for now. Ideally we
1300 // could break down into LHS/RHS like LegalizeDAG does.
1301 if (!isPowerOf2_32(NumElts)) {
1302 NumVectorRegs = NumElts;
1303 NumElts = 1;
1304 }
1305
1306 // Divide the input until we get to a supported size. This will always
1307 // end with a scalar if the target doesn't support vectors.
1308 while (NumElts > 1 && !isTypeLegal(
1309 EVT::getVectorVT(Context, EltTy, NumElts))) {
1310 NumElts >>= 1;
1311 NumVectorRegs <<= 1;
1312 }
1313
1314 NumIntermediates = NumVectorRegs;
1315
1316 EVT NewVT = EVT::getVectorVT(Context, EltTy, NumElts);
1317 if (!isTypeLegal(NewVT))
1318 NewVT = EltTy;
1319 IntermediateVT = NewVT;
1320
1321 MVT DestVT = getRegisterType(Context, NewVT);
1322 RegisterVT = DestVT;
1323 unsigned NewVTSize = NewVT.getSizeInBits();
1324
1325 // Convert sizes such as i33 to i64.
1326 if (!isPowerOf2_32(NewVTSize))
1327 NewVTSize = NextPowerOf2(NewVTSize);
1328
1329 if (EVT(DestVT).bitsLT(NewVT)) // Value is expanded, e.g. i64 -> i16.
1330 return NumVectorRegs*(NewVTSize/DestVT.getSizeInBits());
1331
1332 // Otherwise, promotion or legal types use the same number of registers as
1333 // the vector decimated to the appropriate level.
1334 return NumVectorRegs;
1335}
1336
1337/// Get the EVTs and ArgFlags collections that represent the legalized return
1338/// type of the given function. This does not require a DAG or a return value,
1339/// and is suitable for use before any DAGs for the function are constructed.
1340/// TODO: Move this out of TargetLowering.cpp.
Matt Arsenault81920b02018-07-28 13:25:19 +00001341void llvm::GetReturnInfo(CallingConv::ID CC, Type *ReturnType,
1342 AttributeList attr,
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001343 SmallVectorImpl<ISD::OutputArg> &Outs,
Mehdi Amini56228da2015-07-09 01:57:34 +00001344 const TargetLowering &TLI, const DataLayout &DL) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001345 SmallVector<EVT, 4> ValueVTs;
Mehdi Amini56228da2015-07-09 01:57:34 +00001346 ComputeValueVTs(TLI, DL, ReturnType, ValueVTs);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001347 unsigned NumValues = ValueVTs.size();
1348 if (NumValues == 0) return;
1349
1350 for (unsigned j = 0, f = NumValues; j != f; ++j) {
1351 EVT VT = ValueVTs[j];
1352 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1353
Reid Klecknerb5180542017-03-21 16:57:19 +00001354 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::SExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001355 ExtendKind = ISD::SIGN_EXTEND;
Reid Klecknerb5180542017-03-21 16:57:19 +00001356 else if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::ZExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001357 ExtendKind = ISD::ZERO_EXTEND;
1358
1359 // FIXME: C calling convention requires the return type to be promoted to
1360 // at least 32-bit. But this is not necessary for non-C calling
1361 // conventions. The frontend should mark functions whose return values
1362 // require promoting with signext or zeroext attributes.
1363 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
1364 MVT MinVT = TLI.getRegisterType(ReturnType->getContext(), MVT::i32);
1365 if (VT.bitsLT(MinVT))
1366 VT = MinVT;
1367 }
1368
Simon Dardis212cccb2017-06-09 14:37:08 +00001369 unsigned NumParts =
Matt Arsenault81920b02018-07-28 13:25:19 +00001370 TLI.getNumRegistersForCallingConv(ReturnType->getContext(), CC, VT);
Simon Dardis212cccb2017-06-09 14:37:08 +00001371 MVT PartVT =
Matt Arsenault81920b02018-07-28 13:25:19 +00001372 TLI.getRegisterTypeForCallingConv(ReturnType->getContext(), CC, VT);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001373
1374 // 'inreg' on function refers to return value
1375 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Reid Klecknerb5180542017-03-21 16:57:19 +00001376 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::InReg))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001377 Flags.setInReg();
1378
1379 // Propagate extension type if any
Reid Klecknerb5180542017-03-21 16:57:19 +00001380 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::SExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001381 Flags.setSExt();
Reid Klecknerb5180542017-03-21 16:57:19 +00001382 else if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::ZExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001383 Flags.setZExt();
1384
1385 for (unsigned i = 0; i < NumParts; ++i)
Tom Stellard8d7d4de2013-10-23 00:44:24 +00001386 Outs.push_back(ISD::OutputArg(Flags, PartVT, VT, /*isFixed=*/true, 0, 0));
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001387 }
1388}
1389
1390/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1391/// function arguments in the caller parameter area. This is the actual
1392/// alignment, not its logarithm.
Mehdi Amini5c183d52015-07-09 02:09:28 +00001393unsigned TargetLoweringBase::getByValTypeAlignment(Type *Ty,
1394 const DataLayout &DL) const {
1395 return DL.getABITypeAlignment(Ty);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001396}
1397
Sanjay Patel0f9dcf82015-07-29 18:24:18 +00001398bool TargetLoweringBase::allowsMemoryAccess(LLVMContext &Context,
1399 const DataLayout &DL, EVT VT,
1400 unsigned AddrSpace,
1401 unsigned Alignment,
1402 bool *Fast) const {
1403 // Check if the specified alignment is sufficient based on the data layout.
1404 // TODO: While using the data layout works in practice, a better solution
1405 // would be to implement this check directly (make this a virtual function).
1406 // For example, the ABI alignment may change based on software platform while
1407 // this function should only be affected by hardware implementation.
1408 Type *Ty = VT.getTypeForEVT(Context);
1409 if (Alignment >= DL.getABITypeAlignment(Ty)) {
1410 // Assume that an access that meets the ABI-specified alignment is fast.
1411 if (Fast != nullptr)
1412 *Fast = true;
1413 return true;
1414 }
Fangrui Songf78650a2018-07-30 19:41:25 +00001415
Sanjay Patel0f9dcf82015-07-29 18:24:18 +00001416 // This is a misaligned access.
1417 return allowsMisalignedMemoryAccesses(VT, AddrSpace, Alignment, Fast);
1418}
1419
Sanjay Pateld66607b2016-04-26 17:11:17 +00001420BranchProbability TargetLoweringBase::getPredictableBranchThreshold() const {
1421 return BranchProbability(MinPercentageForPredictableBranch, 100);
1422}
Sanjay Patel0f9dcf82015-07-29 18:24:18 +00001423
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001424//===----------------------------------------------------------------------===//
1425// TargetTransformInfo Helpers
1426//===----------------------------------------------------------------------===//
1427
1428int TargetLoweringBase::InstructionOpcodeToISD(unsigned Opcode) const {
1429 enum InstructionOpcodes {
1430#define HANDLE_INST(NUM, OPCODE, CLASS) OPCODE = NUM,
1431#define LAST_OTHER_INST(NUM) InstructionOpcodesCount = NUM
1432#include "llvm/IR/Instruction.def"
1433 };
1434 switch (static_cast<InstructionOpcodes>(Opcode)) {
1435 case Ret: return 0;
1436 case Br: return 0;
1437 case Switch: return 0;
1438 case IndirectBr: return 0;
1439 case Invoke: return 0;
1440 case Resume: return 0;
1441 case Unreachable: return 0;
David Majnemer654e1302015-07-31 17:58:14 +00001442 case CleanupRet: return 0;
David Majnemer654e1302015-07-31 17:58:14 +00001443 case CatchRet: return 0;
David Majnemer8a1c45d2015-12-12 05:38:55 +00001444 case CatchPad: return 0;
1445 case CatchSwitch: return 0;
David Majnemer8a1c45d2015-12-12 05:38:55 +00001446 case CleanupPad: return 0;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001447 case Add: return ISD::ADD;
1448 case FAdd: return ISD::FADD;
1449 case Sub: return ISD::SUB;
1450 case FSub: return ISD::FSUB;
1451 case Mul: return ISD::MUL;
1452 case FMul: return ISD::FMUL;
1453 case UDiv: return ISD::UDIV;
Benjamin Kramerce4b3fe2014-04-27 18:47:54 +00001454 case SDiv: return ISD::SDIV;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001455 case FDiv: return ISD::FDIV;
1456 case URem: return ISD::UREM;
1457 case SRem: return ISD::SREM;
1458 case FRem: return ISD::FREM;
1459 case Shl: return ISD::SHL;
1460 case LShr: return ISD::SRL;
1461 case AShr: return ISD::SRA;
1462 case And: return ISD::AND;
1463 case Or: return ISD::OR;
1464 case Xor: return ISD::XOR;
1465 case Alloca: return 0;
1466 case Load: return ISD::LOAD;
1467 case Store: return ISD::STORE;
1468 case GetElementPtr: return 0;
1469 case Fence: return 0;
1470 case AtomicCmpXchg: return 0;
1471 case AtomicRMW: return 0;
1472 case Trunc: return ISD::TRUNCATE;
1473 case ZExt: return ISD::ZERO_EXTEND;
1474 case SExt: return ISD::SIGN_EXTEND;
1475 case FPToUI: return ISD::FP_TO_UINT;
1476 case FPToSI: return ISD::FP_TO_SINT;
1477 case UIToFP: return ISD::UINT_TO_FP;
1478 case SIToFP: return ISD::SINT_TO_FP;
1479 case FPTrunc: return ISD::FP_ROUND;
1480 case FPExt: return ISD::FP_EXTEND;
1481 case PtrToInt: return ISD::BITCAST;
1482 case IntToPtr: return ISD::BITCAST;
1483 case BitCast: return ISD::BITCAST;
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001484 case AddrSpaceCast: return ISD::ADDRSPACECAST;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001485 case ICmp: return ISD::SETCC;
1486 case FCmp: return ISD::SETCC;
1487 case PHI: return 0;
1488 case Call: return 0;
1489 case Select: return ISD::SELECT;
1490 case UserOp1: return 0;
1491 case UserOp2: return 0;
1492 case VAArg: return 0;
1493 case ExtractElement: return ISD::EXTRACT_VECTOR_ELT;
1494 case InsertElement: return ISD::INSERT_VECTOR_ELT;
1495 case ShuffleVector: return ISD::VECTOR_SHUFFLE;
1496 case ExtractValue: return ISD::MERGE_VALUES;
1497 case InsertValue: return ISD::MERGE_VALUES;
1498 case LandingPad: return 0;
1499 }
1500
1501 llvm_unreachable("Unknown instruction type encountered!");
1502}
1503
Chandler Carruth93205eb2015-08-05 18:08:10 +00001504std::pair<int, MVT>
Mehdi Amini44ede332015-07-09 02:09:04 +00001505TargetLoweringBase::getTypeLegalizationCost(const DataLayout &DL,
1506 Type *Ty) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001507 LLVMContext &C = Ty->getContext();
Mehdi Amini44ede332015-07-09 02:09:04 +00001508 EVT MTy = getValueType(DL, Ty);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001509
Chandler Carruth93205eb2015-08-05 18:08:10 +00001510 int Cost = 1;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001511 // We keep legalizing the type until we find a legal kind. We assume that
1512 // the only operation that costs anything is the split. After splitting
1513 // we need to handle two types.
1514 while (true) {
1515 LegalizeKind LK = getTypeConversion(C, MTy);
1516
1517 if (LK.first == TypeLegal)
1518 return std::make_pair(Cost, MTy.getSimpleVT());
1519
1520 if (LK.first == TypeSplitVector || LK.first == TypeExpandInteger)
1521 Cost *= 2;
1522
Chih-Hung Hsiehed7d81e2015-12-03 22:02:40 +00001523 // Do not loop with f128 type.
1524 if (MTy == LK.second)
1525 return std::make_pair(Cost, MTy.getSimpleVT());
1526
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001527 // Keep legalizing the type.
1528 MTy = LK.second;
1529 }
1530}
1531
David L Kreitzerd5c67552016-10-14 17:56:00 +00001532Value *TargetLoweringBase::getDefaultSafeStackPointerLocation(IRBuilder<> &IRB,
1533 bool UseTLS) const {
1534 // compiler-rt provides a variable with a magic name. Targets that do not
1535 // link with compiler-rt may also provide such a variable.
1536 Module *M = IRB.GetInsertBlock()->getParent()->getParent();
1537 const char *UnsafeStackPtrVar = "__safestack_unsafe_stack_ptr";
1538 auto UnsafeStackPtr =
1539 dyn_cast_or_null<GlobalVariable>(M->getNamedValue(UnsafeStackPtrVar));
1540
1541 Type *StackPtrTy = Type::getInt8PtrTy(M->getContext());
1542
1543 if (!UnsafeStackPtr) {
1544 auto TLSModel = UseTLS ?
1545 GlobalValue::InitialExecTLSModel :
1546 GlobalValue::NotThreadLocal;
1547 // The global variable is not defined yet, define it ourselves.
1548 // We use the initial-exec TLS model because we do not support the
1549 // variable living anywhere other than in the main executable.
1550 UnsafeStackPtr = new GlobalVariable(
1551 *M, StackPtrTy, false, GlobalValue::ExternalLinkage, nullptr,
1552 UnsafeStackPtrVar, nullptr, TLSModel);
1553 } else {
1554 // The variable exists, check its type and attributes.
1555 if (UnsafeStackPtr->getValueType() != StackPtrTy)
1556 report_fatal_error(Twine(UnsafeStackPtrVar) + " must have void* type");
1557 if (UseTLS != UnsafeStackPtr->isThreadLocal())
1558 report_fatal_error(Twine(UnsafeStackPtrVar) + " must " +
1559 (UseTLS ? "" : "not ") + "be thread-local");
1560 }
1561 return UnsafeStackPtr;
1562}
1563
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +00001564Value *TargetLoweringBase::getSafeStackPointerLocation(IRBuilder<> &IRB) const {
1565 if (!TM.getTargetTriple().isAndroid())
David L Kreitzerd5c67552016-10-14 17:56:00 +00001566 return getDefaultSafeStackPointerLocation(IRB, true);
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +00001567
1568 // Android provides a libc function to retrieve the address of the current
1569 // thread's unsafe stack pointer.
1570 Module *M = IRB.GetInsertBlock()->getParent()->getParent();
1571 Type *StackPtrTy = Type::getInt8PtrTy(M->getContext());
1572 Value *Fn = M->getOrInsertFunction("__safestack_pointer_address",
Serge Guelton59a2d7b2017-04-11 15:01:18 +00001573 StackPtrTy->getPointerTo(0));
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +00001574 return IRB.CreateCall(Fn);
1575}
1576
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001577//===----------------------------------------------------------------------===//
1578// Loop Strength Reduction hooks
1579//===----------------------------------------------------------------------===//
1580
1581/// isLegalAddressingMode - Return true if the addressing mode represented
1582/// by AM is legal for this target, for a load/store of the specified type.
Mehdi Amini0cdec1e2015-07-09 02:09:40 +00001583bool TargetLoweringBase::isLegalAddressingMode(const DataLayout &DL,
1584 const AddrMode &AM, Type *Ty,
Jonas Paulsson024e3192017-07-21 11:59:37 +00001585 unsigned AS, Instruction *I) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001586 // The default implementation of this implements a conservative RISCy, r+r and
1587 // r+i addr mode.
1588
1589 // Allows a sign-extended 16-bit immediate field.
1590 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
1591 return false;
1592
1593 // No global is ever allowed as a base.
1594 if (AM.BaseGV)
1595 return false;
1596
1597 // Only support r+r,
1598 switch (AM.Scale) {
1599 case 0: // "r+i" or just "i", depending on HasBaseReg.
1600 break;
1601 case 1:
1602 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
1603 return false;
1604 // Otherwise we have r+r or r+i.
1605 break;
1606 case 2:
1607 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
1608 return false;
1609 // Allow 2*r as r+r.
1610 break;
Tom Stellard728d4172014-02-14 21:10:34 +00001611 default: // Don't allow n * r
1612 return false;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001613 }
1614
1615 return true;
1616}
Tim Shen00127562016-04-08 21:26:31 +00001617
1618//===----------------------------------------------------------------------===//
1619// Stack Protector
1620//===----------------------------------------------------------------------===//
1621
1622// For OpenBSD return its special guard variable. Otherwise return nullptr,
1623// so that SelectionDAG handle SSP.
1624Value *TargetLoweringBase::getIRStackGuard(IRBuilder<> &IRB) const {
1625 if (getTargetMachine().getTargetTriple().isOSOpenBSD()) {
1626 Module &M = *IRB.GetInsertBlock()->getParent()->getParent();
1627 PointerType *PtrTy = Type::getInt8PtrTy(M.getContext());
Tim Shena5cc25e2016-08-22 18:26:27 +00001628 return M.getOrInsertGlobal("__guard_local", PtrTy);
Tim Shen00127562016-04-08 21:26:31 +00001629 }
1630 return nullptr;
1631}
1632
1633// Currently only support "standard" __stack_chk_guard.
1634// TODO: add LOAD_STACK_GUARD support.
1635void TargetLoweringBase::insertSSPDeclarations(Module &M) const {
Eli Friedman06441302018-04-21 00:07:46 +00001636 if (!M.getNamedValue("__stack_chk_guard"))
1637 new GlobalVariable(M, Type::getInt8PtrTy(M.getContext()), false,
1638 GlobalVariable::ExternalLinkage,
1639 nullptr, "__stack_chk_guard");
Tim Shen00127562016-04-08 21:26:31 +00001640}
1641
1642// Currently only support "standard" __stack_chk_guard.
1643// TODO: add LOAD_STACK_GUARD support.
Tim Shena1d8bc52016-04-19 20:14:52 +00001644Value *TargetLoweringBase::getSDagStackGuard(const Module &M) const {
Eli Friedman06441302018-04-21 00:07:46 +00001645 return M.getNamedValue("__stack_chk_guard");
Tim Shen00127562016-04-08 21:26:31 +00001646}
Etienne Bergeron22bfa832016-06-07 20:15:35 +00001647
1648Value *TargetLoweringBase::getSSPStackGuardCheck(const Module &M) const {
1649 return nullptr;
1650}
Evandro Menezese45de8a2016-09-26 15:32:33 +00001651
Evandro Menezeseb97e352016-10-25 19:53:51 +00001652unsigned TargetLoweringBase::getMinimumJumpTableEntries() const {
1653 return MinimumJumpTableEntries;
1654}
1655
1656void TargetLoweringBase::setMinimumJumpTableEntries(unsigned Val) {
1657 MinimumJumpTableEntries = Val;
1658}
1659
Jun Bum Lim919f9e82017-04-28 16:04:03 +00001660unsigned TargetLoweringBase::getMinimumJumpTableDensity(bool OptForSize) const {
1661 return OptForSize ? OptsizeJumpTableDensity : JumpTableDensity;
1662}
1663
Evandro Menezese45de8a2016-09-26 15:32:33 +00001664unsigned TargetLoweringBase::getMaximumJumpTableSize() const {
1665 return MaximumJumpTableSize;
1666}
1667
1668void TargetLoweringBase::setMaximumJumpTableSize(unsigned Val) {
1669 MaximumJumpTableSize = Val;
1670}
Sanjay Patel0051efc2016-10-20 16:55:45 +00001671
1672//===----------------------------------------------------------------------===//
1673// Reciprocal Estimates
1674//===----------------------------------------------------------------------===//
1675
1676/// Get the reciprocal estimate attribute string for a function that will
1677/// override the target defaults.
1678static StringRef getRecipEstimateForFunc(MachineFunction &MF) {
Matthias Braunf1caa282017-12-15 22:22:58 +00001679 const Function &F = MF.getFunction();
1680 return F.getFnAttribute("reciprocal-estimates").getValueAsString();
Sanjay Patel0051efc2016-10-20 16:55:45 +00001681}
1682
1683/// Construct a string for the given reciprocal operation of the given type.
1684/// This string should match the corresponding option to the front-end's
1685/// "-mrecip" flag assuming those strings have been passed through in an
1686/// attribute string. For example, "vec-divf" for a division of a vXf32.
1687static std::string getReciprocalOpName(bool IsSqrt, EVT VT) {
1688 std::string Name = VT.isVector() ? "vec-" : "";
1689
1690 Name += IsSqrt ? "sqrt" : "div";
1691
1692 // TODO: Handle "half" or other float types?
1693 if (VT.getScalarType() == MVT::f64) {
1694 Name += "d";
1695 } else {
1696 assert(VT.getScalarType() == MVT::f32 &&
1697 "Unexpected FP type for reciprocal estimate");
1698 Name += "f";
1699 }
1700
1701 return Name;
1702}
1703
1704/// Return the character position and value (a single numeric character) of a
1705/// customized refinement operation in the input string if it exists. Return
1706/// false if there is no customized refinement step count.
1707static bool parseRefinementStep(StringRef In, size_t &Position,
1708 uint8_t &Value) {
1709 const char RefStepToken = ':';
1710 Position = In.find(RefStepToken);
1711 if (Position == StringRef::npos)
1712 return false;
1713
1714 StringRef RefStepString = In.substr(Position + 1);
1715 // Allow exactly one numeric character for the additional refinement
1716 // step parameter.
1717 if (RefStepString.size() == 1) {
1718 char RefStepChar = RefStepString[0];
1719 if (RefStepChar >= '0' && RefStepChar <= '9') {
1720 Value = RefStepChar - '0';
1721 return true;
1722 }
1723 }
1724 report_fatal_error("Invalid refinement step for -recip.");
1725}
1726
1727/// For the input attribute string, return one of the ReciprocalEstimate enum
1728/// status values (enabled, disabled, or not specified) for this operation on
1729/// the specified data type.
1730static int getOpEnabled(bool IsSqrt, EVT VT, StringRef Override) {
1731 if (Override.empty())
1732 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1733
1734 SmallVector<StringRef, 4> OverrideVector;
Craig Topper7413b322018-05-07 01:32:18 +00001735 Override.split(OverrideVector, ',');
Sanjay Patel0051efc2016-10-20 16:55:45 +00001736 unsigned NumArgs = OverrideVector.size();
1737
1738 // Check if "all", "none", or "default" was specified.
1739 if (NumArgs == 1) {
1740 // Look for an optional setting of the number of refinement steps needed
1741 // for this type of reciprocal operation.
1742 size_t RefPos;
1743 uint8_t RefSteps;
1744 if (parseRefinementStep(Override, RefPos, RefSteps)) {
1745 // Split the string for further processing.
1746 Override = Override.substr(0, RefPos);
1747 }
1748
1749 // All reciprocal types are enabled.
1750 if (Override == "all")
1751 return TargetLoweringBase::ReciprocalEstimate::Enabled;
1752
1753 // All reciprocal types are disabled.
1754 if (Override == "none")
1755 return TargetLoweringBase::ReciprocalEstimate::Disabled;
1756
1757 // Target defaults for enablement are used.
1758 if (Override == "default")
1759 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1760 }
1761
1762 // The attribute string may omit the size suffix ('f'/'d').
1763 std::string VTName = getReciprocalOpName(IsSqrt, VT);
1764 std::string VTNameNoSize = VTName;
Sanjay Patel501be9b2016-10-21 14:58:30 +00001765 VTNameNoSize.pop_back();
Sanjay Patel0051efc2016-10-20 16:55:45 +00001766 static const char DisabledPrefix = '!';
1767
1768 for (StringRef RecipType : OverrideVector) {
1769 size_t RefPos;
1770 uint8_t RefSteps;
1771 if (parseRefinementStep(RecipType, RefPos, RefSteps))
1772 RecipType = RecipType.substr(0, RefPos);
1773
1774 // Ignore the disablement token for string matching.
1775 bool IsDisabled = RecipType[0] == DisabledPrefix;
1776 if (IsDisabled)
1777 RecipType = RecipType.substr(1);
1778
1779 if (RecipType.equals(VTName) || RecipType.equals(VTNameNoSize))
1780 return IsDisabled ? TargetLoweringBase::ReciprocalEstimate::Disabled
1781 : TargetLoweringBase::ReciprocalEstimate::Enabled;
1782 }
1783
1784 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1785}
1786
1787/// For the input attribute string, return the customized refinement step count
1788/// for this operation on the specified data type. If the step count does not
1789/// exist, return the ReciprocalEstimate enum value for unspecified.
1790static int getOpRefinementSteps(bool IsSqrt, EVT VT, StringRef Override) {
1791 if (Override.empty())
1792 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1793
1794 SmallVector<StringRef, 4> OverrideVector;
Craig Topper7413b322018-05-07 01:32:18 +00001795 Override.split(OverrideVector, ',');
Sanjay Patel0051efc2016-10-20 16:55:45 +00001796 unsigned NumArgs = OverrideVector.size();
1797
1798 // Check if "all", "default", or "none" was specified.
1799 if (NumArgs == 1) {
1800 // Look for an optional setting of the number of refinement steps needed
1801 // for this type of reciprocal operation.
1802 size_t RefPos;
1803 uint8_t RefSteps;
1804 if (!parseRefinementStep(Override, RefPos, RefSteps))
1805 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1806
1807 // Split the string for further processing.
1808 Override = Override.substr(0, RefPos);
1809 assert(Override != "none" &&
1810 "Disabled reciprocals, but specifed refinement steps?");
1811
1812 // If this is a general override, return the specified number of steps.
1813 if (Override == "all" || Override == "default")
1814 return RefSteps;
1815 }
1816
1817 // The attribute string may omit the size suffix ('f'/'d').
1818 std::string VTName = getReciprocalOpName(IsSqrt, VT);
1819 std::string VTNameNoSize = VTName;
Sanjay Patel501be9b2016-10-21 14:58:30 +00001820 VTNameNoSize.pop_back();
Sanjay Patel0051efc2016-10-20 16:55:45 +00001821
1822 for (StringRef RecipType : OverrideVector) {
1823 size_t RefPos;
1824 uint8_t RefSteps;
1825 if (!parseRefinementStep(RecipType, RefPos, RefSteps))
1826 continue;
1827
1828 RecipType = RecipType.substr(0, RefPos);
1829 if (RecipType.equals(VTName) || RecipType.equals(VTNameNoSize))
1830 return RefSteps;
1831 }
1832
1833 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1834}
1835
1836int TargetLoweringBase::getRecipEstimateSqrtEnabled(EVT VT,
1837 MachineFunction &MF) const {
1838 return getOpEnabled(true, VT, getRecipEstimateForFunc(MF));
1839}
1840
1841int TargetLoweringBase::getRecipEstimateDivEnabled(EVT VT,
1842 MachineFunction &MF) const {
1843 return getOpEnabled(false, VT, getRecipEstimateForFunc(MF));
1844}
1845
1846int TargetLoweringBase::getSqrtRefinementSteps(EVT VT,
1847 MachineFunction &MF) const {
1848 return getOpRefinementSteps(true, VT, getRecipEstimateForFunc(MF));
1849}
1850
1851int TargetLoweringBase::getDivRefinementSteps(EVT VT,
1852 MachineFunction &MF) const {
1853 return getOpRefinementSteps(false, VT, getRecipEstimateForFunc(MF));
1854}
Matthias Braun744c2152017-04-28 20:25:05 +00001855
1856void TargetLoweringBase::finalizeLowering(MachineFunction &MF) const {
1857 MF.getRegInfo().freezeReservedRegs(MF);
1858}