Lines Matching refs:DstEltVT
15773 ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) { in ConstantFoldBITCASTofBUILD_VECTOR() argument
15777 if (SrcEltVT == DstEltVT) return SDValue(BV, 0); in ConstantFoldBITCASTofBUILD_VECTOR()
15780 unsigned DstBitSize = DstEltVT.getSizeInBits(); in ConstantFoldBITCASTofBUILD_VECTOR()
15791 Ops.push_back(DAG.getBitcast(DstEltVT, Op)); in ConstantFoldBITCASTofBUILD_VECTOR()
15794 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, in ConstantFoldBITCASTofBUILD_VECTOR()
15812 if (DstEltVT.isFloatingPoint()) { in ConstantFoldBITCASTofBUILD_VECTOR()
15813 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits()); in ConstantFoldBITCASTofBUILD_VECTOR()
15817 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT); in ConstantFoldBITCASTofBUILD_VECTOR()
15821 assert(SrcEltVT.isInteger() && DstEltVT.isInteger()); in ConstantFoldBITCASTofBUILD_VECTOR()
15838 Ops.push_back(DAG.getUNDEF(DstEltVT)); in ConstantFoldBITCASTofBUILD_VECTOR()
15840 Ops.push_back(DAG.getConstant(RawBits[I], DL, DstEltVT)); in ConstantFoldBITCASTofBUILD_VECTOR()
15843 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size()); in ConstantFoldBITCASTofBUILD_VECTOR()