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

/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc412 gpr_index_(0), fpr_index_(0), fpr_double_index_(0), stack_index_(0),
444 return stack_args_ + (stack_index_ * kBytesStackArgLocation);
450 return stack_args_ + (stack_index_ * kBytesStackArgLocation);
474 + stack_index_ * kBytesStackArgLocation);
493 // (b) whatever the argument type it is, the 'stack_index_' should
500 stack_index_ = 0;
505 stack_index_++;
521 stack_index_++;
529 stack_index_++;
575 stack_index_
640 uint32_t stack_index_; // Index into arguments on the stack. member in class:art::QuickArgumentVisitor
[all...]
/art/compiler/optimizing/
H A Dcode_generator.h163 uint32_t stack_index_ = 0u; member in class:art::InvokeDexCallingConventionVisitor
H A Dcode_generator_x86.cc1170 stack_index_++;
1174 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
1181 stack_index_ += 2;
1187 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
1193 stack_index_++;
1197 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
1203 stack_index_ += 2;
1207 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
H A Dcode_generator_x86_64.cc2306 stack_index_++;
2310 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
2316 stack_index_ += 2;
2322 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
2328 stack_index_++;
2332 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
2338 stack_index_ += 2;
2342 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
H A Dcode_generator_arm_vixl.cc2608 uint32_t stack_index = stack_index_++;
2618 uint32_t stack_index = stack_index_;
2620 stack_index_ += 2;
2640 uint32_t stack_index = stack_index_++;
2653 uint32_t stack_index = stack_index_;
2654 stack_index_ += 2;
H A Dcode_generator_arm64.cc1361 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
1367 stack_index_ += DataType::Is64BitType(type) ? 2 : 1;
H A Dcode_generator_mips.cc102 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
122 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
138 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
153 stack_index_ += DataType::Is64BitType(type) ? 2 : 1;
H A Dcode_generator_mips64.cc99 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
105 stack_index_ += DataType::Is64BitType(type) ? 2 : 1;

Completed in 2161 milliseconds