Searched defs:MaxPop (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp434 unsigned MaxPop = 0; local
460 if ((Pop += N) > MaxPop) {
461 MaxPop = Pop;
479 assert(MaxPop > 0 && PopSucc);
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2378 unsigned MaxPop = 0; local
2383 if (I->second.first > MaxPop ||
2384 (I->second.first == MaxPop && MaxIndex > I->second.second)) {
2385 MaxPop = I->second.first;
2396 // If MaxBlock has phinodes in it, remove MaxPop-1 entries from
2399 for (unsigned i = 0; i != MaxPop-1; ++i)

Completed in 65 milliseconds