Searched refs:PartBits (Results 1 – 3 of 3) sorted by relevance
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.cpp | 181 unsigned PartBits = PartVT.getSizeInBits(); in getCopyFromParts() local 186 unsigned RoundBits = PartBits * RoundParts; in getCopyFromParts() 498 unsigned PartBits = PartVT.getSizeInBits(); in getCopyToParts() local 514 if (NumParts * PartBits > ValueVT.getSizeInBits()) { in getCopyToParts() 534 } else if (PartBits == ValueVT.getSizeInBits()) { in getCopyToParts() 538 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) { in getCopyToParts() 543 ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits); in getCopyToParts() 551 assert(NumParts * PartBits == ValueVT.getSizeInBits() && in getCopyToParts() 571 unsigned RoundBits = RoundParts * PartBits; in getCopyToParts() 597 unsigned ThisBits = StepSize * PartBits / 2; in getCopyToParts() [all …]
|
/openbsd/gnu/llvm/llvm/lib/Target/ARM/ |
H A D | ARMISelLowering.cpp | 4430 unsigned PartBits = PartVT.getSizeInBits(); in splitValueIntoRegisterParts() local 4432 Val = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::getIntegerVT(PartBits), Val); in splitValueIntoRegisterParts() 4447 unsigned PartBits = PartVT.getSizeInBits(); in joinRegisterPartsIntoValue() local 4450 Val = DAG.getNode(ISD::BITCAST, DL, MVT::getIntegerVT(PartBits), Val); in joinRegisterPartsIntoValue()
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 2831 unsigned PartBits = PartVT.getSizeInBits(); in splitValueIntoRegisterParts() local 2833 Val = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::getIntegerVT(PartBits), Val); in splitValueIntoRegisterParts() 2847 unsigned PartBits = PartVT.getSizeInBits(); in joinRegisterPartsIntoValue() local 2850 Val = DAG.getNode(ISD::BITCAST, DL, MVT::getIntegerVT(PartBits), Val); in joinRegisterPartsIntoValue()
|