Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp5955 MVT ValueSVT = ValueVT.getVectorElementType(); in Select() local
5957 bool IsFP = ValueSVT.isFloatingPoint(); in Select()
5958 unsigned EltSize = ValueSVT.getSizeInBits(); in Select()
6051 MVT ValueSVT = ValueVT.getVectorElementType(); in Select() local
6053 bool IsFP = ValueSVT.isFloatingPoint(); in Select()
6054 unsigned EltSize = ValueSVT.getSizeInBits(); in Select()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp450 EVT ValueSVT = ValueVT.getVectorElementType(); in getCopyFromPartsVector() local
451 if (ValueVT.getVectorNumElements() == 1 && ValueSVT != PartEVT) { in getCopyFromPartsVector()
452 unsigned ValueSize = ValueSVT.getSizeInBits(); in getCopyFromPartsVector()
454 Val = DAG.getNode(ISD::BITCAST, DL, ValueSVT, Val); in getCopyFromPartsVector()
455 } else if (ValueSVT.isFloatingPoint() && PartEVT.isInteger()) { in getCopyFromPartsVector()
459 assert(ValueSVT.bitsLT(PartEVT) && "Unexpected types"); in getCopyFromPartsVector()
462 Val = DAG.getBitcast(ValueSVT, Val); in getCopyFromPartsVector()
465 ? DAG.getFPExtendOrRound(Val, DL, ValueSVT) in getCopyFromPartsVector()
466 : DAG.getAnyExtOrTrunc(Val, DL, ValueSVT); in getCopyFromPartsVector()