Home | History | Annotate | Download | only in TableGen

Lines Matching defs:WorkList

403 // Run the worklist algorithm to generate the DFA.
444 // Run a worklist algorithm to generate the DFA.
451 SmallVector<State*, 32> WorkList;
454 WorkList.push_back(Initial);
457 // Worklist algorithm to create a DFA for processor resource tracking.
459 // Begin with initial node in worklist. Initial node does not have
463 // While worklist != empty
464 // S = first element of worklist
470 // Add S' to worklist
473 while (!WorkList.empty()) {
474 State *current = WorkList.pop_back_val();
500 WorkList.push_back(NewState);