Home
last modified time | relevance | path

Searched refs:IsParamALongOrDouble (Results 1 – 7 of 7) sorted by relevance

/art/runtime/entrypoints/portable/
Dportable_trampoline_entrypoints.cc78 bool IsParamALongOrDouble() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in IsParamALongOrDouble() function in art::PortableArgumentVisitor
79 return caller_mh_.IsParamALongOrDouble(param_index_); in IsParamALongOrDouble()
93 if (IsParamALongOrDouble() && cur_arg_index_ == 2) { in VisitArguments()
98 cur_arg_index_ += (IsParamALongOrDouble() ? 2 : 1); in VisitArguments()
105 if (IsParamALongOrDouble() && cur_arg_index_ % 2 != 0) { in VisitArguments()
110 cur_arg_index_ += (IsParamALongOrDouble() ? 2 : 1); in VisitArguments()
123 args_in_regs = args_in_regs + (mh.IsParamALongOrDouble(i) ? 2 : 1); in ComputeArgsInRegs()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc114 if (IsParamALongOrDouble(cur_arg)) { in ArmJniCallingConvention()
165 IsParamALongOrDouble(arg_pos)) { in Next()
187 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) { in CurrentParamRegister()
/art/compiler/jni/quick/mips/
Dcalling_convention_mips.cc114 if (IsParamALongOrDouble(cur_arg)) { in MipsJniCallingConvention()
169 IsParamALongOrDouble(arg_pos)) { in Next()
191 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) { in CurrentParamRegister()
/art/compiler/jni/quick/
Dcalling_convention.cc57 IsParamALongOrDouble(itr_args_)) { in Next()
132 if (IsParamALongOrDouble(arg_pos)) { in Next()
Dcalling_convention.h90 bool IsParamALongOrDouble(unsigned int param) const { in IsParamALongOrDouble() function
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc162 bool IsParamALongOrDouble() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in IsParamALongOrDouble() function in art::QuickArgumentVisitor
176 is_split_long_or_double_ = (cur_arg_index_ == 2) && IsParamALongOrDouble(); in VisitArguments()
178 cur_arg_index_ += (IsParamALongOrDouble() ? 2 : 1); in VisitArguments()
186 cur_arg_index_ += (IsParamALongOrDouble() ? 2 : 1); in VisitArguments()
/art/runtime/
Dobject_utils.h560 bool IsParamALongOrDouble(size_t param) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in IsParamALongOrDouble() function