1 //===-- ThreadPlanStepOverBreakpoint.cpp ----------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "lldb/Target/ThreadPlanStepOverBreakpoint.h"
11 #include "lldb/Target/Process.h"
12 #include "lldb/Target/RegisterContext.h"
13 #include "lldb/Utility/Log.h"
14 #include "lldb/Utility/Stream.h"
17 using namespace lldb_private
;
19 // ThreadPlanStepOverBreakpoint: Single steps over a breakpoint bp_site_sp at
22 ThreadPlanStepOverBreakpoint::ThreadPlanStepOverBreakpoint(Thread
&thread
)
24 ThreadPlan::eKindStepOverBreakpoint
, "Step over breakpoint trap",
26 eVoteNoOpinion
), // We need to report the run since this happens
27 // first in the thread plan stack when stepping over
29 m_breakpoint_addr(LLDB_INVALID_ADDRESS
),
30 m_auto_continue(false), m_reenabled_breakpoint_site(false)
33 m_breakpoint_addr
= thread
.GetRegisterContext()->GetPC();
34 m_breakpoint_site_id
=
35 thread
.GetProcess()->GetBreakpointSiteList().FindIDByAddress(
39 ThreadPlanStepOverBreakpoint::~ThreadPlanStepOverBreakpoint() = default;
41 void ThreadPlanStepOverBreakpoint::GetDescription(
42 Stream
*s
, lldb::DescriptionLevel level
) {
43 s
->Printf("Single stepping past breakpoint site %" PRIu64
" at 0x%" PRIx64
,
44 m_breakpoint_site_id
, (uint64_t)m_breakpoint_addr
);
47 bool ThreadPlanStepOverBreakpoint::ValidatePlan(Stream
*error
) { return true; }
49 bool ThreadPlanStepOverBreakpoint::DoPlanExplainsStop(Event
*event_ptr
) {
50 StopInfoSP stop_info_sp
= GetPrivateStopInfo();
52 StopReason reason
= stop_info_sp
->GetStopReason();
54 Log
*log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP
));
55 LLDB_LOG(log
, "Step over breakpoint stopped for reason: {0}.",
56 Thread::StopReasonAsString(reason
));
59 case eStopReasonTrace
:
62 case eStopReasonBreakpoint
:
64 // It's a little surprising that we stop here for a breakpoint hit.
65 // However, when you single step ONTO a breakpoint we still want to call
66 // that a breakpoint hit, and trigger the actions, etc. Otherwise you
67 // would see the PC at the breakpoint without having triggered the
68 // actions, then you'd continue, the PC wouldn't change, and you'd see
69 // the breakpoint hit, which would be odd. So the lower levels fake
70 // "step onto breakpoint address" and return that as a breakpoint hit.
71 // So our trace step COULD appear as a breakpoint hit if the next
72 // instruction also contained a breakpoint. We don't want to handle
73 // that, since we really don't know what to do with breakpoint hits.
74 // But make sure we don't set ourselves to auto-continue or we'll wrench
75 // control away from the plans that can deal with this.
76 // Be careful, however, as we may have "seen a breakpoint under the PC
77 // because we stopped without changing the PC, in which case we do want
78 // to re-claim this stop so we'll try again.
79 lldb::addr_t pc_addr
= GetThread().GetRegisterContext()->GetPC();
81 if (pc_addr
== m_breakpoint_addr
) {
83 "Got breakpoint stop reason but pc: 0x%" PRIx64
89 SetAutoContinue(false);
99 bool ThreadPlanStepOverBreakpoint::ShouldStop(Event
*event_ptr
) {
100 return !ShouldAutoContinue(event_ptr
);
103 bool ThreadPlanStepOverBreakpoint::StopOthers() { return true; }
105 StateType
ThreadPlanStepOverBreakpoint::GetPlanRunState() {
106 return eStateStepping
;
109 bool ThreadPlanStepOverBreakpoint::DoWillResume(StateType resume_state
,
112 BreakpointSiteSP
bp_site_sp(
113 m_process
.GetBreakpointSiteList().FindByAddress(m_breakpoint_addr
));
114 if (bp_site_sp
&& bp_site_sp
->IsEnabled()) {
115 m_process
.DisableBreakpointSite(bp_site_sp
.get());
116 m_reenabled_breakpoint_site
= false;
122 bool ThreadPlanStepOverBreakpoint::WillStop() {
123 ReenableBreakpointSite();
127 void ThreadPlanStepOverBreakpoint::DidPop() { ReenableBreakpointSite(); }
129 bool ThreadPlanStepOverBreakpoint::MischiefManaged() {
130 lldb::addr_t pc_addr
= GetThread().GetRegisterContext()->GetPC();
132 if (pc_addr
== m_breakpoint_addr
) {
133 // If we are still at the PC of our breakpoint, then for some reason we
134 // didn't get a chance to run.
137 Log
*log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP
));
138 LLDB_LOGF(log
, "Completed step over breakpoint plan.");
139 // Otherwise, re-enable the breakpoint we were stepping over, and we're
141 ReenableBreakpointSite();
142 ThreadPlan::MischiefManaged();
147 void ThreadPlanStepOverBreakpoint::ReenableBreakpointSite() {
148 if (!m_reenabled_breakpoint_site
) {
149 m_reenabled_breakpoint_site
= true;
150 BreakpointSiteSP
bp_site_sp(
151 m_process
.GetBreakpointSiteList().FindByAddress(m_breakpoint_addr
));
153 m_process
.EnableBreakpointSite(bp_site_sp
.get());
157 void ThreadPlanStepOverBreakpoint::ThreadDestroyed() {
158 ReenableBreakpointSite();
161 void ThreadPlanStepOverBreakpoint::SetAutoContinue(bool do_it
) {
162 m_auto_continue
= do_it
;
165 bool ThreadPlanStepOverBreakpoint::ShouldAutoContinue(Event
*event_ptr
) {
166 return m_auto_continue
;
169 bool ThreadPlanStepOverBreakpoint::IsPlanStale() {
170 return GetThread().GetRegisterContext()->GetPC() != m_breakpoint_addr
;