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

1 2 3

  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 29 EVT PtrVT = Src.getValueType();
43 DAG.getConstant(Size, DL, PtrVT),
44 DAG.getConstant(Size / 256, DL, PtrVT));
46 DAG.getConstant(Size, DL, PtrVT));
81 EVT PtrVT = Dst.getValueType();
105 Dst = DAG.getNode(ISD::ADD, DL, PtrVT, Dst,
106 DAG.getConstant(Size1, DL, PtrVT));
119 SDValue Dst2 = DAG.getNode(ISD::ADD, DL, PtrVT, Dst,
120 DAG.getConstant(1, DL, PtrVT));
139 SDValue DstPlus1 = DAG.getNode(ISD::ADD, DL, PtrVT, Dst
    [all...]
SystemZISelLowering.cpp 87 MVT PtrVT = MVT::getIntegerVT(8 * TM.getPointerSize());
250 setOperationAction(ISD::ConstantPool, PtrVT, Custom);
251 setOperationAction(ISD::GlobalAddress, PtrVT, Custom);
252 setOperationAction(ISD::GlobalTLSAddress, PtrVT, Custom);
253 setOperationAction(ISD::BlockAddress, PtrVT, Custom);
254 setOperationAction(ISD::JumpTable, PtrVT, Custom);
258 setOperationAction(ISD::DYNAMIC_STACKALLOC, PtrVT, Custom);
259 setOperationAction(ISD::GET_DYNAMIC_AREA_OFFSET, PtrVT, Custom);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXISelLowering.cpp 171 EVT PtrVT = getPointerTy();
175 assert(PtrVT.isSimple() && "Pointer must be to primitive type.");
177 SDValue targetGlobal = DAG.getTargetGlobalAddress(GV, dl, PtrVT);
180 PtrVT.getSimpleVT(),
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 29 EVT PtrVT = Src.getValueType();
43 DAG.getConstant(Size, DL, PtrVT),
44 DAG.getConstant(Size / 256, DL, PtrVT));
46 DAG.getConstant(Size, DL, PtrVT));
80 EVT PtrVT = Dst.getValueType();
104 Dst = DAG.getNode(ISD::ADD, DL, PtrVT, Dst,
105 DAG.getConstant(Size1, DL, PtrVT));
117 SDValue Dst2 = DAG.getNode(ISD::ADD, DL, PtrVT, Dst,
118 DAG.getConstant(1, DL, PtrVT));
136 SDValue DstPlus1 = DAG.getNode(ISD::ADD, DL, PtrVT, Dst
    [all...]
  /external/llvm/lib/Target/BPF/
BPFISelLowering.cpp 259 auto PtrVT = getPointerTy(MF.getDataLayout());
261 Chain, DAG.getConstant(NumBytes, CLI.DL, PtrVT, true), CLI.DL);
310 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), CLI.DL, PtrVT,
313 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), PtrVT, 0);
334 Chain, DAG.getConstant(NumBytes, CLI.DL, PtrVT, true),
335 DAG.getConstant(0, CLI.DL, PtrVT, true), InFlag, CLI.DL);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 330 EVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
342 Tmp3 = DAG.getZExtOrTrunc(Tmp3, dl, PtrVT);
    [all...]
FastISel.cpp 326 MVT PtrVT = TLI.getPointerTy(DL);
328 if (IdxVT.bitsLT(PtrVT)) {
329 IdxN = fastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::SIGN_EXTEND, IdxN,
332 } else if (IdxVT.bitsGT(PtrVT)) {
334 fastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::TRUNCATE, IdxN, IdxNIsKill);
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.cpp 340 auto PtrVT = getPointerTy(Layout);
379 SDValue Add = DAG.getNode(ISD::ADD, DL, PtrVT, FINode,
380 DAG.getConstant(Offset, DL, PtrVT));
508 MVT PtrVT = getPointerTy(MF.getDataLayout());
510 MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrVT));
514 DAG.getNode(WebAssemblyISD::ARGUMENT, DL, PtrVT,
516 MFI->addParam(PtrVT);
677 EVT PtrVT = getPointerTy(DAG.getMachineFunction().getDataLayout());
683 MFI->getVarargBufferVreg(), PtrVT);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/
AVRISelDAGToDAG.cpp 69 MVT PtrVT = getTargetLowering()->getPointerTy(DL);
73 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), PtrVT);
100 Base = CurDAG->getTargetFrameIndex(FI, PtrVT);
126 auto PtrVT = getTargetLowering()->getPointerTy(CurDAG->getDataLayout());
161 PtrVT, MVT::Other,
  /external/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp 866 EVT PtrVT = getTargetLowering()->getPointerTy(CurDAG->getDataLayout());
869 if (PtrVT == MVT::i32) {
883 SDValue ResNode = CurDAG->getCopyFromReg(Chain, DL, DestReg, PtrVT);
    [all...]
MipsSEISelLowering.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp     [all...]