Home
last modified time | relevance | path

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

/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc295 gpr_index_(0), fpr_index_(0), fpr_double_index_(0), stack_index_(0), in QuickArgumentVisitor()
327 return stack_args_ + (stack_index_ * kBytesStackArgLocation); in GetParamAddress()
333 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()
[all …]
/art/compiler/optimizing/
Dcode_generator.h163 uint32_t stack_index_ = 0u; variable
Dcode_generator_x86_64.cc2507 stack_index_++; in GetNextLocation()
2511 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
2517 stack_index_ += 2; in GetNextLocation()
2523 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
2529 stack_index_++; in GetNextLocation()
2533 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
2539 stack_index_ += 2; in GetNextLocation()
2543 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
Dcode_generator_x86.cc1252 stack_index_++; in GetNextLocation()
1256 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
1263 stack_index_ += 2; in GetNextLocation()
1269 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
1275 stack_index_++; in GetNextLocation()
1279 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); in GetNextLocation()
1285 stack_index_ += 2; in GetNextLocation()
1289 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); in GetNextLocation()
Dcode_generator_arm_vixl.cc2338 uint32_t stack_index = stack_index_++; in GetNextLocation()
2348 uint32_t stack_index = stack_index_; in GetNextLocation()
2350 stack_index_ += 2; in GetNextLocation()
2370 uint32_t stack_index = stack_index_++; in GetNextLocation()
2383 uint32_t stack_index = stack_index_; in GetNextLocation()
2384 stack_index_ += 2; in GetNextLocation()
Dcode_generator_arm64.cc860 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_); in GetNextLocation()
866 stack_index_ += DataType::Is64BitType(type) ? 2 : 1; in GetNextLocation()