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

/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc359 gpr_index_(0), fpr_index_(0), fpr_double_index_(0), stack_index_(0),
391 return stack_args_ + (stack_index_ * kBytesStackArgLocation);
397 return stack_args_ + (stack_index_ * kBytesStackArgLocation);
421 + stack_index_ * kBytesStackArgLocation);
440 // (b) whatever the argument type it is, the 'stack_index_' should
447 stack_index_ = 0;
452 stack_index_++;
468 stack_index_++;
476 stack_index_++;
516 stack_index_
581 uint32_t stack_index_; // Index into arguments on the stack. member in class:art::QuickArgumentVisitor
[all...]
/art/compiler/optimizing/
H A Dcode_generator.h147 uint32_t stack_index_ = 0u; member in class:art::InvokeDexCallingConventionVisitor
H A Dcode_generator_x86.cc935 stack_index_++;
939 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
946 stack_index_ += 2;
952 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
958 stack_index_++;
962 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
968 stack_index_ += 2;
972 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
H A Dcode_generator_x86_64.cc2093 stack_index_++;
2097 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
2103 stack_index_ += 2;
2109 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
2115 stack_index_++;
2119 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
2125 stack_index_ += 2;
2129 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
H A Dcode_generator_arm.cc966 uint32_t stack_index = stack_index_++;
976 uint32_t stack_index = stack_index_;
978 stack_index_ += 2;
998 uint32_t stack_index = stack_index_++;
1011 uint32_t stack_index = stack_index_;
1012 stack_index_ += 2;
H A Dcode_generator_mips.cc87 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
106 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
122 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
135 stack_index_ += Primitive::Is64BitType(type) ? 2 : 1;
H A Dcode_generator_mips64.cc85 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
91 stack_index_ += Primitive::Is64BitType(type) ? 2 : 1;
H A Dcode_generator_arm64.cc876 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
882 stack_index_ += Primitive::Is64BitType(type) ? 2 : 1;

Completed in 184 milliseconds