Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Worklist

768     // determine what is dirty, seeding our initial DirtyBlocks worklist.
868 // the predecessors of this block. Add them to our worklist.
1155 SmallVector<BasicBlock *, 32> Worklist;
1156 Worklist.push_back(StartBB);
1171 while (!Worklist.empty()) {
1172 BasicBlock *BB = Worklist.pop_back_val();
1177 Worklist.clear();
1215 // If not, we just add the predecessors to the worklist and scan them with
1250 Worklist.append(NewBlocks.begin(), NewBlocks.end());