Searched refs:FrameSizeInBytes (Results 1 – 13 of 13) sorted by relevance
/aosp12/art/runtime/quick/ |
H A D | quick_method_frame_info.h | 41 uint32_t FrameSizeInBytes() const { in FrameSizeInBytes() function 54 return FrameSizeInBytes() - sizeof(void*); in GetReturnPcOffset()
|
/aosp12/art/runtime/arch/x86/ |
H A D | context_x86.cc | 48 gprs_[core_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves() 59 CalleeSaveAddress(frame, spill_pos + 1, frame_info.FrameSizeInBytes())); in FillCalleeSaves() 61 CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes())); in FillCalleeSaves()
|
/aosp12/art/runtime/arch/arm/ |
H A D | context_arm.cc | 48 gprs_[core_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves() 55 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
|
/aosp12/art/runtime/arch/x86_64/ |
H A D | context_x86_64.cc | 47 gprs_[core_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves() 57 CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes())); in FillCalleeSaves()
|
/aosp12/art/runtime/arch/arm64/ |
H A D | context_arm64.cc | 54 gprs_[core_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves() 61 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
|
/aosp12/art/runtime/ |
H A D | oat_file-inl.h | 49 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].GetFrameInfo().FrameSizeInBytes(); in GetFrameSizeInBytes()
|
H A D | oat_quick_method_header.h | 129 uint32_t result = GetFrameInfo().FrameSizeInBytes(); in GetFrameSizeInBytes()
|
H A D | stack.cc | 154 const size_t frame_size = GetCurrentQuickFrameInfo().FrameSizeInBytes(); in GetThisObject() 736 size_t frame_size = GetCurrentQuickFrameInfo().FrameSizeInBytes(); in ValidateFrame() 898 size_t frame_size = frame_info.FrameSizeInBytes(); in WalkStack()
|
H A D | cha.cc | 230 size_t frame_size = frame_info.FrameSizeInBytes(); in SetShouldDeoptimizeFlag()
|
H A D | monitor.cc | 1465 size_t frame_size = stack_visitor->GetCurrentQuickFrameInfo().FrameSizeInBytes(); in VisitLocks()
|
H A D | thread.cc | 2559 size_t frame_size = GetCurrentQuickFrameInfo().FrameSizeInBytes(); in VisitFrame() 3900 const size_t frame_size = GetCurrentQuickFrameInfo().FrameSizeInBytes(); in VisitQuickFrameWithVregCallback()
|
/aosp12/art/compiler/ |
H A D | exception_test.cc | 185 for (size_t i = 0; i < frame_info.FrameSizeInBytes() - 2 * sizeof(uintptr_t); in TEST_F()
|
/aosp12/art/dex2oat/linker/ |
H A D | oat_writer.cc | 1406 info.frame_size_in_bytes = CodeInfo::DecodeFrameInfo(code_info).FrameSizeInBytes(); in VisitMethod()
|