Lines Matching defs:unwind_plan_sp
93 UnwindPlanSP unwind_plan_sp(new UnwindPlan(lldb::eRegisterKindGeneric));
94 if (compact_unwind->GetUnwindPlan(target, current_pc, *unwind_plan_sp)) {
95 m_unwind_plan_compact_unwind.push_back(unwind_plan_sp);
543 UnwindPlanSP unwind_plan_sp = GetEHFrameUnwindPlan(target);
544 if (unwind_plan_sp.get() == nullptr) {
545 unwind_plan_sp = GetCompactUnwindUnwindPlan(target);
547 if (unwind_plan_sp.get() == nullptr) {
548 unwind_plan_sp = GetObjectFileUnwindPlan(target);
550 if (unwind_plan_sp.get() && unwind_plan_sp->GetLSDAAddress().IsValid()) {
551 lsda_addr = unwind_plan_sp->GetLSDAAddress();
559 UnwindPlanSP unwind_plan_sp = GetEHFrameUnwindPlan(target);
560 if (unwind_plan_sp.get() == nullptr) {
561 unwind_plan_sp = GetCompactUnwindUnwindPlan(target);
563 if (unwind_plan_sp.get() == nullptr) {
564 unwind_plan_sp = GetObjectFileUnwindPlan(target);
566 if (unwind_plan_sp.get() &&
567 unwind_plan_sp->GetPersonalityFunctionPtr().IsValid()) {
568 personality_addr = unwind_plan_sp->GetPersonalityFunctionPtr();