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

/art/compiler/optimizing/
H A Dregister_allocator_test.cc413 // Add an artifical range to cover the temps that will be put in the unhandled list.
414 LiveInterval* unhandled = graph->GetEntryBlock()->GetFirstInstruction()->GetLiveInterval(); local
415 unhandled->AddLoopRange(0, 60);
425 unhandled = register_allocator.Split(unhandled, 5);
447 ASSERT_TRUE(register_allocator.TryAllocateFreeReg(unhandled));
H A Dregister_allocator.cc321 ArenaVector<LiveInterval*>& unhandled = core_register
325 DCHECK(unhandled.empty() || current->StartsBeforeOrAt(unhandled.back()));
398 // If needed, add interval to the list of unhandled intervals.
404 // Don't add directly to `unhandled`, it needs to be sorted and the start
406 AddSorted(&unhandled, split);
411 // Don't add directly to `unhandled`, temp or safepoint intervals
414 AddSorted(&unhandled, current);
591 stream << "unhandled: " << std::endl;
592 auto unhandled local
[all...]

Completed in 69 milliseconds