Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dregister-allocator.cc1603 LiveRange* cur_inactive = inactive_live_ranges_.at(i); in AllocateRegisters() local
1604 if (cur_inactive->End().Value() <= position.Value()) { in AllocateRegisters()
1605 InactiveToHandled(cur_inactive); in AllocateRegisters()
1607 } else if (cur_inactive->Covers(position)) { in AllocateRegisters()
1608 InactiveToActive(cur_inactive); in AllocateRegisters()
1810 LiveRange* cur_inactive = inactive_live_ranges_.at(i); in TryAllocateFreeReg() local
1811 DCHECK(cur_inactive->End().Value() > current->Start().Value()); in TryAllocateFreeReg()
1813 cur_inactive->FirstIntersection(current); in TryAllocateFreeReg()
1815 int cur_reg = cur_inactive->assigned_register(); in TryAllocateFreeReg()
/external/v8/src/
Dlithium-allocator.cc1564 LiveRange* cur_inactive = inactive_live_ranges_.at(i); in AllocateRegisters() local
1565 if (cur_inactive->End().Value() <= position.Value()) { in AllocateRegisters()
1566 InactiveToHandled(cur_inactive); in AllocateRegisters()
1568 } else if (cur_inactive->Covers(position)) { in AllocateRegisters()
1569 InactiveToActive(cur_inactive); in AllocateRegisters()
1779 LiveRange* cur_inactive = inactive_live_ranges_.at(i); in TryAllocateFreeReg() local
1780 DCHECK(cur_inactive->End().Value() > current->Start().Value()); in TryAllocateFreeReg()
1782 cur_inactive->FirstIntersection(current); in TryAllocateFreeReg()
1784 int cur_reg = cur_inactive->assigned_register(); in TryAllocateFreeReg()