Home
last modified time | relevance | path

Searched refs:OutArgSize (Results 1 – 14 of 14) sorted by relevance

/art/compiler/jni/quick/mips/
Dcalling_convention_mips.cc159 size_t MipsJniCallingConvention::OutArgSize() { in OutArgSize() function in art::mips::MipsJniCallingConvention
203 size_t offset = displacement_.Int32Value() - OutArgSize() + (itr_slots_ * kFramePointerSize); in CurrentParamStackOffset()
204 CHECK_LT(offset, OutArgSize()); in CurrentParamStackOffset()
Dcalling_convention_mips.h60 size_t OutArgSize() OVERRIDE;
/art/compiler/jni/quick/mips64/
Dcalling_convention_mips64.cc160 size_t Mips64JniCallingConvention::OutArgSize() { in OutArgSize() function in art::mips64::Mips64JniCallingConvention
183 size_t offset = displacement_.Int32Value() - OutArgSize() + ((itr_args_ - 8) * kFramePointerSize); in CurrentParamStackOffset()
184 CHECK_LT(offset, OutArgSize()); in CurrentParamStackOffset()
Dcalling_convention_mips64.h59 size_t OutArgSize() OVERRIDE;
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc217 size_t Arm64JniCallingConvention::OutArgSize() { in OutArgSize() function in art::arm64::Arm64JniCallingConvention
258 size_t offset = displacement_.Int32Value() - OutArgSize() + (args_on_stack * kFramePointerSize); in CurrentParamStackOffset()
259 CHECK_LT(offset, OutArgSize()); in CurrentParamStackOffset()
Dcalling_convention_arm64.h59 size_t OutArgSize() OVERRIDE;
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.cc191 size_t X86JniCallingConvention::OutArgSize() { in OutArgSize() function in art::x86::X86JniCallingConvention
209 return FrameOffset(displacement_.Int32Value() - OutArgSize() + (itr_slots_ * kFramePointerSize)); in CurrentParamStackOffset()
Dcalling_convention_x86.h62 size_t OutArgSize() OVERRIDE;
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc267 size_t ArmJniCallingConvention::OutArgSize() { in OutArgSize() function in art::arm::ArmJniCallingConvention
312 …size_t offset = displacement_.Int32Value() - OutArgSize() + ((itr_slots_ - 4) * kFramePointerSize); in CurrentParamStackOffset()
313 CHECK_LT(offset, OutArgSize()); in CurrentParamStackOffset()
Dcalling_convention_arm.h60 size_t OutArgSize() OVERRIDE;
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc160 size_t X86_64JniCallingConvention::OutArgSize() { in OutArgSize() function in art::x86_64::X86_64JniCallingConvention
195 return FrameOffset(displacement_.Int32Value() - OutArgSize() + (offset * kFramePointerSize)); in CurrentParamStackOffset()
Dcalling_convention_x86_64.h58 size_t OutArgSize() OVERRIDE;
/art/compiler/jni/quick/
Dcalling_convention.h281 virtual size_t OutArgSize() = 0;
Djni_compiler.cc189 const size_t main_out_arg_size = main_jni_conv->OutArgSize(); in ArtJniCompileMethodInternal()
389 const size_t end_out_arg_size = end_jni_conv->OutArgSize(); in ArtJniCompileMethodInternal()