Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Inactive

301     IntervalQueue Inactive(lowestStartPoint);
303 // Start by building the inactive set.
308 Inactive.push(std::make_tuple(&LI, 0, NId));
311 while (!Inactive.empty()) {
314 IntervalInfo Cur = Inactive.top();
321 // inactive list.
323 Inactive.push(nextSegment(*RetireItr));
330 // Cur segment, so re-grab the front of the inactive list.
331 Cur = Inactive.top();
332 Inactive.pop();