Lines Matching defs:worklist
48 // This is the number of worklist items we will process to try to discover an
300 std::vector<BasicBlock*> worklist;
301 worklist.push_back(OldSucc);
309 // Use a worklist to perform a depth-first search of OldSucc's successors.
313 while (!worklist.empty()) {
314 BasicBlock *ToUpdate = worklist.back();
315 worklist.pop_back();
338 llvm::append_range(worklist, successors(ToUpdate));
442 // push additional values to the worklist and return nullopt. If
1573 // As the worklist only explicitly tracks block values (but not edge values)