Home | History | Annotate | Download | only in TableGen

Lines Matching defs:WorkList

407 // Run the worklist algorithm to generate the DFA.
447 // Run a worklist algorithm to generate the DFA.
454 SmallVector<State*, 32> WorkList;
457 WorkList.push_back(Initial);
460 // Worklist algorithm to create a DFA for processor resource tracking.
462 // Begin with initial node in worklist. Initial node does not have
466 // While worklist != empty
467 // S = first element of worklist
473 // Add S' to worklist
476 while (!WorkList.empty()) {
477 State *current = WorkList.pop_back_val();
505 WorkList.push_back(NewState);