Home | History | Annotate | Download | only in sksl

Lines Matching refs:workList

335 void Compiler::scanCFG(CFG* cfg, BlockId blockId, std::set<BlockId>* workList) {
352 workList->insert(exitId);
358 // definition has changed, merge and add exit block to worklist
359 workList->insert(exitId);
432 std::set<BlockId> workList;
434 workList.insert(i);
436 while (workList.size()) {
437 BlockId next = *workList.begin();
438 workList.erase(workList.begin());
439 this->scanCFG(cfg, next, &workList);