HomeSort by relevance Sort by last modified time
    Searched defs:PtrVT (Results 1 - 15 of 15) sorted by null

  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 35 EVT PtrVT = Src.getValueType();
49 DAG.getConstant(Size, PtrVT),
50 DAG.getConstant(Size / 256, PtrVT));
52 DAG.getConstant(Size, PtrVT));
90 EVT PtrVT = Dst.getValueType();
114 Dst = DAG.getNode(ISD::ADD, DL, PtrVT, Dst,
115 DAG.getConstant(Size1, PtrVT));
128 SDValue Dst2 = DAG.getNode(ISD::ADD, DL, PtrVT, Dst,
129 DAG.getConstant(1, PtrVT));
148 SDValue DstPlus1 = DAG.getNode(ISD::ADD, DL, PtrVT, Dst
    [all...]
SystemZISelLowering.cpp 86 MVT PtrVT = getPointerTy();
227 setOperationAction(ISD::ConstantPool, PtrVT, Custom);
228 setOperationAction(ISD::GlobalAddress, PtrVT, Custom);
229 setOperationAction(ISD::GlobalTLSAddress, PtrVT, Custom);
230 setOperationAction(ISD::BlockAddress, PtrVT, Custom);
231 setOperationAction(ISD::JumpTable, PtrVT, Custom);
235 setOperationAction(ISD::DYNAMIC_STACKALLOC, PtrVT, Custom);
729 EVT PtrVT = getPointerTy();
730 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
732 FIN = DAG.getNode(ISD::ADD, DL, PtrVT, FIN, DAG.getIntPtrConstant(4))
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 595 EVT PtrVT = TLI.getPointerTy();
606 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
607 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
    [all...]
FastISel.cpp 299 MVT PtrVT = TLI.getPointerTy();
301 if (IdxVT.bitsLT(PtrVT)) {
302 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::SIGN_EXTEND,
306 else if (IdxVT.bitsGT(PtrVT)) {
307 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::TRUNCATE,
    [all...]
LegalizeIntegerTypes.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp 773 EVT PtrVT = getTargetLowering()->getPointerTy();
776 if (PtrVT == MVT::i32) {
790 SDValue ResNode = CurDAG->getCopyFromReg(Chain, DL, DestReg, PtrVT);
MipsSEISelLowering.cpp     [all...]
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 748 EVT PtrVT = CurDAG->getTargetLoweringInfo().getPointerTy();
749 bool isPPC64 = (PtrVT == MVT::i64);
    [all...]
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 333 EVT PtrVT = Op.getValueType();
336 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
339 Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
762 EVT PtrVT = VAListPtr.getValueType();
765 SDValue VAList = DAG.getLoad(PtrVT, dl, InChain,
769 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAList,
    [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 621 EVT PtrVT = InitPtr.getValueType();
625 SDValue Offset = DAG.getConstant(SL->getElementOffset(I), PtrVT);
626 SDValue Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, InitPtr, Offset);
636 EVT PtrVT = InitPtr.getValueType();
649 SDValue Offset = DAG.getConstant(i * EltSize, PtrVT);
650 SDValue Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, InitPtr, Offset);
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 565 milliseconds