Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorOps.cpp506 EVT SrcEltVT = SrcVT.getScalarType(); in ExpandLoad() local
509 if (SrcVT.getVectorNumElements() > 1 && !SrcEltVT.isByteSized()) { in ExpandLoad()
520 assert(WideVT.bitsGE(SrcEltVT) && in ExpandLoad()
564 unsigned SrcEltBits = SrcEltVT.getSizeInBits(); in ExpandLoad()
DDAGCombiner.cpp7510 EVT SrcEltVT = BV->getValueType(0).getVectorElementType(); in ConstantFoldBITCASTofBUILD_VECTOR() local
7513 if (SrcEltVT == DstEltVT) return SDValue(BV, 0); in ConstantFoldBITCASTofBUILD_VECTOR()
7515 unsigned SrcBitSize = SrcEltVT.getSizeInBits(); in ConstantFoldBITCASTofBUILD_VECTOR()
7535 if (Op.getValueType() != SrcEltVT) in ConstantFoldBITCASTofBUILD_VECTOR()
7536 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(BV), SrcEltVT, Op); in ConstantFoldBITCASTofBUILD_VECTOR()
7547 if (SrcEltVT.isFloatingPoint()) { in ConstantFoldBITCASTofBUILD_VECTOR()
7550 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits()); in ConstantFoldBITCASTofBUILD_VECTOR()
7552 SrcEltVT = IntVT; in ConstantFoldBITCASTofBUILD_VECTOR()
7569 assert(SrcEltVT.isInteger() && DstEltVT.isInteger()); in ConstantFoldBITCASTofBUILD_VECTOR()