Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp394 EVT BuiltVectorTy = in getCopyFromPartsVector() local
404 DL, BuiltVectorTy, Ops); in getCopyFromPartsVector()
775 EVT BuiltVectorTy = EVT::getVectorVT( in getCopyToPartsVector() local
778 if (ValueVT == BuiltVectorTy) { in getCopyToPartsVector()
780 } else if (ValueVT.getSizeInBits() == BuiltVectorTy.getSizeInBits()) { in getCopyToPartsVector()
782 Val = DAG.getNode(ISD::BITCAST, DL, BuiltVectorTy, Val); in getCopyToPartsVector()
784 if (BuiltVectorTy.getVectorElementType().bitsGT( in getCopyToPartsVector()
788 BuiltVectorTy.getVectorElementType(), in getCopyToPartsVector()
793 if (SDValue Widened = widenVectorToPartType(DAG, Val, DL, BuiltVectorTy)) { in getCopyToPartsVector()
798 assert(Val.getValueType() == BuiltVectorTy && "Unexpected vector value type"); in getCopyToPartsVector()