Home | History | Annotate | Download | only in Sema

Lines Matching refs:Stack

216   // Make the processing stack and seed it with the entry block.
217 SmallVector<CFGBlock *, 16> Stack;
218 Stack.push_back(&cfg->getEntry());
220 while (!Stack.empty()) {
221 CFGBlock *CurBlock = Stack.back();
222 Stack.pop_back();
237 // Loop over successor blocks and add them to the Stack if their state
244 Stack.push_back(*I);