Home
last modified time | relevance | path

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

/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc330 stack_index_(0), in QuickArgumentVisitor()
363 return stack_args_ + (stack_index_ * kBytesStackArgLocation); in GetParamAddress()
369 return stack_args_ + (stack_index_ * kBytesStackArgLocation); in GetParamAddress()
393 + stack_index_ * kBytesStackArgLocation); in ReadSplitLongParam()
419 stack_index_ = 0; in VisitArguments()
424 stack_index_++; in VisitArguments()
440 stack_index_++; in VisitArguments()
448 stack_index_++; in VisitArguments()
489 stack_index_+= 2; in VisitArguments()
492 stack_index_++; in VisitArguments()
[all …]
/art/compiler/optimizing/
Dcode_generator.h164 uint32_t stack_index_ = 0u; variable
Dcode_generator_x86_64.cc2981 stack_index_++; in GetNextLocation()
2985 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
2991 stack_index_ += 2; in GetNextLocation()
2997 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
3003 stack_index_++; in GetNextLocation()
3007 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
3013 stack_index_ += 2; in GetNextLocation()
3017 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
Dcode_generator_x86.cc1530 stack_index_++; in GetNextLocation()
1534 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
1541 stack_index_ += 2; in GetNextLocation()
1547 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
1553 stack_index_++; in GetNextLocation()
1557 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
1563 stack_index_ += 2; in GetNextLocation()
1567 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
Dcode_generator_arm_vixl.cc2568 uint32_t stack_index = stack_index_++; in GetNextLocation()
2578 uint32_t stack_index = stack_index_; in GetNextLocation()
2580 stack_index_ += 2; in GetNextLocation()
2600 uint32_t stack_index = stack_index_++; in GetNextLocation()
2613 uint32_t stack_index = stack_index_; in GetNextLocation()
2614 stack_index_ += 2; in GetNextLocation()
Dcode_generator_arm64.cc907 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_); in GetNextLocation()
913 stack_index_ += DataType::Is64BitType(type) ? 2 : 1; in GetNextLocation()
Dcode_generator_riscv64.cc197 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_); in GetNextLocation()
203 stack_index_ += DataType::Is64BitType(type) ? 2 : 1; in GetNextLocation()