Home
last modified time | relevance | path

Searched refs:unwind_plan_sp (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/source/Target/
DRegisterContextUnwind.cpp82 lldb::UnwindPlanSP unwind_plan_sp, int &valid_pc_offset) { in IsUnwindPlanValidForCurrentPC() argument
83 if (!unwind_plan_sp) in IsUnwindPlanValidForCurrentPC()
87 if (unwind_plan_sp->PlanValidAtAddress(m_current_pc)) { in IsUnwindPlanValidForCurrentPC()
100 if (unwind_plan_sp->PlanValidAtAddress(pc_minus_one)) { in IsUnwindPlanValidForCurrentPC()
640 UnwindPlanSP unwind_plan_sp; in GetFastUnwindPlanForFrame() local
645 return unwind_plan_sp; in GetFastUnwindPlanForFrame()
648 return unwind_plan_sp; in GetFastUnwindPlanForFrame()
654 return unwind_plan_sp; in GetFastUnwindPlanForFrame()
659 return unwind_plan_sp; in GetFastUnwindPlanForFrame()
661 unwind_plan_sp = func_unwinders_sp->GetUnwindPlanFastUnwind( in GetFastUnwindPlanForFrame()
[all …]
/external/llvm-project/lldb/source/Symbol/
DFuncUnwinders.cpp93 UnwindPlanSP unwind_plan_sp(new UnwindPlan(lldb::eRegisterKindGeneric)); in GetCompactUnwindUnwindPlan() local
94 if (compact_unwind->GetUnwindPlan(target, current_pc, *unwind_plan_sp)) { in GetCompactUnwindUnwindPlan()
95 m_unwind_plan_compact_unwind.push_back(unwind_plan_sp); in GetCompactUnwindUnwindPlan()
533 UnwindPlanSP unwind_plan_sp = GetEHFrameUnwindPlan(target); in GetLSDAAddress() local
534 if (unwind_plan_sp.get() == nullptr) { in GetLSDAAddress()
535 unwind_plan_sp = GetCompactUnwindUnwindPlan(target); in GetLSDAAddress()
537 if (unwind_plan_sp.get() == nullptr) { in GetLSDAAddress()
538 unwind_plan_sp = GetObjectFileUnwindPlan(target); in GetLSDAAddress()
540 if (unwind_plan_sp.get() && unwind_plan_sp->GetLSDAAddress().IsValid()) { in GetLSDAAddress()
541 lsda_addr = unwind_plan_sp->GetLSDAAddress(); in GetLSDAAddress()
[all …]
/external/llvm-project/lldb/include/lldb/Target/
DRegisterContextUnwind.h201 bool IsUnwindPlanValidForCurrentPC(lldb::UnwindPlanSP unwind_plan_sp,