[Alignment][NFC] Use Align with TargetLowering::setPrefLoopAlignment
[llvm-complete.git] / include / llvm / CodeGen / TargetLowering.h
blob0c675e4d291ce228a88f252762ba51d20e978270
1 //===- llvm/CodeGen/TargetLowering.h - Target Lowering Info -----*- C++ -*-===//
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 /// \file
10 /// This file describes how to lower LLVM code to machine code. This has two
11 /// main components:
12 ///
13 /// 1. Which ValueTypes are natively supported by the target.
14 /// 2. Which operations are supported for supported ValueTypes.
15 /// 3. Cost thresholds for alternative implementations of certain operations.
16 ///
17 /// In addition it has a few other components, like information about FP
18 /// immediates.
19 ///
20 //===----------------------------------------------------------------------===//
22 #ifndef LLVM_CODEGEN_TARGETLOWERING_H
23 #define LLVM_CODEGEN_TARGETLOWERING_H
25 #include "llvm/ADT/APInt.h"
26 #include "llvm/ADT/ArrayRef.h"
27 #include "llvm/ADT/DenseMap.h"
28 #include "llvm/ADT/STLExtras.h"
29 #include "llvm/ADT/SmallVector.h"
30 #include "llvm/ADT/StringRef.h"
31 #include "llvm/Analysis/LegacyDivergenceAnalysis.h"
32 #include "llvm/CodeGen/DAGCombine.h"
33 #include "llvm/CodeGen/ISDOpcodes.h"
34 #include "llvm/CodeGen/RuntimeLibcalls.h"
35 #include "llvm/CodeGen/SelectionDAG.h"
36 #include "llvm/CodeGen/SelectionDAGNodes.h"
37 #include "llvm/CodeGen/TargetCallingConv.h"
38 #include "llvm/CodeGen/ValueTypes.h"
39 #include "llvm/IR/Attributes.h"
40 #include "llvm/IR/CallSite.h"
41 #include "llvm/IR/CallingConv.h"
42 #include "llvm/IR/DataLayout.h"
43 #include "llvm/IR/DerivedTypes.h"
44 #include "llvm/IR/Function.h"
45 #include "llvm/IR/IRBuilder.h"
46 #include "llvm/IR/InlineAsm.h"
47 #include "llvm/IR/Instruction.h"
48 #include "llvm/IR/Instructions.h"
49 #include "llvm/IR/Type.h"
50 #include "llvm/MC/MCRegisterInfo.h"
51 #include "llvm/Support/Alignment.h"
52 #include "llvm/Support/AtomicOrdering.h"
53 #include "llvm/Support/Casting.h"
54 #include "llvm/Support/ErrorHandling.h"
55 #include "llvm/Support/MachineValueType.h"
56 #include "llvm/Target/TargetMachine.h"
57 #include <algorithm>
58 #include <cassert>
59 #include <climits>
60 #include <cstdint>
61 #include <iterator>
62 #include <map>
63 #include <string>
64 #include <utility>
65 #include <vector>
67 namespace llvm {
69 class BranchProbability;
70 class CCState;
71 class CCValAssign;
72 class Constant;
73 class FastISel;
74 class FunctionLoweringInfo;
75 class GlobalValue;
76 class IntrinsicInst;
77 struct KnownBits;
78 class LLVMContext;
79 class MachineBasicBlock;
80 class MachineFunction;
81 class MachineInstr;
82 class MachineJumpTableInfo;
83 class MachineLoop;
84 class MachineRegisterInfo;
85 class MCContext;
86 class MCExpr;
87 class Module;
88 class TargetRegisterClass;
89 class TargetLibraryInfo;
90 class TargetRegisterInfo;
91 class Value;
93 namespace Sched {
95 enum Preference {
96 None, // No preference
97 Source, // Follow source order.
98 RegPressure, // Scheduling for lowest register pressure.
99 Hybrid, // Scheduling for both latency and register pressure.
100 ILP, // Scheduling for ILP in low register pressure mode.
101 VLIW // Scheduling for VLIW targets.
104 } // end namespace Sched
106 /// This base class for TargetLowering contains the SelectionDAG-independent
107 /// parts that can be used from the rest of CodeGen.
108 class TargetLoweringBase {
109 public:
110 /// This enum indicates whether operations are valid for a target, and if not,
111 /// what action should be used to make them valid.
112 enum LegalizeAction : uint8_t {
113 Legal, // The target natively supports this operation.
114 Promote, // This operation should be executed in a larger type.
115 Expand, // Try to expand this to other ops, otherwise use a libcall.
116 LibCall, // Don't try to expand this to other ops, always use a libcall.
117 Custom // Use the LowerOperation hook to implement custom lowering.
120 /// This enum indicates whether a types are legal for a target, and if not,
121 /// what action should be used to make them valid.
122 enum LegalizeTypeAction : uint8_t {
123 TypeLegal, // The target natively supports this type.
124 TypePromoteInteger, // Replace this integer with a larger one.
125 TypeExpandInteger, // Split this integer into two of half the size.
126 TypeSoftenFloat, // Convert this float to a same size integer type,
127 // if an operation is not supported in target HW.
128 TypeExpandFloat, // Split this float into two of half the size.
129 TypeScalarizeVector, // Replace this one-element vector with its element.
130 TypeSplitVector, // Split this vector into two of half the size.
131 TypeWidenVector, // This vector should be widened into a larger vector.
132 TypePromoteFloat // Replace this float with a larger one.
135 /// LegalizeKind holds the legalization kind that needs to happen to EVT
136 /// in order to type-legalize it.
137 using LegalizeKind = std::pair<LegalizeTypeAction, EVT>;
139 /// Enum that describes how the target represents true/false values.
140 enum BooleanContent {
141 UndefinedBooleanContent, // Only bit 0 counts, the rest can hold garbage.
142 ZeroOrOneBooleanContent, // All bits zero except for bit 0.
143 ZeroOrNegativeOneBooleanContent // All bits equal to bit 0.
146 /// Enum that describes what type of support for selects the target has.
147 enum SelectSupportKind {
148 ScalarValSelect, // The target supports scalar selects (ex: cmov).
149 ScalarCondVectorVal, // The target supports selects with a scalar condition
150 // and vector values (ex: cmov).
151 VectorMaskSelect // The target supports vector selects with a vector
152 // mask (ex: x86 blends).
155 /// Enum that specifies what an atomic load/AtomicRMWInst is expanded
156 /// to, if at all. Exists because different targets have different levels of
157 /// support for these atomic instructions, and also have different options
158 /// w.r.t. what they should expand to.
159 enum class AtomicExpansionKind {
160 None, // Don't expand the instruction.
161 LLSC, // Expand the instruction into loadlinked/storeconditional; used
162 // by ARM/AArch64.
163 LLOnly, // Expand the (load) instruction into just a load-linked, which has
164 // greater atomic guarantees than a normal load.
165 CmpXChg, // Expand the instruction into cmpxchg; used by at least X86.
166 MaskedIntrinsic, // Use a target-specific intrinsic for the LL/SC loop.
169 /// Enum that specifies when a multiplication should be expanded.
170 enum class MulExpansionKind {
171 Always, // Always expand the instruction.
172 OnlyLegalOrCustom, // Only expand when the resulting instructions are legal
173 // or custom.
176 class ArgListEntry {
177 public:
178 Value *Val = nullptr;
179 SDValue Node = SDValue();
180 Type *Ty = nullptr;
181 bool IsSExt : 1;
182 bool IsZExt : 1;
183 bool IsInReg : 1;
184 bool IsSRet : 1;
185 bool IsNest : 1;
186 bool IsByVal : 1;
187 bool IsInAlloca : 1;
188 bool IsReturned : 1;
189 bool IsSwiftSelf : 1;
190 bool IsSwiftError : 1;
191 uint16_t Alignment = 0;
192 Type *ByValType = nullptr;
194 ArgListEntry()
195 : IsSExt(false), IsZExt(false), IsInReg(false), IsSRet(false),
196 IsNest(false), IsByVal(false), IsInAlloca(false), IsReturned(false),
197 IsSwiftSelf(false), IsSwiftError(false) {}
199 void setAttributes(const CallBase *Call, unsigned ArgIdx);
201 void setAttributes(ImmutableCallSite *CS, unsigned ArgIdx) {
202 return setAttributes(cast<CallBase>(CS->getInstruction()), ArgIdx);
205 using ArgListTy = std::vector<ArgListEntry>;
207 virtual void markLibCallAttributes(MachineFunction *MF, unsigned CC,
208 ArgListTy &Args) const {};
210 static ISD::NodeType getExtendForContent(BooleanContent Content) {
211 switch (Content) {
212 case UndefinedBooleanContent:
213 // Extend by adding rubbish bits.
214 return ISD::ANY_EXTEND;
215 case ZeroOrOneBooleanContent:
216 // Extend by adding zero bits.
217 return ISD::ZERO_EXTEND;
218 case ZeroOrNegativeOneBooleanContent:
219 // Extend by copying the sign bit.
220 return ISD::SIGN_EXTEND;
222 llvm_unreachable("Invalid content kind");
225 /// NOTE: The TargetMachine owns TLOF.
226 explicit TargetLoweringBase(const TargetMachine &TM);
227 TargetLoweringBase(const TargetLoweringBase &) = delete;
228 TargetLoweringBase &operator=(const TargetLoweringBase &) = delete;
229 virtual ~TargetLoweringBase() = default;
231 protected:
232 /// Initialize all of the actions to default values.
233 void initActions();
235 public:
236 const TargetMachine &getTargetMachine() const { return TM; }
238 virtual bool useSoftFloat() const { return false; }
240 /// Return the pointer type for the given address space, defaults to
241 /// the pointer type from the data layout.
242 /// FIXME: The default needs to be removed once all the code is updated.
243 virtual MVT getPointerTy(const DataLayout &DL, uint32_t AS = 0) const {
244 return MVT::getIntegerVT(DL.getPointerSizeInBits(AS));
247 /// Return the in-memory pointer type for the given address space, defaults to
248 /// the pointer type from the data layout. FIXME: The default needs to be
249 /// removed once all the code is updated.
250 MVT getPointerMemTy(const DataLayout &DL, uint32_t AS = 0) const {
251 return MVT::getIntegerVT(DL.getPointerSizeInBits(AS));
254 /// Return the type for frame index, which is determined by
255 /// the alloca address space specified through the data layout.
256 MVT getFrameIndexTy(const DataLayout &DL) const {
257 return getPointerTy(DL, DL.getAllocaAddrSpace());
260 /// Return the type for operands of fence.
261 /// TODO: Let fence operands be of i32 type and remove this.
262 virtual MVT getFenceOperandTy(const DataLayout &DL) const {
263 return getPointerTy(DL);
266 /// EVT is not used in-tree, but is used by out-of-tree target.
267 /// A documentation for this function would be nice...
268 virtual MVT getScalarShiftAmountTy(const DataLayout &, EVT) const;
270 EVT getShiftAmountTy(EVT LHSTy, const DataLayout &DL,
271 bool LegalTypes = true) const;
273 /// Returns the type to be used for the index operand of:
274 /// ISD::INSERT_VECTOR_ELT, ISD::EXTRACT_VECTOR_ELT,
275 /// ISD::INSERT_SUBVECTOR, and ISD::EXTRACT_SUBVECTOR
276 virtual MVT getVectorIdxTy(const DataLayout &DL) const {
277 return getPointerTy(DL);
280 virtual bool isSelectSupported(SelectSupportKind /*kind*/) const {
281 return true;
284 /// Return true if it is profitable to convert a select of FP constants into
285 /// a constant pool load whose address depends on the select condition. The
286 /// parameter may be used to differentiate a select with FP compare from
287 /// integer compare.
288 virtual bool reduceSelectOfFPConstantLoads(bool IsFPSetCC) const {
289 return true;
292 /// Return true if multiple condition registers are available.
293 bool hasMultipleConditionRegisters() const {
294 return HasMultipleConditionRegisters;
297 /// Return true if the target has BitExtract instructions.
298 bool hasExtractBitsInsn() const { return HasExtractBitsInsn; }
300 /// Return the preferred vector type legalization action.
301 virtual TargetLoweringBase::LegalizeTypeAction
302 getPreferredVectorAction(MVT VT) const {
303 // The default action for one element vectors is to scalarize
304 if (VT.getVectorNumElements() == 1)
305 return TypeScalarizeVector;
306 // The default action for an odd-width vector is to widen.
307 if (!VT.isPow2VectorType())
308 return TypeWidenVector;
309 // The default action for other vectors is to promote
310 return TypePromoteInteger;
313 // There are two general methods for expanding a BUILD_VECTOR node:
314 // 1. Use SCALAR_TO_VECTOR on the defined scalar values and then shuffle
315 // them together.
316 // 2. Build the vector on the stack and then load it.
317 // If this function returns true, then method (1) will be used, subject to
318 // the constraint that all of the necessary shuffles are legal (as determined
319 // by isShuffleMaskLegal). If this function returns false, then method (2) is
320 // always used. The vector type, and the number of defined values, are
321 // provided.
322 virtual bool
323 shouldExpandBuildVectorWithShuffles(EVT /* VT */,
324 unsigned DefinedValues) const {
325 return DefinedValues < 3;
328 /// Return true if integer divide is usually cheaper than a sequence of
329 /// several shifts, adds, and multiplies for this target.
330 /// The definition of "cheaper" may depend on whether we're optimizing
331 /// for speed or for size.
332 virtual bool isIntDivCheap(EVT VT, AttributeList Attr) const { return false; }
334 /// Return true if the target can handle a standalone remainder operation.
335 virtual bool hasStandaloneRem(EVT VT) const {
336 return true;
339 /// Return true if SQRT(X) shouldn't be replaced with X*RSQRT(X).
340 virtual bool isFsqrtCheap(SDValue X, SelectionDAG &DAG) const {
341 // Default behavior is to replace SQRT(X) with X*RSQRT(X).
342 return false;
345 /// Reciprocal estimate status values used by the functions below.
346 enum ReciprocalEstimate : int {
347 Unspecified = -1,
348 Disabled = 0,
349 Enabled = 1
352 /// Return a ReciprocalEstimate enum value for a square root of the given type
353 /// based on the function's attributes. If the operation is not overridden by
354 /// the function's attributes, "Unspecified" is returned and target defaults
355 /// are expected to be used for instruction selection.
356 int getRecipEstimateSqrtEnabled(EVT VT, MachineFunction &MF) const;
358 /// Return a ReciprocalEstimate enum value for a division of the given type
359 /// based on the function's attributes. If the operation is not overridden by
360 /// the function's attributes, "Unspecified" is returned and target defaults
361 /// are expected to be used for instruction selection.
362 int getRecipEstimateDivEnabled(EVT VT, MachineFunction &MF) const;
364 /// Return the refinement step count for a square root of the given type based
365 /// on the function's attributes. If the operation is not overridden by
366 /// the function's attributes, "Unspecified" is returned and target defaults
367 /// are expected to be used for instruction selection.
368 int getSqrtRefinementSteps(EVT VT, MachineFunction &MF) const;
370 /// Return the refinement step count for a division of the given type based
371 /// on the function's attributes. If the operation is not overridden by
372 /// the function's attributes, "Unspecified" is returned and target defaults
373 /// are expected to be used for instruction selection.
374 int getDivRefinementSteps(EVT VT, MachineFunction &MF) const;
376 /// Returns true if target has indicated at least one type should be bypassed.
377 bool isSlowDivBypassed() const { return !BypassSlowDivWidths.empty(); }
379 /// Returns map of slow types for division or remainder with corresponding
380 /// fast types
381 const DenseMap<unsigned int, unsigned int> &getBypassSlowDivWidths() const {
382 return BypassSlowDivWidths;
385 /// Return true if Flow Control is an expensive operation that should be
386 /// avoided.
387 bool isJumpExpensive() const { return JumpIsExpensive; }
389 /// Return true if selects are only cheaper than branches if the branch is
390 /// unlikely to be predicted right.
391 bool isPredictableSelectExpensive() const {
392 return PredictableSelectIsExpensive;
395 /// If a branch or a select condition is skewed in one direction by more than
396 /// this factor, it is very likely to be predicted correctly.
397 virtual BranchProbability getPredictableBranchThreshold() const;
399 /// Return true if the following transform is beneficial:
400 /// fold (conv (load x)) -> (load (conv*)x)
401 /// On architectures that don't natively support some vector loads
402 /// efficiently, casting the load to a smaller vector of larger types and
403 /// loading is more efficient, however, this can be undone by optimizations in
404 /// dag combiner.
405 virtual bool isLoadBitCastBeneficial(EVT LoadVT, EVT BitcastVT,
406 const SelectionDAG &DAG,
407 const MachineMemOperand &MMO) const {
408 // Don't do if we could do an indexed load on the original type, but not on
409 // the new one.
410 if (!LoadVT.isSimple() || !BitcastVT.isSimple())
411 return true;
413 MVT LoadMVT = LoadVT.getSimpleVT();
415 // Don't bother doing this if it's just going to be promoted again later, as
416 // doing so might interfere with other combines.
417 if (getOperationAction(ISD::LOAD, LoadMVT) == Promote &&
418 getTypeToPromoteTo(ISD::LOAD, LoadMVT) == BitcastVT.getSimpleVT())
419 return false;
421 bool Fast = false;
422 return allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), BitcastVT,
423 MMO, &Fast) && Fast;
426 /// Return true if the following transform is beneficial:
427 /// (store (y (conv x)), y*)) -> (store x, (x*))
428 virtual bool isStoreBitCastBeneficial(EVT StoreVT, EVT BitcastVT,
429 const SelectionDAG &DAG,
430 const MachineMemOperand &MMO) const {
431 // Default to the same logic as loads.
432 return isLoadBitCastBeneficial(StoreVT, BitcastVT, DAG, MMO);
435 /// Return true if it is expected to be cheaper to do a store of a non-zero
436 /// vector constant with the given size and type for the address space than to
437 /// store the individual scalar element constants.
438 virtual bool storeOfVectorConstantIsCheap(EVT MemVT,
439 unsigned NumElem,
440 unsigned AddrSpace) const {
441 return false;
444 /// Allow store merging for the specified type after legalization in addition
445 /// to before legalization. This may transform stores that do not exist
446 /// earlier (for example, stores created from intrinsics).
447 virtual bool mergeStoresAfterLegalization(EVT MemVT) const {
448 return true;
451 /// Returns if it's reasonable to merge stores to MemVT size.
452 virtual bool canMergeStoresTo(unsigned AS, EVT MemVT,
453 const SelectionDAG &DAG) const {
454 return true;
457 /// Return true if it is cheap to speculate a call to intrinsic cttz.
458 virtual bool isCheapToSpeculateCttz() const {
459 return false;
462 /// Return true if it is cheap to speculate a call to intrinsic ctlz.
463 virtual bool isCheapToSpeculateCtlz() const {
464 return false;
467 /// Return true if ctlz instruction is fast.
468 virtual bool isCtlzFast() const {
469 return false;
472 /// Return true if it is safe to transform an integer-domain bitwise operation
473 /// into the equivalent floating-point operation. This should be set to true
474 /// if the target has IEEE-754-compliant fabs/fneg operations for the input
475 /// type.
476 virtual bool hasBitPreservingFPLogic(EVT VT) const {
477 return false;
480 /// Return true if it is cheaper to split the store of a merged int val
481 /// from a pair of smaller values into multiple stores.
482 virtual bool isMultiStoresCheaperThanBitsMerge(EVT LTy, EVT HTy) const {
483 return false;
486 /// Return if the target supports combining a
487 /// chain like:
488 /// \code
489 /// %andResult = and %val1, #mask
490 /// %icmpResult = icmp %andResult, 0
491 /// \endcode
492 /// into a single machine instruction of a form like:
493 /// \code
494 /// cc = test %register, #mask
495 /// \endcode
496 virtual bool isMaskAndCmp0FoldingBeneficial(const Instruction &AndI) const {
497 return false;
500 /// Use bitwise logic to make pairs of compares more efficient. For example:
501 /// and (seteq A, B), (seteq C, D) --> seteq (or (xor A, B), (xor C, D)), 0
502 /// This should be true when it takes more than one instruction to lower
503 /// setcc (cmp+set on x86 scalar), when bitwise ops are faster than logic on
504 /// condition bits (crand on PowerPC), and/or when reducing cmp+br is a win.
505 virtual bool convertSetCCLogicToBitwiseLogic(EVT VT) const {
506 return false;
509 /// Return the preferred operand type if the target has a quick way to compare
510 /// integer values of the given size. Assume that any legal integer type can
511 /// be compared efficiently. Targets may override this to allow illegal wide
512 /// types to return a vector type if there is support to compare that type.
513 virtual MVT hasFastEqualityCompare(unsigned NumBits) const {
514 MVT VT = MVT::getIntegerVT(NumBits);
515 return isTypeLegal(VT) ? VT : MVT::INVALID_SIMPLE_VALUE_TYPE;
518 /// Return true if the target should transform:
519 /// (X & Y) == Y ---> (~X & Y) == 0
520 /// (X & Y) != Y ---> (~X & Y) != 0
522 /// This may be profitable if the target has a bitwise and-not operation that
523 /// sets comparison flags. A target may want to limit the transformation based
524 /// on the type of Y or if Y is a constant.
526 /// Note that the transform will not occur if Y is known to be a power-of-2
527 /// because a mask and compare of a single bit can be handled by inverting the
528 /// predicate, for example:
529 /// (X & 8) == 8 ---> (X & 8) != 0
530 virtual bool hasAndNotCompare(SDValue Y) const {
531 return false;
534 /// Return true if the target has a bitwise and-not operation:
535 /// X = ~A & B
536 /// This can be used to simplify select or other instructions.
537 virtual bool hasAndNot(SDValue X) const {
538 // If the target has the more complex version of this operation, assume that
539 // it has this operation too.
540 return hasAndNotCompare(X);
543 /// Return true if the target has a bit-test instruction:
544 /// (X & (1 << Y)) ==/!= 0
545 /// This knowledge can be used to prevent breaking the pattern,
546 /// or creating it if it could be recognized.
547 virtual bool hasBitTest(SDValue X, SDValue Y) const { return false; }
549 /// There are two ways to clear extreme bits (either low or high):
550 /// Mask: x & (-1 << y) (the instcombine canonical form)
551 /// Shifts: x >> y << y
552 /// Return true if the variant with 2 variable shifts is preferred.
553 /// Return false if there is no preference.
554 virtual bool shouldFoldMaskToVariableShiftPair(SDValue X) const {
555 // By default, let's assume that no one prefers shifts.
556 return false;
559 /// Return true if it is profitable to fold a pair of shifts into a mask.
560 /// This is usually true on most targets. But some targets, like Thumb1,
561 /// have immediate shift instructions, but no immediate "and" instruction;
562 /// this makes the fold unprofitable.
563 virtual bool shouldFoldConstantShiftPairToMask(const SDNode *N,
564 CombineLevel Level) const {
565 return true;
568 /// Should we tranform the IR-optimal check for whether given truncation
569 /// down into KeptBits would be truncating or not:
570 /// (add %x, (1 << (KeptBits-1))) srccond (1 << KeptBits)
571 /// Into it's more traditional form:
572 /// ((%x << C) a>> C) dstcond %x
573 /// Return true if we should transform.
574 /// Return false if there is no preference.
575 virtual bool shouldTransformSignedTruncationCheck(EVT XVT,
576 unsigned KeptBits) const {
577 // By default, let's assume that no one prefers shifts.
578 return false;
581 /// Given the pattern
582 /// (X & (C l>>/<< Y)) ==/!= 0
583 /// return true if it should be transformed into:
584 /// ((X <</l>> Y) & C) ==/!= 0
585 /// WARNING: if 'X' is a constant, the fold may deadlock!
586 /// FIXME: we could avoid passing XC, but we can't use isConstOrConstSplat()
587 /// here because it can end up being not linked in.
588 virtual bool shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd(
589 SDValue X, ConstantSDNode *XC, ConstantSDNode *CC, SDValue Y,
590 unsigned OldShiftOpcode, unsigned NewShiftOpcode,
591 SelectionDAG &DAG) const {
592 if (hasBitTest(X, Y)) {
593 // One interesting pattern that we'd want to form is 'bit test':
594 // ((1 << Y) & C) ==/!= 0
595 // But we also need to be careful not to try to reverse that fold.
597 // Is this '1 << Y' ?
598 if (OldShiftOpcode == ISD::SHL && CC->isOne())
599 return false; // Keep the 'bit test' pattern.
601 // Will it be '1 << Y' after the transform ?
602 if (XC && NewShiftOpcode == ISD::SHL && XC->isOne())
603 return true; // Do form the 'bit test' pattern.
606 // If 'X' is a constant, and we transform, then we will immediately
607 // try to undo the fold, thus causing endless combine loop.
608 // So by default, let's assume everyone prefers the fold
609 // iff 'X' is not a constant.
610 return !XC;
613 /// These two forms are equivalent:
614 /// sub %y, (xor %x, -1)
615 /// add (add %x, 1), %y
616 /// The variant with two add's is IR-canonical.
617 /// Some targets may prefer one to the other.
618 virtual bool preferIncOfAddToSubOfNot(EVT VT) const {
619 // By default, let's assume that everyone prefers the form with two add's.
620 return true;
623 /// Return true if the target wants to use the optimization that
624 /// turns ext(promotableInst1(...(promotableInstN(load)))) into
625 /// promotedInst1(...(promotedInstN(ext(load)))).
626 bool enableExtLdPromotion() const { return EnableExtLdPromotion; }
628 /// Return true if the target can combine store(extractelement VectorTy,
629 /// Idx).
630 /// \p Cost[out] gives the cost of that transformation when this is true.
631 virtual bool canCombineStoreAndExtract(Type *VectorTy, Value *Idx,
632 unsigned &Cost) const {
633 return false;
636 /// Return true if inserting a scalar into a variable element of an undef
637 /// vector is more efficiently handled by splatting the scalar instead.
638 virtual bool shouldSplatInsEltVarIndex(EVT) const {
639 return false;
642 /// Return true if target always beneficiates from combining into FMA for a
643 /// given value type. This must typically return false on targets where FMA
644 /// takes more cycles to execute than FADD.
645 virtual bool enableAggressiveFMAFusion(EVT VT) const {
646 return false;
649 /// Return the ValueType of the result of SETCC operations.
650 virtual EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context,
651 EVT VT) const;
653 /// Return the ValueType for comparison libcalls. Comparions libcalls include
654 /// floating point comparion calls, and Ordered/Unordered check calls on
655 /// floating point numbers.
656 virtual
657 MVT::SimpleValueType getCmpLibcallReturnType() const;
659 /// For targets without i1 registers, this gives the nature of the high-bits
660 /// of boolean values held in types wider than i1.
662 /// "Boolean values" are special true/false values produced by nodes like
663 /// SETCC and consumed (as the condition) by nodes like SELECT and BRCOND.
664 /// Not to be confused with general values promoted from i1. Some cpus
665 /// distinguish between vectors of boolean and scalars; the isVec parameter
666 /// selects between the two kinds. For example on X86 a scalar boolean should
667 /// be zero extended from i1, while the elements of a vector of booleans
668 /// should be sign extended from i1.
670 /// Some cpus also treat floating point types the same way as they treat
671 /// vectors instead of the way they treat scalars.
672 BooleanContent getBooleanContents(bool isVec, bool isFloat) const {
673 if (isVec)
674 return BooleanVectorContents;
675 return isFloat ? BooleanFloatContents : BooleanContents;
678 BooleanContent getBooleanContents(EVT Type) const {
679 return getBooleanContents(Type.isVector(), Type.isFloatingPoint());
682 /// Return target scheduling preference.
683 Sched::Preference getSchedulingPreference() const {
684 return SchedPreferenceInfo;
687 /// Some scheduler, e.g. hybrid, can switch to different scheduling heuristics
688 /// for different nodes. This function returns the preference (or none) for
689 /// the given node.
690 virtual Sched::Preference getSchedulingPreference(SDNode *) const {
691 return Sched::None;
694 /// Return the register class that should be used for the specified value
695 /// type.
696 virtual const TargetRegisterClass *getRegClassFor(MVT VT, bool isDivergent = false) const {
697 (void)isDivergent;
698 const TargetRegisterClass *RC = RegClassForVT[VT.SimpleTy];
699 assert(RC && "This value type is not natively supported!");
700 return RC;
703 /// Allows target to decide about the register class of the
704 /// specific value that is live outside the defining block.
705 /// Returns true if the value needs uniform register class.
706 virtual bool requiresUniformRegister(MachineFunction &MF,
707 const Value *) const {
708 return false;
711 /// Return the 'representative' register class for the specified value
712 /// type.
714 /// The 'representative' register class is the largest legal super-reg
715 /// register class for the register class of the value type. For example, on
716 /// i386 the rep register class for i8, i16, and i32 are GR32; while the rep
717 /// register class is GR64 on x86_64.
718 virtual const TargetRegisterClass *getRepRegClassFor(MVT VT) const {
719 const TargetRegisterClass *RC = RepRegClassForVT[VT.SimpleTy];
720 return RC;
723 /// Return the cost of the 'representative' register class for the specified
724 /// value type.
725 virtual uint8_t getRepRegClassCostFor(MVT VT) const {
726 return RepRegClassCostForVT[VT.SimpleTy];
729 /// Return true if SHIFT instructions should be expanded to SHIFT_PARTS
730 /// instructions, and false if a library call is preferred (e.g for code-size
731 /// reasons).
732 virtual bool shouldExpandShift(SelectionDAG &DAG, SDNode *N) const {
733 return true;
736 /// Return true if the target has native support for the specified value type.
737 /// This means that it has a register that directly holds it without
738 /// promotions or expansions.
739 bool isTypeLegal(EVT VT) const {
740 assert(!VT.isSimple() ||
741 (unsigned)VT.getSimpleVT().SimpleTy < array_lengthof(RegClassForVT));
742 return VT.isSimple() && RegClassForVT[VT.getSimpleVT().SimpleTy] != nullptr;
745 class ValueTypeActionImpl {
746 /// ValueTypeActions - For each value type, keep a LegalizeTypeAction enum
747 /// that indicates how instruction selection should deal with the type.
748 LegalizeTypeAction ValueTypeActions[MVT::LAST_VALUETYPE];
750 public:
751 ValueTypeActionImpl() {
752 std::fill(std::begin(ValueTypeActions), std::end(ValueTypeActions),
753 TypeLegal);
756 LegalizeTypeAction getTypeAction(MVT VT) const {
757 return ValueTypeActions[VT.SimpleTy];
760 void setTypeAction(MVT VT, LegalizeTypeAction Action) {
761 ValueTypeActions[VT.SimpleTy] = Action;
765 const ValueTypeActionImpl &getValueTypeActions() const {
766 return ValueTypeActions;
769 /// Return how we should legalize values of this type, either it is already
770 /// legal (return 'Legal') or we need to promote it to a larger type (return
771 /// 'Promote'), or we need to expand it into multiple registers of smaller
772 /// integer type (return 'Expand'). 'Custom' is not an option.
773 LegalizeTypeAction getTypeAction(LLVMContext &Context, EVT VT) const {
774 return getTypeConversion(Context, VT).first;
776 LegalizeTypeAction getTypeAction(MVT VT) const {
777 return ValueTypeActions.getTypeAction(VT);
780 /// For types supported by the target, this is an identity function. For
781 /// types that must be promoted to larger types, this returns the larger type
782 /// to promote to. For integer types that are larger than the largest integer
783 /// register, this contains one step in the expansion to get to the smaller
784 /// register. For illegal floating point types, this returns the integer type
785 /// to transform to.
786 EVT getTypeToTransformTo(LLVMContext &Context, EVT VT) const {
787 return getTypeConversion(Context, VT).second;
790 /// For types supported by the target, this is an identity function. For
791 /// types that must be expanded (i.e. integer types that are larger than the
792 /// largest integer register or illegal floating point types), this returns
793 /// the largest legal type it will be expanded to.
794 EVT getTypeToExpandTo(LLVMContext &Context, EVT VT) const {
795 assert(!VT.isVector());
796 while (true) {
797 switch (getTypeAction(Context, VT)) {
798 case TypeLegal:
799 return VT;
800 case TypeExpandInteger:
801 VT = getTypeToTransformTo(Context, VT);
802 break;
803 default:
804 llvm_unreachable("Type is not legal nor is it to be expanded!");
809 /// Vector types are broken down into some number of legal first class types.
810 /// For example, EVT::v8f32 maps to 2 EVT::v4f32 with Altivec or SSE1, or 8
811 /// promoted EVT::f64 values with the X86 FP stack. Similarly, EVT::v2i64
812 /// turns into 4 EVT::i32 values with both PPC and X86.
814 /// This method returns the number of registers needed, and the VT for each
815 /// register. It also returns the VT and quantity of the intermediate values
816 /// before they are promoted/expanded.
817 unsigned getVectorTypeBreakdown(LLVMContext &Context, EVT VT,
818 EVT &IntermediateVT,
819 unsigned &NumIntermediates,
820 MVT &RegisterVT) const;
822 /// Certain targets such as MIPS require that some types such as vectors are
823 /// always broken down into scalars in some contexts. This occurs even if the
824 /// vector type is legal.
825 virtual unsigned getVectorTypeBreakdownForCallingConv(
826 LLVMContext &Context, CallingConv::ID CC, EVT VT, EVT &IntermediateVT,
827 unsigned &NumIntermediates, MVT &RegisterVT) const {
828 return getVectorTypeBreakdown(Context, VT, IntermediateVT, NumIntermediates,
829 RegisterVT);
832 struct IntrinsicInfo {
833 unsigned opc = 0; // target opcode
834 EVT memVT; // memory VT
836 // value representing memory location
837 PointerUnion<const Value *, const PseudoSourceValue *> ptrVal;
839 int offset = 0; // offset off of ptrVal
840 unsigned size = 0; // the size of the memory location
841 // (taken from memVT if zero)
842 MaybeAlign align = Align(1); // alignment
844 MachineMemOperand::Flags flags = MachineMemOperand::MONone;
845 IntrinsicInfo() = default;
848 /// Given an intrinsic, checks if on the target the intrinsic will need to map
849 /// to a MemIntrinsicNode (touches memory). If this is the case, it returns
850 /// true and store the intrinsic information into the IntrinsicInfo that was
851 /// passed to the function.
852 virtual bool getTgtMemIntrinsic(IntrinsicInfo &, const CallInst &,
853 MachineFunction &,
854 unsigned /*Intrinsic*/) const {
855 return false;
858 /// Returns true if the target can instruction select the specified FP
859 /// immediate natively. If false, the legalizer will materialize the FP
860 /// immediate as a load from a constant pool.
861 virtual bool isFPImmLegal(const APFloat & /*Imm*/, EVT /*VT*/,
862 bool ForCodeSize = false) const {
863 return false;
866 /// Targets can use this to indicate that they only support *some*
867 /// VECTOR_SHUFFLE operations, those with specific masks. By default, if a
868 /// target supports the VECTOR_SHUFFLE node, all mask values are assumed to be
869 /// legal.
870 virtual bool isShuffleMaskLegal(ArrayRef<int> /*Mask*/, EVT /*VT*/) const {
871 return true;
874 /// Returns true if the operation can trap for the value type.
876 /// VT must be a legal type. By default, we optimistically assume most
877 /// operations don't trap except for integer divide and remainder.
878 virtual bool canOpTrap(unsigned Op, EVT VT) const;
880 /// Similar to isShuffleMaskLegal. Targets can use this to indicate if there
881 /// is a suitable VECTOR_SHUFFLE that can be used to replace a VAND with a
882 /// constant pool entry.
883 virtual bool isVectorClearMaskLegal(ArrayRef<int> /*Mask*/,
884 EVT /*VT*/) const {
885 return false;
888 /// Return how this operation should be treated: either it is legal, needs to
889 /// be promoted to a larger size, needs to be expanded to some other code
890 /// sequence, or the target has a custom expander for it.
891 LegalizeAction getOperationAction(unsigned Op, EVT VT) const {
892 if (VT.isExtended()) return Expand;
893 // If a target-specific SDNode requires legalization, require the target
894 // to provide custom legalization for it.
895 if (Op >= array_lengthof(OpActions[0])) return Custom;
896 return OpActions[(unsigned)VT.getSimpleVT().SimpleTy][Op];
899 /// Custom method defined by each target to indicate if an operation which
900 /// may require a scale is supported natively by the target.
901 /// If not, the operation is illegal.
902 virtual bool isSupportedFixedPointOperation(unsigned Op, EVT VT,
903 unsigned Scale) const {
904 return false;
907 /// Some fixed point operations may be natively supported by the target but
908 /// only for specific scales. This method allows for checking
909 /// if the width is supported by the target for a given operation that may
910 /// depend on scale.
911 LegalizeAction getFixedPointOperationAction(unsigned Op, EVT VT,
912 unsigned Scale) const {
913 auto Action = getOperationAction(Op, VT);
914 if (Action != Legal)
915 return Action;
917 // This operation is supported in this type but may only work on specific
918 // scales.
919 bool Supported;
920 switch (Op) {
921 default:
922 llvm_unreachable("Unexpected fixed point operation.");
923 case ISD::SMULFIX:
924 case ISD::SMULFIXSAT:
925 case ISD::UMULFIX:
926 Supported = isSupportedFixedPointOperation(Op, VT, Scale);
927 break;
930 return Supported ? Action : Expand;
933 // If Op is a strict floating-point operation, return the result
934 // of getOperationAction for the equivalent non-strict operation.
935 LegalizeAction getStrictFPOperationAction(unsigned Op, EVT VT) const {
936 unsigned EqOpc;
937 switch (Op) {
938 default: llvm_unreachable("Unexpected FP pseudo-opcode");
939 case ISD::STRICT_FADD: EqOpc = ISD::FADD; break;
940 case ISD::STRICT_FSUB: EqOpc = ISD::FSUB; break;
941 case ISD::STRICT_FMUL: EqOpc = ISD::FMUL; break;
942 case ISD::STRICT_FDIV: EqOpc = ISD::FDIV; break;
943 case ISD::STRICT_FREM: EqOpc = ISD::FREM; break;
944 case ISD::STRICT_FSQRT: EqOpc = ISD::FSQRT; break;
945 case ISD::STRICT_FPOW: EqOpc = ISD::FPOW; break;
946 case ISD::STRICT_FPOWI: EqOpc = ISD::FPOWI; break;
947 case ISD::STRICT_FMA: EqOpc = ISD::FMA; break;
948 case ISD::STRICT_FSIN: EqOpc = ISD::FSIN; break;
949 case ISD::STRICT_FCOS: EqOpc = ISD::FCOS; break;
950 case ISD::STRICT_FEXP: EqOpc = ISD::FEXP; break;
951 case ISD::STRICT_FEXP2: EqOpc = ISD::FEXP2; break;
952 case ISD::STRICT_FLOG: EqOpc = ISD::FLOG; break;
953 case ISD::STRICT_FLOG10: EqOpc = ISD::FLOG10; break;
954 case ISD::STRICT_FLOG2: EqOpc = ISD::FLOG2; break;
955 case ISD::STRICT_FRINT: EqOpc = ISD::FRINT; break;
956 case ISD::STRICT_FNEARBYINT: EqOpc = ISD::FNEARBYINT; break;
957 case ISD::STRICT_FMAXNUM: EqOpc = ISD::FMAXNUM; break;
958 case ISD::STRICT_FMINNUM: EqOpc = ISD::FMINNUM; break;
959 case ISD::STRICT_FCEIL: EqOpc = ISD::FCEIL; break;
960 case ISD::STRICT_FFLOOR: EqOpc = ISD::FFLOOR; break;
961 case ISD::STRICT_FROUND: EqOpc = ISD::FROUND; break;
962 case ISD::STRICT_FTRUNC: EqOpc = ISD::FTRUNC; break;
963 case ISD::STRICT_FP_TO_SINT: EqOpc = ISD::FP_TO_SINT; break;
964 case ISD::STRICT_FP_TO_UINT: EqOpc = ISD::FP_TO_UINT; break;
965 case ISD::STRICT_FP_ROUND: EqOpc = ISD::FP_ROUND; break;
966 case ISD::STRICT_FP_EXTEND: EqOpc = ISD::FP_EXTEND; break;
969 return getOperationAction(EqOpc, VT);
972 /// Return true if the specified operation is legal on this target or can be
973 /// made legal with custom lowering. This is used to help guide high-level
974 /// lowering decisions.
975 bool isOperationLegalOrCustom(unsigned Op, EVT VT) const {
976 return (VT == MVT::Other || isTypeLegal(VT)) &&
977 (getOperationAction(Op, VT) == Legal ||
978 getOperationAction(Op, VT) == Custom);
981 /// Return true if the specified operation is legal on this target or can be
982 /// made legal using promotion. This is used to help guide high-level lowering
983 /// decisions.
984 bool isOperationLegalOrPromote(unsigned Op, EVT VT) const {
985 return (VT == MVT::Other || isTypeLegal(VT)) &&
986 (getOperationAction(Op, VT) == Legal ||
987 getOperationAction(Op, VT) == Promote);
990 /// Return true if the specified operation is legal on this target or can be
991 /// made legal with custom lowering or using promotion. This is used to help
992 /// guide high-level lowering decisions.
993 bool isOperationLegalOrCustomOrPromote(unsigned Op, EVT VT) const {
994 return (VT == MVT::Other || isTypeLegal(VT)) &&
995 (getOperationAction(Op, VT) == Legal ||
996 getOperationAction(Op, VT) == Custom ||
997 getOperationAction(Op, VT) == Promote);
1000 /// Return true if the operation uses custom lowering, regardless of whether
1001 /// the type is legal or not.
1002 bool isOperationCustom(unsigned Op, EVT VT) const {
1003 return getOperationAction(Op, VT) == Custom;
1006 /// Return true if lowering to a jump table is allowed.
1007 virtual bool areJTsAllowed(const Function *Fn) const {
1008 if (Fn->getFnAttribute("no-jump-tables").getValueAsString() == "true")
1009 return false;
1011 return isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1012 isOperationLegalOrCustom(ISD::BRIND, MVT::Other);
1015 /// Check whether the range [Low,High] fits in a machine word.
1016 bool rangeFitsInWord(const APInt &Low, const APInt &High,
1017 const DataLayout &DL) const {
1018 // FIXME: Using the pointer type doesn't seem ideal.
1019 uint64_t BW = DL.getIndexSizeInBits(0u);
1020 uint64_t Range = (High - Low).getLimitedValue(UINT64_MAX - 1) + 1;
1021 return Range <= BW;
1024 /// Return true if lowering to a jump table is suitable for a set of case
1025 /// clusters which may contain \p NumCases cases, \p Range range of values.
1026 virtual bool isSuitableForJumpTable(const SwitchInst *SI, uint64_t NumCases,
1027 uint64_t Range) const {
1028 // FIXME: This function check the maximum table size and density, but the
1029 // minimum size is not checked. It would be nice if the minimum size is
1030 // also combined within this function. Currently, the minimum size check is
1031 // performed in findJumpTable() in SelectionDAGBuiler and
1032 // getEstimatedNumberOfCaseClusters() in BasicTTIImpl.
1033 const bool OptForSize = SI->getParent()->getParent()->hasOptSize();
1034 const unsigned MinDensity = getMinimumJumpTableDensity(OptForSize);
1035 const unsigned MaxJumpTableSize = getMaximumJumpTableSize();
1037 // Check whether the number of cases is small enough and
1038 // the range is dense enough for a jump table.
1039 if ((OptForSize || Range <= MaxJumpTableSize) &&
1040 (NumCases * 100 >= Range * MinDensity)) {
1041 return true;
1043 return false;
1046 /// Return true if lowering to a bit test is suitable for a set of case
1047 /// clusters which contains \p NumDests unique destinations, \p Low and
1048 /// \p High as its lowest and highest case values, and expects \p NumCmps
1049 /// case value comparisons. Check if the number of destinations, comparison
1050 /// metric, and range are all suitable.
1051 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps,
1052 const APInt &Low, const APInt &High,
1053 const DataLayout &DL) const {
1054 // FIXME: I don't think NumCmps is the correct metric: a single case and a
1055 // range of cases both require only one branch to lower. Just looking at the
1056 // number of clusters and destinations should be enough to decide whether to
1057 // build bit tests.
1059 // To lower a range with bit tests, the range must fit the bitwidth of a
1060 // machine word.
1061 if (!rangeFitsInWord(Low, High, DL))
1062 return false;
1064 // Decide whether it's profitable to lower this range with bit tests. Each
1065 // destination requires a bit test and branch, and there is an overall range
1066 // check branch. For a small number of clusters, separate comparisons might
1067 // be cheaper, and for many destinations, splitting the range might be
1068 // better.
1069 return (NumDests == 1 && NumCmps >= 3) || (NumDests == 2 && NumCmps >= 5) ||
1070 (NumDests == 3 && NumCmps >= 6);
1073 /// Return true if the specified operation is illegal on this target or
1074 /// unlikely to be made legal with custom lowering. This is used to help guide
1075 /// high-level lowering decisions.
1076 bool isOperationExpand(unsigned Op, EVT VT) const {
1077 return (!isTypeLegal(VT) || getOperationAction(Op, VT) == Expand);
1080 /// Return true if the specified operation is legal on this target.
1081 bool isOperationLegal(unsigned Op, EVT VT) const {
1082 return (VT == MVT::Other || isTypeLegal(VT)) &&
1083 getOperationAction(Op, VT) == Legal;
1086 /// Return how this load with extension should be treated: either it is legal,
1087 /// needs to be promoted to a larger size, needs to be expanded to some other
1088 /// code sequence, or the target has a custom expander for it.
1089 LegalizeAction getLoadExtAction(unsigned ExtType, EVT ValVT,
1090 EVT MemVT) const {
1091 if (ValVT.isExtended() || MemVT.isExtended()) return Expand;
1092 unsigned ValI = (unsigned) ValVT.getSimpleVT().SimpleTy;
1093 unsigned MemI = (unsigned) MemVT.getSimpleVT().SimpleTy;
1094 assert(ExtType < ISD::LAST_LOADEXT_TYPE && ValI < MVT::LAST_VALUETYPE &&
1095 MemI < MVT::LAST_VALUETYPE && "Table isn't big enough!");
1096 unsigned Shift = 4 * ExtType;
1097 return (LegalizeAction)((LoadExtActions[ValI][MemI] >> Shift) & 0xf);
1100 /// Return true if the specified load with extension is legal on this target.
1101 bool isLoadExtLegal(unsigned ExtType, EVT ValVT, EVT MemVT) const {
1102 return getLoadExtAction(ExtType, ValVT, MemVT) == Legal;
1105 /// Return true if the specified load with extension is legal or custom
1106 /// on this target.
1107 bool isLoadExtLegalOrCustom(unsigned ExtType, EVT ValVT, EVT MemVT) const {
1108 return getLoadExtAction(ExtType, ValVT, MemVT) == Legal ||
1109 getLoadExtAction(ExtType, ValVT, MemVT) == Custom;
1112 /// Return how this store with truncation should be treated: either it is
1113 /// legal, needs to be promoted to a larger size, needs to be expanded to some
1114 /// other code sequence, or the target has a custom expander for it.
1115 LegalizeAction getTruncStoreAction(EVT ValVT, EVT MemVT) const {
1116 if (ValVT.isExtended() || MemVT.isExtended()) return Expand;
1117 unsigned ValI = (unsigned) ValVT.getSimpleVT().SimpleTy;
1118 unsigned MemI = (unsigned) MemVT.getSimpleVT().SimpleTy;
1119 assert(ValI < MVT::LAST_VALUETYPE && MemI < MVT::LAST_VALUETYPE &&
1120 "Table isn't big enough!");
1121 return TruncStoreActions[ValI][MemI];
1124 /// Return true if the specified store with truncation is legal on this
1125 /// target.
1126 bool isTruncStoreLegal(EVT ValVT, EVT MemVT) const {
1127 return isTypeLegal(ValVT) && getTruncStoreAction(ValVT, MemVT) == Legal;
1130 /// Return true if the specified store with truncation has solution on this
1131 /// target.
1132 bool isTruncStoreLegalOrCustom(EVT ValVT, EVT MemVT) const {
1133 return isTypeLegal(ValVT) &&
1134 (getTruncStoreAction(ValVT, MemVT) == Legal ||
1135 getTruncStoreAction(ValVT, MemVT) == Custom);
1138 /// Return how the indexed load should be treated: either it is legal, needs
1139 /// to be promoted to a larger size, needs to be expanded to some other code
1140 /// sequence, or the target has a custom expander for it.
1141 LegalizeAction
1142 getIndexedLoadAction(unsigned IdxMode, MVT VT) const {
1143 assert(IdxMode < ISD::LAST_INDEXED_MODE && VT.isValid() &&
1144 "Table isn't big enough!");
1145 unsigned Ty = (unsigned)VT.SimpleTy;
1146 return (LegalizeAction)((IndexedModeActions[Ty][IdxMode] & 0xf0) >> 4);
1149 /// Return true if the specified indexed load is legal on this target.
1150 bool isIndexedLoadLegal(unsigned IdxMode, EVT VT) const {
1151 return VT.isSimple() &&
1152 (getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Legal ||
1153 getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Custom);
1156 /// Return how the indexed store should be treated: either it is legal, needs
1157 /// to be promoted to a larger size, needs to be expanded to some other code
1158 /// sequence, or the target has a custom expander for it.
1159 LegalizeAction
1160 getIndexedStoreAction(unsigned IdxMode, MVT VT) const {
1161 assert(IdxMode < ISD::LAST_INDEXED_MODE && VT.isValid() &&
1162 "Table isn't big enough!");
1163 unsigned Ty = (unsigned)VT.SimpleTy;
1164 return (LegalizeAction)(IndexedModeActions[Ty][IdxMode] & 0x0f);
1167 /// Return true if the specified indexed load is legal on this target.
1168 bool isIndexedStoreLegal(unsigned IdxMode, EVT VT) const {
1169 return VT.isSimple() &&
1170 (getIndexedStoreAction(IdxMode, VT.getSimpleVT()) == Legal ||
1171 getIndexedStoreAction(IdxMode, VT.getSimpleVT()) == Custom);
1174 /// Return how the condition code should be treated: either it is legal, needs
1175 /// to be expanded to some other code sequence, or the target has a custom
1176 /// expander for it.
1177 LegalizeAction
1178 getCondCodeAction(ISD::CondCode CC, MVT VT) const {
1179 assert((unsigned)CC < array_lengthof(CondCodeActions) &&
1180 ((unsigned)VT.SimpleTy >> 3) < array_lengthof(CondCodeActions[0]) &&
1181 "Table isn't big enough!");
1182 // See setCondCodeAction for how this is encoded.
1183 uint32_t Shift = 4 * (VT.SimpleTy & 0x7);
1184 uint32_t Value = CondCodeActions[CC][VT.SimpleTy >> 3];
1185 LegalizeAction Action = (LegalizeAction) ((Value >> Shift) & 0xF);
1186 assert(Action != Promote && "Can't promote condition code!");
1187 return Action;
1190 /// Return true if the specified condition code is legal on this target.
1191 bool isCondCodeLegal(ISD::CondCode CC, MVT VT) const {
1192 return getCondCodeAction(CC, VT) == Legal;
1195 /// Return true if the specified condition code is legal or custom on this
1196 /// target.
1197 bool isCondCodeLegalOrCustom(ISD::CondCode CC, MVT VT) const {
1198 return getCondCodeAction(CC, VT) == Legal ||
1199 getCondCodeAction(CC, VT) == Custom;
1202 /// If the action for this operation is to promote, this method returns the
1203 /// ValueType to promote to.
1204 MVT getTypeToPromoteTo(unsigned Op, MVT VT) const {
1205 assert(getOperationAction(Op, VT) == Promote &&
1206 "This operation isn't promoted!");
1208 // See if this has an explicit type specified.
1209 std::map<std::pair<unsigned, MVT::SimpleValueType>,
1210 MVT::SimpleValueType>::const_iterator PTTI =
1211 PromoteToType.find(std::make_pair(Op, VT.SimpleTy));
1212 if (PTTI != PromoteToType.end()) return PTTI->second;
1214 assert((VT.isInteger() || VT.isFloatingPoint()) &&
1215 "Cannot autopromote this type, add it with AddPromotedToType.");
1217 MVT NVT = VT;
1218 do {
1219 NVT = (MVT::SimpleValueType)(NVT.SimpleTy+1);
1220 assert(NVT.isInteger() == VT.isInteger() && NVT != MVT::isVoid &&
1221 "Didn't find type to promote to!");
1222 } while (!isTypeLegal(NVT) ||
1223 getOperationAction(Op, NVT) == Promote);
1224 return NVT;
1227 /// Return the EVT corresponding to this LLVM type. This is fixed by the LLVM
1228 /// operations except for the pointer size. If AllowUnknown is true, this
1229 /// will return MVT::Other for types with no EVT counterpart (e.g. structs),
1230 /// otherwise it will assert.
1231 EVT getValueType(const DataLayout &DL, Type *Ty,
1232 bool AllowUnknown = false) const {
1233 // Lower scalar pointers to native pointer types.
1234 if (auto *PTy = dyn_cast<PointerType>(Ty))
1235 return getPointerTy(DL, PTy->getAddressSpace());
1237 if (auto *VTy = dyn_cast<VectorType>(Ty)) {
1238 Type *EltTy = VTy->getElementType();
1239 // Lower vectors of pointers to native pointer types.
1240 if (auto *PTy = dyn_cast<PointerType>(EltTy)) {
1241 EVT PointerTy(getPointerTy(DL, PTy->getAddressSpace()));
1242 EltTy = PointerTy.getTypeForEVT(Ty->getContext());
1244 return EVT::getVectorVT(Ty->getContext(), EVT::getEVT(EltTy, false),
1245 VTy->getElementCount());
1248 return EVT::getEVT(Ty, AllowUnknown);
1251 EVT getMemValueType(const DataLayout &DL, Type *Ty,
1252 bool AllowUnknown = false) const {
1253 // Lower scalar pointers to native pointer types.
1254 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
1255 return getPointerMemTy(DL, PTy->getAddressSpace());
1256 else if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1257 Type *Elm = VTy->getElementType();
1258 if (PointerType *PT = dyn_cast<PointerType>(Elm)) {
1259 EVT PointerTy(getPointerMemTy(DL, PT->getAddressSpace()));
1260 Elm = PointerTy.getTypeForEVT(Ty->getContext());
1262 return EVT::getVectorVT(Ty->getContext(), EVT::getEVT(Elm, false),
1263 VTy->getNumElements());
1266 return getValueType(DL, Ty, AllowUnknown);
1270 /// Return the MVT corresponding to this LLVM type. See getValueType.
1271 MVT getSimpleValueType(const DataLayout &DL, Type *Ty,
1272 bool AllowUnknown = false) const {
1273 return getValueType(DL, Ty, AllowUnknown).getSimpleVT();
1276 /// Return the desired alignment for ByVal or InAlloca aggregate function
1277 /// arguments in the caller parameter area. This is the actual alignment, not
1278 /// its logarithm.
1279 virtual unsigned getByValTypeAlignment(Type *Ty, const DataLayout &DL) const;
1281 /// Return the type of registers that this ValueType will eventually require.
1282 MVT getRegisterType(MVT VT) const {
1283 assert((unsigned)VT.SimpleTy < array_lengthof(RegisterTypeForVT));
1284 return RegisterTypeForVT[VT.SimpleTy];
1287 /// Return the type of registers that this ValueType will eventually require.
1288 MVT getRegisterType(LLVMContext &Context, EVT VT) const {
1289 if (VT.isSimple()) {
1290 assert((unsigned)VT.getSimpleVT().SimpleTy <
1291 array_lengthof(RegisterTypeForVT));
1292 return RegisterTypeForVT[VT.getSimpleVT().SimpleTy];
1294 if (VT.isVector()) {
1295 EVT VT1;
1296 MVT RegisterVT;
1297 unsigned NumIntermediates;
1298 (void)getVectorTypeBreakdown(Context, VT, VT1,
1299 NumIntermediates, RegisterVT);
1300 return RegisterVT;
1302 if (VT.isInteger()) {
1303 return getRegisterType(Context, getTypeToTransformTo(Context, VT));
1305 llvm_unreachable("Unsupported extended type!");
1308 /// Return the number of registers that this ValueType will eventually
1309 /// require.
1311 /// This is one for any types promoted to live in larger registers, but may be
1312 /// more than one for types (like i64) that are split into pieces. For types
1313 /// like i140, which are first promoted then expanded, it is the number of
1314 /// registers needed to hold all the bits of the original type. For an i140
1315 /// on a 32 bit machine this means 5 registers.
1316 unsigned getNumRegisters(LLVMContext &Context, EVT VT) const {
1317 if (VT.isSimple()) {
1318 assert((unsigned)VT.getSimpleVT().SimpleTy <
1319 array_lengthof(NumRegistersForVT));
1320 return NumRegistersForVT[VT.getSimpleVT().SimpleTy];
1322 if (VT.isVector()) {
1323 EVT VT1;
1324 MVT VT2;
1325 unsigned NumIntermediates;
1326 return getVectorTypeBreakdown(Context, VT, VT1, NumIntermediates, VT2);
1328 if (VT.isInteger()) {
1329 unsigned BitWidth = VT.getSizeInBits();
1330 unsigned RegWidth = getRegisterType(Context, VT).getSizeInBits();
1331 return (BitWidth + RegWidth - 1) / RegWidth;
1333 llvm_unreachable("Unsupported extended type!");
1336 /// Certain combinations of ABIs, Targets and features require that types
1337 /// are legal for some operations and not for other operations.
1338 /// For MIPS all vector types must be passed through the integer register set.
1339 virtual MVT getRegisterTypeForCallingConv(LLVMContext &Context,
1340 CallingConv::ID CC, EVT VT) const {
1341 return getRegisterType(Context, VT);
1344 /// Certain targets require unusual breakdowns of certain types. For MIPS,
1345 /// this occurs when a vector type is used, as vector are passed through the
1346 /// integer register set.
1347 virtual unsigned getNumRegistersForCallingConv(LLVMContext &Context,
1348 CallingConv::ID CC,
1349 EVT VT) const {
1350 return getNumRegisters(Context, VT);
1353 /// Certain targets have context senstive alignment requirements, where one
1354 /// type has the alignment requirement of another type.
1355 virtual unsigned getABIAlignmentForCallingConv(Type *ArgTy,
1356 DataLayout DL) const {
1357 return DL.getABITypeAlignment(ArgTy);
1360 /// If true, then instruction selection should seek to shrink the FP constant
1361 /// of the specified type to a smaller type in order to save space and / or
1362 /// reduce runtime.
1363 virtual bool ShouldShrinkFPConstant(EVT) const { return true; }
1365 /// Return true if it is profitable to reduce a load to a smaller type.
1366 /// Example: (i16 (trunc (i32 (load x))) -> i16 load x
1367 virtual bool shouldReduceLoadWidth(SDNode *Load, ISD::LoadExtType ExtTy,
1368 EVT NewVT) const {
1369 // By default, assume that it is cheaper to extract a subvector from a wide
1370 // vector load rather than creating multiple narrow vector loads.
1371 if (NewVT.isVector() && !Load->hasOneUse())
1372 return false;
1374 return true;
1377 /// When splitting a value of the specified type into parts, does the Lo
1378 /// or Hi part come first? This usually follows the endianness, except
1379 /// for ppcf128, where the Hi part always comes first.
1380 bool hasBigEndianPartOrdering(EVT VT, const DataLayout &DL) const {
1381 return DL.isBigEndian() || VT == MVT::ppcf128;
1384 /// If true, the target has custom DAG combine transformations that it can
1385 /// perform for the specified node.
1386 bool hasTargetDAGCombine(ISD::NodeType NT) const {
1387 assert(unsigned(NT >> 3) < array_lengthof(TargetDAGCombineArray));
1388 return TargetDAGCombineArray[NT >> 3] & (1 << (NT&7));
1391 unsigned getGatherAllAliasesMaxDepth() const {
1392 return GatherAllAliasesMaxDepth;
1395 /// Returns the size of the platform's va_list object.
1396 virtual unsigned getVaListSizeInBits(const DataLayout &DL) const {
1397 return getPointerTy(DL).getSizeInBits();
1400 /// Get maximum # of store operations permitted for llvm.memset
1402 /// This function returns the maximum number of store operations permitted
1403 /// to replace a call to llvm.memset. The value is set by the target at the
1404 /// performance threshold for such a replacement. If OptSize is true,
1405 /// return the limit for functions that have OptSize attribute.
1406 unsigned getMaxStoresPerMemset(bool OptSize) const {
1407 return OptSize ? MaxStoresPerMemsetOptSize : MaxStoresPerMemset;
1410 /// Get maximum # of store operations permitted for llvm.memcpy
1412 /// This function returns the maximum number of store operations permitted
1413 /// to replace a call to llvm.memcpy. The value is set by the target at the
1414 /// performance threshold for such a replacement. If OptSize is true,
1415 /// return the limit for functions that have OptSize attribute.
1416 unsigned getMaxStoresPerMemcpy(bool OptSize) const {
1417 return OptSize ? MaxStoresPerMemcpyOptSize : MaxStoresPerMemcpy;
1420 /// \brief Get maximum # of store operations to be glued together
1422 /// This function returns the maximum number of store operations permitted
1423 /// to glue together during lowering of llvm.memcpy. The value is set by
1424 // the target at the performance threshold for such a replacement.
1425 virtual unsigned getMaxGluedStoresPerMemcpy() const {
1426 return MaxGluedStoresPerMemcpy;
1429 /// Get maximum # of load operations permitted for memcmp
1431 /// This function returns the maximum number of load operations permitted
1432 /// to replace a call to memcmp. The value is set by the target at the
1433 /// performance threshold for such a replacement. If OptSize is true,
1434 /// return the limit for functions that have OptSize attribute.
1435 unsigned getMaxExpandSizeMemcmp(bool OptSize) const {
1436 return OptSize ? MaxLoadsPerMemcmpOptSize : MaxLoadsPerMemcmp;
1439 /// Get maximum # of store operations permitted for llvm.memmove
1441 /// This function returns the maximum number of store operations permitted
1442 /// to replace a call to llvm.memmove. The value is set by the target at the
1443 /// performance threshold for such a replacement. If OptSize is true,
1444 /// return the limit for functions that have OptSize attribute.
1445 unsigned getMaxStoresPerMemmove(bool OptSize) const {
1446 return OptSize ? MaxStoresPerMemmoveOptSize : MaxStoresPerMemmove;
1449 /// Determine if the target supports unaligned memory accesses.
1451 /// This function returns true if the target allows unaligned memory accesses
1452 /// of the specified type in the given address space. If true, it also returns
1453 /// whether the unaligned memory access is "fast" in the last argument by
1454 /// reference. This is used, for example, in situations where an array
1455 /// copy/move/set is converted to a sequence of store operations. Its use
1456 /// helps to ensure that such replacements don't generate code that causes an
1457 /// alignment error (trap) on the target machine.
1458 virtual bool allowsMisalignedMemoryAccesses(
1459 EVT, unsigned AddrSpace = 0, unsigned Align = 1,
1460 MachineMemOperand::Flags Flags = MachineMemOperand::MONone,
1461 bool * /*Fast*/ = nullptr) const {
1462 return false;
1465 /// LLT handling variant.
1466 virtual bool allowsMisalignedMemoryAccesses(
1467 LLT, unsigned AddrSpace = 0, unsigned Align = 1,
1468 MachineMemOperand::Flags Flags = MachineMemOperand::MONone,
1469 bool * /*Fast*/ = nullptr) const {
1470 return false;
1473 /// Return true if the target supports a memory access of this type for the
1474 /// given address space and alignment. If the access is allowed, the optional
1475 /// final parameter returns if the access is also fast (as defined by the
1476 /// target).
1477 bool
1478 allowsMemoryAccess(LLVMContext &Context, const DataLayout &DL, EVT VT,
1479 unsigned AddrSpace = 0, unsigned Alignment = 1,
1480 MachineMemOperand::Flags Flags = MachineMemOperand::MONone,
1481 bool *Fast = nullptr) const;
1483 /// Return true if the target supports a memory access of this type for the
1484 /// given MachineMemOperand. If the access is allowed, the optional
1485 /// final parameter returns if the access is also fast (as defined by the
1486 /// target).
1487 bool allowsMemoryAccess(LLVMContext &Context, const DataLayout &DL, EVT VT,
1488 const MachineMemOperand &MMO,
1489 bool *Fast = nullptr) const;
1491 /// Returns the target specific optimal type for load and store operations as
1492 /// a result of memset, memcpy, and memmove lowering.
1494 /// If DstAlign is zero that means it's safe to destination alignment can
1495 /// satisfy any constraint. Similarly if SrcAlign is zero it means there isn't
1496 /// a need to check it against alignment requirement, probably because the
1497 /// source does not need to be loaded. If 'IsMemset' is true, that means it's
1498 /// expanding a memset. If 'ZeroMemset' is true, that means it's a memset of
1499 /// zero. 'MemcpyStrSrc' indicates whether the memcpy source is constant so it
1500 /// does not need to be loaded. It returns EVT::Other if the type should be
1501 /// determined using generic target-independent logic.
1502 virtual EVT
1503 getOptimalMemOpType(uint64_t /*Size*/, unsigned /*DstAlign*/,
1504 unsigned /*SrcAlign*/, bool /*IsMemset*/,
1505 bool /*ZeroMemset*/, bool /*MemcpyStrSrc*/,
1506 const AttributeList & /*FuncAttributes*/) const {
1507 return MVT::Other;
1511 /// LLT returning variant.
1512 virtual LLT
1513 getOptimalMemOpLLT(uint64_t /*Size*/, unsigned /*DstAlign*/,
1514 unsigned /*SrcAlign*/, bool /*IsMemset*/,
1515 bool /*ZeroMemset*/, bool /*MemcpyStrSrc*/,
1516 const AttributeList & /*FuncAttributes*/) const {
1517 return LLT();
1520 /// Returns true if it's safe to use load / store of the specified type to
1521 /// expand memcpy / memset inline.
1523 /// This is mostly true for all types except for some special cases. For
1524 /// example, on X86 targets without SSE2 f64 load / store are done with fldl /
1525 /// fstpl which also does type conversion. Note the specified type doesn't
1526 /// have to be legal as the hook is used before type legalization.
1527 virtual bool isSafeMemOpType(MVT /*VT*/) const { return true; }
1529 /// Determine if we should use _setjmp or setjmp to implement llvm.setjmp.
1530 bool usesUnderscoreSetJmp() const {
1531 return UseUnderscoreSetJmp;
1534 /// Determine if we should use _longjmp or longjmp to implement llvm.longjmp.
1535 bool usesUnderscoreLongJmp() const {
1536 return UseUnderscoreLongJmp;
1539 /// Return lower limit for number of blocks in a jump table.
1540 virtual unsigned getMinimumJumpTableEntries() const;
1542 /// Return lower limit of the density in a jump table.
1543 unsigned getMinimumJumpTableDensity(bool OptForSize) const;
1545 /// Return upper limit for number of entries in a jump table.
1546 /// Zero if no limit.
1547 unsigned getMaximumJumpTableSize() const;
1549 virtual bool isJumpTableRelative() const {
1550 return TM.isPositionIndependent();
1553 /// If a physical register, this specifies the register that
1554 /// llvm.savestack/llvm.restorestack should save and restore.
1555 unsigned getStackPointerRegisterToSaveRestore() const {
1556 return StackPointerRegisterToSaveRestore;
1559 /// If a physical register, this returns the register that receives the
1560 /// exception address on entry to an EH pad.
1561 virtual unsigned
1562 getExceptionPointerRegister(const Constant *PersonalityFn) const {
1563 // 0 is guaranteed to be the NoRegister value on all targets
1564 return 0;
1567 /// If a physical register, this returns the register that receives the
1568 /// exception typeid on entry to a landing pad.
1569 virtual unsigned
1570 getExceptionSelectorRegister(const Constant *PersonalityFn) const {
1571 // 0 is guaranteed to be the NoRegister value on all targets
1572 return 0;
1575 virtual bool needsFixedCatchObjects() const {
1576 report_fatal_error("Funclet EH is not implemented for this target");
1579 /// Return the minimum stack alignment of an argument.
1580 unsigned getMinStackArgumentAlignment() const {
1581 return MinStackArgumentAlignment.value();
1584 /// Return the minimum function alignment.
1585 unsigned getMinFunctionLogAlignment() const {
1586 return Log2(MinFunctionAlignment);
1589 /// Return the preferred function alignment.
1590 unsigned getPrefFunctionLogAlignment() const {
1591 return Log2(PrefFunctionAlignment);
1594 /// Return the preferred loop alignment.
1595 virtual unsigned getPrefLoopLogAlignment(MachineLoop *ML = nullptr) const {
1596 return Log2(PrefLoopAlignment);
1599 /// Should loops be aligned even when the function is marked OptSize (but not
1600 /// MinSize).
1601 virtual bool alignLoopsWithOptSize() const {
1602 return false;
1605 /// If the target has a standard location for the stack protector guard,
1606 /// returns the address of that location. Otherwise, returns nullptr.
1607 /// DEPRECATED: please override useLoadStackGuardNode and customize
1608 /// LOAD_STACK_GUARD, or customize \@llvm.stackguard().
1609 virtual Value *getIRStackGuard(IRBuilder<> &IRB) const;
1611 /// Inserts necessary declarations for SSP (stack protection) purpose.
1612 /// Should be used only when getIRStackGuard returns nullptr.
1613 virtual void insertSSPDeclarations(Module &M) const;
1615 /// Return the variable that's previously inserted by insertSSPDeclarations,
1616 /// if any, otherwise return nullptr. Should be used only when
1617 /// getIRStackGuard returns nullptr.
1618 virtual Value *getSDagStackGuard(const Module &M) const;
1620 /// If this function returns true, stack protection checks should XOR the
1621 /// frame pointer (or whichever pointer is used to address locals) into the
1622 /// stack guard value before checking it. getIRStackGuard must return nullptr
1623 /// if this returns true.
1624 virtual bool useStackGuardXorFP() const { return false; }
1626 /// If the target has a standard stack protection check function that
1627 /// performs validation and error handling, returns the function. Otherwise,
1628 /// returns nullptr. Must be previously inserted by insertSSPDeclarations.
1629 /// Should be used only when getIRStackGuard returns nullptr.
1630 virtual Function *getSSPStackGuardCheck(const Module &M) const;
1632 protected:
1633 Value *getDefaultSafeStackPointerLocation(IRBuilder<> &IRB,
1634 bool UseTLS) const;
1636 public:
1637 /// Returns the target-specific address of the unsafe stack pointer.
1638 virtual Value *getSafeStackPointerLocation(IRBuilder<> &IRB) const;
1640 /// Returns the name of the symbol used to emit stack probes or the empty
1641 /// string if not applicable.
1642 virtual StringRef getStackProbeSymbolName(MachineFunction &MF) const {
1643 return "";
1646 /// Returns true if a cast between SrcAS and DestAS is a noop.
1647 virtual bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const {
1648 return false;
1651 /// Returns true if a cast from SrcAS to DestAS is "cheap", such that e.g. we
1652 /// are happy to sink it into basic blocks. A cast may be free, but not
1653 /// necessarily a no-op. e.g. a free truncate from a 64-bit to 32-bit pointer.
1654 virtual bool isFreeAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const {
1655 return isNoopAddrSpaceCast(SrcAS, DestAS);
1658 /// Return true if the pointer arguments to CI should be aligned by aligning
1659 /// the object whose address is being passed. If so then MinSize is set to the
1660 /// minimum size the object must be to be aligned and PrefAlign is set to the
1661 /// preferred alignment.
1662 virtual bool shouldAlignPointerArgs(CallInst * /*CI*/, unsigned & /*MinSize*/,
1663 unsigned & /*PrefAlign*/) const {
1664 return false;
1667 //===--------------------------------------------------------------------===//
1668 /// \name Helpers for TargetTransformInfo implementations
1669 /// @{
1671 /// Get the ISD node that corresponds to the Instruction class opcode.
1672 int InstructionOpcodeToISD(unsigned Opcode) const;
1674 /// Estimate the cost of type-legalization and the legalized type.
1675 std::pair<int, MVT> getTypeLegalizationCost(const DataLayout &DL,
1676 Type *Ty) const;
1678 /// @}
1680 //===--------------------------------------------------------------------===//
1681 /// \name Helpers for atomic expansion.
1682 /// @{
1684 /// Returns the maximum atomic operation size (in bits) supported by
1685 /// the backend. Atomic operations greater than this size (as well
1686 /// as ones that are not naturally aligned), will be expanded by
1687 /// AtomicExpandPass into an __atomic_* library call.
1688 unsigned getMaxAtomicSizeInBitsSupported() const {
1689 return MaxAtomicSizeInBitsSupported;
1692 /// Returns the size of the smallest cmpxchg or ll/sc instruction
1693 /// the backend supports. Any smaller operations are widened in
1694 /// AtomicExpandPass.
1696 /// Note that *unlike* operations above the maximum size, atomic ops
1697 /// are still natively supported below the minimum; they just
1698 /// require a more complex expansion.
1699 unsigned getMinCmpXchgSizeInBits() const { return MinCmpXchgSizeInBits; }
1701 /// Whether the target supports unaligned atomic operations.
1702 bool supportsUnalignedAtomics() const { return SupportsUnalignedAtomics; }
1704 /// Whether AtomicExpandPass should automatically insert fences and reduce
1705 /// ordering for this atomic. This should be true for most architectures with
1706 /// weak memory ordering. Defaults to false.
1707 virtual bool shouldInsertFencesForAtomic(const Instruction *I) const {
1708 return false;
1711 /// Perform a load-linked operation on Addr, returning a "Value *" with the
1712 /// corresponding pointee type. This may entail some non-trivial operations to
1713 /// truncate or reconstruct types that will be illegal in the backend. See
1714 /// ARMISelLowering for an example implementation.
1715 virtual Value *emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
1716 AtomicOrdering Ord) const {
1717 llvm_unreachable("Load linked unimplemented on this target");
1720 /// Perform a store-conditional operation to Addr. Return the status of the
1721 /// store. This should be 0 if the store succeeded, non-zero otherwise.
1722 virtual Value *emitStoreConditional(IRBuilder<> &Builder, Value *Val,
1723 Value *Addr, AtomicOrdering Ord) const {
1724 llvm_unreachable("Store conditional unimplemented on this target");
1727 /// Perform a masked atomicrmw using a target-specific intrinsic. This
1728 /// represents the core LL/SC loop which will be lowered at a late stage by
1729 /// the backend.
1730 virtual Value *emitMaskedAtomicRMWIntrinsic(IRBuilder<> &Builder,
1731 AtomicRMWInst *AI,
1732 Value *AlignedAddr, Value *Incr,
1733 Value *Mask, Value *ShiftAmt,
1734 AtomicOrdering Ord) const {
1735 llvm_unreachable("Masked atomicrmw expansion unimplemented on this target");
1738 /// Perform a masked cmpxchg using a target-specific intrinsic. This
1739 /// represents the core LL/SC loop which will be lowered at a late stage by
1740 /// the backend.
1741 virtual Value *emitMaskedAtomicCmpXchgIntrinsic(
1742 IRBuilder<> &Builder, AtomicCmpXchgInst *CI, Value *AlignedAddr,
1743 Value *CmpVal, Value *NewVal, Value *Mask, AtomicOrdering Ord) const {
1744 llvm_unreachable("Masked cmpxchg expansion unimplemented on this target");
1747 /// Inserts in the IR a target-specific intrinsic specifying a fence.
1748 /// It is called by AtomicExpandPass before expanding an
1749 /// AtomicRMW/AtomicCmpXchg/AtomicStore/AtomicLoad
1750 /// if shouldInsertFencesForAtomic returns true.
1752 /// Inst is the original atomic instruction, prior to other expansions that
1753 /// may be performed.
1755 /// This function should either return a nullptr, or a pointer to an IR-level
1756 /// Instruction*. Even complex fence sequences can be represented by a
1757 /// single Instruction* through an intrinsic to be lowered later.
1758 /// Backends should override this method to produce target-specific intrinsic
1759 /// for their fences.
1760 /// FIXME: Please note that the default implementation here in terms of
1761 /// IR-level fences exists for historical/compatibility reasons and is
1762 /// *unsound* ! Fences cannot, in general, be used to restore sequential
1763 /// consistency. For example, consider the following example:
1764 /// atomic<int> x = y = 0;
1765 /// int r1, r2, r3, r4;
1766 /// Thread 0:
1767 /// x.store(1);
1768 /// Thread 1:
1769 /// y.store(1);
1770 /// Thread 2:
1771 /// r1 = x.load();
1772 /// r2 = y.load();
1773 /// Thread 3:
1774 /// r3 = y.load();
1775 /// r4 = x.load();
1776 /// r1 = r3 = 1 and r2 = r4 = 0 is impossible as long as the accesses are all
1777 /// seq_cst. But if they are lowered to monotonic accesses, no amount of
1778 /// IR-level fences can prevent it.
1779 /// @{
1780 virtual Instruction *emitLeadingFence(IRBuilder<> &Builder, Instruction *Inst,
1781 AtomicOrdering Ord) const {
1782 if (isReleaseOrStronger(Ord) && Inst->hasAtomicStore())
1783 return Builder.CreateFence(Ord);
1784 else
1785 return nullptr;
1788 virtual Instruction *emitTrailingFence(IRBuilder<> &Builder,
1789 Instruction *Inst,
1790 AtomicOrdering Ord) const {
1791 if (isAcquireOrStronger(Ord))
1792 return Builder.CreateFence(Ord);
1793 else
1794 return nullptr;
1796 /// @}
1798 // Emits code that executes when the comparison result in the ll/sc
1799 // expansion of a cmpxchg instruction is such that the store-conditional will
1800 // not execute. This makes it possible to balance out the load-linked with
1801 // a dedicated instruction, if desired.
1802 // E.g., on ARM, if ldrex isn't followed by strex, the exclusive monitor would
1803 // be unnecessarily held, except if clrex, inserted by this hook, is executed.
1804 virtual void emitAtomicCmpXchgNoStoreLLBalance(IRBuilder<> &Builder) const {}
1806 /// Returns true if the given (atomic) store should be expanded by the
1807 /// IR-level AtomicExpand pass into an "atomic xchg" which ignores its input.
1808 virtual bool shouldExpandAtomicStoreInIR(StoreInst *SI) const {
1809 return false;
1812 /// Returns true if arguments should be sign-extended in lib calls.
1813 virtual bool shouldSignExtendTypeInLibCall(EVT Type, bool IsSigned) const {
1814 return IsSigned;
1817 /// Returns true if arguments should be extended in lib calls.
1818 virtual bool shouldExtendTypeInLibCall(EVT Type) const {
1819 return true;
1822 /// Returns how the given (atomic) load should be expanded by the
1823 /// IR-level AtomicExpand pass.
1824 virtual AtomicExpansionKind shouldExpandAtomicLoadInIR(LoadInst *LI) const {
1825 return AtomicExpansionKind::None;
1828 /// Returns how the given atomic cmpxchg should be expanded by the IR-level
1829 /// AtomicExpand pass.
1830 virtual AtomicExpansionKind
1831 shouldExpandAtomicCmpXchgInIR(AtomicCmpXchgInst *AI) const {
1832 return AtomicExpansionKind::None;
1835 /// Returns how the IR-level AtomicExpand pass should expand the given
1836 /// AtomicRMW, if at all. Default is to never expand.
1837 virtual AtomicExpansionKind shouldExpandAtomicRMWInIR(AtomicRMWInst *RMW) const {
1838 return RMW->isFloatingPointOperation() ?
1839 AtomicExpansionKind::CmpXChg : AtomicExpansionKind::None;
1842 /// On some platforms, an AtomicRMW that never actually modifies the value
1843 /// (such as fetch_add of 0) can be turned into a fence followed by an
1844 /// atomic load. This may sound useless, but it makes it possible for the
1845 /// processor to keep the cacheline shared, dramatically improving
1846 /// performance. And such idempotent RMWs are useful for implementing some
1847 /// kinds of locks, see for example (justification + benchmarks):
1848 /// http://www.hpl.hp.com/techreports/2012/HPL-2012-68.pdf
1849 /// This method tries doing that transformation, returning the atomic load if
1850 /// it succeeds, and nullptr otherwise.
1851 /// If shouldExpandAtomicLoadInIR returns true on that load, it will undergo
1852 /// another round of expansion.
1853 virtual LoadInst *
1854 lowerIdempotentRMWIntoFencedLoad(AtomicRMWInst *RMWI) const {
1855 return nullptr;
1858 /// Returns how the platform's atomic operations are extended (ZERO_EXTEND,
1859 /// SIGN_EXTEND, or ANY_EXTEND).
1860 virtual ISD::NodeType getExtendForAtomicOps() const {
1861 return ISD::ZERO_EXTEND;
1864 /// @}
1866 /// Returns true if we should normalize
1867 /// select(N0&N1, X, Y) => select(N0, select(N1, X, Y), Y) and
1868 /// select(N0|N1, X, Y) => select(N0, select(N1, X, Y, Y)) if it is likely
1869 /// that it saves us from materializing N0 and N1 in an integer register.
1870 /// Targets that are able to perform and/or on flags should return false here.
1871 virtual bool shouldNormalizeToSelectSequence(LLVMContext &Context,
1872 EVT VT) const {
1873 // If a target has multiple condition registers, then it likely has logical
1874 // operations on those registers.
1875 if (hasMultipleConditionRegisters())
1876 return false;
1877 // Only do the transform if the value won't be split into multiple
1878 // registers.
1879 LegalizeTypeAction Action = getTypeAction(Context, VT);
1880 return Action != TypeExpandInteger && Action != TypeExpandFloat &&
1881 Action != TypeSplitVector;
1884 virtual bool isProfitableToCombineMinNumMaxNum(EVT VT) const { return true; }
1886 /// Return true if a select of constants (select Cond, C1, C2) should be
1887 /// transformed into simple math ops with the condition value. For example:
1888 /// select Cond, C1, C1-1 --> add (zext Cond), C1-1
1889 virtual bool convertSelectOfConstantsToMath(EVT VT) const {
1890 return false;
1893 /// Return true if it is profitable to transform an integer
1894 /// multiplication-by-constant into simpler operations like shifts and adds.
1895 /// This may be true if the target does not directly support the
1896 /// multiplication operation for the specified type or the sequence of simpler
1897 /// ops is faster than the multiply.
1898 virtual bool decomposeMulByConstant(LLVMContext &Context,
1899 EVT VT, SDValue C) const {
1900 return false;
1903 /// Return true if it is more correct/profitable to use strict FP_TO_INT
1904 /// conversion operations - canonicalizing the FP source value instead of
1905 /// converting all cases and then selecting based on value.
1906 /// This may be true if the target throws exceptions for out of bounds
1907 /// conversions or has fast FP CMOV.
1908 virtual bool shouldUseStrictFP_TO_INT(EVT FpVT, EVT IntVT,
1909 bool IsSigned) const {
1910 return false;
1913 //===--------------------------------------------------------------------===//
1914 // TargetLowering Configuration Methods - These methods should be invoked by
1915 // the derived class constructor to configure this object for the target.
1917 protected:
1918 /// Specify how the target extends the result of integer and floating point
1919 /// boolean values from i1 to a wider type. See getBooleanContents.
1920 void setBooleanContents(BooleanContent Ty) {
1921 BooleanContents = Ty;
1922 BooleanFloatContents = Ty;
1925 /// Specify how the target extends the result of integer and floating point
1926 /// boolean values from i1 to a wider type. See getBooleanContents.
1927 void setBooleanContents(BooleanContent IntTy, BooleanContent FloatTy) {
1928 BooleanContents = IntTy;
1929 BooleanFloatContents = FloatTy;
1932 /// Specify how the target extends the result of a vector boolean value from a
1933 /// vector of i1 to a wider type. See getBooleanContents.
1934 void setBooleanVectorContents(BooleanContent Ty) {
1935 BooleanVectorContents = Ty;
1938 /// Specify the target scheduling preference.
1939 void setSchedulingPreference(Sched::Preference Pref) {
1940 SchedPreferenceInfo = Pref;
1943 /// Indicate whether this target prefers to use _setjmp to implement
1944 /// llvm.setjmp or the version without _. Defaults to false.
1945 void setUseUnderscoreSetJmp(bool Val) {
1946 UseUnderscoreSetJmp = Val;
1949 /// Indicate whether this target prefers to use _longjmp to implement
1950 /// llvm.longjmp or the version without _. Defaults to false.
1951 void setUseUnderscoreLongJmp(bool Val) {
1952 UseUnderscoreLongJmp = Val;
1955 /// Indicate the minimum number of blocks to generate jump tables.
1956 void setMinimumJumpTableEntries(unsigned Val);
1958 /// Indicate the maximum number of entries in jump tables.
1959 /// Set to zero to generate unlimited jump tables.
1960 void setMaximumJumpTableSize(unsigned);
1962 /// If set to a physical register, this specifies the register that
1963 /// llvm.savestack/llvm.restorestack should save and restore.
1964 void setStackPointerRegisterToSaveRestore(unsigned R) {
1965 StackPointerRegisterToSaveRestore = R;
1968 /// Tells the code generator that the target has multiple (allocatable)
1969 /// condition registers that can be used to store the results of comparisons
1970 /// for use by selects and conditional branches. With multiple condition
1971 /// registers, the code generator will not aggressively sink comparisons into
1972 /// the blocks of their users.
1973 void setHasMultipleConditionRegisters(bool hasManyRegs = true) {
1974 HasMultipleConditionRegisters = hasManyRegs;
1977 /// Tells the code generator that the target has BitExtract instructions.
1978 /// The code generator will aggressively sink "shift"s into the blocks of
1979 /// their users if the users will generate "and" instructions which can be
1980 /// combined with "shift" to BitExtract instructions.
1981 void setHasExtractBitsInsn(bool hasExtractInsn = true) {
1982 HasExtractBitsInsn = hasExtractInsn;
1985 /// Tells the code generator not to expand logic operations on comparison
1986 /// predicates into separate sequences that increase the amount of flow
1987 /// control.
1988 void setJumpIsExpensive(bool isExpensive = true);
1990 /// Tells the code generator which bitwidths to bypass.
1991 void addBypassSlowDiv(unsigned int SlowBitWidth, unsigned int FastBitWidth) {
1992 BypassSlowDivWidths[SlowBitWidth] = FastBitWidth;
1995 /// Add the specified register class as an available regclass for the
1996 /// specified value type. This indicates the selector can handle values of
1997 /// that class natively.
1998 void addRegisterClass(MVT VT, const TargetRegisterClass *RC) {
1999 assert((unsigned)VT.SimpleTy < array_lengthof(RegClassForVT));
2000 RegClassForVT[VT.SimpleTy] = RC;
2003 /// Return the largest legal super-reg register class of the register class
2004 /// for the specified type and its associated "cost".
2005 virtual std::pair<const TargetRegisterClass *, uint8_t>
2006 findRepresentativeClass(const TargetRegisterInfo *TRI, MVT VT) const;
2008 /// Once all of the register classes are added, this allows us to compute
2009 /// derived properties we expose.
2010 void computeRegisterProperties(const TargetRegisterInfo *TRI);
2012 /// Indicate that the specified operation does not work with the specified
2013 /// type and indicate what to do about it. Note that VT may refer to either
2014 /// the type of a result or that of an operand of Op.
2015 void setOperationAction(unsigned Op, MVT VT,
2016 LegalizeAction Action) {
2017 assert(Op < array_lengthof(OpActions[0]) && "Table isn't big enough!");
2018 OpActions[(unsigned)VT.SimpleTy][Op] = Action;
2021 /// Indicate that the specified load with extension does not work with the
2022 /// specified type and indicate what to do about it.
2023 void setLoadExtAction(unsigned ExtType, MVT ValVT, MVT MemVT,
2024 LegalizeAction Action) {
2025 assert(ExtType < ISD::LAST_LOADEXT_TYPE && ValVT.isValid() &&
2026 MemVT.isValid() && "Table isn't big enough!");
2027 assert((unsigned)Action < 0x10 && "too many bits for bitfield array");
2028 unsigned Shift = 4 * ExtType;
2029 LoadExtActions[ValVT.SimpleTy][MemVT.SimpleTy] &= ~((uint16_t)0xF << Shift);
2030 LoadExtActions[ValVT.SimpleTy][MemVT.SimpleTy] |= (uint16_t)Action << Shift;
2033 /// Indicate that the specified truncating store does not work with the
2034 /// specified type and indicate what to do about it.
2035 void setTruncStoreAction(MVT ValVT, MVT MemVT,
2036 LegalizeAction Action) {
2037 assert(ValVT.isValid() && MemVT.isValid() && "Table isn't big enough!");
2038 TruncStoreActions[(unsigned)ValVT.SimpleTy][MemVT.SimpleTy] = Action;
2041 /// Indicate that the specified indexed load does or does not work with the
2042 /// specified type and indicate what to do abort it.
2044 /// NOTE: All indexed mode loads are initialized to Expand in
2045 /// TargetLowering.cpp
2046 void setIndexedLoadAction(unsigned IdxMode, MVT VT,
2047 LegalizeAction Action) {
2048 assert(VT.isValid() && IdxMode < ISD::LAST_INDEXED_MODE &&
2049 (unsigned)Action < 0xf && "Table isn't big enough!");
2050 // Load action are kept in the upper half.
2051 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] &= ~0xf0;
2052 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] |= ((uint8_t)Action) <<4;
2055 /// Indicate that the specified indexed store does or does not work with the
2056 /// specified type and indicate what to do about it.
2058 /// NOTE: All indexed mode stores are initialized to Expand in
2059 /// TargetLowering.cpp
2060 void setIndexedStoreAction(unsigned IdxMode, MVT VT,
2061 LegalizeAction Action) {
2062 assert(VT.isValid() && IdxMode < ISD::LAST_INDEXED_MODE &&
2063 (unsigned)Action < 0xf && "Table isn't big enough!");
2064 // Store action are kept in the lower half.
2065 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] &= ~0x0f;
2066 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] |= ((uint8_t)Action);
2069 /// Indicate that the specified condition code is or isn't supported on the
2070 /// target and indicate what to do about it.
2071 void setCondCodeAction(ISD::CondCode CC, MVT VT,
2072 LegalizeAction Action) {
2073 assert(VT.isValid() && (unsigned)CC < array_lengthof(CondCodeActions) &&
2074 "Table isn't big enough!");
2075 assert((unsigned)Action < 0x10 && "too many bits for bitfield array");
2076 /// The lower 3 bits of the SimpleTy index into Nth 4bit set from the 32-bit
2077 /// value and the upper 29 bits index into the second dimension of the array
2078 /// to select what 32-bit value to use.
2079 uint32_t Shift = 4 * (VT.SimpleTy & 0x7);
2080 CondCodeActions[CC][VT.SimpleTy >> 3] &= ~((uint32_t)0xF << Shift);
2081 CondCodeActions[CC][VT.SimpleTy >> 3] |= (uint32_t)Action << Shift;
2084 /// If Opc/OrigVT is specified as being promoted, the promotion code defaults
2085 /// to trying a larger integer/fp until it can find one that works. If that
2086 /// default is insufficient, this method can be used by the target to override
2087 /// the default.
2088 void AddPromotedToType(unsigned Opc, MVT OrigVT, MVT DestVT) {
2089 PromoteToType[std::make_pair(Opc, OrigVT.SimpleTy)] = DestVT.SimpleTy;
2092 /// Convenience method to set an operation to Promote and specify the type
2093 /// in a single call.
2094 void setOperationPromotedToType(unsigned Opc, MVT OrigVT, MVT DestVT) {
2095 setOperationAction(Opc, OrigVT, Promote);
2096 AddPromotedToType(Opc, OrigVT, DestVT);
2099 /// Targets should invoke this method for each target independent node that
2100 /// they want to provide a custom DAG combiner for by implementing the
2101 /// PerformDAGCombine virtual method.
2102 void setTargetDAGCombine(ISD::NodeType NT) {
2103 assert(unsigned(NT >> 3) < array_lengthof(TargetDAGCombineArray));
2104 TargetDAGCombineArray[NT >> 3] |= 1 << (NT&7);
2107 /// Set the target's minimum function alignment.
2108 void setMinFunctionAlignment(llvm::Align Align) {
2109 MinFunctionAlignment = Align;
2112 /// Set the target's preferred function alignment. This should be set if
2113 /// there is a performance benefit to higher-than-minimum alignment (in
2114 /// log2(bytes))
2115 void setPrefFunctionLogAlignment(unsigned LogAlign) {
2116 PrefFunctionAlignment = llvm::Align(1ULL << LogAlign);
2119 /// Set the target's preferred loop alignment. Default alignment is one, it
2120 /// means the target does not care about loop alignment. The target may also
2121 /// override getPrefLoopAlignment to provide per-loop values.
2122 void setPrefLoopAlignment(llvm::Align Align) { PrefLoopAlignment = Align; }
2124 /// Set the minimum stack alignment of an argument.
2125 void setMinStackArgumentAlignment(unsigned Align) {
2126 MinStackArgumentAlignment = llvm::Align(Align);
2129 /// Set the maximum atomic operation size supported by the
2130 /// backend. Atomic operations greater than this size (as well as
2131 /// ones that are not naturally aligned), will be expanded by
2132 /// AtomicExpandPass into an __atomic_* library call.
2133 void setMaxAtomicSizeInBitsSupported(unsigned SizeInBits) {
2134 MaxAtomicSizeInBitsSupported = SizeInBits;
2137 /// Sets the minimum cmpxchg or ll/sc size supported by the backend.
2138 void setMinCmpXchgSizeInBits(unsigned SizeInBits) {
2139 MinCmpXchgSizeInBits = SizeInBits;
2142 /// Sets whether unaligned atomic operations are supported.
2143 void setSupportsUnalignedAtomics(bool UnalignedSupported) {
2144 SupportsUnalignedAtomics = UnalignedSupported;
2147 public:
2148 //===--------------------------------------------------------------------===//
2149 // Addressing mode description hooks (used by LSR etc).
2152 /// CodeGenPrepare sinks address calculations into the same BB as Load/Store
2153 /// instructions reading the address. This allows as much computation as
2154 /// possible to be done in the address mode for that operand. This hook lets
2155 /// targets also pass back when this should be done on intrinsics which
2156 /// load/store.
2157 virtual bool getAddrModeArguments(IntrinsicInst * /*I*/,
2158 SmallVectorImpl<Value*> &/*Ops*/,
2159 Type *&/*AccessTy*/) const {
2160 return false;
2163 /// This represents an addressing mode of:
2164 /// BaseGV + BaseOffs + BaseReg + Scale*ScaleReg
2165 /// If BaseGV is null, there is no BaseGV.
2166 /// If BaseOffs is zero, there is no base offset.
2167 /// If HasBaseReg is false, there is no base register.
2168 /// If Scale is zero, there is no ScaleReg. Scale of 1 indicates a reg with
2169 /// no scale.
2170 struct AddrMode {
2171 GlobalValue *BaseGV = nullptr;
2172 int64_t BaseOffs = 0;
2173 bool HasBaseReg = false;
2174 int64_t Scale = 0;
2175 AddrMode() = default;
2178 /// Return true if the addressing mode represented by AM is legal for this
2179 /// target, for a load/store of the specified type.
2181 /// The type may be VoidTy, in which case only return true if the addressing
2182 /// mode is legal for a load/store of any legal type. TODO: Handle
2183 /// pre/postinc as well.
2185 /// If the address space cannot be determined, it will be -1.
2187 /// TODO: Remove default argument
2188 virtual bool isLegalAddressingMode(const DataLayout &DL, const AddrMode &AM,
2189 Type *Ty, unsigned AddrSpace,
2190 Instruction *I = nullptr) const;
2192 /// Return the cost of the scaling factor used in the addressing mode
2193 /// represented by AM for this target, for a load/store of the specified type.
2195 /// If the AM is supported, the return value must be >= 0.
2196 /// If the AM is not supported, it returns a negative value.
2197 /// TODO: Handle pre/postinc as well.
2198 /// TODO: Remove default argument
2199 virtual int getScalingFactorCost(const DataLayout &DL, const AddrMode &AM,
2200 Type *Ty, unsigned AS = 0) const {
2201 // Default: assume that any scaling factor used in a legal AM is free.
2202 if (isLegalAddressingMode(DL, AM, Ty, AS))
2203 return 0;
2204 return -1;
2207 /// Return true if the specified immediate is legal icmp immediate, that is
2208 /// the target has icmp instructions which can compare a register against the
2209 /// immediate without having to materialize the immediate into a register.
2210 virtual bool isLegalICmpImmediate(int64_t) const {
2211 return true;
2214 /// Return true if the specified immediate is legal add immediate, that is the
2215 /// target has add instructions which can add a register with the immediate
2216 /// without having to materialize the immediate into a register.
2217 virtual bool isLegalAddImmediate(int64_t) const {
2218 return true;
2221 /// Return true if the specified immediate is legal for the value input of a
2222 /// store instruction.
2223 virtual bool isLegalStoreImmediate(int64_t Value) const {
2224 // Default implementation assumes that at least 0 works since it is likely
2225 // that a zero register exists or a zero immediate is allowed.
2226 return Value == 0;
2229 /// Return true if it's significantly cheaper to shift a vector by a uniform
2230 /// scalar than by an amount which will vary across each lane. On x86, for
2231 /// example, there is a "psllw" instruction for the former case, but no simple
2232 /// instruction for a general "a << b" operation on vectors.
2233 virtual bool isVectorShiftByScalarCheap(Type *Ty) const {
2234 return false;
2237 /// Returns true if the opcode is a commutative binary operation.
2238 virtual bool isCommutativeBinOp(unsigned Opcode) const {
2239 // FIXME: This should get its info from the td file.
2240 switch (Opcode) {
2241 case ISD::ADD:
2242 case ISD::SMIN:
2243 case ISD::SMAX:
2244 case ISD::UMIN:
2245 case ISD::UMAX:
2246 case ISD::MUL:
2247 case ISD::MULHU:
2248 case ISD::MULHS:
2249 case ISD::SMUL_LOHI:
2250 case ISD::UMUL_LOHI:
2251 case ISD::FADD:
2252 case ISD::FMUL:
2253 case ISD::AND:
2254 case ISD::OR:
2255 case ISD::XOR:
2256 case ISD::SADDO:
2257 case ISD::UADDO:
2258 case ISD::ADDC:
2259 case ISD::ADDE:
2260 case ISD::SADDSAT:
2261 case ISD::UADDSAT:
2262 case ISD::FMINNUM:
2263 case ISD::FMAXNUM:
2264 case ISD::FMINNUM_IEEE:
2265 case ISD::FMAXNUM_IEEE:
2266 case ISD::FMINIMUM:
2267 case ISD::FMAXIMUM:
2268 return true;
2269 default: return false;
2273 /// Return true if the node is a math/logic binary operator.
2274 virtual bool isBinOp(unsigned Opcode) const {
2275 // A commutative binop must be a binop.
2276 if (isCommutativeBinOp(Opcode))
2277 return true;
2278 // These are non-commutative binops.
2279 switch (Opcode) {
2280 case ISD::SUB:
2281 case ISD::SHL:
2282 case ISD::SRL:
2283 case ISD::SRA:
2284 case ISD::SDIV:
2285 case ISD::UDIV:
2286 case ISD::SREM:
2287 case ISD::UREM:
2288 case ISD::FSUB:
2289 case ISD::FDIV:
2290 case ISD::FREM:
2291 return true;
2292 default:
2293 return false;
2297 /// Return true if it's free to truncate a value of type FromTy to type
2298 /// ToTy. e.g. On x86 it's free to truncate a i32 value in register EAX to i16
2299 /// by referencing its sub-register AX.
2300 /// Targets must return false when FromTy <= ToTy.
2301 virtual bool isTruncateFree(Type *FromTy, Type *ToTy) const {
2302 return false;
2305 /// Return true if a truncation from FromTy to ToTy is permitted when deciding
2306 /// whether a call is in tail position. Typically this means that both results
2307 /// would be assigned to the same register or stack slot, but it could mean
2308 /// the target performs adequate checks of its own before proceeding with the
2309 /// tail call. Targets must return false when FromTy <= ToTy.
2310 virtual bool allowTruncateForTailCall(Type *FromTy, Type *ToTy) const {
2311 return false;
2314 virtual bool isTruncateFree(EVT FromVT, EVT ToVT) const {
2315 return false;
2318 virtual bool isProfitableToHoist(Instruction *I) const { return true; }
2320 /// Return true if the extension represented by \p I is free.
2321 /// Unlikely the is[Z|FP]ExtFree family which is based on types,
2322 /// this method can use the context provided by \p I to decide
2323 /// whether or not \p I is free.
2324 /// This method extends the behavior of the is[Z|FP]ExtFree family.
2325 /// In other words, if is[Z|FP]Free returns true, then this method
2326 /// returns true as well. The converse is not true.
2327 /// The target can perform the adequate checks by overriding isExtFreeImpl.
2328 /// \pre \p I must be a sign, zero, or fp extension.
2329 bool isExtFree(const Instruction *I) const {
2330 switch (I->getOpcode()) {
2331 case Instruction::FPExt:
2332 if (isFPExtFree(EVT::getEVT(I->getType()),
2333 EVT::getEVT(I->getOperand(0)->getType())))
2334 return true;
2335 break;
2336 case Instruction::ZExt:
2337 if (isZExtFree(I->getOperand(0)->getType(), I->getType()))
2338 return true;
2339 break;
2340 case Instruction::SExt:
2341 break;
2342 default:
2343 llvm_unreachable("Instruction is not an extension");
2345 return isExtFreeImpl(I);
2348 /// Return true if \p Load and \p Ext can form an ExtLoad.
2349 /// For example, in AArch64
2350 /// %L = load i8, i8* %ptr
2351 /// %E = zext i8 %L to i32
2352 /// can be lowered into one load instruction
2353 /// ldrb w0, [x0]
2354 bool isExtLoad(const LoadInst *Load, const Instruction *Ext,
2355 const DataLayout &DL) const {
2356 EVT VT = getValueType(DL, Ext->getType());
2357 EVT LoadVT = getValueType(DL, Load->getType());
2359 // If the load has other users and the truncate is not free, the ext
2360 // probably isn't free.
2361 if (!Load->hasOneUse() && (isTypeLegal(LoadVT) || !isTypeLegal(VT)) &&
2362 !isTruncateFree(Ext->getType(), Load->getType()))
2363 return false;
2365 // Check whether the target supports casts folded into loads.
2366 unsigned LType;
2367 if (isa<ZExtInst>(Ext))
2368 LType = ISD::ZEXTLOAD;
2369 else {
2370 assert(isa<SExtInst>(Ext) && "Unexpected ext type!");
2371 LType = ISD::SEXTLOAD;
2374 return isLoadExtLegal(LType, VT, LoadVT);
2377 /// Return true if any actual instruction that defines a value of type FromTy
2378 /// implicitly zero-extends the value to ToTy in the result register.
2380 /// The function should return true when it is likely that the truncate can
2381 /// be freely folded with an instruction defining a value of FromTy. If
2382 /// the defining instruction is unknown (because you're looking at a
2383 /// function argument, PHI, etc.) then the target may require an
2384 /// explicit truncate, which is not necessarily free, but this function
2385 /// does not deal with those cases.
2386 /// Targets must return false when FromTy >= ToTy.
2387 virtual bool isZExtFree(Type *FromTy, Type *ToTy) const {
2388 return false;
2391 virtual bool isZExtFree(EVT FromTy, EVT ToTy) const {
2392 return false;
2395 /// Return true if sign-extension from FromTy to ToTy is cheaper than
2396 /// zero-extension.
2397 virtual bool isSExtCheaperThanZExt(EVT FromTy, EVT ToTy) const {
2398 return false;
2401 /// Return true if sinking I's operands to the same basic block as I is
2402 /// profitable, e.g. because the operands can be folded into a target
2403 /// instruction during instruction selection. After calling the function
2404 /// \p Ops contains the Uses to sink ordered by dominance (dominating users
2405 /// come first).
2406 virtual bool shouldSinkOperands(Instruction *I,
2407 SmallVectorImpl<Use *> &Ops) const {
2408 return false;
2411 /// Return true if the target supplies and combines to a paired load
2412 /// two loaded values of type LoadedType next to each other in memory.
2413 /// RequiredAlignment gives the minimal alignment constraints that must be met
2414 /// to be able to select this paired load.
2416 /// This information is *not* used to generate actual paired loads, but it is
2417 /// used to generate a sequence of loads that is easier to combine into a
2418 /// paired load.
2419 /// For instance, something like this:
2420 /// a = load i64* addr
2421 /// b = trunc i64 a to i32
2422 /// c = lshr i64 a, 32
2423 /// d = trunc i64 c to i32
2424 /// will be optimized into:
2425 /// b = load i32* addr1
2426 /// d = load i32* addr2
2427 /// Where addr1 = addr2 +/- sizeof(i32).
2429 /// In other words, unless the target performs a post-isel load combining,
2430 /// this information should not be provided because it will generate more
2431 /// loads.
2432 virtual bool hasPairedLoad(EVT /*LoadedType*/,
2433 unsigned & /*RequiredAlignment*/) const {
2434 return false;
2437 /// Return true if the target has a vector blend instruction.
2438 virtual bool hasVectorBlend() const { return false; }
2440 /// Get the maximum supported factor for interleaved memory accesses.
2441 /// Default to be the minimum interleave factor: 2.
2442 virtual unsigned getMaxSupportedInterleaveFactor() const { return 2; }
2444 /// Lower an interleaved load to target specific intrinsics. Return
2445 /// true on success.
2447 /// \p LI is the vector load instruction.
2448 /// \p Shuffles is the shufflevector list to DE-interleave the loaded vector.
2449 /// \p Indices is the corresponding indices for each shufflevector.
2450 /// \p Factor is the interleave factor.
2451 virtual bool lowerInterleavedLoad(LoadInst *LI,
2452 ArrayRef<ShuffleVectorInst *> Shuffles,
2453 ArrayRef<unsigned> Indices,
2454 unsigned Factor) const {
2455 return false;
2458 /// Lower an interleaved store to target specific intrinsics. Return
2459 /// true on success.
2461 /// \p SI is the vector store instruction.
2462 /// \p SVI is the shufflevector to RE-interleave the stored vector.
2463 /// \p Factor is the interleave factor.
2464 virtual bool lowerInterleavedStore(StoreInst *SI, ShuffleVectorInst *SVI,
2465 unsigned Factor) const {
2466 return false;
2469 /// Return true if zero-extending the specific node Val to type VT2 is free
2470 /// (either because it's implicitly zero-extended such as ARM ldrb / ldrh or
2471 /// because it's folded such as X86 zero-extending loads).
2472 virtual bool isZExtFree(SDValue Val, EVT VT2) const {
2473 return isZExtFree(Val.getValueType(), VT2);
2476 /// Return true if an fpext operation is free (for instance, because
2477 /// single-precision floating-point numbers are implicitly extended to
2478 /// double-precision).
2479 virtual bool isFPExtFree(EVT DestVT, EVT SrcVT) const {
2480 assert(SrcVT.isFloatingPoint() && DestVT.isFloatingPoint() &&
2481 "invalid fpext types");
2482 return false;
2485 /// Return true if an fpext operation input to an \p Opcode operation is free
2486 /// (for instance, because half-precision floating-point numbers are
2487 /// implicitly extended to float-precision) for an FMA instruction.
2488 virtual bool isFPExtFoldable(unsigned Opcode, EVT DestVT, EVT SrcVT) const {
2489 assert(DestVT.isFloatingPoint() && SrcVT.isFloatingPoint() &&
2490 "invalid fpext types");
2491 return isFPExtFree(DestVT, SrcVT);
2494 /// Return true if folding a vector load into ExtVal (a sign, zero, or any
2495 /// extend node) is profitable.
2496 virtual bool isVectorLoadExtDesirable(SDValue ExtVal) const { return false; }
2498 /// Return true if an fneg operation is free to the point where it is never
2499 /// worthwhile to replace it with a bitwise operation.
2500 virtual bool isFNegFree(EVT VT) const {
2501 assert(VT.isFloatingPoint());
2502 return false;
2505 /// Return true if an fabs operation is free to the point where it is never
2506 /// worthwhile to replace it with a bitwise operation.
2507 virtual bool isFAbsFree(EVT VT) const {
2508 assert(VT.isFloatingPoint());
2509 return false;
2512 /// Return true if an FMA operation is faster than a pair of fmul and fadd
2513 /// instructions. fmuladd intrinsics will be expanded to FMAs when this method
2514 /// returns true, otherwise fmuladd is expanded to fmul + fadd.
2516 /// NOTE: This may be called before legalization on types for which FMAs are
2517 /// not legal, but should return true if those types will eventually legalize
2518 /// to types that support FMAs. After legalization, it will only be called on
2519 /// types that support FMAs (via Legal or Custom actions)
2520 virtual bool isFMAFasterThanFMulAndFAdd(EVT) const {
2521 return false;
2524 /// Return true if it's profitable to narrow operations of type VT1 to
2525 /// VT2. e.g. on x86, it's profitable to narrow from i32 to i8 but not from
2526 /// i32 to i16.
2527 virtual bool isNarrowingProfitable(EVT /*VT1*/, EVT /*VT2*/) const {
2528 return false;
2531 /// Return true if it is beneficial to convert a load of a constant to
2532 /// just the constant itself.
2533 /// On some targets it might be more efficient to use a combination of
2534 /// arithmetic instructions to materialize the constant instead of loading it
2535 /// from a constant pool.
2536 virtual bool shouldConvertConstantLoadToIntImm(const APInt &Imm,
2537 Type *Ty) const {
2538 return false;
2541 /// Return true if EXTRACT_SUBVECTOR is cheap for extracting this result type
2542 /// from this source type with this index. This is needed because
2543 /// EXTRACT_SUBVECTOR usually has custom lowering that depends on the index of
2544 /// the first element, and only the target knows which lowering is cheap.
2545 virtual bool isExtractSubvectorCheap(EVT ResVT, EVT SrcVT,
2546 unsigned Index) const {
2547 return false;
2550 /// Try to convert an extract element of a vector binary operation into an
2551 /// extract element followed by a scalar operation.
2552 virtual bool shouldScalarizeBinop(SDValue VecOp) const {
2553 return false;
2556 /// Return true if extraction of a scalar element from the given vector type
2557 /// at the given index is cheap. For example, if scalar operations occur on
2558 /// the same register file as vector operations, then an extract element may
2559 /// be a sub-register rename rather than an actual instruction.
2560 virtual bool isExtractVecEltCheap(EVT VT, unsigned Index) const {
2561 return false;
2564 /// Try to convert math with an overflow comparison into the corresponding DAG
2565 /// node operation. Targets may want to override this independently of whether
2566 /// the operation is legal/custom for the given type because it may obscure
2567 /// matching of other patterns.
2568 virtual bool shouldFormOverflowOp(unsigned Opcode, EVT VT) const {
2569 // TODO: The default logic is inherited from code in CodeGenPrepare.
2570 // The opcode should not make a difference by default?
2571 if (Opcode != ISD::UADDO)
2572 return false;
2574 // Allow the transform as long as we have an integer type that is not
2575 // obviously illegal and unsupported.
2576 if (VT.isVector())
2577 return false;
2578 return VT.isSimple() || !isOperationExpand(Opcode, VT);
2581 // Return true if it is profitable to use a scalar input to a BUILD_VECTOR
2582 // even if the vector itself has multiple uses.
2583 virtual bool aggressivelyPreferBuildVectorSources(EVT VecVT) const {
2584 return false;
2587 // Return true if CodeGenPrepare should consider splitting large offset of a
2588 // GEP to make the GEP fit into the addressing mode and can be sunk into the
2589 // same blocks of its users.
2590 virtual bool shouldConsiderGEPOffsetSplit() const { return false; }
2592 //===--------------------------------------------------------------------===//
2593 // Runtime Library hooks
2596 /// Rename the default libcall routine name for the specified libcall.
2597 void setLibcallName(RTLIB::Libcall Call, const char *Name) {
2598 LibcallRoutineNames[Call] = Name;
2601 /// Get the libcall routine name for the specified libcall.
2602 const char *getLibcallName(RTLIB::Libcall Call) const {
2603 return LibcallRoutineNames[Call];
2606 /// Override the default CondCode to be used to test the result of the
2607 /// comparison libcall against zero.
2608 void setCmpLibcallCC(RTLIB::Libcall Call, ISD::CondCode CC) {
2609 CmpLibcallCCs[Call] = CC;
2612 /// Get the CondCode that's to be used to test the result of the comparison
2613 /// libcall against zero.
2614 ISD::CondCode getCmpLibcallCC(RTLIB::Libcall Call) const {
2615 return CmpLibcallCCs[Call];
2618 /// Set the CallingConv that should be used for the specified libcall.
2619 void setLibcallCallingConv(RTLIB::Libcall Call, CallingConv::ID CC) {
2620 LibcallCallingConvs[Call] = CC;
2623 /// Get the CallingConv that should be used for the specified libcall.
2624 CallingConv::ID getLibcallCallingConv(RTLIB::Libcall Call) const {
2625 return LibcallCallingConvs[Call];
2628 /// Execute target specific actions to finalize target lowering.
2629 /// This is used to set extra flags in MachineFrameInformation and freezing
2630 /// the set of reserved registers.
2631 /// The default implementation just freezes the set of reserved registers.
2632 virtual void finalizeLowering(MachineFunction &MF) const;
2634 private:
2635 const TargetMachine &TM;
2637 /// Tells the code generator that the target has multiple (allocatable)
2638 /// condition registers that can be used to store the results of comparisons
2639 /// for use by selects and conditional branches. With multiple condition
2640 /// registers, the code generator will not aggressively sink comparisons into
2641 /// the blocks of their users.
2642 bool HasMultipleConditionRegisters;
2644 /// Tells the code generator that the target has BitExtract instructions.
2645 /// The code generator will aggressively sink "shift"s into the blocks of
2646 /// their users if the users will generate "and" instructions which can be
2647 /// combined with "shift" to BitExtract instructions.
2648 bool HasExtractBitsInsn;
2650 /// Tells the code generator to bypass slow divide or remainder
2651 /// instructions. For example, BypassSlowDivWidths[32,8] tells the code
2652 /// generator to bypass 32-bit integer div/rem with an 8-bit unsigned integer
2653 /// div/rem when the operands are positive and less than 256.
2654 DenseMap <unsigned int, unsigned int> BypassSlowDivWidths;
2656 /// Tells the code generator that it shouldn't generate extra flow control
2657 /// instructions and should attempt to combine flow control instructions via
2658 /// predication.
2659 bool JumpIsExpensive;
2661 /// This target prefers to use _setjmp to implement llvm.setjmp.
2663 /// Defaults to false.
2664 bool UseUnderscoreSetJmp;
2666 /// This target prefers to use _longjmp to implement llvm.longjmp.
2668 /// Defaults to false.
2669 bool UseUnderscoreLongJmp;
2671 /// Information about the contents of the high-bits in boolean values held in
2672 /// a type wider than i1. See getBooleanContents.
2673 BooleanContent BooleanContents;
2675 /// Information about the contents of the high-bits in boolean values held in
2676 /// a type wider than i1. See getBooleanContents.
2677 BooleanContent BooleanFloatContents;
2679 /// Information about the contents of the high-bits in boolean vector values
2680 /// when the element type is wider than i1. See getBooleanContents.
2681 BooleanContent BooleanVectorContents;
2683 /// The target scheduling preference: shortest possible total cycles or lowest
2684 /// register usage.
2685 Sched::Preference SchedPreferenceInfo;
2687 /// The minimum alignment that any argument on the stack needs to have.
2688 llvm::Align MinStackArgumentAlignment;
2690 /// The minimum function alignment (used when optimizing for size, and to
2691 /// prevent explicitly provided alignment from leading to incorrect code).
2692 llvm::Align MinFunctionAlignment;
2694 /// The preferred function alignment (used when alignment unspecified and
2695 /// optimizing for speed).
2696 llvm::Align PrefFunctionAlignment;
2698 /// The preferred loop alignment (in log2 bot in bytes).
2699 llvm::Align PrefLoopAlignment;
2701 /// Size in bits of the maximum atomics size the backend supports.
2702 /// Accesses larger than this will be expanded by AtomicExpandPass.
2703 unsigned MaxAtomicSizeInBitsSupported;
2705 /// Size in bits of the minimum cmpxchg or ll/sc operation the
2706 /// backend supports.
2707 unsigned MinCmpXchgSizeInBits;
2709 /// This indicates if the target supports unaligned atomic operations.
2710 bool SupportsUnalignedAtomics;
2712 /// If set to a physical register, this specifies the register that
2713 /// llvm.savestack/llvm.restorestack should save and restore.
2714 unsigned StackPointerRegisterToSaveRestore;
2716 /// This indicates the default register class to use for each ValueType the
2717 /// target supports natively.
2718 const TargetRegisterClass *RegClassForVT[MVT::LAST_VALUETYPE];
2719 unsigned char NumRegistersForVT[MVT::LAST_VALUETYPE];
2720 MVT RegisterTypeForVT[MVT::LAST_VALUETYPE];
2722 /// This indicates the "representative" register class to use for each
2723 /// ValueType the target supports natively. This information is used by the
2724 /// scheduler to track register pressure. By default, the representative
2725 /// register class is the largest legal super-reg register class of the
2726 /// register class of the specified type. e.g. On x86, i8, i16, and i32's
2727 /// representative class would be GR32.
2728 const TargetRegisterClass *RepRegClassForVT[MVT::LAST_VALUETYPE];
2730 /// This indicates the "cost" of the "representative" register class for each
2731 /// ValueType. The cost is used by the scheduler to approximate register
2732 /// pressure.
2733 uint8_t RepRegClassCostForVT[MVT::LAST_VALUETYPE];
2735 /// For any value types we are promoting or expanding, this contains the value
2736 /// type that we are changing to. For Expanded types, this contains one step
2737 /// of the expand (e.g. i64 -> i32), even if there are multiple steps required
2738 /// (e.g. i64 -> i16). For types natively supported by the system, this holds
2739 /// the same type (e.g. i32 -> i32).
2740 MVT TransformToType[MVT::LAST_VALUETYPE];
2742 /// For each operation and each value type, keep a LegalizeAction that
2743 /// indicates how instruction selection should deal with the operation. Most
2744 /// operations are Legal (aka, supported natively by the target), but
2745 /// operations that are not should be described. Note that operations on
2746 /// non-legal value types are not described here.
2747 LegalizeAction OpActions[MVT::LAST_VALUETYPE][ISD::BUILTIN_OP_END];
2749 /// For each load extension type and each value type, keep a LegalizeAction
2750 /// that indicates how instruction selection should deal with a load of a
2751 /// specific value type and extension type. Uses 4-bits to store the action
2752 /// for each of the 4 load ext types.
2753 uint16_t LoadExtActions[MVT::LAST_VALUETYPE][MVT::LAST_VALUETYPE];
2755 /// For each value type pair keep a LegalizeAction that indicates whether a
2756 /// truncating store of a specific value type and truncating type is legal.
2757 LegalizeAction TruncStoreActions[MVT::LAST_VALUETYPE][MVT::LAST_VALUETYPE];
2759 /// For each indexed mode and each value type, keep a pair of LegalizeAction
2760 /// that indicates how instruction selection should deal with the load /
2761 /// store.
2763 /// The first dimension is the value_type for the reference. The second
2764 /// dimension represents the various modes for load store.
2765 uint8_t IndexedModeActions[MVT::LAST_VALUETYPE][ISD::LAST_INDEXED_MODE];
2767 /// For each condition code (ISD::CondCode) keep a LegalizeAction that
2768 /// indicates how instruction selection should deal with the condition code.
2770 /// Because each CC action takes up 4 bits, we need to have the array size be
2771 /// large enough to fit all of the value types. This can be done by rounding
2772 /// up the MVT::LAST_VALUETYPE value to the next multiple of 8.
2773 uint32_t CondCodeActions[ISD::SETCC_INVALID][(MVT::LAST_VALUETYPE + 7) / 8];
2775 protected:
2776 ValueTypeActionImpl ValueTypeActions;
2778 private:
2779 LegalizeKind getTypeConversion(LLVMContext &Context, EVT VT) const;
2781 /// Targets can specify ISD nodes that they would like PerformDAGCombine
2782 /// callbacks for by calling setTargetDAGCombine(), which sets a bit in this
2783 /// array.
2784 unsigned char
2785 TargetDAGCombineArray[(ISD::BUILTIN_OP_END+CHAR_BIT-1)/CHAR_BIT];
2787 /// For operations that must be promoted to a specific type, this holds the
2788 /// destination type. This map should be sparse, so don't hold it as an
2789 /// array.
2791 /// Targets add entries to this map with AddPromotedToType(..), clients access
2792 /// this with getTypeToPromoteTo(..).
2793 std::map<std::pair<unsigned, MVT::SimpleValueType>, MVT::SimpleValueType>
2794 PromoteToType;
2796 /// Stores the name each libcall.
2797 const char *LibcallRoutineNames[RTLIB::UNKNOWN_LIBCALL + 1];
2799 /// The ISD::CondCode that should be used to test the result of each of the
2800 /// comparison libcall against zero.
2801 ISD::CondCode CmpLibcallCCs[RTLIB::UNKNOWN_LIBCALL];
2803 /// Stores the CallingConv that should be used for each libcall.
2804 CallingConv::ID LibcallCallingConvs[RTLIB::UNKNOWN_LIBCALL];
2806 /// Set default libcall names and calling conventions.
2807 void InitLibcalls(const Triple &TT);
2809 protected:
2810 /// Return true if the extension represented by \p I is free.
2811 /// \pre \p I is a sign, zero, or fp extension and
2812 /// is[Z|FP]ExtFree of the related types is not true.
2813 virtual bool isExtFreeImpl(const Instruction *I) const { return false; }
2815 /// Depth that GatherAllAliases should should continue looking for chain
2816 /// dependencies when trying to find a more preferable chain. As an
2817 /// approximation, this should be more than the number of consecutive stores
2818 /// expected to be merged.
2819 unsigned GatherAllAliasesMaxDepth;
2821 /// \brief Specify maximum number of store instructions per memset call.
2823 /// When lowering \@llvm.memset this field specifies the maximum number of
2824 /// store operations that may be substituted for the call to memset. Targets
2825 /// must set this value based on the cost threshold for that target. Targets
2826 /// should assume that the memset will be done using as many of the largest
2827 /// store operations first, followed by smaller ones, if necessary, per
2828 /// alignment restrictions. For example, storing 9 bytes on a 32-bit machine
2829 /// with 16-bit alignment would result in four 2-byte stores and one 1-byte
2830 /// store. This only applies to setting a constant array of a constant size.
2831 unsigned MaxStoresPerMemset;
2832 /// Likewise for functions with the OptSize attribute.
2833 unsigned MaxStoresPerMemsetOptSize;
2835 /// \brief Specify maximum number of store instructions per memcpy call.
2837 /// When lowering \@llvm.memcpy this field specifies the maximum number of
2838 /// store operations that may be substituted for a call to memcpy. Targets
2839 /// must set this value based on the cost threshold for that target. Targets
2840 /// should assume that the memcpy will be done using as many of the largest
2841 /// store operations first, followed by smaller ones, if necessary, per
2842 /// alignment restrictions. For example, storing 7 bytes on a 32-bit machine
2843 /// with 32-bit alignment would result in one 4-byte store, a one 2-byte store
2844 /// and one 1-byte store. This only applies to copying a constant array of
2845 /// constant size.
2846 unsigned MaxStoresPerMemcpy;
2847 /// Likewise for functions with the OptSize attribute.
2848 unsigned MaxStoresPerMemcpyOptSize;
2849 /// \brief Specify max number of store instructions to glue in inlined memcpy.
2851 /// When memcpy is inlined based on MaxStoresPerMemcpy, specify maximum number
2852 /// of store instructions to keep together. This helps in pairing and
2853 // vectorization later on.
2854 unsigned MaxGluedStoresPerMemcpy = 0;
2856 /// \brief Specify maximum number of load instructions per memcmp call.
2858 /// When lowering \@llvm.memcmp this field specifies the maximum number of
2859 /// pairs of load operations that may be substituted for a call to memcmp.
2860 /// Targets must set this value based on the cost threshold for that target.
2861 /// Targets should assume that the memcmp will be done using as many of the
2862 /// largest load operations first, followed by smaller ones, if necessary, per
2863 /// alignment restrictions. For example, loading 7 bytes on a 32-bit machine
2864 /// with 32-bit alignment would result in one 4-byte load, a one 2-byte load
2865 /// and one 1-byte load. This only applies to copying a constant array of
2866 /// constant size.
2867 unsigned MaxLoadsPerMemcmp;
2868 /// Likewise for functions with the OptSize attribute.
2869 unsigned MaxLoadsPerMemcmpOptSize;
2871 /// \brief Specify maximum number of store instructions per memmove call.
2873 /// When lowering \@llvm.memmove this field specifies the maximum number of
2874 /// store instructions that may be substituted for a call to memmove. Targets
2875 /// must set this value based on the cost threshold for that target. Targets
2876 /// should assume that the memmove will be done using as many of the largest
2877 /// store operations first, followed by smaller ones, if necessary, per
2878 /// alignment restrictions. For example, moving 9 bytes on a 32-bit machine
2879 /// with 8-bit alignment would result in nine 1-byte stores. This only
2880 /// applies to copying a constant array of constant size.
2881 unsigned MaxStoresPerMemmove;
2882 /// Likewise for functions with the OptSize attribute.
2883 unsigned MaxStoresPerMemmoveOptSize;
2885 /// Tells the code generator that select is more expensive than a branch if
2886 /// the branch is usually predicted right.
2887 bool PredictableSelectIsExpensive;
2889 /// \see enableExtLdPromotion.
2890 bool EnableExtLdPromotion;
2892 /// Return true if the value types that can be represented by the specified
2893 /// register class are all legal.
2894 bool isLegalRC(const TargetRegisterInfo &TRI,
2895 const TargetRegisterClass &RC) const;
2897 /// Replace/modify any TargetFrameIndex operands with a targte-dependent
2898 /// sequence of memory operands that is recognized by PrologEpilogInserter.
2899 MachineBasicBlock *emitPatchPoint(MachineInstr &MI,
2900 MachineBasicBlock *MBB) const;
2902 /// Replace/modify the XRay custom event operands with target-dependent
2903 /// details.
2904 MachineBasicBlock *emitXRayCustomEvent(MachineInstr &MI,
2905 MachineBasicBlock *MBB) const;
2907 /// Replace/modify the XRay typed event operands with target-dependent
2908 /// details.
2909 MachineBasicBlock *emitXRayTypedEvent(MachineInstr &MI,
2910 MachineBasicBlock *MBB) const;
2913 /// This class defines information used to lower LLVM code to legal SelectionDAG
2914 /// operators that the target instruction selector can accept natively.
2916 /// This class also defines callbacks that targets must implement to lower
2917 /// target-specific constructs to SelectionDAG operators.
2918 class TargetLowering : public TargetLoweringBase {
2919 public:
2920 struct DAGCombinerInfo;
2921 struct MakeLibCallOptions;
2923 TargetLowering(const TargetLowering &) = delete;
2924 TargetLowering &operator=(const TargetLowering &) = delete;
2926 /// NOTE: The TargetMachine owns TLOF.
2927 explicit TargetLowering(const TargetMachine &TM);
2929 bool isPositionIndependent() const;
2931 virtual bool isSDNodeSourceOfDivergence(const SDNode *N,
2932 FunctionLoweringInfo *FLI,
2933 LegacyDivergenceAnalysis *DA) const {
2934 return false;
2937 virtual bool isSDNodeAlwaysUniform(const SDNode * N) const {
2938 return false;
2941 /// Returns true by value, base pointer and offset pointer and addressing mode
2942 /// by reference if the node's address can be legally represented as
2943 /// pre-indexed load / store address.
2944 virtual bool getPreIndexedAddressParts(SDNode * /*N*/, SDValue &/*Base*/,
2945 SDValue &/*Offset*/,
2946 ISD::MemIndexedMode &/*AM*/,
2947 SelectionDAG &/*DAG*/) const {
2948 return false;
2951 /// Returns true by value, base pointer and offset pointer and addressing mode
2952 /// by reference if this node can be combined with a load / store to form a
2953 /// post-indexed load / store.
2954 virtual bool getPostIndexedAddressParts(SDNode * /*N*/, SDNode * /*Op*/,
2955 SDValue &/*Base*/,
2956 SDValue &/*Offset*/,
2957 ISD::MemIndexedMode &/*AM*/,
2958 SelectionDAG &/*DAG*/) const {
2959 return false;
2962 /// Return the entry encoding for a jump table in the current function. The
2963 /// returned value is a member of the MachineJumpTableInfo::JTEntryKind enum.
2964 virtual unsigned getJumpTableEncoding() const;
2966 virtual const MCExpr *
2967 LowerCustomJumpTableEntry(const MachineJumpTableInfo * /*MJTI*/,
2968 const MachineBasicBlock * /*MBB*/, unsigned /*uid*/,
2969 MCContext &/*Ctx*/) const {
2970 llvm_unreachable("Need to implement this hook if target has custom JTIs");
2973 /// Returns relocation base for the given PIC jumptable.
2974 virtual SDValue getPICJumpTableRelocBase(SDValue Table,
2975 SelectionDAG &DAG) const;
2977 /// This returns the relocation base for the given PIC jumptable, the same as
2978 /// getPICJumpTableRelocBase, but as an MCExpr.
2979 virtual const MCExpr *
2980 getPICJumpTableRelocBaseExpr(const MachineFunction *MF,
2981 unsigned JTI, MCContext &Ctx) const;
2983 /// Return true if folding a constant offset with the given GlobalAddress is
2984 /// legal. It is frequently not legal in PIC relocation models.
2985 virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
2987 bool isInTailCallPosition(SelectionDAG &DAG, SDNode *Node,
2988 SDValue &Chain) const;
2990 void softenSetCCOperands(SelectionDAG &DAG, EVT VT, SDValue &NewLHS,
2991 SDValue &NewRHS, ISD::CondCode &CCCode,
2992 const SDLoc &DL, const SDValue OldLHS,
2993 const SDValue OldRHS) const;
2995 /// Returns a pair of (return value, chain).
2996 /// It is an error to pass RTLIB::UNKNOWN_LIBCALL as \p LC.
2997 std::pair<SDValue, SDValue> makeLibCall(SelectionDAG &DAG, RTLIB::Libcall LC,
2998 EVT RetVT, ArrayRef<SDValue> Ops,
2999 MakeLibCallOptions CallOptions,
3000 const SDLoc &dl) const;
3002 /// Check whether parameters to a call that are passed in callee saved
3003 /// registers are the same as from the calling function. This needs to be
3004 /// checked for tail call eligibility.
3005 bool parametersInCSRMatch(const MachineRegisterInfo &MRI,
3006 const uint32_t *CallerPreservedMask,
3007 const SmallVectorImpl<CCValAssign> &ArgLocs,
3008 const SmallVectorImpl<SDValue> &OutVals) const;
3010 //===--------------------------------------------------------------------===//
3011 // TargetLowering Optimization Methods
3014 /// A convenience struct that encapsulates a DAG, and two SDValues for
3015 /// returning information from TargetLowering to its clients that want to
3016 /// combine.
3017 struct TargetLoweringOpt {
3018 SelectionDAG &DAG;
3019 bool LegalTys;
3020 bool LegalOps;
3021 SDValue Old;
3022 SDValue New;
3024 explicit TargetLoweringOpt(SelectionDAG &InDAG,
3025 bool LT, bool LO) :
3026 DAG(InDAG), LegalTys(LT), LegalOps(LO) {}
3028 bool LegalTypes() const { return LegalTys; }
3029 bool LegalOperations() const { return LegalOps; }
3031 bool CombineTo(SDValue O, SDValue N) {
3032 Old = O;
3033 New = N;
3034 return true;
3038 /// Determines the optimal series of memory ops to replace the memset / memcpy.
3039 /// Return true if the number of memory ops is below the threshold (Limit).
3040 /// It returns the types of the sequence of memory ops to perform
3041 /// memset / memcpy by reference.
3042 bool findOptimalMemOpLowering(std::vector<EVT> &MemOps,
3043 unsigned Limit, uint64_t Size,
3044 unsigned DstAlign, unsigned SrcAlign,
3045 bool IsMemset,
3046 bool ZeroMemset,
3047 bool MemcpyStrSrc,
3048 bool AllowOverlap,
3049 unsigned DstAS, unsigned SrcAS,
3050 const AttributeList &FuncAttributes) const;
3052 /// Check to see if the specified operand of the specified instruction is a
3053 /// constant integer. If so, check to see if there are any bits set in the
3054 /// constant that are not demanded. If so, shrink the constant and return
3055 /// true.
3056 bool ShrinkDemandedConstant(SDValue Op, const APInt &Demanded,
3057 TargetLoweringOpt &TLO) const;
3059 // Target hook to do target-specific const optimization, which is called by
3060 // ShrinkDemandedConstant. This function should return true if the target
3061 // doesn't want ShrinkDemandedConstant to further optimize the constant.
3062 virtual bool targetShrinkDemandedConstant(SDValue Op, const APInt &Demanded,
3063 TargetLoweringOpt &TLO) const {
3064 return false;
3067 /// Convert x+y to (VT)((SmallVT)x+(SmallVT)y) if the casts are free. This
3068 /// uses isZExtFree and ZERO_EXTEND for the widening cast, but it could be
3069 /// generalized for targets with other types of implicit widening casts.
3070 bool ShrinkDemandedOp(SDValue Op, unsigned BitWidth, const APInt &Demanded,
3071 TargetLoweringOpt &TLO) const;
3073 /// Look at Op. At this point, we know that only the DemandedBits bits of the
3074 /// result of Op are ever used downstream. If we can use this information to
3075 /// simplify Op, create a new simplified DAG node and return true, returning
3076 /// the original and new nodes in Old and New. Otherwise, analyze the
3077 /// expression and return a mask of KnownOne and KnownZero bits for the
3078 /// expression (used to simplify the caller). The KnownZero/One bits may only
3079 /// be accurate for those bits in the Demanded masks.
3080 /// \p AssumeSingleUse When this parameter is true, this function will
3081 /// attempt to simplify \p Op even if there are multiple uses.
3082 /// Callers are responsible for correctly updating the DAG based on the
3083 /// results of this function, because simply replacing replacing TLO.Old
3084 /// with TLO.New will be incorrect when this parameter is true and TLO.Old
3085 /// has multiple uses.
3086 bool SimplifyDemandedBits(SDValue Op, const APInt &DemandedBits,
3087 const APInt &DemandedElts, KnownBits &Known,
3088 TargetLoweringOpt &TLO, unsigned Depth = 0,
3089 bool AssumeSingleUse = false) const;
3091 /// Helper wrapper around SimplifyDemandedBits, demanding all elements.
3092 /// Adds Op back to the worklist upon success.
3093 bool SimplifyDemandedBits(SDValue Op, const APInt &DemandedBits,
3094 KnownBits &Known, TargetLoweringOpt &TLO,
3095 unsigned Depth = 0,
3096 bool AssumeSingleUse = false) const;
3098 /// Helper wrapper around SimplifyDemandedBits.
3099 /// Adds Op back to the worklist upon success.
3100 bool SimplifyDemandedBits(SDValue Op, const APInt &DemandedMask,
3101 DAGCombinerInfo &DCI) const;
3103 /// More limited version of SimplifyDemandedBits that can be used to "look
3104 /// through" ops that don't contribute to the DemandedBits/DemandedElts -
3105 /// bitwise ops etc.
3106 SDValue SimplifyMultipleUseDemandedBits(SDValue Op, const APInt &DemandedBits,
3107 const APInt &DemandedElts,
3108 SelectionDAG &DAG,
3109 unsigned Depth) const;
3111 /// Look at Vector Op. At this point, we know that only the DemandedElts
3112 /// elements of the result of Op are ever used downstream. If we can use
3113 /// this information to simplify Op, create a new simplified DAG node and
3114 /// return true, storing the original and new nodes in TLO.
3115 /// Otherwise, analyze the expression and return a mask of KnownUndef and
3116 /// KnownZero elements for the expression (used to simplify the caller).
3117 /// The KnownUndef/Zero elements may only be accurate for those bits
3118 /// in the DemandedMask.
3119 /// \p AssumeSingleUse When this parameter is true, this function will
3120 /// attempt to simplify \p Op even if there are multiple uses.
3121 /// Callers are responsible for correctly updating the DAG based on the
3122 /// results of this function, because simply replacing replacing TLO.Old
3123 /// with TLO.New will be incorrect when this parameter is true and TLO.Old
3124 /// has multiple uses.
3125 bool SimplifyDemandedVectorElts(SDValue Op, const APInt &DemandedEltMask,
3126 APInt &KnownUndef, APInt &KnownZero,
3127 TargetLoweringOpt &TLO, unsigned Depth = 0,
3128 bool AssumeSingleUse = false) const;
3130 /// Helper wrapper around SimplifyDemandedVectorElts.
3131 /// Adds Op back to the worklist upon success.
3132 bool SimplifyDemandedVectorElts(SDValue Op, const APInt &DemandedElts,
3133 APInt &KnownUndef, APInt &KnownZero,
3134 DAGCombinerInfo &DCI) const;
3136 /// Determine which of the bits specified in Mask are known to be either zero
3137 /// or one and return them in the KnownZero/KnownOne bitsets. The DemandedElts
3138 /// argument allows us to only collect the known bits that are shared by the
3139 /// requested vector elements.
3140 virtual void computeKnownBitsForTargetNode(const SDValue Op,
3141 KnownBits &Known,
3142 const APInt &DemandedElts,
3143 const SelectionDAG &DAG,
3144 unsigned Depth = 0) const;
3145 /// Determine which of the bits specified in Mask are known to be either zero
3146 /// or one and return them in the KnownZero/KnownOne bitsets. The DemandedElts
3147 /// argument allows us to only collect the known bits that are shared by the
3148 /// requested vector elements. This is for GISel.
3149 virtual void computeKnownBitsForTargetInstr(Register R, KnownBits &Known,
3150 const APInt &DemandedElts,
3151 const MachineRegisterInfo &MRI,
3152 unsigned Depth = 0) const;
3154 /// Determine which of the bits of FrameIndex \p FIOp are known to be 0.
3155 /// Default implementation computes low bits based on alignment
3156 /// information. This should preserve known bits passed into it.
3157 virtual void computeKnownBitsForFrameIndex(const SDValue FIOp,
3158 KnownBits &Known,
3159 const APInt &DemandedElts,
3160 const SelectionDAG &DAG,
3161 unsigned Depth = 0) const;
3163 /// This method can be implemented by targets that want to expose additional
3164 /// information about sign bits to the DAG Combiner. The DemandedElts
3165 /// argument allows us to only collect the minimum sign bits that are shared
3166 /// by the requested vector elements.
3167 virtual unsigned ComputeNumSignBitsForTargetNode(SDValue Op,
3168 const APInt &DemandedElts,
3169 const SelectionDAG &DAG,
3170 unsigned Depth = 0) const;
3172 /// Attempt to simplify any target nodes based on the demanded vector
3173 /// elements, returning true on success. Otherwise, analyze the expression and
3174 /// return a mask of KnownUndef and KnownZero elements for the expression
3175 /// (used to simplify the caller). The KnownUndef/Zero elements may only be
3176 /// accurate for those bits in the DemandedMask.
3177 virtual bool SimplifyDemandedVectorEltsForTargetNode(
3178 SDValue Op, const APInt &DemandedElts, APInt &KnownUndef,
3179 APInt &KnownZero, TargetLoweringOpt &TLO, unsigned Depth = 0) const;
3181 /// Attempt to simplify any target nodes based on the demanded bits/elts,
3182 /// returning true on success. Otherwise, analyze the
3183 /// expression and return a mask of KnownOne and KnownZero bits for the
3184 /// expression (used to simplify the caller). The KnownZero/One bits may only
3185 /// be accurate for those bits in the Demanded masks.
3186 virtual bool SimplifyDemandedBitsForTargetNode(SDValue Op,
3187 const APInt &DemandedBits,
3188 const APInt &DemandedElts,
3189 KnownBits &Known,
3190 TargetLoweringOpt &TLO,
3191 unsigned Depth = 0) const;
3193 /// More limited version of SimplifyDemandedBits that can be used to "look
3194 /// through" ops that don't contribute to the DemandedBits/DemandedElts -
3195 /// bitwise ops etc.
3196 virtual SDValue SimplifyMultipleUseDemandedBitsForTargetNode(
3197 SDValue Op, const APInt &DemandedBits, const APInt &DemandedElts,
3198 SelectionDAG &DAG, unsigned Depth) const;
3200 /// Tries to build a legal vector shuffle using the provided parameters
3201 /// or equivalent variations. The Mask argument maybe be modified as the
3202 /// function tries different variations.
3203 /// Returns an empty SDValue if the operation fails.
3204 SDValue buildLegalVectorShuffle(EVT VT, const SDLoc &DL, SDValue N0,
3205 SDValue N1, MutableArrayRef<int> Mask,
3206 SelectionDAG &DAG) const;
3208 /// This method returns the constant pool value that will be loaded by LD.
3209 /// NOTE: You must check for implicit extensions of the constant by LD.
3210 virtual const Constant *getTargetConstantFromLoad(LoadSDNode *LD) const;
3212 /// If \p SNaN is false, \returns true if \p Op is known to never be any
3213 /// NaN. If \p sNaN is true, returns if \p Op is known to never be a signaling
3214 /// NaN.
3215 virtual bool isKnownNeverNaNForTargetNode(SDValue Op,
3216 const SelectionDAG &DAG,
3217 bool SNaN = false,
3218 unsigned Depth = 0) const;
3219 struct DAGCombinerInfo {
3220 void *DC; // The DAG Combiner object.
3221 CombineLevel Level;
3222 bool CalledByLegalizer;
3224 public:
3225 SelectionDAG &DAG;
3227 DAGCombinerInfo(SelectionDAG &dag, CombineLevel level, bool cl, void *dc)
3228 : DC(dc), Level(level), CalledByLegalizer(cl), DAG(dag) {}
3230 bool isBeforeLegalize() const { return Level == BeforeLegalizeTypes; }
3231 bool isBeforeLegalizeOps() const { return Level < AfterLegalizeVectorOps; }
3232 bool isAfterLegalizeDAG() const {
3233 return Level == AfterLegalizeDAG;
3235 CombineLevel getDAGCombineLevel() { return Level; }
3236 bool isCalledByLegalizer() const { return CalledByLegalizer; }
3238 void AddToWorklist(SDNode *N);
3239 SDValue CombineTo(SDNode *N, ArrayRef<SDValue> To, bool AddTo = true);
3240 SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true);
3241 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo = true);
3243 void CommitTargetLoweringOpt(const TargetLoweringOpt &TLO);
3246 /// Return if the N is a constant or constant vector equal to the true value
3247 /// from getBooleanContents().
3248 bool isConstTrueVal(const SDNode *N) const;
3250 /// Return if the N is a constant or constant vector equal to the false value
3251 /// from getBooleanContents().
3252 bool isConstFalseVal(const SDNode *N) const;
3254 /// Return if \p N is a True value when extended to \p VT.
3255 bool isExtendedTrueVal(const ConstantSDNode *N, EVT VT, bool SExt) const;
3257 /// Try to simplify a setcc built with the specified operands and cc. If it is
3258 /// unable to simplify it, return a null SDValue.
3259 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
3260 bool foldBooleans, DAGCombinerInfo &DCI,
3261 const SDLoc &dl) const;
3263 // For targets which wrap address, unwrap for analysis.
3264 virtual SDValue unwrapAddress(SDValue N) const { return N; }
3266 /// Returns true (and the GlobalValue and the offset) if the node is a
3267 /// GlobalAddress + offset.
3268 virtual bool
3269 isGAPlusOffset(SDNode *N, const GlobalValue* &GA, int64_t &Offset) const;
3271 /// This method will be invoked for all target nodes and for any
3272 /// target-independent nodes that the target has registered with invoke it
3273 /// for.
3275 /// The semantics are as follows:
3276 /// Return Value:
3277 /// SDValue.Val == 0 - No change was made
3278 /// SDValue.Val == N - N was replaced, is dead, and is already handled.
3279 /// otherwise - N should be replaced by the returned Operand.
3281 /// In addition, methods provided by DAGCombinerInfo may be used to perform
3282 /// more complex transformations.
3284 virtual SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const;
3286 /// Return true if it is profitable to move this shift by a constant amount
3287 /// though its operand, adjusting any immediate operands as necessary to
3288 /// preserve semantics. This transformation may not be desirable if it
3289 /// disrupts a particularly auspicious target-specific tree (e.g. bitfield
3290 /// extraction in AArch64). By default, it returns true.
3292 /// @param N the shift node
3293 /// @param Level the current DAGCombine legalization level.
3294 virtual bool isDesirableToCommuteWithShift(const SDNode *N,
3295 CombineLevel Level) const {
3296 return true;
3299 // Return true if it is profitable to combine a BUILD_VECTOR with a stride-pattern
3300 // to a shuffle and a truncate.
3301 // Example of such a combine:
3302 // v4i32 build_vector((extract_elt V, 1),
3303 // (extract_elt V, 3),
3304 // (extract_elt V, 5),
3305 // (extract_elt V, 7))
3306 // -->
3307 // v4i32 truncate (bitcast (shuffle<1,u,3,u,5,u,7,u> V, u) to v4i64)
3308 virtual bool isDesirableToCombineBuildVectorToShuffleTruncate(
3309 ArrayRef<int> ShuffleMask, EVT SrcVT, EVT TruncVT) const {
3310 return false;
3313 /// Return true if the target has native support for the specified value type
3314 /// and it is 'desirable' to use the type for the given node type. e.g. On x86
3315 /// i16 is legal, but undesirable since i16 instruction encodings are longer
3316 /// and some i16 instructions are slow.
3317 virtual bool isTypeDesirableForOp(unsigned /*Opc*/, EVT VT) const {
3318 // By default, assume all legal types are desirable.
3319 return isTypeLegal(VT);
3322 /// Return true if it is profitable for dag combiner to transform a floating
3323 /// point op of specified opcode to a equivalent op of an integer
3324 /// type. e.g. f32 load -> i32 load can be profitable on ARM.
3325 virtual bool isDesirableToTransformToIntegerOp(unsigned /*Opc*/,
3326 EVT /*VT*/) const {
3327 return false;
3330 /// This method query the target whether it is beneficial for dag combiner to
3331 /// promote the specified node. If true, it should return the desired
3332 /// promotion type by reference.
3333 virtual bool IsDesirableToPromoteOp(SDValue /*Op*/, EVT &/*PVT*/) const {
3334 return false;
3337 /// Return true if the target supports swifterror attribute. It optimizes
3338 /// loads and stores to reading and writing a specific register.
3339 virtual bool supportSwiftError() const {
3340 return false;
3343 /// Return true if the target supports that a subset of CSRs for the given
3344 /// machine function is handled explicitly via copies.
3345 virtual bool supportSplitCSR(MachineFunction *MF) const {
3346 return false;
3349 /// Perform necessary initialization to handle a subset of CSRs explicitly
3350 /// via copies. This function is called at the beginning of instruction
3351 /// selection.
3352 virtual void initializeSplitCSR(MachineBasicBlock *Entry) const {
3353 llvm_unreachable("Not Implemented");
3356 /// Insert explicit copies in entry and exit blocks. We copy a subset of
3357 /// CSRs to virtual registers in the entry block, and copy them back to
3358 /// physical registers in the exit blocks. This function is called at the end
3359 /// of instruction selection.
3360 virtual void insertCopiesSplitCSR(
3361 MachineBasicBlock *Entry,
3362 const SmallVectorImpl<MachineBasicBlock *> &Exits) const {
3363 llvm_unreachable("Not Implemented");
3366 //===--------------------------------------------------------------------===//
3367 // Lowering methods - These methods must be implemented by targets so that
3368 // the SelectionDAGBuilder code knows how to lower these.
3371 /// This hook must be implemented to lower the incoming (formal) arguments,
3372 /// described by the Ins array, into the specified DAG. The implementation
3373 /// should fill in the InVals array with legal-type argument values, and
3374 /// return the resulting token chain value.
3375 virtual SDValue LowerFormalArguments(
3376 SDValue /*Chain*/, CallingConv::ID /*CallConv*/, bool /*isVarArg*/,
3377 const SmallVectorImpl<ISD::InputArg> & /*Ins*/, const SDLoc & /*dl*/,
3378 SelectionDAG & /*DAG*/, SmallVectorImpl<SDValue> & /*InVals*/) const {
3379 llvm_unreachable("Not Implemented");
3382 /// This structure contains all information that is necessary for lowering
3383 /// calls. It is passed to TLI::LowerCallTo when the SelectionDAG builder
3384 /// needs to lower a call, and targets will see this struct in their LowerCall
3385 /// implementation.
3386 struct CallLoweringInfo {
3387 SDValue Chain;
3388 Type *RetTy = nullptr;
3389 bool RetSExt : 1;
3390 bool RetZExt : 1;
3391 bool IsVarArg : 1;
3392 bool IsInReg : 1;
3393 bool DoesNotReturn : 1;
3394 bool IsReturnValueUsed : 1;
3395 bool IsConvergent : 1;
3396 bool IsPatchPoint : 1;
3398 // IsTailCall should be modified by implementations of
3399 // TargetLowering::LowerCall that perform tail call conversions.
3400 bool IsTailCall = false;
3402 // Is Call lowering done post SelectionDAG type legalization.
3403 bool IsPostTypeLegalization = false;
3405 unsigned NumFixedArgs = -1;
3406 CallingConv::ID CallConv = CallingConv::C;
3407 SDValue Callee;
3408 ArgListTy Args;
3409 SelectionDAG &DAG;
3410 SDLoc DL;
3411 ImmutableCallSite CS;
3412 SmallVector<ISD::OutputArg, 32> Outs;
3413 SmallVector<SDValue, 32> OutVals;
3414 SmallVector<ISD::InputArg, 32> Ins;
3415 SmallVector<SDValue, 4> InVals;
3417 CallLoweringInfo(SelectionDAG &DAG)
3418 : RetSExt(false), RetZExt(false), IsVarArg(false), IsInReg(false),
3419 DoesNotReturn(false), IsReturnValueUsed(true), IsConvergent(false),
3420 IsPatchPoint(false), DAG(DAG) {}
3422 CallLoweringInfo &setDebugLoc(const SDLoc &dl) {
3423 DL = dl;
3424 return *this;
3427 CallLoweringInfo &setChain(SDValue InChain) {
3428 Chain = InChain;
3429 return *this;
3432 // setCallee with target/module-specific attributes
3433 CallLoweringInfo &setLibCallee(CallingConv::ID CC, Type *ResultType,
3434 SDValue Target, ArgListTy &&ArgsList) {
3435 RetTy = ResultType;
3436 Callee = Target;
3437 CallConv = CC;
3438 NumFixedArgs = ArgsList.size();
3439 Args = std::move(ArgsList);
3441 DAG.getTargetLoweringInfo().markLibCallAttributes(
3442 &(DAG.getMachineFunction()), CC, Args);
3443 return *this;
3446 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultType,
3447 SDValue Target, ArgListTy &&ArgsList) {
3448 RetTy = ResultType;
3449 Callee = Target;
3450 CallConv = CC;
3451 NumFixedArgs = ArgsList.size();
3452 Args = std::move(ArgsList);
3453 return *this;
3456 CallLoweringInfo &setCallee(Type *ResultType, FunctionType *FTy,
3457 SDValue Target, ArgListTy &&ArgsList,
3458 ImmutableCallSite Call) {
3459 RetTy = ResultType;
3461 IsInReg = Call.hasRetAttr(Attribute::InReg);
3462 DoesNotReturn =
3463 Call.doesNotReturn() ||
3464 (!Call.isInvoke() &&
3465 isa<UnreachableInst>(Call.getInstruction()->getNextNode()));
3466 IsVarArg = FTy->isVarArg();
3467 IsReturnValueUsed = !Call.getInstruction()->use_empty();
3468 RetSExt = Call.hasRetAttr(Attribute::SExt);
3469 RetZExt = Call.hasRetAttr(Attribute::ZExt);
3471 Callee = Target;
3473 CallConv = Call.getCallingConv();
3474 NumFixedArgs = FTy->getNumParams();
3475 Args = std::move(ArgsList);
3477 CS = Call;
3479 return *this;
3482 CallLoweringInfo &setInRegister(bool Value = true) {
3483 IsInReg = Value;
3484 return *this;
3487 CallLoweringInfo &setNoReturn(bool Value = true) {
3488 DoesNotReturn = Value;
3489 return *this;
3492 CallLoweringInfo &setVarArg(bool Value = true) {
3493 IsVarArg = Value;
3494 return *this;
3497 CallLoweringInfo &setTailCall(bool Value = true) {
3498 IsTailCall = Value;
3499 return *this;
3502 CallLoweringInfo &setDiscardResult(bool Value = true) {
3503 IsReturnValueUsed = !Value;
3504 return *this;
3507 CallLoweringInfo &setConvergent(bool Value = true) {
3508 IsConvergent = Value;
3509 return *this;
3512 CallLoweringInfo &setSExtResult(bool Value = true) {
3513 RetSExt = Value;
3514 return *this;
3517 CallLoweringInfo &setZExtResult(bool Value = true) {
3518 RetZExt = Value;
3519 return *this;
3522 CallLoweringInfo &setIsPatchPoint(bool Value = true) {
3523 IsPatchPoint = Value;
3524 return *this;
3527 CallLoweringInfo &setIsPostTypeLegalization(bool Value=true) {
3528 IsPostTypeLegalization = Value;
3529 return *this;
3532 ArgListTy &getArgs() {
3533 return Args;
3537 /// This structure is used to pass arguments to makeLibCall function.
3538 struct MakeLibCallOptions {
3539 // By passing type list before soften to makeLibCall, the target hook
3540 // shouldExtendTypeInLibCall can get the original type before soften.
3541 ArrayRef<EVT> OpsVTBeforeSoften;
3542 EVT RetVTBeforeSoften;
3543 bool IsSExt : 1;
3544 bool DoesNotReturn : 1;
3545 bool IsReturnValueUsed : 1;
3546 bool IsPostTypeLegalization : 1;
3547 bool IsSoften : 1;
3549 MakeLibCallOptions()
3550 : IsSExt(false), DoesNotReturn(false), IsReturnValueUsed(true),
3551 IsPostTypeLegalization(false), IsSoften(false) {}
3553 MakeLibCallOptions &setSExt(bool Value = true) {
3554 IsSExt = Value;
3555 return *this;
3558 MakeLibCallOptions &setNoReturn(bool Value = true) {
3559 DoesNotReturn = Value;
3560 return *this;
3563 MakeLibCallOptions &setDiscardResult(bool Value = true) {
3564 IsReturnValueUsed = !Value;
3565 return *this;
3568 MakeLibCallOptions &setIsPostTypeLegalization(bool Value = true) {
3569 IsPostTypeLegalization = Value;
3570 return *this;
3573 MakeLibCallOptions &setTypeListBeforeSoften(ArrayRef<EVT> OpsVT, EVT RetVT,
3574 bool Value = true) {
3575 OpsVTBeforeSoften = OpsVT;
3576 RetVTBeforeSoften = RetVT;
3577 IsSoften = Value;
3578 return *this;
3582 /// This function lowers an abstract call to a function into an actual call.
3583 /// This returns a pair of operands. The first element is the return value
3584 /// for the function (if RetTy is not VoidTy). The second element is the
3585 /// outgoing token chain. It calls LowerCall to do the actual lowering.
3586 std::pair<SDValue, SDValue> LowerCallTo(CallLoweringInfo &CLI) const;
3588 /// This hook must be implemented to lower calls into the specified
3589 /// DAG. The outgoing arguments to the call are described by the Outs array,
3590 /// and the values to be returned by the call are described by the Ins
3591 /// array. The implementation should fill in the InVals array with legal-type
3592 /// return values from the call, and return the resulting token chain value.
3593 virtual SDValue
3594 LowerCall(CallLoweringInfo &/*CLI*/,
3595 SmallVectorImpl<SDValue> &/*InVals*/) const {
3596 llvm_unreachable("Not Implemented");
3599 /// Target-specific cleanup for formal ByVal parameters.
3600 virtual void HandleByVal(CCState *, unsigned &, unsigned) const {}
3602 /// This hook should be implemented to check whether the return values
3603 /// described by the Outs array can fit into the return registers. If false
3604 /// is returned, an sret-demotion is performed.
3605 virtual bool CanLowerReturn(CallingConv::ID /*CallConv*/,
3606 MachineFunction &/*MF*/, bool /*isVarArg*/,
3607 const SmallVectorImpl<ISD::OutputArg> &/*Outs*/,
3608 LLVMContext &/*Context*/) const
3610 // Return true by default to get preexisting behavior.
3611 return true;
3614 /// This hook must be implemented to lower outgoing return values, described
3615 /// by the Outs array, into the specified DAG. The implementation should
3616 /// return the resulting token chain value.
3617 virtual SDValue LowerReturn(SDValue /*Chain*/, CallingConv::ID /*CallConv*/,
3618 bool /*isVarArg*/,
3619 const SmallVectorImpl<ISD::OutputArg> & /*Outs*/,
3620 const SmallVectorImpl<SDValue> & /*OutVals*/,
3621 const SDLoc & /*dl*/,
3622 SelectionDAG & /*DAG*/) const {
3623 llvm_unreachable("Not Implemented");
3626 /// Return true if result of the specified node is used by a return node
3627 /// only. It also compute and return the input chain for the tail call.
3629 /// This is used to determine whether it is possible to codegen a libcall as
3630 /// tail call at legalization time.
3631 virtual bool isUsedByReturnOnly(SDNode *, SDValue &/*Chain*/) const {
3632 return false;
3635 /// Return true if the target may be able emit the call instruction as a tail
3636 /// call. This is used by optimization passes to determine if it's profitable
3637 /// to duplicate return instructions to enable tailcall optimization.
3638 virtual bool mayBeEmittedAsTailCall(const CallInst *) const {
3639 return false;
3642 /// Return the builtin name for the __builtin___clear_cache intrinsic
3643 /// Default is to invoke the clear cache library call
3644 virtual const char * getClearCacheBuiltinName() const {
3645 return "__clear_cache";
3648 /// Return the register ID of the name passed in. Used by named register
3649 /// global variables extension. There is no target-independent behaviour
3650 /// so the default action is to bail.
3651 virtual unsigned getRegisterByName(const char* RegName, EVT VT,
3652 SelectionDAG &DAG) const {
3653 report_fatal_error("Named registers not implemented for this target");
3656 /// Return the type that should be used to zero or sign extend a
3657 /// zeroext/signext integer return value. FIXME: Some C calling conventions
3658 /// require the return type to be promoted, but this is not true all the time,
3659 /// e.g. i1/i8/i16 on x86/x86_64. It is also not necessary for non-C calling
3660 /// conventions. The frontend should handle this and include all of the
3661 /// necessary information.
3662 virtual EVT getTypeForExtReturn(LLVMContext &Context, EVT VT,
3663 ISD::NodeType /*ExtendKind*/) const {
3664 EVT MinVT = getRegisterType(Context, MVT::i32);
3665 return VT.bitsLT(MinVT) ? MinVT : VT;
3668 /// For some targets, an LLVM struct type must be broken down into multiple
3669 /// simple types, but the calling convention specifies that the entire struct
3670 /// must be passed in a block of consecutive registers.
3671 virtual bool
3672 functionArgumentNeedsConsecutiveRegisters(Type *Ty, CallingConv::ID CallConv,
3673 bool isVarArg) const {
3674 return false;
3677 /// For most targets, an LLVM type must be broken down into multiple
3678 /// smaller types. Usually the halves are ordered according to the endianness
3679 /// but for some platform that would break. So this method will default to
3680 /// matching the endianness but can be overridden.
3681 virtual bool
3682 shouldSplitFunctionArgumentsAsLittleEndian(const DataLayout &DL) const {
3683 return DL.isLittleEndian();
3686 /// Returns a 0 terminated array of registers that can be safely used as
3687 /// scratch registers.
3688 virtual const MCPhysReg *getScratchRegisters(CallingConv::ID CC) const {
3689 return nullptr;
3692 /// This callback is used to prepare for a volatile or atomic load.
3693 /// It takes a chain node as input and returns the chain for the load itself.
3695 /// Having a callback like this is necessary for targets like SystemZ,
3696 /// which allows a CPU to reuse the result of a previous load indefinitely,
3697 /// even if a cache-coherent store is performed by another CPU. The default
3698 /// implementation does nothing.
3699 virtual SDValue prepareVolatileOrAtomicLoad(SDValue Chain, const SDLoc &DL,
3700 SelectionDAG &DAG) const {
3701 return Chain;
3704 /// This callback is used to inspect load/store instructions and add
3705 /// target-specific MachineMemOperand flags to them. The default
3706 /// implementation does nothing.
3707 virtual MachineMemOperand::Flags getMMOFlags(const Instruction &I) const {
3708 return MachineMemOperand::MONone;
3711 /// This callback is invoked by the type legalizer to legalize nodes with an
3712 /// illegal operand type but legal result types. It replaces the
3713 /// LowerOperation callback in the type Legalizer. The reason we can not do
3714 /// away with LowerOperation entirely is that LegalizeDAG isn't yet ready to
3715 /// use this callback.
3717 /// TODO: Consider merging with ReplaceNodeResults.
3719 /// The target places new result values for the node in Results (their number
3720 /// and types must exactly match those of the original return values of
3721 /// the node), or leaves Results empty, which indicates that the node is not
3722 /// to be custom lowered after all.
3723 /// The default implementation calls LowerOperation.
3724 virtual void LowerOperationWrapper(SDNode *N,
3725 SmallVectorImpl<SDValue> &Results,
3726 SelectionDAG &DAG) const;
3728 /// This callback is invoked for operations that are unsupported by the
3729 /// target, which are registered to use 'custom' lowering, and whose defined
3730 /// values are all legal. If the target has no operations that require custom
3731 /// lowering, it need not implement this. The default implementation of this
3732 /// aborts.
3733 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
3735 /// This callback is invoked when a node result type is illegal for the
3736 /// target, and the operation was registered to use 'custom' lowering for that
3737 /// result type. The target places new result values for the node in Results
3738 /// (their number and types must exactly match those of the original return
3739 /// values of the node), or leaves Results empty, which indicates that the
3740 /// node is not to be custom lowered after all.
3742 /// If the target has no operations that require custom lowering, it need not
3743 /// implement this. The default implementation aborts.
3744 virtual void ReplaceNodeResults(SDNode * /*N*/,
3745 SmallVectorImpl<SDValue> &/*Results*/,
3746 SelectionDAG &/*DAG*/) const {
3747 llvm_unreachable("ReplaceNodeResults not implemented for this target!");
3750 /// This method returns the name of a target specific DAG node.
3751 virtual const char *getTargetNodeName(unsigned Opcode) const;
3753 /// This method returns a target specific FastISel object, or null if the
3754 /// target does not support "fast" ISel.
3755 virtual FastISel *createFastISel(FunctionLoweringInfo &,
3756 const TargetLibraryInfo *) const {
3757 return nullptr;
3760 bool verifyReturnAddressArgumentIsConstant(SDValue Op,
3761 SelectionDAG &DAG) const;
3763 //===--------------------------------------------------------------------===//
3764 // Inline Asm Support hooks
3767 /// This hook allows the target to expand an inline asm call to be explicit
3768 /// llvm code if it wants to. This is useful for turning simple inline asms
3769 /// into LLVM intrinsics, which gives the compiler more information about the
3770 /// behavior of the code.
3771 virtual bool ExpandInlineAsm(CallInst *) const {
3772 return false;
3775 enum ConstraintType {
3776 C_Register, // Constraint represents specific register(s).
3777 C_RegisterClass, // Constraint represents any of register(s) in class.
3778 C_Memory, // Memory constraint.
3779 C_Immediate, // Requires an immediate.
3780 C_Other, // Something else.
3781 C_Unknown // Unsupported constraint.
3784 enum ConstraintWeight {
3785 // Generic weights.
3786 CW_Invalid = -1, // No match.
3787 CW_Okay = 0, // Acceptable.
3788 CW_Good = 1, // Good weight.
3789 CW_Better = 2, // Better weight.
3790 CW_Best = 3, // Best weight.
3792 // Well-known weights.
3793 CW_SpecificReg = CW_Okay, // Specific register operands.
3794 CW_Register = CW_Good, // Register operands.
3795 CW_Memory = CW_Better, // Memory operands.
3796 CW_Constant = CW_Best, // Constant operand.
3797 CW_Default = CW_Okay // Default or don't know type.
3800 /// This contains information for each constraint that we are lowering.
3801 struct AsmOperandInfo : public InlineAsm::ConstraintInfo {
3802 /// This contains the actual string for the code, like "m". TargetLowering
3803 /// picks the 'best' code from ConstraintInfo::Codes that most closely
3804 /// matches the operand.
3805 std::string ConstraintCode;
3807 /// Information about the constraint code, e.g. Register, RegisterClass,
3808 /// Memory, Other, Unknown.
3809 TargetLowering::ConstraintType ConstraintType = TargetLowering::C_Unknown;
3811 /// If this is the result output operand or a clobber, this is null,
3812 /// otherwise it is the incoming operand to the CallInst. This gets
3813 /// modified as the asm is processed.
3814 Value *CallOperandVal = nullptr;
3816 /// The ValueType for the operand value.
3817 MVT ConstraintVT = MVT::Other;
3819 /// Copy constructor for copying from a ConstraintInfo.
3820 AsmOperandInfo(InlineAsm::ConstraintInfo Info)
3821 : InlineAsm::ConstraintInfo(std::move(Info)) {}
3823 /// Return true of this is an input operand that is a matching constraint
3824 /// like "4".
3825 bool isMatchingInputConstraint() const;
3827 /// If this is an input matching constraint, this method returns the output
3828 /// operand it matches.
3829 unsigned getMatchedOperand() const;
3832 using AsmOperandInfoVector = std::vector<AsmOperandInfo>;
3834 /// Split up the constraint string from the inline assembly value into the
3835 /// specific constraints and their prefixes, and also tie in the associated
3836 /// operand values. If this returns an empty vector, and if the constraint
3837 /// string itself isn't empty, there was an error parsing.
3838 virtual AsmOperandInfoVector ParseConstraints(const DataLayout &DL,
3839 const TargetRegisterInfo *TRI,
3840 ImmutableCallSite CS) const;
3842 /// Examine constraint type and operand type and determine a weight value.
3843 /// The operand object must already have been set up with the operand type.
3844 virtual ConstraintWeight getMultipleConstraintMatchWeight(
3845 AsmOperandInfo &info, int maIndex) const;
3847 /// Examine constraint string and operand type and determine a weight value.
3848 /// The operand object must already have been set up with the operand type.
3849 virtual ConstraintWeight getSingleConstraintMatchWeight(
3850 AsmOperandInfo &info, const char *constraint) const;
3852 /// Determines the constraint code and constraint type to use for the specific
3853 /// AsmOperandInfo, setting OpInfo.ConstraintCode and OpInfo.ConstraintType.
3854 /// If the actual operand being passed in is available, it can be passed in as
3855 /// Op, otherwise an empty SDValue can be passed.
3856 virtual void ComputeConstraintToUse(AsmOperandInfo &OpInfo,
3857 SDValue Op,
3858 SelectionDAG *DAG = nullptr) const;
3860 /// Given a constraint, return the type of constraint it is for this target.
3861 virtual ConstraintType getConstraintType(StringRef Constraint) const;
3863 /// Given a physical register constraint (e.g. {edx}), return the register
3864 /// number and the register class for the register.
3866 /// Given a register class constraint, like 'r', if this corresponds directly
3867 /// to an LLVM register class, return a register of 0 and the register class
3868 /// pointer.
3870 /// This should only be used for C_Register constraints. On error, this
3871 /// returns a register number of 0 and a null register class pointer.
3872 virtual std::pair<unsigned, const TargetRegisterClass *>
3873 getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
3874 StringRef Constraint, MVT VT) const;
3876 virtual unsigned getInlineAsmMemConstraint(StringRef ConstraintCode) const {
3877 if (ConstraintCode == "i")
3878 return InlineAsm::Constraint_i;
3879 else if (ConstraintCode == "m")
3880 return InlineAsm::Constraint_m;
3881 return InlineAsm::Constraint_Unknown;
3884 /// Try to replace an X constraint, which matches anything, with another that
3885 /// has more specific requirements based on the type of the corresponding
3886 /// operand. This returns null if there is no replacement to make.
3887 virtual const char *LowerXConstraint(EVT ConstraintVT) const;
3889 /// Lower the specified operand into the Ops vector. If it is invalid, don't
3890 /// add anything to Ops.
3891 virtual void LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint,
3892 std::vector<SDValue> &Ops,
3893 SelectionDAG &DAG) const;
3895 // Lower custom output constraints. If invalid, return SDValue().
3896 virtual SDValue LowerAsmOutputForConstraint(SDValue &Chain, SDValue &Flag,
3897 SDLoc DL,
3898 const AsmOperandInfo &OpInfo,
3899 SelectionDAG &DAG) const;
3901 //===--------------------------------------------------------------------===//
3902 // Div utility functions
3904 SDValue BuildSDIV(SDNode *N, SelectionDAG &DAG, bool IsAfterLegalization,
3905 SmallVectorImpl<SDNode *> &Created) const;
3906 SDValue BuildUDIV(SDNode *N, SelectionDAG &DAG, bool IsAfterLegalization,
3907 SmallVectorImpl<SDNode *> &Created) const;
3909 /// Targets may override this function to provide custom SDIV lowering for
3910 /// power-of-2 denominators. If the target returns an empty SDValue, LLVM
3911 /// assumes SDIV is expensive and replaces it with a series of other integer
3912 /// operations.
3913 virtual SDValue BuildSDIVPow2(SDNode *N, const APInt &Divisor,
3914 SelectionDAG &DAG,
3915 SmallVectorImpl<SDNode *> &Created) const;
3917 /// Indicate whether this target prefers to combine FDIVs with the same
3918 /// divisor. If the transform should never be done, return zero. If the
3919 /// transform should be done, return the minimum number of divisor uses
3920 /// that must exist.
3921 virtual unsigned combineRepeatedFPDivisors() const {
3922 return 0;
3925 /// Hooks for building estimates in place of slower divisions and square
3926 /// roots.
3928 /// Return either a square root or its reciprocal estimate value for the input
3929 /// operand.
3930 /// \p Enabled is a ReciprocalEstimate enum with value either 'Unspecified' or
3931 /// 'Enabled' as set by a potential default override attribute.
3932 /// If \p RefinementSteps is 'Unspecified', the number of Newton-Raphson
3933 /// refinement iterations required to generate a sufficient (though not
3934 /// necessarily IEEE-754 compliant) estimate is returned in that parameter.
3935 /// The boolean UseOneConstNR output is used to select a Newton-Raphson
3936 /// algorithm implementation that uses either one or two constants.
3937 /// The boolean Reciprocal is used to select whether the estimate is for the
3938 /// square root of the input operand or the reciprocal of its square root.
3939 /// A target may choose to implement its own refinement within this function.
3940 /// If that's true, then return '0' as the number of RefinementSteps to avoid
3941 /// any further refinement of the estimate.
3942 /// An empty SDValue return means no estimate sequence can be created.
3943 virtual SDValue getSqrtEstimate(SDValue Operand, SelectionDAG &DAG,
3944 int Enabled, int &RefinementSteps,
3945 bool &UseOneConstNR, bool Reciprocal) const {
3946 return SDValue();
3949 /// Return a reciprocal estimate value for the input operand.
3950 /// \p Enabled is a ReciprocalEstimate enum with value either 'Unspecified' or
3951 /// 'Enabled' as set by a potential default override attribute.
3952 /// If \p RefinementSteps is 'Unspecified', the number of Newton-Raphson
3953 /// refinement iterations required to generate a sufficient (though not
3954 /// necessarily IEEE-754 compliant) estimate is returned in that parameter.
3955 /// A target may choose to implement its own refinement within this function.
3956 /// If that's true, then return '0' as the number of RefinementSteps to avoid
3957 /// any further refinement of the estimate.
3958 /// An empty SDValue return means no estimate sequence can be created.
3959 virtual SDValue getRecipEstimate(SDValue Operand, SelectionDAG &DAG,
3960 int Enabled, int &RefinementSteps) const {
3961 return SDValue();
3964 //===--------------------------------------------------------------------===//
3965 // Legalization utility functions
3968 /// Expand a MUL or [US]MUL_LOHI of n-bit values into two or four nodes,
3969 /// respectively, each computing an n/2-bit part of the result.
3970 /// \param Result A vector that will be filled with the parts of the result
3971 /// in little-endian order.
3972 /// \param LL Low bits of the LHS of the MUL. You can use this parameter
3973 /// if you want to control how low bits are extracted from the LHS.
3974 /// \param LH High bits of the LHS of the MUL. See LL for meaning.
3975 /// \param RL Low bits of the RHS of the MUL. See LL for meaning
3976 /// \param RH High bits of the RHS of the MUL. See LL for meaning.
3977 /// \returns true if the node has been expanded, false if it has not
3978 bool expandMUL_LOHI(unsigned Opcode, EVT VT, SDLoc dl, SDValue LHS,
3979 SDValue RHS, SmallVectorImpl<SDValue> &Result, EVT HiLoVT,
3980 SelectionDAG &DAG, MulExpansionKind Kind,
3981 SDValue LL = SDValue(), SDValue LH = SDValue(),
3982 SDValue RL = SDValue(), SDValue RH = SDValue()) const;
3984 /// Expand a MUL into two nodes. One that computes the high bits of
3985 /// the result and one that computes the low bits.
3986 /// \param HiLoVT The value type to use for the Lo and Hi nodes.
3987 /// \param LL Low bits of the LHS of the MUL. You can use this parameter
3988 /// if you want to control how low bits are extracted from the LHS.
3989 /// \param LH High bits of the LHS of the MUL. See LL for meaning.
3990 /// \param RL Low bits of the RHS of the MUL. See LL for meaning
3991 /// \param RH High bits of the RHS of the MUL. See LL for meaning.
3992 /// \returns true if the node has been expanded. false if it has not
3993 bool expandMUL(SDNode *N, SDValue &Lo, SDValue &Hi, EVT HiLoVT,
3994 SelectionDAG &DAG, MulExpansionKind Kind,
3995 SDValue LL = SDValue(), SDValue LH = SDValue(),
3996 SDValue RL = SDValue(), SDValue RH = SDValue()) const;
3998 /// Expand funnel shift.
3999 /// \param N Node to expand
4000 /// \param Result output after conversion
4001 /// \returns True, if the expansion was successful, false otherwise
4002 bool expandFunnelShift(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
4004 /// Expand rotations.
4005 /// \param N Node to expand
4006 /// \param Result output after conversion
4007 /// \returns True, if the expansion was successful, false otherwise
4008 bool expandROT(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
4010 /// Expand float(f32) to SINT(i64) conversion
4011 /// \param N Node to expand
4012 /// \param Result output after conversion
4013 /// \returns True, if the expansion was successful, false otherwise
4014 bool expandFP_TO_SINT(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
4016 /// Expand float to UINT conversion
4017 /// \param N Node to expand
4018 /// \param Result output after conversion
4019 /// \returns True, if the expansion was successful, false otherwise
4020 bool expandFP_TO_UINT(SDNode *N, SDValue &Result, SDValue &Chain, SelectionDAG &DAG) const;
4022 /// Expand UINT(i64) to double(f64) conversion
4023 /// \param N Node to expand
4024 /// \param Result output after conversion
4025 /// \returns True, if the expansion was successful, false otherwise
4026 bool expandUINT_TO_FP(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
4028 /// Expand fminnum/fmaxnum into fminnum_ieee/fmaxnum_ieee with quieted inputs.
4029 SDValue expandFMINNUM_FMAXNUM(SDNode *N, SelectionDAG &DAG) const;
4031 /// Expand CTPOP nodes. Expands vector/scalar CTPOP nodes,
4032 /// vector nodes can only succeed if all operations are legal/custom.
4033 /// \param N Node to expand
4034 /// \param Result output after conversion
4035 /// \returns True, if the expansion was successful, false otherwise
4036 bool expandCTPOP(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
4038 /// Expand CTLZ/CTLZ_ZERO_UNDEF nodes. Expands vector/scalar CTLZ nodes,
4039 /// vector nodes can only succeed if all operations are legal/custom.
4040 /// \param N Node to expand
4041 /// \param Result output after conversion
4042 /// \returns True, if the expansion was successful, false otherwise
4043 bool expandCTLZ(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
4045 /// Expand CTTZ/CTTZ_ZERO_UNDEF nodes. Expands vector/scalar CTTZ nodes,
4046 /// vector nodes can only succeed if all operations are legal/custom.
4047 /// \param N Node to expand
4048 /// \param Result output after conversion
4049 /// \returns True, if the expansion was successful, false otherwise
4050 bool expandCTTZ(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
4052 /// Expand ABS nodes. Expands vector/scalar ABS nodes,
4053 /// vector nodes can only succeed if all operations are legal/custom.
4054 /// (ABS x) -> (XOR (ADD x, (SRA x, type_size)), (SRA x, type_size))
4055 /// \param N Node to expand
4056 /// \param Result output after conversion
4057 /// \returns True, if the expansion was successful, false otherwise
4058 bool expandABS(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
4060 /// Turn load of vector type into a load of the individual elements.
4061 /// \param LD load to expand
4062 /// \returns MERGE_VALUEs of the scalar loads with their chains.
4063 SDValue scalarizeVectorLoad(LoadSDNode *LD, SelectionDAG &DAG) const;
4065 // Turn a store of a vector type into stores of the individual elements.
4066 /// \param ST Store with a vector value type
4067 /// \returns MERGE_VALUs of the individual store chains.
4068 SDValue scalarizeVectorStore(StoreSDNode *ST, SelectionDAG &DAG) const;
4070 /// Expands an unaligned load to 2 half-size loads for an integer, and
4071 /// possibly more for vectors.
4072 std::pair<SDValue, SDValue> expandUnalignedLoad(LoadSDNode *LD,
4073 SelectionDAG &DAG) const;
4075 /// Expands an unaligned store to 2 half-size stores for integer values, and
4076 /// possibly more for vectors.
4077 SDValue expandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG) const;
4079 /// Increments memory address \p Addr according to the type of the value
4080 /// \p DataVT that should be stored. If the data is stored in compressed
4081 /// form, the memory address should be incremented according to the number of
4082 /// the stored elements. This number is equal to the number of '1's bits
4083 /// in the \p Mask.
4084 /// \p DataVT is a vector type. \p Mask is a vector value.
4085 /// \p DataVT and \p Mask have the same number of vector elements.
4086 SDValue IncrementMemoryAddress(SDValue Addr, SDValue Mask, const SDLoc &DL,
4087 EVT DataVT, SelectionDAG &DAG,
4088 bool IsCompressedMemory) const;
4090 /// Get a pointer to vector element \p Idx located in memory for a vector of
4091 /// type \p VecVT starting at a base address of \p VecPtr. If \p Idx is out of
4092 /// bounds the returned pointer is unspecified, but will be within the vector
4093 /// bounds.
4094 SDValue getVectorElementPointer(SelectionDAG &DAG, SDValue VecPtr, EVT VecVT,
4095 SDValue Index) const;
4097 /// Method for building the DAG expansion of ISD::[US][ADD|SUB]SAT. This
4098 /// method accepts integers as its arguments.
4099 SDValue expandAddSubSat(SDNode *Node, SelectionDAG &DAG) const;
4101 /// Method for building the DAG expansion of ISD::SMULFIX. This method accepts
4102 /// integers as its arguments.
4103 SDValue expandFixedPointMul(SDNode *Node, SelectionDAG &DAG) const;
4105 /// Method for building the DAG expansion of ISD::U(ADD|SUB)O. Expansion
4106 /// always suceeds and populates the Result and Overflow arguments.
4107 void expandUADDSUBO(SDNode *Node, SDValue &Result, SDValue &Overflow,
4108 SelectionDAG &DAG) const;
4110 /// Method for building the DAG expansion of ISD::S(ADD|SUB)O. Expansion
4111 /// always suceeds and populates the Result and Overflow arguments.
4112 void expandSADDSUBO(SDNode *Node, SDValue &Result, SDValue &Overflow,
4113 SelectionDAG &DAG) const;
4115 /// Method for building the DAG expansion of ISD::[US]MULO. Returns whether
4116 /// expansion was successful and populates the Result and Overflow arguments.
4117 bool expandMULO(SDNode *Node, SDValue &Result, SDValue &Overflow,
4118 SelectionDAG &DAG) const;
4120 /// Expand a VECREDUCE_* into an explicit calculation. If Count is specified,
4121 /// only the first Count elements of the vector are used.
4122 SDValue expandVecReduce(SDNode *Node, SelectionDAG &DAG) const;
4124 //===--------------------------------------------------------------------===//
4125 // Instruction Emitting Hooks
4128 /// This method should be implemented by targets that mark instructions with
4129 /// the 'usesCustomInserter' flag. These instructions are special in various
4130 /// ways, which require special support to insert. The specified MachineInstr
4131 /// is created but not inserted into any basic blocks, and this method is
4132 /// called to expand it into a sequence of instructions, potentially also
4133 /// creating new basic blocks and control flow.
4134 /// As long as the returned basic block is different (i.e., we created a new
4135 /// one), the custom inserter is free to modify the rest of \p MBB.
4136 virtual MachineBasicBlock *
4137 EmitInstrWithCustomInserter(MachineInstr &MI, MachineBasicBlock *MBB) const;
4139 /// This method should be implemented by targets that mark instructions with
4140 /// the 'hasPostISelHook' flag. These instructions must be adjusted after
4141 /// instruction selection by target hooks. e.g. To fill in optional defs for
4142 /// ARM 's' setting instructions.
4143 virtual void AdjustInstrPostInstrSelection(MachineInstr &MI,
4144 SDNode *Node) const;
4146 /// If this function returns true, SelectionDAGBuilder emits a
4147 /// LOAD_STACK_GUARD node when it is lowering Intrinsic::stackprotector.
4148 virtual bool useLoadStackGuardNode() const {
4149 return false;
4152 virtual SDValue emitStackGuardXorFP(SelectionDAG &DAG, SDValue Val,
4153 const SDLoc &DL) const {
4154 llvm_unreachable("not implemented for this target");
4157 /// Lower TLS global address SDNode for target independent emulated TLS model.
4158 virtual SDValue LowerToTLSEmulatedModel(const GlobalAddressSDNode *GA,
4159 SelectionDAG &DAG) const;
4161 /// Expands target specific indirect branch for the case of JumpTable
4162 /// expanasion.
4163 virtual SDValue expandIndirectJTBranch(const SDLoc& dl, SDValue Value, SDValue Addr,
4164 SelectionDAG &DAG) const {
4165 return DAG.getNode(ISD::BRIND, dl, MVT::Other, Value, Addr);
4168 // seteq(x, 0) -> truncate(srl(ctlz(zext(x)), log2(#bits)))
4169 // If we're comparing for equality to zero and isCtlzFast is true, expose the
4170 // fact that this can be implemented as a ctlz/srl pair, so that the dag
4171 // combiner can fold the new nodes.
4172 SDValue lowerCmpEqZeroToCtlzSrl(SDValue Op, SelectionDAG &DAG) const;
4174 private:
4175 SDValue foldSetCCWithAnd(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
4176 const SDLoc &DL, DAGCombinerInfo &DCI) const;
4177 SDValue foldSetCCWithBinOp(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
4178 const SDLoc &DL, DAGCombinerInfo &DCI) const;
4180 SDValue optimizeSetCCOfSignedTruncationCheck(EVT SCCVT, SDValue N0,
4181 SDValue N1, ISD::CondCode Cond,
4182 DAGCombinerInfo &DCI,
4183 const SDLoc &DL) const;
4185 // (X & (C l>>/<< Y)) ==/!= 0 --> ((X <</l>> Y) & C) ==/!= 0
4186 SDValue optimizeSetCCByHoistingAndByConstFromLogicalShift(
4187 EVT SCCVT, SDValue N0, SDValue N1C, ISD::CondCode Cond,
4188 DAGCombinerInfo &DCI, const SDLoc &DL) const;
4190 SDValue prepareUREMEqFold(EVT SETCCVT, SDValue REMNode,
4191 SDValue CompTargetNode, ISD::CondCode Cond,
4192 DAGCombinerInfo &DCI, const SDLoc &DL,
4193 SmallVectorImpl<SDNode *> &Created) const;
4194 SDValue buildUREMEqFold(EVT SETCCVT, SDValue REMNode, SDValue CompTargetNode,
4195 ISD::CondCode Cond, DAGCombinerInfo &DCI,
4196 const SDLoc &DL) const;
4198 SDValue prepareSREMEqFold(EVT SETCCVT, SDValue REMNode,
4199 SDValue CompTargetNode, ISD::CondCode Cond,
4200 DAGCombinerInfo &DCI, const SDLoc &DL,
4201 SmallVectorImpl<SDNode *> &Created) const;
4202 SDValue buildSREMEqFold(EVT SETCCVT, SDValue REMNode, SDValue CompTargetNode,
4203 ISD::CondCode Cond, DAGCombinerInfo &DCI,
4204 const SDLoc &DL) const;
4207 /// Given an LLVM IR type and return type attributes, compute the return value
4208 /// EVTs and flags, and optionally also the offsets, if the return value is
4209 /// being lowered to memory.
4210 void GetReturnInfo(CallingConv::ID CC, Type *ReturnType, AttributeList attr,
4211 SmallVectorImpl<ISD::OutputArg> &Outs,
4212 const TargetLowering &TLI, const DataLayout &DL);
4214 } // end namespace llvm
4216 #endif // LLVM_CODEGEN_TARGETLOWERING_H