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

/art/compiler/jni/quick/
H A Dcalling_convention.cc98 return itr_args_ < NumArgs();
104 IsParamALongOrDouble(itr_args_)) {
108 if (IsParamAFloatOrDouble(itr_args_)) {
114 itr_args_++;
120 return IsStatic() || (itr_args_ != 0);
128 return ParamSize(itr_args_);
132 return IsParamAReference(itr_args_);
136 return IsParamAFloatOrDouble(itr_args_);
140 return IsParamADouble(itr_args_);
144 return IsParamALong(itr_args_);
[all...]
H A Dcalling_convention.h65 itr_args_ = 0;
76 : itr_slots_(0), itr_refs_(0), itr_args_(0), itr_longs_and_doubles_(0),
194 unsigned int itr_args_; member in class:art::CallingConvention
/art/compiler/jni/quick/mips64/
H A Dcalling_convention_mips64.cc166 return itr_args_ < 8;
176 return Mips64ManagedRegister::FromFpuRegister(kFpuArgumentRegisters[itr_args_]);
178 return Mips64ManagedRegister::FromGpuRegister(kGpuArgumentRegisters[itr_args_]);
184 size_t offset = displacement_.Int32Value() - OutArgSize() + ((itr_args_ - 8) * kFramePointerSize);
/art/compiler/jni/quick/x86_64/
H A Dcalling_convention_x86_64.cc83 switch (itr_args_ - itr_float_and_doubles_) {
112 int32_t size = IsParamALongOrDouble(itr_args_)? 8 : 4;
174 switch (itr_args_ - itr_float_and_doubles_) {
191 size_t offset = itr_args_
193 - std::min(6U, itr_args_ - itr_float_and_doubles_); // Integer arguments passed through GPR
/art/compiler/jni/quick/arm/
H A Dcalling_convention_arm.cc276 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni();
277 if ((itr_args_ >= 2) &&
300 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni();
301 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) {
/art/compiler/jni/quick/arm64/
H A Dcalling_convention_arm64.cc225 return ((itr_args_ - itr_float_and_doubles_) < 8);
243 int gp_reg = itr_args_ - itr_float_and_doubles_;
255 size_t args_on_stack = itr_args_
257 - std::min(8u, (itr_args_ - itr_float_and_doubles_));
/art/compiler/jni/quick/mips/
H A Dcalling_convention_mips.cc203 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni();
204 if ((itr_args_ >= 2) &&
227 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni();
228 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) {
/art/compiler/jni/quick/x86/
H A Dcalling_convention_x86.cc134 int32_t size = IsParamADouble(itr_args_) ? 8 : 4;

Completed in 6744 milliseconds