Home
last modified time | relevance | path

Searched refs:OutFrameSize (Results 1 – 12 of 12) sorted by relevance

/art/compiler/jni/quick/riscv64/
Dcalling_convention_riscv64.cc237 size_t Riscv64JniCallingConvention::OutFrameSize() const { in OutFrameSize() function in art::riscv64::Riscv64JniCallingConvention
380 size_t offset = displacement_.Int32Value() - OutFrameSize() + (args_on_stack * kFramePointerSize); in CurrentParamStackOffset()
381 CHECK_LT(offset, OutFrameSize()); in CurrentParamStackOffset()
424 return OutFrameSize() == 0u; in UseTailCall()
Dcalling_convention_riscv64.h63 size_t OutFrameSize() const override;
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc289 size_t Arm64JniCallingConvention::OutFrameSize() const { in OutFrameSize() function in art::arm64::Arm64JniCallingConvention
374 size_t offset = displacement_.Int32Value() - OutFrameSize() + (args_on_stack * kFramePointerSize); in CurrentParamStackOffset()
375 CHECK_LT(offset, OutFrameSize()); in CurrentParamStackOffset()
410 return OutFrameSize() == 0u; in UseTailCall()
Dcalling_convention_arm64.h63 size_t OutFrameSize() const override;
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.cc245 size_t X86JniCallingConvention::OutFrameSize() const { in OutFrameSize() function in art::x86::X86JniCallingConvention
306 FrameOffset(displacement_.Int32Value() - OutFrameSize() + (itr_slots_ * kFramePointerSize)); in CurrentParamStackOffset()
331 return OutFrameSize() == kFramePointerSize; in UseTailCall()
Dcalling_convention_x86.h67 size_t OutFrameSize() const override;
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc445 size_t ArmJniCallingConvention::OutFrameSize() const { in OutFrameSize() function in art::arm::ArmJniCallingConvention
537 - OutFrameSize() in CurrentParamStackOffset()
539 CHECK_LT(offset, OutFrameSize()); in CurrentParamStackOffset()
575 return OutFrameSize() == 0u; in UseTailCall()
Dcalling_convention_arm.h71 size_t OutFrameSize() const override;
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc226 size_t X86_64JniCallingConvention::OutFrameSize() const { in OutFrameSize() function in art::x86_64::X86_64JniCallingConvention
308 size_t offset = displacement_.Int32Value() - OutFrameSize() + (args_on_stack * kFramePointerSize); in CurrentParamStackOffset()
309 CHECK_LT(offset, OutFrameSize()); in CurrentParamStackOffset()
Dcalling_convention_x86_64.h63 size_t OutFrameSize() const override;
/art/compiler/jni/quick/
Dcalling_convention.h315 virtual size_t OutFrameSize() const = 0;
Djni_compiler.cc172 const size_t main_out_arg_size = main_jni_conv->OutFrameSize(); in ArtJniCompileMethodInternal()