Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp190 unsigned RoundParts = llvm::bit_floor(NumParts); in getCopyFromParts() local
191 unsigned RoundBits = PartBits * RoundParts; in getCopyFromParts()
198 if (RoundParts > 2) { in getCopyFromParts()
199 Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2, PartVT, HalfVT, V, in getCopyFromParts()
201 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2, RoundParts / 2, in getCopyFromParts()
213 if (RoundParts < NumParts) { in getCopyFromParts()
215 unsigned OddParts = NumParts - RoundParts; in getCopyFromParts()
217 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts, OddParts, PartVT, in getCopyFromParts()
592 unsigned RoundParts = llvm::bit_floor(NumParts); in getCopyToParts() local
593 unsigned RoundBits = RoundParts * PartBits; in getCopyToParts()
[all …]