[CodeGen] Rename AtomicRMWExpansionKind to AtomicExpansionKind.
[oota-llvm.git] / include / llvm / Target / TargetLowering.h
1 //===-- llvm/Target/TargetLowering.h - Target Lowering Info -----*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 ///
10 /// \file
11 /// This file describes how to lower LLVM code to machine code.  This has two
12 /// main components:
13 ///
14 ///  1. Which ValueTypes are natively supported by the target.
15 ///  2. Which operations are supported for supported ValueTypes.
16 ///  3. Cost thresholds for alternative implementations of certain operations.
17 ///
18 /// In addition it has a few other components, like information about FP
19 /// immediates.
20 ///
21 //===----------------------------------------------------------------------===//
22
23 #ifndef LLVM_TARGET_TARGETLOWERING_H
24 #define LLVM_TARGET_TARGETLOWERING_H
25
26 #include "llvm/ADT/DenseMap.h"
27 #include "llvm/CodeGen/DAGCombine.h"
28 #include "llvm/CodeGen/RuntimeLibcalls.h"
29 #include "llvm/CodeGen/SelectionDAGNodes.h"
30 #include "llvm/IR/Attributes.h"
31 #include "llvm/IR/CallSite.h"
32 #include "llvm/IR/CallingConv.h"
33 #include "llvm/IR/IRBuilder.h"
34 #include "llvm/IR/InlineAsm.h"
35 #include "llvm/IR/Instructions.h"
36 #include "llvm/MC/MCRegisterInfo.h"
37 #include "llvm/Target/TargetCallingConv.h"
38 #include "llvm/Target/TargetMachine.h"
39 #include <climits>
40 #include <map>
41 #include <vector>
42
43 namespace llvm {
44   class CallInst;
45   class CCState;
46   class FastISel;
47   class FunctionLoweringInfo;
48   class ImmutableCallSite;
49   class IntrinsicInst;
50   class MachineBasicBlock;
51   class MachineFunction;
52   class MachineInstr;
53   class MachineJumpTableInfo;
54   class MachineLoop;
55   class Mangler;
56   class MCContext;
57   class MCExpr;
58   class MCSymbol;
59   template<typename T> class SmallVectorImpl;
60   class DataLayout;
61   class TargetRegisterClass;
62   class TargetLibraryInfo;
63   class TargetLoweringObjectFile;
64   class Value;
65
66   namespace Sched {
67     enum Preference {
68       None,             // No preference
69       Source,           // Follow source order.
70       RegPressure,      // Scheduling for lowest register pressure.
71       Hybrid,           // Scheduling for both latency and register pressure.
72       ILP,              // Scheduling for ILP in low register pressure mode.
73       VLIW              // Scheduling for VLIW targets.
74     };
75   }
76
77 /// This base class for TargetLowering contains the SelectionDAG-independent
78 /// parts that can be used from the rest of CodeGen.
79 class TargetLoweringBase {
80   TargetLoweringBase(const TargetLoweringBase&) = delete;
81   void operator=(const TargetLoweringBase&) = delete;
82
83 public:
84   /// This enum indicates whether operations are valid for a target, and if not,
85   /// what action should be used to make them valid.
86   enum LegalizeAction {
87     Legal,      // The target natively supports this operation.
88     Promote,    // This operation should be executed in a larger type.
89     Expand,     // Try to expand this to other ops, otherwise use a libcall.
90     Custom      // Use the LowerOperation hook to implement custom lowering.
91   };
92
93   /// This enum indicates whether a types are legal for a target, and if not,
94   /// what action should be used to make them valid.
95   enum LegalizeTypeAction {
96     TypeLegal,           // The target natively supports this type.
97     TypePromoteInteger,  // Replace this integer with a larger one.
98     TypeExpandInteger,   // Split this integer into two of half the size.
99     TypeSoftenFloat,     // Convert this float to a same size integer type.
100     TypeExpandFloat,     // Split this float into two of half the size.
101     TypeScalarizeVector, // Replace this one-element vector with its element.
102     TypeSplitVector,     // Split this vector into two of half the size.
103     TypeWidenVector,     // This vector should be widened into a larger vector.
104     TypePromoteFloat     // Replace this float with a larger one.
105   };
106
107   /// LegalizeKind holds the legalization kind that needs to happen to EVT
108   /// in order to type-legalize it.
109   typedef std::pair<LegalizeTypeAction, EVT> LegalizeKind;
110
111   /// Enum that describes how the target represents true/false values.
112   enum BooleanContent {
113     UndefinedBooleanContent,    // Only bit 0 counts, the rest can hold garbage.
114     ZeroOrOneBooleanContent,        // All bits zero except for bit 0.
115     ZeroOrNegativeOneBooleanContent // All bits equal to bit 0.
116   };
117
118   /// Enum that describes what type of support for selects the target has.
119   enum SelectSupportKind {
120     ScalarValSelect,      // The target supports scalar selects (ex: cmov).
121     ScalarCondVectorVal,  // The target supports selects with a scalar condition
122                           // and vector values (ex: cmov).
123     VectorMaskSelect      // The target supports vector selects with a vector
124                           // mask (ex: x86 blends).
125   };
126
127   /// Enum that specifies what a AtomicRMWInst is expanded to, if at all. Exists
128   /// because different targets have different levels of support for these
129   /// atomic RMW instructions, and also have different options w.r.t. what they
130   /// should expand to.
131   enum class AtomicExpansionKind {
132     None,      // Don't expand the instruction.
133     LLSC,      // Expand the instruction into loadlinked/storeconditional; used
134                // by ARM/AArch64. Implies `hasLoadLinkedStoreConditional`
135                // returns true.
136     CmpXChg,   // Expand the instruction into cmpxchg; used by at least X86.
137   };
138
139   static ISD::NodeType getExtendForContent(BooleanContent Content) {
140     switch (Content) {
141     case UndefinedBooleanContent:
142       // Extend by adding rubbish bits.
143       return ISD::ANY_EXTEND;
144     case ZeroOrOneBooleanContent:
145       // Extend by adding zero bits.
146       return ISD::ZERO_EXTEND;
147     case ZeroOrNegativeOneBooleanContent:
148       // Extend by copying the sign bit.
149       return ISD::SIGN_EXTEND;
150     }
151     llvm_unreachable("Invalid content kind");
152   }
153
154   /// NOTE: The TargetMachine owns TLOF.
155   explicit TargetLoweringBase(const TargetMachine &TM);
156   virtual ~TargetLoweringBase() {}
157
158 protected:
159   /// \brief Initialize all of the actions to default values.
160   void initActions();
161
162 public:
163   const TargetMachine &getTargetMachine() const { return TM; }
164
165   virtual bool useSoftFloat() const { return false; }
166
167   /// Return the pointer type for the given address space, defaults to
168   /// the pointer type from the data layout.
169   /// FIXME: The default needs to be removed once all the code is updated.
170   MVT getPointerTy(const DataLayout &DL, uint32_t AS = 0) const {
171     return MVT::getIntegerVT(DL.getPointerSizeInBits(AS));
172   }
173
174   /// EVT is not used in-tree, but is used by out-of-tree target.
175   /// A documentation for this function would be nice...
176   virtual MVT getScalarShiftAmountTy(const DataLayout &, EVT) const;
177
178   EVT getShiftAmountTy(EVT LHSTy, const DataLayout &DL) const;
179
180   /// Returns the type to be used for the index operand of:
181   /// ISD::INSERT_VECTOR_ELT, ISD::EXTRACT_VECTOR_ELT,
182   /// ISD::INSERT_SUBVECTOR, and ISD::EXTRACT_SUBVECTOR
183   virtual MVT getVectorIdxTy(const DataLayout &DL) const {
184     return getPointerTy(DL);
185   }
186
187   /// Return true if the select operation is expensive for this target.
188   bool isSelectExpensive() const { return SelectIsExpensive; }
189
190   virtual bool isSelectSupported(SelectSupportKind /*kind*/) const {
191     return true;
192   }
193
194   /// Return true if multiple condition registers are available.
195   bool hasMultipleConditionRegisters() const {
196     return HasMultipleConditionRegisters;
197   }
198
199   /// Return true if the target has BitExtract instructions.
200   bool hasExtractBitsInsn() const { return HasExtractBitsInsn; }
201
202   /// Return the preferred vector type legalization action.
203   virtual TargetLoweringBase::LegalizeTypeAction
204   getPreferredVectorAction(EVT VT) const {
205     // The default action for one element vectors is to scalarize
206     if (VT.getVectorNumElements() == 1)
207       return TypeScalarizeVector;
208     // The default action for other vectors is to promote
209     return TypePromoteInteger;
210   }
211
212   // There are two general methods for expanding a BUILD_VECTOR node:
213   //  1. Use SCALAR_TO_VECTOR on the defined scalar values and then shuffle
214   //     them together.
215   //  2. Build the vector on the stack and then load it.
216   // If this function returns true, then method (1) will be used, subject to
217   // the constraint that all of the necessary shuffles are legal (as determined
218   // by isShuffleMaskLegal). If this function returns false, then method (2) is
219   // always used. The vector type, and the number of defined values, are
220   // provided.
221   virtual bool
222   shouldExpandBuildVectorWithShuffles(EVT /* VT */,
223                                       unsigned DefinedValues) const {
224     return DefinedValues < 3;
225   }
226
227   /// Return true if integer divide is usually cheaper than a sequence of
228   /// several shifts, adds, and multiplies for this target.
229   /// The definition of "cheaper" may depend on whether we're optimizing
230   /// for speed or for size.
231   virtual bool isIntDivCheap(EVT VT, AttributeSet Attr) const {
232     return false;
233   }
234
235   /// Return true if sqrt(x) is as cheap or cheaper than 1 / rsqrt(x)
236   bool isFsqrtCheap() const {
237     return FsqrtIsCheap;
238   }
239
240   /// Returns true if target has indicated at least one type should be bypassed.
241   bool isSlowDivBypassed() const { return !BypassSlowDivWidths.empty(); }
242
243   /// Returns map of slow types for division or remainder with corresponding
244   /// fast types
245   const DenseMap<unsigned int, unsigned int> &getBypassSlowDivWidths() const {
246     return BypassSlowDivWidths;
247   }
248
249   /// Return true if Flow Control is an expensive operation that should be
250   /// avoided.
251   bool isJumpExpensive() const { return JumpIsExpensive; }
252
253   /// Return true if selects are only cheaper than branches if the branch is
254   /// unlikely to be predicted right.
255   bool isPredictableSelectExpensive() const {
256     return PredictableSelectIsExpensive;
257   }
258
259   /// isLoadBitCastBeneficial() - Return true if the following transform
260   /// is beneficial.
261   /// fold (conv (load x)) -> (load (conv*)x)
262   /// On architectures that don't natively support some vector loads
263   /// efficiently, casting the load to a smaller vector of larger types and
264   /// loading is more efficient, however, this can be undone by optimizations in
265   /// dag combiner.
266   virtual bool isLoadBitCastBeneficial(EVT /* Load */,
267                                        EVT /* Bitcast */) const {
268     return true;
269   }
270
271   /// Return true if it is expected to be cheaper to do a store of a non-zero
272   /// vector constant with the given size and type for the address space than to
273   /// store the individual scalar element constants.
274   virtual bool storeOfVectorConstantIsCheap(EVT MemVT,
275                                             unsigned NumElem,
276                                             unsigned AddrSpace) const {
277     return false;
278   }
279
280   /// \brief Return true if it is cheap to speculate a call to intrinsic cttz.
281   virtual bool isCheapToSpeculateCttz() const {
282     return false;
283   }
284
285   /// \brief Return true if it is cheap to speculate a call to intrinsic ctlz.
286   virtual bool isCheapToSpeculateCtlz() const {
287     return false;
288   }
289
290   /// \brief Return if the target supports combining a
291   /// chain like:
292   /// \code
293   ///   %andResult = and %val1, #imm-with-one-bit-set;
294   ///   %icmpResult = icmp %andResult, 0
295   ///   br i1 %icmpResult, label %dest1, label %dest2
296   /// \endcode
297   /// into a single machine instruction of a form like:
298   /// \code
299   ///   brOnBitSet %register, #bitNumber, dest
300   /// \endcode
301   bool isMaskAndBranchFoldingLegal() const {
302     return MaskAndBranchFoldingIsLegal;
303   }
304
305   /// \brief Return true if the target wants to use the optimization that
306   /// turns ext(promotableInst1(...(promotableInstN(load)))) into
307   /// promotedInst1(...(promotedInstN(ext(load)))).
308   bool enableExtLdPromotion() const { return EnableExtLdPromotion; }
309
310   /// Return true if the target can combine store(extractelement VectorTy,
311   /// Idx).
312   /// \p Cost[out] gives the cost of that transformation when this is true.
313   virtual bool canCombineStoreAndExtract(Type *VectorTy, Value *Idx,
314                                          unsigned &Cost) const {
315     return false;
316   }
317
318   /// Return true if target supports floating point exceptions.
319   bool hasFloatingPointExceptions() const {
320     return HasFloatingPointExceptions;
321   }
322
323   /// Return true if target always beneficiates from combining into FMA for a
324   /// given value type. This must typically return false on targets where FMA
325   /// takes more cycles to execute than FADD.
326   virtual bool enableAggressiveFMAFusion(EVT VT) const {
327     return false;
328   }
329
330   /// Return the ValueType of the result of SETCC operations.
331   virtual EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context,
332                                  EVT VT) const;
333
334   /// Return the ValueType for comparison libcalls. Comparions libcalls include
335   /// floating point comparion calls, and Ordered/Unordered check calls on
336   /// floating point numbers.
337   virtual
338   MVT::SimpleValueType getCmpLibcallReturnType() const;
339
340   /// For targets without i1 registers, this gives the nature of the high-bits
341   /// of boolean values held in types wider than i1.
342   ///
343   /// "Boolean values" are special true/false values produced by nodes like
344   /// SETCC and consumed (as the condition) by nodes like SELECT and BRCOND.
345   /// Not to be confused with general values promoted from i1.  Some cpus
346   /// distinguish between vectors of boolean and scalars; the isVec parameter
347   /// selects between the two kinds.  For example on X86 a scalar boolean should
348   /// be zero extended from i1, while the elements of a vector of booleans
349   /// should be sign extended from i1.
350   ///
351   /// Some cpus also treat floating point types the same way as they treat
352   /// vectors instead of the way they treat scalars.
353   BooleanContent getBooleanContents(bool isVec, bool isFloat) const {
354     if (isVec)
355       return BooleanVectorContents;
356     return isFloat ? BooleanFloatContents : BooleanContents;
357   }
358
359   BooleanContent getBooleanContents(EVT Type) const {
360     return getBooleanContents(Type.isVector(), Type.isFloatingPoint());
361   }
362
363   /// Return target scheduling preference.
364   Sched::Preference getSchedulingPreference() const {
365     return SchedPreferenceInfo;
366   }
367
368   /// Some scheduler, e.g. hybrid, can switch to different scheduling heuristics
369   /// for different nodes. This function returns the preference (or none) for
370   /// the given node.
371   virtual Sched::Preference getSchedulingPreference(SDNode *) const {
372     return Sched::None;
373   }
374
375   /// Return the register class that should be used for the specified value
376   /// type.
377   virtual const TargetRegisterClass *getRegClassFor(MVT VT) const {
378     const TargetRegisterClass *RC = RegClassForVT[VT.SimpleTy];
379     assert(RC && "This value type is not natively supported!");
380     return RC;
381   }
382
383   /// Return the 'representative' register class for the specified value
384   /// type.
385   ///
386   /// The 'representative' register class is the largest legal super-reg
387   /// register class for the register class of the value type.  For example, on
388   /// i386 the rep register class for i8, i16, and i32 are GR32; while the rep
389   /// register class is GR64 on x86_64.
390   virtual const TargetRegisterClass *getRepRegClassFor(MVT VT) const {
391     const TargetRegisterClass *RC = RepRegClassForVT[VT.SimpleTy];
392     return RC;
393   }
394
395   /// Return the cost of the 'representative' register class for the specified
396   /// value type.
397   virtual uint8_t getRepRegClassCostFor(MVT VT) const {
398     return RepRegClassCostForVT[VT.SimpleTy];
399   }
400
401   /// Return true if the target has native support for the specified value type.
402   /// This means that it has a register that directly holds it without
403   /// promotions or expansions.
404   bool isTypeLegal(EVT VT) const {
405     assert(!VT.isSimple() ||
406            (unsigned)VT.getSimpleVT().SimpleTy < array_lengthof(RegClassForVT));
407     return VT.isSimple() && RegClassForVT[VT.getSimpleVT().SimpleTy] != nullptr;
408   }
409
410   class ValueTypeActionImpl {
411     /// ValueTypeActions - For each value type, keep a LegalizeTypeAction enum
412     /// that indicates how instruction selection should deal with the type.
413     uint8_t ValueTypeActions[MVT::LAST_VALUETYPE];
414
415   public:
416     ValueTypeActionImpl() {
417       std::fill(std::begin(ValueTypeActions), std::end(ValueTypeActions), 0);
418     }
419
420     LegalizeTypeAction getTypeAction(MVT VT) const {
421       return (LegalizeTypeAction)ValueTypeActions[VT.SimpleTy];
422     }
423
424     void setTypeAction(MVT VT, LegalizeTypeAction Action) {
425       unsigned I = VT.SimpleTy;
426       ValueTypeActions[I] = Action;
427     }
428   };
429
430   const ValueTypeActionImpl &getValueTypeActions() const {
431     return ValueTypeActions;
432   }
433
434   /// Return how we should legalize values of this type, either it is already
435   /// legal (return 'Legal') or we need to promote it to a larger type (return
436   /// 'Promote'), or we need to expand it into multiple registers of smaller
437   /// integer type (return 'Expand').  'Custom' is not an option.
438   LegalizeTypeAction getTypeAction(LLVMContext &Context, EVT VT) const {
439     return getTypeConversion(Context, VT).first;
440   }
441   LegalizeTypeAction getTypeAction(MVT VT) const {
442     return ValueTypeActions.getTypeAction(VT);
443   }
444
445   /// For types supported by the target, this is an identity function.  For
446   /// types that must be promoted to larger types, this returns the larger type
447   /// to promote to.  For integer types that are larger than the largest integer
448   /// register, this contains one step in the expansion to get to the smaller
449   /// register. For illegal floating point types, this returns the integer type
450   /// to transform to.
451   EVT getTypeToTransformTo(LLVMContext &Context, EVT VT) const {
452     return getTypeConversion(Context, VT).second;
453   }
454
455   /// For types supported by the target, this is an identity function.  For
456   /// types that must be expanded (i.e. integer types that are larger than the
457   /// largest integer register or illegal floating point types), this returns
458   /// the largest legal type it will be expanded to.
459   EVT getTypeToExpandTo(LLVMContext &Context, EVT VT) const {
460     assert(!VT.isVector());
461     while (true) {
462       switch (getTypeAction(Context, VT)) {
463       case TypeLegal:
464         return VT;
465       case TypeExpandInteger:
466         VT = getTypeToTransformTo(Context, VT);
467         break;
468       default:
469         llvm_unreachable("Type is not legal nor is it to be expanded!");
470       }
471     }
472   }
473
474   /// Vector types are broken down into some number of legal first class types.
475   /// For example, EVT::v8f32 maps to 2 EVT::v4f32 with Altivec or SSE1, or 8
476   /// promoted EVT::f64 values with the X86 FP stack.  Similarly, EVT::v2i64
477   /// turns into 4 EVT::i32 values with both PPC and X86.
478   ///
479   /// This method returns the number of registers needed, and the VT for each
480   /// register.  It also returns the VT and quantity of the intermediate values
481   /// before they are promoted/expanded.
482   unsigned getVectorTypeBreakdown(LLVMContext &Context, EVT VT,
483                                   EVT &IntermediateVT,
484                                   unsigned &NumIntermediates,
485                                   MVT &RegisterVT) const;
486
487   struct IntrinsicInfo {
488     unsigned     opc;         // target opcode
489     EVT          memVT;       // memory VT
490     const Value* ptrVal;      // value representing memory location
491     int          offset;      // offset off of ptrVal
492     unsigned     size;        // the size of the memory location
493                               // (taken from memVT if zero)
494     unsigned     align;       // alignment
495     bool         vol;         // is volatile?
496     bool         readMem;     // reads memory?
497     bool         writeMem;    // writes memory?
498
499     IntrinsicInfo() : opc(0), ptrVal(nullptr), offset(0), size(0), align(1),
500                       vol(false), readMem(false), writeMem(false) {}
501   };
502
503   /// Given an intrinsic, checks if on the target the intrinsic will need to map
504   /// to a MemIntrinsicNode (touches memory). If this is the case, it returns
505   /// true and store the intrinsic information into the IntrinsicInfo that was
506   /// passed to the function.
507   virtual bool getTgtMemIntrinsic(IntrinsicInfo &, const CallInst &,
508                                   unsigned /*Intrinsic*/) const {
509     return false;
510   }
511
512   /// Returns true if the target can instruction select the specified FP
513   /// immediate natively. If false, the legalizer will materialize the FP
514   /// immediate as a load from a constant pool.
515   virtual bool isFPImmLegal(const APFloat &/*Imm*/, EVT /*VT*/) const {
516     return false;
517   }
518
519   /// Targets can use this to indicate that they only support *some*
520   /// VECTOR_SHUFFLE operations, those with specific masks.  By default, if a
521   /// target supports the VECTOR_SHUFFLE node, all mask values are assumed to be
522   /// legal.
523   virtual bool isShuffleMaskLegal(const SmallVectorImpl<int> &/*Mask*/,
524                                   EVT /*VT*/) const {
525     return true;
526   }
527
528   /// Returns true if the operation can trap for the value type.
529   ///
530   /// VT must be a legal type. By default, we optimistically assume most
531   /// operations don't trap except for divide and remainder.
532   virtual bool canOpTrap(unsigned Op, EVT VT) const;
533
534   /// Similar to isShuffleMaskLegal. This is used by Targets can use this to
535   /// indicate if there is a suitable VECTOR_SHUFFLE that can be used to replace
536   /// a VAND with a constant pool entry.
537   virtual bool isVectorClearMaskLegal(const SmallVectorImpl<int> &/*Mask*/,
538                                       EVT /*VT*/) const {
539     return false;
540   }
541
542   /// Return how this operation should be treated: either it is legal, needs to
543   /// be promoted to a larger size, needs to be expanded to some other code
544   /// sequence, or the target has a custom expander for it.
545   LegalizeAction getOperationAction(unsigned Op, EVT VT) const {
546     if (VT.isExtended()) return Expand;
547     // If a target-specific SDNode requires legalization, require the target
548     // to provide custom legalization for it.
549     if (Op > array_lengthof(OpActions[0])) return Custom;
550     unsigned I = (unsigned) VT.getSimpleVT().SimpleTy;
551     return (LegalizeAction)OpActions[I][Op];
552   }
553
554   /// Return true if the specified operation is legal on this target or can be
555   /// made legal with custom lowering. This is used to help guide high-level
556   /// lowering decisions.
557   bool isOperationLegalOrCustom(unsigned Op, EVT VT) const {
558     return (VT == MVT::Other || isTypeLegal(VT)) &&
559       (getOperationAction(Op, VT) == Legal ||
560        getOperationAction(Op, VT) == Custom);
561   }
562
563   /// Return true if the specified operation is legal on this target or can be
564   /// made legal using promotion. This is used to help guide high-level lowering
565   /// decisions.
566   bool isOperationLegalOrPromote(unsigned Op, EVT VT) const {
567     return (VT == MVT::Other || isTypeLegal(VT)) &&
568       (getOperationAction(Op, VT) == Legal ||
569        getOperationAction(Op, VT) == Promote);
570   }
571
572   /// Return true if the specified operation is illegal on this target or
573   /// unlikely to be made legal with custom lowering. This is used to help guide
574   /// high-level lowering decisions.
575   bool isOperationExpand(unsigned Op, EVT VT) const {
576     return (!isTypeLegal(VT) || getOperationAction(Op, VT) == Expand);
577   }
578
579   /// Return true if the specified operation is legal on this target.
580   bool isOperationLegal(unsigned Op, EVT VT) const {
581     return (VT == MVT::Other || isTypeLegal(VT)) &&
582            getOperationAction(Op, VT) == Legal;
583   }
584
585   /// Return how this load with extension should be treated: either it is legal,
586   /// needs to be promoted to a larger size, needs to be expanded to some other
587   /// code sequence, or the target has a custom expander for it.
588   LegalizeAction getLoadExtAction(unsigned ExtType, EVT ValVT,
589                                   EVT MemVT) const {
590     if (ValVT.isExtended() || MemVT.isExtended()) return Expand;
591     unsigned ValI = (unsigned) ValVT.getSimpleVT().SimpleTy;
592     unsigned MemI = (unsigned) MemVT.getSimpleVT().SimpleTy;
593     assert(ExtType < ISD::LAST_LOADEXT_TYPE && ValI < MVT::LAST_VALUETYPE &&
594            MemI < MVT::LAST_VALUETYPE && "Table isn't big enough!");
595     return (LegalizeAction)LoadExtActions[ValI][MemI][ExtType];
596   }
597
598   /// Return true if the specified load with extension is legal on this target.
599   bool isLoadExtLegal(unsigned ExtType, EVT ValVT, EVT MemVT) const {
600     return ValVT.isSimple() && MemVT.isSimple() &&
601       getLoadExtAction(ExtType, ValVT, MemVT) == Legal;
602   }
603
604   /// Return true if the specified load with extension is legal or custom
605   /// on this target.
606   bool isLoadExtLegalOrCustom(unsigned ExtType, EVT ValVT, EVT MemVT) const {
607     return ValVT.isSimple() && MemVT.isSimple() &&
608       (getLoadExtAction(ExtType, ValVT, MemVT) == Legal ||
609        getLoadExtAction(ExtType, ValVT, MemVT) == Custom);
610   }
611
612   /// Return how this store with truncation should be treated: either it is
613   /// legal, needs to be promoted to a larger size, needs to be expanded to some
614   /// other code sequence, or the target has a custom expander for it.
615   LegalizeAction getTruncStoreAction(EVT ValVT, EVT MemVT) const {
616     if (ValVT.isExtended() || MemVT.isExtended()) return Expand;
617     unsigned ValI = (unsigned) ValVT.getSimpleVT().SimpleTy;
618     unsigned MemI = (unsigned) MemVT.getSimpleVT().SimpleTy;
619     assert(ValI < MVT::LAST_VALUETYPE && MemI < MVT::LAST_VALUETYPE &&
620            "Table isn't big enough!");
621     return (LegalizeAction)TruncStoreActions[ValI][MemI];
622   }
623
624   /// Return true if the specified store with truncation is legal on this
625   /// target.
626   bool isTruncStoreLegal(EVT ValVT, EVT MemVT) const {
627     return isTypeLegal(ValVT) && MemVT.isSimple() &&
628       getTruncStoreAction(ValVT.getSimpleVT(), MemVT.getSimpleVT()) == Legal;
629   }
630
631   /// Return how the indexed load should be treated: either it is legal, needs
632   /// to be promoted to a larger size, needs to be expanded to some other code
633   /// sequence, or the target has a custom expander for it.
634   LegalizeAction
635   getIndexedLoadAction(unsigned IdxMode, MVT VT) const {
636     assert(IdxMode < ISD::LAST_INDEXED_MODE && VT.isValid() &&
637            "Table isn't big enough!");
638     unsigned Ty = (unsigned)VT.SimpleTy;
639     return (LegalizeAction)((IndexedModeActions[Ty][IdxMode] & 0xf0) >> 4);
640   }
641
642   /// Return true if the specified indexed load is legal on this target.
643   bool isIndexedLoadLegal(unsigned IdxMode, EVT VT) const {
644     return VT.isSimple() &&
645       (getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Legal ||
646        getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Custom);
647   }
648
649   /// Return how the indexed store should be treated: either it is legal, needs
650   /// to be promoted to a larger size, needs to be expanded to some other code
651   /// sequence, or the target has a custom expander for it.
652   LegalizeAction
653   getIndexedStoreAction(unsigned IdxMode, MVT VT) const {
654     assert(IdxMode < ISD::LAST_INDEXED_MODE && VT.isValid() &&
655            "Table isn't big enough!");
656     unsigned Ty = (unsigned)VT.SimpleTy;
657     return (LegalizeAction)(IndexedModeActions[Ty][IdxMode] & 0x0f);
658   }
659
660   /// Return true if the specified indexed load is legal on this target.
661   bool isIndexedStoreLegal(unsigned IdxMode, EVT VT) const {
662     return VT.isSimple() &&
663       (getIndexedStoreAction(IdxMode, VT.getSimpleVT()) == Legal ||
664        getIndexedStoreAction(IdxMode, VT.getSimpleVT()) == Custom);
665   }
666
667   /// Return how the condition code should be treated: either it is legal, needs
668   /// to be expanded to some other code sequence, or the target has a custom
669   /// expander for it.
670   LegalizeAction
671   getCondCodeAction(ISD::CondCode CC, MVT VT) const {
672     assert((unsigned)CC < array_lengthof(CondCodeActions) &&
673            ((unsigned)VT.SimpleTy >> 4) < array_lengthof(CondCodeActions[0]) &&
674            "Table isn't big enough!");
675     // See setCondCodeAction for how this is encoded.
676     uint32_t Shift = 2 * (VT.SimpleTy & 0xF);
677     uint32_t Value = CondCodeActions[CC][VT.SimpleTy >> 4];
678     LegalizeAction Action = (LegalizeAction) ((Value >> Shift) & 0x3);
679     assert(Action != Promote && "Can't promote condition code!");
680     return Action;
681   }
682
683   /// Return true if the specified condition code is legal on this target.
684   bool isCondCodeLegal(ISD::CondCode CC, MVT VT) const {
685     return
686       getCondCodeAction(CC, VT) == Legal ||
687       getCondCodeAction(CC, VT) == Custom;
688   }
689
690
691   /// If the action for this operation is to promote, this method returns the
692   /// ValueType to promote to.
693   MVT getTypeToPromoteTo(unsigned Op, MVT VT) const {
694     assert(getOperationAction(Op, VT) == Promote &&
695            "This operation isn't promoted!");
696
697     // See if this has an explicit type specified.
698     std::map<std::pair<unsigned, MVT::SimpleValueType>,
699              MVT::SimpleValueType>::const_iterator PTTI =
700       PromoteToType.find(std::make_pair(Op, VT.SimpleTy));
701     if (PTTI != PromoteToType.end()) return PTTI->second;
702
703     assert((VT.isInteger() || VT.isFloatingPoint()) &&
704            "Cannot autopromote this type, add it with AddPromotedToType.");
705
706     MVT NVT = VT;
707     do {
708       NVT = (MVT::SimpleValueType)(NVT.SimpleTy+1);
709       assert(NVT.isInteger() == VT.isInteger() && NVT != MVT::isVoid &&
710              "Didn't find type to promote to!");
711     } while (!isTypeLegal(NVT) ||
712               getOperationAction(Op, NVT) == Promote);
713     return NVT;
714   }
715
716   /// Return the EVT corresponding to this LLVM type.  This is fixed by the LLVM
717   /// operations except for the pointer size.  If AllowUnknown is true, this
718   /// will return MVT::Other for types with no EVT counterpart (e.g. structs),
719   /// otherwise it will assert.
720   EVT getValueType(const DataLayout &DL, Type *Ty,
721                    bool AllowUnknown = false) const {
722     // Lower scalar pointers to native pointer types.
723     if (PointerType *PTy = dyn_cast<PointerType>(Ty))
724       return getPointerTy(DL, PTy->getAddressSpace());
725
726     if (Ty->isVectorTy()) {
727       VectorType *VTy = cast<VectorType>(Ty);
728       Type *Elm = VTy->getElementType();
729       // Lower vectors of pointers to native pointer types.
730       if (PointerType *PT = dyn_cast<PointerType>(Elm)) {
731         EVT PointerTy(getPointerTy(DL, PT->getAddressSpace()));
732         Elm = PointerTy.getTypeForEVT(Ty->getContext());
733       }
734
735       return EVT::getVectorVT(Ty->getContext(), EVT::getEVT(Elm, false),
736                        VTy->getNumElements());
737     }
738     return EVT::getEVT(Ty, AllowUnknown);
739   }
740
741   /// Return the MVT corresponding to this LLVM type. See getValueType.
742   MVT getSimpleValueType(const DataLayout &DL, Type *Ty,
743                          bool AllowUnknown = false) const {
744     return getValueType(DL, Ty, AllowUnknown).getSimpleVT();
745   }
746
747   /// Return the desired alignment for ByVal or InAlloca aggregate function
748   /// arguments in the caller parameter area.  This is the actual alignment, not
749   /// its logarithm.
750   virtual unsigned getByValTypeAlignment(Type *Ty, const DataLayout &DL) const;
751
752   /// Return the type of registers that this ValueType will eventually require.
753   MVT getRegisterType(MVT VT) const {
754     assert((unsigned)VT.SimpleTy < array_lengthof(RegisterTypeForVT));
755     return RegisterTypeForVT[VT.SimpleTy];
756   }
757
758   /// Return the type of registers that this ValueType will eventually require.
759   MVT getRegisterType(LLVMContext &Context, EVT VT) const {
760     if (VT.isSimple()) {
761       assert((unsigned)VT.getSimpleVT().SimpleTy <
762                 array_lengthof(RegisterTypeForVT));
763       return RegisterTypeForVT[VT.getSimpleVT().SimpleTy];
764     }
765     if (VT.isVector()) {
766       EVT VT1;
767       MVT RegisterVT;
768       unsigned NumIntermediates;
769       (void)getVectorTypeBreakdown(Context, VT, VT1,
770                                    NumIntermediates, RegisterVT);
771       return RegisterVT;
772     }
773     if (VT.isInteger()) {
774       return getRegisterType(Context, getTypeToTransformTo(Context, VT));
775     }
776     llvm_unreachable("Unsupported extended type!");
777   }
778
779   /// Return the number of registers that this ValueType will eventually
780   /// require.
781   ///
782   /// This is one for any types promoted to live in larger registers, but may be
783   /// more than one for types (like i64) that are split into pieces.  For types
784   /// like i140, which are first promoted then expanded, it is the number of
785   /// registers needed to hold all the bits of the original type.  For an i140
786   /// on a 32 bit machine this means 5 registers.
787   unsigned getNumRegisters(LLVMContext &Context, EVT VT) const {
788     if (VT.isSimple()) {
789       assert((unsigned)VT.getSimpleVT().SimpleTy <
790                 array_lengthof(NumRegistersForVT));
791       return NumRegistersForVT[VT.getSimpleVT().SimpleTy];
792     }
793     if (VT.isVector()) {
794       EVT VT1;
795       MVT VT2;
796       unsigned NumIntermediates;
797       return getVectorTypeBreakdown(Context, VT, VT1, NumIntermediates, VT2);
798     }
799     if (VT.isInteger()) {
800       unsigned BitWidth = VT.getSizeInBits();
801       unsigned RegWidth = getRegisterType(Context, VT).getSizeInBits();
802       return (BitWidth + RegWidth - 1) / RegWidth;
803     }
804     llvm_unreachable("Unsupported extended type!");
805   }
806
807   /// If true, then instruction selection should seek to shrink the FP constant
808   /// of the specified type to a smaller type in order to save space and / or
809   /// reduce runtime.
810   virtual bool ShouldShrinkFPConstant(EVT) const { return true; }
811
812   // Return true if it is profitable to reduce the given load node to a smaller
813   // type.
814   //
815   // e.g. (i16 (trunc (i32 (load x))) -> i16 load x should be performed
816   virtual bool shouldReduceLoadWidth(SDNode *Load,
817                                      ISD::LoadExtType ExtTy,
818                                      EVT NewVT) const {
819     return true;
820   }
821
822   /// When splitting a value of the specified type into parts, does the Lo
823   /// or Hi part come first?  This usually follows the endianness, except
824   /// for ppcf128, where the Hi part always comes first.
825   bool hasBigEndianPartOrdering(EVT VT, const DataLayout &DL) const {
826     return DL.isBigEndian() || VT == MVT::ppcf128;
827   }
828
829   /// If true, the target has custom DAG combine transformations that it can
830   /// perform for the specified node.
831   bool hasTargetDAGCombine(ISD::NodeType NT) const {
832     assert(unsigned(NT >> 3) < array_lengthof(TargetDAGCombineArray));
833     return TargetDAGCombineArray[NT >> 3] & (1 << (NT&7));
834   }
835
836   /// \brief Get maximum # of store operations permitted for llvm.memset
837   ///
838   /// This function returns the maximum number of store operations permitted
839   /// to replace a call to llvm.memset. The value is set by the target at the
840   /// performance threshold for such a replacement. If OptSize is true,
841   /// return the limit for functions that have OptSize attribute.
842   unsigned getMaxStoresPerMemset(bool OptSize) const {
843     return OptSize ? MaxStoresPerMemsetOptSize : MaxStoresPerMemset;
844   }
845
846   /// \brief Get maximum # of store operations permitted for llvm.memcpy
847   ///
848   /// This function returns the maximum number of store operations permitted
849   /// to replace a call to llvm.memcpy. The value is set by the target at the
850   /// performance threshold for such a replacement. If OptSize is true,
851   /// return the limit for functions that have OptSize attribute.
852   unsigned getMaxStoresPerMemcpy(bool OptSize) const {
853     return OptSize ? MaxStoresPerMemcpyOptSize : MaxStoresPerMemcpy;
854   }
855
856   /// \brief Get maximum # of store operations permitted for llvm.memmove
857   ///
858   /// This function returns the maximum number of store operations permitted
859   /// to replace a call to llvm.memmove. The value is set by the target at the
860   /// performance threshold for such a replacement. If OptSize is true,
861   /// return the limit for functions that have OptSize attribute.
862   unsigned getMaxStoresPerMemmove(bool OptSize) const {
863     return OptSize ? MaxStoresPerMemmoveOptSize : MaxStoresPerMemmove;
864   }
865
866   /// \brief Determine if the target supports unaligned memory accesses.
867   ///
868   /// This function returns true if the target allows unaligned memory accesses
869   /// of the specified type in the given address space. If true, it also returns
870   /// whether the unaligned memory access is "fast" in the last argument by
871   /// reference. This is used, for example, in situations where an array
872   /// copy/move/set is converted to a sequence of store operations. Its use
873   /// helps to ensure that such replacements don't generate code that causes an
874   /// alignment error (trap) on the target machine.
875   virtual bool allowsMisalignedMemoryAccesses(EVT,
876                                               unsigned AddrSpace = 0,
877                                               unsigned Align = 1,
878                                               bool * /*Fast*/ = nullptr) const {
879     return false;
880   }
881
882   /// Return true if the target supports a memory access of this type for the
883   /// given address space and alignment. If the access is allowed, the optional
884   /// final parameter returns if the access is also fast (as defined by the
885   /// target).
886   bool allowsMemoryAccess(LLVMContext &Context, const DataLayout &DL, EVT VT,
887                           unsigned AddrSpace = 0, unsigned Alignment = 1,
888                           bool *Fast = nullptr) const;
889   
890   /// Returns the target specific optimal type for load and store operations as
891   /// a result of memset, memcpy, and memmove lowering.
892   ///
893   /// If DstAlign is zero that means it's safe to destination alignment can
894   /// satisfy any constraint. Similarly if SrcAlign is zero it means there isn't
895   /// a need to check it against alignment requirement, probably because the
896   /// source does not need to be loaded. If 'IsMemset' is true, that means it's
897   /// expanding a memset. If 'ZeroMemset' is true, that means it's a memset of
898   /// zero. 'MemcpyStrSrc' indicates whether the memcpy source is constant so it
899   /// does not need to be loaded.  It returns EVT::Other if the type should be
900   /// determined using generic target-independent logic.
901   virtual EVT getOptimalMemOpType(uint64_t /*Size*/,
902                                   unsigned /*DstAlign*/, unsigned /*SrcAlign*/,
903                                   bool /*IsMemset*/,
904                                   bool /*ZeroMemset*/,
905                                   bool /*MemcpyStrSrc*/,
906                                   MachineFunction &/*MF*/) const {
907     return MVT::Other;
908   }
909
910   /// Returns true if it's safe to use load / store of the specified type to
911   /// expand memcpy / memset inline.
912   ///
913   /// This is mostly true for all types except for some special cases. For
914   /// example, on X86 targets without SSE2 f64 load / store are done with fldl /
915   /// fstpl which also does type conversion. Note the specified type doesn't
916   /// have to be legal as the hook is used before type legalization.
917   virtual bool isSafeMemOpType(MVT /*VT*/) const { return true; }
918
919   /// Determine if we should use _setjmp or setjmp to implement llvm.setjmp.
920   bool usesUnderscoreSetJmp() const {
921     return UseUnderscoreSetJmp;
922   }
923
924   /// Determine if we should use _longjmp or longjmp to implement llvm.longjmp.
925   bool usesUnderscoreLongJmp() const {
926     return UseUnderscoreLongJmp;
927   }
928
929   /// Return integer threshold on number of blocks to use jump tables rather
930   /// than if sequence.
931   int getMinimumJumpTableEntries() const {
932     return MinimumJumpTableEntries;
933   }
934
935   /// If a physical register, this specifies the register that
936   /// llvm.savestack/llvm.restorestack should save and restore.
937   unsigned getStackPointerRegisterToSaveRestore() const {
938     return StackPointerRegisterToSaveRestore;
939   }
940
941   /// If a physical register, this returns the register that receives the
942   /// exception address on entry to a landing pad.
943   unsigned getExceptionPointerRegister() const {
944     return ExceptionPointerRegister;
945   }
946
947   /// If a physical register, this returns the register that receives the
948   /// exception typeid on entry to a landing pad.
949   unsigned getExceptionSelectorRegister() const {
950     return ExceptionSelectorRegister;
951   }
952
953   /// Returns the target's jmp_buf size in bytes (if never set, the default is
954   /// 200)
955   unsigned getJumpBufSize() const {
956     return JumpBufSize;
957   }
958
959   /// Returns the target's jmp_buf alignment in bytes (if never set, the default
960   /// is 0)
961   unsigned getJumpBufAlignment() const {
962     return JumpBufAlignment;
963   }
964
965   /// Return the minimum stack alignment of an argument.
966   unsigned getMinStackArgumentAlignment() const {
967     return MinStackArgumentAlignment;
968   }
969
970   /// Return the minimum function alignment.
971   unsigned getMinFunctionAlignment() const {
972     return MinFunctionAlignment;
973   }
974
975   /// Return the preferred function alignment.
976   unsigned getPrefFunctionAlignment() const {
977     return PrefFunctionAlignment;
978   }
979
980   /// Return the preferred loop alignment.
981   virtual unsigned getPrefLoopAlignment(MachineLoop *ML = nullptr) const {
982     return PrefLoopAlignment;
983   }
984
985   /// Return whether the DAG builder should automatically insert fences and
986   /// reduce ordering for atomics.
987   bool getInsertFencesForAtomic() const {
988     return InsertFencesForAtomic;
989   }
990
991   /// Return true if the target stores stack protector cookies at a fixed offset
992   /// in some non-standard address space, and populates the address space and
993   /// offset as appropriate.
994   virtual bool getStackCookieLocation(unsigned &/*AddressSpace*/,
995                                       unsigned &/*Offset*/) const {
996     return false;
997   }
998
999   /// Returns true if a cast between SrcAS and DestAS is a noop.
1000   virtual bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const {
1001     return false;
1002   }
1003
1004   /// Return true if the pointer arguments to CI should be aligned by aligning
1005   /// the object whose address is being passed. If so then MinSize is set to the
1006   /// minimum size the object must be to be aligned and PrefAlign is set to the
1007   /// preferred alignment.
1008   virtual bool shouldAlignPointerArgs(CallInst * /*CI*/, unsigned & /*MinSize*/,
1009                                       unsigned & /*PrefAlign*/) const {
1010     return false;
1011   }
1012
1013   //===--------------------------------------------------------------------===//
1014   /// \name Helpers for TargetTransformInfo implementations
1015   /// @{
1016
1017   /// Get the ISD node that corresponds to the Instruction class opcode.
1018   int InstructionOpcodeToISD(unsigned Opcode) const;
1019
1020   /// Estimate the cost of type-legalization and the legalized type.
1021   std::pair<int, MVT> getTypeLegalizationCost(const DataLayout &DL,
1022                                               Type *Ty) const;
1023
1024   /// @}
1025
1026   //===--------------------------------------------------------------------===//
1027   /// \name Helpers for atomic expansion.
1028   /// @{
1029
1030   /// True if AtomicExpandPass should use emitLoadLinked/emitStoreConditional
1031   /// and expand AtomicCmpXchgInst.
1032   virtual bool hasLoadLinkedStoreConditional() const { return false; }
1033
1034   /// Perform a load-linked operation on Addr, returning a "Value *" with the
1035   /// corresponding pointee type. This may entail some non-trivial operations to
1036   /// truncate or reconstruct types that will be illegal in the backend. See
1037   /// ARMISelLowering for an example implementation.
1038   virtual Value *emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
1039                                 AtomicOrdering Ord) const {
1040     llvm_unreachable("Load linked unimplemented on this target");
1041   }
1042
1043   /// Perform a store-conditional operation to Addr. Return the status of the
1044   /// store. This should be 0 if the store succeeded, non-zero otherwise.
1045   virtual Value *emitStoreConditional(IRBuilder<> &Builder, Value *Val,
1046                                       Value *Addr, AtomicOrdering Ord) const {
1047     llvm_unreachable("Store conditional unimplemented on this target");
1048   }
1049
1050   /// Inserts in the IR a target-specific intrinsic specifying a fence.
1051   /// It is called by AtomicExpandPass before expanding an
1052   ///   AtomicRMW/AtomicCmpXchg/AtomicStore/AtomicLoad.
1053   /// RMW and CmpXchg set both IsStore and IsLoad to true.
1054   /// This function should either return a nullptr, or a pointer to an IR-level
1055   ///   Instruction*. Even complex fence sequences can be represented by a
1056   ///   single Instruction* through an intrinsic to be lowered later.
1057   /// Backends with !getInsertFencesForAtomic() should keep a no-op here.
1058   /// Backends should override this method to produce target-specific intrinsic
1059   ///   for their fences.
1060   /// FIXME: Please note that the default implementation here in terms of
1061   ///   IR-level fences exists for historical/compatibility reasons and is
1062   ///   *unsound* ! Fences cannot, in general, be used to restore sequential
1063   ///   consistency. For example, consider the following example:
1064   /// atomic<int> x = y = 0;
1065   /// int r1, r2, r3, r4;
1066   /// Thread 0:
1067   ///   x.store(1);
1068   /// Thread 1:
1069   ///   y.store(1);
1070   /// Thread 2:
1071   ///   r1 = x.load();
1072   ///   r2 = y.load();
1073   /// Thread 3:
1074   ///   r3 = y.load();
1075   ///   r4 = x.load();
1076   ///  r1 = r3 = 1 and r2 = r4 = 0 is impossible as long as the accesses are all
1077   ///  seq_cst. But if they are lowered to monotonic accesses, no amount of
1078   ///  IR-level fences can prevent it.
1079   /// @{
1080   virtual Instruction *emitLeadingFence(IRBuilder<> &Builder,
1081                                         AtomicOrdering Ord, bool IsStore,
1082                                         bool IsLoad) const {
1083     if (!getInsertFencesForAtomic())
1084       return nullptr;
1085
1086     if (isAtLeastRelease(Ord) && IsStore)
1087       return Builder.CreateFence(Ord);
1088     else
1089       return nullptr;
1090   }
1091
1092   virtual Instruction *emitTrailingFence(IRBuilder<> &Builder,
1093                                          AtomicOrdering Ord, bool IsStore,
1094                                          bool IsLoad) const {
1095     if (!getInsertFencesForAtomic())
1096       return nullptr;
1097
1098     if (isAtLeastAcquire(Ord))
1099       return Builder.CreateFence(Ord);
1100     else
1101       return nullptr;
1102   }
1103   /// @}
1104
1105   /// Returns true if the given (atomic) store should be expanded by the
1106   /// IR-level AtomicExpand pass into an "atomic xchg" which ignores its input.
1107   virtual bool shouldExpandAtomicStoreInIR(StoreInst *SI) const {
1108     return false;
1109   }
1110
1111   /// Returns true if arguments should be sign-extended in lib calls.
1112   virtual bool shouldSignExtendTypeInLibCall(EVT Type, bool IsSigned) const {
1113     return IsSigned;
1114  }
1115
1116   /// Returns true if the given (atomic) load should be expanded by the
1117   /// IR-level AtomicExpand pass into a load-linked instruction
1118   /// (through emitLoadLinked()).
1119   virtual bool shouldExpandAtomicLoadInIR(LoadInst *LI) const { return false; }
1120
1121   /// Returns how the IR-level AtomicExpand pass should expand the given
1122   /// AtomicRMW, if at all. Default is to never expand.
1123   virtual AtomicExpansionKind shouldExpandAtomicRMWInIR(AtomicRMWInst *) const {
1124     return AtomicExpansionKind::None;
1125   }
1126
1127   /// On some platforms, an AtomicRMW that never actually modifies the value
1128   /// (such as fetch_add of 0) can be turned into a fence followed by an
1129   /// atomic load. This may sound useless, but it makes it possible for the
1130   /// processor to keep the cacheline shared, dramatically improving
1131   /// performance. And such idempotent RMWs are useful for implementing some
1132   /// kinds of locks, see for example (justification + benchmarks):
1133   /// http://www.hpl.hp.com/techreports/2012/HPL-2012-68.pdf
1134   /// This method tries doing that transformation, returning the atomic load if
1135   /// it succeeds, and nullptr otherwise.
1136   /// If shouldExpandAtomicLoadInIR returns true on that load, it will undergo
1137   /// another round of expansion.
1138   virtual LoadInst *
1139   lowerIdempotentRMWIntoFencedLoad(AtomicRMWInst *RMWI) const {
1140     return nullptr;
1141   }
1142
1143   /// Returns true if we should normalize
1144   /// select(N0&N1, X, Y) => select(N0, select(N1, X, Y), Y) and
1145   /// select(N0|N1, X, Y) => select(N0, select(N1, X, Y, Y)) if it is likely
1146   /// that it saves us from materializing N0 and N1 in an integer register.
1147   /// Targets that are able to perform and/or on flags should return false here.
1148   virtual bool shouldNormalizeToSelectSequence(LLVMContext &Context,
1149                                                EVT VT) const {
1150     // If a target has multiple condition registers, then it likely has logical
1151     // operations on those registers.
1152     if (hasMultipleConditionRegisters())
1153       return false;
1154     // Only do the transform if the value won't be split into multiple
1155     // registers.
1156     LegalizeTypeAction Action = getTypeAction(Context, VT);
1157     return Action != TypeExpandInteger && Action != TypeExpandFloat &&
1158       Action != TypeSplitVector;
1159   }
1160
1161   //===--------------------------------------------------------------------===//
1162   // TargetLowering Configuration Methods - These methods should be invoked by
1163   // the derived class constructor to configure this object for the target.
1164   //
1165 protected:
1166   /// Specify how the target extends the result of integer and floating point
1167   /// boolean values from i1 to a wider type.  See getBooleanContents.
1168   void setBooleanContents(BooleanContent Ty) {
1169     BooleanContents = Ty;
1170     BooleanFloatContents = Ty;
1171   }
1172
1173   /// Specify how the target extends the result of integer and floating point
1174   /// boolean values from i1 to a wider type.  See getBooleanContents.
1175   void setBooleanContents(BooleanContent IntTy, BooleanContent FloatTy) {
1176     BooleanContents = IntTy;
1177     BooleanFloatContents = FloatTy;
1178   }
1179
1180   /// Specify how the target extends the result of a vector boolean value from a
1181   /// vector of i1 to a wider type.  See getBooleanContents.
1182   void setBooleanVectorContents(BooleanContent Ty) {
1183     BooleanVectorContents = Ty;
1184   }
1185
1186   /// Specify the target scheduling preference.
1187   void setSchedulingPreference(Sched::Preference Pref) {
1188     SchedPreferenceInfo = Pref;
1189   }
1190
1191   /// Indicate whether this target prefers to use _setjmp to implement
1192   /// llvm.setjmp or the version without _.  Defaults to false.
1193   void setUseUnderscoreSetJmp(bool Val) {
1194     UseUnderscoreSetJmp = Val;
1195   }
1196
1197   /// Indicate whether this target prefers to use _longjmp to implement
1198   /// llvm.longjmp or the version without _.  Defaults to false.
1199   void setUseUnderscoreLongJmp(bool Val) {
1200     UseUnderscoreLongJmp = Val;
1201   }
1202
1203   /// Indicate the number of blocks to generate jump tables rather than if
1204   /// sequence.
1205   void setMinimumJumpTableEntries(int Val) {
1206     MinimumJumpTableEntries = Val;
1207   }
1208
1209   /// If set to a physical register, this specifies the register that
1210   /// llvm.savestack/llvm.restorestack should save and restore.
1211   void setStackPointerRegisterToSaveRestore(unsigned R) {
1212     StackPointerRegisterToSaveRestore = R;
1213   }
1214
1215   /// If set to a physical register, this sets the register that receives the
1216   /// exception address on entry to a landing pad.
1217   void setExceptionPointerRegister(unsigned R) {
1218     ExceptionPointerRegister = R;
1219   }
1220
1221   /// If set to a physical register, this sets the register that receives the
1222   /// exception typeid on entry to a landing pad.
1223   void setExceptionSelectorRegister(unsigned R) {
1224     ExceptionSelectorRegister = R;
1225   }
1226
1227   /// Tells the code generator not to expand operations into sequences that use
1228   /// the select operations if possible.
1229   void setSelectIsExpensive(bool isExpensive = true) {
1230     SelectIsExpensive = isExpensive;
1231   }
1232
1233   /// Tells the code generator that the target has multiple (allocatable)
1234   /// condition registers that can be used to store the results of comparisons
1235   /// for use by selects and conditional branches. With multiple condition
1236   /// registers, the code generator will not aggressively sink comparisons into
1237   /// the blocks of their users.
1238   void setHasMultipleConditionRegisters(bool hasManyRegs = true) {
1239     HasMultipleConditionRegisters = hasManyRegs;
1240   }
1241
1242   /// Tells the code generator that the target has BitExtract instructions.
1243   /// The code generator will aggressively sink "shift"s into the blocks of
1244   /// their users if the users will generate "and" instructions which can be
1245   /// combined with "shift" to BitExtract instructions.
1246   void setHasExtractBitsInsn(bool hasExtractInsn = true) {
1247     HasExtractBitsInsn = hasExtractInsn;
1248   }
1249
1250   /// Tells the code generator not to expand logic operations on comparison
1251   /// predicates into separate sequences that increase the amount of flow
1252   /// control.
1253   void setJumpIsExpensive(bool isExpensive = true);
1254
1255   /// Tells the code generator that fsqrt is cheap, and should not be replaced
1256   /// with an alternative sequence of instructions.
1257   void setFsqrtIsCheap(bool isCheap = true) { FsqrtIsCheap = isCheap; }
1258
1259   /// Tells the code generator that this target supports floating point
1260   /// exceptions and cares about preserving floating point exception behavior.
1261   void setHasFloatingPointExceptions(bool FPExceptions = true) {
1262     HasFloatingPointExceptions = FPExceptions;
1263   }
1264
1265   /// Tells the code generator which bitwidths to bypass.
1266   void addBypassSlowDiv(unsigned int SlowBitWidth, unsigned int FastBitWidth) {
1267     BypassSlowDivWidths[SlowBitWidth] = FastBitWidth;
1268   }
1269
1270   /// Add the specified register class as an available regclass for the
1271   /// specified value type. This indicates the selector can handle values of
1272   /// that class natively.
1273   void addRegisterClass(MVT VT, const TargetRegisterClass *RC) {
1274     assert((unsigned)VT.SimpleTy < array_lengthof(RegClassForVT));
1275     AvailableRegClasses.push_back(std::make_pair(VT, RC));
1276     RegClassForVT[VT.SimpleTy] = RC;
1277   }
1278
1279   /// Remove all register classes.
1280   void clearRegisterClasses() {
1281     memset(RegClassForVT, 0,MVT::LAST_VALUETYPE * sizeof(TargetRegisterClass*));
1282
1283     AvailableRegClasses.clear();
1284   }
1285
1286   /// \brief Remove all operation actions.
1287   void clearOperationActions() {
1288   }
1289
1290   /// Return the largest legal super-reg register class of the register class
1291   /// for the specified type and its associated "cost".
1292   virtual std::pair<const TargetRegisterClass *, uint8_t>
1293   findRepresentativeClass(const TargetRegisterInfo *TRI, MVT VT) const;
1294
1295   /// Once all of the register classes are added, this allows us to compute
1296   /// derived properties we expose.
1297   void computeRegisterProperties(const TargetRegisterInfo *TRI);
1298
1299   /// Indicate that the specified operation does not work with the specified
1300   /// type and indicate what to do about it.
1301   void setOperationAction(unsigned Op, MVT VT,
1302                           LegalizeAction Action) {
1303     assert(Op < array_lengthof(OpActions[0]) && "Table isn't big enough!");
1304     OpActions[(unsigned)VT.SimpleTy][Op] = (uint8_t)Action;
1305   }
1306
1307   /// Indicate that the specified load with extension does not work with the
1308   /// specified type and indicate what to do about it.
1309   void setLoadExtAction(unsigned ExtType, MVT ValVT, MVT MemVT,
1310                         LegalizeAction Action) {
1311     assert(ExtType < ISD::LAST_LOADEXT_TYPE && ValVT.isValid() &&
1312            MemVT.isValid() && "Table isn't big enough!");
1313     LoadExtActions[ValVT.SimpleTy][MemVT.SimpleTy][ExtType] = (uint8_t)Action;
1314   }
1315
1316   /// Indicate that the specified truncating store does not work with the
1317   /// specified type and indicate what to do about it.
1318   void setTruncStoreAction(MVT ValVT, MVT MemVT,
1319                            LegalizeAction Action) {
1320     assert(ValVT.isValid() && MemVT.isValid() && "Table isn't big enough!");
1321     TruncStoreActions[ValVT.SimpleTy][MemVT.SimpleTy] = (uint8_t)Action;
1322   }
1323
1324   /// Indicate that the specified indexed load does or does not work with the
1325   /// specified type and indicate what to do abort it.
1326   ///
1327   /// NOTE: All indexed mode loads are initialized to Expand in
1328   /// TargetLowering.cpp
1329   void setIndexedLoadAction(unsigned IdxMode, MVT VT,
1330                             LegalizeAction Action) {
1331     assert(VT.isValid() && IdxMode < ISD::LAST_INDEXED_MODE &&
1332            (unsigned)Action < 0xf && "Table isn't big enough!");
1333     // Load action are kept in the upper half.
1334     IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] &= ~0xf0;
1335     IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] |= ((uint8_t)Action) <<4;
1336   }
1337
1338   /// Indicate that the specified indexed store does or does not work with the
1339   /// specified type and indicate what to do about it.
1340   ///
1341   /// NOTE: All indexed mode stores are initialized to Expand in
1342   /// TargetLowering.cpp
1343   void setIndexedStoreAction(unsigned IdxMode, MVT VT,
1344                              LegalizeAction Action) {
1345     assert(VT.isValid() && IdxMode < ISD::LAST_INDEXED_MODE &&
1346            (unsigned)Action < 0xf && "Table isn't big enough!");
1347     // Store action are kept in the lower half.
1348     IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] &= ~0x0f;
1349     IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] |= ((uint8_t)Action);
1350   }
1351
1352   /// Indicate that the specified condition code is or isn't supported on the
1353   /// target and indicate what to do about it.
1354   void setCondCodeAction(ISD::CondCode CC, MVT VT,
1355                          LegalizeAction Action) {
1356     assert(VT.isValid() && (unsigned)CC < array_lengthof(CondCodeActions) &&
1357            "Table isn't big enough!");
1358     /// The lower 5 bits of the SimpleTy index into Nth 2bit set from the 32-bit
1359     /// value and the upper 27 bits index into the second dimension of the array
1360     /// to select what 32-bit value to use.
1361     uint32_t Shift = 2 * (VT.SimpleTy & 0xF);
1362     CondCodeActions[CC][VT.SimpleTy >> 4] &= ~((uint32_t)0x3 << Shift);
1363     CondCodeActions[CC][VT.SimpleTy >> 4] |= (uint32_t)Action << Shift;
1364   }
1365
1366   /// If Opc/OrigVT is specified as being promoted, the promotion code defaults
1367   /// to trying a larger integer/fp until it can find one that works. If that
1368   /// default is insufficient, this method can be used by the target to override
1369   /// the default.
1370   void AddPromotedToType(unsigned Opc, MVT OrigVT, MVT DestVT) {
1371     PromoteToType[std::make_pair(Opc, OrigVT.SimpleTy)] = DestVT.SimpleTy;
1372   }
1373
1374   /// Targets should invoke this method for each target independent node that
1375   /// they want to provide a custom DAG combiner for by implementing the
1376   /// PerformDAGCombine virtual method.
1377   void setTargetDAGCombine(ISD::NodeType NT) {
1378     assert(unsigned(NT >> 3) < array_lengthof(TargetDAGCombineArray));
1379     TargetDAGCombineArray[NT >> 3] |= 1 << (NT&7);
1380   }
1381
1382   /// Set the target's required jmp_buf buffer size (in bytes); default is 200
1383   void setJumpBufSize(unsigned Size) {
1384     JumpBufSize = Size;
1385   }
1386
1387   /// Set the target's required jmp_buf buffer alignment (in bytes); default is
1388   /// 0
1389   void setJumpBufAlignment(unsigned Align) {
1390     JumpBufAlignment = Align;
1391   }
1392
1393   /// Set the target's minimum function alignment (in log2(bytes))
1394   void setMinFunctionAlignment(unsigned Align) {
1395     MinFunctionAlignment = Align;
1396   }
1397
1398   /// Set the target's preferred function alignment.  This should be set if
1399   /// there is a performance benefit to higher-than-minimum alignment (in
1400   /// log2(bytes))
1401   void setPrefFunctionAlignment(unsigned Align) {
1402     PrefFunctionAlignment = Align;
1403   }
1404
1405   /// Set the target's preferred loop alignment. Default alignment is zero, it
1406   /// means the target does not care about loop alignment.  The alignment is
1407   /// specified in log2(bytes). The target may also override
1408   /// getPrefLoopAlignment to provide per-loop values.
1409   void setPrefLoopAlignment(unsigned Align) {
1410     PrefLoopAlignment = Align;
1411   }
1412
1413   /// Set the minimum stack alignment of an argument (in log2(bytes)).
1414   void setMinStackArgumentAlignment(unsigned Align) {
1415     MinStackArgumentAlignment = Align;
1416   }
1417
1418   /// Set if the DAG builder should automatically insert fences and reduce the
1419   /// order of atomic memory operations to Monotonic.
1420   void setInsertFencesForAtomic(bool fence) {
1421     InsertFencesForAtomic = fence;
1422   }
1423
1424 public:
1425   //===--------------------------------------------------------------------===//
1426   // Addressing mode description hooks (used by LSR etc).
1427   //
1428
1429   /// CodeGenPrepare sinks address calculations into the same BB as Load/Store
1430   /// instructions reading the address. This allows as much computation as
1431   /// possible to be done in the address mode for that operand. This hook lets
1432   /// targets also pass back when this should be done on intrinsics which
1433   /// load/store.
1434   virtual bool GetAddrModeArguments(IntrinsicInst * /*I*/,
1435                                     SmallVectorImpl<Value*> &/*Ops*/,
1436                                     Type *&/*AccessTy*/,
1437                                     unsigned AddrSpace = 0) const {
1438     return false;
1439   }
1440
1441   /// This represents an addressing mode of:
1442   ///    BaseGV + BaseOffs + BaseReg + Scale*ScaleReg
1443   /// If BaseGV is null,  there is no BaseGV.
1444   /// If BaseOffs is zero, there is no base offset.
1445   /// If HasBaseReg is false, there is no base register.
1446   /// If Scale is zero, there is no ScaleReg.  Scale of 1 indicates a reg with
1447   /// no scale.
1448   struct AddrMode {
1449     GlobalValue *BaseGV;
1450     int64_t      BaseOffs;
1451     bool         HasBaseReg;
1452     int64_t      Scale;
1453     AddrMode() : BaseGV(nullptr), BaseOffs(0), HasBaseReg(false), Scale(0) {}
1454   };
1455
1456   /// Return true if the addressing mode represented by AM is legal for this
1457   /// target, for a load/store of the specified type.
1458   ///
1459   /// The type may be VoidTy, in which case only return true if the addressing
1460   /// mode is legal for a load/store of any legal type.  TODO: Handle
1461   /// pre/postinc as well.
1462   ///
1463   /// If the address space cannot be determined, it will be -1.
1464   ///
1465   /// TODO: Remove default argument
1466   virtual bool isLegalAddressingMode(const DataLayout &DL, const AddrMode &AM,
1467                                      Type *Ty, unsigned AddrSpace) const;
1468
1469   /// \brief Return the cost of the scaling factor used in the addressing mode
1470   /// represented by AM for this target, for a load/store of the specified type.
1471   ///
1472   /// If the AM is supported, the return value must be >= 0.
1473   /// If the AM is not supported, it returns a negative value.
1474   /// TODO: Handle pre/postinc as well.
1475   /// TODO: Remove default argument
1476   virtual int getScalingFactorCost(const DataLayout &DL, const AddrMode &AM,
1477                                    Type *Ty, unsigned AS = 0) const {
1478     // Default: assume that any scaling factor used in a legal AM is free.
1479     if (isLegalAddressingMode(DL, AM, Ty, AS))
1480       return 0;
1481     return -1;
1482   }
1483
1484   /// Return true if the specified immediate is legal icmp immediate, that is
1485   /// the target has icmp instructions which can compare a register against the
1486   /// immediate without having to materialize the immediate into a register.
1487   virtual bool isLegalICmpImmediate(int64_t) const {
1488     return true;
1489   }
1490
1491   /// Return true if the specified immediate is legal add immediate, that is the
1492   /// target has add instructions which can add a register with the immediate
1493   /// without having to materialize the immediate into a register.
1494   virtual bool isLegalAddImmediate(int64_t) const {
1495     return true;
1496   }
1497
1498   /// Return true if it's significantly cheaper to shift a vector by a uniform
1499   /// scalar than by an amount which will vary across each lane. On x86, for
1500   /// example, there is a "psllw" instruction for the former case, but no simple
1501   /// instruction for a general "a << b" operation on vectors.
1502   virtual bool isVectorShiftByScalarCheap(Type *Ty) const {
1503     return false;
1504   }
1505
1506   /// Return true if it's free to truncate a value of type FromTy to type
1507   /// ToTy. e.g. On x86 it's free to truncate a i32 value in register EAX to i16
1508   /// by referencing its sub-register AX.
1509   /// Targets must return false when FromTy <= ToTy.
1510   virtual bool isTruncateFree(Type *FromTy, Type *ToTy) const {
1511     return false;
1512   }
1513
1514   /// Return true if a truncation from FromTy to ToTy is permitted when deciding
1515   /// whether a call is in tail position. Typically this means that both results
1516   /// would be assigned to the same register or stack slot, but it could mean
1517   /// the target performs adequate checks of its own before proceeding with the
1518   /// tail call.  Targets must return false when FromTy <= ToTy.
1519   virtual bool allowTruncateForTailCall(Type *FromTy, Type *ToTy) const {
1520     return false;
1521   }
1522
1523   virtual bool isTruncateFree(EVT FromVT, EVT ToVT) const {
1524     return false;
1525   }
1526
1527   virtual bool isProfitableToHoist(Instruction *I) const { return true; }
1528
1529   /// Return true if the extension represented by \p I is free.
1530   /// Unlikely the is[Z|FP]ExtFree family which is based on types,
1531   /// this method can use the context provided by \p I to decide
1532   /// whether or not \p I is free.
1533   /// This method extends the behavior of the is[Z|FP]ExtFree family.
1534   /// In other words, if is[Z|FP]Free returns true, then this method
1535   /// returns true as well. The converse is not true.
1536   /// The target can perform the adequate checks by overriding isExtFreeImpl.
1537   /// \pre \p I must be a sign, zero, or fp extension.
1538   bool isExtFree(const Instruction *I) const {
1539     switch (I->getOpcode()) {
1540     case Instruction::FPExt:
1541       if (isFPExtFree(EVT::getEVT(I->getType())))
1542         return true;
1543       break;
1544     case Instruction::ZExt:
1545       if (isZExtFree(I->getOperand(0)->getType(), I->getType()))
1546         return true;
1547       break;
1548     case Instruction::SExt:
1549       break;
1550     default:
1551       llvm_unreachable("Instruction is not an extension");
1552     }
1553     return isExtFreeImpl(I);
1554   }
1555
1556   /// Return true if any actual instruction that defines a value of type FromTy
1557   /// implicitly zero-extends the value to ToTy in the result register.
1558   ///
1559   /// The function should return true when it is likely that the truncate can
1560   /// be freely folded with an instruction defining a value of FromTy. If
1561   /// the defining instruction is unknown (because you're looking at a
1562   /// function argument, PHI, etc.) then the target may require an
1563   /// explicit truncate, which is not necessarily free, but this function
1564   /// does not deal with those cases.
1565   /// Targets must return false when FromTy >= ToTy.
1566   virtual bool isZExtFree(Type *FromTy, Type *ToTy) const {
1567     return false;
1568   }
1569
1570   virtual bool isZExtFree(EVT FromTy, EVT ToTy) const {
1571     return false;
1572   }
1573
1574   /// Return true if the target supplies and combines to a paired load
1575   /// two loaded values of type LoadedType next to each other in memory.
1576   /// RequiredAlignment gives the minimal alignment constraints that must be met
1577   /// to be able to select this paired load.
1578   ///
1579   /// This information is *not* used to generate actual paired loads, but it is
1580   /// used to generate a sequence of loads that is easier to combine into a
1581   /// paired load.
1582   /// For instance, something like this:
1583   /// a = load i64* addr
1584   /// b = trunc i64 a to i32
1585   /// c = lshr i64 a, 32
1586   /// d = trunc i64 c to i32
1587   /// will be optimized into:
1588   /// b = load i32* addr1
1589   /// d = load i32* addr2
1590   /// Where addr1 = addr2 +/- sizeof(i32).
1591   ///
1592   /// In other words, unless the target performs a post-isel load combining,
1593   /// this information should not be provided because it will generate more
1594   /// loads.
1595   virtual bool hasPairedLoad(Type * /*LoadedType*/,
1596                              unsigned & /*RequiredAligment*/) const {
1597     return false;
1598   }
1599
1600   virtual bool hasPairedLoad(EVT /*LoadedType*/,
1601                              unsigned & /*RequiredAligment*/) const {
1602     return false;
1603   }
1604
1605   /// \brief Get the maximum supported factor for interleaved memory accesses.
1606   /// Default to be the minimum interleave factor: 2.
1607   virtual unsigned getMaxSupportedInterleaveFactor() const { return 2; }
1608
1609   /// \brief Lower an interleaved load to target specific intrinsics. Return
1610   /// true on success.
1611   ///
1612   /// \p LI is the vector load instruction.
1613   /// \p Shuffles is the shufflevector list to DE-interleave the loaded vector.
1614   /// \p Indices is the corresponding indices for each shufflevector.
1615   /// \p Factor is the interleave factor.
1616   virtual bool lowerInterleavedLoad(LoadInst *LI,
1617                                     ArrayRef<ShuffleVectorInst *> Shuffles,
1618                                     ArrayRef<unsigned> Indices,
1619                                     unsigned Factor) const {
1620     return false;
1621   }
1622
1623   /// \brief Lower an interleaved store to target specific intrinsics. Return
1624   /// true on success.
1625   ///
1626   /// \p SI is the vector store instruction.
1627   /// \p SVI is the shufflevector to RE-interleave the stored vector.
1628   /// \p Factor is the interleave factor.
1629   virtual bool lowerInterleavedStore(StoreInst *SI, ShuffleVectorInst *SVI,
1630                                      unsigned Factor) const {
1631     return false;
1632   }
1633
1634   /// Return true if zero-extending the specific node Val to type VT2 is free
1635   /// (either because it's implicitly zero-extended such as ARM ldrb / ldrh or
1636   /// because it's folded such as X86 zero-extending loads).
1637   virtual bool isZExtFree(SDValue Val, EVT VT2) const {
1638     return isZExtFree(Val.getValueType(), VT2);
1639   }
1640
1641   /// Return true if an fpext operation is free (for instance, because
1642   /// single-precision floating-point numbers are implicitly extended to
1643   /// double-precision).
1644   virtual bool isFPExtFree(EVT VT) const {
1645     assert(VT.isFloatingPoint());
1646     return false;
1647   }
1648
1649   /// Return true if folding a vector load into ExtVal (a sign, zero, or any
1650   /// extend node) is profitable.
1651   virtual bool isVectorLoadExtDesirable(SDValue ExtVal) const { return false; }
1652
1653   /// Return true if an fneg operation is free to the point where it is never
1654   /// worthwhile to replace it with a bitwise operation.
1655   virtual bool isFNegFree(EVT VT) const {
1656     assert(VT.isFloatingPoint());
1657     return false;
1658   }
1659
1660   /// Return true if an fabs operation is free to the point where it is never
1661   /// worthwhile to replace it with a bitwise operation.
1662   virtual bool isFAbsFree(EVT VT) const {
1663     assert(VT.isFloatingPoint());
1664     return false;
1665   }
1666
1667   /// Return true if an FMA operation is faster than a pair of fmul and fadd
1668   /// instructions. fmuladd intrinsics will be expanded to FMAs when this method
1669   /// returns true, otherwise fmuladd is expanded to fmul + fadd.
1670   ///
1671   /// NOTE: This may be called before legalization on types for which FMAs are
1672   /// not legal, but should return true if those types will eventually legalize
1673   /// to types that support FMAs. After legalization, it will only be called on
1674   /// types that support FMAs (via Legal or Custom actions)
1675   virtual bool isFMAFasterThanFMulAndFAdd(EVT) const {
1676     return false;
1677   }
1678
1679   /// Return true if it's profitable to narrow operations of type VT1 to
1680   /// VT2. e.g. on x86, it's profitable to narrow from i32 to i8 but not from
1681   /// i32 to i16.
1682   virtual bool isNarrowingProfitable(EVT /*VT1*/, EVT /*VT2*/) const {
1683     return false;
1684   }
1685
1686   /// \brief Return true if it is beneficial to convert a load of a constant to
1687   /// just the constant itself.
1688   /// On some targets it might be more efficient to use a combination of
1689   /// arithmetic instructions to materialize the constant instead of loading it
1690   /// from a constant pool.
1691   virtual bool shouldConvertConstantLoadToIntImm(const APInt &Imm,
1692                                                  Type *Ty) const {
1693     return false;
1694   }
1695
1696   /// Return true if EXTRACT_SUBVECTOR is cheap for this result type
1697   /// with this index. This is needed because EXTRACT_SUBVECTOR usually
1698   /// has custom lowering that depends on the index of the first element,
1699   /// and only the target knows which lowering is cheap.
1700   virtual bool isExtractSubvectorCheap(EVT ResVT, unsigned Index) const {
1701     return false;
1702   }
1703
1704   //===--------------------------------------------------------------------===//
1705   // Runtime Library hooks
1706   //
1707
1708   /// Rename the default libcall routine name for the specified libcall.
1709   void setLibcallName(RTLIB::Libcall Call, const char *Name) {
1710     LibcallRoutineNames[Call] = Name;
1711   }
1712
1713   /// Get the libcall routine name for the specified libcall.
1714   const char *getLibcallName(RTLIB::Libcall Call) const {
1715     return LibcallRoutineNames[Call];
1716   }
1717
1718   /// Override the default CondCode to be used to test the result of the
1719   /// comparison libcall against zero.
1720   void setCmpLibcallCC(RTLIB::Libcall Call, ISD::CondCode CC) {
1721     CmpLibcallCCs[Call] = CC;
1722   }
1723
1724   /// Get the CondCode that's to be used to test the result of the comparison
1725   /// libcall against zero.
1726   ISD::CondCode getCmpLibcallCC(RTLIB::Libcall Call) const {
1727     return CmpLibcallCCs[Call];
1728   }
1729
1730   /// Set the CallingConv that should be used for the specified libcall.
1731   void setLibcallCallingConv(RTLIB::Libcall Call, CallingConv::ID CC) {
1732     LibcallCallingConvs[Call] = CC;
1733   }
1734
1735   /// Get the CallingConv that should be used for the specified libcall.
1736   CallingConv::ID getLibcallCallingConv(RTLIB::Libcall Call) const {
1737     return LibcallCallingConvs[Call];
1738   }
1739
1740 private:
1741   const TargetMachine &TM;
1742
1743   /// Tells the code generator not to expand operations into sequences that use
1744   /// the select operations if possible.
1745   bool SelectIsExpensive;
1746
1747   /// Tells the code generator that the target has multiple (allocatable)
1748   /// condition registers that can be used to store the results of comparisons
1749   /// for use by selects and conditional branches. With multiple condition
1750   /// registers, the code generator will not aggressively sink comparisons into
1751   /// the blocks of their users.
1752   bool HasMultipleConditionRegisters;
1753
1754   /// Tells the code generator that the target has BitExtract instructions.
1755   /// The code generator will aggressively sink "shift"s into the blocks of
1756   /// their users if the users will generate "and" instructions which can be
1757   /// combined with "shift" to BitExtract instructions.
1758   bool HasExtractBitsInsn;
1759
1760   // Don't expand fsqrt with an approximation based on the inverse sqrt.
1761   bool FsqrtIsCheap;
1762
1763   /// Tells the code generator to bypass slow divide or remainder
1764   /// instructions. For example, BypassSlowDivWidths[32,8] tells the code
1765   /// generator to bypass 32-bit integer div/rem with an 8-bit unsigned integer
1766   /// div/rem when the operands are positive and less than 256.
1767   DenseMap <unsigned int, unsigned int> BypassSlowDivWidths;
1768
1769   /// Tells the code generator that it shouldn't generate extra flow control
1770   /// instructions and should attempt to combine flow control instructions via
1771   /// predication.
1772   bool JumpIsExpensive;
1773
1774   /// Whether the target supports or cares about preserving floating point
1775   /// exception behavior.
1776   bool HasFloatingPointExceptions;
1777
1778   /// This target prefers to use _setjmp to implement llvm.setjmp.
1779   ///
1780   /// Defaults to false.
1781   bool UseUnderscoreSetJmp;
1782
1783   /// This target prefers to use _longjmp to implement llvm.longjmp.
1784   ///
1785   /// Defaults to false.
1786   bool UseUnderscoreLongJmp;
1787
1788   /// Number of blocks threshold to use jump tables.
1789   int MinimumJumpTableEntries;
1790
1791   /// Information about the contents of the high-bits in boolean values held in
1792   /// a type wider than i1. See getBooleanContents.
1793   BooleanContent BooleanContents;
1794
1795   /// Information about the contents of the high-bits in boolean values held in
1796   /// a type wider than i1. See getBooleanContents.
1797   BooleanContent BooleanFloatContents;
1798
1799   /// Information about the contents of the high-bits in boolean vector values
1800   /// when the element type is wider than i1. See getBooleanContents.
1801   BooleanContent BooleanVectorContents;
1802
1803   /// The target scheduling preference: shortest possible total cycles or lowest
1804   /// register usage.
1805   Sched::Preference SchedPreferenceInfo;
1806
1807   /// The size, in bytes, of the target's jmp_buf buffers
1808   unsigned JumpBufSize;
1809
1810   /// The alignment, in bytes, of the target's jmp_buf buffers
1811   unsigned JumpBufAlignment;
1812
1813   /// The minimum alignment that any argument on the stack needs to have.
1814   unsigned MinStackArgumentAlignment;
1815
1816   /// The minimum function alignment (used when optimizing for size, and to
1817   /// prevent explicitly provided alignment from leading to incorrect code).
1818   unsigned MinFunctionAlignment;
1819
1820   /// The preferred function alignment (used when alignment unspecified and
1821   /// optimizing for speed).
1822   unsigned PrefFunctionAlignment;
1823
1824   /// The preferred loop alignment.
1825   unsigned PrefLoopAlignment;
1826
1827   /// Whether the DAG builder should automatically insert fences and reduce
1828   /// ordering for atomics.  (This will be set for for most architectures with
1829   /// weak memory ordering.)
1830   bool InsertFencesForAtomic;
1831
1832   /// If set to a physical register, this specifies the register that
1833   /// llvm.savestack/llvm.restorestack should save and restore.
1834   unsigned StackPointerRegisterToSaveRestore;
1835
1836   /// If set to a physical register, this specifies the register that receives
1837   /// the exception address on entry to a landing pad.
1838   unsigned ExceptionPointerRegister;
1839
1840   /// If set to a physical register, this specifies the register that receives
1841   /// the exception typeid on entry to a landing pad.
1842   unsigned ExceptionSelectorRegister;
1843
1844   /// This indicates the default register class to use for each ValueType the
1845   /// target supports natively.
1846   const TargetRegisterClass *RegClassForVT[MVT::LAST_VALUETYPE];
1847   unsigned char NumRegistersForVT[MVT::LAST_VALUETYPE];
1848   MVT RegisterTypeForVT[MVT::LAST_VALUETYPE];
1849
1850   /// This indicates the "representative" register class to use for each
1851   /// ValueType the target supports natively. This information is used by the
1852   /// scheduler to track register pressure. By default, the representative
1853   /// register class is the largest legal super-reg register class of the
1854   /// register class of the specified type. e.g. On x86, i8, i16, and i32's
1855   /// representative class would be GR32.
1856   const TargetRegisterClass *RepRegClassForVT[MVT::LAST_VALUETYPE];
1857
1858   /// This indicates the "cost" of the "representative" register class for each
1859   /// ValueType. The cost is used by the scheduler to approximate register
1860   /// pressure.
1861   uint8_t RepRegClassCostForVT[MVT::LAST_VALUETYPE];
1862
1863   /// For any value types we are promoting or expanding, this contains the value
1864   /// type that we are changing to.  For Expanded types, this contains one step
1865   /// of the expand (e.g. i64 -> i32), even if there are multiple steps required
1866   /// (e.g. i64 -> i16).  For types natively supported by the system, this holds
1867   /// the same type (e.g. i32 -> i32).
1868   MVT TransformToType[MVT::LAST_VALUETYPE];
1869
1870   /// For each operation and each value type, keep a LegalizeAction that
1871   /// indicates how instruction selection should deal with the operation.  Most
1872   /// operations are Legal (aka, supported natively by the target), but
1873   /// operations that are not should be described.  Note that operations on
1874   /// non-legal value types are not described here.
1875   uint8_t OpActions[MVT::LAST_VALUETYPE][ISD::BUILTIN_OP_END];
1876
1877   /// For each load extension type and each value type, keep a LegalizeAction
1878   /// that indicates how instruction selection should deal with a load of a
1879   /// specific value type and extension type.
1880   uint8_t LoadExtActions[MVT::LAST_VALUETYPE][MVT::LAST_VALUETYPE]
1881                         [ISD::LAST_LOADEXT_TYPE];
1882
1883   /// For each value type pair keep a LegalizeAction that indicates whether a
1884   /// truncating store of a specific value type and truncating type is legal.
1885   uint8_t TruncStoreActions[MVT::LAST_VALUETYPE][MVT::LAST_VALUETYPE];
1886
1887   /// For each indexed mode and each value type, keep a pair of LegalizeAction
1888   /// that indicates how instruction selection should deal with the load /
1889   /// store.
1890   ///
1891   /// The first dimension is the value_type for the reference. The second
1892   /// dimension represents the various modes for load store.
1893   uint8_t IndexedModeActions[MVT::LAST_VALUETYPE][ISD::LAST_INDEXED_MODE];
1894
1895   /// For each condition code (ISD::CondCode) keep a LegalizeAction that
1896   /// indicates how instruction selection should deal with the condition code.
1897   ///
1898   /// Because each CC action takes up 2 bits, we need to have the array size be
1899   /// large enough to fit all of the value types. This can be done by rounding
1900   /// up the MVT::LAST_VALUETYPE value to the next multiple of 16.
1901   uint32_t CondCodeActions[ISD::SETCC_INVALID][(MVT::LAST_VALUETYPE + 15) / 16];
1902
1903   ValueTypeActionImpl ValueTypeActions;
1904
1905 private:
1906   LegalizeKind getTypeConversion(LLVMContext &Context, EVT VT) const;
1907
1908 private:
1909   std::vector<std::pair<MVT, const TargetRegisterClass*> > AvailableRegClasses;
1910
1911   /// Targets can specify ISD nodes that they would like PerformDAGCombine
1912   /// callbacks for by calling setTargetDAGCombine(), which sets a bit in this
1913   /// array.
1914   unsigned char
1915   TargetDAGCombineArray[(ISD::BUILTIN_OP_END+CHAR_BIT-1)/CHAR_BIT];
1916
1917   /// For operations that must be promoted to a specific type, this holds the
1918   /// destination type.  This map should be sparse, so don't hold it as an
1919   /// array.
1920   ///
1921   /// Targets add entries to this map with AddPromotedToType(..), clients access
1922   /// this with getTypeToPromoteTo(..).
1923   std::map<std::pair<unsigned, MVT::SimpleValueType>, MVT::SimpleValueType>
1924     PromoteToType;
1925
1926   /// Stores the name each libcall.
1927   const char *LibcallRoutineNames[RTLIB::UNKNOWN_LIBCALL];
1928
1929   /// The ISD::CondCode that should be used to test the result of each of the
1930   /// comparison libcall against zero.
1931   ISD::CondCode CmpLibcallCCs[RTLIB::UNKNOWN_LIBCALL];
1932
1933   /// Stores the CallingConv that should be used for each libcall.
1934   CallingConv::ID LibcallCallingConvs[RTLIB::UNKNOWN_LIBCALL];
1935
1936 protected:
1937   /// Return true if the extension represented by \p I is free.
1938   /// \pre \p I is a sign, zero, or fp extension and
1939   ///      is[Z|FP]ExtFree of the related types is not true.
1940   virtual bool isExtFreeImpl(const Instruction *I) const { return false; }
1941
1942   /// \brief Specify maximum number of store instructions per memset call.
1943   ///
1944   /// When lowering \@llvm.memset this field specifies the maximum number of
1945   /// store operations that may be substituted for the call to memset. Targets
1946   /// must set this value based on the cost threshold for that target. Targets
1947   /// should assume that the memset will be done using as many of the largest
1948   /// store operations first, followed by smaller ones, if necessary, per
1949   /// alignment restrictions. For example, storing 9 bytes on a 32-bit machine
1950   /// with 16-bit alignment would result in four 2-byte stores and one 1-byte
1951   /// store.  This only applies to setting a constant array of a constant size.
1952   unsigned MaxStoresPerMemset;
1953
1954   /// Maximum number of stores operations that may be substituted for the call
1955   /// to memset, used for functions with OptSize attribute.
1956   unsigned MaxStoresPerMemsetOptSize;
1957
1958   /// \brief Specify maximum bytes of store instructions per memcpy call.
1959   ///
1960   /// When lowering \@llvm.memcpy this field specifies the maximum number of
1961   /// store operations that may be substituted for a call to memcpy. Targets
1962   /// must set this value based on the cost threshold for that target. Targets
1963   /// should assume that the memcpy will be done using as many of the largest
1964   /// store operations first, followed by smaller ones, if necessary, per
1965   /// alignment restrictions. For example, storing 7 bytes on a 32-bit machine
1966   /// with 32-bit alignment would result in one 4-byte store, a one 2-byte store
1967   /// and one 1-byte store. This only applies to copying a constant array of
1968   /// constant size.
1969   unsigned MaxStoresPerMemcpy;
1970
1971   /// Maximum number of store operations that may be substituted for a call to
1972   /// memcpy, used for functions with OptSize attribute.
1973   unsigned MaxStoresPerMemcpyOptSize;
1974
1975   /// \brief Specify maximum bytes of store instructions per memmove call.
1976   ///
1977   /// When lowering \@llvm.memmove this field specifies the maximum number of
1978   /// store instructions that may be substituted for a call to memmove. Targets
1979   /// must set this value based on the cost threshold for that target. Targets
1980   /// should assume that the memmove will be done using as many of the largest
1981   /// store operations first, followed by smaller ones, if necessary, per
1982   /// alignment restrictions. For example, moving 9 bytes on a 32-bit machine
1983   /// with 8-bit alignment would result in nine 1-byte stores.  This only
1984   /// applies to copying a constant array of constant size.
1985   unsigned MaxStoresPerMemmove;
1986
1987   /// Maximum number of store instructions that may be substituted for a call to
1988   /// memmove, used for functions with OptSize attribute.
1989   unsigned MaxStoresPerMemmoveOptSize;
1990
1991   /// Tells the code generator that select is more expensive than a branch if
1992   /// the branch is usually predicted right.
1993   bool PredictableSelectIsExpensive;
1994
1995   /// MaskAndBranchFoldingIsLegal - Indicates if the target supports folding
1996   /// a mask of a single bit, a compare, and a branch into a single instruction.
1997   bool MaskAndBranchFoldingIsLegal;
1998
1999   /// \see enableExtLdPromotion.
2000   bool EnableExtLdPromotion;
2001
2002 protected:
2003   /// Return true if the value types that can be represented by the specified
2004   /// register class are all legal.
2005   bool isLegalRC(const TargetRegisterClass *RC) const;
2006
2007   /// Replace/modify any TargetFrameIndex operands with a targte-dependent
2008   /// sequence of memory operands that is recognized by PrologEpilogInserter.
2009   MachineBasicBlock *emitPatchPoint(MachineInstr *MI,
2010                                     MachineBasicBlock *MBB) const;
2011 };
2012
2013 /// This class defines information used to lower LLVM code to legal SelectionDAG
2014 /// operators that the target instruction selector can accept natively.
2015 ///
2016 /// This class also defines callbacks that targets must implement to lower
2017 /// target-specific constructs to SelectionDAG operators.
2018 class TargetLowering : public TargetLoweringBase {
2019   TargetLowering(const TargetLowering&) = delete;
2020   void operator=(const TargetLowering&) = delete;
2021
2022 public:
2023   /// NOTE: The TargetMachine owns TLOF.
2024   explicit TargetLowering(const TargetMachine &TM);
2025
2026   /// Returns true by value, base pointer and offset pointer and addressing mode
2027   /// by reference if the node's address can be legally represented as
2028   /// pre-indexed load / store address.
2029   virtual bool getPreIndexedAddressParts(SDNode * /*N*/, SDValue &/*Base*/,
2030                                          SDValue &/*Offset*/,
2031                                          ISD::MemIndexedMode &/*AM*/,
2032                                          SelectionDAG &/*DAG*/) const {
2033     return false;
2034   }
2035
2036   /// Returns true by value, base pointer and offset pointer and addressing mode
2037   /// by reference if this node can be combined with a load / store to form a
2038   /// post-indexed load / store.
2039   virtual bool getPostIndexedAddressParts(SDNode * /*N*/, SDNode * /*Op*/,
2040                                           SDValue &/*Base*/,
2041                                           SDValue &/*Offset*/,
2042                                           ISD::MemIndexedMode &/*AM*/,
2043                                           SelectionDAG &/*DAG*/) const {
2044     return false;
2045   }
2046
2047   /// Return the entry encoding for a jump table in the current function.  The
2048   /// returned value is a member of the MachineJumpTableInfo::JTEntryKind enum.
2049   virtual unsigned getJumpTableEncoding() const;
2050
2051   virtual const MCExpr *
2052   LowerCustomJumpTableEntry(const MachineJumpTableInfo * /*MJTI*/,
2053                             const MachineBasicBlock * /*MBB*/, unsigned /*uid*/,
2054                             MCContext &/*Ctx*/) const {
2055     llvm_unreachable("Need to implement this hook if target has custom JTIs");
2056   }
2057
2058   /// Returns relocation base for the given PIC jumptable.
2059   virtual SDValue getPICJumpTableRelocBase(SDValue Table,
2060                                            SelectionDAG &DAG) const;
2061
2062   /// This returns the relocation base for the given PIC jumptable, the same as
2063   /// getPICJumpTableRelocBase, but as an MCExpr.
2064   virtual const MCExpr *
2065   getPICJumpTableRelocBaseExpr(const MachineFunction *MF,
2066                                unsigned JTI, MCContext &Ctx) const;
2067
2068   /// Return true if folding a constant offset with the given GlobalAddress is
2069   /// legal.  It is frequently not legal in PIC relocation models.
2070   virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
2071
2072   bool isInTailCallPosition(SelectionDAG &DAG, SDNode *Node,
2073                             SDValue &Chain) const;
2074
2075   void softenSetCCOperands(SelectionDAG &DAG, EVT VT,
2076                            SDValue &NewLHS, SDValue &NewRHS,
2077                            ISD::CondCode &CCCode, SDLoc DL) const;
2078
2079   /// Returns a pair of (return value, chain).
2080   /// It is an error to pass RTLIB::UNKNOWN_LIBCALL as \p LC.
2081   std::pair<SDValue, SDValue> makeLibCall(SelectionDAG &DAG, RTLIB::Libcall LC,
2082                                           EVT RetVT, const SDValue *Ops,
2083                                           unsigned NumOps, bool isSigned,
2084                                           SDLoc dl, bool doesNotReturn = false,
2085                                           bool isReturnValueUsed = true) const;
2086
2087   //===--------------------------------------------------------------------===//
2088   // TargetLowering Optimization Methods
2089   //
2090
2091   /// A convenience struct that encapsulates a DAG, and two SDValues for
2092   /// returning information from TargetLowering to its clients that want to
2093   /// combine.
2094   struct TargetLoweringOpt {
2095     SelectionDAG &DAG;
2096     bool LegalTys;
2097     bool LegalOps;
2098     SDValue Old;
2099     SDValue New;
2100
2101     explicit TargetLoweringOpt(SelectionDAG &InDAG,
2102                                bool LT, bool LO) :
2103       DAG(InDAG), LegalTys(LT), LegalOps(LO) {}
2104
2105     bool LegalTypes() const { return LegalTys; }
2106     bool LegalOperations() const { return LegalOps; }
2107
2108     bool CombineTo(SDValue O, SDValue N) {
2109       Old = O;
2110       New = N;
2111       return true;
2112     }
2113
2114     /// Check to see if the specified operand of the specified instruction is a
2115     /// constant integer.  If so, check to see if there are any bits set in the
2116     /// constant that are not demanded.  If so, shrink the constant and return
2117     /// true.
2118     bool ShrinkDemandedConstant(SDValue Op, const APInt &Demanded);
2119
2120     /// Convert x+y to (VT)((SmallVT)x+(SmallVT)y) if the casts are free.  This
2121     /// uses isZExtFree and ZERO_EXTEND for the widening cast, but it could be
2122     /// generalized for targets with other types of implicit widening casts.
2123     bool ShrinkDemandedOp(SDValue Op, unsigned BitWidth, const APInt &Demanded,
2124                           SDLoc dl);
2125   };
2126
2127   /// Look at Op.  At this point, we know that only the DemandedMask bits of the
2128   /// result of Op are ever used downstream.  If we can use this information to
2129   /// simplify Op, create a new simplified DAG node and return true, returning
2130   /// the original and new nodes in Old and New.  Otherwise, analyze the
2131   /// expression and return a mask of KnownOne and KnownZero bits for the
2132   /// expression (used to simplify the caller).  The KnownZero/One bits may only
2133   /// be accurate for those bits in the DemandedMask.
2134   bool SimplifyDemandedBits(SDValue Op, const APInt &DemandedMask,
2135                             APInt &KnownZero, APInt &KnownOne,
2136                             TargetLoweringOpt &TLO, unsigned Depth = 0) const;
2137
2138   /// Determine which of the bits specified in Mask are known to be either zero
2139   /// or one and return them in the KnownZero/KnownOne bitsets.
2140   virtual void computeKnownBitsForTargetNode(const SDValue Op,
2141                                              APInt &KnownZero,
2142                                              APInt &KnownOne,
2143                                              const SelectionDAG &DAG,
2144                                              unsigned Depth = 0) const;
2145
2146   /// This method can be implemented by targets that want to expose additional
2147   /// information about sign bits to the DAG Combiner.
2148   virtual unsigned ComputeNumSignBitsForTargetNode(SDValue Op,
2149                                                    const SelectionDAG &DAG,
2150                                                    unsigned Depth = 0) const;
2151
2152   struct DAGCombinerInfo {
2153     void *DC;  // The DAG Combiner object.
2154     CombineLevel Level;
2155     bool CalledByLegalizer;
2156   public:
2157     SelectionDAG &DAG;
2158
2159     DAGCombinerInfo(SelectionDAG &dag, CombineLevel level,  bool cl, void *dc)
2160       : DC(dc), Level(level), CalledByLegalizer(cl), DAG(dag) {}
2161
2162     bool isBeforeLegalize() const { return Level == BeforeLegalizeTypes; }
2163     bool isBeforeLegalizeOps() const { return Level < AfterLegalizeVectorOps; }
2164     bool isAfterLegalizeVectorOps() const {
2165       return Level == AfterLegalizeDAG;
2166     }
2167     CombineLevel getDAGCombineLevel() { return Level; }
2168     bool isCalledByLegalizer() const { return CalledByLegalizer; }
2169
2170     void AddToWorklist(SDNode *N);
2171     void RemoveFromWorklist(SDNode *N);
2172     SDValue CombineTo(SDNode *N, ArrayRef<SDValue> To, bool AddTo = true);
2173     SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true);
2174     SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo = true);
2175
2176     void CommitTargetLoweringOpt(const TargetLoweringOpt &TLO);
2177   };
2178
2179   /// Return if the N is a constant or constant vector equal to the true value
2180   /// from getBooleanContents().
2181   bool isConstTrueVal(const SDNode *N) const;
2182
2183   /// Return if the N is a constant or constant vector equal to the false value
2184   /// from getBooleanContents().
2185   bool isConstFalseVal(const SDNode *N) const;
2186
2187   /// Try to simplify a setcc built with the specified operands and cc. If it is
2188   /// unable to simplify it, return a null SDValue.
2189   SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1,
2190                           ISD::CondCode Cond, bool foldBooleans,
2191                           DAGCombinerInfo &DCI, SDLoc dl) const;
2192
2193   /// Returns true (and the GlobalValue and the offset) if the node is a
2194   /// GlobalAddress + offset.
2195   virtual bool
2196   isGAPlusOffset(SDNode *N, const GlobalValue* &GA, int64_t &Offset) const;
2197
2198   /// This method will be invoked for all target nodes and for any
2199   /// target-independent nodes that the target has registered with invoke it
2200   /// for.
2201   ///
2202   /// The semantics are as follows:
2203   /// Return Value:
2204   ///   SDValue.Val == 0   - No change was made
2205   ///   SDValue.Val == N   - N was replaced, is dead, and is already handled.
2206   ///   otherwise          - N should be replaced by the returned Operand.
2207   ///
2208   /// In addition, methods provided by DAGCombinerInfo may be used to perform
2209   /// more complex transformations.
2210   ///
2211   virtual SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const;
2212
2213   /// Return true if it is profitable to move a following shift through this
2214   //  node, adjusting any immediate operands as necessary to preserve semantics.
2215   //  This transformation may not be desirable if it disrupts a particularly
2216   //  auspicious target-specific tree (e.g. bitfield extraction in AArch64).
2217   //  By default, it returns true.
2218   virtual bool isDesirableToCommuteWithShift(const SDNode *N /*Op*/) const {
2219     return true;
2220   }
2221
2222   /// Return true if the target has native support for the specified value type
2223   /// and it is 'desirable' to use the type for the given node type. e.g. On x86
2224   /// i16 is legal, but undesirable since i16 instruction encodings are longer
2225   /// and some i16 instructions are slow.
2226   virtual bool isTypeDesirableForOp(unsigned /*Opc*/, EVT VT) const {
2227     // By default, assume all legal types are desirable.
2228     return isTypeLegal(VT);
2229   }
2230
2231   /// Return true if it is profitable for dag combiner to transform a floating
2232   /// point op of specified opcode to a equivalent op of an integer
2233   /// type. e.g. f32 load -> i32 load can be profitable on ARM.
2234   virtual bool isDesirableToTransformToIntegerOp(unsigned /*Opc*/,
2235                                                  EVT /*VT*/) const {
2236     return false;
2237   }
2238
2239   /// This method query the target whether it is beneficial for dag combiner to
2240   /// promote the specified node. If true, it should return the desired
2241   /// promotion type by reference.
2242   virtual bool IsDesirableToPromoteOp(SDValue /*Op*/, EVT &/*PVT*/) const {
2243     return false;
2244   }
2245
2246   //===--------------------------------------------------------------------===//
2247   // Lowering methods - These methods must be implemented by targets so that
2248   // the SelectionDAGBuilder code knows how to lower these.
2249   //
2250
2251   /// This hook must be implemented to lower the incoming (formal) arguments,
2252   /// described by the Ins array, into the specified DAG. The implementation
2253   /// should fill in the InVals array with legal-type argument values, and
2254   /// return the resulting token chain value.
2255   ///
2256   virtual SDValue
2257     LowerFormalArguments(SDValue /*Chain*/, CallingConv::ID /*CallConv*/,
2258                          bool /*isVarArg*/,
2259                          const SmallVectorImpl<ISD::InputArg> &/*Ins*/,
2260                          SDLoc /*dl*/, SelectionDAG &/*DAG*/,
2261                          SmallVectorImpl<SDValue> &/*InVals*/) const {
2262     llvm_unreachable("Not Implemented");
2263   }
2264
2265   struct ArgListEntry {
2266     SDValue Node;
2267     Type* Ty;
2268     bool isSExt     : 1;
2269     bool isZExt     : 1;
2270     bool isInReg    : 1;
2271     bool isSRet     : 1;
2272     bool isNest     : 1;
2273     bool isByVal    : 1;
2274     bool isInAlloca : 1;
2275     bool isReturned : 1;
2276     uint16_t Alignment;
2277
2278     ArgListEntry() : isSExt(false), isZExt(false), isInReg(false),
2279       isSRet(false), isNest(false), isByVal(false), isInAlloca(false),
2280       isReturned(false), Alignment(0) { }
2281
2282     void setAttributes(ImmutableCallSite *CS, unsigned AttrIdx);
2283   };
2284   typedef std::vector<ArgListEntry> ArgListTy;
2285
2286   /// This structure contains all information that is necessary for lowering
2287   /// calls. It is passed to TLI::LowerCallTo when the SelectionDAG builder
2288   /// needs to lower a call, and targets will see this struct in their LowerCall
2289   /// implementation.
2290   struct CallLoweringInfo {
2291     SDValue Chain;
2292     Type *RetTy;
2293     bool RetSExt           : 1;
2294     bool RetZExt           : 1;
2295     bool IsVarArg          : 1;
2296     bool IsInReg           : 1;
2297     bool DoesNotReturn     : 1;
2298     bool IsReturnValueUsed : 1;
2299
2300     // IsTailCall should be modified by implementations of
2301     // TargetLowering::LowerCall that perform tail call conversions.
2302     bool IsTailCall;
2303
2304     unsigned NumFixedArgs;
2305     CallingConv::ID CallConv;
2306     SDValue Callee;
2307     ArgListTy Args;
2308     SelectionDAG &DAG;
2309     SDLoc DL;
2310     ImmutableCallSite *CS;
2311     bool IsPatchPoint;
2312     SmallVector<ISD::OutputArg, 32> Outs;
2313     SmallVector<SDValue, 32> OutVals;
2314     SmallVector<ISD::InputArg, 32> Ins;
2315
2316     CallLoweringInfo(SelectionDAG &DAG)
2317       : RetTy(nullptr), RetSExt(false), RetZExt(false), IsVarArg(false),
2318         IsInReg(false), DoesNotReturn(false), IsReturnValueUsed(true),
2319         IsTailCall(false), NumFixedArgs(-1), CallConv(CallingConv::C),
2320         DAG(DAG), CS(nullptr), IsPatchPoint(false) {}
2321
2322     CallLoweringInfo &setDebugLoc(SDLoc dl) {
2323       DL = dl;
2324       return *this;
2325     }
2326
2327     CallLoweringInfo &setChain(SDValue InChain) {
2328       Chain = InChain;
2329       return *this;
2330     }
2331
2332     CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultType,
2333                                 SDValue Target, ArgListTy &&ArgsList,
2334                                 unsigned FixedArgs = -1) {
2335       RetTy = ResultType;
2336       Callee = Target;
2337       CallConv = CC;
2338       NumFixedArgs =
2339         (FixedArgs == static_cast<unsigned>(-1) ? Args.size() : FixedArgs);
2340       Args = std::move(ArgsList);
2341       return *this;
2342     }
2343
2344     CallLoweringInfo &setCallee(Type *ResultType, FunctionType *FTy,
2345                                 SDValue Target, ArgListTy &&ArgsList,
2346                                 ImmutableCallSite &Call) {
2347       RetTy = ResultType;
2348
2349       IsInReg = Call.paramHasAttr(0, Attribute::InReg);
2350       DoesNotReturn = Call.doesNotReturn();
2351       IsVarArg = FTy->isVarArg();
2352       IsReturnValueUsed = !Call.getInstruction()->use_empty();
2353       RetSExt = Call.paramHasAttr(0, Attribute::SExt);
2354       RetZExt = Call.paramHasAttr(0, Attribute::ZExt);
2355
2356       Callee = Target;
2357
2358       CallConv = Call.getCallingConv();
2359       NumFixedArgs = FTy->getNumParams();
2360       Args = std::move(ArgsList);
2361
2362       CS = &Call;
2363
2364       return *this;
2365     }
2366
2367     CallLoweringInfo &setInRegister(bool Value = true) {
2368       IsInReg = Value;
2369       return *this;
2370     }
2371
2372     CallLoweringInfo &setNoReturn(bool Value = true) {
2373       DoesNotReturn = Value;
2374       return *this;
2375     }
2376
2377     CallLoweringInfo &setVarArg(bool Value = true) {
2378       IsVarArg = Value;
2379       return *this;
2380     }
2381
2382     CallLoweringInfo &setTailCall(bool Value = true) {
2383       IsTailCall = Value;
2384       return *this;
2385     }
2386
2387     CallLoweringInfo &setDiscardResult(bool Value = true) {
2388       IsReturnValueUsed = !Value;
2389       return *this;
2390     }
2391
2392     CallLoweringInfo &setSExtResult(bool Value = true) {
2393       RetSExt = Value;
2394       return *this;
2395     }
2396
2397     CallLoweringInfo &setZExtResult(bool Value = true) {
2398       RetZExt = Value;
2399       return *this;
2400     }
2401
2402     CallLoweringInfo &setIsPatchPoint(bool Value = true) {
2403       IsPatchPoint = Value;
2404       return *this;
2405     }
2406
2407     ArgListTy &getArgs() {
2408       return Args;
2409     }
2410
2411   };
2412
2413   /// This function lowers an abstract call to a function into an actual call.
2414   /// This returns a pair of operands.  The first element is the return value
2415   /// for the function (if RetTy is not VoidTy).  The second element is the
2416   /// outgoing token chain. It calls LowerCall to do the actual lowering.
2417   std::pair<SDValue, SDValue> LowerCallTo(CallLoweringInfo &CLI) const;
2418
2419   /// This hook must be implemented to lower calls into the specified
2420   /// DAG. The outgoing arguments to the call are described by the Outs array,
2421   /// and the values to be returned by the call are described by the Ins
2422   /// array. The implementation should fill in the InVals array with legal-type
2423   /// return values from the call, and return the resulting token chain value.
2424   virtual SDValue
2425     LowerCall(CallLoweringInfo &/*CLI*/,
2426               SmallVectorImpl<SDValue> &/*InVals*/) const {
2427     llvm_unreachable("Not Implemented");
2428   }
2429
2430   /// Target-specific cleanup for formal ByVal parameters.
2431   virtual void HandleByVal(CCState *, unsigned &, unsigned) const {}
2432
2433   /// This hook should be implemented to check whether the return values
2434   /// described by the Outs array can fit into the return registers.  If false
2435   /// is returned, an sret-demotion is performed.
2436   virtual bool CanLowerReturn(CallingConv::ID /*CallConv*/,
2437                               MachineFunction &/*MF*/, bool /*isVarArg*/,
2438                const SmallVectorImpl<ISD::OutputArg> &/*Outs*/,
2439                LLVMContext &/*Context*/) const
2440   {
2441     // Return true by default to get preexisting behavior.
2442     return true;
2443   }
2444
2445   /// This hook must be implemented to lower outgoing return values, described
2446   /// by the Outs array, into the specified DAG. The implementation should
2447   /// return the resulting token chain value.
2448   virtual SDValue
2449     LowerReturn(SDValue /*Chain*/, CallingConv::ID /*CallConv*/,
2450                 bool /*isVarArg*/,
2451                 const SmallVectorImpl<ISD::OutputArg> &/*Outs*/,
2452                 const SmallVectorImpl<SDValue> &/*OutVals*/,
2453                 SDLoc /*dl*/, SelectionDAG &/*DAG*/) const {
2454     llvm_unreachable("Not Implemented");
2455   }
2456
2457   /// Return true if result of the specified node is used by a return node
2458   /// only. It also compute and return the input chain for the tail call.
2459   ///
2460   /// This is used to determine whether it is possible to codegen a libcall as
2461   /// tail call at legalization time.
2462   virtual bool isUsedByReturnOnly(SDNode *, SDValue &/*Chain*/) const {
2463     return false;
2464   }
2465
2466   /// Return true if the target may be able emit the call instruction as a tail
2467   /// call. This is used by optimization passes to determine if it's profitable
2468   /// to duplicate return instructions to enable tailcall optimization.
2469   virtual bool mayBeEmittedAsTailCall(CallInst *) const {
2470     return false;
2471   }
2472
2473   /// Return the builtin name for the __builtin___clear_cache intrinsic
2474   /// Default is to invoke the clear cache library call
2475   virtual const char * getClearCacheBuiltinName() const {
2476     return "__clear_cache";
2477   }
2478
2479   /// Return the register ID of the name passed in. Used by named register
2480   /// global variables extension. There is no target-independent behaviour
2481   /// so the default action is to bail.
2482   virtual unsigned getRegisterByName(const char* RegName, EVT VT,
2483                                      SelectionDAG &DAG) const {
2484     report_fatal_error("Named registers not implemented for this target");
2485   }
2486
2487   /// Return the type that should be used to zero or sign extend a
2488   /// zeroext/signext integer argument or return value.  FIXME: Most C calling
2489   /// convention requires the return type to be promoted, but this is not true
2490   /// all the time, e.g. i1 on x86-64. It is also not necessary for non-C
2491   /// calling conventions. The frontend should handle this and include all of
2492   /// the necessary information.
2493   virtual EVT getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
2494                                        ISD::NodeType /*ExtendKind*/) const {
2495     EVT MinVT = getRegisterType(Context, MVT::i32);
2496     return VT.bitsLT(MinVT) ? MinVT : VT;
2497   }
2498
2499   /// For some targets, an LLVM struct type must be broken down into multiple
2500   /// simple types, but the calling convention specifies that the entire struct
2501   /// must be passed in a block of consecutive registers.
2502   virtual bool
2503   functionArgumentNeedsConsecutiveRegisters(Type *Ty, CallingConv::ID CallConv,
2504                                             bool isVarArg) const {
2505     return false;
2506   }
2507
2508   /// Returns a 0 terminated array of registers that can be safely used as
2509   /// scratch registers.
2510   virtual const MCPhysReg *getScratchRegisters(CallingConv::ID CC) const {
2511     return nullptr;
2512   }
2513
2514   /// This callback is used to prepare for a volatile or atomic load.
2515   /// It takes a chain node as input and returns the chain for the load itself.
2516   ///
2517   /// Having a callback like this is necessary for targets like SystemZ,
2518   /// which allows a CPU to reuse the result of a previous load indefinitely,
2519   /// even if a cache-coherent store is performed by another CPU.  The default
2520   /// implementation does nothing.
2521   virtual SDValue prepareVolatileOrAtomicLoad(SDValue Chain, SDLoc DL,
2522                                               SelectionDAG &DAG) const {
2523     return Chain;
2524   }
2525
2526   /// This callback is invoked by the type legalizer to legalize nodes with an
2527   /// illegal operand type but legal result types.  It replaces the
2528   /// LowerOperation callback in the type Legalizer.  The reason we can not do
2529   /// away with LowerOperation entirely is that LegalizeDAG isn't yet ready to
2530   /// use this callback.
2531   ///
2532   /// TODO: Consider merging with ReplaceNodeResults.
2533   ///
2534   /// The target places new result values for the node in Results (their number
2535   /// and types must exactly match those of the original return values of
2536   /// the node), or leaves Results empty, which indicates that the node is not
2537   /// to be custom lowered after all.
2538   /// The default implementation calls LowerOperation.
2539   virtual void LowerOperationWrapper(SDNode *N,
2540                                      SmallVectorImpl<SDValue> &Results,
2541                                      SelectionDAG &DAG) const;
2542
2543   /// This callback is invoked for operations that are unsupported by the
2544   /// target, which are registered to use 'custom' lowering, and whose defined
2545   /// values are all legal.  If the target has no operations that require custom
2546   /// lowering, it need not implement this.  The default implementation of this
2547   /// aborts.
2548   virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
2549
2550   /// This callback is invoked when a node result type is illegal for the
2551   /// target, and the operation was registered to use 'custom' lowering for that
2552   /// result type.  The target places new result values for the node in Results
2553   /// (their number and types must exactly match those of the original return
2554   /// values of the node), or leaves Results empty, which indicates that the
2555   /// node is not to be custom lowered after all.
2556   ///
2557   /// If the target has no operations that require custom lowering, it need not
2558   /// implement this.  The default implementation aborts.
2559   virtual void ReplaceNodeResults(SDNode * /*N*/,
2560                                   SmallVectorImpl<SDValue> &/*Results*/,
2561                                   SelectionDAG &/*DAG*/) const {
2562     llvm_unreachable("ReplaceNodeResults not implemented for this target!");
2563   }
2564
2565   /// This method returns the name of a target specific DAG node.
2566   virtual const char *getTargetNodeName(unsigned Opcode) const;
2567
2568   /// This method returns a target specific FastISel object, or null if the
2569   /// target does not support "fast" ISel.
2570   virtual FastISel *createFastISel(FunctionLoweringInfo &,
2571                                    const TargetLibraryInfo *) const {
2572     return nullptr;
2573   }
2574
2575
2576   bool verifyReturnAddressArgumentIsConstant(SDValue Op,
2577                                              SelectionDAG &DAG) const;
2578
2579   //===--------------------------------------------------------------------===//
2580   // Inline Asm Support hooks
2581   //
2582
2583   /// This hook allows the target to expand an inline asm call to be explicit
2584   /// llvm code if it wants to.  This is useful for turning simple inline asms
2585   /// into LLVM intrinsics, which gives the compiler more information about the
2586   /// behavior of the code.
2587   virtual bool ExpandInlineAsm(CallInst *) const {
2588     return false;
2589   }
2590
2591   enum ConstraintType {
2592     C_Register,            // Constraint represents specific register(s).
2593     C_RegisterClass,       // Constraint represents any of register(s) in class.
2594     C_Memory,              // Memory constraint.
2595     C_Other,               // Something else.
2596     C_Unknown              // Unsupported constraint.
2597   };
2598
2599   enum ConstraintWeight {
2600     // Generic weights.
2601     CW_Invalid  = -1,     // No match.
2602     CW_Okay     = 0,      // Acceptable.
2603     CW_Good     = 1,      // Good weight.
2604     CW_Better   = 2,      // Better weight.
2605     CW_Best     = 3,      // Best weight.
2606
2607     // Well-known weights.
2608     CW_SpecificReg  = CW_Okay,    // Specific register operands.
2609     CW_Register     = CW_Good,    // Register operands.
2610     CW_Memory       = CW_Better,  // Memory operands.
2611     CW_Constant     = CW_Best,    // Constant operand.
2612     CW_Default      = CW_Okay     // Default or don't know type.
2613   };
2614
2615   /// This contains information for each constraint that we are lowering.
2616   struct AsmOperandInfo : public InlineAsm::ConstraintInfo {
2617     /// This contains the actual string for the code, like "m".  TargetLowering
2618     /// picks the 'best' code from ConstraintInfo::Codes that most closely
2619     /// matches the operand.
2620     std::string ConstraintCode;
2621
2622     /// Information about the constraint code, e.g. Register, RegisterClass,
2623     /// Memory, Other, Unknown.
2624     TargetLowering::ConstraintType ConstraintType;
2625
2626     /// If this is the result output operand or a clobber, this is null,
2627     /// otherwise it is the incoming operand to the CallInst.  This gets
2628     /// modified as the asm is processed.
2629     Value *CallOperandVal;
2630
2631     /// The ValueType for the operand value.
2632     MVT ConstraintVT;
2633
2634     /// Return true of this is an input operand that is a matching constraint
2635     /// like "4".
2636     bool isMatchingInputConstraint() const;
2637
2638     /// If this is an input matching constraint, this method returns the output
2639     /// operand it matches.
2640     unsigned getMatchedOperand() const;
2641
2642     /// Copy constructor for copying from a ConstraintInfo.
2643     AsmOperandInfo(InlineAsm::ConstraintInfo Info)
2644         : InlineAsm::ConstraintInfo(std::move(Info)),
2645           ConstraintType(TargetLowering::C_Unknown), CallOperandVal(nullptr),
2646           ConstraintVT(MVT::Other) {}
2647   };
2648
2649   typedef std::vector<AsmOperandInfo> AsmOperandInfoVector;
2650
2651   /// Split up the constraint string from the inline assembly value into the
2652   /// specific constraints and their prefixes, and also tie in the associated
2653   /// operand values.  If this returns an empty vector, and if the constraint
2654   /// string itself isn't empty, there was an error parsing.
2655   virtual AsmOperandInfoVector ParseConstraints(const DataLayout &DL,
2656                                                 const TargetRegisterInfo *TRI,
2657                                                 ImmutableCallSite CS) const;
2658
2659   /// Examine constraint type and operand type and determine a weight value.
2660   /// The operand object must already have been set up with the operand type.
2661   virtual ConstraintWeight getMultipleConstraintMatchWeight(
2662       AsmOperandInfo &info, int maIndex) const;
2663
2664   /// Examine constraint string and operand type and determine a weight value.
2665   /// The operand object must already have been set up with the operand type.
2666   virtual ConstraintWeight getSingleConstraintMatchWeight(
2667       AsmOperandInfo &info, const char *constraint) const;
2668
2669   /// Determines the constraint code and constraint type to use for the specific
2670   /// AsmOperandInfo, setting OpInfo.ConstraintCode and OpInfo.ConstraintType.
2671   /// If the actual operand being passed in is available, it can be passed in as
2672   /// Op, otherwise an empty SDValue can be passed.
2673   virtual void ComputeConstraintToUse(AsmOperandInfo &OpInfo,
2674                                       SDValue Op,
2675                                       SelectionDAG *DAG = nullptr) const;
2676
2677   /// Given a constraint, return the type of constraint it is for this target.
2678   virtual ConstraintType getConstraintType(StringRef Constraint) const;
2679
2680   /// Given a physical register constraint (e.g.  {edx}), return the register
2681   /// number and the register class for the register.
2682   ///
2683   /// Given a register class constraint, like 'r', if this corresponds directly
2684   /// to an LLVM register class, return a register of 0 and the register class
2685   /// pointer.
2686   ///
2687   /// This should only be used for C_Register constraints.  On error, this
2688   /// returns a register number of 0 and a null register class pointer.
2689   virtual std::pair<unsigned, const TargetRegisterClass *>
2690   getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
2691                                StringRef Constraint, MVT VT) const;
2692
2693   virtual unsigned getInlineAsmMemConstraint(StringRef ConstraintCode) const {
2694     if (ConstraintCode == "i")
2695       return InlineAsm::Constraint_i;
2696     else if (ConstraintCode == "m")
2697       return InlineAsm::Constraint_m;
2698     return InlineAsm::Constraint_Unknown;
2699   }
2700
2701   /// Try to replace an X constraint, which matches anything, with another that
2702   /// has more specific requirements based on the type of the corresponding
2703   /// operand.  This returns null if there is no replacement to make.
2704   virtual const char *LowerXConstraint(EVT ConstraintVT) const;
2705
2706   /// Lower the specified operand into the Ops vector.  If it is invalid, don't
2707   /// add anything to Ops.
2708   virtual void LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint,
2709                                             std::vector<SDValue> &Ops,
2710                                             SelectionDAG &DAG) const;
2711
2712   //===--------------------------------------------------------------------===//
2713   // Div utility functions
2714   //
2715   SDValue BuildSDIV(SDNode *N, const APInt &Divisor, SelectionDAG &DAG,
2716                     bool IsAfterLegalization,
2717                     std::vector<SDNode *> *Created) const;
2718   SDValue BuildUDIV(SDNode *N, const APInt &Divisor, SelectionDAG &DAG,
2719                     bool IsAfterLegalization,
2720                     std::vector<SDNode *> *Created) const;
2721
2722   /// Targets may override this function to provide custom SDIV lowering for
2723   /// power-of-2 denominators.  If the target returns an empty SDValue, LLVM
2724   /// assumes SDIV is expensive and replaces it with a series of other integer
2725   /// operations.
2726   virtual SDValue BuildSDIVPow2(SDNode *N, const APInt &Divisor,
2727                                 SelectionDAG &DAG,
2728                                 std::vector<SDNode *> *Created) const;
2729
2730   /// Indicate whether this target prefers to combine FDIVs with the same
2731   /// divisor. If the transform should never be done, return zero. If the
2732   /// transform should be done, return the minimum number of divisor uses
2733   /// that must exist.
2734   virtual unsigned combineRepeatedFPDivisors() const {
2735     return 0;
2736   }
2737
2738   /// Hooks for building estimates in place of slower divisions and square
2739   /// roots.
2740
2741   /// Return a reciprocal square root estimate value for the input operand.
2742   /// The RefinementSteps output is the number of Newton-Raphson refinement
2743   /// iterations required to generate a sufficient (though not necessarily
2744   /// IEEE-754 compliant) estimate for the value type.
2745   /// The boolean UseOneConstNR output is used to select a Newton-Raphson
2746   /// algorithm implementation that uses one constant or two constants.
2747   /// A target may choose to implement its own refinement within this function.
2748   /// If that's true, then return '0' as the number of RefinementSteps to avoid
2749   /// any further refinement of the estimate.
2750   /// An empty SDValue return means no estimate sequence can be created.
2751   virtual SDValue getRsqrtEstimate(SDValue Operand, DAGCombinerInfo &DCI,
2752                                    unsigned &RefinementSteps,
2753                                    bool &UseOneConstNR) const {
2754     return SDValue();
2755   }
2756
2757   /// Return a reciprocal estimate value for the input operand.
2758   /// The RefinementSteps output is the number of Newton-Raphson refinement
2759   /// iterations required to generate a sufficient (though not necessarily
2760   /// IEEE-754 compliant) estimate for the value type.
2761   /// A target may choose to implement its own refinement within this function.
2762   /// If that's true, then return '0' as the number of RefinementSteps to avoid
2763   /// any further refinement of the estimate.
2764   /// An empty SDValue return means no estimate sequence can be created.
2765   virtual SDValue getRecipEstimate(SDValue Operand, DAGCombinerInfo &DCI,
2766                                    unsigned &RefinementSteps) const {
2767     return SDValue();
2768   }
2769
2770   //===--------------------------------------------------------------------===//
2771   // Legalization utility functions
2772   //
2773
2774   /// Expand a MUL into two nodes.  One that computes the high bits of
2775   /// the result and one that computes the low bits.
2776   /// \param HiLoVT The value type to use for the Lo and Hi nodes.
2777   /// \param LL Low bits of the LHS of the MUL.  You can use this parameter
2778   ///        if you want to control how low bits are extracted from the LHS.
2779   /// \param LH High bits of the LHS of the MUL.  See LL for meaning.
2780   /// \param RL Low bits of the RHS of the MUL.  See LL for meaning
2781   /// \param RH High bits of the RHS of the MUL.  See LL for meaning.
2782   /// \returns true if the node has been expanded. false if it has not
2783   bool expandMUL(SDNode *N, SDValue &Lo, SDValue &Hi, EVT HiLoVT,
2784                  SelectionDAG &DAG, SDValue LL = SDValue(),
2785                  SDValue LH = SDValue(), SDValue RL = SDValue(),
2786                  SDValue RH = SDValue()) const;
2787
2788   /// Expand float(f32) to SINT(i64) conversion
2789   /// \param N Node to expand
2790   /// \param Result output after conversion
2791   /// \returns True, if the expansion was successful, false otherwise
2792   bool expandFP_TO_SINT(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
2793
2794   //===--------------------------------------------------------------------===//
2795   // Instruction Emitting Hooks
2796   //
2797
2798   /// This method should be implemented by targets that mark instructions with
2799   /// the 'usesCustomInserter' flag.  These instructions are special in various
2800   /// ways, which require special support to insert.  The specified MachineInstr
2801   /// is created but not inserted into any basic blocks, and this method is
2802   /// called to expand it into a sequence of instructions, potentially also
2803   /// creating new basic blocks and control flow.
2804   /// As long as the returned basic block is different (i.e., we created a new
2805   /// one), the custom inserter is free to modify the rest of \p MBB.
2806   virtual MachineBasicBlock *
2807     EmitInstrWithCustomInserter(MachineInstr *MI, MachineBasicBlock *MBB) const;
2808
2809   /// This method should be implemented by targets that mark instructions with
2810   /// the 'hasPostISelHook' flag. These instructions must be adjusted after
2811   /// instruction selection by target hooks.  e.g. To fill in optional defs for
2812   /// ARM 's' setting instructions.
2813   virtual void
2814   AdjustInstrPostInstrSelection(MachineInstr *MI, SDNode *Node) const;
2815
2816   /// If this function returns true, SelectionDAGBuilder emits a
2817   /// LOAD_STACK_GUARD node when it is lowering Intrinsic::stackprotector.
2818   virtual bool useLoadStackGuardNode() const {
2819     return false;
2820   }
2821
2822   /// Lower TLS global address SDNode for target independent emulated TLS model.
2823   virtual SDValue LowerToTLSEmulatedModel(const GlobalAddressSDNode *GA,
2824                                           SelectionDAG &DAG) const;
2825 };
2826
2827 /// Given an LLVM IR type and return type attributes, compute the return value
2828 /// EVTs and flags, and optionally also the offsets, if the return value is
2829 /// being lowered to memory.
2830 void GetReturnInfo(Type *ReturnType, AttributeSet attr,
2831                    SmallVectorImpl<ISD::OutputArg> &Outs,
2832                    const TargetLowering &TLI, const DataLayout &DL);
2833
2834 } // end llvm namespace
2835
2836 #endif