Home
last modified time | relevance | path

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

/art/compiler/jni/quick/
Dcalling_convention.h117 DCHECK_LT(param, NumArgs()); in IsParamALongOrDouble()
127 DCHECK_LT(param, NumArgs()); in IsParamAFloatOrDouble()
137 DCHECK_LT(param, NumArgs()); in IsParamADouble()
146 DCHECK_LT(param, NumArgs()); in IsParamALong()
155 DCHECK_LT(param, NumArgs()); in IsParamAReference()
163 size_t NumArgs() const { in NumArgs() function
182 DCHECK_LT(param, NumArgs()); in ParamSize()
Dcalling_convention.cc102 return itr_args_ < NumArgs(); in HasNext()
234 return arg_pos < NumArgs(); in HasNext()
/art/compiler/jni/quick/mips/
Dcalling_convention_mips.cc143 if ((entry_spills_.size() == 0) && (NumArgs() > 0)) { in EntrySpills()
254 for (; cur_arg < NumArgs(); cur_arg++) { in MipsJniCallingConvention()
317 if (NumArgs() > 0) { in MipsJniCallingConvention()
452 size_t param_args = NumArgs() + NumLongOrDoubleArgs(); // Twice count 8-byte args. in NumberOfOutgoingStackArgs()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc192 if ((entry_spills_.size() == 0) && (NumArgs() > 0)) { in EntrySpills()
312 for (; cur_arg < NumArgs(); cur_arg++) { in ArmJniCallingConvention()
457 size_t param_args = NumArgs() + NumLongOrDoubleArgs(); // twice count 8-byte args in NumberOfOutgoingStackArgs()
/art/compiler/jni/quick/mips64/
Dcalling_convention_mips64.cc128 if ((entry_spills_.size() == 0) && (NumArgs() > 0)) { in EntrySpills()
241 size_t all_args = NumArgs() + NumberOfExtraArgumentsForJni(); in NumberOfOutgoingStackArgs()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc280 size_t param_args = NumArgs() + NumLongOrDoubleArgs(); in NumberOfOutgoingStackArgs()
289 … - std::min(kMaxIntLikeRegisterArguments, static_cast<size_t>(NumArgs() - NumFloatOrDoubleArgs())); in NumberOfOutgoingStackArgs()
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc200 if ((entry_spills_.size() == 0) && (NumArgs() > 0)) { in EntrySpills()
355 size_t all_args = NumArgs() + NumberOfExtraArgumentsForJni(); in NumberOfOutgoingStackArgs()
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.cc271 size_t param_args = NumArgs() + NumLongOrDoubleArgs(); in NumberOfOutgoingStackArgs()