Home
last modified time | relevance | path

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

/art/compiler/jni/quick/
Dcalling_convention.cc82 return itr_args_ < NumArgs(); in HasNext()
88 IsParamALongOrDouble(itr_args_)) { in Next()
92 if (IsParamAFloatOrDouble(itr_args_)) { in Next()
98 itr_args_++; in Next()
104 return IsStatic() || (itr_args_ != 0); in IsCurrentArgExplicit()
112 return ParamSize(itr_args_); in CurrentParamSize()
116 return IsParamAReference(itr_args_); in IsCurrentParamAReference()
120 return IsParamAFloatOrDouble(itr_args_); in IsCurrentParamAFloatOrDouble()
124 return IsParamADouble(itr_args_); in IsCurrentParamADouble()
128 return IsParamALong(itr_args_); in IsCurrentParamALong()
[all …]
Dcalling_convention.h60 itr_args_ = 0; in ResetIterator()
81 : itr_slots_(0), itr_refs_(0), itr_args_(0), itr_longs_and_doubles_(0), in CallingConvention()
205 unsigned int itr_args_; variable
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc180 size_t non_fp_arg_number = itr_args_ - itr_float_and_doubles_; in IsCurrentParamInRegister()
198 size_t non_fp_arg_number = itr_args_ - itr_float_and_doubles_; in CurrentParamRegister()
315 return ((itr_args_ - itr_float_and_doubles_) < kMaxIntLikeRegisterArguments); in IsCurrentParamInRegister()
335 int gp_reg = itr_args_ - itr_float_and_doubles_; in CurrentParamRegister()
347 size_t args_on_stack = itr_args_ in CurrentParamStackOffset()
351 static_cast<size_t>(itr_args_ - itr_float_and_doubles_)); in CurrentParamStackOffset()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc133 size_t non_fp_arg_number = itr_args_ - itr_float_and_doubles_; in IsCurrentParamInRegister()
149 size_t non_fp_arg_number = itr_args_ - itr_float_and_doubles_; in CurrentParamRegister()
267 switch (itr_args_ - itr_float_and_doubles_) { in CurrentParamRegister()
286 size_t args_on_stack = itr_args_ in CurrentParamStackOffset()
291 static_cast<size_t>(itr_args_ - itr_float_and_doubles_)); in CurrentParamStackOffset()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc502 LOG(FATAL) << "Invalid iterator register position for a long/double " << itr_args_; in CurrentParamRegister()