blob: 59244e5cc5d0306c324f1e8736f0af3fbadf1277 [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- ThreadPlanStepOverBreakpoint.cpp ------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "lldb/Target/ThreadPlanStepOverBreakpoint.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15// Project includes
16#include "lldb/lldb-private-log.h"
17#include "lldb/Core/Log.h"
18#include "lldb/Core/Stream.h"
19#include "lldb/Target/Process.h"
20#include "lldb/Target/RegisterContext.h"
21
22using namespace lldb;
23using namespace lldb_private;
24
25//----------------------------------------------------------------------
26// ThreadPlanStepOverBreakpoint: Single steps over a breakpoint bp_site_sp at the pc.
27//----------------------------------------------------------------------
28
29ThreadPlanStepOverBreakpoint::ThreadPlanStepOverBreakpoint (Thread &thread) :
Jim Ingham5a47e8b2010-06-19 04:45:32 +000030 ThreadPlan (ThreadPlan::eKindStepOverBreakpoint, "Step over breakpoint trap",
Chris Lattner24943d22010-06-08 16:52:24 +000031 thread,
32 eVoteNo,
33 eVoteNoOpinion), // We need to report the run since this happens
34 // first in the thread plan stack when stepping
35 // over a breakpoint
Jim Ingham5a47e8b2010-06-19 04:45:32 +000036 m_breakpoint_addr (LLDB_INVALID_ADDRESS),
37 m_auto_continue(false)
38
Chris Lattner24943d22010-06-08 16:52:24 +000039{
40 m_breakpoint_addr = m_thread.GetRegisterContext()->GetPC();
Greg Claytonf4124de2012-02-21 00:09:25 +000041 m_breakpoint_site_id = m_thread.GetProcess()->GetBreakpointSiteList().FindIDByAddress (m_breakpoint_addr);
Chris Lattner24943d22010-06-08 16:52:24 +000042}
43
44ThreadPlanStepOverBreakpoint::~ThreadPlanStepOverBreakpoint ()
45{
46}
47
48void
49ThreadPlanStepOverBreakpoint::GetDescription (Stream *s, lldb::DescriptionLevel level)
50{
Daniel Malea5f35a4b2012-11-29 21:49:15 +000051 s->Printf("Single stepping past breakpoint site %" PRIu64 " at 0x%" PRIx64, m_breakpoint_site_id, (uint64_t)m_breakpoint_addr);
Chris Lattner24943d22010-06-08 16:52:24 +000052}
53
54bool
55ThreadPlanStepOverBreakpoint::ValidatePlan (Stream *error)
56{
57 return true;
58}
59
60bool
61ThreadPlanStepOverBreakpoint::PlanExplainsStop ()
62{
Jim Inghamd14a0bd2012-06-22 20:42:22 +000063 StopInfoSP stop_info_sp = GetPrivateStopReason();
64 if (stop_info_sp)
65 {
66 StopReason reason = stop_info_sp->GetStopReason();
67 if (reason == eStopReasonTrace || reason == eStopReasonNone)
68 return true;
69 else
70 return false;
71 }
72 return false;
Chris Lattner24943d22010-06-08 16:52:24 +000073}
74
75bool
76ThreadPlanStepOverBreakpoint::ShouldStop (Event *event_ptr)
77{
78 return false;
79}
80
81bool
82ThreadPlanStepOverBreakpoint::StopOthers ()
83{
84 return true;
85}
86
87StateType
Jim Ingham745ac7a2010-11-11 19:26:09 +000088ThreadPlanStepOverBreakpoint::GetPlanRunState ()
Chris Lattner24943d22010-06-08 16:52:24 +000089{
90 return eStateStepping;
91}
92
93bool
94ThreadPlanStepOverBreakpoint::WillResume (StateType resume_state, bool current_plan)
95{
96 ThreadPlan::WillResume (resume_state, current_plan);
97
98 if (current_plan)
99 {
Greg Claytonf4124de2012-02-21 00:09:25 +0000100 BreakpointSiteSP bp_site_sp (m_thread.GetProcess()->GetBreakpointSiteList().FindByAddress (m_breakpoint_addr));
Chris Lattner24943d22010-06-08 16:52:24 +0000101 if (bp_site_sp && bp_site_sp->IsEnabled())
Greg Claytonf4124de2012-02-21 00:09:25 +0000102 m_thread.GetProcess()->DisableBreakpoint (bp_site_sp.get());
Chris Lattner24943d22010-06-08 16:52:24 +0000103 }
104 return true;
105}
106
107bool
108ThreadPlanStepOverBreakpoint::WillStop ()
109{
Greg Claytonf4124de2012-02-21 00:09:25 +0000110 BreakpointSiteSP bp_site_sp (m_thread.GetProcess()->GetBreakpointSiteList().FindByAddress (m_breakpoint_addr));
Chris Lattner24943d22010-06-08 16:52:24 +0000111 if (bp_site_sp)
Greg Claytonf4124de2012-02-21 00:09:25 +0000112 m_thread.GetProcess()->EnableBreakpoint (bp_site_sp.get());
Chris Lattner24943d22010-06-08 16:52:24 +0000113 return true;
114}
115
116bool
117ThreadPlanStepOverBreakpoint::MischiefManaged ()
118{
119 lldb::addr_t pc_addr = m_thread.GetRegisterContext()->GetPC();
120
121 if (pc_addr == m_breakpoint_addr)
122 {
123 // If we are still at the PC of our breakpoint, then for some reason we didn't
124 // get a chance to run.
125 return false;
126 }
127 else
128 {
Greg Claytone005f2c2010-11-06 01:53:30 +0000129 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
Chris Lattner24943d22010-06-08 16:52:24 +0000130 if (log)
131 log->Printf("Completed step over breakpoint plan.");
132 // Otherwise, re-enable the breakpoint we were stepping over, and we're done.
Greg Claytonf4124de2012-02-21 00:09:25 +0000133 BreakpointSiteSP bp_site_sp (m_thread.GetProcess()->GetBreakpointSiteList().FindByAddress (m_breakpoint_addr));
Chris Lattner24943d22010-06-08 16:52:24 +0000134 if (bp_site_sp)
Greg Claytonf4124de2012-02-21 00:09:25 +0000135 m_thread.GetProcess()->EnableBreakpoint (bp_site_sp.get());
Chris Lattner24943d22010-06-08 16:52:24 +0000136 ThreadPlan::MischiefManaged ();
137 return true;
138 }
139}
140
Jim Ingham5a47e8b2010-06-19 04:45:32 +0000141void
142ThreadPlanStepOverBreakpoint::SetAutoContinue (bool do_it)
143{
144 m_auto_continue = do_it;
145}
146
147bool
148ThreadPlanStepOverBreakpoint::ShouldAutoContinue (Event *event_ptr)
149{
150 return m_auto_continue;
151}