Home
last modified time | relevance | path

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

/art/compiler/jni/quick/
Dcalling_convention.cc54 return itr_args_ < NumArgs(); in HasNext()
60 IsParamALongOrDouble(itr_args_)) { in Next()
64 if (IsParamAFloatOrDouble(itr_args_)) { in Next()
70 itr_args_++; in Next()
76 return IsStatic() || (itr_args_ != 0); in IsCurrentArgExplicit()
84 return ParamSize(itr_args_); in CurrentParamSize()
88 return IsParamAReference(itr_args_); in IsCurrentParamAReference()
92 return IsParamAFloatOrDouble(itr_args_); in IsCurrentParamAFloatOrDouble()
96 return IsParamADouble(itr_args_); in IsCurrentParamADouble()
100 return IsParamALong(itr_args_); in IsCurrentParamALong()
[all …]
Dcalling_convention.h63 itr_args_ = 0; in ResetIterator()
74 : itr_slots_(0), itr_refs_(0), itr_args_(0), itr_longs_and_doubles_(0), in CallingConvention()
192 unsigned int itr_args_; variable
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc84 switch (itr_args_ - itr_float_and_doubles_) { in CurrentParamRegister()
113 int32_t size = IsParamALongOrDouble(itr_args_)? 8 : 4; in EntrySpills()
175 switch (itr_args_ - itr_float_and_doubles_) { in CurrentParamRegister()
192 size_t offset = itr_args_ in CurrentParamStackOffset()
194 - std::min(6U, itr_args_ - itr_float_and_doubles_); // Integer arguments passed through GPR in CurrentParamStackOffset()
/art/compiler/jni/quick/mips/
Dcalling_convention_mips.cc167 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in Next()
168 if ((itr_args_ >= 2) && in Next()
191 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in CurrentParamRegister()
192 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) { in CurrentParamRegister()
/art/compiler/jni/quick/mips64/
Dcalling_convention_mips64.cc165 return itr_args_ < 8; in IsCurrentParamInRegister()
175 return Mips64ManagedRegister::FromFpuRegister(kFpuArgumentRegisters[itr_args_]); in CurrentParamRegister()
177 return Mips64ManagedRegister::FromGpuRegister(kGpuArgumentRegisters[itr_args_]); in CurrentParamRegister()
183 size_t offset = displacement_.Int32Value() - OutArgSize() + ((itr_args_ - 8) * kFramePointerSize); in CurrentParamStackOffset()
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc225 return ((itr_args_ - itr_float_and_doubles_) < 8); in IsCurrentParamInRegister()
243 int gp_reg = itr_args_ - itr_float_and_doubles_; in CurrentParamRegister()
255 size_t args_on_stack = itr_args_ in CurrentParamStackOffset()
257 - std::min(8u, (itr_args_ - itr_float_and_doubles_)); in CurrentParamStackOffset()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc276 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in Next()
277 if ((itr_args_ >= 2) && in Next()
300 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in CurrentParamRegister()
301 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) { in CurrentParamRegister()
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.cc134 int32_t size = IsParamADouble(itr_args_) ? 8 : 4; in EntrySpills()