Home
last modified time | relevance | path

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

/external/v8/src/crankshaft/
Dlithium-allocator.cc1569 LiveRange* cur_inactive = inactive_live_ranges_.at(i); in AllocateRegisters() local
1570 if (cur_inactive->End().Value() <= position.Value()) { in AllocateRegisters()
1571 InactiveToHandled(cur_inactive); in AllocateRegisters()
1573 } else if (cur_inactive->Covers(position)) { in AllocateRegisters()
1574 InactiveToActive(cur_inactive); in AllocateRegisters()
1780 LiveRange* cur_inactive = inactive_live_ranges_.at(i); in TryAllocateFreeReg() local
1781 DCHECK(cur_inactive->End().Value() > current->Start().Value()); in TryAllocateFreeReg()
1783 cur_inactive->FirstIntersection(current); in TryAllocateFreeReg()
1785 int cur_reg = cur_inactive->assigned_register(); in TryAllocateFreeReg()
/external/v8/src/compiler/
Dregister-allocator.cc2473 LiveRange* cur_inactive = inactive_live_ranges()[i]; in AllocateRegisters() local
2474 if (cur_inactive->End() <= position) { in AllocateRegisters()
2475 InactiveToHandled(cur_inactive); in AllocateRegisters()
2477 } else if (cur_inactive->Covers(position)) { in AllocateRegisters()
2478 InactiveToActive(cur_inactive); in AllocateRegisters()
2624 for (LiveRange* cur_inactive : inactive_live_ranges()) { in TryAllocateFreeReg()
2625 DCHECK(cur_inactive->End() > current->Start()); in TryAllocateFreeReg()
2627 cur_inactive->FirstIntersection(current); in TryAllocateFreeReg()
2629 int cur_reg = cur_inactive->assigned_register(); in TryAllocateFreeReg()