Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:WorkList

312   SmallVector<std::pair<SlotIndex, VNInfo*>, 16> WorkList;
314 // Blocks that have already been added to WorkList as live-out.
339 WorkList.push_back(std::make_pair(Idx, VNI));
355 // Extend intervals to reach all uses in WorkList.
356 while (!WorkList.empty()) {
357 SlotIndex Idx = WorkList.back().first;
358 VNInfo *VNI = WorkList.back().second;
359 WorkList.pop_back();
378 WorkList.push_back(std::make_pair(Stop, PVNI));
395 WorkList.push_back(std::make_pair(Stop, VNI));