Searched refs:PVT (Results 1 – 4 of 4) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 352 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace); 353 SDValue SExtPromoteOperand(SDValue Op, EVT PVT); 354 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT); 1108 SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) { in PromoteOperand() argument 1117 return DAG.getExtLoad(ExtType, DL, PVT, in PromoteOperand() 1126 if (SDValue Op0 = SExtPromoteOperand(Op.getOperand(0), PVT)) in PromoteOperand() 1127 return DAG.getNode(ISD::AssertSext, DL, PVT, Op0, Op.getOperand(1)); in PromoteOperand() 1130 if (SDValue Op0 = ZExtPromoteOperand(Op.getOperand(0), PVT)) in PromoteOperand() 1131 return DAG.getNode(ISD::AssertZext, DL, PVT, Op0, Op.getOperand(1)); in PromoteOperand() 1136 return DAG.getNode(ExtOpc, DL, PVT, Op); in PromoteOperand() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.cpp | 10948 MVT PVT = getPointerTy(MF->getDataLayout()); in emitEHSjLjSetJmp() local 10949 assert((PVT == MVT::i64 || PVT == MVT::i32) && in emitEHSjLjSetJmp() 10992 const int64_t LabelOffset = 1 * PVT.getStoreSize(); in emitEHSjLjSetJmp() 10993 const int64_t TOCOffset = 3 * PVT.getStoreSize(); in emitEHSjLjSetJmp() 10994 const int64_t BPOffset = 4 * PVT.getStoreSize(); in emitEHSjLjSetJmp() 10997 const TargetRegisterClass *PtrRC = getRegClassFor(PVT); in emitEHSjLjSetJmp() 11080 MVT PVT = getPointerTy(MF->getDataLayout()); in emitEHSjLjLongJmp() local 11081 assert((PVT == MVT::i64 || PVT == MVT::i32) && in emitEHSjLjLongJmp() 11085 (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass; in emitEHSjLjLongJmp() 11088 unsigned FP = (PVT == MVT::i64) ? PPC::X31 : PPC::R31; in emitEHSjLjLongJmp() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 7947 EVT PVT = LD->getValueType(0); in LowerAsSplatVectorLoad() local 7948 if (PVT != MVT::i32 && PVT != MVT::f32) in LowerAsSplatVectorLoad() 7998 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems); in LowerAsSplatVectorLoad() 8487 MVT PVT = TLI.getPointerTy(DAG.getDataLayout()); in lowerBuildVectorAsBroadcast() local 8496 SDValue CP = DAG.getConstantPool(C, PVT); in lowerBuildVectorAsBroadcast() 8520 SDValue CP = DAG.getConstantPool(C, PVT); in lowerBuildVectorAsBroadcast() 8536 SDValue VCP = DAG.getConstantPool(VecC, PVT); in lowerBuildVectorAsBroadcast() 15043 MVT PVT = VT.isFloatingPoint() ? MVT::v4f64 : MVT::v4i64; in lowerShuffleAsLanePermuteAndShuffle() local 15044 SDValue Flipped = DAG.getBitcast(PVT, V1); in lowerShuffleAsLanePermuteAndShuffle() 15046 DAG.getVectorShuffle(PVT, DL, Flipped, DAG.getUNDEF(PVT), {2, 3, 0, 1}); in lowerShuffleAsLanePermuteAndShuffle() [all …]
|
D | X86ISelLowering.h | 831 bool IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const override;
|