Home
last modified time | relevance | path

Searched refs:GetStackOffsetOf (Results 1 – 5 of 5) sorted by relevance

/art/compiler/optimizing/
Dcode_generator.h896 size_t GetStackOffsetOf(size_t index) const { in GetStackOffsetOf() function
Dcode_generator_x86_64.cc2511 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
2523 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
2533 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
2543 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
Dcode_generator_x86.cc1256 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
1269 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
1279 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
1289 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
Dcode_generator_arm_vixl.cc2342 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index)); in GetNextLocation()
2365 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index)); in GetNextLocation()
2377 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index)); in GetNextLocation()
2394 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index)); in GetNextLocation()
Dcode_generator_arm64.cc860 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_); in GetNextLocation()