Home
last modified time | relevance | path

Searched refs:kVRegSize (Results 1 – 4 of 4) sorted by relevance

/art/compiler/optimizing/
Dcode_generator.cc241 first_register_slot_in_slow_path_ = (number_of_out_slots + number_of_spill_slots) * kVRegSize; in InitializeCodeGeneration()
252 number_of_spill_slots * kVRegSize in InitializeCodeGeneration()
253 + number_of_out_slots * kVRegSize in InitializeCodeGeneration()
268 - kVRegSize // filler in GetTemporaryLocation()
269 - (number_of_locals * kVRegSize) in GetTemporaryLocation()
270 - ((temp_size + temp->GetIndex()) * kVRegSize); in GetTemporaryLocation()
281 + (reg_number - number_of_locals) * kVRegSize; in GetStackSlot()
285 - kVRegSize // filler. in GetStackSlot()
286 - (number_of_locals * kVRegSize) in GetStackSlot()
287 + (reg_number * kVRegSize); in GetStackSlot()
[all …]
Dcode_generator.h149 + parameter->GetIndex() * kVRegSize; in GetStackSlotOfParameter()
498 return pointer_size_ + index * kVRegSize; in GetStackOffsetOf()
Dregister_allocator.cc75 reserved_out_slots_ = InstructionSetPointerSize(codegen->GetInstructionSet()) / kVRegSize + in RegisterAllocator()
491 + current->GetParent()->GetSpillSlot() / kVRegSize in ValidateIntervals()
1570 locations->SetStackBit(current->GetParent()->GetSpillSlot() / kVRegSize); in ConnectSiblings()
1718 current->SetSpillSlot(slot * kVRegSize); in Resolve()
/art/runtime/
Dstack_map.h32 static constexpr size_t kVRegSize = 4; variable