Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp115 unsigned RoundParts = NumParts & (NumParts - 1) ? in getCopyFromParts() local
117 unsigned RoundBits = PartBits * RoundParts; in getCopyFromParts()
124 if (RoundParts > 2) { in getCopyFromParts()
125 Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2, in getCopyFromParts()
127 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2, in getCopyFromParts()
128 RoundParts / 2, PartVT, HalfVT); in getCopyFromParts()
139 if (RoundParts < NumParts) { in getCopyFromParts()
141 unsigned OddParts = NumParts - RoundParts; in getCopyFromParts()
144 Parts + RoundParts, OddParts, PartVT, OddVT); in getCopyFromParts()
389 unsigned RoundParts = 1 << Log2_32(NumParts); in getCopyToParts() local
[all …]
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp147 unsigned RoundParts = NumParts & (NumParts - 1) ? in getCopyFromParts() local
149 unsigned RoundBits = PartBits * RoundParts; in getCopyFromParts()
156 if (RoundParts > 2) { in getCopyFromParts()
157 Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2, in getCopyFromParts()
159 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2, in getCopyFromParts()
160 RoundParts / 2, PartVT, HalfVT, V); in getCopyFromParts()
171 if (RoundParts < NumParts) { in getCopyFromParts()
173 unsigned OddParts = NumParts - RoundParts; in getCopyFromParts()
176 Parts + RoundParts, OddParts, PartVT, OddVT, V); in getCopyFromParts()
464 unsigned RoundParts = 1 << Log2_32(NumParts); in getCopyToParts() local
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp216 unsigned RoundParts = NumParts & (NumParts - 1) ? in getCopyFromParts() local
218 unsigned RoundBits = PartBits * RoundParts; in getCopyFromParts()
225 if (RoundParts > 2) { in getCopyFromParts()
226 Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2, in getCopyFromParts()
228 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2, in getCopyFromParts()
229 RoundParts / 2, PartVT, HalfVT, V); in getCopyFromParts()
240 if (RoundParts < NumParts) { in getCopyFromParts()
242 unsigned OddParts = NumParts - RoundParts; in getCopyFromParts()
244 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts, OddParts, PartVT, in getCopyFromParts()
570 unsigned RoundParts = 1 << Log2_32(NumParts); in getCopyToParts() local
[all …]