Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp434 unsigned MaxPop = 0; in processSwitchInst() local
460 if ((Pop += N) > MaxPop) { in processSwitchInst()
461 MaxPop = Pop; in processSwitchInst()
479 assert(MaxPop > 0 && PopSucc); in processSwitchInst()
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DSimplifyCFG.cpp2378 unsigned MaxPop = 0; in SimplifyUnreachable() local
2383 if (I->second.first > MaxPop || in SimplifyUnreachable()
2384 (I->second.first == MaxPop && MaxIndex > I->second.second)) { in SimplifyUnreachable()
2385 MaxPop = I->second.first; in SimplifyUnreachable()
2399 for (unsigned i = 0; i != MaxPop-1; ++i) in SimplifyUnreachable()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp9049 unsigned MaxPop = 0; in visitSwitch() local
9053 if (++Popularity[BB] > MaxPop) { in visitSwitch()
9054 MaxPop = Popularity[BB]; in visitSwitch()
9059 assert(MaxPop > 0 && MaxBB); in visitSwitch()