LLVM  8.0.1
HexagonISelLowering.h
Go to the documentation of this file.
1 //===-- HexagonISelLowering.h - Hexagon DAG Lowering Interface --*- 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 // This file defines the interfaces that Hexagon uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONISELLOWERING_H
16 #define LLVM_LIB_TARGET_HEXAGON_HEXAGONISELLOWERING_H
17 
18 #include "Hexagon.h"
19 #include "llvm/ADT/StringRef.h"
24 #include "llvm/IR/CallingConv.h"
25 #include "llvm/IR/InlineAsm.h"
27 #include <cstdint>
28 #include <utility>
29 
30 namespace llvm {
31 
32 namespace HexagonISD {
33 
34  enum NodeType : unsigned {
36 
38  CONST32_GP, // For marking data present in GP.
39  ADDC, // Add with carry: (X, Y, Cin) -> (X+Y, Cout).
40  SUBC, // Sub with carry: (X, Y, Cin) -> (X+~Y+Cin, Cout).
42 
43  AT_GOT, // Index in GOT.
44  AT_PCREL, // Offset relative to PC.
45 
46  CALL, // Function call.
47  CALLnr, // Function call that does not return.
49 
50  RET_FLAG, // Return with a flag operand.
51  BARRIER, // Memory barrier.
52  JT, // Jump table.
53  CP, // Constant pool.
54 
56  VSPLAT, // Generic splat, selection depends on argument/return
57  // types.
61 
72  D2P, // Convert 8-byte value to 8-bit predicate register. [*]
73  P2D, // Convert 8-bit predicate register to 8-byte value. [*]
74  V2Q, // Convert HVX vector to a vector predicate reg. [*]
75  Q2V, // Convert vector predicate to an HVX vector. [*]
76  // [*] The equivalence is defined as "Q <=> (V != 0)",
77  // where the != operation compares bytes.
78  // Note: V != 0 is implemented as V >u 0.
83  VSPLATW, // HVX splat of a 32-bit word with an arbitrary result type.
84  TYPECAST, // No-op that's used to convert between different legal
85  // types in a register.
86  VALIGN, // Align two vectors (in Op0, Op1) to one that would have
87  // been loaded from address in Op2.
88  VALIGNADDR, // Align vector address: Op0 & -Op1, except when it is
89  // an address in a vector load, then it's a no-op.
91  };
92 
93 } // end namespace HexagonISD
94 
95  class HexagonSubtarget;
96 
98  int VarArgsFrameOffset; // Frame offset to start of varargs area.
99  const HexagonTargetMachine &HTM;
100  const HexagonSubtarget &Subtarget;
101 
102  bool CanReturnSmallStruct(const Function* CalleeFn, unsigned& RetSize)
103  const;
104 
105  public:
106  explicit HexagonTargetLowering(const TargetMachine &TM,
107  const HexagonSubtarget &ST);
108 
109  bool isHVXVectorType(MVT Ty) const;
110 
111  /// IsEligibleForTailCallOptimization - Check whether the call is eligible
112  /// for tail call optimization. Targets which want to do tail call
113  /// optimization should implement this function.
114  bool IsEligibleForTailCallOptimization(SDValue Callee,
115  CallingConv::ID CalleeCC, bool isVarArg, bool isCalleeStructRet,
116  bool isCallerStructRet, const SmallVectorImpl<ISD::OutputArg> &Outs,
117  const SmallVectorImpl<SDValue> &OutVals,
118  const SmallVectorImpl<ISD::InputArg> &Ins, SelectionDAG& DAG) const;
119 
120  bool getTgtMemIntrinsic(IntrinsicInfo &Info, const CallInst &I,
121  MachineFunction &MF,
122  unsigned Intrinsic) const override;
123 
124  bool isTruncateFree(Type *Ty1, Type *Ty2) const override;
125  bool isTruncateFree(EVT VT1, EVT VT2) const override;
126 
127  bool isCheapToSpeculateCttz() const override { return true; }
128  bool isCheapToSpeculateCtlz() const override { return true; }
129  bool isCtlzFast() const override { return true; }
130 
131  bool allowTruncateForTailCall(Type *Ty1, Type *Ty2) const override;
132 
133  /// Return true if an FMA operation is faster than a pair of mul and add
134  /// instructions. fmuladd intrinsics will be expanded to FMAs when this
135  /// method returns true (and FMAs are legal), otherwise fmuladd is
136  /// expanded to mul + add.
137  bool isFMAFasterThanFMulAndFAdd(EVT) const override;
138 
139  // Should we expand the build vector with shuffles?
140  bool shouldExpandBuildVectorWithShuffles(EVT VT,
141  unsigned DefinedValues) const override;
142 
143  bool isShuffleMaskLegal(ArrayRef<int> Mask, EVT VT) const override;
144  TargetLoweringBase::LegalizeTypeAction getPreferredVectorAction(MVT VT)
145  const override;
146 
147  SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
148  void LowerOperationWrapper(SDNode *N, SmallVectorImpl<SDValue> &Results,
149  SelectionDAG &DAG) const override;
150  void ReplaceNodeResults(SDNode *N, SmallVectorImpl<SDValue> &Results,
151  SelectionDAG &DAG) const override;
152 
153  const char *getTargetNodeName(unsigned Opcode) const override;
154 
155  SDValue LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const;
162  SDValue LowerVECTOR_SHIFT(SDValue Op, SelectionDAG &DAG) const;
163  SDValue LowerROTL(SDValue Op, SelectionDAG &DAG) const;
164  SDValue LowerBITCAST(SDValue Op, SelectionDAG &DAG) const;
168  SDValue LowerLoad(SDValue Op, SelectionDAG &DAG) const;
169  SDValue LowerStore(SDValue Op, SelectionDAG &DAG) const;
170  SDValue LowerUnalignedLoad(SDValue Op, SelectionDAG &DAG) const;
171  SDValue LowerAddSubCarry(SDValue Op, SelectionDAG &DAG) const;
172 
174  SDValue LowerINLINEASM(SDValue Op, SelectionDAG &DAG) const;
175  SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG) const;
177  SDValue LowerEH_LABEL(SDValue Op, SelectionDAG &DAG) const;
178  SDValue LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const;
179  SDValue
180  LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
182  const SDLoc &dl, SelectionDAG &DAG,
183  SmallVectorImpl<SDValue> &InVals) const override;
184  SDValue LowerGLOBALADDRESS(SDValue Op, SelectionDAG &DAG) const;
185  SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const;
186  SDValue LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const;
187  SDValue LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
188  SelectionDAG &DAG) const;
189  SDValue LowerToTLSInitialExecModel(GlobalAddressSDNode *GA,
190  SelectionDAG &DAG) const;
191  SDValue LowerToTLSLocalExecModel(GlobalAddressSDNode *GA,
192  SelectionDAG &DAG) const;
193  SDValue GetDynamicTLSAddr(SelectionDAG &DAG, SDValue Chain,
194  GlobalAddressSDNode *GA, SDValue InFlag, EVT PtrVT,
195  unsigned ReturnReg, unsigned char OperandFlags) const;
196  SDValue LowerGLOBAL_OFFSET_TABLE(SDValue Op, SelectionDAG &DAG) const;
197 
199  SmallVectorImpl<SDValue> &InVals) const override;
200  SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
201  CallingConv::ID CallConv, bool isVarArg,
203  const SDLoc &dl, SelectionDAG &DAG,
204  SmallVectorImpl<SDValue> &InVals,
205  const SmallVectorImpl<SDValue> &OutVals,
206  SDValue Callee) const;
207 
208  SDValue LowerSETCC(SDValue Op, SelectionDAG &DAG) const;
209  SDValue LowerVSELECT(SDValue Op, SelectionDAG &DAG) const;
210  SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const;
213 
214  bool CanLowerReturn(CallingConv::ID CallConv,
215  MachineFunction &MF, bool isVarArg,
217  LLVMContext &Context) const override;
218 
219  SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
221  const SmallVectorImpl<SDValue> &OutVals,
222  const SDLoc &dl, SelectionDAG &DAG) const override;
223 
224  bool mayBeEmittedAsTailCall(const CallInst *CI) const override;
225 
226  unsigned getRegisterByName(const char* RegName, EVT VT,
227  SelectionDAG &DAG) const override;
228 
229  /// If a physical register, this returns the register that receives the
230  /// exception address on entry to an EH pad.
231  unsigned
232  getExceptionPointerRegister(const Constant *PersonalityFn) const override {
233  return Hexagon::R0;
234  }
235 
236  /// If a physical register, this returns the register that receives the
237  /// exception typeid on entry to a landing pad.
238  unsigned
239  getExceptionSelectorRegister(const Constant *PersonalityFn) const override {
240  return Hexagon::R1;
241  }
242 
243  SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) const;
244  SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) const;
245  SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) const;
246 
248  EVT VT) const override {
249  if (!VT.isVector())
250  return MVT::i1;
251  else
253  }
254 
255  bool getPostIndexedAddressParts(SDNode *N, SDNode *Op,
258  SelectionDAG &DAG) const override;
259 
260  ConstraintType getConstraintType(StringRef Constraint) const override;
261 
262  std::pair<unsigned, const TargetRegisterClass *>
263  getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
264  StringRef Constraint, MVT VT) const override;
265 
266  unsigned
267  getInlineAsmMemConstraint(StringRef ConstraintCode) const override {
268  if (ConstraintCode == "o")
270  return TargetLowering::getInlineAsmMemConstraint(ConstraintCode);
271  }
272 
273  // Intrinsics
274  SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const;
275  SDValue LowerINTRINSIC_VOID(SDValue Op, SelectionDAG &DAG) const;
276  /// isLegalAddressingMode - Return true if the addressing mode represented
277  /// by AM is legal for this target, for a load/store of the specified type.
278  /// The type may be VoidTy, in which case only return true if the addressing
279  /// mode is legal for a load/store of any legal type.
280  /// TODO: Handle pre/postinc as well.
281  bool isLegalAddressingMode(const DataLayout &DL, const AddrMode &AM,
282  Type *Ty, unsigned AS,
283  Instruction *I = nullptr) const override;
284  /// Return true if folding a constant offset with the given GlobalAddress
285  /// is legal. It is frequently not legal in PIC relocation models.
286  bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
287 
288  bool isFPImmLegal(const APFloat &Imm, EVT VT) const override;
289 
290  /// isLegalICmpImmediate - Return true if the specified immediate is legal
291  /// icmp immediate, that is the target has icmp instructions which can
292  /// compare a register against the immediate without having to materialize
293  /// the immediate into a register.
294  bool isLegalICmpImmediate(int64_t Imm) const override;
295 
296  EVT getOptimalMemOpType(uint64_t Size, unsigned DstAlign,
297  unsigned SrcAlign, bool IsMemset, bool ZeroMemset, bool MemcpyStrSrc,
298  MachineFunction &MF) const override;
299 
300  bool allowsMisalignedMemoryAccesses(EVT VT, unsigned AddrSpace,
301  unsigned Align, bool *Fast) const override;
302 
303  /// Returns relocation base for the given PIC jumptable.
304  SDValue getPICJumpTableRelocBase(SDValue Table, SelectionDAG &DAG)
305  const override;
306 
307  bool shouldReduceLoadWidth(SDNode *Load, ISD::LoadExtType ExtTy,
308  EVT NewVT) const override;
309 
310  // Handling of atomic RMW instructions.
311  Value *emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
312  AtomicOrdering Ord) const override;
313  Value *emitStoreConditional(IRBuilder<> &Builder, Value *Val,
314  Value *Addr, AtomicOrdering Ord) const override;
315  AtomicExpansionKind shouldExpandAtomicLoadInIR(LoadInst *LI) const override;
316  bool shouldExpandAtomicStoreInIR(StoreInst *SI) const override;
318  shouldExpandAtomicCmpXchgInIR(AtomicCmpXchgInst *AI) const override;
319 
322  return AtomicExpansionKind::LLSC;
323  }
324 
325  private:
326  void initializeHVXLowering();
327  void validateConstPtrAlignment(SDValue Ptr, const SDLoc &dl,
328  unsigned NeedAlign) const;
329 
330  std::pair<SDValue,int> getBaseAndOffset(SDValue Addr) const;
331 
332  bool getBuildVectorConstInts(ArrayRef<SDValue> Values, MVT VecTy,
333  SelectionDAG &DAG,
334  MutableArrayRef<ConstantInt*> Consts) const;
335  SDValue buildVector32(ArrayRef<SDValue> Elem, const SDLoc &dl, MVT VecTy,
336  SelectionDAG &DAG) const;
337  SDValue buildVector64(ArrayRef<SDValue> Elem, const SDLoc &dl, MVT VecTy,
338  SelectionDAG &DAG) const;
339  SDValue extractVector(SDValue VecV, SDValue IdxV, const SDLoc &dl,
340  MVT ValTy, MVT ResTy, SelectionDAG &DAG) const;
341  SDValue insertVector(SDValue VecV, SDValue ValV, SDValue IdxV,
342  const SDLoc &dl, MVT ValTy, SelectionDAG &DAG) const;
343  SDValue expandPredicate(SDValue Vec32, const SDLoc &dl,
344  SelectionDAG &DAG) const;
345  SDValue contractPredicate(SDValue Vec64, const SDLoc &dl,
346  SelectionDAG &DAG) const;
347  SDValue getVectorShiftByInt(SDValue Op, SelectionDAG &DAG) const;
348 
349  bool isUndef(SDValue Op) const {
350  if (Op.isMachineOpcode())
351  return Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF;
352  return Op.getOpcode() == ISD::UNDEF;
353  }
354  SDValue getInstr(unsigned MachineOpc, const SDLoc &dl, MVT Ty,
355  ArrayRef<SDValue> Ops, SelectionDAG &DAG) const {
356  SDNode *N = DAG.getMachineNode(MachineOpc, dl, Ty, Ops);
357  return SDValue(N, 0);
358  }
359  SDValue getZero(const SDLoc &dl, MVT Ty, SelectionDAG &DAG) const;
360 
361  using VectorPair = std::pair<SDValue, SDValue>;
362  using TypePair = std::pair<MVT, MVT>;
363 
364  SDValue getInt(unsigned IntId, MVT ResTy, ArrayRef<SDValue> Ops,
365  const SDLoc &dl, SelectionDAG &DAG) const;
366 
367  MVT ty(SDValue Op) const {
368  return Op.getValueType().getSimpleVT();
369  }
370  TypePair ty(const VectorPair &Ops) const {
371  return { Ops.first.getValueType().getSimpleVT(),
372  Ops.second.getValueType().getSimpleVT() };
373  }
374  MVT tyScalar(MVT Ty) const {
375  if (!Ty.isVector())
376  return Ty;
377  return MVT::getIntegerVT(Ty.getSizeInBits());
378  }
379  MVT tyVector(MVT Ty, MVT ElemTy) const {
380  if (Ty.isVector() && Ty.getVectorElementType() == ElemTy)
381  return Ty;
382  unsigned TyWidth = Ty.getSizeInBits();
383  unsigned ElemWidth = ElemTy.getSizeInBits();
384  assert((TyWidth % ElemWidth) == 0);
385  return MVT::getVectorVT(ElemTy, TyWidth/ElemWidth);
386  }
387 
388  MVT typeJoin(const TypePair &Tys) const;
389  TypePair typeSplit(MVT Ty) const;
390  MVT typeExtElem(MVT VecTy, unsigned Factor) const;
391  MVT typeTruncElem(MVT VecTy, unsigned Factor) const;
392 
393  SDValue opJoin(const VectorPair &Ops, const SDLoc &dl,
394  SelectionDAG &DAG) const;
395  VectorPair opSplit(SDValue Vec, const SDLoc &dl, SelectionDAG &DAG) const;
396  SDValue opCastElem(SDValue Vec, MVT ElemTy, SelectionDAG &DAG) const;
397 
398  bool isHvxSingleTy(MVT Ty) const;
399  bool isHvxPairTy(MVT Ty) const;
400  SDValue convertToByteIndex(SDValue ElemIdx, MVT ElemTy,
401  SelectionDAG &DAG) const;
402  SDValue getIndexInWord32(SDValue Idx, MVT ElemTy, SelectionDAG &DAG) const;
403  SDValue getByteShuffle(const SDLoc &dl, SDValue Op0, SDValue Op1,
404  ArrayRef<int> Mask, SelectionDAG &DAG) const;
405 
406  SDValue buildHvxVectorReg(ArrayRef<SDValue> Values, const SDLoc &dl,
407  MVT VecTy, SelectionDAG &DAG) const;
408  SDValue buildHvxVectorPred(ArrayRef<SDValue> Values, const SDLoc &dl,
409  MVT VecTy, SelectionDAG &DAG) const;
410  SDValue createHvxPrefixPred(SDValue PredV, const SDLoc &dl,
411  unsigned BitBytes, bool ZeroFill,
412  SelectionDAG &DAG) const;
413  SDValue extractHvxElementReg(SDValue VecV, SDValue IdxV, const SDLoc &dl,
414  MVT ResTy, SelectionDAG &DAG) const;
415  SDValue extractHvxElementPred(SDValue VecV, SDValue IdxV, const SDLoc &dl,
416  MVT ResTy, SelectionDAG &DAG) const;
417  SDValue insertHvxElementReg(SDValue VecV, SDValue IdxV, SDValue ValV,
418  const SDLoc &dl, SelectionDAG &DAG) const;
419  SDValue insertHvxElementPred(SDValue VecV, SDValue IdxV, SDValue ValV,
420  const SDLoc &dl, SelectionDAG &DAG) const;
421  SDValue extractHvxSubvectorReg(SDValue VecV, SDValue IdxV, const SDLoc &dl,
422  MVT ResTy, SelectionDAG &DAG) const;
423  SDValue extractHvxSubvectorPred(SDValue VecV, SDValue IdxV, const SDLoc &dl,
424  MVT ResTy, SelectionDAG &DAG) const;
425  SDValue insertHvxSubvectorReg(SDValue VecV, SDValue SubV, SDValue IdxV,
426  const SDLoc &dl, SelectionDAG &DAG) const;
427  SDValue insertHvxSubvectorPred(SDValue VecV, SDValue SubV, SDValue IdxV,
428  const SDLoc &dl, SelectionDAG &DAG) const;
429  SDValue extendHvxVectorPred(SDValue VecV, const SDLoc &dl, MVT ResTy,
430  bool ZeroExt, SelectionDAG &DAG) const;
431 
432  SDValue LowerHvxBuildVector(SDValue Op, SelectionDAG &DAG) const;
433  SDValue LowerHvxConcatVectors(SDValue Op, SelectionDAG &DAG) const;
434  SDValue LowerHvxExtractElement(SDValue Op, SelectionDAG &DAG) const;
435  SDValue LowerHvxInsertElement(SDValue Op, SelectionDAG &DAG) const;
436  SDValue LowerHvxExtractSubvector(SDValue Op, SelectionDAG &DAG) const;
437  SDValue LowerHvxInsertSubvector(SDValue Op, SelectionDAG &DAG) const;
438 
439  SDValue LowerHvxAnyExt(SDValue Op, SelectionDAG &DAG) const;
440  SDValue LowerHvxSignExt(SDValue Op, SelectionDAG &DAG) const;
441  SDValue LowerHvxZeroExt(SDValue Op, SelectionDAG &DAG) const;
442  SDValue LowerHvxCttz(SDValue Op, SelectionDAG &DAG) const;
443  SDValue LowerHvxMul(SDValue Op, SelectionDAG &DAG) const;
444  SDValue LowerHvxMulh(SDValue Op, SelectionDAG &DAG) const;
445  SDValue LowerHvxSetCC(SDValue Op, SelectionDAG &DAG) const;
446  SDValue LowerHvxExtend(SDValue Op, SelectionDAG &DAG) const;
447  SDValue LowerHvxShift(SDValue Op, SelectionDAG &DAG) const;
448 
449  SDValue SplitHvxPairOp(SDValue Op, SelectionDAG &DAG) const;
450  SDValue SplitHvxMemOp(SDValue Op, SelectionDAG &DAG) const;
451 
452  std::pair<const TargetRegisterClass*, uint8_t>
453  findRepresentativeClass(const TargetRegisterInfo *TRI, MVT VT)
454  const override;
455 
456  bool isHvxOperation(SDValue Op) const;
457  SDValue LowerHvxOperation(SDValue Op, SelectionDAG &DAG) const;
458  };
459 
460 } // end namespace llvm
461 
462 #endif // LLVM_LIB_TARGET_HEXAGON_HEXAGONISELLOWERING_H
static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG)
uint64_t CallInst * C
static MVT getIntegerVT(unsigned BitWidth)
static SDValue LowerCallResult(SDValue Chain, SDValue InFlag, const SmallVectorImpl< CCValAssign > &RVLocs, const SDLoc &dl, SelectionDAG &DAG, SmallVectorImpl< SDValue > &InVals)
LowerCallResult - Lower the result values of a call into the appropriate copies out of appropriate ph...
BUILTIN_OP_END - This must be the last enum value in this list.
Definition: ISDOpcodes.h:877
A parsed version of the target data layout string in and methods for querying it. ...
Definition: DataLayout.h:111
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
EVT getValueType() const
Return the ValueType of the referenced return value.
This represents an addressing mode of: BaseGV + BaseOffs + BaseReg + Scale*ScaleReg If BaseGV is null...
LLVMContext & Context
This class represents lattice values for constants.
Definition: AllocatorList.h:24
static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget &Subtarget, SelectionDAG &DAG)
static SDValue LowerATOMIC_FENCE(SDValue Op, SelectionDAG &DAG, const ARMSubtarget *Subtarget)
static MVT getVectorVT(MVT VT, unsigned NumElements)
an instruction that atomically checks whether a specified value is in a memory location, and, if it is, stores a new value there.
Definition: Instructions.h:529
bool isVector() const
Return true if this is a vector value type.
unsigned getExceptionSelectorRegister(const Constant *PersonalityFn) const override
If a physical register, this returns the register that receives the exception typeid on entry to a la...
static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget &Subtarget, SelectionDAG &DAG)
static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget &Subtarget, SelectionDAG &DAG)
This class represents a function call, abstracting a target machine&#39;s calling convention.
MVT getSimpleVT() const
Return the SimpleValueType held in the specified simple EVT.
Definition: ValueTypes.h:253
Function Alias Analysis Results
static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG)
unsigned const TargetRegisterInfo * TRI
bool isCheapToSpeculateCttz() const override
Return true if it is cheap to speculate a call to intrinsic cttz.
An instruction for reading from memory.
Definition: Instructions.h:168
an instruction that atomically reads a memory location, combines it with another value, and then stores the result back.
Definition: Instructions.h:692
AtomicExpansionKind
Enum that specifies what an atomic load/AtomicRMWInst is expanded to, if at all.
AtomicExpansionKind shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const override
Returns how the IR-level AtomicExpand pass should expand the given AtomicRMW, if at all...
unsigned getInlineAsmMemConstraint(StringRef ConstraintCode) const override
static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG)
static SDValue LowerLoad(SDValue Op, const X86Subtarget &Subtarget, SelectionDAG &DAG)
static unsigned getInt(StringRef R)
Get an unsigned integer, including error checks.
Definition: DataLayout.cpp:213
MachineSDNode * getMachineNode(unsigned Opcode, const SDLoc &dl, EVT VT)
These are used for target selectors to create a new node with specified return type(s), MachineInstr opcode, and operands.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: APFloat.h:42
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition: IRBuilder.h:743
bool isCtlzFast() const override
Return true if ctlz instruction is fast.
static SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG, const SparcTargetLowering &TLI, const SparcSubtarget *Subtarget)
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
AtomicOrdering
Atomic ordering for LLVM&#39;s memory model.
unsigned getSizeInBits() const
static SDValue LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG)
Fast - This calling convention attempts to make calls as fast as possible (e.g.
Definition: CallingConv.h:43
static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG)
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory)...
Definition: APInt.h:33
An instruction for storing to memory.
Definition: Instructions.h:321
virtual unsigned getInlineAsmMemConstraint(StringRef ConstraintCode) const
amdgpu Simplify well known AMD library false Value * Callee
MVT getVectorElementType() const
Analysis containing CSE Info
Definition: CSEInfo.cpp:21
UNDEF - An undefined node.
Definition: ISDOpcodes.h:178
bool isCheapToSpeculateCtlz() const override
Return true if it is cheap to speculate a call to intrinsic ctlz.
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
Definition: ArrayRef.h:291
Machine Value Type.
static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG)
The instances of the Type class are immutable: once they are created, they are never changed...
Definition: Type.h:46
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:69
bool isMachineOpcode() const
unsigned getVectorNumElements() const
Given a vector type, return the number of elements it contains.
Definition: ValueTypes.h:273
This is an important base class in LLVM.
Definition: Constant.h:42
LoadExtType
LoadExtType enum - This enum defines the three variants of LOADEXT (load with extension).
Definition: ISDOpcodes.h:934
OperandFlags
These are flags set on operands, but should be considered private, all access should go through the M...
Definition: MCInstrDesc.h:41
unsigned getMachineOpcode() const
static SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG, const SparcSubtarget *Subtarget)
static SDValue LowerStore(SDValue Op, const X86Subtarget &Subtarget, SelectionDAG &DAG)
static SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG, const SparcSubtarget *Subtarget)
Extended Value Type.
Definition: ValueTypes.h:34
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
This structure contains all information that is necessary for lowering calls.
unsigned getExceptionPointerRegister(const Constant *PersonalityFn) const override
If a physical register, this returns the register that receives the exception address on entry to an ...
static bool isUndef(ArrayRef< int > Mask)
static SDValue LowerBITCAST(SDValue Op, SelectionDAG &DAG)
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
Definition: SelectionDAG.h:222
static Value * insertVector(IRBuilderTy &IRB, Value *Old, Value *V, unsigned BeginIndex, const Twine &Name)
Definition: SROA.cpp:2167
Wrapper class for IR location info (IR ordering and DebugLoc) to be passed into SDNode creation funct...
Represents one node in the SelectionDAG.
EVT getSetCCResultType(const DataLayout &, LLVMContext &C, EVT VT) const override
Return the ValueType of the result of SETCC operations.
static EVT getVectorVT(LLVMContext &Context, EVT VT, unsigned NumElements, bool IsScalable=false)
Returns the EVT that represents a vector NumElements in length, where each element is of type VT...
Definition: ValueTypes.h:73
static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget &Subtarget, SelectionDAG &DAG)
static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget &Subtarget, SelectionDAG &DAG)
bool isVector() const
Return true if this is a vector value type.
Definition: ValueTypes.h:151
#define I(x, y, z)
Definition: MD5.cpp:58
#define N
uint32_t Size
Definition: Profile.cpp:47
static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget &Subtarget, SelectionDAG &DAG)
unsigned getOpcode() const
static Value * extractVector(IRBuilderTy &IRB, Value *V, unsigned BeginIndex, unsigned EndIndex, const Twine &Name)
Definition: SROA.cpp:2141
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
LegalizeTypeAction
This enum indicates whether a types are legal for a target, and if not, what action should be used to...
LLVM Value Representation.
Definition: Value.h:73
std::underlying_type< E >::type Mask()
Get a bitmask with 1s in all places up to the high-order bit of E&#39;s largest value.
Definition: BitmaskEnum.h:81
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:59
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation...
This file describes how to lower LLVM code to machine code.
MemIndexedMode
MemIndexedMode enum - This enum defines the load / store indexed addressing modes.
Definition: ISDOpcodes.h:914