Searched refs:DstEltVT (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorOps.cpp | 510 EVT DstEltVT = LD->getValueType(0).getScalarType(); in ExpandLoad() local 605 Lo = DAG.getAnyExtOrTrunc(Lo, dl, DstEltVT); in ExpandLoad() 608 Lo = DAG.getZExtOrTrunc(Lo, dl, DstEltVT); in ExpandLoad() 616 Lo = DAG.getSExtOrTrunc(Lo, dl, DstEltVT); in ExpandLoad()
|
D | DAGCombiner.cpp | 7641 ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) { in ConstantFoldBITCASTofBUILD_VECTOR() argument 7645 if (SrcEltVT == DstEltVT) return SDValue(BV, 0); in ConstantFoldBITCASTofBUILD_VECTOR() 7648 unsigned DstBitSize = DstEltVT.getSizeInBits(); in ConstantFoldBITCASTofBUILD_VECTOR() 7653 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, in ConstantFoldBITCASTofBUILD_VECTOR() 7660 DAG.getBitcast(DstEltVT, BV->getOperand(0))); in ConstantFoldBITCASTofBUILD_VECTOR() 7668 Ops.push_back(DAG.getBitcast(DstEltVT, Op)); in ConstantFoldBITCASTofBUILD_VECTOR() 7687 if (DstEltVT.isFloatingPoint()) { in ConstantFoldBITCASTofBUILD_VECTOR() 7688 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits()); in ConstantFoldBITCASTofBUILD_VECTOR() 7692 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT); in ConstantFoldBITCASTofBUILD_VECTOR() 7699 assert(SrcEltVT.isInteger() && DstEltVT.isInteger()); in ConstantFoldBITCASTofBUILD_VECTOR() [all …]
|
D | TargetLowering.cpp | 3158 EVT DstEltVT = LD->getValueType(0).getScalarType(); in scalarizeVectorLoad() local 3170 ExtType, SL, DstEltVT, in scalarizeVectorLoad()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 5099 ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) { in ConstantFoldBITCASTofBUILD_VECTOR() argument 5103 if (SrcEltVT == DstEltVT) return SDValue(BV, 0); in ConstantFoldBITCASTofBUILD_VECTOR() 5106 unsigned DstBitSize = DstEltVT.getSizeInBits(); in ConstantFoldBITCASTofBUILD_VECTOR() 5111 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, in ConstantFoldBITCASTofBUILD_VECTOR() 5119 DstEltVT, BV->getOperand(0))); in ConstantFoldBITCASTofBUILD_VECTOR() 5129 DstEltVT, Op)); in ConstantFoldBITCASTofBUILD_VECTOR() 5150 if (DstEltVT.isFloatingPoint()) { in ConstantFoldBITCASTofBUILD_VECTOR() 5151 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!"); in ConstantFoldBITCASTofBUILD_VECTOR() 5152 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits()); in ConstantFoldBITCASTofBUILD_VECTOR() 5156 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT); in ConstantFoldBITCASTofBUILD_VECTOR() [all …]
|