Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Worklist

649     // determine what is dirty, seeding our initial DirtyBlocks worklist.
749 // the predecessors of this block. Add them to our worklist.
1018 SmallVector<BasicBlock*, 32> Worklist;
1019 Worklist.push_back(StartBB);
1032 while (!Worklist.empty()) {
1033 BasicBlock *BB = Worklist.pop_back_val();
1056 // If not, we just add the predecessors to the worklist and scan them with
1082 Worklist.append(NewBlocks.begin(), NewBlocks.end());