Lines Matching refs:active_row

183     UnwindPlan::RowSP active_row;
188 active_row = m_full_unwind_plan_sp->GetRowForFunctionOffset (m_current_offset);
190 if (active_row.get() && log)
193 active_row->Dump(active_row_strm, m_full_unwind_plan_sp.get(), &m_thread, m_start_pc.GetLoadAddress(exe_ctx.GetTargetPtr()));
198 if (!active_row.get())
206 if (!ReadGPRValue (row_register_kind, active_row->GetCFARegister(), cfa_regval))
212 cfa_offset = active_row->GetCFAOffset ();
461 UnwindPlan::RowSP active_row;
470 active_row = m_fast_unwind_plan_sp->GetRowForFunctionOffset (m_current_offset);
472 if (active_row.get() && log)
475 active_row->Dump(active_row_strm, m_fast_unwind_plan_sp.get(), &m_thread, m_start_pc.GetLoadAddress(exe_ctx.GetTargetPtr()));
484 active_row = m_full_unwind_plan_sp->GetRowForFunctionOffset (m_current_offset);
486 if (active_row.get() && log)
489 active_row->Dump(active_row_strm, m_full_unwind_plan_sp.get(), &m_thread, m_start_pc.GetLoadAddress(exe_ctx.GetTargetPtr()));
495 if (!active_row.get())
502 if (!ReadGPRValue (row_register_kind, active_row->GetCFARegister(), cfa_regval))
504 UnwindLogMsg ("failed to get cfa reg %d/%d", row_register_kind, active_row->GetCFARegister());
509 cfa_offset = active_row->GetCFAOffset ();
965 UnwindPlan::RowSP active_row = m_fast_unwind_plan_sp->GetRowForFunctionOffset (m_current_offset);
974 if (active_row->GetRegisterInfo (row_regnum, unwindplan_regloc))
989 UnwindPlan::RowSP active_row = m_full_unwind_plan_sp->GetRowForFunctionOffset (m_current_offset);
1016 if (active_row->GetRegisterInfo (row_regnum, unwindplan_regloc))
1075 UnwindPlan::RowSP active_row = m_full_unwind_plan_sp->GetRowForFunctionOffset (m_current_offset);
1078 && active_row
1079 && active_row->GetRegisterInfo (arch_default_pc_reg, unwindplan_regloc))
1248 UnwindPlan::RowSP active_row = arch_default_unwind_plan_sp->GetRowForFunctionOffset (m_current_offset);
1250 if (active_row && active_row->GetCFARegister() != LLDB_INVALID_REGNUM)
1264 if (ReadGPRValue (arch_default_unwind_plan_sp->GetRegisterKind(), active_row->GetCFARegister(), cfa_regval))
1266 m_cfa = cfa_regval + active_row->GetCFAOffset ();