Searched refs:RoundParts (Results 1 – 1 of 1) sorted by relevance
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 127 unsigned RoundParts = NumParts & (NumParts - 1) ? in getCopyFromParts() local 129 unsigned RoundBits = PartBits * RoundParts; in getCopyFromParts() 136 if (RoundParts > 2) { in getCopyFromParts() 137 Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2, in getCopyFromParts() 139 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2, in getCopyFromParts() 140 RoundParts / 2, PartVT, HalfVT, V); in getCopyFromParts() 151 if (RoundParts < NumParts) { in getCopyFromParts() 153 unsigned OddParts = NumParts - RoundParts; in getCopyFromParts() 156 Parts + RoundParts, OddParts, PartVT, OddVT, V); in getCopyFromParts() 425 unsigned RoundParts = 1 << Log2_32(NumParts); in getCopyToParts() local [all …]
|