Searched defs:intervals (Results 1 - 1 of 1) sorted by relevance

/art/compiler/optimizing/
H A Dregister_allocator.cc162 // of this new interval might be after intervals already in the list.
205 // To simplify unit testing, we eagerly create the array of intervals, and
207 GrowableArray<LiveInterval*> intervals(allocator_, 0);
211 intervals.Add(instruction->GetLiveInterval());
218 intervals.Add(fixed);
222 return ValidateIntervals(intervals, spill_slots_.Size(), *codegen_, allocator_,
226 bool RegisterAllocator::ValidateIntervals(const GrowableArray<LiveInterval*>& intervals, argument
244 for (size_t i = 0, e = intervals.Size(); i < e; ++i) {
245 for (AllRangesIterator it(intervals.Get(i)); !it.Done(); it.Advance()) {
317 // (2) Remove currently active intervals tha
[all...]

Completed in 583 milliseconds