Home
last modified time | relevance | path

Searched refs:kMaxIntLikeRegisterArguments (Results 1 – 4 of 4) sorted by relevance

/art/runtime/arch/arm64/
Djni_frame_arm64.h42 constexpr size_t kMaxIntLikeRegisterArguments = 8u; variable
51 num_non_fp_args - std::min(kMaxIntLikeRegisterArguments, num_non_fp_args); in GetNativeOutArgsSize()
/art/runtime/arch/x86_64/
Djni_frame_x86_64.h47 constexpr size_t kMaxIntLikeRegisterArguments = 6u; variable
56 num_non_fp_args - std::min(kMaxIntLikeRegisterArguments, num_non_fp_args); in GetNativeOutArgsSize()
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc32 static_assert(kMaxIntLikeRegisterArguments == arraysize(kXArgumentRegisters));
37 static_assert(kMaxIntLikeRegisterArguments == arraysize(kWArgumentRegisters));
181 return /* method */ 1u + non_fp_arg_number < kMaxIntLikeRegisterArguments; in IsCurrentParamInRegister()
315 return ((itr_args_ - itr_float_and_doubles_) < kMaxIntLikeRegisterArguments); in IsCurrentParamInRegister()
336 CHECK_LT(static_cast<unsigned int>(gp_reg), kMaxIntLikeRegisterArguments); in CurrentParamRegister()
350 - std::min(kMaxIntLikeRegisterArguments, in CurrentParamStackOffset()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc33 static_assert(kMaxIntLikeRegisterArguments == arraysize(kCoreArgumentRegisters));
134 return /* method */ 1u + non_fp_arg_number < kMaxIntLikeRegisterArguments; in IsCurrentParamInRegister()
274 static_assert(5u == kMaxIntLikeRegisterArguments - 1, "Missing case statement(s)"); in CurrentParamRegister()
290 - std::min(kMaxIntLikeRegisterArguments, in CurrentParamStackOffset()