blob: a747ee8dc1bc0ba080a53f6614dde8e97ed3ff7f [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- ThreadPlanStepUntil.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//m_should_stop
10
11//
12//===----------------------------------------------------------------------===//
13
14#include "lldb/Target/ThreadPlanStepUntil.h"
15
16// C Includes
17// C++ Includes
18// Other libraries and framework includes
19// Project includes
20#include "lldb/Breakpoint/Breakpoint.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000021#include "lldb/Core/Log.h"
22#include "lldb/Target/Process.h"
23#include "lldb/Target/RegisterContext.h"
Greg Claytonf4b47e12010-08-04 01:40:35 +000024#include "lldb/Target/StopInfo.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000025#include "lldb/Target/Target.h"
26
27using namespace lldb;
28using namespace lldb_private;
29
30//----------------------------------------------------------------------
31// ThreadPlanStepUntil: Run until we reach a given line number or step out of the current frame
32//----------------------------------------------------------------------
33
34ThreadPlanStepUntil::ThreadPlanStepUntil
35(
36 Thread &thread,
37 lldb::addr_t *address_list,
38 size_t num_addresses,
Greg Clayton481cef22011-01-21 06:11:58 +000039 bool stop_others,
40 uint32_t frame_idx
Chris Lattner30fdc8d2010-06-08 16:52:24 +000041) :
Jim Inghamb01e7422010-06-19 04:45:32 +000042 ThreadPlan (ThreadPlan::eKindStepUntil, "Step until", thread, eVoteNoOpinion, eVoteNoOpinion),
Chris Lattner30fdc8d2010-06-08 16:52:24 +000043 m_step_from_insn (LLDB_INVALID_ADDRESS),
Jim Inghamb5c0d1c2012-03-01 00:50:50 +000044 m_return_bp_id (LLDB_INVALID_BREAK_ID),
Greg Claytonc982c762010-07-09 20:39:50 +000045 m_return_addr (LLDB_INVALID_ADDRESS),
Jim Inghamb5c0d1c2012-03-01 00:50:50 +000046 m_stepped_out (false),
47 m_should_stop (false),
Chris Lattner30fdc8d2010-06-08 16:52:24 +000048 m_ran_analyze (false),
Jim Inghamb5c0d1c2012-03-01 00:50:50 +000049 m_explains_stop (false),
50 m_until_points (),
Chris Lattner30fdc8d2010-06-08 16:52:24 +000051 m_stop_others (stop_others)
52{
Chris Lattner30fdc8d2010-06-08 16:52:24 +000053 // Stash away our "until" addresses:
Greg Clayton1ac04c32012-02-21 00:09:25 +000054 TargetSP target_sp (m_thread.CalculateTarget());
Chris Lattner30fdc8d2010-06-08 16:52:24 +000055
Jason Molendab57e4a12013-11-04 09:33:30 +000056 StackFrameSP frame_sp (m_thread.GetStackFrameAtIndex (frame_idx));
Greg Clayton481cef22011-01-21 06:11:58 +000057 if (frame_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +000058 {
Greg Clayton481cef22011-01-21 06:11:58 +000059 m_step_from_insn = frame_sp->GetStackID().GetPC();
60 lldb::user_id_t thread_id = m_thread.GetID();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000061
Greg Clayton481cef22011-01-21 06:11:58 +000062 // Find the return address and set a breakpoint there:
63 // FIXME - can we do this more securely if we know first_insn?
Chris Lattner30fdc8d2010-06-08 16:52:24 +000064
Jason Molendab57e4a12013-11-04 09:33:30 +000065 StackFrameSP return_frame_sp (m_thread.GetStackFrameAtIndex(frame_idx + 1));
Greg Clayton481cef22011-01-21 06:11:58 +000066 if (return_frame_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +000067 {
Greg Clayton481cef22011-01-21 06:11:58 +000068 // TODO: add inline functionality
69 m_return_addr = return_frame_sp->GetStackID().GetPC();
Greg Claytoneb023e72013-10-11 19:48:25 +000070 Breakpoint *return_bp = target_sp->CreateBreakpoint (m_return_addr, true, false).get();
Greg Clayton481cef22011-01-21 06:11:58 +000071 if (return_bp != NULL)
72 {
73 return_bp->SetThreadID(thread_id);
74 m_return_bp_id = return_bp->GetID();
Jim Ingham29950772013-01-26 02:19:28 +000075 return_bp->SetBreakpointKind ("until-return-backstop");
Greg Clayton481cef22011-01-21 06:11:58 +000076 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +000077 }
Greg Clayton481cef22011-01-21 06:11:58 +000078
Jim Ingham76447852014-08-11 23:57:43 +000079 m_stack_id = frame_sp->GetStackID();
Greg Clayton481cef22011-01-21 06:11:58 +000080
81 // Now set breakpoints on all our return addresses:
Andy Gibbsa297a972013-06-19 19:04:53 +000082 for (size_t i = 0; i < num_addresses; i++)
Chris Lattner30fdc8d2010-06-08 16:52:24 +000083 {
Greg Claytoneb023e72013-10-11 19:48:25 +000084 Breakpoint *until_bp = target_sp->CreateBreakpoint (address_list[i], true, false).get();
Greg Clayton481cef22011-01-21 06:11:58 +000085 if (until_bp != NULL)
86 {
87 until_bp->SetThreadID(thread_id);
88 m_until_points[address_list[i]] = until_bp->GetID();
Jim Ingham29950772013-01-26 02:19:28 +000089 until_bp->SetBreakpointKind("until-target");
Greg Clayton481cef22011-01-21 06:11:58 +000090 }
91 else
92 {
93 m_until_points[address_list[i]] = LLDB_INVALID_BREAK_ID;
94 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +000095 }
96 }
97}
98
99ThreadPlanStepUntil::~ThreadPlanStepUntil ()
100{
101 Clear();
102}
103
104void
105ThreadPlanStepUntil::Clear()
106{
Greg Clayton1ac04c32012-02-21 00:09:25 +0000107 TargetSP target_sp (m_thread.CalculateTarget());
108 if (target_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000109 {
Greg Clayton1ac04c32012-02-21 00:09:25 +0000110 if (m_return_bp_id != LLDB_INVALID_BREAK_ID)
111 {
112 target_sp->RemoveBreakpointByID(m_return_bp_id);
113 m_return_bp_id = LLDB_INVALID_BREAK_ID;
114 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000115
Greg Clayton1ac04c32012-02-21 00:09:25 +0000116 until_collection::iterator pos, end = m_until_points.end();
117 for (pos = m_until_points.begin(); pos != end; pos++)
118 {
119 target_sp->RemoveBreakpointByID((*pos).second);
120 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000121 }
122 m_until_points.clear();
123}
124
125void
126ThreadPlanStepUntil::GetDescription (Stream *s, lldb::DescriptionLevel level)
127{
128 if (level == lldb::eDescriptionLevelBrief)
129 {
130 s->Printf ("step until");
131 if (m_stepped_out)
132 s->Printf (" - stepped out");
133 }
134 else
135 {
136 if (m_until_points.size() == 1)
Daniel Malead01b2952012-11-29 21:49:15 +0000137 s->Printf ("Stepping from address 0x%" PRIx64 " until we reach 0x%" PRIx64 " using breakpoint %d",
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000138 (uint64_t)m_step_from_insn,
139 (uint64_t) (*m_until_points.begin()).first,
140 (*m_until_points.begin()).second);
141 else
142 {
143 until_collection::iterator pos, end = m_until_points.end();
Daniel Malead01b2952012-11-29 21:49:15 +0000144 s->Printf ("Stepping from address 0x%" PRIx64 " until we reach one of:",
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000145 (uint64_t)m_step_from_insn);
146 for (pos = m_until_points.begin(); pos != end; pos++)
147 {
Daniel Malead01b2952012-11-29 21:49:15 +0000148 s->Printf ("\n\t0x%" PRIx64 " (bp: %d)", (uint64_t) (*pos).first, (*pos).second);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000149 }
150 }
Daniel Malead01b2952012-11-29 21:49:15 +0000151 s->Printf(" stepped out address is 0x%" PRIx64 ".", (uint64_t) m_return_addr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000152 }
153}
154
155bool
156ThreadPlanStepUntil::ValidatePlan (Stream *error)
157{
158 if (m_return_bp_id == LLDB_INVALID_BREAK_ID)
159 return false;
160 else
161 {
162 until_collection::iterator pos, end = m_until_points.end();
163 for (pos = m_until_points.begin(); pos != end; pos++)
164 {
165 if (!LLDB_BREAK_ID_IS_VALID ((*pos).second))
166 return false;
167 }
168 return true;
169 }
170}
171
172void
173ThreadPlanStepUntil::AnalyzeStop()
174{
175 if (m_ran_analyze)
176 return;
177
Jim Ingham60c41182013-06-04 01:40:51 +0000178 StopInfoSP stop_info_sp = GetPrivateStopInfo ();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000179 m_should_stop = true;
180 m_explains_stop = false;
181
Jim Inghamb15bfc72010-10-20 00:39:53 +0000182 if (stop_info_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000183 {
Jim Inghamb15bfc72010-10-20 00:39:53 +0000184 StopReason reason = stop_info_sp->GetStopReason();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000185
Jim Ingham9b03fa02015-07-23 19:55:02 +0000186 if (reason == eStopReasonBreakpoint)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000187 {
Jim Ingham9b03fa02015-07-23 19:55:02 +0000188 // If this is OUR breakpoint, we're fine, otherwise we don't know why this happened...
189 BreakpointSiteSP this_site = m_thread.GetProcess()->GetBreakpointSiteList().FindByID (stop_info_sp->GetValue());
190 if (!this_site)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000191 {
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000192 m_explains_stop = false;
193 return;
194 }
Jim Ingham9b03fa02015-07-23 19:55:02 +0000195
196 if (this_site->IsBreakpointAtThisSite (m_return_bp_id))
197 {
198 // If we are at our "step out" breakpoint, and the stack depth has shrunk, then
199 // this is indeed our stop.
200 // If the stack depth has grown, then we've hit our step out breakpoint recursively.
201 // If we are the only breakpoint at that location, then we do explain the stop, and
202 // we'll just continue.
203 // If there was another breakpoint here, then we don't explain the stop, but we won't
204 // mark ourselves Completed, because maybe that breakpoint will continue, and then
205 // we'll finish the "until".
206 bool done;
207 StackID cur_frame_zero_id;
208
209 if (m_stack_id < cur_frame_zero_id)
210 done = true;
211 else
212 done = false;
213
214 if (done)
215 {
216 m_stepped_out = true;
217 SetPlanComplete();
218 }
219 else
220 m_should_stop = false;
221
222 if (this_site->GetNumberOfOwners() == 1)
223 m_explains_stop = true;
224 else
225 m_explains_stop = false;
226 return;
227 }
228 else
229 {
230 // Check if we've hit one of our "until" breakpoints.
231 until_collection::iterator pos, end = m_until_points.end();
232 for (pos = m_until_points.begin(); pos != end; pos++)
233 {
234 if (this_site->IsBreakpointAtThisSite ((*pos).second))
235 {
236 // If we're at the right stack depth, then we're done.
237
238 bool done;
239 StackID frame_zero_id = m_thread.GetStackFrameAtIndex(0)->GetStackID();
240
241 if (frame_zero_id == m_stack_id)
242 done = true;
243 else if (frame_zero_id < m_stack_id)
244 done = false;
245 else
246 {
247 StackFrameSP older_frame_sp = m_thread.GetStackFrameAtIndex(1);
248
249 // But if we can't even unwind one frame we should just get out of here & stop...
250 if (older_frame_sp)
251 {
252 const SymbolContext &older_context
253 = older_frame_sp->GetSymbolContext(eSymbolContextEverything);
254 SymbolContext stack_context;
255 m_stack_id.GetSymbolContextScope()->CalculateSymbolContext(&stack_context);
256
257 if (older_context == stack_context)
258 done = true;
259 else
260 done = false;
261 }
262 else
263 done = false;
264 }
265
266 if (done)
267 SetPlanComplete();
268 else
269 m_should_stop = false;
270
271 // Otherwise we've hit this breakpoint recursively. If we're the
272 // only breakpoint here, then we do explain the stop, and we'll continue.
273 // If not then we should let higher plans handle this stop.
274 if (this_site->GetNumberOfOwners() == 1)
275 m_explains_stop = true;
276 else
277 {
278 m_should_stop = true;
279 m_explains_stop = false;
280 }
281 return;
282 }
283 }
284 }
285 // If we get here we haven't hit any of our breakpoints, so let the higher
286 // plans take care of the stop.
287 m_explains_stop = false;
288 return;
289 }
290 else if (IsUsuallyUnexplainedStopReason(reason))
291 {
292 m_explains_stop = false;
293 }
294 else
295 {
296 m_explains_stop = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000297 }
298 }
299}
300
301bool
Jim Ingham221d51c2013-05-08 00:35:16 +0000302ThreadPlanStepUntil::DoPlanExplainsStop (Event *event_ptr)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000303{
304 // We don't explain signals or breakpoints (breakpoints that handle stepping in or
305 // out will be handled by a child plan.
306 AnalyzeStop();
307 return m_explains_stop;
308}
309
310bool
311ThreadPlanStepUntil::ShouldStop (Event *event_ptr)
312{
313 // If we've told our self in ExplainsStop that we plan to continue, then
314 // do so here. Otherwise, as long as this thread has stopped for a reason,
315 // we will stop.
316
Jim Ingham60c41182013-06-04 01:40:51 +0000317 StopInfoSP stop_info_sp = GetPrivateStopInfo ();
Sean Callanan9a028512012-08-09 00:50:26 +0000318 if (!stop_info_sp || stop_info_sp->GetStopReason() == eStopReasonNone)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000319 return false;
320
321 AnalyzeStop();
322 return m_should_stop;
323}
324
325bool
326ThreadPlanStepUntil::StopOthers ()
327{
328 return m_stop_others;
329}
330
331StateType
Jim Ingham06e827c2010-11-11 19:26:09 +0000332ThreadPlanStepUntil::GetPlanRunState ()
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000333{
334 return eStateRunning;
335}
336
337bool
Jim Ingham221d51c2013-05-08 00:35:16 +0000338ThreadPlanStepUntil::DoWillResume (StateType resume_state, bool current_plan)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000339{
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000340 if (current_plan)
341 {
Greg Clayton1ac04c32012-02-21 00:09:25 +0000342 TargetSP target_sp (m_thread.CalculateTarget());
343 if (target_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000344 {
Greg Clayton1ac04c32012-02-21 00:09:25 +0000345 Breakpoint *return_bp = target_sp->GetBreakpointByID(m_return_bp_id).get();
346 if (return_bp != NULL)
347 return_bp->SetEnabled (true);
348
349 until_collection::iterator pos, end = m_until_points.end();
350 for (pos = m_until_points.begin(); pos != end; pos++)
351 {
352 Breakpoint *until_bp = target_sp->GetBreakpointByID((*pos).second).get();
353 if (until_bp != NULL)
354 until_bp->SetEnabled (true);
355 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000356 }
357 }
358
359 m_should_stop = true;
360 m_ran_analyze = false;
361 m_explains_stop = false;
362 return true;
363}
364
365bool
366ThreadPlanStepUntil::WillStop ()
367{
Greg Clayton1ac04c32012-02-21 00:09:25 +0000368 TargetSP target_sp (m_thread.CalculateTarget());
369 if (target_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000370 {
Greg Clayton1ac04c32012-02-21 00:09:25 +0000371 Breakpoint *return_bp = target_sp->GetBreakpointByID(m_return_bp_id).get();
372 if (return_bp != NULL)
373 return_bp->SetEnabled (false);
374
375 until_collection::iterator pos, end = m_until_points.end();
376 for (pos = m_until_points.begin(); pos != end; pos++)
377 {
378 Breakpoint *until_bp = target_sp->GetBreakpointByID((*pos).second).get();
379 if (until_bp != NULL)
380 until_bp->SetEnabled (false);
381 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000382 }
383 return true;
384}
385
386bool
387ThreadPlanStepUntil::MischiefManaged ()
388{
389
390 // I'm letting "PlanExplainsStop" do all the work, and just reporting that here.
391 bool done = false;
392 if (IsPlanComplete())
393 {
Greg Clayton5160ce52013-03-27 23:08:40 +0000394 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000395 if (log)
396 log->Printf("Completed step until plan.");
397
398 Clear();
399 done = true;
400 }
401 if (done)
402 ThreadPlan::MischiefManaged ();
403
404 return done;
405
406}
407