Home
last modified time | relevance | path

Searched refs:unhandled_ (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dregister_allocator.cc33 unhandled_(allocator, 0), in RegisterAllocator()
119 DCHECK(unhandled_.IsEmpty() || current->StartsBefore(unhandled_.Peek())); in AllocateRegistersInternal()
168 DCHECK(unhandled_.IsEmpty() || current->StartsBefore(unhandled_.Peek())); in AllocateRegistersInternal()
169 unhandled_.Add(current); in AllocateRegistersInternal()
311 while (!unhandled_.IsEmpty()) { in LinearScan()
313 LiveInterval* current = unhandled_.Pop(); in LinearScan()
539 for (size_t i = unhandled_.Size(); i > 0; --i) { in AddToUnhandled()
540 LiveInterval* current = unhandled_.Get(i - 1); in AddToUnhandled()
546 unhandled_.InsertAt(insert_at, interval); in AddToUnhandled()
Dregister_allocator.h127 GrowableArray<LiveInterval*> unhandled_; variable