Home
last modified time | relevance | path

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

/art/compiler/jni/portable/
Djni_compiler.cc101 uint32_t handle_scope_size = 1; in Compile() local
109 ++handle_scope_size; in Compile()
114 ::llvm::StructType* shadow_frame_type = irb_.getShadowFrameTy(handle_scope_size); in Compile()
126 … irb_.Runtime().EmitPushShadowFrame(shadow_frame_upcast, method_object_addr, handle_scope_size); in Compile()
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.cc130 size_t handle_scope_size = HandleScope::SizeOf(kFramePointerSize, ReferenceCount()); in FrameSize() local
132 return RoundUp(frame_data_size + handle_scope_size + SizeOfReturnValue(), kStackAlignment); in FrameSize()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc149 size_t handle_scope_size = HandleScope::SizeOf(kFramePointerSize, ReferenceCount()); in FrameSize() local
151 return RoundUp(frame_data_size + handle_scope_size + SizeOfReturnValue(), kStackAlignment); in FrameSize()
/art/compiler/jni/quick/mips/
Dcalling_convention_mips.cc153 size_t handle_scope_size = HandleScope::SizeOf(kFramePointerSize, ReferenceCount()); in FrameSize() local
155 return RoundUp(frame_data_size + handle_scope_size + SizeOfReturnValue(), kStackAlignment); in FrameSize()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc153 size_t handle_scope_size = HandleScope::SizeOf(kFramePointerSize, ReferenceCount()); in FrameSize() local
155 return RoundUp(frame_data_size + handle_scope_size + SizeOfReturnValue(), kStackAlignment); in FrameSize()
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc201 size_t handle_scope_size = HandleScope::SizeOf(kFramePointerSize, ReferenceCount()); in FrameSize() local
203 return RoundUp(frame_data_size + handle_scope_size + SizeOfReturnValue(), kStackAlignment); in FrameSize()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1327 size_t handle_scope_size = HandleScope::SizeOf(num_handle_scope_references_); in LayoutCalleeSaveFrame() local
1328 size_t scope_and_method = handle_scope_size + sizeof(StackReference<mirror::ArtMethod>); in LayoutCalleeSaveFrame()