Lines Matching defs:PtrVT

50   MVT PtrVT = MVT::i32;
155 setOperationAction(ISD::DYNAMIC_STACKALLOC, PtrVT, Custom);
413 EVT PtrVT, unsigned SlotSize, int FPDiff, const SDLoc &DL) const {
421 SDValue NewFI = DAG.getFrameIndex(NewFO, PtrVT);
2662 MVT PtrVT = getPointerTy(DAG.getDataLayout());
2664 CP->getConstVal(), PtrVT, CP->getAlign(), CP->getOffset(), OpFlag);
2667 Result = DAG.getNode(WrapperKind, DL, PtrVT, Result);
2671 Result = DAG.getNode(ISD::ADD, DL, PtrVT,
2672 DAG.getNode(M68kISD::GLOBAL_BASE_REG, SDLoc(), PtrVT),
2693 auto PtrVT = getPointerTy(DAG.getDataLayout());
2694 SDValue Result = DAG.getTargetExternalSymbol(Sym, PtrVT, OpFlag);
2697 Result = DAG.getNode(WrapperKind, DL, PtrVT, Result);
2701 Result = DAG.getNode(ISD::ADD, DL, PtrVT,
2702 DAG.getNode(M68kISD::GLOBAL_BASE_REG, SDLoc(), PtrVT),
2709 Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Result,
2722 auto PtrVT = getPointerTy(DAG.getDataLayout());
2725 SDValue Result = DAG.getTargetBlockAddress(BA, PtrVT, Offset, OpFlags);
2728 Result = DAG.getNode(M68kISD::WrapperPC, DL, PtrVT, Result);
2730 Result = DAG.getNode(M68kISD::Wrapper, DL, PtrVT, Result);
2736 DAG.getNode(ISD::ADD, DL, PtrVT,
2737 DAG.getNode(M68kISD::GLOBAL_BASE_REG, DL, PtrVT), Result);
2747 auto PtrVT = getPointerTy(DAG.getDataLayout());
2753 Result = DAG.getTargetGlobalAddress(GV, DL, PtrVT, Offset);
2756 Result = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, OpFlags);
2760 Result = DAG.getNode(M68kISD::WrapperPC, DL, PtrVT, Result);
2762 Result = DAG.getNode(M68kISD::Wrapper, DL, PtrVT, Result);
2767 DAG.getNode(ISD::ADD, DL, PtrVT,
2768 DAG.getNode(M68kISD::GLOBAL_BASE_REG, DL, PtrVT), Result);
2774 Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Result,
2781 Result = DAG.getNode(ISD::ADD, DL, PtrVT, Result,
2782 DAG.getConstant(Offset, DL, PtrVT));
2812 auto PtrVT = getPointerTy(DAG.getDataLayout());
2813 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, OpFlag);
2815 Result = DAG.getNode(WrapperKind, DL, PtrVT, Result);
2819 Result = DAG.getNode(ISD::ADD, DL, PtrVT,
2820 DAG.getNode(M68kISD::GLOBAL_BASE_REG, SDLoc(), PtrVT),
3339 auto PtrVT = getPointerTy(MF.getDataLayout());
3347 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);