Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp6205 MVT ValueSVT = ValueVT.getVectorElementType(); in Select() local
6207 bool IsFP = ValueSVT.isFloatingPoint(); in Select()
6208 unsigned EltSize = ValueSVT.getSizeInBits(); in Select()
6301 MVT ValueSVT = ValueVT.getVectorElementType(); in Select() local
6303 bool IsFP = ValueSVT.isFloatingPoint(); in Select()
6304 unsigned EltSize = ValueSVT.getSizeInBits(); in Select()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp471 EVT ValueSVT = ValueVT.getVectorElementType(); in getCopyFromPartsVector() local
472 if (ValueVT.getVectorNumElements() == 1 && ValueSVT != PartEVT) { in getCopyFromPartsVector()
473 unsigned ValueSize = ValueSVT.getSizeInBits(); in getCopyFromPartsVector()
475 Val = DAG.getNode(ISD::BITCAST, DL, ValueSVT, Val); in getCopyFromPartsVector()
476 } else if (ValueSVT.isFloatingPoint() && PartEVT.isInteger()) { in getCopyFromPartsVector()
480 assert(ValueSVT.bitsLT(PartEVT) && "Unexpected types"); in getCopyFromPartsVector()
483 Val = DAG.getBitcast(ValueSVT, Val); in getCopyFromPartsVector()
486 ? DAG.getFPExtendOrRound(Val, DL, ValueSVT) in getCopyFromPartsVector()
487 : DAG.getAnyExtOrTrunc(Val, DL, ValueSVT); in getCopyFromPartsVector()