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