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

/openbsd-current/gnu/llvm/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmTypeCheck.cpp93 auto PVT = Stack.pop_back_val(); local
94 if (EVT && *EVT != PVT) {
96 StringRef("popped ") + WebAssembly::typeToString(PVT) +
106 auto PVT = Stack.pop_back_val(); local
107 if (!WebAssembly::isRefType(PVT)) {
109 WebAssembly::typeToString(PVT) +
139 auto PVT = Stack[Stack.size() - LastSig.Returns.size() + i]; local
140 if (PVT != EVT)
142 ErrorLoc, StringRef("end got ") + WebAssembly::typeToString(PVT) +
/openbsd-current/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) { argument
1295 return DAG.getExtLoad(ExtType, DL, PVT,
1304 if (SDValue Op0 = SExtPromoteOperand(Op.getOperand(0), PVT))
1305 return DAG.getNode(ISD::AssertSext, DL, PVT, Op0, Op.getOperand(1));
1308 if (SDValue Op0 = ZExtPromoteOperand(Op.getOperand(0), PVT))
1309 return DAG.getNode(ISD::AssertZext, DL, PVT, Op0, Op.getOperand(1));
1314 return DAG.getNode(ExtOpc, DL, PVT, O
1323 SExtPromoteOperand(SDValue Op, EVT PVT) argument
1340 ZExtPromoteOperand(SDValue Op, EVT PVT) argument
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp11943 MVT PVT = getPointerTy(MF->getDataLayout()); local
11944 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
11987 const int64_t LabelOffset = 1 * PVT.getStoreSize();
11988 const int64_t TOCOffset = 3 * PVT.getStoreSize();
11989 const int64_t BPOffset = 4 * PVT.getStoreSize();
11992 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
12075 MVT PVT = getPointerTy(MF->getDataLayout()); local
12076 assert((PVT == MVT::i64 || PVT
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.h1059 bool IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const override;
H A DX86ISelLowering.cpp9197 EVT PVT = LD->getValueType(0);
9198 if (PVT != MVT::i32 && PVT != MVT::f32)
9249 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
9743 MVT PVT = TLI.getPointerTy(DAG.getDataLayout());
9752 SDValue CP = DAG.getConstantPool(C, PVT);
9770 SDValue VCP = DAG.getConstantPool(VecC, PVT);
17148 MVT PVT = VT.isFloatingPoint() ? MVT::v4f64 : MVT::v4i64;
17149 SDValue Flipped = DAG.getBitcast(PVT, V1);
17151 DAG.getVectorShuffle(PVT, D
[all...]

Completed in 1266 milliseconds