blob: 8a3e67910344bb1f1c2bde19f6e3571803683337 [file] [log] [blame]
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001//===- TargetLoweringBase.cpp - Implement the TargetLoweringBase class ----===//
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements the TargetLoweringBase class.
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000014#include "llvm/ADT/BitVector.h"
15#include "llvm/ADT/STLExtras.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000016#include "llvm/ADT/SmallVector.h"
Sanjay Patel0051efc2016-10-20 16:55:45 +000017#include "llvm/ADT/StringExtras.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000018#include "llvm/ADT/StringRef.h"
Paul Redmondf29ddfe2013-02-15 18:45:18 +000019#include "llvm/ADT/Triple.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000020#include "llvm/ADT/Twine.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000021#include "llvm/CodeGen/Analysis.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000022#include "llvm/CodeGen/ISDOpcodes.h"
23#include "llvm/CodeGen/MachineBasicBlock.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000024#include "llvm/CodeGen/MachineFrameInfo.h"
25#include "llvm/CodeGen/MachineFunction.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000026#include "llvm/CodeGen/MachineInstr.h"
Lang Hames39609992013-11-29 03:07:54 +000027#include "llvm/CodeGen/MachineInstrBuilder.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000028#include "llvm/CodeGen/MachineMemOperand.h"
29#include "llvm/CodeGen/MachineOperand.h"
Matthias Braun744c2152017-04-28 20:25:05 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000031#include "llvm/CodeGen/MachineValueType.h"
32#include "llvm/CodeGen/RuntimeLibcalls.h"
Lang Hames39609992013-11-29 03:07:54 +000033#include "llvm/CodeGen/StackMaps.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000034#include "llvm/CodeGen/TargetLowering.h"
35#include "llvm/CodeGen/TargetOpcodes.h"
36#include "llvm/CodeGen/TargetRegisterInfo.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000037#include "llvm/CodeGen/ValueTypes.h"
38#include "llvm/IR/Attributes.h"
39#include "llvm/IR/CallingConv.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000040#include "llvm/IR/DataLayout.h"
41#include "llvm/IR/DerivedTypes.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000042#include "llvm/IR/Function.h"
43#include "llvm/IR/GlobalValue.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000044#include "llvm/IR/GlobalVariable.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000045#include "llvm/IR/IRBuilder.h"
46#include "llvm/IR/Module.h"
47#include "llvm/IR/Type.h"
Sanjay Pateld66607b2016-04-26 17:11:17 +000048#include "llvm/Support/BranchProbability.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000049#include "llvm/Support/Casting.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000050#include "llvm/Support/CommandLine.h"
Eugene Zelenkofb7f7922017-09-21 23:20:16 +000051#include "llvm/Support/Compiler.h"
Benjamin Kramer56b31bd2013-01-11 20:05:37 +000052#include "llvm/Support/ErrorHandling.h"
53#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 Braun02820912017-12-18 23:33:28 +000094 // Macos < 10.9 has no sincos_stret and we don't bother for 32bit code.
Matthias Brauna4852d2c2017-12-18 23:19:42 +000095 if (TT.isMacOSX())
96 return !TT.isMacOSXVersionLT(10, 9) && TT.isArch64Bit();
Matthias Braun02820912017-12-18 23:33:28 +000097 // iOS < 7.0 has no sincos_stret.
Matthias Brauna4852d2c2017-12-18 23:19:42 +000098 if (TT.isiOS())
Matthias Braun02820912017-12-18 23:33:28 +000099 return !TT.isOSVersionLT(7, 0);
100 // Any other darwin such as WatchOS/TvOS is new enough.
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000101 return true;
102}
103
Sanjay Pateld66607b2016-04-26 17:11:17 +0000104// Although this default value is arbitrary, it is not random. It is assumed
105// that a condition that evaluates the same way by a higher percentage than this
106// is best represented as control flow. Therefore, the default value N should be
107// set such that the win from N% correct executions is greater than the loss
108// from (100 - N)% mispredicted executions for the majority of intended targets.
109static cl::opt<int> MinPercentageForPredictableBranch(
110 "min-predictable-branch", cl::init(99),
111 cl::desc("Minimum percentage (0-100) that a condition must be either true "
112 "or false to assume that the condition is predictable"),
113 cl::Hidden);
114
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000115void TargetLoweringBase::InitLibcalls(const Triple &TT) {
Derek Schuff36454af2017-07-19 21:53:30 +0000116#define HANDLE_LIBCALL(code, name) \
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000117 setLibcallName(RTLIB::code, name);
Derek Schuff36454af2017-07-19 21:53:30 +0000118#include "llvm/CodeGen/RuntimeLibcalls.def"
119#undef HANDLE_LIBCALL
Matthias Braun92de8b22017-12-19 00:20:33 +0000120 // Initialize calling conventions to their default.
121 for (int LC = 0; LC < RTLIB::UNKNOWN_LIBCALL; ++LC)
122 setLibcallCallingConv((RTLIB::Libcall)LC, CallingConv::C);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000123
Derek Schuff36454af2017-07-19 21:53:30 +0000124 // A few names are different on particular architectures or environments.
James Y Knight7873fb92016-04-12 22:32:47 +0000125 if (TT.isOSDarwin()) {
126 // For f16/f32 conversions, Darwin uses the standard naming scheme, instead
127 // of the gnueabi-style __gnu_*_ieee.
128 // FIXME: What about other targets?
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000129 setLibcallName(RTLIB::FPEXT_F16_F32, "__extendhfsf2");
130 setLibcallName(RTLIB::FPROUND_F32_F16, "__truncsfhf2");
Matthias Brauna92cecf2017-12-18 23:14:28 +0000131
132 // Darwin 10 and higher has an optimized __bzero.
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000133 if (!TT.isMacOSX() || !TT.isMacOSXVersionLT(10, 6) || TT.isArch64Bit())
134 setLibcallName(RTLIB::BZERO, "__bzero");
135
136 if (darwinHasSinCos(TT)) {
137 setLibcallName(RTLIB::SINCOS_STRET_F32, "__sincosf_stret");
138 setLibcallName(RTLIB::SINCOS_STRET_F64, "__sincos_stret");
139 if (TT.isWatchABI()) {
140 setLibcallCallingConv(RTLIB::SINCOS_STRET_F32,
141 CallingConv::ARM_AAPCS_VFP);
142 setLibcallCallingConv(RTLIB::SINCOS_STRET_F64,
143 CallingConv::ARM_AAPCS_VFP);
144 }
145 }
James Y Knight7873fb92016-04-12 22:32:47 +0000146 } else {
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000147 setLibcallName(RTLIB::FPEXT_F16_F32, "__gnu_h2f_ieee");
148 setLibcallName(RTLIB::FPROUND_F32_F16, "__gnu_f2h_ieee");
James Y Knight7873fb92016-04-12 22:32:47 +0000149 }
James Y Knight19f6cce2016-04-12 20:18:48 +0000150
Petr Hosek710479c2017-07-23 22:30:00 +0000151 if (TT.isGNUEnvironment() || TT.isOSFuchsia()) {
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000152 setLibcallName(RTLIB::SINCOS_F32, "sincosf");
153 setLibcallName(RTLIB::SINCOS_F64, "sincos");
154 setLibcallName(RTLIB::SINCOS_F80, "sincosl");
155 setLibcallName(RTLIB::SINCOS_F128, "sincosl");
156 setLibcallName(RTLIB::SINCOS_PPCF128, "sincosl");
Paul Redmondf29ddfe2013-02-15 18:45:18 +0000157 }
Michael Gottesman7dce16f2013-08-12 18:45:38 +0000158
Derek Schuff36454af2017-07-19 21:53:30 +0000159 if (TT.isOSOpenBSD()) {
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000160 setLibcallName(RTLIB::STACKPROTECTOR_CHECK_FAIL, nullptr);
Ahmed Bougacha6402ad22015-05-14 01:00:51 +0000161 }
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000162}
163
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000164/// getFPEXT - Return the FPEXT_*_* value for the given types, or
165/// UNKNOWN_LIBCALL if there is none.
166RTLIB::Libcall RTLIB::getFPEXT(EVT OpVT, EVT RetVT) {
Tim Northoverf7a02c12014-07-21 09:13:56 +0000167 if (OpVT == MVT::f16) {
168 if (RetVT == MVT::f32)
169 return FPEXT_F16_F32;
170 } else if (OpVT == MVT::f32) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000171 if (RetVT == MVT::f64)
172 return FPEXT_F32_F64;
173 if (RetVT == MVT::f128)
174 return FPEXT_F32_F128;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000175 if (RetVT == MVT::ppcf128)
176 return FPEXT_F32_PPCF128;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000177 } else if (OpVT == MVT::f64) {
178 if (RetVT == MVT::f128)
179 return FPEXT_F64_F128;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000180 else if (RetVT == MVT::ppcf128)
181 return FPEXT_F64_PPCF128;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000182 }
183
184 return UNKNOWN_LIBCALL;
185}
186
187/// getFPROUND - Return the FPROUND_*_* value for the given types, or
188/// UNKNOWN_LIBCALL if there is none.
189RTLIB::Libcall RTLIB::getFPROUND(EVT OpVT, EVT RetVT) {
Tim Northover84ce0a62014-07-17 11:12:12 +0000190 if (RetVT == MVT::f16) {
191 if (OpVT == MVT::f32)
192 return FPROUND_F32_F16;
193 if (OpVT == MVT::f64)
194 return FPROUND_F64_F16;
195 if (OpVT == MVT::f80)
196 return FPROUND_F80_F16;
197 if (OpVT == MVT::f128)
198 return FPROUND_F128_F16;
199 if (OpVT == MVT::ppcf128)
200 return FPROUND_PPCF128_F16;
201 } else if (RetVT == MVT::f32) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000202 if (OpVT == MVT::f64)
203 return FPROUND_F64_F32;
204 if (OpVT == MVT::f80)
205 return FPROUND_F80_F32;
206 if (OpVT == MVT::f128)
207 return FPROUND_F128_F32;
208 if (OpVT == MVT::ppcf128)
209 return FPROUND_PPCF128_F32;
210 } else if (RetVT == MVT::f64) {
211 if (OpVT == MVT::f80)
212 return FPROUND_F80_F64;
213 if (OpVT == MVT::f128)
214 return FPROUND_F128_F64;
215 if (OpVT == MVT::ppcf128)
216 return FPROUND_PPCF128_F64;
217 }
218
219 return UNKNOWN_LIBCALL;
220}
221
222/// getFPTOSINT - Return the FPTOSINT_*_* value for the given types, or
223/// UNKNOWN_LIBCALL if there is none.
224RTLIB::Libcall RTLIB::getFPTOSINT(EVT OpVT, EVT RetVT) {
225 if (OpVT == MVT::f32) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000226 if (RetVT == MVT::i32)
227 return FPTOSINT_F32_I32;
228 if (RetVT == MVT::i64)
229 return FPTOSINT_F32_I64;
230 if (RetVT == MVT::i128)
231 return FPTOSINT_F32_I128;
232 } else if (OpVT == MVT::f64) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000233 if (RetVT == MVT::i32)
234 return FPTOSINT_F64_I32;
235 if (RetVT == MVT::i64)
236 return FPTOSINT_F64_I64;
237 if (RetVT == MVT::i128)
238 return FPTOSINT_F64_I128;
239 } else if (OpVT == MVT::f80) {
240 if (RetVT == MVT::i32)
241 return FPTOSINT_F80_I32;
242 if (RetVT == MVT::i64)
243 return FPTOSINT_F80_I64;
244 if (RetVT == MVT::i128)
245 return FPTOSINT_F80_I128;
246 } else if (OpVT == MVT::f128) {
247 if (RetVT == MVT::i32)
248 return FPTOSINT_F128_I32;
249 if (RetVT == MVT::i64)
250 return FPTOSINT_F128_I64;
251 if (RetVT == MVT::i128)
252 return FPTOSINT_F128_I128;
253 } else if (OpVT == MVT::ppcf128) {
254 if (RetVT == MVT::i32)
255 return FPTOSINT_PPCF128_I32;
256 if (RetVT == MVT::i64)
257 return FPTOSINT_PPCF128_I64;
258 if (RetVT == MVT::i128)
259 return FPTOSINT_PPCF128_I128;
260 }
261 return UNKNOWN_LIBCALL;
262}
263
264/// getFPTOUINT - Return the FPTOUINT_*_* value for the given types, or
265/// UNKNOWN_LIBCALL if there is none.
266RTLIB::Libcall RTLIB::getFPTOUINT(EVT OpVT, EVT RetVT) {
267 if (OpVT == MVT::f32) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000268 if (RetVT == MVT::i32)
269 return FPTOUINT_F32_I32;
270 if (RetVT == MVT::i64)
271 return FPTOUINT_F32_I64;
272 if (RetVT == MVT::i128)
273 return FPTOUINT_F32_I128;
274 } else if (OpVT == MVT::f64) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000275 if (RetVT == MVT::i32)
276 return FPTOUINT_F64_I32;
277 if (RetVT == MVT::i64)
278 return FPTOUINT_F64_I64;
279 if (RetVT == MVT::i128)
280 return FPTOUINT_F64_I128;
281 } else if (OpVT == MVT::f80) {
282 if (RetVT == MVT::i32)
283 return FPTOUINT_F80_I32;
284 if (RetVT == MVT::i64)
285 return FPTOUINT_F80_I64;
286 if (RetVT == MVT::i128)
287 return FPTOUINT_F80_I128;
288 } else if (OpVT == MVT::f128) {
289 if (RetVT == MVT::i32)
290 return FPTOUINT_F128_I32;
291 if (RetVT == MVT::i64)
292 return FPTOUINT_F128_I64;
293 if (RetVT == MVT::i128)
294 return FPTOUINT_F128_I128;
295 } else if (OpVT == MVT::ppcf128) {
296 if (RetVT == MVT::i32)
297 return FPTOUINT_PPCF128_I32;
298 if (RetVT == MVT::i64)
299 return FPTOUINT_PPCF128_I64;
300 if (RetVT == MVT::i128)
301 return FPTOUINT_PPCF128_I128;
302 }
303 return UNKNOWN_LIBCALL;
304}
305
306/// getSINTTOFP - Return the SINTTOFP_*_* value for the given types, or
307/// UNKNOWN_LIBCALL if there is none.
308RTLIB::Libcall RTLIB::getSINTTOFP(EVT OpVT, EVT RetVT) {
309 if (OpVT == MVT::i32) {
310 if (RetVT == MVT::f32)
311 return SINTTOFP_I32_F32;
312 if (RetVT == MVT::f64)
313 return SINTTOFP_I32_F64;
314 if (RetVT == MVT::f80)
315 return SINTTOFP_I32_F80;
316 if (RetVT == MVT::f128)
317 return SINTTOFP_I32_F128;
318 if (RetVT == MVT::ppcf128)
319 return SINTTOFP_I32_PPCF128;
320 } else if (OpVT == MVT::i64) {
321 if (RetVT == MVT::f32)
322 return SINTTOFP_I64_F32;
323 if (RetVT == MVT::f64)
324 return SINTTOFP_I64_F64;
325 if (RetVT == MVT::f80)
326 return SINTTOFP_I64_F80;
327 if (RetVT == MVT::f128)
328 return SINTTOFP_I64_F128;
329 if (RetVT == MVT::ppcf128)
330 return SINTTOFP_I64_PPCF128;
331 } else if (OpVT == MVT::i128) {
332 if (RetVT == MVT::f32)
333 return SINTTOFP_I128_F32;
334 if (RetVT == MVT::f64)
335 return SINTTOFP_I128_F64;
336 if (RetVT == MVT::f80)
337 return SINTTOFP_I128_F80;
338 if (RetVT == MVT::f128)
339 return SINTTOFP_I128_F128;
340 if (RetVT == MVT::ppcf128)
341 return SINTTOFP_I128_PPCF128;
342 }
343 return UNKNOWN_LIBCALL;
344}
345
346/// getUINTTOFP - Return the UINTTOFP_*_* value for the given types, or
347/// UNKNOWN_LIBCALL if there is none.
348RTLIB::Libcall RTLIB::getUINTTOFP(EVT OpVT, EVT RetVT) {
349 if (OpVT == MVT::i32) {
350 if (RetVT == MVT::f32)
351 return UINTTOFP_I32_F32;
352 if (RetVT == MVT::f64)
353 return UINTTOFP_I32_F64;
354 if (RetVT == MVT::f80)
355 return UINTTOFP_I32_F80;
356 if (RetVT == MVT::f128)
357 return UINTTOFP_I32_F128;
358 if (RetVT == MVT::ppcf128)
359 return UINTTOFP_I32_PPCF128;
360 } else if (OpVT == MVT::i64) {
361 if (RetVT == MVT::f32)
362 return UINTTOFP_I64_F32;
363 if (RetVT == MVT::f64)
364 return UINTTOFP_I64_F64;
365 if (RetVT == MVT::f80)
366 return UINTTOFP_I64_F80;
367 if (RetVT == MVT::f128)
368 return UINTTOFP_I64_F128;
369 if (RetVT == MVT::ppcf128)
370 return UINTTOFP_I64_PPCF128;
371 } else if (OpVT == MVT::i128) {
372 if (RetVT == MVT::f32)
373 return UINTTOFP_I128_F32;
374 if (RetVT == MVT::f64)
375 return UINTTOFP_I128_F64;
376 if (RetVT == MVT::f80)
377 return UINTTOFP_I128_F80;
378 if (RetVT == MVT::f128)
379 return UINTTOFP_I128_F128;
380 if (RetVT == MVT::ppcf128)
381 return UINTTOFP_I128_PPCF128;
382 }
383 return UNKNOWN_LIBCALL;
384}
385
James Y Knightf44fc522016-03-16 22:12:04 +0000386RTLIB::Libcall RTLIB::getSYNC(unsigned Opc, MVT VT) {
Benjamin Kramerc54c38e2015-03-05 20:04:29 +0000387#define OP_TO_LIBCALL(Name, Enum) \
388 case Name: \
389 switch (VT.SimpleTy) { \
390 default: \
391 return UNKNOWN_LIBCALL; \
392 case MVT::i8: \
393 return Enum##_1; \
394 case MVT::i16: \
395 return Enum##_2; \
396 case MVT::i32: \
397 return Enum##_4; \
398 case MVT::i64: \
399 return Enum##_8; \
400 case MVT::i128: \
401 return Enum##_16; \
402 }
403
404 switch (Opc) {
405 OP_TO_LIBCALL(ISD::ATOMIC_SWAP, SYNC_LOCK_TEST_AND_SET)
406 OP_TO_LIBCALL(ISD::ATOMIC_CMP_SWAP, SYNC_VAL_COMPARE_AND_SWAP)
407 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_ADD, SYNC_FETCH_AND_ADD)
408 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_SUB, SYNC_FETCH_AND_SUB)
409 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_AND, SYNC_FETCH_AND_AND)
410 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_OR, SYNC_FETCH_AND_OR)
411 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_XOR, SYNC_FETCH_AND_XOR)
412 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_NAND, SYNC_FETCH_AND_NAND)
413 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_MAX, SYNC_FETCH_AND_MAX)
414 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_UMAX, SYNC_FETCH_AND_UMAX)
415 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_MIN, SYNC_FETCH_AND_MIN)
416 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_UMIN, SYNC_FETCH_AND_UMIN)
417 }
418
419#undef OP_TO_LIBCALL
420
421 return UNKNOWN_LIBCALL;
422}
423
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000424RTLIB::Libcall RTLIB::getMEMCPY_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
Igor Laevsky4f31e522016-12-29 14:31:07 +0000425 switch (ElementSize) {
426 case 1:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000427 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_1;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000428 case 2:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000429 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_2;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000430 case 4:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000431 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_4;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000432 case 8:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000433 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_8;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000434 case 16:
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000435 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_16;
Igor Laevsky4f31e522016-12-29 14:31:07 +0000436 default:
437 return UNKNOWN_LIBCALL;
438 }
Igor Laevsky4f31e522016-12-29 14:31:07 +0000439}
440
Daniel Neilson57226ef2017-07-12 15:25:26 +0000441RTLIB::Libcall RTLIB::getMEMMOVE_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
442 switch (ElementSize) {
443 case 1:
444 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_1;
445 case 2:
446 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_2;
447 case 4:
448 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_4;
449 case 8:
450 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_8;
451 case 16:
452 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_16;
453 default:
454 return UNKNOWN_LIBCALL;
455 }
456}
457
Daniel Neilson965613e2017-07-12 21:57:23 +0000458RTLIB::Libcall RTLIB::getMEMSET_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
459 switch (ElementSize) {
460 case 1:
461 return MEMSET_ELEMENT_UNORDERED_ATOMIC_1;
462 case 2:
463 return MEMSET_ELEMENT_UNORDERED_ATOMIC_2;
464 case 4:
465 return MEMSET_ELEMENT_UNORDERED_ATOMIC_4;
466 case 8:
467 return MEMSET_ELEMENT_UNORDERED_ATOMIC_8;
468 case 16:
469 return MEMSET_ELEMENT_UNORDERED_ATOMIC_16;
470 default:
471 return UNKNOWN_LIBCALL;
472 }
473}
474
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000475/// InitCmpLibcallCCs - Set default comparison libcall CC.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000476static void InitCmpLibcallCCs(ISD::CondCode *CCs) {
477 memset(CCs, ISD::SETCC_INVALID, sizeof(ISD::CondCode)*RTLIB::UNKNOWN_LIBCALL);
478 CCs[RTLIB::OEQ_F32] = ISD::SETEQ;
479 CCs[RTLIB::OEQ_F64] = ISD::SETEQ;
480 CCs[RTLIB::OEQ_F128] = ISD::SETEQ;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000481 CCs[RTLIB::OEQ_PPCF128] = ISD::SETEQ;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000482 CCs[RTLIB::UNE_F32] = ISD::SETNE;
483 CCs[RTLIB::UNE_F64] = ISD::SETNE;
484 CCs[RTLIB::UNE_F128] = ISD::SETNE;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000485 CCs[RTLIB::UNE_PPCF128] = ISD::SETNE;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000486 CCs[RTLIB::OGE_F32] = ISD::SETGE;
487 CCs[RTLIB::OGE_F64] = ISD::SETGE;
488 CCs[RTLIB::OGE_F128] = ISD::SETGE;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000489 CCs[RTLIB::OGE_PPCF128] = ISD::SETGE;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000490 CCs[RTLIB::OLT_F32] = ISD::SETLT;
491 CCs[RTLIB::OLT_F64] = ISD::SETLT;
492 CCs[RTLIB::OLT_F128] = ISD::SETLT;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000493 CCs[RTLIB::OLT_PPCF128] = ISD::SETLT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000494 CCs[RTLIB::OLE_F32] = ISD::SETLE;
495 CCs[RTLIB::OLE_F64] = ISD::SETLE;
496 CCs[RTLIB::OLE_F128] = ISD::SETLE;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000497 CCs[RTLIB::OLE_PPCF128] = ISD::SETLE;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000498 CCs[RTLIB::OGT_F32] = ISD::SETGT;
499 CCs[RTLIB::OGT_F64] = ISD::SETGT;
500 CCs[RTLIB::OGT_F128] = ISD::SETGT;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000501 CCs[RTLIB::OGT_PPCF128] = ISD::SETGT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000502 CCs[RTLIB::UO_F32] = ISD::SETNE;
503 CCs[RTLIB::UO_F64] = ISD::SETNE;
504 CCs[RTLIB::UO_F128] = ISD::SETNE;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000505 CCs[RTLIB::UO_PPCF128] = ISD::SETNE;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000506 CCs[RTLIB::O_F32] = ISD::SETEQ;
507 CCs[RTLIB::O_F64] = ISD::SETEQ;
508 CCs[RTLIB::O_F128] = ISD::SETEQ;
Petar Jovanovic23e44f52016-02-04 14:43:50 +0000509 CCs[RTLIB::O_PPCF128] = ISD::SETEQ;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000510}
511
Aditya Nandakumar30531552014-11-13 21:29:21 +0000512/// NOTE: The TargetMachine owns TLOF.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000513TargetLoweringBase::TargetLoweringBase(const TargetMachine &tm) : TM(tm) {
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000514 initActions();
515
516 // Perform these initializations only once.
Zaara Syeda3a7578c2017-05-31 17:12:38 +0000517 MaxStoresPerMemset = MaxStoresPerMemcpy = MaxStoresPerMemmove =
518 MaxLoadsPerMemcmp = 8;
519 MaxStoresPerMemsetOptSize = MaxStoresPerMemcpyOptSize =
520 MaxStoresPerMemmoveOptSize = MaxLoadsPerMemcmpOptSize = 4;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000521 UseUnderscoreSetJmp = false;
522 UseUnderscoreLongJmp = false;
Hal Finkeldecb0242014-01-02 21:13:43 +0000523 HasMultipleConditionRegisters = false;
Yi Jiangb23edeb2014-04-21 22:22:44 +0000524 HasExtractBitsInsn = false;
Sanjay Patel943829a2015-07-01 18:10:20 +0000525 JumpIsExpensive = JumpIsExpensiveOverride;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000526 PredictableSelectIsExpensive = false;
Quentin Colombetfc2201e2014-12-17 01:36:17 +0000527 EnableExtLdPromotion = false;
Pedro Artigascaa56582014-08-08 16:46:53 +0000528 HasFloatingPointExceptions = true;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000529 StackPointerRegisterToSaveRestore = 0;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000530 BooleanContents = UndefinedBooleanContent;
Daniel Sanderscbd44c52014-07-10 10:18:12 +0000531 BooleanFloatContents = UndefinedBooleanContent;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000532 BooleanVectorContents = UndefinedBooleanContent;
533 SchedPreferenceInfo = Sched::ILP;
534 JumpBufSize = 0;
535 JumpBufAlignment = 0;
536 MinFunctionAlignment = 0;
537 PrefFunctionAlignment = 0;
538 PrefLoopAlignment = 0;
Nirav Dave54e22f32017-03-14 00:34:14 +0000539 GatherAllAliasesMaxDepth = 18;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000540 MinStackArgumentAlignment = 1;
James Y Knight19f6cce2016-04-12 20:18:48 +0000541 // TODO: the default will be switched to 0 in the next commit, along
542 // with the Target-specific changes necessary.
543 MaxAtomicSizeInBitsSupported = 1024;
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000544
James Y Knight148a6462016-06-17 18:11:48 +0000545 MinCmpXchgSizeInBits = 0;
Dylan McKay80463fe2017-12-09 06:45:36 +0000546 SupportsUnalignedAtomics = false;
James Y Knight148a6462016-06-17 18:11:48 +0000547
James Y Knight7873fb92016-04-12 22:32:47 +0000548 std::fill(std::begin(LibcallRoutineNames), std::end(LibcallRoutineNames), nullptr);
549
Matthias Brauna4852d2c2017-12-18 23:19:42 +0000550 InitLibcalls(TM.getTargetTriple());
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000551 InitCmpLibcallCCs(CmpLibcallCCs);
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000552}
553
Bill Wendlingeb108ba2013-04-05 21:52:40 +0000554void TargetLoweringBase::initActions() {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000555 // All operations default to being supported.
556 memset(OpActions, 0, sizeof(OpActions));
557 memset(LoadExtActions, 0, sizeof(LoadExtActions));
558 memset(TruncStoreActions, 0, sizeof(TruncStoreActions));
559 memset(IndexedModeActions, 0, sizeof(IndexedModeActions));
560 memset(CondCodeActions, 0, sizeof(CondCodeActions));
Craig Topper00230802016-04-08 07:10:46 +0000561 std::fill(std::begin(RegClassForVT), std::end(RegClassForVT), nullptr);
562 std::fill(std::begin(TargetDAGCombineArray),
563 std::end(TargetDAGCombineArray), 0);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000564
565 // Set default actions for various operations.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000566 for (MVT VT : MVT::all_valuetypes()) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000567 // Default all indexed load / store to expand.
568 for (unsigned IM = (unsigned)ISD::PRE_INC;
569 IM != (unsigned)ISD::LAST_INDEXED_MODE; ++IM) {
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000570 setIndexedLoadAction(IM, VT, Expand);
571 setIndexedStoreAction(IM, VT, Expand);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000572 }
573
Tim Northover420a2162014-06-13 14:24:07 +0000574 // Most backends expect to see the node which just returns the value loaded.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000575 setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, VT, Expand);
Tim Northover420a2162014-06-13 14:24:07 +0000576
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000577 // These operations default to expand.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000578 setOperationAction(ISD::FGETSIGN, VT, Expand);
579 setOperationAction(ISD::CONCAT_VECTORS, VT, Expand);
580 setOperationAction(ISD::FMINNUM, VT, Expand);
581 setOperationAction(ISD::FMAXNUM, VT, Expand);
James Molloy01cdecc2015-08-11 09:13:05 +0000582 setOperationAction(ISD::FMINNAN, VT, Expand);
583 setOperationAction(ISD::FMAXNAN, VT, Expand);
Matt Arsenault0dc54c42015-02-20 22:10:33 +0000584 setOperationAction(ISD::FMAD, VT, Expand);
James Molloy7e9776b2015-05-15 09:03:15 +0000585 setOperationAction(ISD::SMIN, VT, Expand);
586 setOperationAction(ISD::SMAX, VT, Expand);
587 setOperationAction(ISD::UMIN, VT, Expand);
588 setOperationAction(ISD::UMAX, VT, Expand);
Simon Pilgrimcf2da962017-03-14 21:26:58 +0000589 setOperationAction(ISD::ABS, VT, Expand);
Hal Finkel8ec43c62013-08-09 04:13:44 +0000590
Jan Vesely75395482015-04-29 16:30:46 +0000591 // Overflow operations default to expand
592 setOperationAction(ISD::SADDO, VT, Expand);
593 setOperationAction(ISD::SSUBO, VT, Expand);
594 setOperationAction(ISD::UADDO, VT, Expand);
595 setOperationAction(ISD::USUBO, VT, Expand);
596 setOperationAction(ISD::SMULO, VT, Expand);
597 setOperationAction(ISD::UMULO, VT, Expand);
Hal Finkelcd8664c2015-12-11 23:11:52 +0000598
Amaury Sechet8ac81f32017-04-30 19:24:09 +0000599 // ADDCARRY operations default to expand
600 setOperationAction(ISD::ADDCARRY, VT, Expand);
601 setOperationAction(ISD::SUBCARRY, VT, Expand);
Amaury Sechet251ea8a2017-06-01 11:14:17 +0000602 setOperationAction(ISD::SETCCCARRY, VT, Expand);
Amaury Sechet8ac81f32017-04-30 19:24:09 +0000603
Craig Topper33772c52016-04-28 03:34:31 +0000604 // These default to Expand so they will be expanded to CTLZ/CTTZ by default.
605 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
606 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
607
James Molloy90111f72015-11-12 12:29:09 +0000608 setOperationAction(ISD::BITREVERSE, VT, Expand);
609
Hal Finkel8ec43c62013-08-09 04:13:44 +0000610 // These library functions default to expand.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000611 setOperationAction(ISD::FROUND, VT, Expand);
Craig Topperf6d4dc52017-05-30 15:27:55 +0000612 setOperationAction(ISD::FPOWI, VT, Expand);
Hal Finkel0c5c01aa2013-08-19 23:35:46 +0000613
614 // These operations default to expand for vector types.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000615 if (VT.isVector()) {
616 setOperationAction(ISD::FCOPYSIGN, VT, Expand);
617 setOperationAction(ISD::ANY_EXTEND_VECTOR_INREG, VT, Expand);
618 setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, VT, Expand);
619 setOperationAction(ISD::ZERO_EXTEND_VECTOR_INREG, VT, Expand);
Chandler Carruthd3561f62014-07-09 22:53:04 +0000620 }
Yury Gribovd7dbb662015-12-01 11:40:55 +0000621
Etienne Bergeron22bfa832016-06-07 20:15:35 +0000622 // For most targets @llvm.get.dynamic.area.offset just returns 0.
Yury Gribovd7dbb662015-12-01 11:40:55 +0000623 setOperationAction(ISD::GET_DYNAMIC_AREA_OFFSET, VT, Expand);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000624 }
625
626 // Most targets ignore the @llvm.prefetch intrinsic.
627 setOperationAction(ISD::PREFETCH, MVT::Other, Expand);
628
Ahmed Bougachaf9c19da2015-08-28 01:49:59 +0000629 // Most targets also ignore the @llvm.readcyclecounter intrinsic.
630 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Expand);
631
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000632 // ConstantFP nodes default to expand. Targets can either change this to
633 // Legal, in which case all fp constants are legal, or use isFPImmLegal()
634 // to optimize expansions for certain constants.
635 setOperationAction(ISD::ConstantFP, MVT::f16, Expand);
636 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
637 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
638 setOperationAction(ISD::ConstantFP, MVT::f80, Expand);
639 setOperationAction(ISD::ConstantFP, MVT::f128, Expand);
640
641 // These library functions default to expand.
Ahmed Bougacha2a20e272015-03-26 23:21:03 +0000642 for (MVT VT : {MVT::f32, MVT::f64, MVT::f128}) {
643 setOperationAction(ISD::FLOG , VT, Expand);
644 setOperationAction(ISD::FLOG2, VT, Expand);
645 setOperationAction(ISD::FLOG10, VT, Expand);
646 setOperationAction(ISD::FEXP , VT, Expand);
647 setOperationAction(ISD::FEXP2, VT, Expand);
648 setOperationAction(ISD::FFLOOR, VT, Expand);
Ahmed Bougacha2a20e272015-03-26 23:21:03 +0000649 setOperationAction(ISD::FNEARBYINT, VT, Expand);
650 setOperationAction(ISD::FCEIL, VT, Expand);
651 setOperationAction(ISD::FRINT, VT, Expand);
652 setOperationAction(ISD::FTRUNC, VT, Expand);
653 setOperationAction(ISD::FROUND, VT, Expand);
654 }
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000655
656 // Default ISD::TRAP to expand (which turns it into abort).
657 setOperationAction(ISD::TRAP, MVT::Other, Expand);
658
659 // On most systems, DEBUGTRAP and TRAP have no difference. The "Expand"
660 // here is to inform DAG Legalizer to replace DEBUGTRAP with TRAP.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000661 setOperationAction(ISD::DEBUGTRAP, MVT::Other, Expand);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000662}
663
Mehdi Aminieaabc512015-07-09 15:12:23 +0000664MVT TargetLoweringBase::getScalarShiftAmountTy(const DataLayout &DL,
665 EVT) const {
Mehdi Amini9639d652015-07-09 02:09:20 +0000666 return MVT::getIntegerVT(8 * DL.getPointerSize(0));
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000667}
668
Mehdi Amini9639d652015-07-09 02:09:20 +0000669EVT TargetLoweringBase::getShiftAmountTy(EVT LHSTy,
670 const DataLayout &DL) const {
Michael Liao6af16fc2013-03-01 18:40:30 +0000671 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
672 if (LHSTy.isVector())
673 return LHSTy;
Mehdi Aminieaabc512015-07-09 15:12:23 +0000674 return getScalarShiftAmountTy(DL, LHSTy);
Michael Liao6af16fc2013-03-01 18:40:30 +0000675}
676
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000677bool TargetLoweringBase::canOpTrap(unsigned Op, EVT VT) const {
678 assert(isTypeLegal(VT));
679 switch (Op) {
680 default:
681 return false;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000682 case ISD::SDIV:
683 case ISD::UDIV:
684 case ISD::SREM:
685 case ISD::UREM:
686 return true;
687 }
688}
689
Sanjay Patel943829a2015-07-01 18:10:20 +0000690void TargetLoweringBase::setJumpIsExpensive(bool isExpensive) {
691 // If the command-line option was specified, ignore this request.
692 if (!JumpIsExpensiveOverride.getNumOccurrences())
693 JumpIsExpensive = isExpensive;
694}
695
Eric Christopher75dbd7c2015-02-25 22:41:30 +0000696TargetLoweringBase::LegalizeKind
697TargetLoweringBase::getTypeConversion(LLVMContext &Context, EVT VT) const {
698 // If this is a simple type, use the ComputeRegisterProp mechanism.
699 if (VT.isSimple()) {
700 MVT SVT = VT.getSimpleVT();
701 assert((unsigned)SVT.SimpleTy < array_lengthof(TransformToType));
702 MVT NVT = TransformToType[SVT.SimpleTy];
703 LegalizeTypeAction LA = ValueTypeActions.getTypeAction(SVT);
704
705 assert((LA == TypeLegal || LA == TypeSoftenFloat ||
706 ValueTypeActions.getTypeAction(NVT) != TypePromoteInteger) &&
707 "Promote may not follow Expand or Promote");
708
709 if (LA == TypeSplitVector)
710 return LegalizeKind(LA,
711 EVT::getVectorVT(Context, SVT.getVectorElementType(),
712 SVT.getVectorNumElements() / 2));
713 if (LA == TypeScalarizeVector)
714 return LegalizeKind(LA, SVT.getVectorElementType());
715 return LegalizeKind(LA, NVT);
716 }
717
718 // Handle Extended Scalar Types.
719 if (!VT.isVector()) {
720 assert(VT.isInteger() && "Float types must be simple");
721 unsigned BitSize = VT.getSizeInBits();
722 // First promote to a power-of-two size, then expand if necessary.
723 if (BitSize < 8 || !isPowerOf2_32(BitSize)) {
724 EVT NVT = VT.getRoundIntegerType(Context);
725 assert(NVT != VT && "Unable to round integer VT");
726 LegalizeKind NextStep = getTypeConversion(Context, NVT);
727 // Avoid multi-step promotion.
728 if (NextStep.first == TypePromoteInteger)
729 return NextStep;
730 // Return rounded integer type.
731 return LegalizeKind(TypePromoteInteger, NVT);
732 }
733
734 return LegalizeKind(TypeExpandInteger,
735 EVT::getIntegerVT(Context, VT.getSizeInBits() / 2));
736 }
737
738 // Handle vector types.
739 unsigned NumElts = VT.getVectorNumElements();
740 EVT EltVT = VT.getVectorElementType();
741
742 // Vectors with only one element are always scalarized.
743 if (NumElts == 1)
744 return LegalizeKind(TypeScalarizeVector, EltVT);
745
746 // Try to widen vector elements until the element type is a power of two and
747 // promote it to a legal type later on, for example:
748 // <3 x i8> -> <4 x i8> -> <4 x i32>
749 if (EltVT.isInteger()) {
750 // Vectors with a number of elements that is not a power of two are always
751 // widened, for example <3 x i8> -> <4 x i8>.
752 if (!VT.isPow2VectorType()) {
753 NumElts = (unsigned)NextPowerOf2(NumElts);
754 EVT NVT = EVT::getVectorVT(Context, EltVT, NumElts);
755 return LegalizeKind(TypeWidenVector, NVT);
756 }
757
758 // Examine the element type.
759 LegalizeKind LK = getTypeConversion(Context, EltVT);
760
761 // If type is to be expanded, split the vector.
762 // <4 x i140> -> <2 x i140>
763 if (LK.first == TypeExpandInteger)
764 return LegalizeKind(TypeSplitVector,
765 EVT::getVectorVT(Context, EltVT, NumElts / 2));
766
767 // Promote the integer element types until a legal vector type is found
768 // or until the element integer type is too big. If a legal type was not
769 // found, fallback to the usual mechanism of widening/splitting the
770 // vector.
771 EVT OldEltVT = EltVT;
Eugene Zelenkofb7f7922017-09-21 23:20:16 +0000772 while (true) {
Eric Christopher75dbd7c2015-02-25 22:41:30 +0000773 // Increase the bitwidth of the element to the next pow-of-two
774 // (which is greater than 8 bits).
775 EltVT = EVT::getIntegerVT(Context, 1 + EltVT.getSizeInBits())
776 .getRoundIntegerType(Context);
777
778 // Stop trying when getting a non-simple element type.
779 // Note that vector elements may be greater than legal vector element
780 // types. Example: X86 XMM registers hold 64bit element on 32bit
781 // systems.
782 if (!EltVT.isSimple())
783 break;
784
785 // Build a new vector type and check if it is legal.
786 MVT NVT = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
787 // Found a legal promoted vector type.
788 if (NVT != MVT() && ValueTypeActions.getTypeAction(NVT) == TypeLegal)
789 return LegalizeKind(TypePromoteInteger,
790 EVT::getVectorVT(Context, EltVT, NumElts));
791 }
792
793 // Reset the type to the unexpanded type if we did not find a legal vector
794 // type with a promoted vector element type.
795 EltVT = OldEltVT;
796 }
797
798 // Try to widen the vector until a legal type is found.
799 // If there is no wider legal type, split the vector.
Eugene Zelenkofb7f7922017-09-21 23:20:16 +0000800 while (true) {
Eric Christopher75dbd7c2015-02-25 22:41:30 +0000801 // Round up to the next power of 2.
802 NumElts = (unsigned)NextPowerOf2(NumElts);
803
804 // If there is no simple vector type with this many elements then there
805 // cannot be a larger legal vector type. Note that this assumes that
806 // there are no skipped intermediate vector types in the simple types.
807 if (!EltVT.isSimple())
808 break;
809 MVT LargerVector = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
810 if (LargerVector == MVT())
811 break;
812
813 // If this type is legal then widen the vector.
814 if (ValueTypeActions.getTypeAction(LargerVector) == TypeLegal)
815 return LegalizeKind(TypeWidenVector, LargerVector);
816 }
817
818 // Widen odd vectors to next power of two.
819 if (!VT.isPow2VectorType()) {
820 EVT NVT = VT.getPow2VectorType(Context);
821 return LegalizeKind(TypeWidenVector, NVT);
822 }
823
824 // Vectors with illegal element types are expanded.
825 EVT NVT = EVT::getVectorVT(Context, EltVT, VT.getVectorNumElements() / 2);
826 return LegalizeKind(TypeSplitVector, NVT);
827}
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000828
829static unsigned getVectorTypeBreakdownMVT(MVT VT, MVT &IntermediateVT,
830 unsigned &NumIntermediates,
831 MVT &RegisterVT,
832 TargetLoweringBase *TLI) {
833 // Figure out the right, legal destination reg to copy into.
834 unsigned NumElts = VT.getVectorNumElements();
835 MVT EltTy = VT.getVectorElementType();
836
837 unsigned NumVectorRegs = 1;
838
839 // FIXME: We don't support non-power-of-2-sized vectors for now. Ideally we
840 // could break down into LHS/RHS like LegalizeDAG does.
841 if (!isPowerOf2_32(NumElts)) {
842 NumVectorRegs = NumElts;
843 NumElts = 1;
844 }
845
846 // Divide the input until we get to a supported size. This will always
847 // end with a scalar if the target doesn't support vectors.
848 while (NumElts > 1 && !TLI->isTypeLegal(MVT::getVectorVT(EltTy, NumElts))) {
849 NumElts >>= 1;
850 NumVectorRegs <<= 1;
851 }
852
853 NumIntermediates = NumVectorRegs;
854
855 MVT NewVT = MVT::getVectorVT(EltTy, NumElts);
856 if (!TLI->isTypeLegal(NewVT))
857 NewVT = EltTy;
858 IntermediateVT = NewVT;
859
860 unsigned NewVTSize = NewVT.getSizeInBits();
861
862 // Convert sizes such as i33 to i64.
863 if (!isPowerOf2_32(NewVTSize))
864 NewVTSize = NextPowerOf2(NewVTSize);
865
866 MVT DestVT = TLI->getRegisterType(NewVT);
867 RegisterVT = DestVT;
868 if (EVT(DestVT).bitsLT(NewVT)) // Value is expanded, e.g. i64 -> i16.
869 return NumVectorRegs*(NewVTSize/DestVT.getSizeInBits());
870
871 // Otherwise, promotion or legal types use the same number of registers as
872 // the vector decimated to the appropriate level.
873 return NumVectorRegs;
874}
875
876/// isLegalRC - Return true if the value types that can be represented by the
877/// specified register class are all legal.
Krzysztof Parzyszekc8e8e2a2017-04-24 19:51:12 +0000878bool TargetLoweringBase::isLegalRC(const TargetRegisterInfo &TRI,
879 const TargetRegisterClass &RC) const {
880 for (auto I = TRI.legalclasstypes_begin(RC); *I != MVT::Other; ++I)
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000881 if (isTypeLegal(*I))
882 return true;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000883 return false;
884}
885
Lang Hames39609992013-11-29 03:07:54 +0000886/// Replace/modify any TargetFrameIndex operands with a targte-dependent
887/// sequence of memory operands that is recognized by PrologEpilogInserter.
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +0000888MachineBasicBlock *
889TargetLoweringBase::emitPatchPoint(MachineInstr &InitialMI,
Lang Hames39609992013-11-29 03:07:54 +0000890 MachineBasicBlock *MBB) const {
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +0000891 MachineInstr *MI = &InitialMI;
Justin Bognerfdf9bf42017-10-10 23:50:49 +0000892 MachineFunction &MF = *MI->getMF();
Matthias Braun941a7052016-07-28 18:40:00 +0000893 MachineFrameInfo &MFI = MF.getFrameInfo();
Philip Reamescb0f9472015-12-23 23:44:28 +0000894
895 // We're handling multiple types of operands here:
896 // PATCHPOINT MetaArgs - live-in, read only, direct
897 // STATEPOINT Deopt Spill - live-through, read only, indirect
898 // STATEPOINT Deopt Alloca - live-through, read only, direct
899 // (We're currently conservative and mark the deopt slots read/write in
900 // practice.)
901 // STATEPOINT GC Spill - live-through, read/write, indirect
902 // STATEPOINT GC Alloca - live-through, read/write, direct
903 // The live-in vs live-through is handled already (the live through ones are
904 // all stack slots), but we need to handle the different type of stackmap
905 // operands and memory effects here.
Lang Hames39609992013-11-29 03:07:54 +0000906
907 // MI changes inside this loop as we grow operands.
908 for(unsigned OperIdx = 0; OperIdx != MI->getNumOperands(); ++OperIdx) {
909 MachineOperand &MO = MI->getOperand(OperIdx);
910 if (!MO.isFI())
911 continue;
912
913 // foldMemoryOperand builds a new MI after replacing a single FI operand
914 // with the canonical set of five x86 addressing-mode operands.
915 int FI = MO.getIndex();
916 MachineInstrBuilder MIB = BuildMI(MF, MI->getDebugLoc(), MI->getDesc());
917
918 // Copy operands before the frame-index.
919 for (unsigned i = 0; i < OperIdx; ++i)
Diana Picus116bbab2017-01-13 09:58:52 +0000920 MIB.add(MI->getOperand(i));
Philip Reamescb0f9472015-12-23 23:44:28 +0000921 // Add frame index operands recognized by stackmaps.cpp
922 if (MFI.isStatepointSpillSlotObjectIndex(FI)) {
923 // indirect-mem-ref tag, size, #FI, offset.
924 // Used for spills inserted by StatepointLowering. This codepath is not
925 // used for patchpoints/stackmaps at all, for these spilling is done via
926 // foldMemoryOperand callback only.
927 assert(MI->getOpcode() == TargetOpcode::STATEPOINT && "sanity");
928 MIB.addImm(StackMaps::IndirectMemRefOp);
929 MIB.addImm(MFI.getObjectSize(FI));
Diana Picus116bbab2017-01-13 09:58:52 +0000930 MIB.add(MI->getOperand(OperIdx));
Philip Reamescb0f9472015-12-23 23:44:28 +0000931 MIB.addImm(0);
932 } else {
933 // direct-mem-ref tag, #FI, offset.
934 // Used by patchpoint, and direct alloca arguments to statepoints
935 MIB.addImm(StackMaps::DirectMemRefOp);
Diana Picus116bbab2017-01-13 09:58:52 +0000936 MIB.add(MI->getOperand(OperIdx));
Philip Reamescb0f9472015-12-23 23:44:28 +0000937 MIB.addImm(0);
938 }
Lang Hames39609992013-11-29 03:07:54 +0000939 // Copy the operands after the frame index.
940 for (unsigned i = OperIdx + 1; i != MI->getNumOperands(); ++i)
Diana Picus116bbab2017-01-13 09:58:52 +0000941 MIB.add(MI->getOperand(i));
Lang Hames39609992013-11-29 03:07:54 +0000942
943 // Inherit previous memory operands.
944 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
945 assert(MIB->mayLoad() && "Folded a stackmap use to a non-load!");
946
947 // Add a new memory operand for this FI.
Lang Hames39609992013-11-29 03:07:54 +0000948 assert(MFI.getObjectOffset(FI) != -1);
Philip Reames0365f1a2014-12-01 22:52:56 +0000949
Justin Lebar0af80cd2016-07-15 18:26:59 +0000950 auto Flags = MachineMemOperand::MOLoad;
Philip Reames0365f1a2014-12-01 22:52:56 +0000951 if (MI->getOpcode() == TargetOpcode::STATEPOINT) {
952 Flags |= MachineMemOperand::MOStore;
953 Flags |= MachineMemOperand::MOVolatile;
954 }
Eric Christopherd9134482014-08-04 21:25:23 +0000955 MachineMemOperand *MMO = MF.getMachineMemOperand(
Alex Lorenze40c8a22015-08-11 23:09:45 +0000956 MachinePointerInfo::getFixedStack(MF, FI), Flags,
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000957 MF.getDataLayout().getPointerSize(), MFI.getObjectAlignment(FI));
Lang Hames39609992013-11-29 03:07:54 +0000958 MIB->addMemOperand(MF, MMO);
959
960 // Replace the instruction and update the operand index.
961 MBB->insert(MachineBasicBlock::iterator(MI), MIB);
962 OperIdx += (MIB->getNumOperands() - MI->getNumOperands()) - 1;
963 MI->eraseFromParent();
964 MI = MIB;
965 }
966 return MBB;
967}
968
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000969/// findRepresentativeClass - Return the largest legal super-reg register class
970/// of the register class for the specified type and its associated "cost".
Eric Christopher720ab842015-03-03 19:47:14 +0000971// This function is in TargetLowering because it uses RegClassForVT which would
972// need to be moved to TargetRegisterInfo and would necessitate moving
973// isTypeLegal over as well - a massive change that would just require
974// TargetLowering having a TargetRegisterInfo class member that it would use.
Eric Christopher23a3a7c2015-02-26 00:00:24 +0000975std::pair<const TargetRegisterClass *, uint8_t>
976TargetLoweringBase::findRepresentativeClass(const TargetRegisterInfo *TRI,
977 MVT VT) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000978 const TargetRegisterClass *RC = RegClassForVT[VT.SimpleTy];
979 if (!RC)
980 return std::make_pair(RC, 0);
981
982 // Compute the set of all super-register classes.
983 BitVector SuperRegRC(TRI->getNumRegClasses());
984 for (SuperRegClassIterator RCI(RC, TRI); RCI.isValid(); ++RCI)
985 SuperRegRC.setBitsInMask(RCI.getMask());
986
987 // Find the first legal register class with the largest spill size.
988 const TargetRegisterClass *BestRC = RC;
Francis Visoiu Mistrihb52e0362017-05-17 01:07:53 +0000989 for (unsigned i : SuperRegRC.set_bits()) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000990 const TargetRegisterClass *SuperRC = TRI->getRegClass(i);
991 // We want the largest possible spill size.
Krzysztof Parzyszek44e25f32017-04-24 18:55:33 +0000992 if (TRI->getSpillSize(*SuperRC) <= TRI->getSpillSize(*BestRC))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000993 continue;
Krzysztof Parzyszekc8e8e2a2017-04-24 19:51:12 +0000994 if (!isLegalRC(*TRI, *SuperRC))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +0000995 continue;
996 BestRC = SuperRC;
997 }
998 return std::make_pair(BestRC, 1);
999}
1000
1001/// computeRegisterProperties - Once all of the register classes are added,
1002/// this allows us to compute derived properties we expose.
Eric Christopher23a3a7c2015-02-26 00:00:24 +00001003void TargetLoweringBase::computeRegisterProperties(
1004 const TargetRegisterInfo *TRI) {
Craig Topper6438fc32014-11-17 00:26:50 +00001005 static_assert(MVT::LAST_VALUETYPE <= MVT::MAX_ALLOWED_VALUETYPE,
1006 "Too many value types for ValueTypeActions to hold!");
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001007
1008 // Everything defaults to needing one register.
1009 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i) {
1010 NumRegistersForVT[i] = 1;
1011 RegisterTypeForVT[i] = TransformToType[i] = (MVT::SimpleValueType)i;
1012 }
1013 // ...except isVoid, which doesn't need any registers.
1014 NumRegistersForVT[MVT::isVoid] = 0;
1015
1016 // Find the largest integer register class.
1017 unsigned LargestIntReg = MVT::LAST_INTEGER_VALUETYPE;
Craig Topperc0196b12014-04-14 00:51:57 +00001018 for (; RegClassForVT[LargestIntReg] == nullptr; --LargestIntReg)
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001019 assert(LargestIntReg != MVT::i1 && "No integer registers defined!");
1020
1021 // Every integer value type larger than this largest register takes twice as
1022 // many registers to represent as the previous ValueType.
1023 for (unsigned ExpandedReg = LargestIntReg + 1;
1024 ExpandedReg <= MVT::LAST_INTEGER_VALUETYPE; ++ExpandedReg) {
1025 NumRegistersForVT[ExpandedReg] = 2*NumRegistersForVT[ExpandedReg-1];
1026 RegisterTypeForVT[ExpandedReg] = (MVT::SimpleValueType)LargestIntReg;
1027 TransformToType[ExpandedReg] = (MVT::SimpleValueType)(ExpandedReg - 1);
1028 ValueTypeActions.setTypeAction((MVT::SimpleValueType)ExpandedReg,
1029 TypeExpandInteger);
1030 }
1031
1032 // Inspect all of the ValueType's smaller than the largest integer
1033 // register to see which ones need promotion.
1034 unsigned LegalIntReg = LargestIntReg;
1035 for (unsigned IntReg = LargestIntReg - 1;
1036 IntReg >= (unsigned)MVT::i1; --IntReg) {
1037 MVT IVT = (MVT::SimpleValueType)IntReg;
1038 if (isTypeLegal(IVT)) {
1039 LegalIntReg = IntReg;
1040 } else {
1041 RegisterTypeForVT[IntReg] = TransformToType[IntReg] =
1042 (const MVT::SimpleValueType)LegalIntReg;
1043 ValueTypeActions.setTypeAction(IVT, TypePromoteInteger);
1044 }
1045 }
1046
1047 // ppcf128 type is really two f64's.
1048 if (!isTypeLegal(MVT::ppcf128)) {
Petar Jovanovic23e44f52016-02-04 14:43:50 +00001049 if (isTypeLegal(MVT::f64)) {
1050 NumRegistersForVT[MVT::ppcf128] = 2*NumRegistersForVT[MVT::f64];
1051 RegisterTypeForVT[MVT::ppcf128] = MVT::f64;
1052 TransformToType[MVT::ppcf128] = MVT::f64;
1053 ValueTypeActions.setTypeAction(MVT::ppcf128, TypeExpandFloat);
1054 } else {
1055 NumRegistersForVT[MVT::ppcf128] = NumRegistersForVT[MVT::i128];
1056 RegisterTypeForVT[MVT::ppcf128] = RegisterTypeForVT[MVT::i128];
1057 TransformToType[MVT::ppcf128] = MVT::i128;
1058 ValueTypeActions.setTypeAction(MVT::ppcf128, TypeSoftenFloat);
1059 }
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001060 }
1061
Akira Hatanaka3d055582013-03-01 21:11:44 +00001062 // Decide how to handle f128. If the target does not have native f128 support,
1063 // expand it to i128 and we will be generating soft float library calls.
1064 if (!isTypeLegal(MVT::f128)) {
1065 NumRegistersForVT[MVT::f128] = NumRegistersForVT[MVT::i128];
1066 RegisterTypeForVT[MVT::f128] = RegisterTypeForVT[MVT::i128];
1067 TransformToType[MVT::f128] = MVT::i128;
1068 ValueTypeActions.setTypeAction(MVT::f128, TypeSoftenFloat);
1069 }
1070
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001071 // Decide how to handle f64. If the target does not have native f64 support,
1072 // expand it to i64 and we will be generating soft float library calls.
1073 if (!isTypeLegal(MVT::f64)) {
1074 NumRegistersForVT[MVT::f64] = NumRegistersForVT[MVT::i64];
1075 RegisterTypeForVT[MVT::f64] = RegisterTypeForVT[MVT::i64];
1076 TransformToType[MVT::f64] = MVT::i64;
1077 ValueTypeActions.setTypeAction(MVT::f64, TypeSoftenFloat);
1078 }
1079
Ahmed Bougachaa0f35592015-03-28 01:22:37 +00001080 // Decide how to handle f32. If the target does not have native f32 support,
1081 // expand it to i32 and we will be generating soft float library calls.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001082 if (!isTypeLegal(MVT::f32)) {
Ahmed Bougachaa0f35592015-03-28 01:22:37 +00001083 NumRegistersForVT[MVT::f32] = NumRegistersForVT[MVT::i32];
1084 RegisterTypeForVT[MVT::f32] = RegisterTypeForVT[MVT::i32];
1085 TransformToType[MVT::f32] = MVT::i32;
1086 ValueTypeActions.setTypeAction(MVT::f32, TypeSoftenFloat);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001087 }
1088
Oliver Stannard56358572015-11-09 11:03:18 +00001089 // Decide how to handle f16. If the target does not have native f16 support,
1090 // promote it to f32, because there are no f16 library calls (except for
1091 // conversions).
Tim Northover20bd0ce2014-07-18 12:41:46 +00001092 if (!isTypeLegal(MVT::f16)) {
Oliver Stannard56358572015-11-09 11:03:18 +00001093 NumRegistersForVT[MVT::f16] = NumRegistersForVT[MVT::f32];
1094 RegisterTypeForVT[MVT::f16] = RegisterTypeForVT[MVT::f32];
1095 TransformToType[MVT::f16] = MVT::f32;
1096 ValueTypeActions.setTypeAction(MVT::f16, TypePromoteFloat);
Tim Northover20bd0ce2014-07-18 12:41:46 +00001097 }
1098
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001099 // Loop over all of the vector value types to see which need transformations.
1100 for (unsigned i = MVT::FIRST_VECTOR_VALUETYPE;
1101 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001102 MVT VT = (MVT::SimpleValueType) i;
1103 if (isTypeLegal(VT))
1104 continue;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001105
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001106 MVT EltVT = VT.getVectorElementType();
1107 unsigned NElts = VT.getVectorNumElements();
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001108 bool IsLegalWiderType = false;
1109 LegalizeTypeAction PreferredAction = getPreferredVectorAction(VT);
1110 switch (PreferredAction) {
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001111 case TypePromoteInteger:
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001112 // Try to promote the elements of integer vectors. If no legal
1113 // promotion was found, fall through to the widen-vector method.
Matt Arsenault940d19a2016-04-22 21:16:17 +00001114 for (unsigned nVT = i + 1; nVT <= MVT::LAST_INTEGER_VECTOR_VALUETYPE; ++nVT) {
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001115 MVT SVT = (MVT::SimpleValueType) nVT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001116 // Promote vectors of integers to vectors with the same number
1117 // of elements, with a wider element type.
Sanjay Patel1ed771f2016-09-14 16:37:15 +00001118 if (SVT.getScalarSizeInBits() > EltVT.getSizeInBits() &&
Matt Arsenault940d19a2016-04-22 21:16:17 +00001119 SVT.getVectorNumElements() == NElts && isTypeLegal(SVT)) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001120 TransformToType[i] = SVT;
1121 RegisterTypeForVT[i] = SVT;
1122 NumRegistersForVT[i] = 1;
1123 ValueTypeActions.setTypeAction(VT, TypePromoteInteger);
1124 IsLegalWiderType = true;
1125 break;
1126 }
1127 }
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001128 if (IsLegalWiderType)
1129 break;
Galina Kistanovabd79f732017-06-03 05:11:14 +00001130 LLVM_FALLTHROUGH;
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001131
1132 case TypeWidenVector:
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001133 // Try to widen the vector.
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001134 for (unsigned nVT = i + 1; nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
1135 MVT SVT = (MVT::SimpleValueType) nVT;
1136 if (SVT.getVectorElementType() == EltVT
1137 && SVT.getVectorNumElements() > NElts && isTypeLegal(SVT)) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001138 TransformToType[i] = SVT;
1139 RegisterTypeForVT[i] = SVT;
1140 NumRegistersForVT[i] = 1;
1141 ValueTypeActions.setTypeAction(VT, TypeWidenVector);
1142 IsLegalWiderType = true;
1143 break;
1144 }
1145 }
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001146 if (IsLegalWiderType)
1147 break;
Galina Kistanovabd79f732017-06-03 05:11:14 +00001148 LLVM_FALLTHROUGH;
Eugene Zelenkofb7f7922017-09-21 23:20:16 +00001149
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001150 case TypeSplitVector:
1151 case TypeScalarizeVector: {
1152 MVT IntermediateVT;
1153 MVT RegisterVT;
1154 unsigned NumIntermediates;
1155 NumRegistersForVT[i] = getVectorTypeBreakdownMVT(VT, IntermediateVT,
1156 NumIntermediates, RegisterVT, this);
1157 RegisterTypeForVT[i] = RegisterVT;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001158
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001159 MVT NVT = VT.getPow2VectorType();
1160 if (NVT == VT) {
1161 // Type is already a power of 2. The default action is to split.
1162 TransformToType[i] = MVT::Other;
1163 if (PreferredAction == TypeScalarizeVector)
1164 ValueTypeActions.setTypeAction(VT, TypeScalarizeVector);
Hao Liue02b1a02014-10-31 02:35:34 +00001165 else if (PreferredAction == TypeSplitVector)
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001166 ValueTypeActions.setTypeAction(VT, TypeSplitVector);
Hao Liue02b1a02014-10-31 02:35:34 +00001167 else
1168 // Set type action according to the number of elements.
1169 ValueTypeActions.setTypeAction(VT, NElts == 1 ? TypeScalarizeVector
1170 : TypeSplitVector);
Chandler Carruth9d010ff2014-07-03 00:23:43 +00001171 } else {
1172 TransformToType[i] = NVT;
1173 ValueTypeActions.setTypeAction(VT, TypeWidenVector);
1174 }
1175 break;
1176 }
1177 default:
1178 llvm_unreachable("Unknown vector legalization action!");
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001179 }
1180 }
1181
1182 // Determine the 'representative' register class for each value type.
1183 // An representative register class is the largest (meaning one which is
1184 // not a sub-register class / subreg register class) legal register class for
1185 // a group of value types. For example, on i386, i8, i16, and i32
1186 // representative would be GR32; while on x86_64 it's GR64.
1187 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i) {
1188 const TargetRegisterClass* RRC;
1189 uint8_t Cost;
Eric Christopher23a3a7c2015-02-26 00:00:24 +00001190 std::tie(RRC, Cost) = findRepresentativeClass(TRI, (MVT::SimpleValueType)i);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001191 RepRegClassForVT[i] = RRC;
1192 RepRegClassCostForVT[i] = Cost;
1193 }
1194}
1195
Mehdi Amini44ede332015-07-09 02:09:04 +00001196EVT TargetLoweringBase::getSetCCResultType(const DataLayout &DL, LLVMContext &,
1197 EVT VT) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001198 assert(!VT.isVector() && "No default SetCC type for vectors!");
Mehdi Amini44ede332015-07-09 02:09:04 +00001199 return getPointerTy(DL).SimpleTy;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001200}
1201
1202MVT::SimpleValueType TargetLoweringBase::getCmpLibcallReturnType() const {
1203 return MVT::i32; // return the default value
1204}
1205
1206/// getVectorTypeBreakdown - Vector types are broken down into some number of
1207/// legal first class types. For example, MVT::v8f32 maps to 2 MVT::v4f32
1208/// with Altivec or SSE1, or 8 promoted MVT::f64 values with the X86 FP stack.
1209/// Similarly, MVT::v2i64 turns into 4 MVT::i32 values with both PPC and X86.
1210///
1211/// This method returns the number of registers needed, and the VT for each
1212/// register. It also returns the VT and quantity of the intermediate values
1213/// before they are promoted/expanded.
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001214unsigned TargetLoweringBase::getVectorTypeBreakdown(LLVMContext &Context, EVT VT,
1215 EVT &IntermediateVT,
1216 unsigned &NumIntermediates,
1217 MVT &RegisterVT) const {
1218 unsigned NumElts = VT.getVectorNumElements();
1219
1220 // If there is a wider vector type with the same element type as this one,
1221 // or a promoted vector type that has the same number of elements which
1222 // are wider, then we should convert to that legal vector type.
1223 // This handles things like <2 x float> -> <4 x float> and
1224 // <4 x i1> -> <4 x i32>.
1225 LegalizeTypeAction TA = getTypeAction(Context, VT);
1226 if (NumElts != 1 && (TA == TypeWidenVector || TA == TypePromoteInteger)) {
1227 EVT RegisterEVT = getTypeToTransformTo(Context, VT);
1228 if (isTypeLegal(RegisterEVT)) {
1229 IntermediateVT = RegisterEVT;
1230 RegisterVT = RegisterEVT.getSimpleVT();
1231 NumIntermediates = 1;
1232 return 1;
1233 }
1234 }
1235
1236 // Figure out the right, legal destination reg to copy into.
1237 EVT EltTy = VT.getVectorElementType();
1238
1239 unsigned NumVectorRegs = 1;
1240
1241 // FIXME: We don't support non-power-of-2-sized vectors for now. Ideally we
1242 // could break down into LHS/RHS like LegalizeDAG does.
1243 if (!isPowerOf2_32(NumElts)) {
1244 NumVectorRegs = NumElts;
1245 NumElts = 1;
1246 }
1247
1248 // Divide the input until we get to a supported size. This will always
1249 // end with a scalar if the target doesn't support vectors.
1250 while (NumElts > 1 && !isTypeLegal(
1251 EVT::getVectorVT(Context, EltTy, NumElts))) {
1252 NumElts >>= 1;
1253 NumVectorRegs <<= 1;
1254 }
1255
1256 NumIntermediates = NumVectorRegs;
1257
1258 EVT NewVT = EVT::getVectorVT(Context, EltTy, NumElts);
1259 if (!isTypeLegal(NewVT))
1260 NewVT = EltTy;
1261 IntermediateVT = NewVT;
1262
1263 MVT DestVT = getRegisterType(Context, NewVT);
1264 RegisterVT = DestVT;
1265 unsigned NewVTSize = NewVT.getSizeInBits();
1266
1267 // Convert sizes such as i33 to i64.
1268 if (!isPowerOf2_32(NewVTSize))
1269 NewVTSize = NextPowerOf2(NewVTSize);
1270
1271 if (EVT(DestVT).bitsLT(NewVT)) // Value is expanded, e.g. i64 -> i16.
1272 return NumVectorRegs*(NewVTSize/DestVT.getSizeInBits());
1273
1274 // Otherwise, promotion or legal types use the same number of registers as
1275 // the vector decimated to the appropriate level.
1276 return NumVectorRegs;
1277}
1278
1279/// Get the EVTs and ArgFlags collections that represent the legalized return
1280/// type of the given function. This does not require a DAG or a return value,
1281/// and is suitable for use before any DAGs for the function are constructed.
1282/// TODO: Move this out of TargetLowering.cpp.
Reid Klecknerb5180542017-03-21 16:57:19 +00001283void llvm::GetReturnInfo(Type *ReturnType, AttributeList attr,
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001284 SmallVectorImpl<ISD::OutputArg> &Outs,
Mehdi Amini56228da2015-07-09 01:57:34 +00001285 const TargetLowering &TLI, const DataLayout &DL) {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001286 SmallVector<EVT, 4> ValueVTs;
Mehdi Amini56228da2015-07-09 01:57:34 +00001287 ComputeValueVTs(TLI, DL, ReturnType, ValueVTs);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001288 unsigned NumValues = ValueVTs.size();
1289 if (NumValues == 0) return;
1290
1291 for (unsigned j = 0, f = NumValues; j != f; ++j) {
1292 EVT VT = ValueVTs[j];
1293 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1294
Reid Klecknerb5180542017-03-21 16:57:19 +00001295 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::SExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001296 ExtendKind = ISD::SIGN_EXTEND;
Reid Klecknerb5180542017-03-21 16:57:19 +00001297 else if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::ZExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001298 ExtendKind = ISD::ZERO_EXTEND;
1299
1300 // FIXME: C calling convention requires the return type to be promoted to
1301 // at least 32-bit. But this is not necessary for non-C calling
1302 // conventions. The frontend should mark functions whose return values
1303 // require promoting with signext or zeroext attributes.
1304 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
1305 MVT MinVT = TLI.getRegisterType(ReturnType->getContext(), MVT::i32);
1306 if (VT.bitsLT(MinVT))
1307 VT = MinVT;
1308 }
1309
Simon Dardis212cccb2017-06-09 14:37:08 +00001310 unsigned NumParts =
1311 TLI.getNumRegistersForCallingConv(ReturnType->getContext(), VT);
1312 MVT PartVT =
1313 TLI.getRegisterTypeForCallingConv(ReturnType->getContext(), VT);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001314
1315 // 'inreg' on function refers to return value
1316 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Reid Klecknerb5180542017-03-21 16:57:19 +00001317 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::InReg))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001318 Flags.setInReg();
1319
1320 // Propagate extension type if any
Reid Klecknerb5180542017-03-21 16:57:19 +00001321 if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::SExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001322 Flags.setSExt();
Reid Klecknerb5180542017-03-21 16:57:19 +00001323 else if (attr.hasAttribute(AttributeList::ReturnIndex, Attribute::ZExt))
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001324 Flags.setZExt();
1325
1326 for (unsigned i = 0; i < NumParts; ++i)
Tom Stellard8d7d4de2013-10-23 00:44:24 +00001327 Outs.push_back(ISD::OutputArg(Flags, PartVT, VT, /*isFixed=*/true, 0, 0));
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001328 }
1329}
1330
1331/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1332/// function arguments in the caller parameter area. This is the actual
1333/// alignment, not its logarithm.
Mehdi Amini5c183d52015-07-09 02:09:28 +00001334unsigned TargetLoweringBase::getByValTypeAlignment(Type *Ty,
1335 const DataLayout &DL) const {
1336 return DL.getABITypeAlignment(Ty);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001337}
1338
Sanjay Patel0f9dcf82015-07-29 18:24:18 +00001339bool TargetLoweringBase::allowsMemoryAccess(LLVMContext &Context,
1340 const DataLayout &DL, EVT VT,
1341 unsigned AddrSpace,
1342 unsigned Alignment,
1343 bool *Fast) const {
1344 // Check if the specified alignment is sufficient based on the data layout.
1345 // TODO: While using the data layout works in practice, a better solution
1346 // would be to implement this check directly (make this a virtual function).
1347 // For example, the ABI alignment may change based on software platform while
1348 // this function should only be affected by hardware implementation.
1349 Type *Ty = VT.getTypeForEVT(Context);
1350 if (Alignment >= DL.getABITypeAlignment(Ty)) {
1351 // Assume that an access that meets the ABI-specified alignment is fast.
1352 if (Fast != nullptr)
1353 *Fast = true;
1354 return true;
1355 }
1356
1357 // This is a misaligned access.
1358 return allowsMisalignedMemoryAccesses(VT, AddrSpace, Alignment, Fast);
1359}
1360
Sanjay Pateld66607b2016-04-26 17:11:17 +00001361BranchProbability TargetLoweringBase::getPredictableBranchThreshold() const {
1362 return BranchProbability(MinPercentageForPredictableBranch, 100);
1363}
Sanjay Patel0f9dcf82015-07-29 18:24:18 +00001364
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001365//===----------------------------------------------------------------------===//
1366// TargetTransformInfo Helpers
1367//===----------------------------------------------------------------------===//
1368
1369int TargetLoweringBase::InstructionOpcodeToISD(unsigned Opcode) const {
1370 enum InstructionOpcodes {
1371#define HANDLE_INST(NUM, OPCODE, CLASS) OPCODE = NUM,
1372#define LAST_OTHER_INST(NUM) InstructionOpcodesCount = NUM
1373#include "llvm/IR/Instruction.def"
1374 };
1375 switch (static_cast<InstructionOpcodes>(Opcode)) {
1376 case Ret: return 0;
1377 case Br: return 0;
1378 case Switch: return 0;
1379 case IndirectBr: return 0;
1380 case Invoke: return 0;
1381 case Resume: return 0;
1382 case Unreachable: return 0;
David Majnemer654e1302015-07-31 17:58:14 +00001383 case CleanupRet: return 0;
David Majnemer654e1302015-07-31 17:58:14 +00001384 case CatchRet: return 0;
David Majnemer8a1c45d2015-12-12 05:38:55 +00001385 case CatchPad: return 0;
1386 case CatchSwitch: return 0;
David Majnemer8a1c45d2015-12-12 05:38:55 +00001387 case CleanupPad: return 0;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001388 case Add: return ISD::ADD;
1389 case FAdd: return ISD::FADD;
1390 case Sub: return ISD::SUB;
1391 case FSub: return ISD::FSUB;
1392 case Mul: return ISD::MUL;
1393 case FMul: return ISD::FMUL;
1394 case UDiv: return ISD::UDIV;
Benjamin Kramerce4b3fe2014-04-27 18:47:54 +00001395 case SDiv: return ISD::SDIV;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001396 case FDiv: return ISD::FDIV;
1397 case URem: return ISD::UREM;
1398 case SRem: return ISD::SREM;
1399 case FRem: return ISD::FREM;
1400 case Shl: return ISD::SHL;
1401 case LShr: return ISD::SRL;
1402 case AShr: return ISD::SRA;
1403 case And: return ISD::AND;
1404 case Or: return ISD::OR;
1405 case Xor: return ISD::XOR;
1406 case Alloca: return 0;
1407 case Load: return ISD::LOAD;
1408 case Store: return ISD::STORE;
1409 case GetElementPtr: return 0;
1410 case Fence: return 0;
1411 case AtomicCmpXchg: return 0;
1412 case AtomicRMW: return 0;
1413 case Trunc: return ISD::TRUNCATE;
1414 case ZExt: return ISD::ZERO_EXTEND;
1415 case SExt: return ISD::SIGN_EXTEND;
1416 case FPToUI: return ISD::FP_TO_UINT;
1417 case FPToSI: return ISD::FP_TO_SINT;
1418 case UIToFP: return ISD::UINT_TO_FP;
1419 case SIToFP: return ISD::SINT_TO_FP;
1420 case FPTrunc: return ISD::FP_ROUND;
1421 case FPExt: return ISD::FP_EXTEND;
1422 case PtrToInt: return ISD::BITCAST;
1423 case IntToPtr: return ISD::BITCAST;
1424 case BitCast: return ISD::BITCAST;
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001425 case AddrSpaceCast: return ISD::ADDRSPACECAST;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001426 case ICmp: return ISD::SETCC;
1427 case FCmp: return ISD::SETCC;
1428 case PHI: return 0;
1429 case Call: return 0;
1430 case Select: return ISD::SELECT;
1431 case UserOp1: return 0;
1432 case UserOp2: return 0;
1433 case VAArg: return 0;
1434 case ExtractElement: return ISD::EXTRACT_VECTOR_ELT;
1435 case InsertElement: return ISD::INSERT_VECTOR_ELT;
1436 case ShuffleVector: return ISD::VECTOR_SHUFFLE;
1437 case ExtractValue: return ISD::MERGE_VALUES;
1438 case InsertValue: return ISD::MERGE_VALUES;
1439 case LandingPad: return 0;
1440 }
1441
1442 llvm_unreachable("Unknown instruction type encountered!");
1443}
1444
Chandler Carruth93205eb2015-08-05 18:08:10 +00001445std::pair<int, MVT>
Mehdi Amini44ede332015-07-09 02:09:04 +00001446TargetLoweringBase::getTypeLegalizationCost(const DataLayout &DL,
1447 Type *Ty) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001448 LLVMContext &C = Ty->getContext();
Mehdi Amini44ede332015-07-09 02:09:04 +00001449 EVT MTy = getValueType(DL, Ty);
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001450
Chandler Carruth93205eb2015-08-05 18:08:10 +00001451 int Cost = 1;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001452 // We keep legalizing the type until we find a legal kind. We assume that
1453 // the only operation that costs anything is the split. After splitting
1454 // we need to handle two types.
1455 while (true) {
1456 LegalizeKind LK = getTypeConversion(C, MTy);
1457
1458 if (LK.first == TypeLegal)
1459 return std::make_pair(Cost, MTy.getSimpleVT());
1460
1461 if (LK.first == TypeSplitVector || LK.first == TypeExpandInteger)
1462 Cost *= 2;
1463
Chih-Hung Hsiehed7d81e2015-12-03 22:02:40 +00001464 // Do not loop with f128 type.
1465 if (MTy == LK.second)
1466 return std::make_pair(Cost, MTy.getSimpleVT());
1467
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001468 // Keep legalizing the type.
1469 MTy = LK.second;
1470 }
1471}
1472
David L Kreitzerd5c67552016-10-14 17:56:00 +00001473Value *TargetLoweringBase::getDefaultSafeStackPointerLocation(IRBuilder<> &IRB,
1474 bool UseTLS) const {
1475 // compiler-rt provides a variable with a magic name. Targets that do not
1476 // link with compiler-rt may also provide such a variable.
1477 Module *M = IRB.GetInsertBlock()->getParent()->getParent();
1478 const char *UnsafeStackPtrVar = "__safestack_unsafe_stack_ptr";
1479 auto UnsafeStackPtr =
1480 dyn_cast_or_null<GlobalVariable>(M->getNamedValue(UnsafeStackPtrVar));
1481
1482 Type *StackPtrTy = Type::getInt8PtrTy(M->getContext());
1483
1484 if (!UnsafeStackPtr) {
1485 auto TLSModel = UseTLS ?
1486 GlobalValue::InitialExecTLSModel :
1487 GlobalValue::NotThreadLocal;
1488 // The global variable is not defined yet, define it ourselves.
1489 // We use the initial-exec TLS model because we do not support the
1490 // variable living anywhere other than in the main executable.
1491 UnsafeStackPtr = new GlobalVariable(
1492 *M, StackPtrTy, false, GlobalValue::ExternalLinkage, nullptr,
1493 UnsafeStackPtrVar, nullptr, TLSModel);
1494 } else {
1495 // The variable exists, check its type and attributes.
1496 if (UnsafeStackPtr->getValueType() != StackPtrTy)
1497 report_fatal_error(Twine(UnsafeStackPtrVar) + " must have void* type");
1498 if (UseTLS != UnsafeStackPtr->isThreadLocal())
1499 report_fatal_error(Twine(UnsafeStackPtrVar) + " must " +
1500 (UseTLS ? "" : "not ") + "be thread-local");
1501 }
1502 return UnsafeStackPtr;
1503}
1504
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +00001505Value *TargetLoweringBase::getSafeStackPointerLocation(IRBuilder<> &IRB) const {
1506 if (!TM.getTargetTriple().isAndroid())
David L Kreitzerd5c67552016-10-14 17:56:00 +00001507 return getDefaultSafeStackPointerLocation(IRB, true);
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +00001508
1509 // Android provides a libc function to retrieve the address of the current
1510 // thread's unsafe stack pointer.
1511 Module *M = IRB.GetInsertBlock()->getParent()->getParent();
1512 Type *StackPtrTy = Type::getInt8PtrTy(M->getContext());
1513 Value *Fn = M->getOrInsertFunction("__safestack_pointer_address",
Serge Guelton59a2d7b2017-04-11 15:01:18 +00001514 StackPtrTy->getPointerTo(0));
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +00001515 return IRB.CreateCall(Fn);
1516}
1517
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001518//===----------------------------------------------------------------------===//
1519// Loop Strength Reduction hooks
1520//===----------------------------------------------------------------------===//
1521
1522/// isLegalAddressingMode - Return true if the addressing mode represented
1523/// by AM is legal for this target, for a load/store of the specified type.
Mehdi Amini0cdec1e2015-07-09 02:09:40 +00001524bool TargetLoweringBase::isLegalAddressingMode(const DataLayout &DL,
1525 const AddrMode &AM, Type *Ty,
Jonas Paulsson024e3192017-07-21 11:59:37 +00001526 unsigned AS, Instruction *I) const {
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001527 // The default implementation of this implements a conservative RISCy, r+r and
1528 // r+i addr mode.
1529
1530 // Allows a sign-extended 16-bit immediate field.
1531 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
1532 return false;
1533
1534 // No global is ever allowed as a base.
1535 if (AM.BaseGV)
1536 return false;
1537
1538 // Only support r+r,
1539 switch (AM.Scale) {
1540 case 0: // "r+i" or just "i", depending on HasBaseReg.
1541 break;
1542 case 1:
1543 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
1544 return false;
1545 // Otherwise we have r+r or r+i.
1546 break;
1547 case 2:
1548 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
1549 return false;
1550 // Allow 2*r as r+r.
1551 break;
Tom Stellard728d4172014-02-14 21:10:34 +00001552 default: // Don't allow n * r
1553 return false;
Benjamin Kramer56b31bd2013-01-11 20:05:37 +00001554 }
1555
1556 return true;
1557}
Tim Shen00127562016-04-08 21:26:31 +00001558
1559//===----------------------------------------------------------------------===//
1560// Stack Protector
1561//===----------------------------------------------------------------------===//
1562
1563// For OpenBSD return its special guard variable. Otherwise return nullptr,
1564// so that SelectionDAG handle SSP.
1565Value *TargetLoweringBase::getIRStackGuard(IRBuilder<> &IRB) const {
1566 if (getTargetMachine().getTargetTriple().isOSOpenBSD()) {
1567 Module &M = *IRB.GetInsertBlock()->getParent()->getParent();
1568 PointerType *PtrTy = Type::getInt8PtrTy(M.getContext());
Tim Shena5cc25e2016-08-22 18:26:27 +00001569 return M.getOrInsertGlobal("__guard_local", PtrTy);
Tim Shen00127562016-04-08 21:26:31 +00001570 }
1571 return nullptr;
1572}
1573
1574// Currently only support "standard" __stack_chk_guard.
1575// TODO: add LOAD_STACK_GUARD support.
1576void TargetLoweringBase::insertSSPDeclarations(Module &M) const {
1577 M.getOrInsertGlobal("__stack_chk_guard", Type::getInt8PtrTy(M.getContext()));
1578}
1579
1580// Currently only support "standard" __stack_chk_guard.
1581// TODO: add LOAD_STACK_GUARD support.
Tim Shena1d8bc52016-04-19 20:14:52 +00001582Value *TargetLoweringBase::getSDagStackGuard(const Module &M) const {
Davide Italianobd4243c2016-06-09 14:23:38 +00001583 return M.getGlobalVariable("__stack_chk_guard", true);
Tim Shen00127562016-04-08 21:26:31 +00001584}
Etienne Bergeron22bfa832016-06-07 20:15:35 +00001585
1586Value *TargetLoweringBase::getSSPStackGuardCheck(const Module &M) const {
1587 return nullptr;
1588}
Evandro Menezese45de8a2016-09-26 15:32:33 +00001589
Evandro Menezeseb97e352016-10-25 19:53:51 +00001590unsigned TargetLoweringBase::getMinimumJumpTableEntries() const {
1591 return MinimumJumpTableEntries;
1592}
1593
1594void TargetLoweringBase::setMinimumJumpTableEntries(unsigned Val) {
1595 MinimumJumpTableEntries = Val;
1596}
1597
Jun Bum Lim919f9e82017-04-28 16:04:03 +00001598unsigned TargetLoweringBase::getMinimumJumpTableDensity(bool OptForSize) const {
1599 return OptForSize ? OptsizeJumpTableDensity : JumpTableDensity;
1600}
1601
Evandro Menezese45de8a2016-09-26 15:32:33 +00001602unsigned TargetLoweringBase::getMaximumJumpTableSize() const {
1603 return MaximumJumpTableSize;
1604}
1605
1606void TargetLoweringBase::setMaximumJumpTableSize(unsigned Val) {
1607 MaximumJumpTableSize = Val;
1608}
Sanjay Patel0051efc2016-10-20 16:55:45 +00001609
1610//===----------------------------------------------------------------------===//
1611// Reciprocal Estimates
1612//===----------------------------------------------------------------------===//
1613
1614/// Get the reciprocal estimate attribute string for a function that will
1615/// override the target defaults.
1616static StringRef getRecipEstimateForFunc(MachineFunction &MF) {
Matthias Braunf1caa282017-12-15 22:22:58 +00001617 const Function &F = MF.getFunction();
1618 return F.getFnAttribute("reciprocal-estimates").getValueAsString();
Sanjay Patel0051efc2016-10-20 16:55:45 +00001619}
1620
1621/// Construct a string for the given reciprocal operation of the given type.
1622/// This string should match the corresponding option to the front-end's
1623/// "-mrecip" flag assuming those strings have been passed through in an
1624/// attribute string. For example, "vec-divf" for a division of a vXf32.
1625static std::string getReciprocalOpName(bool IsSqrt, EVT VT) {
1626 std::string Name = VT.isVector() ? "vec-" : "";
1627
1628 Name += IsSqrt ? "sqrt" : "div";
1629
1630 // TODO: Handle "half" or other float types?
1631 if (VT.getScalarType() == MVT::f64) {
1632 Name += "d";
1633 } else {
1634 assert(VT.getScalarType() == MVT::f32 &&
1635 "Unexpected FP type for reciprocal estimate");
1636 Name += "f";
1637 }
1638
1639 return Name;
1640}
1641
1642/// Return the character position and value (a single numeric character) of a
1643/// customized refinement operation in the input string if it exists. Return
1644/// false if there is no customized refinement step count.
1645static bool parseRefinementStep(StringRef In, size_t &Position,
1646 uint8_t &Value) {
1647 const char RefStepToken = ':';
1648 Position = In.find(RefStepToken);
1649 if (Position == StringRef::npos)
1650 return false;
1651
1652 StringRef RefStepString = In.substr(Position + 1);
1653 // Allow exactly one numeric character for the additional refinement
1654 // step parameter.
1655 if (RefStepString.size() == 1) {
1656 char RefStepChar = RefStepString[0];
1657 if (RefStepChar >= '0' && RefStepChar <= '9') {
1658 Value = RefStepChar - '0';
1659 return true;
1660 }
1661 }
1662 report_fatal_error("Invalid refinement step for -recip.");
1663}
1664
1665/// For the input attribute string, return one of the ReciprocalEstimate enum
1666/// status values (enabled, disabled, or not specified) for this operation on
1667/// the specified data type.
1668static int getOpEnabled(bool IsSqrt, EVT VT, StringRef Override) {
1669 if (Override.empty())
1670 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1671
1672 SmallVector<StringRef, 4> OverrideVector;
1673 SplitString(Override, OverrideVector, ",");
1674 unsigned NumArgs = OverrideVector.size();
1675
1676 // Check if "all", "none", or "default" was specified.
1677 if (NumArgs == 1) {
1678 // Look for an optional setting of the number of refinement steps needed
1679 // for this type of reciprocal operation.
1680 size_t RefPos;
1681 uint8_t RefSteps;
1682 if (parseRefinementStep(Override, RefPos, RefSteps)) {
1683 // Split the string for further processing.
1684 Override = Override.substr(0, RefPos);
1685 }
1686
1687 // All reciprocal types are enabled.
1688 if (Override == "all")
1689 return TargetLoweringBase::ReciprocalEstimate::Enabled;
1690
1691 // All reciprocal types are disabled.
1692 if (Override == "none")
1693 return TargetLoweringBase::ReciprocalEstimate::Disabled;
1694
1695 // Target defaults for enablement are used.
1696 if (Override == "default")
1697 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1698 }
1699
1700 // The attribute string may omit the size suffix ('f'/'d').
1701 std::string VTName = getReciprocalOpName(IsSqrt, VT);
1702 std::string VTNameNoSize = VTName;
Sanjay Patel501be9b2016-10-21 14:58:30 +00001703 VTNameNoSize.pop_back();
Sanjay Patel0051efc2016-10-20 16:55:45 +00001704 static const char DisabledPrefix = '!';
1705
1706 for (StringRef RecipType : OverrideVector) {
1707 size_t RefPos;
1708 uint8_t RefSteps;
1709 if (parseRefinementStep(RecipType, RefPos, RefSteps))
1710 RecipType = RecipType.substr(0, RefPos);
1711
1712 // Ignore the disablement token for string matching.
1713 bool IsDisabled = RecipType[0] == DisabledPrefix;
1714 if (IsDisabled)
1715 RecipType = RecipType.substr(1);
1716
1717 if (RecipType.equals(VTName) || RecipType.equals(VTNameNoSize))
1718 return IsDisabled ? TargetLoweringBase::ReciprocalEstimate::Disabled
1719 : TargetLoweringBase::ReciprocalEstimate::Enabled;
1720 }
1721
1722 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1723}
1724
1725/// For the input attribute string, return the customized refinement step count
1726/// for this operation on the specified data type. If the step count does not
1727/// exist, return the ReciprocalEstimate enum value for unspecified.
1728static int getOpRefinementSteps(bool IsSqrt, EVT VT, StringRef Override) {
1729 if (Override.empty())
1730 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1731
1732 SmallVector<StringRef, 4> OverrideVector;
1733 SplitString(Override, OverrideVector, ",");
1734 unsigned NumArgs = OverrideVector.size();
1735
1736 // Check if "all", "default", or "none" was specified.
1737 if (NumArgs == 1) {
1738 // Look for an optional setting of the number of refinement steps needed
1739 // for this type of reciprocal operation.
1740 size_t RefPos;
1741 uint8_t RefSteps;
1742 if (!parseRefinementStep(Override, RefPos, RefSteps))
1743 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1744
1745 // Split the string for further processing.
1746 Override = Override.substr(0, RefPos);
1747 assert(Override != "none" &&
1748 "Disabled reciprocals, but specifed refinement steps?");
1749
1750 // If this is a general override, return the specified number of steps.
1751 if (Override == "all" || Override == "default")
1752 return RefSteps;
1753 }
1754
1755 // The attribute string may omit the size suffix ('f'/'d').
1756 std::string VTName = getReciprocalOpName(IsSqrt, VT);
1757 std::string VTNameNoSize = VTName;
Sanjay Patel501be9b2016-10-21 14:58:30 +00001758 VTNameNoSize.pop_back();
Sanjay Patel0051efc2016-10-20 16:55:45 +00001759
1760 for (StringRef RecipType : OverrideVector) {
1761 size_t RefPos;
1762 uint8_t RefSteps;
1763 if (!parseRefinementStep(RecipType, RefPos, RefSteps))
1764 continue;
1765
1766 RecipType = RecipType.substr(0, RefPos);
1767 if (RecipType.equals(VTName) || RecipType.equals(VTNameNoSize))
1768 return RefSteps;
1769 }
1770
1771 return TargetLoweringBase::ReciprocalEstimate::Unspecified;
1772}
1773
1774int TargetLoweringBase::getRecipEstimateSqrtEnabled(EVT VT,
1775 MachineFunction &MF) const {
1776 return getOpEnabled(true, VT, getRecipEstimateForFunc(MF));
1777}
1778
1779int TargetLoweringBase::getRecipEstimateDivEnabled(EVT VT,
1780 MachineFunction &MF) const {
1781 return getOpEnabled(false, VT, getRecipEstimateForFunc(MF));
1782}
1783
1784int TargetLoweringBase::getSqrtRefinementSteps(EVT VT,
1785 MachineFunction &MF) const {
1786 return getOpRefinementSteps(true, VT, getRecipEstimateForFunc(MF));
1787}
1788
1789int TargetLoweringBase::getDivRefinementSteps(EVT VT,
1790 MachineFunction &MF) const {
1791 return getOpRefinementSteps(false, VT, getRecipEstimateForFunc(MF));
1792}
Matthias Braun744c2152017-04-28 20:25:05 +00001793
1794void TargetLoweringBase::finalizeLowering(MachineFunction &MF) const {
1795 MF.getRegInfo().freezeReservedRegs(MF);
1796}