Home
last modified time | relevance | path

Searched refs:SrcEltVT (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorOps.cpp489 EVT SrcEltVT = SrcVT.getScalarType(); in ExpandLoad() local
492 if (SrcVT.getVectorNumElements() > 1 && !SrcEltVT.isByteSized()) { in ExpandLoad()
503 assert(WideVT.bitsGE(SrcEltVT) && in ExpandLoad()
546 unsigned SrcEltBits = SrcEltVT.getSizeInBits(); in ExpandLoad()
DDAGCombiner.cpp6943 EVT SrcEltVT = BV->getValueType(0).getVectorElementType(); in ConstantFoldBITCASTofBUILD_VECTOR() local
6946 if (SrcEltVT == DstEltVT) return SDValue(BV, 0); in ConstantFoldBITCASTofBUILD_VECTOR()
6948 unsigned SrcBitSize = SrcEltVT.getSizeInBits(); in ConstantFoldBITCASTofBUILD_VECTOR()
6969 if (Op.getValueType() != SrcEltVT) in ConstantFoldBITCASTofBUILD_VECTOR()
6970 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(BV), SrcEltVT, Op); in ConstantFoldBITCASTofBUILD_VECTOR()
6981 if (SrcEltVT.isFloatingPoint()) { in ConstantFoldBITCASTofBUILD_VECTOR()
6984 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits()); in ConstantFoldBITCASTofBUILD_VECTOR()
6986 SrcEltVT = IntVT; in ConstantFoldBITCASTofBUILD_VECTOR()
7001 assert(SrcEltVT.isInteger() && DstEltVT.isInteger()); in ConstantFoldBITCASTofBUILD_VECTOR()