Home
last modified time | relevance | path

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

/external/llvm-project/lldb/unittests/UnwindAssembly/x86/
DTestx86AssemblyInspectionEngine.cpp174 UnwindPlan::RowSP row_sp = unwind_plan.GetRowForFunctionOffset(0); in TEST_F()
185 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()
250 UnwindPlan::RowSP row_sp = unwind_plan.GetRowForFunctionOffset(0); 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()
390 UnwindPlan::RowSP row_sp = unwind_plan.GetRowForFunctionOffset(17); in TEST_F()
428 row_sp = unwind_plan.GetRowForFunctionOffset(34); in TEST_F()
[all …]
/external/llvm-project/lldb/unittests/UnwindAssembly/ARM64/
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 …]
/external/llvm-project/lldb/unittests/UnwindAssembly/PPC64/
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 …]
/external/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
DUnwindAssembly-x86.cpp72 UnwindPlan::RowSP first_row = unwind_plan.GetRowForFunctionOffset(0); in AugmentUnwindPlanFromCallSite()
73 UnwindPlan::RowSP last_row = unwind_plan.GetRowForFunctionOffset(-1); in AugmentUnwindPlanFromCallSite()
Dx86AssemblyInspectionEngine.cpp1368 UnwindPlan::RowSP original_last_row = unwind_plan.GetRowForFunctionOffset(-1); in AugmentUnwindPlanFromCallSite()
/external/llvm-project/lldb/source/Target/
DRegisterContextUnwind.cpp208 m_full_unwind_plan_sp->GetRowForFunctionOffset(m_current_offset); in InitializeZerothFrame()
379 UnwindPlan::RowSP row = m_full_unwind_plan_sp->GetRowForFunctionOffset(0); in InitializeNonZerothFrame()
538 m_fast_unwind_plan_sp->GetRowForFunctionOffset(m_current_offset); in InitializeNonZerothFrame()
551 active_row = m_full_unwind_plan_sp->GetRowForFunctionOffset(valid_offset); in InitializeNonZerothFrame()
1173 m_fast_unwind_plan_sp->GetRowForFunctionOffset(m_current_offset); in SavedLocationForRegister()
1202 m_full_unwind_plan_sp->GetRowForFunctionOffset(m_current_offset); in SavedLocationForRegister()
1320 m_full_unwind_plan_sp->GetRowForFunctionOffset(m_current_offset); in SavedLocationForRegister()
1645 m_fallback_unwind_plan_sp->GetRowForFunctionOffset(m_current_offset); in TryFallbackUnwindPlan()
1726 m_fallback_unwind_plan_sp->GetRowForFunctionOffset(m_current_offset); in ForceSwitchToFallbackUnwindPlan()
/external/llvm-project/lldb/include/lldb/Symbol/
DUnwindPlan.h417 UnwindPlan::RowSP GetRowForFunctionOffset(int offset) const;
/external/llvm-project/lldb/source/Symbol/
DUnwindPlan.cpp380 UnwindPlan::RowSP UnwindPlan::GetRowForFunctionOffset(int offset) const { in GetRowForFunctionOffset() function in UnwindPlan