Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp256 EVT PartEVT = Val.getValueType(); in getCopyFromParts() local
258 if (PartEVT == ValueVT) in getCopyFromParts()
261 if (PartEVT.isInteger() && ValueVT.isFloatingPoint() && in getCopyFromParts()
262 ValueVT.bitsLT(PartEVT)) { in getCopyFromParts()
265 PartEVT = EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits()); in getCopyFromParts()
266 Val = DAG.getNode(ISD::TRUNCATE, DL, PartEVT, Val); in getCopyFromParts()
270 if (PartEVT.getSizeInBits() == ValueVT.getSizeInBits()) in getCopyFromParts()
274 if (PartEVT.isInteger() && ValueVT.isInteger()) { in getCopyFromParts()
275 if (ValueVT.bitsLT(PartEVT)) { in getCopyFromParts()
280 Val = DAG.getNode(*AssertOp, DL, PartEVT, Val, in getCopyFromParts()
[all …]