Lines Matching defs:WorkList
465 SmallVector<const Node *, 8> WorkList({this});
466 while (!WorkList.empty()) {
467 const Node *CurN = WorkList.pop_back_val();
476 WorkList.push_back(E->Dst);
947 /// \ref WorkList.
966 SmallVector<WorkListEntry> WorkList;
1005 // WorkList entry for that group.
1029 WorkList.emplace_back(std::move(Cluster));
1033 for (WorkListEntry &Entry : WorkList) {
1046 stable_sort(WorkList, [](const WorkListEntry &A, const WorkListEntry &B) {
1061 for (const auto &[Idx, Entry] : enumerate(WorkList)) {
1074 while (Idx < WorkList.size()) {
1077 const WorkListEntry &Entry = WorkList[Idx];
1157 // Step 3: If we assigned all WorkList items, submit the proposal.
1159 assert(Idx == WorkList.size());