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

/external/v8/src/crankshaft/
H A Dlithium-allocator.cc1761 LifetimePosition free_until_pos[DoubleRegister::kMaxNumRegisters]; local
1764 free_until_pos[i] = LifetimePosition::MaxPosition();
1769 free_until_pos[cur_active->assigned_register()] =
1780 free_until_pos[cur_reg] = Min(free_until_pos[cur_reg], next_intersection);
1789 free_until_pos[register_index].Value(),
1794 if (free_until_pos[register_index].Value() >= current->End().Value()) {
1807 if (free_until_pos[code].Value() > free_until_pos[reg].Value()) {
1812 LifetimePosition pos = free_until_pos[re
[all...]
/external/v8/src/compiler/
H A Dregister-allocator.cc3081 Vector<LifetimePosition> free_until_pos(
3083 FindFreeRegistersForRange(current, free_until_pos);
3084 if (!TryAllocatePreferredReg(current, free_until_pos)) {
3088 if (!TryAllocateFreeReg(current, free_until_pos)) {
3098 LiveRange* current, const Vector<LifetimePosition>& free_until_pos) {
3103 RegisterName(hint_register), free_until_pos[hint_register].value(),
3108 if (free_until_pos[hint_register] >= current->End()) {
3120 LiveRange* current, const Vector<LifetimePosition>& free_until_pos) {
3130 DCHECK_GE(free_until_pos.length(), num_codes);
3136 if (free_until_pos[cod
3097 TryAllocatePreferredReg( LiveRange* current, const Vector<LifetimePosition>& free_until_pos) argument
3119 TryAllocateFreeReg( LiveRange* current, const Vector<LifetimePosition>& free_until_pos) argument
[all...]

Completed in 171 milliseconds