Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Worklist

360                       std::greater<unsigned int>> Worklist;
374 Worklist.push(RPONumber);
379 // To solve it, we perform join() and transfer() using the two worklist method
382 while (!Worklist.empty() || !Pending.empty()) {
383 // We track what is on the pending worklist to avoid inserting the same
387 while (!Worklist.empty()) {
388 MachineBasicBlock *MBB = OrderToBB[Worklist.top()];
389 Worklist.pop();
410 Worklist.swap(Pending);
412 // worklist