Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp6348 MVT ValueSVT = ValueVT.getVectorElementType(); in Select() local
6350 bool IsFP = ValueSVT.isFloatingPoint(); in Select()
6351 unsigned EltSize = ValueSVT.getSizeInBits(); in Select()
6444 MVT ValueSVT = ValueVT.getVectorElementType(); in Select() local
6446 bool IsFP = ValueSVT.isFloatingPoint(); in Select()
6447 unsigned EltSize = ValueSVT.getSizeInBits(); in Select()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp475 EVT ValueSVT = ValueVT.getVectorElementType(); in getCopyFromPartsVector() local
476 if (ValueVT.getVectorNumElements() == 1 && ValueSVT != PartEVT) { in getCopyFromPartsVector()
477 unsigned ValueSize = ValueSVT.getSizeInBits(); in getCopyFromPartsVector()
479 Val = DAG.getNode(ISD::BITCAST, DL, ValueSVT, Val); in getCopyFromPartsVector()
480 } else if (ValueSVT.isFloatingPoint() && PartEVT.isInteger()) { in getCopyFromPartsVector()
484 assert(ValueSVT.bitsLT(PartEVT) && "Unexpected types"); in getCopyFromPartsVector()
487 Val = DAG.getBitcast(ValueSVT, Val); in getCopyFromPartsVector()
490 ? DAG.getFPExtendOrRound(Val, DL, ValueSVT) in getCopyFromPartsVector()
491 : DAG.getAnyExtOrTrunc(Val, DL, ValueSVT); in getCopyFromPartsVector()