LLVM 24.0.0git
TargetLoweringBase.cpp
Go to the documentation of this file.
1//===- TargetLoweringBase.cpp - Implement the TargetLoweringBase class ----===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This implements the TargetLoweringBase class.
10//
11//===----------------------------------------------------------------------===//
12
13#include "llvm/ADT/BitVector.h"
14#include "llvm/ADT/STLExtras.h"
17#include "llvm/ADT/StringRef.h"
18#include "llvm/ADT/Twine.h"
19#include "llvm/Analysis/Loads.h"
38#include "llvm/IR/Attributes.h"
39#include "llvm/IR/CallingConv.h"
40#include "llvm/IR/DataLayout.h"
42#include "llvm/IR/Function.h"
43#include "llvm/IR/GlobalValue.h"
45#include "llvm/IR/IRBuilder.h"
46#include "llvm/IR/Module.h"
47#include "llvm/IR/Type.h"
57#include <algorithm>
58#include <cassert>
59#include <cstdint>
60#include <cstring>
61#include <string>
62#include <tuple>
63#include <utility>
64
65using namespace llvm;
66
68 "jump-is-expensive", cl::init(false),
69 cl::desc("Do not create extra branches to split comparison logic."),
71
73 ("min-jump-table-entries", cl::init(4), cl::Hidden,
74 cl::desc("Set minimum number of entries to use a jump table."));
75
77 ("max-jump-table-size", cl::init(UINT_MAX), cl::Hidden,
78 cl::desc("Set maximum size of jump tables."));
79
80/// Minimum jump table density for normal functions.
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.
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
93 "min-bit-test-cmps", cl::init(2), cl::Hidden,
94 cl::desc("Set minimum of largest number of comparisons "
95 "to use bit test for switch."));
96
98 "max-store-memset", cl::init(0), cl::Hidden,
99 cl::desc("Override target's MaxStoresPerMemset and "
100 "MaxStoresPerMemsetOptSize. "
101 "Set to 0 to use the target default."));
102
104 "max-store-memcpy", cl::init(0), cl::Hidden,
105 cl::desc("Override target's MaxStoresPerMemcpy and "
106 "MaxStoresPerMemcpyOptSize. "
107 "Set to 0 to use the target default."));
108
110 "max-store-memmove", cl::init(0), cl::Hidden,
111 cl::desc("Override target's MaxStoresPerMemmove and "
112 "MaxStoresPerMemmoveOptSize. "
113 "Set to 0 to use the target default."));
114
115// FIXME: This option is only to test if the strict fp operation processed
116// correctly by preventing mutating strict fp operation to normal fp operation
117// during development. When the backend supports strict float operation, this
118// option will be meaningless.
119static cl::opt<bool> DisableStrictNodeMutation("disable-strictnode-mutation",
120 cl::desc("Don't mutate strict-float node to a legalize node"),
121 cl::init(false), cl::Hidden);
122
123LLVM_ABI RTLIB::Libcall RTLIB::getSHL(EVT VT) {
124 if (VT == MVT::i16)
125 return RTLIB::SHL_I16;
126 if (VT == MVT::i32)
127 return RTLIB::SHL_I32;
128 if (VT == MVT::i64)
129 return RTLIB::SHL_I64;
130 if (VT == MVT::i128)
131 return RTLIB::SHL_I128;
132
133 return RTLIB::UNKNOWN_LIBCALL;
134}
135
136LLVM_ABI RTLIB::Libcall RTLIB::getSRL(EVT VT) {
137 if (VT == MVT::i16)
138 return RTLIB::SRL_I16;
139 if (VT == MVT::i32)
140 return RTLIB::SRL_I32;
141 if (VT == MVT::i64)
142 return RTLIB::SRL_I64;
143 if (VT == MVT::i128)
144 return RTLIB::SRL_I128;
145
146 return RTLIB::UNKNOWN_LIBCALL;
147}
148
149LLVM_ABI RTLIB::Libcall RTLIB::getSRA(EVT VT) {
150 if (VT == MVT::i16)
151 return RTLIB::SRA_I16;
152 if (VT == MVT::i32)
153 return RTLIB::SRA_I32;
154 if (VT == MVT::i64)
155 return RTLIB::SRA_I64;
156 if (VT == MVT::i128)
157 return RTLIB::SRA_I128;
158
159 return RTLIB::UNKNOWN_LIBCALL;
160}
161
162LLVM_ABI RTLIB::Libcall RTLIB::getMUL(EVT VT) {
163 if (VT == MVT::i16)
164 return RTLIB::MUL_I16;
165 if (VT == MVT::i32)
166 return RTLIB::MUL_I32;
167 if (VT == MVT::i64)
168 return RTLIB::MUL_I64;
169 if (VT == MVT::i128)
170 return RTLIB::MUL_I128;
171 return RTLIB::UNKNOWN_LIBCALL;
172}
173
174LLVM_ABI RTLIB::Libcall RTLIB::getMULO(EVT VT) {
175 if (VT == MVT::i32)
176 return RTLIB::MULO_I32;
177 if (VT == MVT::i64)
178 return RTLIB::MULO_I64;
179 if (VT == MVT::i128)
180 return RTLIB::MULO_I128;
181 return RTLIB::UNKNOWN_LIBCALL;
182}
183
184LLVM_ABI RTLIB::Libcall RTLIB::getSDIV(EVT VT) {
185 if (VT == MVT::i16)
186 return RTLIB::SDIV_I16;
187 if (VT == MVT::i32)
188 return RTLIB::SDIV_I32;
189 if (VT == MVT::i64)
190 return RTLIB::SDIV_I64;
191 if (VT == MVT::i128)
192 return RTLIB::SDIV_I128;
193 return RTLIB::UNKNOWN_LIBCALL;
194}
195
196LLVM_ABI RTLIB::Libcall RTLIB::getUDIV(EVT VT) {
197 if (VT == MVT::i16)
198 return RTLIB::UDIV_I16;
199 if (VT == MVT::i32)
200 return RTLIB::UDIV_I32;
201 if (VT == MVT::i64)
202 return RTLIB::UDIV_I64;
203 if (VT == MVT::i128)
204 return RTLIB::UDIV_I128;
205 return RTLIB::UNKNOWN_LIBCALL;
206}
207
208LLVM_ABI RTLIB::Libcall RTLIB::getSREM(EVT VT) {
209 if (VT == MVT::i16)
210 return RTLIB::SREM_I16;
211 if (VT == MVT::i32)
212 return RTLIB::SREM_I32;
213 if (VT == MVT::i64)
214 return RTLIB::SREM_I64;
215 if (VT == MVT::i128)
216 return RTLIB::SREM_I128;
217 return RTLIB::UNKNOWN_LIBCALL;
218}
219
220LLVM_ABI RTLIB::Libcall RTLIB::getUREM(EVT VT) {
221 if (VT == MVT::i16)
222 return RTLIB::UREM_I16;
223 if (VT == MVT::i32)
224 return RTLIB::UREM_I32;
225 if (VT == MVT::i64)
226 return RTLIB::UREM_I64;
227 if (VT == MVT::i128)
228 return RTLIB::UREM_I128;
229 return RTLIB::UNKNOWN_LIBCALL;
230}
231
232LLVM_ABI RTLIB::Libcall RTLIB::getCTPOP(EVT VT) {
233 if (VT == MVT::i32)
234 return RTLIB::CTPOP_I32;
235 if (VT == MVT::i64)
236 return RTLIB::CTPOP_I64;
237 if (VT == MVT::i128)
238 return RTLIB::CTPOP_I128;
239 return RTLIB::UNKNOWN_LIBCALL;
240}
241
242/// GetFPLibCall - Helper to return the right libcall for the given floating
243/// point type, or UNKNOWN_LIBCALL if there is none.
244RTLIB::Libcall RTLIB::getFPLibCall(EVT VT,
245 RTLIB::Libcall Call_F32,
246 RTLIB::Libcall Call_F64,
247 RTLIB::Libcall Call_F80,
248 RTLIB::Libcall Call_F128,
249 RTLIB::Libcall Call_PPCF128) {
250 return
251 VT == MVT::f32 ? Call_F32 :
252 VT == MVT::f64 ? Call_F64 :
253 VT == MVT::f80 ? Call_F80 :
254 VT == MVT::f128 ? Call_F128 :
255 VT == MVT::ppcf128 ? Call_PPCF128 :
256 RTLIB::UNKNOWN_LIBCALL;
257}
258
259/// getFPEXT - Return the FPEXT_*_* value for the given types, or
260/// UNKNOWN_LIBCALL if there is none.
261RTLIB::Libcall RTLIB::getFPEXT(EVT OpVT, EVT RetVT) {
262 if (OpVT == MVT::f16) {
263 if (RetVT == MVT::f32)
264 return FPEXT_F16_F32;
265 if (RetVT == MVT::f64)
266 return FPEXT_F16_F64;
267 if (RetVT == MVT::f80)
268 return FPEXT_F16_F80;
269 if (RetVT == MVT::f128)
270 return FPEXT_F16_F128;
271 } else if (OpVT == MVT::f32) {
272 if (RetVT == MVT::f64)
273 return FPEXT_F32_F64;
274 if (RetVT == MVT::f128)
275 return FPEXT_F32_F128;
276 if (RetVT == MVT::ppcf128)
277 return FPEXT_F32_PPCF128;
278 } else if (OpVT == MVT::f64) {
279 if (RetVT == MVT::f128)
280 return FPEXT_F64_F128;
281 else if (RetVT == MVT::ppcf128)
282 return FPEXT_F64_PPCF128;
283 } else if (OpVT == MVT::f80) {
284 if (RetVT == MVT::f128)
285 return FPEXT_F80_F128;
286 } else if (OpVT == MVT::bf16) {
287 if (RetVT == MVT::f32)
288 return FPEXT_BF16_F32;
289 }
290
291 return UNKNOWN_LIBCALL;
292}
293
294/// getFPROUND - Return the FPROUND_*_* value for the given types, or
295/// UNKNOWN_LIBCALL if there is none.
296RTLIB::Libcall RTLIB::getFPROUND(EVT OpVT, EVT RetVT) {
297 if (RetVT == MVT::f16) {
298 if (OpVT == MVT::f32)
299 return FPROUND_F32_F16;
300 if (OpVT == MVT::f64)
301 return FPROUND_F64_F16;
302 if (OpVT == MVT::f80)
303 return FPROUND_F80_F16;
304 if (OpVT == MVT::f128)
305 return FPROUND_F128_F16;
306 if (OpVT == MVT::ppcf128)
307 return FPROUND_PPCF128_F16;
308 } else if (RetVT == MVT::bf16) {
309 if (OpVT == MVT::f32)
310 return FPROUND_F32_BF16;
311 if (OpVT == MVT::f64)
312 return FPROUND_F64_BF16;
313 if (OpVT == MVT::f80)
314 return FPROUND_F80_BF16;
315 if (OpVT == MVT::f128)
316 return FPROUND_F128_BF16;
317 } else if (RetVT == MVT::f32) {
318 if (OpVT == MVT::f64)
319 return FPROUND_F64_F32;
320 if (OpVT == MVT::f80)
321 return FPROUND_F80_F32;
322 if (OpVT == MVT::f128)
323 return FPROUND_F128_F32;
324 if (OpVT == MVT::ppcf128)
325 return FPROUND_PPCF128_F32;
326 } else if (RetVT == MVT::f64) {
327 if (OpVT == MVT::f80)
328 return FPROUND_F80_F64;
329 if (OpVT == MVT::f128)
330 return FPROUND_F128_F64;
331 if (OpVT == MVT::ppcf128)
332 return FPROUND_PPCF128_F64;
333 } else if (RetVT == MVT::f80) {
334 if (OpVT == MVT::f128)
335 return FPROUND_F128_F80;
336 }
337
338 return UNKNOWN_LIBCALL;
339}
340
341/// getFPTOSINT - Return the FPTOSINT_*_* value for the given types, or
342/// UNKNOWN_LIBCALL if there is none.
343RTLIB::Libcall RTLIB::getFPTOSINT(EVT OpVT, EVT RetVT) {
344 if (OpVT == MVT::f16) {
345 if (RetVT == MVT::i32)
346 return FPTOSINT_F16_I32;
347 if (RetVT == MVT::i64)
348 return FPTOSINT_F16_I64;
349 if (RetVT == MVT::i128)
350 return FPTOSINT_F16_I128;
351 } else if (OpVT == MVT::f32) {
352 if (RetVT == MVT::i32)
353 return FPTOSINT_F32_I32;
354 if (RetVT == MVT::i64)
355 return FPTOSINT_F32_I64;
356 if (RetVT == MVT::i128)
357 return FPTOSINT_F32_I128;
358 } else if (OpVT == MVT::f64) {
359 if (RetVT == MVT::i32)
360 return FPTOSINT_F64_I32;
361 if (RetVT == MVT::i64)
362 return FPTOSINT_F64_I64;
363 if (RetVT == MVT::i128)
364 return FPTOSINT_F64_I128;
365 } else if (OpVT == MVT::f80) {
366 if (RetVT == MVT::i32)
367 return FPTOSINT_F80_I32;
368 if (RetVT == MVT::i64)
369 return FPTOSINT_F80_I64;
370 if (RetVT == MVT::i128)
371 return FPTOSINT_F80_I128;
372 } else if (OpVT == MVT::f128) {
373 if (RetVT == MVT::i32)
374 return FPTOSINT_F128_I32;
375 if (RetVT == MVT::i64)
376 return FPTOSINT_F128_I64;
377 if (RetVT == MVT::i128)
378 return FPTOSINT_F128_I128;
379 } else if (OpVT == MVT::ppcf128) {
380 if (RetVT == MVT::i32)
381 return FPTOSINT_PPCF128_I32;
382 if (RetVT == MVT::i64)
383 return FPTOSINT_PPCF128_I64;
384 if (RetVT == MVT::i128)
385 return FPTOSINT_PPCF128_I128;
386 }
387 return UNKNOWN_LIBCALL;
388}
389
390/// getFPTOUINT - Return the FPTOUINT_*_* value for the given types, or
391/// UNKNOWN_LIBCALL if there is none.
392RTLIB::Libcall RTLIB::getFPTOUINT(EVT OpVT, EVT RetVT) {
393 if (OpVT == MVT::f16) {
394 if (RetVT == MVT::i32)
395 return FPTOUINT_F16_I32;
396 if (RetVT == MVT::i64)
397 return FPTOUINT_F16_I64;
398 if (RetVT == MVT::i128)
399 return FPTOUINT_F16_I128;
400 } else if (OpVT == MVT::f32) {
401 if (RetVT == MVT::i32)
402 return FPTOUINT_F32_I32;
403 if (RetVT == MVT::i64)
404 return FPTOUINT_F32_I64;
405 if (RetVT == MVT::i128)
406 return FPTOUINT_F32_I128;
407 } else if (OpVT == MVT::f64) {
408 if (RetVT == MVT::i32)
409 return FPTOUINT_F64_I32;
410 if (RetVT == MVT::i64)
411 return FPTOUINT_F64_I64;
412 if (RetVT == MVT::i128)
413 return FPTOUINT_F64_I128;
414 } else if (OpVT == MVT::f80) {
415 if (RetVT == MVT::i32)
416 return FPTOUINT_F80_I32;
417 if (RetVT == MVT::i64)
418 return FPTOUINT_F80_I64;
419 if (RetVT == MVT::i128)
420 return FPTOUINT_F80_I128;
421 } else if (OpVT == MVT::f128) {
422 if (RetVT == MVT::i32)
423 return FPTOUINT_F128_I32;
424 if (RetVT == MVT::i64)
425 return FPTOUINT_F128_I64;
426 if (RetVT == MVT::i128)
427 return FPTOUINT_F128_I128;
428 } else if (OpVT == MVT::ppcf128) {
429 if (RetVT == MVT::i32)
430 return FPTOUINT_PPCF128_I32;
431 if (RetVT == MVT::i64)
432 return FPTOUINT_PPCF128_I64;
433 if (RetVT == MVT::i128)
434 return FPTOUINT_PPCF128_I128;
435 }
436 return UNKNOWN_LIBCALL;
437}
438
439/// getSINTTOFP - Return the SINTTOFP_*_* value for the given types, or
440/// UNKNOWN_LIBCALL if there is none.
441RTLIB::Libcall RTLIB::getSINTTOFP(EVT OpVT, EVT RetVT) {
442 if (OpVT == MVT::i32) {
443 if (RetVT == MVT::f16)
444 return SINTTOFP_I32_F16;
445 if (RetVT == MVT::f32)
446 return SINTTOFP_I32_F32;
447 if (RetVT == MVT::f64)
448 return SINTTOFP_I32_F64;
449 if (RetVT == MVT::f80)
450 return SINTTOFP_I32_F80;
451 if (RetVT == MVT::f128)
452 return SINTTOFP_I32_F128;
453 if (RetVT == MVT::ppcf128)
454 return SINTTOFP_I32_PPCF128;
455 } else if (OpVT == MVT::i64) {
456 if (RetVT == MVT::bf16)
457 return SINTTOFP_I64_BF16;
458 if (RetVT == MVT::f16)
459 return SINTTOFP_I64_F16;
460 if (RetVT == MVT::f32)
461 return SINTTOFP_I64_F32;
462 if (RetVT == MVT::f64)
463 return SINTTOFP_I64_F64;
464 if (RetVT == MVT::f80)
465 return SINTTOFP_I64_F80;
466 if (RetVT == MVT::f128)
467 return SINTTOFP_I64_F128;
468 if (RetVT == MVT::ppcf128)
469 return SINTTOFP_I64_PPCF128;
470 } else if (OpVT == MVT::i128) {
471 if (RetVT == MVT::f16)
472 return SINTTOFP_I128_F16;
473 if (RetVT == MVT::f32)
474 return SINTTOFP_I128_F32;
475 if (RetVT == MVT::f64)
476 return SINTTOFP_I128_F64;
477 if (RetVT == MVT::f80)
478 return SINTTOFP_I128_F80;
479 if (RetVT == MVT::f128)
480 return SINTTOFP_I128_F128;
481 if (RetVT == MVT::ppcf128)
482 return SINTTOFP_I128_PPCF128;
483 }
484 return UNKNOWN_LIBCALL;
485}
486
487/// getUINTTOFP - Return the UINTTOFP_*_* value for the given types, or
488/// UNKNOWN_LIBCALL if there is none.
489RTLIB::Libcall RTLIB::getUINTTOFP(EVT OpVT, EVT RetVT) {
490 if (OpVT == MVT::i32) {
491 if (RetVT == MVT::f16)
492 return UINTTOFP_I32_F16;
493 if (RetVT == MVT::f32)
494 return UINTTOFP_I32_F32;
495 if (RetVT == MVT::f64)
496 return UINTTOFP_I32_F64;
497 if (RetVT == MVT::f80)
498 return UINTTOFP_I32_F80;
499 if (RetVT == MVT::f128)
500 return UINTTOFP_I32_F128;
501 if (RetVT == MVT::ppcf128)
502 return UINTTOFP_I32_PPCF128;
503 } else if (OpVT == MVT::i64) {
504 if (RetVT == MVT::bf16)
505 return UINTTOFP_I64_BF16;
506 if (RetVT == MVT::f16)
507 return UINTTOFP_I64_F16;
508 if (RetVT == MVT::f32)
509 return UINTTOFP_I64_F32;
510 if (RetVT == MVT::f64)
511 return UINTTOFP_I64_F64;
512 if (RetVT == MVT::f80)
513 return UINTTOFP_I64_F80;
514 if (RetVT == MVT::f128)
515 return UINTTOFP_I64_F128;
516 if (RetVT == MVT::ppcf128)
517 return UINTTOFP_I64_PPCF128;
518 } else if (OpVT == MVT::i128) {
519 if (RetVT == MVT::f16)
520 return UINTTOFP_I128_F16;
521 if (RetVT == MVT::f32)
522 return UINTTOFP_I128_F32;
523 if (RetVT == MVT::f64)
524 return UINTTOFP_I128_F64;
525 if (RetVT == MVT::f80)
526 return UINTTOFP_I128_F80;
527 if (RetVT == MVT::f128)
528 return UINTTOFP_I128_F128;
529 if (RetVT == MVT::ppcf128)
530 return UINTTOFP_I128_PPCF128;
531 }
532 return UNKNOWN_LIBCALL;
533}
534
535// The floating-point RTLIB::getXXX(EVT) selectors are generated from the
536// RuntimeLibcallFamily table in RuntimeLibcalls.td.
537#define GET_RUNTIME_LIBCALL_FP_SELECTORS
538#include "llvm/IR/RuntimeLibcalls.inc"
539
540RTLIB::Libcall RTLIB::getOutlineAtomicHelper(const Libcall (&LC)[5][4],
541 AtomicOrdering Order,
542 uint64_t MemSize) {
543 unsigned ModeN, ModelN;
544 switch (MemSize) {
545 case 1:
546 ModeN = 0;
547 break;
548 case 2:
549 ModeN = 1;
550 break;
551 case 4:
552 ModeN = 2;
553 break;
554 case 8:
555 ModeN = 3;
556 break;
557 case 16:
558 ModeN = 4;
559 break;
560 default:
561 return RTLIB::UNKNOWN_LIBCALL;
562 }
563
564 switch (Order) {
566 ModelN = 0;
567 break;
569 ModelN = 1;
570 break;
572 ModelN = 2;
573 break;
576 ModelN = 3;
577 break;
578 default:
579 return UNKNOWN_LIBCALL;
580 }
581
582 return LC[ModeN][ModelN];
583}
584
585RTLIB::Libcall RTLIB::getOUTLINE_ATOMIC(unsigned Opc, AtomicOrdering Order,
586 MVT VT) {
587 if (!VT.isScalarInteger())
588 return UNKNOWN_LIBCALL;
589 uint64_t MemSize = VT.getScalarSizeInBits() / 8;
590
591#define LCALLS(A, B) \
592 { A##B##_RELAX, A##B##_ACQ, A##B##_REL, A##B##_ACQ_REL }
593#define LCALL5(A) \
594 LCALLS(A, 1), LCALLS(A, 2), LCALLS(A, 4), LCALLS(A, 8), LCALLS(A, 16)
595 switch (Opc) {
597 const Libcall LC[5][4] = {LCALL5(OUTLINE_ATOMIC_CAS)};
598 return getOutlineAtomicHelper(LC, Order, MemSize);
599 }
600 case ISD::ATOMIC_SWAP: {
601 const Libcall LC[5][4] = {LCALL5(OUTLINE_ATOMIC_SWP)};
602 return getOutlineAtomicHelper(LC, Order, MemSize);
603 }
605 const Libcall LC[5][4] = {LCALL5(OUTLINE_ATOMIC_LDADD)};
606 return getOutlineAtomicHelper(LC, Order, MemSize);
607 }
608 case ISD::ATOMIC_LOAD_OR: {
609 const Libcall LC[5][4] = {LCALL5(OUTLINE_ATOMIC_LDSET)};
610 return getOutlineAtomicHelper(LC, Order, MemSize);
611 }
613 const Libcall LC[5][4] = {LCALL5(OUTLINE_ATOMIC_LDCLR)};
614 return getOutlineAtomicHelper(LC, Order, MemSize);
615 }
617 const Libcall LC[5][4] = {LCALL5(OUTLINE_ATOMIC_LDEOR)};
618 return getOutlineAtomicHelper(LC, Order, MemSize);
619 }
620 default:
621 return UNKNOWN_LIBCALL;
622 }
623#undef LCALLS
624#undef LCALL5
625}
626
627RTLIB::Libcall RTLIB::getSYNC(unsigned Opc, MVT VT) {
628#define OP_TO_LIBCALL(Name, Enum) \
629 case Name: \
630 switch (VT.SimpleTy) { \
631 default: \
632 return UNKNOWN_LIBCALL; \
633 case MVT::i8: \
634 return Enum##_1; \
635 case MVT::i16: \
636 return Enum##_2; \
637 case MVT::i32: \
638 return Enum##_4; \
639 case MVT::i64: \
640 return Enum##_8; \
641 case MVT::i128: \
642 return Enum##_16; \
643 }
644
645 switch (Opc) {
646 OP_TO_LIBCALL(ISD::ATOMIC_SWAP, SYNC_LOCK_TEST_AND_SET)
647 OP_TO_LIBCALL(ISD::ATOMIC_CMP_SWAP, SYNC_VAL_COMPARE_AND_SWAP)
648 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_ADD, SYNC_FETCH_AND_ADD)
649 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_SUB, SYNC_FETCH_AND_SUB)
650 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_AND, SYNC_FETCH_AND_AND)
651 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_OR, SYNC_FETCH_AND_OR)
652 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_XOR, SYNC_FETCH_AND_XOR)
653 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_NAND, SYNC_FETCH_AND_NAND)
654 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_MAX, SYNC_FETCH_AND_MAX)
655 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_UMAX, SYNC_FETCH_AND_UMAX)
656 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_MIN, SYNC_FETCH_AND_MIN)
657 OP_TO_LIBCALL(ISD::ATOMIC_LOAD_UMIN, SYNC_FETCH_AND_UMIN)
658 }
659
660#undef OP_TO_LIBCALL
661
662 return UNKNOWN_LIBCALL;
663}
664
665RTLIB::Libcall RTLIB::getMEMCPY_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
666 switch (ElementSize) {
667 case 1:
668 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_1;
669 case 2:
670 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_2;
671 case 4:
672 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_4;
673 case 8:
674 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_8;
675 case 16:
676 return MEMCPY_ELEMENT_UNORDERED_ATOMIC_16;
677 default:
678 return UNKNOWN_LIBCALL;
679 }
680}
681
682RTLIB::Libcall RTLIB::getMEMMOVE_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
683 switch (ElementSize) {
684 case 1:
685 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_1;
686 case 2:
687 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_2;
688 case 4:
689 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_4;
690 case 8:
691 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_8;
692 case 16:
693 return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_16;
694 default:
695 return UNKNOWN_LIBCALL;
696 }
697}
698
699RTLIB::Libcall RTLIB::getMEMSET_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize) {
700 switch (ElementSize) {
701 case 1:
702 return MEMSET_ELEMENT_UNORDERED_ATOMIC_1;
703 case 2:
704 return MEMSET_ELEMENT_UNORDERED_ATOMIC_2;
705 case 4:
706 return MEMSET_ELEMENT_UNORDERED_ATOMIC_4;
707 case 8:
708 return MEMSET_ELEMENT_UNORDERED_ATOMIC_8;
709 case 16:
710 return MEMSET_ELEMENT_UNORDERED_ATOMIC_16;
711 default:
712 return UNKNOWN_LIBCALL;
713 }
714}
715
716/// NOTE: The TargetMachine owns TLOF.
718 const TargetSubtargetInfo &STI)
719 : TM(tm),
720 RuntimeLibcallInfo(TM.getTargetTriple(), TM.Options.ExceptionModel,
721 TM.getTargetTriple().getDefaultFloatABI(),
722 TM.Options.MCOptions.getABIName(), TM.Options.VecLib),
723 Libcalls(RuntimeLibcallInfo, [&STI](LibcallLoweringInfo &Info) {
724 STI.initLibcallLoweringInfo(Info);
725 }) {
726 initActions();
727
728 // Perform these initializations only once.
729 MaxStoresPerMemset = MaxStoresPerMemcpy = MaxStoresPerMemmove =
731 MaxGluedStoresPerMemcpy = 0;
732 MaxStoresPerMemsetOptSize = MaxStoresPerMemcpyOptSize =
733 MaxStoresPerMemmoveOptSize = MaxLoadsPerMemcmpOptSize = 4;
734 HasExtractBitsInsn = false;
735 JumpIsExpensive = JumpIsExpensiveOverride;
736 PredictableSelectIsExpensive = false;
737 EnableExtLdPromotion = false;
738 StackPointerRegisterToSaveRestore = 0;
739 BooleanContents = UndefinedBooleanContent;
740 BooleanFloatContents = UndefinedBooleanContent;
741 BooleanVectorContents = UndefinedBooleanContent;
742 SchedPreferenceInfo = Sched::ILP;
743 GatherAllAliasesMaxDepth = 18;
744 IsStrictFPEnabled = DisableStrictNodeMutation;
745 MaxBytesForAlignment = 0;
746 MaxAtomicSizeInBitsSupported = 0;
747
748 // Assume that even with libcalls, no target supports wider than 128 bit
749 // division.
750 MaxDivRemBitWidthSupported = 128;
751
752 MaxLargeFPConvertBitWidthSupported = 128;
753
754 MinCmpXchgSizeInBits = 0;
755 SupportsUnalignedAtomics = false;
756
757 MinimumBitTestCmps = MinimumBitTestCmpsOverride;
758}
759
760// Define the virtual destructor out-of-line to act as a key method to anchor
761// debug info (see coding standards).
763
765 // All operations default to being supported.
766 memset(OpActions, 0, sizeof(OpActions));
767 memset(LoadExtActions, 0, sizeof(LoadExtActions));
768 memset(AtomicLoadExtActions, 0, sizeof(AtomicLoadExtActions));
769 memset(TruncStoreActions, 0, sizeof(TruncStoreActions));
770 memset(IndexedModeActions, 0, sizeof(IndexedModeActions));
771 memset(CondCodeActions, 0, sizeof(CondCodeActions));
772 llvm::fill(RegClassForVT, nullptr);
773 llvm::fill(TargetDAGCombineArray, 0);
774
775 // Let extending atomic loads be unsupported by default.
776 for (MVT ValVT : MVT::all_valuetypes())
777 for (MVT MemVT : MVT::all_valuetypes())
779 Expand);
780
781 // We're somewhat special casing MVT::i2 and MVT::i4. Ideally we want to
782 // remove this and targets should individually set these types if not legal.
785 for (MVT VT : {MVT::i2, MVT::i4})
786 OpActions[(unsigned)VT.SimpleTy][NT] = Expand;
787 }
788 for (MVT AVT : MVT::all_valuetypes()) {
789 for (MVT VT : {MVT::i2, MVT::i4, MVT::v128i2, MVT::v64i4}) {
790 setTruncStoreAction(AVT, VT, Expand);
793 }
794 }
795 for (unsigned IM = (unsigned)ISD::PRE_INC;
796 IM != (unsigned)ISD::LAST_INDEXED_MODE; ++IM) {
797 for (MVT VT : {MVT::i2, MVT::i4}) {
802 }
803 }
804
805 for (MVT VT : MVT::fp_valuetypes()) {
806 MVT IntVT = MVT::getIntegerVT(VT.getFixedSizeInBits());
807 if (IntVT.isValid()) {
810 }
811 }
812
813 // If f16 fma is not natively supported, the value must be promoted to an f64
814 // (and not to f32!) to prevent double rounding issues.
815 AddPromotedToType(ISD::FMA, MVT::f16, MVT::f64);
816 AddPromotedToType(ISD::STRICT_FMA, MVT::f16, MVT::f64);
817
818 // Set default actions for various operations.
819 for (MVT VT : MVT::all_valuetypes()) {
820 // Default all indexed load / store to expand.
821 for (unsigned IM = (unsigned)ISD::PRE_INC;
822 IM != (unsigned)ISD::LAST_INDEXED_MODE; ++IM) {
827 }
828
829 // Most backends expect to see the node which just returns the value loaded.
831
832 // clang-format off
833 // These operations default to expand.
865 VT, Expand);
866 // clang-format on
867
868 // Overflow operations default to expand
871 VT, Expand);
872
873 // Carry-using overflow operations default to expand.
876 VT, Expand);
877
878 // ADDC/ADDE/SUBC/SUBE default to expand.
880 Expand);
881
882 // [US]CMP default to expand
884
885 // Halving adds
888 Expand);
889
890 // Absolute difference
892
893 // Carry-less multiply
895
896 // Bit extract/deposit (compress/expand)
898
899 // Saturated trunc
903
904 // These default to Expand so they will be expanded to CTLZ/CTTZ by default.
906 Expand);
907
908 // This defaults to Expand so it will be expanded to ABS by default.
911
913
914 // These library functions default to expand.
917 VT, Expand);
918
919 // These operations default to expand for vector types.
920 if (VT.isVector())
926 VT, Expand);
927
928 // Constrained floating-point operations default to expand.
929#define DAG_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \
930 setOperationAction(ISD::STRICT_##DAGN, VT, Expand);
931#include "llvm/IR/ConstrainedOps.def"
934
935 // For most targets @llvm.get.dynamic.area.offset just returns 0.
937
938 // Vector reduction default to expand.
947 VT, Expand);
948
949 // Named vector shuffles default to expand.
951 Expand);
952
953 // Only some target support these vector operations. Default them to Expand.
956 Expand);
958
959 // VP operations default to expand.
960#define BEGIN_REGISTER_VP_SDNODE(SDOPC, ...) \
961 setOperationAction(ISD::SDOPC, VT, Expand);
962#include "llvm/IR/VPIntrinsics.def"
963
964 // Masked vector extracts default to expand.
966
969
970 // FP environment operations default to expand.
974
976
981 }
982
983 // Most targets ignore the @llvm.prefetch intrinsic.
985
986 // Most targets also ignore the @llvm.readcyclecounter intrinsic.
988
989 // Most targets also ignore the @llvm.readsteadycounter intrinsic.
991
992 // ConstantFP nodes default to expand. Targets can either change this to
993 // Legal, in which case all fp constants are legal, or use isFPImmLegal()
994 // to optimize expansions for certain constants.
996 {MVT::bf16, MVT::f16, MVT::f32, MVT::f64, MVT::f80, MVT::f128},
997 Expand);
998
999 // Insert custom handling default for llvm.canonicalize.*.
1001 {MVT::f16, MVT::f32, MVT::f64, MVT::f128}, Expand);
1002
1003 // FIXME: Query RuntimeLibCalls to make the decision.
1005 {MVT::f32, MVT::f64, MVT::f128}, LibCall);
1006
1009 MVT::f16, Promote);
1010 // Default ISD::TRAP to expand (which turns it into abort).
1011 setOperationAction(ISD::TRAP, MVT::Other, Expand);
1012
1013 // On most systems, DEBUGTRAP and TRAP have no difference. The "Expand"
1014 // here is to inform DAG Legalizer to replace DEBUGTRAP with TRAP.
1016
1018
1021
1022 for (MVT VT : {MVT::i8, MVT::i16, MVT::i32, MVT::i64}) {
1025 }
1027
1028 // This one by default will call __clear_cache unless the target
1029 // wants something different.
1031
1032 // By default, STACKADDRESS nodes are expanded like STACKSAVE nodes.
1033 // On SPARC targets, custom lowering is required.
1035}
1036
1038 EVT) const {
1039 return MVT::getIntegerVT(DL.getPointerSizeInBits(0));
1040}
1041
1043 const DataLayout &DL) const {
1044 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
1045 if (LHSTy.isVector())
1046 return LHSTy;
1047 MVT ShiftVT = getScalarShiftAmountTy(DL, LHSTy);
1048 // If any possible shift value won't fit in the prefered type, just use
1049 // something safe. Assume it will be legalized when the shift is expanded.
1050 if (ShiftVT.getSizeInBits() < Log2_32_Ceil(LHSTy.getSizeInBits()))
1051 ShiftVT = MVT::i32;
1052 assert(ShiftVT.getSizeInBits() >= Log2_32_Ceil(LHSTy.getSizeInBits()) &&
1053 "ShiftVT is still too small!");
1054 return ShiftVT;
1055}
1056
1057bool TargetLoweringBase::canOpTrap(unsigned Op, EVT VT) const {
1058 assert(isTypeLegal(VT));
1059 switch (Op) {
1060 default:
1061 return false;
1062 case ISD::SDIV:
1063 case ISD::UDIV:
1064 case ISD::SREM:
1065 case ISD::UREM:
1066 return true;
1067 }
1068}
1069
1071 unsigned DestAS) const {
1072 return TM.isNoopAddrSpaceCast(SrcAS, DestAS);
1073}
1074
1076 EVT RetVT, ElementCount EC, bool ZeroIsPoison,
1077 const ConstantRange *VScaleRange) const {
1078 // Find the smallest "sensible" element type to use for the expansion.
1079 ConstantRange CR(APInt(64, EC.getKnownMinValue()));
1080 if (EC.isScalable())
1081 CR = CR.umul_sat(*VScaleRange);
1082
1083 if (ZeroIsPoison)
1084 CR = CR.subtract(APInt(64, 1));
1085
1086 unsigned EltWidth = RetVT.getScalarSizeInBits();
1087 EltWidth = std::min(EltWidth, CR.getActiveBits());
1088 EltWidth = std::max(llvm::bit_ceil(EltWidth), (unsigned)8);
1089
1090 return EltWidth;
1091}
1092
1094 // If the command-line option was specified, ignore this request.
1095 if (!JumpIsExpensiveOverride.getNumOccurrences())
1096 JumpIsExpensive = isExpensive;
1097}
1098
1101 // If this is a simple type, use the ComputeRegisterProp mechanism.
1102 if (VT.isSimple()) {
1103 MVT SVT = VT.getSimpleVT();
1104 assert((unsigned)SVT.SimpleTy < std::size(TransformToType));
1105 MVT NVT = TransformToType[SVT.SimpleTy];
1106 LegalizeTypeAction LA = ValueTypeActions.getTypeAction(SVT);
1107
1108 assert((LA == TypeLegal || LA == TypeSoftenFloat ||
1109 LA == TypeSoftPromoteHalf ||
1110 (NVT.isVector() ||
1111 ValueTypeActions.getTypeAction(NVT) != TypePromoteInteger)) &&
1112 "Promote may not follow Expand or Promote");
1113
1114 if (LA == TypeSplitVector)
1115 return LegalizeKind(LA, EVT(SVT).getHalfNumVectorElementsVT(Context));
1116 if (LA == TypeScalarizeVector)
1117 return LegalizeKind(LA, SVT.getVectorElementType());
1118 return LegalizeKind(LA, NVT);
1119 }
1120
1121 // Handle Extended Scalar Types.
1122 if (!VT.isVector()) {
1123 assert(VT.isInteger() && "Float types must be simple");
1124 unsigned BitSize = VT.getSizeInBits();
1125 // First promote to a power-of-two size, then expand if necessary.
1126 if (BitSize < 8 || !isPowerOf2_32(BitSize)) {
1127 EVT NVT = VT.getRoundIntegerType(Context);
1128 assert(NVT != VT && "Unable to round integer VT");
1129 LegalizeKind NextStep = getTypeConversion(Context, NVT);
1130 // Avoid multi-step promotion.
1131 if (NextStep.first == TypePromoteInteger)
1132 return NextStep;
1133 // Return rounded integer type.
1134 return LegalizeKind(TypePromoteInteger, NVT);
1135 }
1136
1138 EVT::getIntegerVT(Context, VT.getSizeInBits() / 2));
1139 }
1140
1141 // Handle vector types.
1142 ElementCount NumElts = VT.getVectorElementCount();
1143 EVT EltVT = VT.getVectorElementType();
1144
1145 // Vectors with only one element are always scalarized.
1146 if (NumElts.isScalar())
1147 return LegalizeKind(TypeScalarizeVector, EltVT);
1148
1149 // Try to widen vector elements until the element type is a power of two and
1150 // promote it to a legal type later on, for example:
1151 // <3 x i8> -> <4 x i8> -> <4 x i32>
1152 if (EltVT.isInteger()) {
1153 // Vectors with a number of elements that is not a power of two are always
1154 // widened, for example <3 x i8> -> <4 x i8>.
1155 if (!VT.isPow2VectorType()) {
1156 NumElts = NumElts.coefficientNextPowerOf2();
1157 EVT NVT = EVT::getVectorVT(Context, EltVT, NumElts);
1158 return LegalizeKind(TypeWidenVector, NVT);
1159 }
1160
1161 // Examine the element type.
1162 LegalizeKind LK = getTypeConversion(Context, EltVT);
1163
1164 // If type is to be expanded, split the vector.
1165 // <4 x i140> -> <2 x i140>
1166 if (LK.first == TypeExpandInteger) {
1167 if (NumElts.isScalable() && NumElts.getKnownMinValue() == 1)
1170 VT.getHalfNumVectorElementsVT(Context));
1171 }
1172
1173 // Promote the integer element types until a legal vector type is found
1174 // or until the element integer type is too big. If a legal type was not
1175 // found, fallback to the usual mechanism of widening/splitting the
1176 // vector.
1177 EVT OldEltVT = EltVT;
1178 while (true) {
1179 // Increase the bitwidth of the element to the next pow-of-two
1180 // (which is greater than 8 bits).
1181 EltVT = EVT::getIntegerVT(Context, 1 + EltVT.getSizeInBits())
1182 .getRoundIntegerType(Context);
1183
1184 // Stop trying when getting a non-simple element type.
1185 // Note that vector elements may be greater than legal vector element
1186 // types. Example: X86 XMM registers hold 64bit element on 32bit
1187 // systems.
1188 if (!EltVT.isSimple())
1189 break;
1190
1191 // Build a new vector type and check if it is legal.
1192 MVT NVT = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
1193 // Found a legal promoted vector type.
1194 if (NVT != MVT() && ValueTypeActions.getTypeAction(NVT) == TypeLegal)
1196 EVT::getVectorVT(Context, EltVT, NumElts));
1197 }
1198
1199 // Reset the type to the unexpanded type if we did not find a legal vector
1200 // type with a promoted vector element type.
1201 EltVT = OldEltVT;
1202 }
1203
1204 // Try to widen the vector until a legal type is found.
1205 // If there is no wider legal type, split the vector.
1206 while (true) {
1207 // Round up to the next power of 2.
1208 NumElts = NumElts.coefficientNextPowerOf2();
1209
1210 // If there is no simple vector type with this many elements then there
1211 // cannot be a larger legal vector type. Note that this assumes that
1212 // there are no skipped intermediate vector types in the simple types.
1213 if (!EltVT.isSimple())
1214 break;
1215 MVT LargerVector = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
1216 if (LargerVector == MVT())
1217 break;
1218
1219 // If this type is legal then widen the vector.
1220 if (ValueTypeActions.getTypeAction(LargerVector) == TypeLegal)
1221 return LegalizeKind(TypeWidenVector, LargerVector);
1222 }
1223
1224 // Widen odd vectors to next power of two.
1225 if (!VT.isPow2VectorType()) {
1226 EVT NVT = VT.getPow2VectorType(Context);
1227 return LegalizeKind(TypeWidenVector, NVT);
1228 }
1229
1232
1233 // Vectors with illegal element types are expanded.
1234 EVT NVT = EVT::getVectorVT(Context, EltVT,
1236 return LegalizeKind(TypeSplitVector, NVT);
1237}
1238
1239unsigned TargetLoweringBase::getVectorTypeBreakdownMVT(
1240 MVT VT, MVT &IntermediateVT, unsigned &NumIntermediates, MVT &RegisterVT) {
1241 // Figure out the right, legal destination reg to copy into.
1243 MVT EltTy = VT.getVectorElementType();
1244
1245 unsigned NumVectorRegs = 1;
1246
1247 // Scalable vectors cannot be scalarized, so splitting or widening is
1248 // required.
1249 if (VT.isScalableVector() && !isPowerOf2_32(EC.getKnownMinValue()))
1251 "Splitting or widening of non-power-of-2 MVTs is not implemented.");
1252
1253 // FIXME: We don't support non-power-of-2-sized vectors for now.
1254 // Ideally we could break down into LHS/RHS like LegalizeDAG does.
1255 if (!isPowerOf2_32(EC.getKnownMinValue())) {
1256 // Split EC to unit size (scalable property is preserved).
1257 NumVectorRegs = EC.getKnownMinValue();
1258 EC = ElementCount::getFixed(1);
1259 }
1260
1261 // Divide the input until we get to a supported size. This will
1262 // always end up with an EC that represent a scalar or a scalable
1263 // scalar.
1264 while (EC.getKnownMinValue() > 1 &&
1265 !isTypeLegal(MVT::getVectorVT(EltTy, EC))) {
1266 EC = EC.divideCoefficientBy(2);
1267 NumVectorRegs <<= 1;
1268 }
1269
1270 NumIntermediates = NumVectorRegs;
1271
1272 MVT NewVT = MVT::getVectorVT(EltTy, EC);
1273 if (!isTypeLegal(NewVT))
1274 NewVT = EltTy;
1275 IntermediateVT = NewVT;
1276
1277 unsigned LaneSizeInBits = NewVT.getScalarSizeInBits();
1278
1279 // Convert sizes such as i33 to i64.
1280 LaneSizeInBits = llvm::bit_ceil(LaneSizeInBits);
1281
1282 MVT DestVT = getCachedRegisterType(NewVT);
1283 RegisterVT = DestVT;
1284 if (EVT(DestVT).bitsLT(NewVT)) // Value is expanded, e.g. i64 -> i16.
1285 return NumVectorRegs * (LaneSizeInBits / DestVT.getScalarSizeInBits());
1286
1287 // Otherwise, promotion or legal types use the same number of registers as
1288 // the vector decimated to the appropriate level.
1289 return NumVectorRegs;
1290}
1291
1292/// isLegalRC - Return true if the value types that can be represented by the
1293/// specified register class are all legal.
1295 const TargetRegisterClass &RC) const {
1296 for (const auto *I = TRI.legalclasstypes_begin(RC); *I != MVT::Other; ++I)
1297 if (isTypeLegal(*I))
1298 return true;
1299 return false;
1300}
1301
1302/// Replace/modify any TargetFrameIndex operands with a targte-dependent
1303/// sequence of memory operands that is recognized by PrologEpilogInserter.
1306 MachineBasicBlock *MBB) const {
1307 MachineInstr *MI = &InitialMI;
1308 MachineFunction &MF = *MI->getMF();
1309 MachineFrameInfo &MFI = MF.getFrameInfo();
1310
1311 // We're handling multiple types of operands here:
1312 // PATCHPOINT MetaArgs - live-in, read only, direct
1313 // STATEPOINT Deopt Spill - live-through, read only, indirect
1314 // STATEPOINT Deopt Alloca - live-through, read only, direct
1315 // (We're currently conservative and mark the deopt slots read/write in
1316 // practice.)
1317 // STATEPOINT GC Spill - live-through, read/write, indirect
1318 // STATEPOINT GC Alloca - live-through, read/write, direct
1319 // The live-in vs live-through is handled already (the live through ones are
1320 // all stack slots), but we need to handle the different type of stackmap
1321 // operands and memory effects here.
1322
1323 if (llvm::none_of(MI->operands(),
1324 [](MachineOperand &Operand) { return Operand.isFI(); }))
1325 return MBB;
1326
1327 MachineInstrBuilder MIB = BuildMI(MF, MI->getDebugLoc(), MI->getDesc());
1328
1329 // Inherit previous memory operands.
1330 MIB.cloneMemRefs(*MI);
1331
1332 for (unsigned i = 0; i < MI->getNumOperands(); ++i) {
1333 MachineOperand &MO = MI->getOperand(i);
1334 if (!MO.isFI()) {
1335 // Index of Def operand this Use it tied to.
1336 // Since Defs are coming before Uses, if Use is tied, then
1337 // index of Def must be smaller that index of that Use.
1338 // Also, Defs preserve their position in new MI.
1339 unsigned TiedTo = i;
1340 if (MO.isReg() && MO.isTied())
1341 TiedTo = MI->findTiedOperandIdx(i);
1342 MIB.add(MO);
1343 if (TiedTo < i)
1344 MIB->tieOperands(TiedTo, MIB->getNumOperands() - 1);
1345 continue;
1346 }
1347
1348 // foldMemoryOperand builds a new MI after replacing a single FI operand
1349 // with the canonical set of five x86 addressing-mode operands.
1350 int FI = MO.getIndex();
1351
1352 // Add frame index operands recognized by stackmaps.cpp
1354 // indirect-mem-ref tag, size, #FI, offset.
1355 // Used for spills inserted by StatepointLowering. This codepath is not
1356 // used for patchpoints/stackmaps at all, for these spilling is done via
1357 // foldMemoryOperand callback only.
1358 assert(MI->getOpcode() == TargetOpcode::STATEPOINT && "sanity");
1359 MIB.addImm(StackMaps::IndirectMemRefOp);
1360 MIB.addImm(MFI.getObjectSize(FI));
1361 MIB.add(MO);
1362 MIB.addImm(0);
1363 } else {
1364 // direct-mem-ref tag, #FI, offset.
1365 // Used by patchpoint, and direct alloca arguments to statepoints
1366 MIB.addImm(StackMaps::DirectMemRefOp);
1367 MIB.add(MO);
1368 MIB.addImm(0);
1369 }
1370
1371 assert(MIB->mayLoad() && "Folded a stackmap use to a non-load!");
1372
1373 // Add a new memory operand for this FI.
1374 assert(MFI.getObjectOffset(FI) != -1);
1375
1376 // Note: STATEPOINT MMOs are added during SelectionDAG. STACKMAP, and
1377 // PATCHPOINT should be updated to do the same. (TODO)
1378 if (MI->getOpcode() != TargetOpcode::STATEPOINT) {
1379 auto Flags = MachineMemOperand::MOLoad;
1381 MachinePointerInfo::getFixedStack(MF, FI), Flags,
1383 MIB->addMemOperand(MF, MMO);
1384 }
1385 }
1386 MBB->insert(MachineBasicBlock::iterator(MI), MIB);
1387 MI->eraseFromParent();
1388 return MBB;
1389}
1390
1391/// findRepresentativeClass - Return the largest legal super-reg register class
1392/// of the register class for the specified type and its associated "cost".
1393// This function is in TargetLowering because it uses RegClassForVT which would
1394// need to be moved to TargetRegisterInfo and would necessitate moving
1395// isTypeLegal over as well - a massive change that would just require
1396// TargetLowering having a TargetRegisterInfo class member that it would use.
1397std::pair<const TargetRegisterClass *, uint8_t>
1399 MVT VT) const {
1400 const TargetRegisterClass *RC = RegClassForVT[VT.SimpleTy];
1401 if (!RC)
1402 return std::make_pair(RC, 0);
1403
1404 // Compute the set of all super-register classes.
1405 BitVector SuperRegRC(TRI->getNumRegClasses());
1406 for (SuperRegClassIterator RCI(RC, TRI); RCI.isValid(); ++RCI)
1407 SuperRegRC.setBitsInMask(RCI.getMask());
1408
1409 // Find the first legal register class with the largest spill size.
1410 const TargetRegisterClass *BestRC = RC;
1411 for (unsigned i : SuperRegRC.set_bits()) {
1412 const TargetRegisterClass *SuperRC = TRI->getRegClass(i);
1413 // We want the largest possible spill size.
1414 if (TRI->getSpillSize(*SuperRC) <= TRI->getSpillSize(*BestRC))
1415 continue;
1416 if (!isLegalRC(*TRI, *SuperRC))
1417 continue;
1418 BestRC = SuperRC;
1419 }
1420 return std::make_pair(BestRC, 1);
1421}
1422
1423/// computeRegisterProperties - Once all of the register classes are added,
1424/// this allows us to compute derived properties we expose.
1426 const TargetRegisterInfo *TRI) {
1427 // Everything defaults to needing one register.
1428 for (unsigned i = 0; i != MVT::VALUETYPE_SIZE; ++i) {
1429 NumRegistersForVT[i] = 1;
1430 RegisterTypeForVT[i] = TransformToType[i] = (MVT::SimpleValueType)i;
1431 }
1432 // ...except isVoid, which doesn't need any registers.
1433 NumRegistersForVT[MVT::isVoid] = 0;
1434
1435 // Find the largest integer register class.
1436 unsigned LargestIntReg = MVT::LAST_INTEGER_VALUETYPE;
1437 for (; RegClassForVT[LargestIntReg] == nullptr; --LargestIntReg)
1438 assert(LargestIntReg != MVT::i1 && "No integer registers defined!");
1439
1440 // Every integer value type larger than this largest register takes twice as
1441 // many registers to represent as the previous ValueType.
1442 for (unsigned ExpandedReg = LargestIntReg + 1;
1443 ExpandedReg <= MVT::LAST_INTEGER_VALUETYPE; ++ExpandedReg) {
1444 NumRegistersForVT[ExpandedReg] = 2*NumRegistersForVT[ExpandedReg-1];
1445 RegisterTypeForVT[ExpandedReg] = (MVT::SimpleValueType)LargestIntReg;
1446 TransformToType[ExpandedReg] = (MVT::SimpleValueType)(ExpandedReg - 1);
1447 ValueTypeActions.setTypeAction((MVT::SimpleValueType)ExpandedReg,
1449 }
1450
1451 // Inspect all of the ValueType's smaller than the largest integer
1452 // register to see which ones need promotion.
1453 unsigned LegalIntReg = LargestIntReg;
1454 for (unsigned IntReg = LargestIntReg - 1;
1455 IntReg >= (unsigned)MVT::i1; --IntReg) {
1456 MVT IVT = (MVT::SimpleValueType)IntReg;
1457 if (isTypeLegal(IVT)) {
1458 LegalIntReg = IntReg;
1459 } else {
1460 RegisterTypeForVT[IntReg] = TransformToType[IntReg] =
1461 (MVT::SimpleValueType)LegalIntReg;
1462 ValueTypeActions.setTypeAction(IVT, TypePromoteInteger);
1463 }
1464 }
1465
1466 // ppcf128 type is really two f64's.
1467 if (!isTypeLegal(MVT::ppcf128)) {
1468 if (isTypeLegal(MVT::f64)) {
1469 NumRegistersForVT[MVT::ppcf128] = 2*NumRegistersForVT[MVT::f64];
1470 RegisterTypeForVT[MVT::ppcf128] = MVT::f64;
1471 TransformToType[MVT::ppcf128] = MVT::f64;
1472 ValueTypeActions.setTypeAction(MVT::ppcf128, TypeExpandFloat);
1473 } else {
1474 NumRegistersForVT[MVT::ppcf128] = NumRegistersForVT[MVT::i128];
1475 RegisterTypeForVT[MVT::ppcf128] = RegisterTypeForVT[MVT::i128];
1476 TransformToType[MVT::ppcf128] = MVT::i128;
1477 ValueTypeActions.setTypeAction(MVT::ppcf128, TypeSoftenFloat);
1478 }
1479 }
1480
1481 // Decide how to handle f128. If the target does not have native f128 support,
1482 // expand it to i128 and we will be generating soft float library calls.
1483 if (!isTypeLegal(MVT::f128)) {
1484 NumRegistersForVT[MVT::f128] = NumRegistersForVT[MVT::i128];
1485 RegisterTypeForVT[MVT::f128] = RegisterTypeForVT[MVT::i128];
1486 TransformToType[MVT::f128] = MVT::i128;
1487 ValueTypeActions.setTypeAction(MVT::f128, TypeSoftenFloat);
1488 }
1489
1490 // Decide how to handle f80. If the target does not have native f80 support,
1491 // expand it to i96 and we will be generating soft float library calls.
1492 if (!isTypeLegal(MVT::f80)) {
1493 NumRegistersForVT[MVT::f80] = 3*NumRegistersForVT[MVT::i32];
1494 RegisterTypeForVT[MVT::f80] = RegisterTypeForVT[MVT::i32];
1495 TransformToType[MVT::f80] = MVT::i32;
1496 ValueTypeActions.setTypeAction(MVT::f80, TypeSoftenFloat);
1497 }
1498
1499 // Decide how to handle f64. If the target does not have native f64 support,
1500 // expand it to i64 and we will be generating soft float library calls.
1501 if (!isTypeLegal(MVT::f64)) {
1502 NumRegistersForVT[MVT::f64] = NumRegistersForVT[MVT::i64];
1503 RegisterTypeForVT[MVT::f64] = RegisterTypeForVT[MVT::i64];
1504 TransformToType[MVT::f64] = MVT::i64;
1505 ValueTypeActions.setTypeAction(MVT::f64, TypeSoftenFloat);
1506 }
1507
1508 // Decide how to handle f32. If the target does not have native f32 support,
1509 // expand it to i32 and we will be generating soft float library calls.
1510 if (!isTypeLegal(MVT::f32)) {
1511 NumRegistersForVT[MVT::f32] = NumRegistersForVT[MVT::i32];
1512 RegisterTypeForVT[MVT::f32] = RegisterTypeForVT[MVT::i32];
1513 TransformToType[MVT::f32] = MVT::i32;
1514 ValueTypeActions.setTypeAction(MVT::f32, TypeSoftenFloat);
1515 }
1516
1517 // Decide how to handle f16. If the target does not have native f16 support,
1518 // promote it to f32, because there are no f16 library calls (except for
1519 // conversions).
1520 if (!isTypeLegal(MVT::f16)) {
1521 // Allow targets to control how we legalize half.
1522 bool UseFPRegsForHalfType = useFPRegsForHalfType();
1523
1524 if (!UseFPRegsForHalfType) {
1525 NumRegistersForVT[MVT::f16] = NumRegistersForVT[MVT::i16];
1526 RegisterTypeForVT[MVT::f16] = RegisterTypeForVT[MVT::i16];
1527 } else {
1528 NumRegistersForVT[MVT::f16] = NumRegistersForVT[MVT::f32];
1529 RegisterTypeForVT[MVT::f16] = RegisterTypeForVT[MVT::f32];
1530 }
1531 TransformToType[MVT::f16] = MVT::f32;
1532 ValueTypeActions.setTypeAction(MVT::f16, TypeSoftPromoteHalf);
1533 }
1534
1535 // Decide how to handle bf16. If the target does not have native bf16 support,
1536 // promote it to f32, because there are no bf16 library calls (except for
1537 // converting from f32 to bf16).
1538 if (!isTypeLegal(MVT::bf16)) {
1539 NumRegistersForVT[MVT::bf16] = NumRegistersForVT[MVT::f32];
1540 RegisterTypeForVT[MVT::bf16] = RegisterTypeForVT[MVT::f32];
1541 TransformToType[MVT::bf16] = MVT::f32;
1542 ValueTypeActions.setTypeAction(MVT::bf16, TypeSoftPromoteHalf);
1543 }
1544
1545 // Loop over all of the vector value types to see which need transformations.
1546 for (unsigned i = MVT::FIRST_VECTOR_VALUETYPE;
1547 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
1548 MVT VT = (MVT::SimpleValueType) i;
1549 if (isTypeLegal(VT))
1550 continue;
1551
1552 MVT EltVT = VT.getVectorElementType();
1554 bool IsLegalWiderType = false;
1555 bool IsScalable = VT.isScalableVector();
1556 LegalizeTypeAction PreferredAction = getPreferredVectorAction(VT);
1557 switch (PreferredAction) {
1558 case TypePromoteInteger: {
1559 MVT::SimpleValueType EndVT = IsScalable ?
1560 MVT::LAST_INTEGER_SCALABLE_VECTOR_VALUETYPE :
1561 MVT::LAST_INTEGER_FIXEDLEN_VECTOR_VALUETYPE;
1562 // Try to promote the elements of integer vectors. If no legal
1563 // promotion was found, fall through to the widen-vector method.
1564 for (unsigned nVT = i + 1;
1565 (MVT::SimpleValueType)nVT <= EndVT; ++nVT) {
1566 MVT SVT = (MVT::SimpleValueType) nVT;
1567 // Promote vectors of integers to vectors with the same number
1568 // of elements, with a wider element type.
1569 if (SVT.getScalarSizeInBits() > EltVT.getFixedSizeInBits() &&
1570 SVT.getVectorElementCount() == EC && isTypeLegal(SVT)) {
1571 TransformToType[i] = SVT;
1572 RegisterTypeForVT[i] = SVT;
1573 NumRegistersForVT[i] = 1;
1574 ValueTypeActions.setTypeAction(VT, TypePromoteInteger);
1575 IsLegalWiderType = true;
1576 break;
1577 }
1578 }
1579 if (IsLegalWiderType)
1580 break;
1581 [[fallthrough]];
1582 }
1583
1584 case TypeWidenVector:
1585 if (isPowerOf2_32(EC.getKnownMinValue())) {
1586 // Try to widen the vector.
1587 for (unsigned nVT = i + 1; nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
1588 MVT SVT = (MVT::SimpleValueType) nVT;
1589 if (SVT.getVectorElementType() == EltVT &&
1590 SVT.isScalableVector() == IsScalable &&
1592 EC.getKnownMinValue() &&
1593 isTypeLegal(SVT)) {
1594 TransformToType[i] = SVT;
1595 RegisterTypeForVT[i] = SVT;
1596 NumRegistersForVT[i] = 1;
1597 ValueTypeActions.setTypeAction(VT, TypeWidenVector);
1598 IsLegalWiderType = true;
1599 break;
1600 }
1601 }
1602 if (IsLegalWiderType)
1603 break;
1604 } else {
1605 // Only widen to the next power of 2 to keep consistency with EVT.
1606 MVT NVT = VT.getPow2VectorType();
1607 if (isTypeLegal(NVT)) {
1608 TransformToType[i] = NVT;
1609 ValueTypeActions.setTypeAction(VT, TypeWidenVector);
1610 RegisterTypeForVT[i] = NVT;
1611 NumRegistersForVT[i] = 1;
1612 break;
1613 }
1614 }
1615 [[fallthrough]];
1616
1617 case TypeSplitVector:
1618 case TypeScalarizeVector: {
1619 MVT IntermediateVT;
1620 MVT RegisterVT;
1621 unsigned NumIntermediates;
1622 unsigned NumRegisters = getVectorTypeBreakdownMVT(
1623 VT, IntermediateVT, NumIntermediates, RegisterVT);
1624 NumRegistersForVT[i] = NumRegisters;
1625 assert(NumRegistersForVT[i] == NumRegisters &&
1626 "NumRegistersForVT size cannot represent NumRegisters!");
1627 RegisterTypeForVT[i] = RegisterVT;
1628
1629 MVT NVT = VT.getPow2VectorType();
1630 if (NVT == VT) {
1631 // Type is already a power of 2. The default action is to split.
1632 TransformToType[i] = MVT::Other;
1633 if (PreferredAction == TypeScalarizeVector)
1634 ValueTypeActions.setTypeAction(VT, TypeScalarizeVector);
1635 else if (PreferredAction == TypeSplitVector)
1636 ValueTypeActions.setTypeAction(VT, TypeSplitVector);
1637 else if (EC.getKnownMinValue() > 1)
1638 ValueTypeActions.setTypeAction(VT, TypeSplitVector);
1639 else
1640 ValueTypeActions.setTypeAction(VT, EC.isScalable()
1643 } else {
1644 TransformToType[i] = NVT;
1645 ValueTypeActions.setTypeAction(VT, TypeWidenVector);
1646 }
1647 break;
1648 }
1649 default:
1650 llvm_unreachable("Unknown vector legalization action!");
1651 }
1652 }
1653
1654 // Determine the 'representative' register class for each value type.
1655 // An representative register class is the largest (meaning one which is
1656 // not a sub-register class / subreg register class) legal register class for
1657 // a group of value types. For example, on i386, i8, i16, and i32
1658 // representative would be GR32; while on x86_64 it's GR64.
1659 for (unsigned i = 0; i != MVT::VALUETYPE_SIZE; ++i) {
1660 const TargetRegisterClass* RRC;
1661 uint8_t Cost;
1663 RepRegClassForVT[i] = RRC;
1664 RepRegClassCostForVT[i] = Cost;
1665 }
1666
1667 // Compute minimum known-legal store size.
1668 MaximumLegalStoreInBits = 0;
1669 for (MVT VT : MVT::all_valuetypes())
1670 if (VT != MVT::Other && isTypeLegal(VT) &&
1671 VT.getSizeInBits().getKnownMinValue() >= MaximumLegalStoreInBits)
1672 MaximumLegalStoreInBits = VT.getSizeInBits().getKnownMinValue();
1673}
1674
1676 EVT VT) const {
1677 assert(!VT.isVector() && "No default SetCC type for vectors!");
1678 return getPointerTy(DL).SimpleTy;
1679}
1680
1681/// getVectorTypeBreakdown - Vector types are broken down into some number of
1682/// legal first class types. For example, MVT::v8f32 maps to 2 MVT::v4f32
1683/// with Altivec or SSE1, or 8 promoted MVT::f64 values with the X86 FP stack.
1684/// Similarly, MVT::v2i64 turns into 4 MVT::i32 values with both PPC and X86.
1685///
1686/// This method returns the number of registers needed, and the VT for each
1687/// register. It also returns the VT and quantity of the intermediate values
1688/// before they are promoted/expanded.
1689unsigned TargetLoweringBase::getVectorTypeBreakdownImpl(
1690 LLVMContext &Context, EVT VT, EVT &IntermediateVT,
1691 unsigned &NumIntermediates, MVT &RegisterVT, bool ForCallingConv) const {
1692 ElementCount EltCnt = VT.getVectorElementCount();
1693
1694 // If there is a wider vector type with the same element type as this one,
1695 // or a promoted vector type that has the same number of elements which
1696 // are wider, then we should convert to that legal vector type.
1697 // This handles things like <2 x float> -> <4 x float> and
1698 // <4 x i1> -> <4 x i32>.
1699 LegalizeTypeAction TA = getTypeAction(Context, VT);
1700 if (!EltCnt.isScalar() &&
1701 (TA == TypeWidenVector || TA == TypePromoteInteger)) {
1702 EVT RegisterEVT = getTypeToTransformTo(Context, VT);
1703 if (isTypeLegal(RegisterEVT)) {
1704 IntermediateVT = RegisterEVT;
1705 RegisterVT = RegisterEVT.getSimpleVT();
1706 NumIntermediates = 1;
1707 return 1;
1708 }
1709 }
1710
1711 // Figure out the right, legal destination reg to copy into.
1712 EVT EltTy = VT.getVectorElementType();
1713
1714 unsigned NumVectorRegs = 1;
1715
1716 auto GetLegalVectorBreakdown = [&]() -> std::optional<unsigned> {
1717 LegalizeKind LK;
1718 EVT PartVT = VT;
1719 do {
1720 // Iterate until we've found a legal (part) type to hold VT.
1721 LK = getTypeConversion(Context, PartVT);
1722 PartVT = LK.second;
1723 } while (LK.first != TypeLegal);
1724
1725 if (!PartVT.isVector())
1726 return std::nullopt;
1727
1728 assert(PartVT.isScalableVector() == VT.isScalableVector() &&
1729 "Vector legalization changed scalability");
1730 NumIntermediates =
1733 IntermediateVT = PartVT;
1734 RegisterVT = getRegisterType(Context, IntermediateVT);
1735 return NumIntermediates;
1736 };
1737
1738 // Scalable vectors cannot be scalarized, so handle the legalisation of the
1739 // types like done elsewhere in SelectionDAG.
1740 if (EltCnt.isScalable()) {
1741 if (std::optional<unsigned> NumRegs = GetLegalVectorBreakdown())
1742 return *NumRegs;
1743 report_fatal_error("Don't know how to legalize this scalable vector type");
1744 }
1745
1746 // FIXME: We don't generically support non-power-of-2-sized vectors for now.
1747 // Ideally we could break down into LHS/RHS like LegalizeDAG does.
1748 if (!isPowerOf2_32(EltCnt.getKnownMinValue())) {
1749 assert(VT.isFixedLengthVector() && "Expected a fixed-length vector VT");
1750 unsigned NumElts = EltCnt.getKnownMinValue();
1751
1752 if (!ForCallingConv && preferVectorizedNonPowerOfTwoTypeBreakdown())
1753 if (std::optional<unsigned> NumRegs = GetLegalVectorBreakdown())
1754 return *NumRegs;
1755
1756 // Fall back to scalars if there is no legal vector decomposition.
1757 NumVectorRegs = NumElts;
1758 EltCnt = ElementCount::getFixed(1);
1759 }
1760
1761 // Divide the input until we get to a supported size. This will always
1762 // end with a scalar if the target doesn't support vectors.
1763 while (EltCnt.getKnownMinValue() > 1 &&
1764 !isTypeLegal(EVT::getVectorVT(Context, EltTy, EltCnt))) {
1765 EltCnt = EltCnt.divideCoefficientBy(2);
1766 NumVectorRegs <<= 1;
1767 }
1768
1769 NumIntermediates = NumVectorRegs;
1770
1771 EVT NewVT = EVT::getVectorVT(Context, EltTy, EltCnt);
1772 if (!isTypeLegal(NewVT))
1773 NewVT = EltTy;
1774 IntermediateVT = NewVT;
1775
1776 MVT DestVT = getRegisterType(Context, NewVT);
1777 RegisterVT = DestVT;
1778
1779 if (EVT(DestVT).bitsLT(NewVT)) { // Value is expanded, e.g. i64 -> i16.
1780 TypeSize NewVTSize = NewVT.getSizeInBits();
1781 // Convert sizes such as i33 to i64.
1783 NewVTSize = NewVTSize.coefficientNextPowerOf2();
1784 return NumVectorRegs*(NewVTSize/DestVT.getSizeInBits());
1785 }
1786
1787 // Otherwise, promotion or legal types use the same number of registers as
1788 // the vector decimated to the appropriate level.
1789 return NumVectorRegs;
1790}
1791
1793 uint64_t NumCases,
1794 uint64_t Range,
1795 ProfileSummaryInfo *PSI,
1796 BlockFrequencyInfo *BFI) const {
1797 // FIXME: This function check the maximum table size and density, but the
1798 // minimum size is not checked. It would be nice if the minimum size is
1799 // also combined within this function. Currently, the minimum size check is
1800 // performed in findJumpTable() in SelectionDAGBuiler and
1801 // getEstimatedNumberOfCaseClusters() in BasicTTIImpl.
1802 const bool OptForSize =
1803 llvm::shouldOptimizeForSize(SI->getParent(), PSI, BFI);
1804 const unsigned MinDensity = getMinimumJumpTableDensity(OptForSize);
1805 const unsigned MaxJumpTableSize = getMaximumJumpTableSize();
1806
1807 // Check whether the number of cases is small enough and
1808 // the range is dense enough for a jump table.
1809 return (OptForSize || Range <= MaxJumpTableSize) &&
1810 (NumCases * 100 >= Range * MinDensity);
1811}
1812
1814 EVT ConditionVT) const {
1815 return getRegisterType(Context, ConditionVT);
1816}
1817
1818/// Get the EVTs and ArgFlags collections that represent the legalized return
1819/// type of the given function. This does not require a DAG or a return value,
1820/// and is suitable for use before any DAGs for the function are constructed.
1821/// TODO: Move this out of TargetLowering.cpp.
1823 AttributeList attr,
1825 const TargetLowering &TLI, const DataLayout &DL) {
1827 ComputeValueTypes(DL, ReturnType, Types);
1828 unsigned NumValues = Types.size();
1829 if (NumValues == 0) return;
1830
1831 for (Type *Ty : Types) {
1832 EVT VT = TLI.getValueType(DL, Ty);
1833 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1834
1835 if (attr.hasRetAttr(Attribute::SExt))
1836 ExtendKind = ISD::SIGN_EXTEND;
1837 else if (attr.hasRetAttr(Attribute::ZExt))
1838 ExtendKind = ISD::ZERO_EXTEND;
1839
1840 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger())
1841 VT = TLI.getTypeForExtReturn(ReturnType->getContext(), VT, ExtendKind);
1842
1843 unsigned NumParts =
1844 TLI.getNumRegistersForCallingConv(ReturnType->getContext(), CC, VT);
1845 MVT PartVT =
1846 TLI.getRegisterTypeForCallingConv(ReturnType->getContext(), CC, VT);
1847
1848 // 'inreg' on function refers to return value
1850 if (attr.hasRetAttr(Attribute::InReg))
1851 Flags.setInReg();
1852
1853 // Propagate extension type if any
1854 if (attr.hasRetAttr(Attribute::SExt))
1855 Flags.setSExt();
1856 else if (attr.hasRetAttr(Attribute::ZExt))
1857 Flags.setZExt();
1858
1859 for (unsigned i = 0; i < NumParts; ++i)
1860 Outs.push_back(ISD::OutputArg(Flags, PartVT, VT, Ty, 0, 0));
1861 }
1862}
1863
1865 const DataLayout &DL) const {
1866 return DL.getABITypeAlign(Ty);
1867}
1868
1870 LLVMContext &Context, const DataLayout &DL, EVT VT, unsigned AddrSpace,
1871 Align Alignment, MachineMemOperand::Flags Flags, unsigned *Fast) const {
1872 // Check if the specified alignment is sufficient based on the data layout.
1873 // TODO: While using the data layout works in practice, a better solution
1874 // would be to implement this check directly (make this a virtual function).
1875 // For example, the ABI alignment may change based on software platform while
1876 // this function should only be affected by hardware implementation.
1877 Type *Ty = VT.getTypeForEVT(Context);
1878 if (VT.isZeroSized() || Alignment >= DL.getABITypeAlign(Ty)) {
1879 // Assume that an access that meets the ABI-specified alignment is fast.
1880 if (Fast != nullptr)
1881 *Fast = 1;
1882 return true;
1883 }
1884
1885 // This is a misaligned access.
1886 return allowsMisalignedMemoryAccesses(VT, AddrSpace, Alignment, Flags, Fast);
1887}
1888
1890 LLVMContext &Context, const DataLayout &DL, EVT VT,
1891 const MachineMemOperand &MMO, unsigned *Fast) const {
1892 return allowsMemoryAccessForAlignment(Context, DL, VT, MMO.getAddrSpace(),
1893 MMO.getAlign(), MMO.getFlags(), Fast);
1894}
1895
1897 const DataLayout &DL, EVT VT,
1898 unsigned AddrSpace, Align Alignment,
1900 unsigned *Fast) const {
1901 return allowsMemoryAccessForAlignment(Context, DL, VT, AddrSpace, Alignment,
1902 Flags, Fast);
1903}
1904
1906 const DataLayout &DL, EVT VT,
1907 const MachineMemOperand &MMO,
1908 unsigned *Fast) const {
1909 return allowsMemoryAccess(Context, DL, VT, MMO.getAddrSpace(), MMO.getAlign(),
1910 MMO.getFlags(), Fast);
1911}
1912
1914 const DataLayout &DL, LLT Ty,
1915 const MachineMemOperand &MMO,
1916 unsigned *Fast) const {
1917 EVT VT = getApproximateEVTForLLT(Ty, Context);
1918 return allowsMemoryAccess(Context, DL, VT, MMO.getAddrSpace(), MMO.getAlign(),
1919 MMO.getFlags(), Fast);
1920}
1921
1922unsigned TargetLoweringBase::getMaxStoresPerMemset(bool OptSize) const {
1925
1927}
1928
1929unsigned TargetLoweringBase::getMaxStoresPerMemcpy(bool OptSize) const {
1932
1934}
1935
1939
1941}
1942
1943//===----------------------------------------------------------------------===//
1944// TargetTransformInfo Helpers
1945//===----------------------------------------------------------------------===//
1946
1948 enum InstructionOpcodes {
1949#define HANDLE_INST(NUM, OPCODE, CLASS) OPCODE = NUM,
1950#define LAST_OTHER_INST(NUM) InstructionOpcodesCount = NUM
1951#include "llvm/IR/Instruction.def"
1952 };
1953 switch (static_cast<InstructionOpcodes>(Opcode)) {
1954 case Ret: return 0;
1955 case UncondBr: return 0;
1956 case CondBr: return 0;
1957 case Switch: return 0;
1958 case IndirectBr: return 0;
1959 case Invoke: return 0;
1960 case CallBr: return 0;
1961 case Resume: return 0;
1962 case Unreachable: return 0;
1963 case CleanupRet: return 0;
1964 case CatchRet: return 0;
1965 case CatchPad: return 0;
1966 case CatchSwitch: return 0;
1967 case CleanupPad: return 0;
1968 case FNeg: return ISD::FNEG;
1969 case Add: return ISD::ADD;
1970 case FAdd: return ISD::FADD;
1971 case Sub: return ISD::SUB;
1972 case FSub: return ISD::FSUB;
1973 case Mul: return ISD::MUL;
1974 case FMul: return ISD::FMUL;
1975 case UDiv: return ISD::UDIV;
1976 case SDiv: return ISD::SDIV;
1977 case FDiv: return ISD::FDIV;
1978 case URem: return ISD::UREM;
1979 case SRem: return ISD::SREM;
1980 case FRem: return ISD::FREM;
1981 case Shl: return ISD::SHL;
1982 case LShr: return ISD::SRL;
1983 case AShr: return ISD::SRA;
1984 case And: return ISD::AND;
1985 case Or: return ISD::OR;
1986 case Xor: return ISD::XOR;
1987 case Alloca: return 0;
1988 case Load: return ISD::LOAD;
1989 case Store: return ISD::STORE;
1990 case GetElementPtr: return 0;
1991 case Fence: return 0;
1992 case AtomicCmpXchg: return 0;
1993 case AtomicRMW: return 0;
1994 case Trunc: return ISD::TRUNCATE;
1995 case ZExt: return ISD::ZERO_EXTEND;
1996 case SExt: return ISD::SIGN_EXTEND;
1997 case FPToUI: return ISD::FP_TO_UINT;
1998 case FPToSI: return ISD::FP_TO_SINT;
1999 case UIToFP: return ISD::UINT_TO_FP;
2000 case SIToFP: return ISD::SINT_TO_FP;
2001 case FPTrunc: return ISD::FP_ROUND;
2002 case FPExt: return ISD::FP_EXTEND;
2003 case PtrToAddr: return ISD::BITCAST;
2004 case PtrToInt: return ISD::BITCAST;
2005 case IntToPtr: return ISD::BITCAST;
2006 case BitCast: return ISD::BITCAST;
2007 case AddrSpaceCast: return ISD::ADDRSPACECAST;
2008 case ICmp: return ISD::SETCC;
2009 case FCmp: return ISD::SETCC;
2010 case PHI: return 0;
2011 case Call: return 0;
2012 case Select: return ISD::SELECT;
2013 case UserOp1: return 0;
2014 case UserOp2: return 0;
2015 case VAArg: return 0;
2016 case ExtractElement: return ISD::EXTRACT_VECTOR_ELT;
2017 case InsertElement: return ISD::INSERT_VECTOR_ELT;
2018 case ShuffleVector: return ISD::VECTOR_SHUFFLE;
2019 case ExtractValue: return ISD::MERGE_VALUES;
2020 case InsertValue: return ISD::MERGE_VALUES;
2021 case LandingPad: return 0;
2022 case Freeze: return ISD::FREEZE;
2023 }
2024
2025 llvm_unreachable("Unknown instruction type encountered!");
2026}
2027
2029 switch (ID) {
2030 case Intrinsic::acos:
2031 return ISD::FACOS;
2032 case Intrinsic::asin:
2033 return ISD::FASIN;
2034 case Intrinsic::atan:
2035 return ISD::FATAN;
2036 case Intrinsic::cos:
2037 return ISD::FCOS;
2038 case Intrinsic::cosh:
2039 return ISD::FCOSH;
2040 case Intrinsic::exp:
2041 return ISD::FEXP;
2042 case Intrinsic::exp2:
2043 return ISD::FEXP2;
2044 case Intrinsic::exp10:
2045 return ISD::FEXP10;
2046 case Intrinsic::log:
2047 return ISD::FLOG;
2048 case Intrinsic::log2:
2049 return ISD::FLOG2;
2050 case Intrinsic::log10:
2051 return ISD::FLOG10;
2052 case Intrinsic::modf:
2053 return ISD::FMODF;
2054 case Intrinsic::sin:
2055 return ISD::FSIN;
2056 case Intrinsic::sincos:
2057 return ISD::FSINCOS;
2058 case Intrinsic::sincospi:
2059 return ISD::FSINCOSPI;
2060 case Intrinsic::sinh:
2061 return ISD::FSINH;
2062 case Intrinsic::tan:
2063 return ISD::FTAN;
2064 case Intrinsic::tanh:
2065 return ISD::FTANH;
2066 default:
2067 return ISD::DELETED_NODE;
2068 }
2069}
2070
2071Value *
2073 bool UseTLS) const {
2074 // compiler-rt provides a variable with a magic name. Targets that do not
2075 // link with compiler-rt may also provide such a variable.
2076 Module *M = IRB.GetInsertBlock()->getParent()->getParent();
2077
2078 RTLIB::LibcallImpl UnsafeStackPtrImpl =
2079 Libcalls.getLibcallImpl(RTLIB::SAFESTACK_UNSAFE_STACK_PTR);
2080 if (UnsafeStackPtrImpl == RTLIB::Unsupported)
2081 return nullptr;
2082
2083 StringRef UnsafeStackPtrVar =
2085 auto UnsafeStackPtr =
2086 dyn_cast_or_null<GlobalVariable>(M->getNamedValue(UnsafeStackPtrVar));
2087
2088 const DataLayout &DL = M->getDataLayout();
2089 PointerType *StackPtrTy = DL.getAllocaPtrType(M->getContext());
2090
2091 if (!UnsafeStackPtr) {
2092 auto TLSModel = UseTLS ?
2095 // The global variable is not defined yet, define it ourselves.
2096 // We use the initial-exec TLS model because we do not support the
2097 // variable living anywhere other than in the main executable.
2098 UnsafeStackPtr = new GlobalVariable(
2099 *M, StackPtrTy, false, GlobalValue::ExternalLinkage, nullptr,
2100 UnsafeStackPtrVar, nullptr, TLSModel);
2101 } else {
2102 // The variable exists, check its type and attributes.
2103 //
2104 // FIXME: Move to IR verifier.
2105 if (UnsafeStackPtr->getValueType() != StackPtrTy)
2106 report_fatal_error(Twine(UnsafeStackPtrVar) + " must have void* type");
2107 if (UseTLS != UnsafeStackPtr->isThreadLocal())
2108 report_fatal_error(Twine(UnsafeStackPtrVar) + " must " +
2109 (UseTLS ? "" : "not ") + "be thread-local");
2110 }
2111 return UnsafeStackPtr;
2112}
2113
2115 IRBuilderBase &IRB, const LibcallLoweringInfo &Libcalls) const {
2116 RTLIB::LibcallImpl SafestackPointerAddressImpl =
2117 Libcalls.getLibcallImpl(RTLIB::SAFESTACK_POINTER_ADDRESS);
2118 if (SafestackPointerAddressImpl == RTLIB::Unsupported)
2119 return getDefaultSafeStackPointerLocation(IRB, true);
2120
2121 Module *M = IRB.GetInsertBlock()->getParent()->getParent();
2122 auto *PtrTy = PointerType::getUnqual(M->getContext());
2123
2124 // Android provides a libc function to retrieve the address of the current
2125 // thread's unsafe stack pointer.
2126 FunctionCallee Fn =
2128 SafestackPointerAddressImpl),
2129 PtrTy);
2130 return IRB.CreateCall(Fn);
2131}
2132
2133//===----------------------------------------------------------------------===//
2134// Loop Strength Reduction hooks
2135//===----------------------------------------------------------------------===//
2136
2137/// isLegalAddressingMode - Return true if the addressing mode represented
2138/// by AM is legal for this target, for a load/store of the specified type.
2140 const AddrMode &AM, Type *Ty,
2141 unsigned AS, Instruction *I) const {
2142 // The default implementation of this implements a conservative RISCy, r+r and
2143 // r+i addr mode.
2144
2145 // Scalable offsets not supported
2146 if (AM.ScalableOffset)
2147 return false;
2148
2149 // Allows a sign-extended 16-bit immediate field.
2150 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
2151 return false;
2152
2153 // No global is ever allowed as a base.
2154 if (AM.BaseGV)
2155 return false;
2156
2157 // Only support r+r,
2158 switch (AM.Scale) {
2159 case 0: // "r+i" or just "i", depending on HasBaseReg.
2160 break;
2161 case 1:
2162 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
2163 return false;
2164 // Otherwise we have r+r or r+i.
2165 break;
2166 case 2:
2167 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
2168 return false;
2169 // Allow 2*r as r+r.
2170 break;
2171 default: // Don't allow n * r
2172 return false;
2173 }
2174
2175 return true;
2176}
2177
2178//===----------------------------------------------------------------------===//
2179// Stack Protector
2180//===----------------------------------------------------------------------===//
2181
2182// For OpenBSD return its special guard variable. Otherwise return nullptr,
2183// so that SelectionDAG handle SSP.
2184Value *
2186 const LibcallLoweringInfo &Libcalls) const {
2187 RTLIB::LibcallImpl GuardLocalImpl =
2188 Libcalls.getLibcallImpl(RTLIB::STACK_CHECK_GUARD);
2189 if (GuardLocalImpl != RTLIB::impl___guard_local)
2190 return nullptr;
2191
2192 Module &M = *IRB.GetInsertBlock()->getParent()->getParent();
2193 const DataLayout &DL = M.getDataLayout();
2194 PointerType *PtrTy =
2195 PointerType::get(M.getContext(), DL.getDefaultGlobalsAddressSpace());
2196 GlobalVariable *G =
2197 M.getOrInsertGlobal(getLibcallImplName(GuardLocalImpl), PtrTy);
2198 G->setVisibility(GlobalValue::HiddenVisibility);
2199 return G;
2200}
2201
2202// Currently only support "standard" __stack_chk_guard.
2203// TODO: add LOAD_STACK_GUARD support.
2205 Module &M, const LibcallLoweringInfo &Libcalls) const {
2206 RTLIB::LibcallImpl StackGuardImpl =
2207 Libcalls.getLibcallImpl(RTLIB::STACK_CHECK_GUARD);
2208 if (StackGuardImpl == RTLIB::Unsupported)
2209 return;
2210
2211 StringRef StackGuardVarName = getLibcallImplName(StackGuardImpl);
2212 M.getOrInsertGlobal(
2213 StackGuardVarName, PointerType::getUnqual(M.getContext()), [=, &M]() {
2214 auto *GV = new GlobalVariable(M, PointerType::getUnqual(M.getContext()),
2215 false, GlobalVariable::ExternalLinkage,
2216 nullptr, StackGuardVarName);
2217
2218 // FreeBSD has "__stack_chk_guard" defined externally on libc.so
2219 if (M.getDirectAccessExternalData() &&
2220 !TM.getTargetTriple().isOSCygMing() &&
2221 !(TM.getTargetTriple().isPPC64() &&
2222 TM.getTargetTriple().isOSFreeBSD()) &&
2223 (!TM.getTargetTriple().isOSDarwin() ||
2224 TM.getRelocationModel() == Reloc::Static))
2225 GV->setDSOLocal(true);
2226
2227 return GV;
2228 });
2229}
2230
2231// Currently only support "standard" __stack_chk_guard.
2232// TODO: add LOAD_STACK_GUARD support.
2234 const Module &M, const LibcallLoweringInfo &Libcalls) const {
2235 RTLIB::LibcallImpl GuardVarImpl =
2236 Libcalls.getLibcallImpl(RTLIB::STACK_CHECK_GUARD);
2237 if (GuardVarImpl == RTLIB::Unsupported)
2238 return nullptr;
2239 return M.getNamedValue(getLibcallImplName(GuardVarImpl));
2240}
2241
2243 const Module &M, const LibcallLoweringInfo &Libcalls) const {
2244 // MSVC CRT has a function to validate security cookie.
2245 RTLIB::LibcallImpl SecurityCheckCookieLibcall =
2246 Libcalls.getLibcallImpl(RTLIB::SECURITY_CHECK_COOKIE);
2247 if (SecurityCheckCookieLibcall != RTLIB::Unsupported)
2248 return M.getFunction(getLibcallImplName(SecurityCheckCookieLibcall));
2249 return nullptr;
2250}
2251
2255
2259
2260unsigned TargetLoweringBase::getMinimumJumpTableDensity(bool OptForSize) const {
2261 return OptForSize ? OptsizeJumpTableDensity : JumpTableDensity;
2262}
2263
2267
2271
2275
2277 return MinimumBitTestCmps;
2278}
2279
2281 MinimumBitTestCmps = Val;
2282}
2283
2285 if (TM.Options.LoopAlignment)
2286 return Align(TM.Options.LoopAlignment);
2287 return PrefLoopAlignment;
2288}
2289
2291 MachineBasicBlock *MBB) const {
2292 return MaxBytesForAlignment;
2293}
2294
2295//===----------------------------------------------------------------------===//
2296// Reciprocal Estimates
2297//===----------------------------------------------------------------------===//
2298
2299/// Get the reciprocal estimate attribute string for a function that will
2300/// override the target defaults.
2302 const Function &F = MF.getFunction();
2303 return F.getFnAttribute("reciprocal-estimates").getValueAsString();
2304}
2305
2306/// Construct a string for the given reciprocal operation of the given type.
2307/// This string should match the corresponding option to the front-end's
2308/// "-mrecip" flag assuming those strings have been passed through in an
2309/// attribute string. For example, "vec-divf" for a division of a vXf32.
2310static std::string getReciprocalOpName(bool IsSqrt, EVT VT) {
2311 std::string Name = VT.isVector() ? "vec-" : "";
2312
2313 Name += IsSqrt ? "sqrt" : "div";
2314
2315 // TODO: Handle other float types?
2316 if (VT.getScalarType() == MVT::f64) {
2317 Name += "d";
2318 } else if (VT.getScalarType() == MVT::f16) {
2319 Name += "h";
2320 } else {
2321 assert(VT.getScalarType() == MVT::f32 &&
2322 "Unexpected FP type for reciprocal estimate");
2323 Name += "f";
2324 }
2325
2326 return Name;
2327}
2328
2329/// Return the character position and value (a single numeric character) of a
2330/// customized refinement operation in the input string if it exists. Return
2331/// false if there is no customized refinement step count.
2332static bool parseRefinementStep(StringRef In, size_t &Position,
2333 uint8_t &Value) {
2334 const char RefStepToken = ':';
2335 Position = In.find(RefStepToken);
2336 if (Position == StringRef::npos)
2337 return false;
2338
2339 StringRef RefStepString = In.substr(Position + 1);
2340 // Allow exactly one numeric character for the additional refinement
2341 // step parameter.
2342 if (RefStepString.size() == 1) {
2343 char RefStepChar = RefStepString[0];
2344 if (isDigit(RefStepChar)) {
2345 Value = RefStepChar - '0';
2346 return true;
2347 }
2348 }
2349 report_fatal_error("Invalid refinement step for -recip.");
2350}
2351
2352/// For the input attribute string, return one of the ReciprocalEstimate enum
2353/// status values (enabled, disabled, or not specified) for this operation on
2354/// the specified data type.
2355static int getOpEnabled(bool IsSqrt, EVT VT, StringRef Override) {
2356 if (Override.empty())
2358
2359 SmallVector<StringRef, 4> OverrideVector;
2360 Override.split(OverrideVector, ',');
2361 unsigned NumArgs = OverrideVector.size();
2362
2363 // Check if "all", "none", or "default" was specified.
2364 if (NumArgs == 1) {
2365 // Look for an optional setting of the number of refinement steps needed
2366 // for this type of reciprocal operation.
2367 size_t RefPos;
2368 uint8_t RefSteps;
2369 if (parseRefinementStep(Override, RefPos, RefSteps)) {
2370 // Split the string for further processing.
2371 Override = Override.substr(0, RefPos);
2372 }
2373
2374 // All reciprocal types are enabled.
2375 if (Override == "all")
2377
2378 // All reciprocal types are disabled.
2379 if (Override == "none")
2381
2382 // Target defaults for enablement are used.
2383 if (Override == "default")
2385 }
2386
2387 // The attribute string may omit the size suffix ('f'/'d').
2388 std::string VTName = getReciprocalOpName(IsSqrt, VT);
2389 std::string VTNameNoSize = VTName;
2390 VTNameNoSize.pop_back();
2391 static const char DisabledPrefix = '!';
2392
2393 for (StringRef RecipType : OverrideVector) {
2394 size_t RefPos;
2395 uint8_t RefSteps;
2396 if (parseRefinementStep(RecipType, RefPos, RefSteps))
2397 RecipType = RecipType.substr(0, RefPos);
2398
2399 // Ignore the disablement token for string matching.
2400 bool IsDisabled = RecipType[0] == DisabledPrefix;
2401 if (IsDisabled)
2402 RecipType = RecipType.substr(1);
2403
2404 if (RecipType == VTName || RecipType == VTNameNoSize)
2407 }
2408
2410}
2411
2412/// For the input attribute string, return the customized refinement step count
2413/// for this operation on the specified data type. If the step count does not
2414/// exist, return the ReciprocalEstimate enum value for unspecified.
2415static int getOpRefinementSteps(bool IsSqrt, EVT VT, StringRef Override) {
2416 if (Override.empty())
2418
2419 SmallVector<StringRef, 4> OverrideVector;
2420 Override.split(OverrideVector, ',');
2421 unsigned NumArgs = OverrideVector.size();
2422
2423 // Check if "all", "default", or "none" was specified.
2424 if (NumArgs == 1) {
2425 // Look for an optional setting of the number of refinement steps needed
2426 // for this type of reciprocal operation.
2427 size_t RefPos;
2428 uint8_t RefSteps;
2429 if (!parseRefinementStep(Override, RefPos, RefSteps))
2431
2432 // Split the string for further processing.
2433 Override = Override.substr(0, RefPos);
2434 assert(Override != "none" &&
2435 "Disabled reciprocals, but specifed refinement steps?");
2436
2437 // If this is a general override, return the specified number of steps.
2438 if (Override == "all" || Override == "default")
2439 return RefSteps;
2440 }
2441
2442 // The attribute string may omit the size suffix ('f'/'d').
2443 std::string VTName = getReciprocalOpName(IsSqrt, VT);
2444 std::string VTNameNoSize = VTName;
2445 VTNameNoSize.pop_back();
2446
2447 for (StringRef RecipType : OverrideVector) {
2448 size_t RefPos;
2449 uint8_t RefSteps;
2450 if (!parseRefinementStep(RecipType, RefPos, RefSteps))
2451 continue;
2452
2453 RecipType = RecipType.substr(0, RefPos);
2454 if (RecipType == VTName || RecipType == VTNameNoSize)
2455 return RefSteps;
2456 }
2457
2459}
2460
2465
2470
2475
2480
2482 EVT LoadVT, EVT BitcastVT, const SelectionDAG &DAG,
2483 const MachineMemOperand &MMO) const {
2484 // Single-element vectors are scalarized, so we should generally avoid having
2485 // any memory operations on such types, as they would get scalarized too.
2486 if (LoadVT.isFixedLengthVector() && BitcastVT.isFixedLengthVector() &&
2487 BitcastVT.getVectorNumElements() == 1)
2488 return false;
2489
2490 // Don't do if we could do an indexed load on the original type, but not on
2491 // the new one.
2492 if (!LoadVT.isSimple() || !BitcastVT.isSimple())
2493 return true;
2494
2495 MVT LoadMVT = LoadVT.getSimpleVT();
2496
2497 // Don't bother doing this if it's just going to be promoted again later, as
2498 // doing so might interfere with other combines.
2499 if (getOperationAction(ISD::LOAD, LoadMVT) == Promote &&
2500 getTypeToPromoteTo(ISD::LOAD, LoadMVT) == BitcastVT.getSimpleVT())
2501 return false;
2502
2503 unsigned Fast = 0;
2504 return allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), BitcastVT,
2505 MMO, &Fast) &&
2506 Fast;
2507}
2508
2512
2514 const LoadInst &LI, const DataLayout &DL, AssumptionCache *AC,
2515 const TargetLibraryInfo *LibInfo, CodeGenOptLevel OptLevel) const {
2517 if (LI.isVolatile())
2519
2520 if (LI.hasMetadata(LLVMContext::MD_nontemporal))
2522
2523 if (LI.hasMetadata(LLVMContext::MD_invariant_load))
2525
2526 // Dereferenceability analysis is expensive, skip at O0.
2527 if (OptLevel != CodeGenOptLevel::None &&
2529 LI.getPointerOperand(), LI.getType(), LI.getAlign(),
2530 SimplifyQuery(DL, LibInfo, /*DT=*/nullptr, AC, &LI)))
2532
2533 Flags |= getTargetMMOFlags(LI);
2534 return Flags;
2535}
2536
2539 const DataLayout &DL) const {
2541
2542 if (SI.isVolatile())
2544
2545 if (SI.hasMetadata(LLVMContext::MD_nontemporal))
2547
2548 // FIXME: Not preserving dereferenceable
2549 Flags |= getTargetMMOFlags(SI);
2550 return Flags;
2551}
2552
2555 const DataLayout &DL) const {
2557
2558 if (const AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(&AI)) {
2559 if (RMW->isVolatile())
2561 } else if (const AtomicCmpXchgInst *CmpX = dyn_cast<AtomicCmpXchgInst>(&AI)) {
2562 if (CmpX->isVolatile())
2564 } else
2565 llvm_unreachable("not an atomic instruction");
2566
2567 // FIXME: Not preserving dereferenceable
2568 Flags |= getTargetMMOFlags(AI);
2569 return Flags;
2570}
2571
2573 const VPIntrinsic &VPIntrin) const {
2575 Intrinsic::ID IntrinID = VPIntrin.getIntrinsicID();
2576
2577 switch (IntrinID) {
2578 default:
2579 llvm_unreachable("unexpected intrinsic. Existing code may be appropriate "
2580 "for it, but support must be explicitly enabled");
2581 case Intrinsic::vp_load:
2582 case Intrinsic::vp_gather:
2583 case Intrinsic::experimental_vp_strided_load:
2585 break;
2586 case Intrinsic::vp_store:
2587 case Intrinsic::vp_scatter:
2588 case Intrinsic::experimental_vp_strided_store:
2590 break;
2591 }
2592
2593 if (VPIntrin.hasMetadata(LLVMContext::MD_nontemporal))
2595
2596 Flags |= getTargetMMOFlags(VPIntrin);
2597 return Flags;
2598}
2599
2601 Instruction *Inst,
2602 AtomicOrdering Ord) const {
2603 if (isReleaseOrStronger(Ord) && Inst->hasAtomicStore())
2604 return Builder.CreateFence(Ord);
2605 else
2606 return nullptr;
2607}
2608
2610 Instruction *Inst,
2611 AtomicOrdering Ord) const {
2612 if (isAcquireOrStronger(Ord))
2613 return Builder.CreateFence(Ord);
2614 else
2615 return nullptr;
2616}
2617
2618//===----------------------------------------------------------------------===//
2619// GlobalISel Hooks
2620//===----------------------------------------------------------------------===//
2621
2623 const TargetTransformInfo *TTI) const {
2624 auto &MF = *MI.getMF();
2625 auto &MRI = MF.getRegInfo();
2626 // Assuming a spill and reload of a value has a cost of 1 instruction each,
2627 // this helper function computes the maximum number of uses we should consider
2628 // for remat. E.g. on arm64 global addresses take 2 insts to materialize. We
2629 // break even in terms of code size when the original MI has 2 users vs
2630 // choosing to potentially spill. Any more than 2 users we we have a net code
2631 // size increase. This doesn't take into account register pressure though.
2632 auto maxUses = [](unsigned RematCost) {
2633 // A cost of 1 means remats are basically free.
2634 if (RematCost == 1)
2635 return std::numeric_limits<unsigned>::max();
2636 if (RematCost == 2)
2637 return 2U;
2638
2639 // Remat is too expensive, only sink if there's one user.
2640 if (RematCost > 2)
2641 return 1U;
2642 llvm_unreachable("Unexpected remat cost");
2643 };
2644
2645 switch (MI.getOpcode()) {
2646 default:
2647 return false;
2648 // Constants-like instructions should be close to their users.
2649 // We don't want long live-ranges for them.
2650 case TargetOpcode::G_CONSTANT:
2651 case TargetOpcode::G_FCONSTANT:
2652 case TargetOpcode::G_FRAME_INDEX:
2653 case TargetOpcode::G_INTTOPTR:
2654 return true;
2655 case TargetOpcode::G_GLOBAL_VALUE: {
2656 unsigned RematCost = TTI->getGISelRematGlobalCost();
2657 Register Reg = MI.getOperand(0).getReg();
2658 unsigned MaxUses = maxUses(RematCost);
2659 if (MaxUses == UINT_MAX)
2660 return true; // Remats are "free" so always localize.
2661 return MRI.hasAtMostUserInstrs(Reg, MaxUses);
2662 }
2663 }
2664}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU Register Bank Select
Rewrite undef for PHI
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This file contains the simple types necessary to represent the attributes associated with functions a...
This file implements the BitVector class.
#define LLVM_ABI
Definition Compiler.h:215
static cl::opt< unsigned > MaxLoadsPerMemcmpOptSize("max-loads-per-memcmp-opt-size", cl::Hidden, cl::desc("Set maximum number of loads used in expanded memcmp for -Os/Oz"))
static cl::opt< unsigned > MaxLoadsPerMemcmp("max-loads-per-memcmp", cl::Hidden, cl::desc("Set maximum number of loads used in expanded memcmp"))
IRTranslator LLVM IR MI
Module.h This file contains the declarations for the Module class.
static LVOptions Options
Definition LVOptions.cpp:25
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
#define G(x, y, z)
Definition MD5.cpp:55
Register const TargetRegisterInfo * TRI
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
This file contains some templates that are useful if you are working with the STL at all.
This file defines the SmallVector class.
This file contains some functions that are useful when dealing with strings.
static cl::opt< unsigned > MinimumBitTestCmpsOverride("min-bit-test-cmps", cl::init(2), cl::Hidden, cl::desc("Set minimum of largest number of comparisons " "to use bit test for switch."))
static cl::opt< bool > JumpIsExpensiveOverride("jump-is-expensive", cl::init(false), cl::desc("Do not create extra branches to split comparison logic."), cl::Hidden)
#define OP_TO_LIBCALL(Name, Enum)
static cl::opt< unsigned > MinimumJumpTableEntries("min-jump-table-entries", cl::init(4), cl::Hidden, cl::desc("Set minimum number of entries to use a jump table."))
static cl::opt< bool > DisableStrictNodeMutation("disable-strictnode-mutation", cl::desc("Don't mutate strict-float node to a legalize node"), cl::init(false), cl::Hidden)
static bool parseRefinementStep(StringRef In, size_t &Position, uint8_t &Value)
Return the character position and value (a single numeric character) of a customized refinement opera...
static cl::opt< unsigned > MaximumJumpTableSize("max-jump-table-size", cl::init(UINT_MAX), cl::Hidden, cl::desc("Set maximum size of jump tables."))
static cl::opt< unsigned > JumpTableDensity("jump-table-density", cl::init(10), cl::Hidden, cl::desc("Minimum density for building a jump table in " "a normal function"))
Minimum jump table density for normal functions.
static cl::opt< unsigned > MaxStoresPerMemmoveOverride("max-store-memmove", cl::init(0), cl::Hidden, cl::desc("Override target's MaxStoresPerMemmove and " "MaxStoresPerMemmoveOptSize. " "Set to 0 to use the target default."))
static std::string getReciprocalOpName(bool IsSqrt, EVT VT)
Construct a string for the given reciprocal operation of the given type.
#define LCALL5(A)
static cl::opt< unsigned > MaxStoresPerMemsetOverride("max-store-memset", cl::init(0), cl::Hidden, cl::desc("Override target's MaxStoresPerMemset and " "MaxStoresPerMemsetOptSize. " "Set to 0 to use the target default."))
static int getOpRefinementSteps(bool IsSqrt, EVT VT, StringRef Override)
For the input attribute string, return the customized refinement step count for this operation on the...
static int getOpEnabled(bool IsSqrt, EVT VT, StringRef Override)
For the input attribute string, return one of the ReciprocalEstimate enum status values (enabled,...
static StringRef getRecipEstimateForFunc(MachineFunction &MF)
Get the reciprocal estimate attribute string for a function that will override the target defaults.
static cl::opt< unsigned > MaxStoresPerMemcpyOverride("max-store-memcpy", cl::init(0), cl::Hidden, cl::desc("Override target's MaxStoresPerMemcpy and " "MaxStoresPerMemcpyOptSize. " "Set to 0 to use the target default."))
static cl::opt< unsigned > OptsizeJumpTableDensity("optsize-jump-table-density", cl::init(40), cl::Hidden, cl::desc("Minimum density for building a jump table in " "an optsize function"))
Minimum jump table density for -Os or -Oz functions.
This file describes how to lower LLVM code to machine code.
This pass exposes codegen information to IR-level passes.
Class for arbitrary precision integers.
Definition APInt.h:78
A cache of @llvm.assume calls within a function.
An instruction that atomically checks whether a specified value is in a memory location,...
an instruction that atomically reads a memory location, combines it with another value,...
const Function * getParent() const
Return the enclosing method, or null if none.
Definition BasicBlock.h:213
void setBitsInMask(const uint32_t *Mask, unsigned MaskWords=~0u)
Add '1' bits from Mask to this vector.
Definition BitVector.h:742
iterator_range< const_set_bits_iterator > set_bits() const
Definition BitVector.h:159
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
This class represents a range of values.
LLVM_ABI unsigned getActiveBits() const
Compute the maximal number of active bits needed to represent every value in this range.
LLVM_ABI ConstantRange umul_sat(const ConstantRange &Other) const
Perform an unsigned saturating multiplication of two constant ranges.
LLVM_ABI ConstantRange subtract(const APInt &CI) const
Subtract the specified constant from the endpoints of this constant range.
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
LLVM_ABI unsigned getPointerSize(unsigned AS=0) const
The pointer representation size in bytes, rounded up to a whole number of bytes.
static constexpr ElementCount getScalable(ScalarTy MinVal)
Definition TypeSize.h:308
static constexpr ElementCount getFixed(ScalarTy MinVal)
Definition TypeSize.h:305
constexpr bool isScalar() const
Exactly one element.
Definition TypeSize.h:316
A handy container for a FunctionType+Callee-pointer pair, which can be passed around as a single enti...
const Function & getFunction() const
Definition Function.h:167
Module * getParent()
Get the module that this global value is contained inside of...
@ HiddenVisibility
The GV is hidden.
Definition GlobalValue.h:69
@ ExternalLinkage
Externally visible function.
Definition GlobalValue.h:53
Common base class shared among various IRBuilders.
Definition IRBuilder.h:114
BasicBlock * GetInsertBlock() const
Definition IRBuilder.h:175
CallInst * CreateCall(FunctionType *FTy, Value *Callee, ArrayRef< Value * > Args={}, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition IRBuilder.h:2569
LLVM_ABI bool hasAtomicStore() const LLVM_READONLY
Return true if this atomic instruction stores to memory.
bool hasMetadata() const
Return true if this instruction has any metadata attached to it.
Intrinsic::ID getIntrinsicID() const
Return the intrinsic ID of this intrinsic.
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
Tracks which library functions to use for a particular subtarget or function.
An instruction for reading from memory.
Value * getPointerOperand()
bool isVolatile() const
Return true if this is a load from a volatile memory location.
Align getAlign() const
Return the alignment of the access that is being performed.
Machine Value Type.
SimpleValueType SimpleTy
uint64_t getScalarSizeInBits() const
bool isVector() const
Return true if this is a vector value type.
bool isScalableVector() const
Return true if this is a vector value type where the runtime length is machine dependent.
static auto all_valuetypes()
SimpleValueType Iteration.
TypeSize getSizeInBits() const
Returns the size of the specified MVT in bits.
uint64_t getFixedSizeInBits() const
Return the size of the specified fixed width value type in bits.
ElementCount getVectorElementCount() const
bool isScalarInteger() const
Return true if this is an integer, not including vectors.
static MVT getVectorVT(MVT VT, unsigned NumElements)
MVT getVectorElementType() const
bool isValid() const
Return true if this is a valid simple valuetype.
static MVT getIntegerVT(unsigned BitWidth)
static auto fp_valuetypes()
MVT getPow2VectorType() const
Widens the length of the given vector MVT up to the nearest power of 2 and returns that type.
MachineInstrBundleIterator< MachineInstr > iterator
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
bool isStatepointSpillSlotObjectIndex(int ObjectIdx) const
Align getObjectAlign(int ObjectIdx) const
Return the alignment of the specified stack object.
int64_t getObjectSize(int ObjectIdx) const
Return the size of the specified object.
int64_t getObjectOffset(int ObjectIdx) const
Return the assigned stack offset of the specified object from the incoming stack pointer.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
const DataLayout & getDataLayout() const
Return the DataLayout attached to the Module associated to this MF.
Function & getFunction()
Return the LLVM function that this machine code represents.
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags F, LLT MemTy, Align BaseAlignment, const MMOMetadata &Metadata=MMOMetadata(), SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
const MachineInstrBuilder & cloneMemRefs(const MachineInstr &OtherMI) const
Representation of each machine instruction.
unsigned getNumOperands() const
Retuns the total number of operands.
bool mayLoad(QueryType Type=AnyInBundle) const
Return true if this instruction could possibly read memory.
LLVM_ABI void tieOperands(unsigned DefIdx, unsigned UseIdx)
Add a tie between the register operands at DefIdx and UseIdx.
LLVM_ABI void addMemOperand(MachineFunction &MF, MachineMemOperand *MO)
Add a MachineMemOperand to the machine instruction.
A description of a memory reference used in the backend.
unsigned getAddrSpace() const
Flags
Flags values. These may be or'd together.
@ MOVolatile
The memory access is volatile.
@ MODereferenceable
The memory access is dereferenceable (i.e., doesn't trap).
@ MOLoad
The memory access reads data.
@ MONonTemporal
The memory access is non-temporal.
@ MOInvariant
The memory access always returns the same value (or traps).
@ MOStore
The memory access writes data.
Flags getFlags() const
Return the raw flags of the source value,.
LLVM_ABI Align getAlign() const
Return the minimum known alignment in bytes of the actual memory reference.
MachineOperand class - Representation of each machine instruction operand.
bool isReg() const
isReg - Tests if this is a MO_Register operand.
bool isFI() const
isFI - Tests if this is a MO_FrameIndex operand.
LLVM_ABI void freezeReservedRegs()
freezeReservedRegs - Called by the register allocator to freeze the set of reserved registers before ...
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:68
Class to represent pointers.
static PointerType * getUnqual(LLVMContext &C)
This constructs an opaque pointer to an object in the default address space (address space zero).
static LLVM_ABI PointerType * get(LLVMContext &C, unsigned AddressSpace)
This constructs an opaque pointer to an object in a numbered address space.
Definition Type.cpp:887
Analysis providing profile information.
Wrapper class representing virtual and physical registers.
Definition Register.h:20
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
const DataLayout & getDataLayout() const
LLVMContext * getContext() const
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
Definition StringRef.h:736
static constexpr size_t npos
Definition StringRef.h:58
constexpr StringRef substr(size_t Start, size_t N=npos) const
Return a reference to the substring from [Start, Start + N).
Definition StringRef.h:597
constexpr bool empty() const
Check if the string is empty.
Definition StringRef.h:141
constexpr size_t size() const
Get the string size.
Definition StringRef.h:144
bool isValid() const
Returns true if this iterator is still pointing at a valid entry.
Multiway switch.
Provides information about what library functions are available for the current target.
virtual Align getByValTypeAlignment(Type *Ty, const DataLayout &DL) const
Returns the desired alignment for ByVal or InAlloca aggregate function arguments in the caller parame...
int InstructionOpcodeToISD(unsigned Opcode) const
Get the ISD node that corresponds to the Instruction class opcode.
unsigned getBitWidthForCttzElements(EVT RetVT, ElementCount EC, bool ZeroIsPoison, const ConstantRange *VScaleRange) const
Return the minimum number of bits required to hold the maximum possible number of trailing zero vecto...
void setOperationAction(unsigned Op, MVT VT, LegalizeAction Action)
Indicate that the specified operation does not work with the specified type and indicate what to do a...
virtual void finalizeLowering(MachineFunction &MF) const
Execute target specific actions to finalize target lowering.
void initActions()
Initialize all of the actions to default values.
Function * getSSPStackGuardCheck(const Module &M, const LibcallLoweringInfo &Libcalls) const
If the target has a standard stack protection check function that performs validation and error handl...
EVT getValueType(const DataLayout &DL, Type *Ty, bool AllowUnknown=false) const
Return the EVT corresponding to this LLVM type.
void setMinimumBitTestCmps(unsigned Val)
Set the minimum of largest of number of comparisons to generate BitTest.
unsigned MaxStoresPerMemcpyOptSize
Likewise for functions with the OptSize attribute.
MachineBasicBlock * emitPatchPoint(MachineInstr &MI, MachineBasicBlock *MBB) const
Replace/modify any TargetFrameIndex operands with a targte-dependent sequence of memory operands that...
int getRecipEstimateSqrtEnabled(EVT VT, MachineFunction &MF) const
Return a ReciprocalEstimate enum value for a square root of the given type based on the function's at...
virtual bool canOpTrap(unsigned Op, EVT VT) const
Returns true if the operation can trap for the value type.
virtual Value * getIRStackGuard(IRBuilderBase &IRB, const LibcallLoweringInfo &Libcalls) const
If the target has a standard location for the stack protector guard, returns the address of that loca...
virtual bool shouldLocalize(const MachineInstr &MI, const TargetTransformInfo *TTI) const
Check whether or not MI needs to be moved close to its uses.
virtual unsigned getMaxPermittedBytesForAlignment(MachineBasicBlock *MBB) const
Return the maximum amount of bytes allowed to be emitted when padding for alignment.
void setMaximumJumpTableSize(unsigned)
Indicate the maximum number of entries in jump tables.
virtual unsigned getMinimumJumpTableEntries() const
Return lower limit for number of blocks in a jump table.
const TargetMachine & getTargetMachine() const
virtual unsigned getNumRegistersForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT) const
Certain targets require unusual breakdowns of certain types.
virtual MachineMemOperand::Flags getTargetMMOFlags(const Instruction &I) const
This callback is used to inspect load/store instructions and add target-specific MachineMemOperand fl...
virtual MVT getRegisterTypeForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT) const
Certain combinations of ABIs, Targets and features require that types are legal for some operations a...
LegalizeTypeAction
This enum indicates whether a types are legal for a target, and if not, what action should be used to...
virtual void insertSSPDeclarations(Module &M, const LibcallLoweringInfo &Libcalls) const
Inserts necessary declarations for SSP (stack protection) purpose.
virtual bool isSuitableForJumpTable(const SwitchInst *SI, uint64_t NumCases, uint64_t Range, ProfileSummaryInfo *PSI, BlockFrequencyInfo *BFI) const
Return true if lowering to a jump table is suitable for a set of case clusters which may contain NumC...
void setIndexedMaskedLoadAction(unsigned IdxMode, MVT VT, LegalizeAction Action)
Indicate that the specified indexed masked load does or does not work with the specified type and ind...
unsigned getMaxStoresPerMemcpy(bool OptSize) const
Get maximum # of store operations permitted for llvm.memcpy.
MVT getRegisterType(LLVMContext &Context, EVT VT) const
Return the type of registers that this ValueType will eventually require.
unsigned getMinimumBitTestCmps() const
Retuen the minimum of largest number of comparisons in BitTest.
virtual bool useFPRegsForHalfType() const
virtual bool isLoadBitCastBeneficial(EVT LoadVT, EVT BitcastVT, const SelectionDAG &DAG, const MachineMemOperand &MMO) const
Return true if the following transform is beneficial: fold (conv (load x)) -> (load (conv*)x) On arch...
void setIndexedLoadAction(ArrayRef< unsigned > IdxModes, MVT VT, LegalizeAction Action)
Indicate that the specified indexed load does or does not work with the specified type and indicate w...
unsigned getMaximumJumpTableSize() const
Return upper limit for number of entries in a jump table.
MachineMemOperand::Flags getLoadMemOperandFlags(const LoadInst &LI, const DataLayout &DL, AssumptionCache *AC=nullptr, const TargetLibraryInfo *LibInfo=nullptr, CodeGenOptLevel OptLevel=CodeGenOptLevel::Default) const
bool isLegalRC(const TargetRegisterInfo &TRI, const TargetRegisterClass &RC) const
Return true if the value types that can be represented by the specified register class are all legal.
virtual TargetLoweringBase::LegalizeTypeAction getPreferredVectorAction(MVT VT) const
Return the preferred vector type legalization action.
void setAtomicLoadExtAction(unsigned ExtType, MVT ValVT, MVT MemVT, LegalizeAction Action)
Let target indicate that an extending atomic load of the specified type is legal.
Value * getDefaultSafeStackPointerLocation(IRBuilderBase &IRB, bool UseTLS) const
unsigned getMaxStoresPerMemset(bool OptSize) const
Get maximum # of store operations permitted for llvm.memset.
MachineMemOperand::Flags getAtomicMemOperandFlags(const Instruction &AI, const DataLayout &DL) const
virtual bool allowsMisalignedMemoryAccesses(EVT, unsigned AddrSpace=0, Align Alignment=Align(1), MachineMemOperand::Flags Flags=MachineMemOperand::MONone, unsigned *=nullptr) const
Determine if the target supports unaligned memory accesses.
unsigned MaxStoresPerMemsetOptSize
Likewise for functions with the OptSize attribute.
EVT getShiftAmountTy(EVT LHSTy, const DataLayout &DL) const
Returns the type for the shift amount of a shift opcode.
unsigned MaxStoresPerMemmove
Specify maximum number of store instructions per memmove call.
virtual Align getPrefLoopAlignment(MachineLoop *ML=nullptr) const
Return the preferred loop alignment.
void computeRegisterProperties(const TargetRegisterInfo *TRI)
Once all of the register classes are added, this allows us to compute derived properties we expose.
MachineMemOperand::Flags getVPIntrinsicMemOperandFlags(const VPIntrinsic &VPIntrin) const
int getDivRefinementSteps(EVT VT, MachineFunction &MF) const
Return the refinement step count for a division of the given type based on the function's attributes.
virtual EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context, EVT VT) const
Return the ValueType of the result of SETCC operations.
virtual EVT getTypeToTransformTo(LLVMContext &Context, EVT VT) const
For types supported by the target, this is an identity function.
unsigned MaxStoresPerMemmoveOptSize
Likewise for functions with the OptSize attribute.
virtual MVT getPreferredSwitchConditionType(LLVMContext &Context, EVT ConditionVT) const
Returns preferred type for switch condition.
bool isTypeLegal(EVT VT) const
Return true if the target has native support for the specified value type.
int getRecipEstimateDivEnabled(EVT VT, MachineFunction &MF) const
Return a ReciprocalEstimate enum value for a division of the given type based on the function's attri...
void setIndexedStoreAction(ArrayRef< unsigned > IdxModes, MVT VT, LegalizeAction Action)
Indicate that the specified indexed store does or does not work with the specified type and indicate ...
virtual bool isJumpTableRelative() const
virtual MVT getScalarShiftAmountTy(const DataLayout &, EVT) const
Return the type to use for a scalar shift opcode, given the shifted amount type.
virtual MVT getPointerTy(const DataLayout &DL, uint32_t AS=0) const
Return the pointer type for the given address space, defaults to the pointer type from the data layou...
virtual bool isFreeAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const
Returns true if a cast from SrcAS to DestAS is "cheap", such that e.g.
void setIndexedMaskedStoreAction(unsigned IdxMode, MVT VT, LegalizeAction Action)
Indicate that the specified indexed masked store does or does not work with the specified type and in...
TargetLoweringBase(const TargetMachine &TM, const TargetSubtargetInfo &STI)
NOTE: The TargetMachine owns TLOF.
unsigned MaxStoresPerMemset
Specify maximum number of store instructions per memset call.
void setMinimumJumpTableEntries(unsigned Val)
Indicate the minimum number of blocks to generate jump tables.
void setTruncStoreAction(MVT ValVT, MVT MemVT, LegalizeAction Action)
Indicate that the specified truncating store does not work with the specified type and indicate what ...
virtual bool allowsMemoryAccess(LLVMContext &Context, const DataLayout &DL, EVT VT, unsigned AddrSpace=0, Align Alignment=Align(1), MachineMemOperand::Flags Flags=MachineMemOperand::MONone, unsigned *Fast=nullptr) const
Return true if the target supports a memory access of this type for the given address space and align...
MachineMemOperand::Flags getStoreMemOperandFlags(const StoreInst &SI, const DataLayout &DL) const
void AddPromotedToType(unsigned Opc, MVT OrigVT, MVT DestVT)
If Opc/OrigVT is specified as being promoted, the promotion code defaults to trying a larger integer/...
unsigned getMinimumJumpTableDensity(bool OptForSize) const
Return lower limit of the density in a jump table.
virtual Value * getSDagStackGuard(const Module &M, const LibcallLoweringInfo &Libcalls) const
Return the variable that's previously inserted by insertSSPDeclarations, if any, otherwise return nul...
virtual std::pair< const TargetRegisterClass *, uint8_t > findRepresentativeClass(const TargetRegisterInfo *TRI, MVT VT) const
Return the largest legal super-reg register class of the register class for the specified type and it...
virtual bool preferVectorizedNonPowerOfTwoTypeBreakdown() const
Return true if fixed-length, non-power-of-two vectors should be broken down into legal vector parts i...
static StringRef getLibcallImplName(RTLIB::LibcallImpl Call)
Get the libcall routine name for the specified libcall implementation.
virtual Value * getSafeStackPointerLocation(IRBuilderBase &IRB, const LibcallLoweringInfo &Libcalls) const
Returns the target-specific address of the unsafe stack pointer.
LegalizeKind getTypeConversion(LLVMContext &Context, EVT VT) const
Return pair that represents the legalization kind (first) that needs to happen to EVT (second) in ord...
void setLoadExtAction(unsigned ExtType, MVT ValVT, MVT MemVT, LegalizeAction Action)
Indicate that the specified load with extension does not work with the specified type and indicate wh...
int IntrinsicIDToISD(Intrinsic::ID ID) const
Get the ISD node that corresponds to the Intrinsic ID.
LegalizeTypeAction getTypeAction(LLVMContext &Context, EVT VT) const
Return how we should legalize values of this type, either it is already legal (return 'Legal') or we ...
int getSqrtRefinementSteps(EVT VT, MachineFunction &MF) const
Return the refinement step count for a square root of the given type based on the function's attribut...
bool allowsMemoryAccessForAlignment(LLVMContext &Context, const DataLayout &DL, EVT VT, unsigned AddrSpace=0, Align Alignment=Align(1), MachineMemOperand::Flags Flags=MachineMemOperand::MONone, unsigned *Fast=nullptr) const
This function returns true if the memory access is aligned or if the target allows this specific unal...
virtual Instruction * emitTrailingFence(IRBuilderBase &Builder, Instruction *Inst, AtomicOrdering Ord) const
virtual Instruction * emitLeadingFence(IRBuilderBase &Builder, Instruction *Inst, AtomicOrdering Ord) const
Inserts in the IR a target-specific intrinsic specifying a fence.
unsigned MaxStoresPerMemcpy
Specify maximum number of store instructions per memcpy call.
unsigned getMaxStoresPerMemmove(bool OptSize) const
Get maximum # of store operations permitted for llvm.memmove.
void setJumpIsExpensive(bool isExpensive=true)
Tells the code generator not to expand logic operations on comparison predicates into separate sequen...
LegalizeAction getOperationAction(unsigned Op, EVT VT) const
Return how this operation should be treated: either it is legal, needs to be promoted to a larger siz...
MVT getTypeToPromoteTo(unsigned Op, MVT VT) const
If the action for this operation is to promote, this method returns the ValueType to promote to.
virtual bool isLegalAddressingMode(const DataLayout &DL, const AddrMode &AM, Type *Ty, unsigned AddrSpace, Instruction *I=nullptr) const
Return true if the addressing mode represented by AM is legal for this target, for a load/store of th...
std::pair< LegalizeTypeAction, EVT > LegalizeKind
LegalizeKind holds the legalization kind that needs to happen to EVT in order to type-legalize it.
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
virtual EVT getTypeForExtReturn(LLVMContext &Context, EVT VT, ISD::NodeType) const
Return the type that should be used to zero or sign extend a zeroext/signext integer return value.
Primary interface to the complete machine description for the target machine.
bool isPositionIndependent() const
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
TargetSubtargetInfo - Generic base class for all target subtargets.
virtual void initLibcallLoweringInfo(LibcallLoweringInfo &Info) const
Configure the LibcallLoweringInfo for this subtarget.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
This is the common base class for vector predication intrinsics.
LLVM Value Representation.
Definition Value.h:75
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:257
constexpr LeafTy coefficientNextPowerOf2() const
Definition TypeSize.h:256
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
Definition TypeSize.h:168
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
Definition TypeSize.h:165
constexpr LeafTy divideCoefficientBy(ScalarTy RHS) const
We do not provide the '/' operator here because division for polynomial types does not work in the sa...
Definition TypeSize.h:252
CallInst * Call
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
NodeType
ISD::NodeType enum - This enum defines the target-independent operators for a SelectionDAG.
Definition ISDOpcodes.h:41
@ SETCC
SetCC operator - This evaluates to a true value iff the condition is true.
Definition ISDOpcodes.h:830
@ MERGE_VALUES
MERGE_VALUES - This node takes multiple discrete operands and returns them all as its individual resu...
Definition ISDOpcodes.h:261
@ DELETED_NODE
DELETED_NODE - This is an illegal value that is used to catch errors.
Definition ISDOpcodes.h:45
@ SET_FPENV
Sets the current floating-point environment.
@ LOOP_DEPENDENCE_RAW_MASK
@ VECREDUCE_SEQ_FADD
Generic reduction nodes.
@ VECREDUCE_FMINIMUMNUM
@ FGETSIGN
INT = FGETSIGN(FP) - Return the sign bit of the specified floating point value as an integer 0/1 valu...
Definition ISDOpcodes.h:541
@ STACKADDRESS
STACKADDRESS - Represents the llvm.stackaddress intrinsic.
Definition ISDOpcodes.h:127
@ SMULFIX
RESULT = [US]MULFIX(LHS, RHS, SCALE) - Perform fixed point multiplication on 2 integers with the same...
Definition ISDOpcodes.h:395
@ ADDC
Carry-setting nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:294
@ RESET_FPENV
Set floating-point environment to default state.
@ FMAD
FMAD - Perform a * b + c, while getting the same result as the separately rounded operations.
Definition ISDOpcodes.h:525
@ ADD
Simple integer binary arithmetic operators.
Definition ISDOpcodes.h:264
@ LOAD
LOAD and STORE have token chains as their first operand, then the same operands as an LLVM load/store...
@ SMULFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
Definition ISDOpcodes.h:401
@ SET_FPMODE
Sets the current dynamic floating-point control modes.
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
Definition ISDOpcodes.h:864
@ CTTZ_ELTS
Returns the number of number of trailing (least significant) zero elements in a vector.
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
Definition ISDOpcodes.h:521
@ VECTOR_FIND_LAST_ACTIVE
Finds the index of the last active mask element Operands: Mask.
@ FMODF
FMODF - Decomposes the operand into integral and fractional parts, each having the same type and sign...
@ PSEUDO_FMIN
PSEUDO_FMIN is strictly equivalent to op0 olt op1 ?
@ FATAN2
FATAN2 - atan2, inspired by libm.
@ FSINCOSPI
FSINCOSPI - Compute both the sine and cosine times pi more accurately than FSINCOS(pi*x),...
@ ATOMIC_CMP_SWAP_WITH_SUCCESS
Val, Success, OUTCHAIN = ATOMIC_CMP_SWAP_WITH_SUCCESS(INCHAIN, ptr, cmp, swap) N.b.
@ SINT_TO_FP
[SU]INT_TO_FP - These operators convert integers (whose interpreted sign depends on the first letter)...
Definition ISDOpcodes.h:891
@ CONCAT_VECTORS
CONCAT_VECTORS(VECTOR0, VECTOR1, ...) - Given a number of values of vector type with the same length ...
Definition ISDOpcodes.h:587
@ VECREDUCE_FMAX
FMIN/FMAX nodes can have flags, for NaN/NoNaN variants.
@ FADD
Simple binary floating point operators.
Definition ISDOpcodes.h:418
@ VECREDUCE_FMAXIMUM
FMINIMUM/FMAXIMUM nodes propatate NaNs and signed zeroes using the llvm.minimum and llvm....
@ ABS
ABS - Determine the unsigned absolute value of a signed integer value of the same bitwidth.
Definition ISDOpcodes.h:750
@ RESET_FPMODE
Sets default dynamic floating-point control modes.
@ SIGN_EXTEND_VECTOR_INREG
SIGN_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register sign-extension of the low ...
Definition ISDOpcodes.h:921
@ FMULADD
FMULADD - Performs a * b + c, with, or without, intermediate rounding.
Definition ISDOpcodes.h:531
@ BITCAST
BITCAST - This operator converts between integer, vector and FP values, as if the value was stored to...
@ STRICT_PSEUDO_FMAX
Definition ISDOpcodes.h:463
@ CLMUL
Carry-less multiplication operations.
Definition ISDOpcodes.h:781
@ FLDEXP
FLDEXP - ldexp, inspired by libm (op0 * 2**op1).
@ SDIVFIX
RESULT = [US]DIVFIX(LHS, RHS, SCALE) - Perform fixed point division on 2 integers with the same width...
Definition ISDOpcodes.h:408
@ BUILTIN_OP_END
BUILTIN_OP_END - This must be the last enum value in this list.
@ CONVERT_FROM_ARBITRARY_FP
CONVERT_FROM_ARBITRARY_FP - This operator converts from an arbitrary floating-point represented as an...
@ CTLZ_ZERO_POISON
Definition ISDOpcodes.h:799
@ SIGN_EXTEND
Conversion operators.
Definition ISDOpcodes.h:855
@ AVGCEILS
AVGCEILS/AVGCEILU - Rounding averaging add - Add two integers using an integer of type i[N+2],...
Definition ISDOpcodes.h:718
@ READSTEADYCOUNTER
READSTEADYCOUNTER - This corresponds to the readfixedcounter intrinsic.
@ VECREDUCE_FADD
These reductions have relaxed evaluation order semantics, and have a single vector operand.
@ PREFETCH
PREFETCH - This corresponds to a prefetch intrinsic.
@ STRICT_PSEUDO_FMIN
Definition ISDOpcodes.h:462
@ TRUNCATE_SSAT_U
Definition ISDOpcodes.h:884
@ VECREDUCE_FMAXIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM nodes do not propagate NaNs and order signed zeroes using the llvm....
@ FSINCOS
FSINCOS - Compute both fsin and fcos as a single operation.
@ SETCCCARRY
Like SetCC, ops #0 and #1 are the LHS and RHS operands to compare, but op #2 is a boolean indicating ...
Definition ISDOpcodes.h:838
@ FNEG
Perform various unary floating-point operations inspired by libm.
@ SSUBO
Same for subtraction.
Definition ISDOpcodes.h:353
@ FCANONICALIZE
Returns platform specific canonical encoding of a floating point number.
Definition ISDOpcodes.h:544
@ IS_FPCLASS
Performs a check of floating point class property, defined by IEEE-754.
Definition ISDOpcodes.h:551
@ SSUBSAT
RESULT = [US]SUBSAT(LHS, RHS) - Perform saturation subtraction on 2 integers with the same bit width ...
Definition ISDOpcodes.h:375
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
Definition ISDOpcodes.h:807
@ SPLAT_VECTOR
SPLAT_VECTOR(VAL) - Returns a vector with the scalar value VAL duplicated in all lanes.
Definition ISDOpcodes.h:675
@ GET_ACTIVE_LANE_MASK
GET_ACTIVE_LANE_MASK - this corrosponds to the llvm.get.active.lane.mask intrinsic.
@ SADDO
RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
Definition ISDOpcodes.h:349
@ CTLS
Count leading redundant sign bits.
Definition ISDOpcodes.h:803
@ VECREDUCE_ADD
Integer reductions may have a result type larger than the vector element type.
@ GET_FPMODE
Reads the current dynamic floating-point control modes.
@ GET_FPENV
Gets the current floating-point environment.
@ SHL
Shift and rotation operations.
Definition ISDOpcodes.h:772
@ VECTOR_SHUFFLE
VECTOR_SHUFFLE(VEC1, VEC2) - Returns a vector, of the same type as VEC1/VEC2.
Definition ISDOpcodes.h:652
@ FMINNUM_IEEE
FMINNUM_IEEE/FMAXNUM_IEEE - Perform floating-point minimumNumber or maximumNumber on two values,...
@ EXTRACT_VECTOR_ELT
EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR identified by the (potentially...
Definition ISDOpcodes.h:579
@ ZERO_EXTEND
ZERO_EXTEND - Used for integer types, zeroing the new bits.
Definition ISDOpcodes.h:861
@ DEBUGTRAP
DEBUGTRAP - Trap intended to get the attention of a debugger.
@ ATOMIC_CMP_SWAP
Val, OUTCHAIN = ATOMIC_CMP_SWAP(INCHAIN, ptr, cmp, swap) For double-word atomic operations: ValLo,...
@ FMINNUM
FMINNUM/FMAXNUM - Perform floating-point minimum maximum on two values, following IEEE-754 definition...
@ UBSANTRAP
UBSANTRAP - Trap with an immediate describing the kind of sanitizer failure.
@ SSHLSAT
RESULT = [US]SHLSAT(LHS, RHS) - Perform saturation left shift.
Definition ISDOpcodes.h:387
@ SMULO
Same for multiplication.
Definition ISDOpcodes.h:357
@ VECTOR_SPLICE_LEFT
VECTOR_SPLICE_LEFT(VEC1, VEC2, OFFSET) - Shifts CONCAT_VECTORS(VEC1, VEC2) left by OFFSET elements an...
Definition ISDOpcodes.h:656
@ ANY_EXTEND_VECTOR_INREG
ANY_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register any-extension of the low la...
Definition ISDOpcodes.h:910
@ SIGN_EXTEND_INREG
SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to sign extend a small value in ...
Definition ISDOpcodes.h:899
@ SMIN
[US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned integers.
Definition ISDOpcodes.h:730
@ MASKED_UDIV
Masked vector arithmetic that returns poison on disabled lanes.
@ SDIVFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
Definition ISDOpcodes.h:414
@ FP_EXTEND
X = FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
Definition ISDOpcodes.h:989
@ UADDO_CARRY
Carry-using nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:329
@ PEXT
Parallel bit extract (compress) and parallel bit deposit (expand).
Definition ISDOpcodes.h:786
@ FMINIMUM
FMINIMUM/FMAXIMUM - NaN-propagating minimum/maximum that also treat -0.0 as less than 0....
@ FP_TO_SINT
FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
Definition ISDOpcodes.h:937
@ READCYCLECOUNTER
READCYCLECOUNTER - This corresponds to the readcyclecounter intrinsic.
@ AND
Bitwise operators - logical and, logical or, logical xor.
Definition ISDOpcodes.h:742
@ TRAP
TRAP - Trapping instruction.
@ GET_FPENV_MEM
Gets the current floating-point environment.
@ SCMP
[US]CMP - 3-way comparison of signed or unsigned integers.
Definition ISDOpcodes.h:738
@ AVGFLOORS
AVGFLOORS/AVGFLOORU - Averaging add - Add two integers using an integer of type i[N+1],...
Definition ISDOpcodes.h:713
@ VECTOR_MATCH
VECTOR_MATCH - this corresponds to the llvm.experimental.vector.match intrinsic.
@ VECTOR_SPLICE_RIGHT
VECTOR_SPLICE_RIGHT(VEC1, VEC2, OFFSET) - Shifts CONCAT_VECTORS(VEC1,VEC2) right by OFFSET elements a...
Definition ISDOpcodes.h:660
@ ADDE
Carry-using nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:304
@ FREEZE
FREEZE - FREEZE(VAL) returns an arbitrary value if VAL is UNDEF (or is evaluated to UNDEF),...
Definition ISDOpcodes.h:241
@ INSERT_VECTOR_ELT
INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element at IDX replaced with VAL.
Definition ISDOpcodes.h:568
@ ATOMIC_SWAP
Val, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amt) Val, OUTCHAIN = ATOMIC_LOAD_[OpName](INCHAIN,...
@ CTTZ_ZERO_POISON
Bit counting operators with a poisoned result for zero inputs.
Definition ISDOpcodes.h:798
@ FFREXP
FFREXP - frexp, extract fractional and exponent component of a floating-point value.
@ FP_ROUND
X = FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision of the ...
Definition ISDOpcodes.h:970
@ VECTOR_COMPRESS
VECTOR_COMPRESS(Vec, Mask, Passthru) consecutively place vector elements based on mask e....
Definition ISDOpcodes.h:702
@ CLEAR_CACHE
llvm.clear_cache intrinsic Operands: Input Chain, Start Addres, End Address Outputs: Output Chain
@ ZERO_EXTEND_VECTOR_INREG
ZERO_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register zero-extension of the low ...
Definition ISDOpcodes.h:932
@ ADDRSPACECAST
ADDRSPACECAST - This operator converts between pointers of different address spaces.
@ FP_TO_SINT_SAT
FP_TO_[US]INT_SAT - Convert floating point value in operand 0 to a signed or unsigned scalar integer ...
Definition ISDOpcodes.h:956
@ VECREDUCE_FMINIMUM
@ TRUNCATE
TRUNCATE - Completely drop the high bits.
Definition ISDOpcodes.h:867
@ VECREDUCE_SEQ_FMUL
@ CONVERT_TO_ARBITRARY_FP
CONVERT_TO_ARBITRARY_FP - Converts a native FP value to an arbitrary floating-point format,...
@ FCOPYSIGN
FCOPYSIGN(X, Y) - Return the value of X with the sign of Y.
Definition ISDOpcodes.h:537
@ SADDSAT
RESULT = [US]ADDSAT(LHS, RHS) - Perform saturation addition on 2 integers with the same bit width (W)...
Definition ISDOpcodes.h:366
@ GET_DYNAMIC_AREA_OFFSET
GET_DYNAMIC_AREA_OFFSET - get offset from native SP to the address of the most recent dynamic alloca.
@ CTTZ_ELTS_ZERO_POISON
@ SET_FPENV_MEM
Sets the current floating point environment.
@ FMINIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM - minimumnum/maximumnum that is same with FMINNUM_IEEE and FMAXNUM_IEEE besid...
@ TRUNCATE_SSAT_S
TRUNCATE_[SU]SAT_[SU] - Truncate for saturated operand [SU] located in middle, prefix for SAT means i...
Definition ISDOpcodes.h:882
@ ABDS
ABDS/ABDU - Absolute difference - Return the absolute difference between two numbers interpreted as s...
Definition ISDOpcodes.h:725
@ TRUNCATE_USAT_U
Definition ISDOpcodes.h:886
@ SADDO_CARRY
Carry-using overflow-aware nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:339
@ ABS_MIN_POISON
ABS with a poison result for INT_MIN.
Definition ISDOpcodes.h:754
@ LOOP_DEPENDENCE_WAR_MASK
The llvm.loop.dependence.
static const int LAST_INDEXED_MODE
LLVM_ABI Libcall getSINTTOFP(EVT OpVT, EVT RetVT)
getSINTTOFP - Return the SINTTOFP_*_* value for the given types, or UNKNOWN_LIBCALL if there is none.
LLVM_ABI Libcall getUREM(EVT VT)
LLVM_ABI Libcall getSHL(EVT VT)
LLVM_ABI Libcall getSYNC(unsigned Opc, MVT VT)
Return the SYNC_FETCH_AND_* value for the given opcode and type, or UNKNOWN_LIBCALL if there is none.
LLVM_ABI Libcall getUINTTOFP(EVT OpVT, EVT RetVT)
getUINTTOFP - Return the UINTTOFP_*_* value for the given types, or UNKNOWN_LIBCALL if there is none.
LLVM_ABI Libcall getSDIV(EVT VT)
LLVM_ABI Libcall getSRL(EVT VT)
LLVM_ABI Libcall getMEMCPY_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize)
getMEMCPY_ELEMENT_UNORDERED_ATOMIC - Return MEMCPY_ELEMENT_UNORDERED_ATOMIC_* value for the given ele...
LLVM_ABI Libcall getSRA(EVT VT)
LLVM_ABI Libcall getUDIV(EVT VT)
LLVM_ABI Libcall getFPLibCall(EVT VT, Libcall Call_F32, Libcall Call_F64, Libcall Call_F80, Libcall Call_F128, Libcall Call_PPCF128)
GetFPLibCall - Helper to return the right libcall for the given floating point type,...
LLVM_ABI Libcall getFPTOUINT(EVT OpVT, EVT RetVT)
getFPTOUINT - Return the FPTOUINT_*_* value for the given types, or UNKNOWN_LIBCALL if there is none.
LLVM_ABI Libcall getFPTOSINT(EVT OpVT, EVT RetVT)
getFPTOSINT - Return the FPTOSINT_*_* value for the given types, or UNKNOWN_LIBCALL if there is none.
LLVM_ABI Libcall getOUTLINE_ATOMIC(unsigned Opc, AtomicOrdering Order, MVT VT)
Return the outline atomics value for the given opcode, atomic ordering and type, or UNKNOWN_LIBCALL i...
LLVM_ABI Libcall getFPEXT(EVT OpVT, EVT RetVT)
getFPEXT - Return the FPEXT_*_* value for the given types, or UNKNOWN_LIBCALL if there is none.
LLVM_ABI Libcall getFPROUND(EVT OpVT, EVT RetVT)
getFPROUND - Return the FPROUND_*_* value for the given types, or UNKNOWN_LIBCALL if there is none.
LLVM_ABI Libcall getSREM(EVT VT)
LLVM_ABI Libcall getMEMSET_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize)
getMEMSET_ELEMENT_UNORDERED_ATOMIC - Return MEMSET_ELEMENT_UNORDERED_ATOMIC_* value for the given ele...
LLVM_ABI Libcall getOutlineAtomicHelper(const Libcall(&LC)[5][4], AtomicOrdering Order, uint64_t MemSize)
Return the outline atomics value for the given atomic ordering, access size and set of libcalls for a...
LLVM_ABI Libcall getMUL(EVT VT)
LLVM_ABI Libcall getCTPOP(EVT VT)
LLVM_ABI Libcall getMULO(EVT VT)
LLVM_ABI Libcall getMEMMOVE_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize)
getMEMMOVE_ELEMENT_UNORDERED_ATOMIC - Return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_* value for the given e...
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
unsigned Log2_32_Ceil(uint32_t Value)
Return the ceil log base 2 of the specified value, 32 if the value is zero.
Definition MathExtras.h:339
void fill(R &&Range, T &&Value)
Provide wrappers to std::fill which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1775
LLVM_ABI void GetReturnInfo(CallingConv::ID CC, Type *ReturnType, AttributeList attr, SmallVectorImpl< ISD::OutputArg > &Outs, const TargetLowering &TLI, const DataLayout &DL)
Given an LLVM IR type and return type attributes, compute the return value EVTs and flags,...
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
InstructionCost Cost
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
@ Load
The value being inserted comes from a load (InsertElement only).
@ Store
The extracted value is stored (ExtractElement only).
LLVM_ABI bool shouldOptimizeForSize(const MachineFunction *MF, ProfileSummaryInfo *PSI, const MachineBlockFrequencyInfo *BFI, PGSOQueryType QueryType=PGSOQueryType::Other)
Returns true if machine function MF is suggested to be size-optimized based on the profile.
constexpr force_iteration_on_noniterable_enum_t force_iteration_on_noniterable_enum
Definition Sequence.h:110
T bit_ceil(T Value)
Returns the smallest integral power of two no smaller than Value if Value is nonzero.
Definition bit.h:362
LLVM_ABI void ComputeValueTypes(const DataLayout &DL, Type *Ty, SmallVectorImpl< Type * > &Types, SmallVectorImpl< TypeSize > *Offsets=nullptr, TypeSize StartingOffset=TypeSize::getZero())
Given an LLVM IR type, compute non-aggregate subtypes.
Definition Analysis.cpp:72
bool isReleaseOrStronger(AtomicOrdering AO)
auto dyn_cast_or_null(const Y &Val)
Definition Casting.h:753
constexpr bool has_single_bit(T Value) noexcept
Definition bit.h:149
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
Definition MathExtras.h:280
constexpr auto enum_seq(EnumT Begin, EnumT End)
Iterate over an enum type from Begin up to - but not including - End.
Definition Sequence.h:373
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1769
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
bool isDigit(char C)
Checks if character C is one of the 10 decimal digits.
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:227
AtomicOrdering
Atomic ordering for LLVM's memory model.
LLVM_ABI EVT getApproximateEVTForLLT(LLT Ty, LLVMContext &Ctx)
constexpr T divideCeil(U Numerator, V Denominator)
Returns the integer ceil(Numerator / Denominator).
Definition MathExtras.h:389
TargetTransformInfo TTI
@ Mul
Product of integers.
@ FSub
Subtraction of floats.
@ Xor
Bitwise or logical XOR of integers.
@ FMul
Product of floats.
@ Sub
Subtraction of integers.
@ Add
Sum of integers.
@ FAdd
Sum of floats.
@ Fast
Assign the register banks as fast as possible (default).
DWARFExpression::Operation Op
LLVM_ABI bool isDereferenceableAndAlignedPointer(const Value *V, Type *Ty, Align Alignment, const SimplifyQuery &Q, bool IgnoreFree=false)
Returns true if V is always a dereferenceable pointer with alignment greater or equal than requested.
Definition Loads.cpp:244
bool isAcquireOrStronger(AtomicOrdering AO)
MCRegisterClass TargetRegisterClass
Definition FastISel.h:58
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
Extended Value Type.
Definition ValueTypes.h:35
EVT getPow2VectorType(LLVMContext &Context) const
Widens the length of the given vector EVT up to the nearest power of 2 and returns that type.
Definition ValueTypes.h:508
bool isSimple() const
Test if the given EVT is simple (as opposed to being extended).
Definition ValueTypes.h:145
static EVT getVectorVT(LLVMContext &Context, EVT VT, unsigned NumElements, bool IsScalable=false)
Returns the EVT that represents a vector NumElements in length, where each element is of type VT.
Definition ValueTypes.h:70
ElementCount getVectorElementCount() const
Definition ValueTypes.h:373
TypeSize getSizeInBits() const
Return the size of the specified value type in bits.
Definition ValueTypes.h:396
uint64_t getScalarSizeInBits() const
Definition ValueTypes.h:408
bool isPow2VectorType() const
Returns true if the given vector is a power of 2.
Definition ValueTypes.h:501
MVT getSimpleVT() const
Return the SimpleValueType held in the specified simple EVT.
Definition ValueTypes.h:339
static EVT getIntegerVT(LLVMContext &Context, unsigned BitWidth)
Returns the EVT that represents an integer with the given number of bits.
Definition ValueTypes.h:61
bool isFixedLengthVector() const
Definition ValueTypes.h:199
EVT getRoundIntegerType(LLVMContext &Context) const
Rounds the bit-width of the given integer EVT up to the nearest power of two (and at least to eight),...
Definition ValueTypes.h:442
bool isVector() const
Return true if this is a vector value type.
Definition ValueTypes.h:176
EVT getScalarType() const
If this is a vector type, return the element type, otherwise return this.
Definition ValueTypes.h:346
LLVM_ABI Type * getTypeForEVT(LLVMContext &Context) const
This method returns an LLVM type corresponding to the specified EVT.
bool isScalableVector() const
Return true if this is a vector type where the runtime length is machine dependent.
Definition ValueTypes.h:187
EVT getVectorElementType() const
Given a vector type, return the type of each element.
Definition ValueTypes.h:351
unsigned getVectorNumElements() const
Given a vector type, return the number of elements it contains.
Definition ValueTypes.h:359
bool isZeroSized() const
Test if the given EVT has zero size, this will fail if called on a scalable type.
Definition ValueTypes.h:140
EVT getHalfNumVectorElementsVT(LLVMContext &Context) const
Definition ValueTypes.h:484
bool isInteger() const
Return true if this is an integer or a vector integer type.
Definition ValueTypes.h:160
OutputArg - This struct carries flags and a value for a single outgoing (actual) argument or outgoing...
Matching combinators.
static LLVM_ABI MachinePointerInfo getFixedStack(MachineFunction &MF, int FI, int64_t Offset=0)
Return a MachinePointerInfo record that refers to the specified FrameIndex.
static StringRef getLibcallImplName(RTLIB::LibcallImpl CallImpl)
Get the libcall routine name for the specified libcall implementation.
This represents an addressing mode of: BaseGV + BaseOffs + BaseReg + Scale*ScaleReg + ScalableOffset*...