Searched refs:handle_scope_size (Results 1 – 7 of 7) sorted by relevance
/art/compiler/jni/portable/ |
D | jni_compiler.cc | 101 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/ |
D | calling_convention_x86.cc | 130 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/ |
D | calling_convention_arm.cc | 149 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/ |
D | calling_convention_mips.cc | 153 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/ |
D | calling_convention_x86_64.cc | 153 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/ |
D | calling_convention_arm64.cc | 201 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/ |
D | quick_trampoline_entrypoints.cc | 1327 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()
|