Home
last modified time | relevance | path

Searched refs:stack_index_ (Results 1 – 8 of 8) sorted by relevance

/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc375 gpr_index_(0), fpr_index_(0), fpr_double_index_(0), stack_index_(0), in QuickArgumentVisitor()
407 return stack_args_ + (stack_index_ * kBytesStackArgLocation); in GetParamAddress()
413 return stack_args_ + (stack_index_ * kBytesStackArgLocation); in GetParamAddress()
437 + stack_index_ * kBytesStackArgLocation); in ReadSplitLongParam()
463 stack_index_ = 0; in VisitArguments()
468 stack_index_++; in VisitArguments()
484 stack_index_++; in VisitArguments()
492 stack_index_++; in VisitArguments()
538 stack_index_+= 2; in VisitArguments()
541 stack_index_++; in VisitArguments()
[all …]
/art/compiler/optimizing/
Dcode_generator.h163 uint32_t stack_index_ = 0u; variable
Dcode_generator_x86_64.cc2383 stack_index_++; in GetNextLocation()
2387 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
2393 stack_index_ += 2; in GetNextLocation()
2399 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
2405 stack_index_++; in GetNextLocation()
2409 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
2415 stack_index_ += 2; in GetNextLocation()
2419 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
Dcode_generator_x86.cc1186 stack_index_++; in GetNextLocation()
1190 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
1197 stack_index_ += 2; in GetNextLocation()
1203 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
1209 stack_index_++; in GetNextLocation()
1213 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
1219 stack_index_ += 2; in GetNextLocation()
1223 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
Dcode_generator_arm_vixl.cc2209 uint32_t stack_index = stack_index_++; in GetNextLocation()
2219 uint32_t stack_index = stack_index_; in GetNextLocation()
2221 stack_index_ += 2; in GetNextLocation()
2241 uint32_t stack_index = stack_index_++; in GetNextLocation()
2254 uint32_t stack_index = stack_index_; in GetNextLocation()
2255 stack_index_ += 2; in GetNextLocation()
Dcode_generator_mips.cc103 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_); in GetNextLocation()
123 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_); in GetNextLocation()
139 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_); in GetNextLocation()
154 stack_index_ += DataType::Is64BitType(type) ? 2 : 1; in GetNextLocation()
Dcode_generator_arm64.cc858 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_); in GetNextLocation()
864 stack_index_ += DataType::Is64BitType(type) ? 2 : 1; in GetNextLocation()
Dcode_generator_mips64.cc100 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_); in GetNextLocation()
106 stack_index_ += DataType::Is64BitType(type) ? 2 : 1; in GetNextLocation()