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.cpp260 EVT PartEVT = Val.getValueType(); in getCopyFromParts() local
262 if (PartEVT == ValueVT) in getCopyFromParts()
265 if (PartEVT.isInteger() && ValueVT.isFloatingPoint() && in getCopyFromParts()
266 ValueVT.bitsLT(PartEVT)) { in getCopyFromParts()
269 PartEVT = EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits()); in getCopyFromParts()
270 Val = DAG.getNode(ISD::TRUNCATE, DL, PartEVT, Val); in getCopyFromParts()
274 if (PartEVT.getSizeInBits() == ValueVT.getSizeInBits()) in getCopyFromParts()
278 if (PartEVT.isInteger() && ValueVT.isInteger()) { in getCopyFromParts()
279 if (ValueVT.bitsLT(PartEVT)) { in getCopyFromParts()
284 Val = DAG.getNode(*AssertOp, DL, PartEVT, Val, in getCopyFromParts()
[all …]