Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp398 EVT BuiltVectorTy = in getCopyFromPartsVector() local
408 DL, BuiltVectorTy, Ops); in getCopyFromPartsVector()
788 EVT BuiltVectorTy = EVT::getVectorVT( in getCopyToPartsVector() local
791 if (ValueVT == BuiltVectorTy) { in getCopyToPartsVector()
793 } else if (ValueVT.getSizeInBits() == BuiltVectorTy.getSizeInBits()) { in getCopyToPartsVector()
795 Val = DAG.getNode(ISD::BITCAST, DL, BuiltVectorTy, Val); in getCopyToPartsVector()
797 if (BuiltVectorTy.getVectorElementType().bitsGT( in getCopyToPartsVector()
801 BuiltVectorTy.getVectorElementType(), in getCopyToPartsVector()
806 if (SDValue Widened = widenVectorToPartType(DAG, Val, DL, BuiltVectorTy)) { in getCopyToPartsVector()
811 assert(Val.getValueType() == BuiltVectorTy && "Unexpected vector value type"); in getCopyToPartsVector()