Home
last modified time | relevance | path

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

/art/compiler/jni/quick/
Dcalling_convention.h115 DCHECK_LT(param, NumArgs()); in IsParamALongOrDouble()
125 DCHECK_LT(param, NumArgs()); in IsParamAFloatOrDouble()
135 DCHECK_LT(param, NumArgs()); in IsParamADouble()
144 DCHECK_LT(param, NumArgs()); in IsParamALong()
153 DCHECK_LT(param, NumArgs()); in IsParamAReference()
161 size_t NumArgs() const { in NumArgs() function
180 DCHECK_LT(param, NumArgs()); in ParamSize()
Dcalling_convention.cc98 return itr_args_ < NumArgs(); in HasNext()
242 return arg_pos < NumArgs(); in HasNext()
/art/compiler/jni/quick/mips/
Dcalling_convention_mips.cc141 if ((entry_spills_.size() == 0) && (NumArgs() > 0)) { in EntrySpills()
252 for (; cur_arg < NumArgs(); cur_arg++) { in MipsJniCallingConvention()
315 if (NumArgs() > 0) { in MipsJniCallingConvention()
450 size_t param_args = NumArgs() + NumLongOrDoubleArgs(); // Twice count 8-byte args. in NumberOfOutgoingStackArgs()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc202 size_t num_spills = NumArgs() + NumLongOrDoubleArgs(); in EntrySpills()
214 if ((entry_spills_.size() == 0) && (NumArgs() > 0)) { in EntrySpills()
335 for (; cur_arg < NumArgs(); cur_arg++) { in ArmJniCallingConvention()
480 size_t param_args = NumArgs() + NumLongOrDoubleArgs(); // twice count 8-byte args in NumberOfOutgoingStackArgs()
/art/compiler/jni/quick/mips64/
Dcalling_convention_mips64.cc126 if ((entry_spills_.size() == 0) && (NumArgs() > 0)) { in EntrySpills()
239 size_t all_args = NumArgs() + NumberOfExtraArgumentsForJni(); in NumberOfOutgoingStackArgs()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc278 size_t param_args = NumArgs() + NumLongOrDoubleArgs(); in NumberOfOutgoingStackArgs()
287 … - std::min(kMaxIntLikeRegisterArguments, static_cast<size_t>(NumArgs() - NumFloatOrDoubleArgs())); in NumberOfOutgoingStackArgs()
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc175 if ((entry_spills_.size() == 0) && (NumArgs() > 0)) { in EntrySpills()
330 size_t all_args = NumArgs() + NumberOfExtraArgumentsForJni(); in NumberOfOutgoingStackArgs()
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.cc269 size_t param_args = NumArgs() + NumLongOrDoubleArgs(); in NumberOfOutgoingStackArgs()