Home | History | Annotate | Download | only in ObjCARC

Lines Matching refs:PredStack

2346   SmallVector<std::pair<BasicBlock *, BBState::edge_iterator>, 16> PredStack;
2355 PredStack.push_back(std::make_pair(ExitBB, MyStates.pred_begin()));
2357 while (!PredStack.empty()) {
2359 BBState::edge_iterator PE = BBStates[PredStack.back().first].pred_end();
2360 while (PredStack.back().second != PE) {
2361 BasicBlock *BB = *PredStack.back().second++;
2363 PredStack.push_back(std::make_pair(BB, BBStates[BB].pred_begin()));
2367 ReverseCFGPostOrder.push_back(PredStack.pop_back_val().first);