Home
last modified time | relevance | path

Searched refs:QuickMethodFrameInfo (Results 1 – 25 of 25) sorted by relevance

/art/runtime/quick/
Dquick_method_frame_info.h26 class PACKED(4) QuickMethodFrameInfo {
28 constexpr QuickMethodFrameInfo() in QuickMethodFrameInfo() function
34 constexpr QuickMethodFrameInfo(uint32_t frame_size_in_bytes, uint32_t core_spill_mask, in QuickMethodFrameInfo() function
/art/runtime/arch/
Dcontext.h27 class QuickMethodFrameInfo; variable
52 virtual void FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& fr) = 0;
/art/runtime/arch/x86/
Dcallee_save_frame_x86.h71 static constexpr QuickMethodFrameInfo GetMethodFrameInfo(CalleeSaveType type) { in GetMethodFrameInfo()
73 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo()
Dcontext_x86.h38 void FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& fr) override;
Dcontext_x86.cc40 void X86Context::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) { in FillCalleeSaves()
/art/runtime/
Dnterp_helpers.h36 QuickMethodFrameInfo NterpFrameInfo(ArtMethod** frame)
Dnterp_helpers.cc140 QuickMethodFrameInfo NterpFrameInfo(ArtMethod** frame) { in NterpFrameInfo()
145 return QuickMethodFrameInfo(NterpGetFrameSize(*frame), core_spills, fp_spills); in NterpFrameInfo()
Druntime-inl.h45 inline QuickMethodFrameInfo Runtime::GetRuntimeMethodFrameInfo(ArtMethod* method) { in GetRuntimeMethodFrameInfo()
Doat_quick_method_header.h136 QuickMethodFrameInfo GetFrameInfo() const { in GetFrameInfo()
Dstack_map.h306 ALWAYS_INLINE static QuickMethodFrameInfo DecodeFrameInfo(const uint8_t* code_info_data) { in DecodeFrameInfo()
308 return QuickMethodFrameInfo(code_info.packed_frame_size_ * kStackAlignment, in DecodeFrameInfo()
Dstack.h296 QuickMethodFrameInfo GetCurrentQuickFrameInfo() const REQUIRES_SHARED(Locks::mutator_lock_);
Dstack.cc752 QuickMethodFrameInfo StackVisitor::GetCurrentQuickFrameInfo() const { in GetCurrentQuickFrameInfo()
893 QuickMethodFrameInfo frame_info = GetCurrentQuickFrameInfo(); in WalkStack()
Dcha.cc229 QuickMethodFrameInfo frame_info = GetCurrentQuickFrameInfo(); in SetShouldDeoptimizeFlag()
Druntime.h472 QuickMethodFrameInfo GetRuntimeMethodFrameInfo(ArtMethod* method)
/art/runtime/arch/x86_64/
Dcallee_save_frame_x86_64.h82 static constexpr QuickMethodFrameInfo GetMethodFrameInfo(CalleeSaveType type) { in GetMethodFrameInfo()
84 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo()
Dcontext_x86_64.h38 void FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& fr) override;
Dcontext_x86_64.cc39 void X86_64Context::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) { in FillCalleeSaves()
/art/runtime/arch/arm/
Dcallee_save_frame_arm.h84 static constexpr QuickMethodFrameInfo GetMethodFrameInfo(CalleeSaveType type) { in GetMethodFrameInfo()
86 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo()
Dcontext_arm.h39 void FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& fr) override;
Dcontext_arm.cc41 void ArmContext::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) { in FillCalleeSaves()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints_test.cc60 QuickMethodFrameInfo frame_info = Runtime::Current()->GetRuntimeMethodFrameInfo(save_method); in CheckPCOffset()
/art/runtime/arch/arm64/
Dcontext_arm64.h39 void FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& fr) override;
Dcallee_save_frame_arm64.h107 static constexpr QuickMethodFrameInfo GetMethodFrameInfo(CalleeSaveType type) { in GetMethodFrameInfo()
109 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo()
Dcontext_arm64.cc49 void Arm64Context::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) { in FillCalleeSaves()
/art/compiler/
Dexception_test.cc178 QuickMethodFrameInfo frame_info = r->GetRuntimeMethodFrameInfo(save_method); in TEST_F()