Home
last modified time | relevance | path

Searched refs:PVT (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmTypeCheck.cpp93 auto PVT = Stack.pop_back_val(); in popType() local
94 if (EVT && *EVT != PVT) { in popType()
96 StringRef("popped ") + WebAssembly::typeToString(PVT) + in popType()
106 auto PVT = Stack.pop_back_val(); in popRefType() local
107 if (!WebAssembly::isRefType(PVT)) { in popRefType()
109 WebAssembly::typeToString(PVT) + in popRefType()
139 auto PVT = Stack[Stack.size() - LastSig.Returns.size() + i]; in checkEnd() local
140 if (PVT != EVT) in checkEnd()
142 ErrorLoc, StringRef("end got ") + WebAssembly::typeToString(PVT) + in checkEnd()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp382 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
383 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
384 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
1286 SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) { in PromoteOperand() argument
1295 return DAG.getExtLoad(ExtType, DL, PVT, in PromoteOperand()
1304 if (SDValue Op0 = SExtPromoteOperand(Op.getOperand(0), PVT)) in PromoteOperand()
1305 return DAG.getNode(ISD::AssertSext, DL, PVT, Op0, Op.getOperand(1)); in PromoteOperand()
1308 if (SDValue Op0 = ZExtPromoteOperand(Op.getOperand(0), PVT)) in PromoteOperand()
1309 return DAG.getNode(ISD::AssertZext, DL, PVT, Op0, Op.getOperand(1)); in PromoteOperand()
1314 return DAG.getNode(ExtOpc, DL, PVT, Op); in PromoteOperand()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp11943 MVT PVT = getPointerTy(MF->getDataLayout()); in emitEHSjLjSetJmp() local
11944 assert((PVT == MVT::i64 || PVT == MVT::i32) && in emitEHSjLjSetJmp()
11987 const int64_t LabelOffset = 1 * PVT.getStoreSize(); in emitEHSjLjSetJmp()
11988 const int64_t TOCOffset = 3 * PVT.getStoreSize(); in emitEHSjLjSetJmp()
11989 const int64_t BPOffset = 4 * PVT.getStoreSize(); in emitEHSjLjSetJmp()
11992 const TargetRegisterClass *PtrRC = getRegClassFor(PVT); in emitEHSjLjSetJmp()
12075 MVT PVT = getPointerTy(MF->getDataLayout()); in emitEHSjLjLongJmp() local
12076 assert((PVT == MVT::i64 || PVT == MVT::i32) && in emitEHSjLjLongJmp()
12080 (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass; in emitEHSjLjLongJmp()
12083 unsigned FP = (PVT == MVT::i64) ? PPC::X31 : PPC::R31; in emitEHSjLjLongJmp()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp9197 EVT PVT = LD->getValueType(0); in LowerAsSplatVectorLoad() local
9198 if (PVT != MVT::i32 && PVT != MVT::f32) in LowerAsSplatVectorLoad()
9249 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems); in LowerAsSplatVectorLoad()
9743 MVT PVT = TLI.getPointerTy(DAG.getDataLayout()); in lowerBuildVectorAsBroadcast() local
9752 SDValue CP = DAG.getConstantPool(C, PVT); in lowerBuildVectorAsBroadcast()
9770 SDValue VCP = DAG.getConstantPool(VecC, PVT); in lowerBuildVectorAsBroadcast()
17148 MVT PVT = VT.isFloatingPoint() ? MVT::v4f64 : MVT::v4i64; in lowerShuffleAsLanePermuteAndShuffle() local
17149 SDValue Flipped = DAG.getBitcast(PVT, V1); in lowerShuffleAsLanePermuteAndShuffle()
17151 DAG.getVectorShuffle(PVT, DL, Flipped, DAG.getUNDEF(PVT), {2, 3, 0, 1}); in lowerShuffleAsLanePermuteAndShuffle()
36501 MVT PVT = getPointerTy(MF->getDataLayout()); in emitSetJmpShadowStackFix() local
[all …]
H A DX86ISelLowering.h1059 bool IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const override;