Home
last modified time | relevance | path

Searched refs:GetRowForFunctionOffset (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/UnwindAssembly/x86/
H A DTestx86AssemblyInspectionEngine.cpp185 row_sp = unwind_plan.GetRowForFunctionOffset(1); in TEST_F()
196 row_sp = unwind_plan.GetRowForFunctionOffset(4); in TEST_F()
207 row_sp = unwind_plan.GetRowForFunctionOffset(7); in TEST_F()
261 row_sp = unwind_plan.GetRowForFunctionOffset(1); in TEST_F()
272 row_sp = unwind_plan.GetRowForFunctionOffset(3); in TEST_F()
283 row_sp = unwind_plan.GetRowForFunctionOffset(6); in TEST_F()
428 row_sp = unwind_plan.GetRowForFunctionOffset(34); in TEST_F()
929 row_sp = unwind_plan.GetRowForFunctionOffset(8); in TEST_F()
938 row_sp = unwind_plan.GetRowForFunctionOffset(9); in TEST_F()
980 row_sp = unwind_plan.GetRowForFunctionOffset(1); in TEST_F()
[all …]
/llvm-project-15.0.7/lldb/unittests/UnwindAssembly/ARM64/
H A DTestArm64InstEmulation.cpp92 row_sp = unwind_plan.GetRowForFunctionOffset(0); in TEST_F()
99 row_sp = unwind_plan.GetRowForFunctionOffset(4); in TEST_F()
114 row_sp = unwind_plan.GetRowForFunctionOffset(8); in TEST_F()
129 row_sp = unwind_plan.GetRowForFunctionOffset(16); in TEST_F()
144 row_sp = unwind_plan.GetRowForFunctionOffset(20); in TEST_F()
209 row_sp = unwind_plan.GetRowForFunctionOffset(0); in TEST_F()
216 row_sp = unwind_plan.GetRowForFunctionOffset(4); in TEST_F()
230 row_sp = unwind_plan.GetRowForFunctionOffset(8); in TEST_F()
245 row_sp = unwind_plan.GetRowForFunctionOffset(12); in TEST_F()
260 row_sp = unwind_plan.GetRowForFunctionOffset(16); in TEST_F()
[all …]
/llvm-project-15.0.7/lldb/unittests/UnwindAssembly/PPC64/
H A DTestPPC64InstEmulation.cpp99 row_sp = unwind_plan.GetRowForFunctionOffset(0); in TEST_F()
106 row_sp = unwind_plan.GetRowForFunctionOffset(16); in TEST_F()
117 row_sp = unwind_plan.GetRowForFunctionOffset(20); in TEST_F()
128 row_sp = unwind_plan.GetRowForFunctionOffset(24); in TEST_F()
143 row_sp = unwind_plan.GetRowForFunctionOffset(28); in TEST_F()
158 row_sp = unwind_plan.GetRowForFunctionOffset(40); in TEST_F()
211 row_sp = unwind_plan.GetRowForFunctionOffset(0); in TEST_F()
218 row_sp = unwind_plan.GetRowForFunctionOffset(8); in TEST_F()
229 row_sp = unwind_plan.GetRowForFunctionOffset(12); in TEST_F()
240 row_sp = unwind_plan.GetRowForFunctionOffset(16); in TEST_F()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.cpp71 UnwindPlan::RowSP first_row = unwind_plan.GetRowForFunctionOffset(0); in AugmentUnwindPlanFromCallSite()
72 UnwindPlan::RowSP last_row = unwind_plan.GetRowForFunctionOffset(-1); in AugmentUnwindPlanFromCallSite()
H A Dx86AssemblyInspectionEngine.cpp1369 UnwindPlan::RowSP original_last_row = unwind_plan.GetRowForFunctionOffset(-1); in AugmentUnwindPlanFromCallSite()
/llvm-project-15.0.7/lldb/source/Target/
H A DRegisterContextUnwind.cpp219 lang_runtime_plan_sp->GetRowForFunctionOffset(m_current_offset); in InitializeZerothFrame()
246 m_full_unwind_plan_sp->GetRowForFunctionOffset(m_current_offset); in InitializeZerothFrame()
431 UnwindPlan::RowSP row = m_full_unwind_plan_sp->GetRowForFunctionOffset(0); in InitializeNonZerothFrame()
592 lang_runtime_plan_sp->GetRowForFunctionOffset(m_current_offset); in InitializeNonZerothFrame()
626 m_fast_unwind_plan_sp->GetRowForFunctionOffset(m_current_offset); in InitializeNonZerothFrame()
640 active_row = m_full_unwind_plan_sp->GetRowForFunctionOffset( in InitializeNonZerothFrame()
1274 m_fast_unwind_plan_sp->GetRowForFunctionOffset(m_current_offset); in SavedLocationForRegister()
1315 m_full_unwind_plan_sp->GetRowForFunctionOffset( in SavedLocationForRegister()
1444 m_full_unwind_plan_sp->GetRowForFunctionOffset(m_current_offset); in SavedLocationForRegister()
1774 m_fallback_unwind_plan_sp->GetRowForFunctionOffset( in TryFallbackUnwindPlan()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DUnwindPlan.h433 UnwindPlan::RowSP GetRowForFunctionOffset(int offset) const;
/llvm-project-15.0.7/lldb/source/Symbol/
H A DUnwindPlan.cpp385 UnwindPlan::RowSP UnwindPlan::GetRowForFunctionOffset(int offset) const { in GetRowForFunctionOffset() function in UnwindPlan