Home
last modified time | relevance | path

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

/aosp12/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc333 return stack_args_ + (stack_index_ * kBytesStackArgLocation); in GetParamAddress()
357 + stack_index_ * kBytesStackArgLocation); in ReadSplitLongParam()
383 stack_index_ = 0; in VisitArguments()
388 stack_index_++; in VisitArguments()
404 stack_index_++; in VisitArguments()
412 stack_index_++; in VisitArguments()
453 stack_index_+= 2; in VisitArguments()
456 stack_index_++; in VisitArguments()
471 stack_index_+= 2; in VisitArguments()
474 stack_index_++; in VisitArguments()
[all …]
/aosp12/art/compiler/optimizing/
H A Dcode_generator.h164 uint32_t stack_index_ = 0u; variable
H A Dcode_generator_x86_64.cc2580 stack_index_++; in GetNextLocation()
2584 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
2590 stack_index_ += 2; in GetNextLocation()
2596 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
2602 stack_index_++; in GetNextLocation()
2606 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
2612 stack_index_ += 2; in GetNextLocation()
2616 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
H A Dcode_generator_x86.cc1275 stack_index_++; in GetNextLocation()
1279 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
1286 stack_index_ += 2; in GetNextLocation()
1292 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
1298 stack_index_++; in GetNextLocation()
1302 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
1308 stack_index_ += 2; in GetNextLocation()
1312 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
H A Dcode_generator_arm_vixl.cc2367 uint32_t stack_index = stack_index_++; in GetNextLocation()
2377 uint32_t stack_index = stack_index_; in GetNextLocation()
2379 stack_index_ += 2; in GetNextLocation()
2399 uint32_t stack_index = stack_index_++; in GetNextLocation()
2412 uint32_t stack_index = stack_index_; in GetNextLocation()
2413 stack_index_ += 2; in GetNextLocation()
H A Dcode_generator_arm64.cc836 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_); in GetNextLocation()
842 stack_index_ += DataType::Is64BitType(type) ? 2 : 1; in GetNextLocation()