blob: 6c5a9954f23f4441db414d6c2086f388826c8f0a [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- ThreadPlanStepInRange.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
Chris Lattner30fdc8d2010-06-08 16:52:24 +000010// C Includes
11// C++ Includes
12// Other libraries and framework includes
13// Project includes
Eugene Zelenkoe65b2cf2015-12-15 01:33:19 +000014#include "lldb/Target/ThreadPlanStepInRange.h"
Jim Ingham4da62062014-01-23 21:52:47 +000015#include "lldb/Core/Module.h"
Jim Ingham7ce490c2010-09-16 00:58:09 +000016#include "lldb/Symbol/Function.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000017#include "lldb/Symbol/Symbol.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000018#include "lldb/Target/Process.h"
19#include "lldb/Target/RegisterContext.h"
Greg Clayton514487e2011-02-15 21:59:32 +000020#include "lldb/Target/Target.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000021#include "lldb/Target/Thread.h"
22#include "lldb/Target/ThreadPlanStepOut.h"
23#include "lldb/Target/ThreadPlanStepThrough.h"
Zachary Turner6f9e6902017-03-03 20:56:28 +000024#include "lldb/Utility/Log.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000025#include "lldb/Utility/RegularExpression.h"
26#include "lldb/Utility/Stream.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000027
28using namespace lldb;
29using namespace lldb_private;
30
Kate Stoneb9c1b512016-09-06 20:57:50 +000031uint32_t ThreadPlanStepInRange::s_default_flag_values =
32 ThreadPlanShouldStopHere::eStepInAvoidNoDebug;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000033
34//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +000035// ThreadPlanStepInRange: Step through a stack range, either stepping over or
36// into
Chris Lattner30fdc8d2010-06-08 16:52:24 +000037// based on the value of \a type.
38//----------------------------------------------------------------------
39
Kate Stoneb9c1b512016-09-06 20:57:50 +000040ThreadPlanStepInRange::ThreadPlanStepInRange(
41 Thread &thread, const AddressRange &range,
42 const SymbolContext &addr_context, lldb::RunMode stop_others,
Jim Ingham4b4b2472014-03-13 02:47:14 +000043 LazyBool step_in_avoids_code_without_debug_info,
Kate Stoneb9c1b512016-09-06 20:57:50 +000044 LazyBool step_out_avoids_code_without_debug_info)
45 : ThreadPlanStepRange(ThreadPlan::eKindStepInRange,
46 "Step Range stepping in", thread, range, addr_context,
47 stop_others),
48 ThreadPlanShouldStopHere(this), m_step_past_prologue(true),
49 m_virtual_step(false) {
50 SetCallbacks();
51 SetFlagsToDefault();
52 SetupAvoidNoDebug(step_in_avoids_code_without_debug_info,
53 step_out_avoids_code_without_debug_info);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000054}
55
Kate Stoneb9c1b512016-09-06 20:57:50 +000056ThreadPlanStepInRange::ThreadPlanStepInRange(
57 Thread &thread, const AddressRange &range,
58 const SymbolContext &addr_context, const char *step_into_target,
59 lldb::RunMode stop_others, LazyBool step_in_avoids_code_without_debug_info,
60 LazyBool step_out_avoids_code_without_debug_info)
61 : ThreadPlanStepRange(ThreadPlan::eKindStepInRange,
62 "Step Range stepping in", thread, range, addr_context,
63 stop_others),
64 ThreadPlanShouldStopHere(this), m_step_past_prologue(true),
65 m_virtual_step(false), m_step_into_target(step_into_target) {
66 SetCallbacks();
67 SetFlagsToDefault();
68 SetupAvoidNoDebug(step_in_avoids_code_without_debug_info,
69 step_out_avoids_code_without_debug_info);
Jim Inghamc6276822012-12-12 19:58:40 +000070}
71
Eugene Zelenkoe65b2cf2015-12-15 01:33:19 +000072ThreadPlanStepInRange::~ThreadPlanStepInRange() = default;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000073
Kate Stoneb9c1b512016-09-06 20:57:50 +000074void ThreadPlanStepInRange::SetupAvoidNoDebug(
75 LazyBool step_in_avoids_code_without_debug_info,
76 LazyBool step_out_avoids_code_without_debug_info) {
77 bool avoid_nodebug = true;
78
79 switch (step_in_avoids_code_without_debug_info) {
80 case eLazyBoolYes:
81 avoid_nodebug = true;
82 break;
83 case eLazyBoolNo:
84 avoid_nodebug = false;
85 break;
86 case eLazyBoolCalculate:
87 avoid_nodebug = m_thread.GetStepInAvoidsNoDebug();
88 break;
89 }
90 if (avoid_nodebug)
91 GetFlags().Set(ThreadPlanShouldStopHere::eStepInAvoidNoDebug);
92 else
93 GetFlags().Clear(ThreadPlanShouldStopHere::eStepInAvoidNoDebug);
94
95 switch (step_out_avoids_code_without_debug_info) {
96 case eLazyBoolYes:
97 avoid_nodebug = true;
98 break;
99 case eLazyBoolNo:
100 avoid_nodebug = false;
101 break;
102 case eLazyBoolCalculate:
103 avoid_nodebug = m_thread.GetStepOutAvoidsNoDebug();
104 break;
105 }
106 if (avoid_nodebug)
107 GetFlags().Set(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug);
108 else
109 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug);
Jim Ingham4b4b2472014-03-13 02:47:14 +0000110}
111
Kate Stoneb9c1b512016-09-06 20:57:50 +0000112void ThreadPlanStepInRange::GetDescription(Stream *s,
113 lldb::DescriptionLevel level) {
114 if (level == lldb::eDescriptionLevelBrief) {
115 s->Printf("step in");
116 return;
117 }
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000118
Kate Stoneb9c1b512016-09-06 20:57:50 +0000119 s->Printf("Stepping in");
120 bool printed_line_info = false;
121 if (m_addr_context.line_entry.IsValid()) {
122 s->Printf(" through line ");
123 m_addr_context.line_entry.DumpStopContext(s, false);
124 printed_line_info = true;
125 }
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000126
Kate Stoneb9c1b512016-09-06 20:57:50 +0000127 const char *step_into_target = m_step_into_target.AsCString();
128 if (step_into_target && step_into_target[0] != '\0')
129 s->Printf(" targeting %s", m_step_into_target.AsCString());
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000130
Kate Stoneb9c1b512016-09-06 20:57:50 +0000131 if (!printed_line_info || level == eDescriptionLevelVerbose) {
132 s->Printf(" using ranges:");
133 DumpRanges(s);
134 }
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000135
Kate Stoneb9c1b512016-09-06 20:57:50 +0000136 s->PutChar('.');
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000137}
138
Kate Stoneb9c1b512016-09-06 20:57:50 +0000139bool ThreadPlanStepInRange::ShouldStop(Event *event_ptr) {
140 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000141
Kate Stoneb9c1b512016-09-06 20:57:50 +0000142 if (log) {
143 StreamString s;
144 s.Address(
145 m_thread.GetRegisterContext()->GetPC(),
146 m_thread.CalculateTarget()->GetArchitecture().GetAddressByteSize());
147 log->Printf("ThreadPlanStepInRange reached %s.", s.GetData());
148 }
Jim Inghamf02a2e92012-09-07 01:11:44 +0000149
Kate Stoneb9c1b512016-09-06 20:57:50 +0000150 if (IsPlanComplete())
Jim Ingham221d51c2013-05-08 00:35:16 +0000151 return true;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000152
153 m_no_more_plans = false;
154 if (m_sub_plan_sp && m_sub_plan_sp->IsPlanComplete()) {
155 if (!m_sub_plan_sp->PlanSucceeded()) {
156 SetPlanComplete();
157 m_no_more_plans = true;
158 return true;
159 } else
160 m_sub_plan_sp.reset();
161 }
162
163 if (m_virtual_step) {
164 // If we've just completed a virtual step, all we need to do is check for a
165 // ShouldStopHere plan, and otherwise
166 // we're done.
167 // FIXME - This can be both a step in and a step out. Probably should
168 // record which in the m_virtual_step.
169 m_sub_plan_sp = CheckShouldStopHereAndQueueStepOut(eFrameCompareYounger);
170 } else {
171 // Stepping through should be done running other threads in general, since
172 // we're setting a breakpoint and
173 // continuing. So only stop others if we are explicitly told to do so.
174
175 bool stop_others = (m_stop_others == lldb::eOnlyThisThread);
176
177 FrameComparison frame_order = CompareCurrentFrameToStartFrame();
178
179 if (frame_order == eFrameCompareOlder ||
180 frame_order == eFrameCompareSameParent) {
181 // If we're in an older frame then we should stop.
182 //
183 // A caveat to this is if we think the frame is older but we're actually
184 // in a trampoline.
185 // I'm going to make the assumption that you wouldn't RETURN to a
186 // trampoline. So if we are
187 // in a trampoline we think the frame is older because the trampoline
188 // confused the backtracer.
189 m_sub_plan_sp = m_thread.QueueThreadPlanForStepThrough(m_stack_id, false,
190 stop_others);
191 if (!m_sub_plan_sp) {
192 // Otherwise check the ShouldStopHere for step out:
193 m_sub_plan_sp = CheckShouldStopHereAndQueueStepOut(frame_order);
Jim Inghama4bb80b2017-08-23 19:40:21 +0000194 if (log) {
195 if (m_sub_plan_sp)
196 log->Printf("ShouldStopHere found plan to step out of this frame.");
197 else
198 log->Printf("ShouldStopHere no plan to step out of this frame.");
199 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000200 } else if (log) {
201 log->Printf(
202 "Thought I stepped out, but in fact arrived at a trampoline.");
203 }
204 } else if (frame_order == eFrameCompareEqual && InSymbol()) {
205 // If we are not in a place we should step through, we're done.
206 // One tricky bit here is that some stubs don't push a frame, so we have
207 // to check
208 // both the case of a frame that is younger, or the same as this frame.
209 // However, if the frame is the same, and we are still in the symbol we
210 // started
211 // in, the we don't need to do this. This first check isn't strictly
212 // necessary,
213 // but it is more efficient.
214
215 // If we're still in the range, keep going, either by running to the next
216 // branch breakpoint, or by
217 // stepping.
218 if (InRange()) {
219 SetNextBranchBreakpoint();
220 return false;
221 }
222
223 SetPlanComplete();
224 m_no_more_plans = true;
225 return true;
226 }
227
228 // If we get to this point, we're not going to use a previously set "next
229 // branch" breakpoint, so delete it:
230 ClearNextBranchBreakpoint();
231
232 // We may have set the plan up above in the FrameIsOlder section:
233
234 if (!m_sub_plan_sp)
235 m_sub_plan_sp = m_thread.QueueThreadPlanForStepThrough(m_stack_id, false,
236 stop_others);
237
238 if (log) {
239 if (m_sub_plan_sp)
240 log->Printf("Found a step through plan: %s", m_sub_plan_sp->GetName());
241 else
242 log->Printf("No step through plan found.");
243 }
244
245 // If not, give the "should_stop" callback a chance to push a plan to get us
246 // out of here.
247 // But only do that if we actually have stepped in.
248 if (!m_sub_plan_sp && frame_order == eFrameCompareYounger)
249 m_sub_plan_sp = CheckShouldStopHereAndQueueStepOut(frame_order);
250
251 // If we've stepped in and we are going to stop here, check to see if we
252 // were asked to
253 // run past the prologue, and if so do that.
254
255 if (!m_sub_plan_sp && frame_order == eFrameCompareYounger &&
256 m_step_past_prologue) {
257 lldb::StackFrameSP curr_frame = m_thread.GetStackFrameAtIndex(0);
258 if (curr_frame) {
259 size_t bytes_to_skip = 0;
260 lldb::addr_t curr_addr = m_thread.GetRegisterContext()->GetPC();
261 Address func_start_address;
262
263 SymbolContext sc = curr_frame->GetSymbolContext(eSymbolContextFunction |
264 eSymbolContextSymbol);
265
266 if (sc.function) {
267 func_start_address = sc.function->GetAddressRange().GetBaseAddress();
268 if (curr_addr ==
269 func_start_address.GetLoadAddress(
270 m_thread.CalculateTarget().get()))
271 bytes_to_skip = sc.function->GetPrologueByteSize();
272 } else if (sc.symbol) {
273 func_start_address = sc.symbol->GetAddress();
274 if (curr_addr ==
275 func_start_address.GetLoadAddress(
276 m_thread.CalculateTarget().get()))
277 bytes_to_skip = sc.symbol->GetPrologueByteSize();
278 }
279
280 if (bytes_to_skip != 0) {
281 func_start_address.Slide(bytes_to_skip);
282 log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP);
283 if (log)
284 log->Printf("Pushing past prologue ");
285
286 m_sub_plan_sp = m_thread.QueueThreadPlanForRunToAddress(
287 false, func_start_address, true);
288 }
289 }
290 }
291 }
292
293 if (!m_sub_plan_sp) {
294 m_no_more_plans = true;
295 SetPlanComplete();
296 return true;
297 } else {
298 m_no_more_plans = false;
299 m_sub_plan_sp->SetPrivate(true);
300 return false;
301 }
Jim Ingham513c6bb2012-09-01 01:02:41 +0000302}
Daniel Malea246cb612013-05-14 15:20:12 +0000303
Kate Stoneb9c1b512016-09-06 20:57:50 +0000304void ThreadPlanStepInRange::SetAvoidRegexp(const char *name) {
Zachary Turner95eae422016-09-21 16:01:28 +0000305 auto name_ref = llvm::StringRef::withNullAsEmpty(name);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000306 if (!m_avoid_regexp_ap)
Zachary Turner95eae422016-09-21 16:01:28 +0000307 m_avoid_regexp_ap.reset(new RegularExpression(name_ref));
Kate Stoneb9c1b512016-09-06 20:57:50 +0000308
Zachary Turner95eae422016-09-21 16:01:28 +0000309 m_avoid_regexp_ap->Compile(name_ref);
Daniel Malea246cb612013-05-14 15:20:12 +0000310}
Kate Stoneb9c1b512016-09-06 20:57:50 +0000311
312void ThreadPlanStepInRange::SetDefaultFlagValue(uint32_t new_value) {
313 // TODO: Should we test this for sanity?
314 ThreadPlanStepInRange::s_default_flag_values = new_value;
315}
316
317bool ThreadPlanStepInRange::FrameMatchesAvoidCriteria() {
318 StackFrame *frame = GetThread().GetStackFrameAtIndex(0).get();
319
320 // Check the library list first, as that's cheapest:
321 bool libraries_say_avoid = false;
322
323 FileSpecList libraries_to_avoid(GetThread().GetLibrariesToAvoid());
324 size_t num_libraries = libraries_to_avoid.GetSize();
325 if (num_libraries > 0) {
326 SymbolContext sc(frame->GetSymbolContext(eSymbolContextModule));
327 FileSpec frame_library(sc.module_sp->GetFileSpec());
328
329 if (frame_library) {
330 for (size_t i = 0; i < num_libraries; i++) {
331 const FileSpec &file_spec(libraries_to_avoid.GetFileSpecAtIndex(i));
332 if (FileSpec::Equal(file_spec, frame_library, false)) {
333 libraries_say_avoid = true;
334 break;
335 }
336 }
337 }
338 }
339 if (libraries_say_avoid)
340 return true;
341
342 const RegularExpression *avoid_regexp_to_use = m_avoid_regexp_ap.get();
343 if (avoid_regexp_to_use == nullptr)
344 avoid_regexp_to_use = GetThread().GetSymbolsToAvoidRegexp();
345
346 if (avoid_regexp_to_use != nullptr) {
347 SymbolContext sc = frame->GetSymbolContext(
348 eSymbolContextFunction | eSymbolContextBlock | eSymbolContextSymbol);
349 if (sc.symbol != nullptr) {
350 const char *frame_function_name =
351 sc.GetFunctionName(Mangled::ePreferDemangledWithoutArguments)
352 .GetCString();
353 if (frame_function_name) {
354 size_t num_matches = 0;
355 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
356 if (log)
357 num_matches = 1;
358
359 RegularExpression::Match regex_match(num_matches);
360
361 bool return_value =
362 avoid_regexp_to_use->Execute(frame_function_name, &regex_match);
363 if (return_value) {
364 if (log) {
365 std::string match;
366 regex_match.GetMatchAtIndex(frame_function_name, 0, match);
367 log->Printf("Stepping out of function \"%s\" because it matches "
368 "the avoid regexp \"%s\" - match substring: \"%s\".",
Zachary Turner95eae422016-09-21 16:01:28 +0000369 frame_function_name,
370 avoid_regexp_to_use->GetText().str().c_str(),
Kate Stoneb9c1b512016-09-06 20:57:50 +0000371 match.c_str());
372 }
373 }
374 return return_value;
375 }
376 }
377 }
378 return false;
379}
380
381bool ThreadPlanStepInRange::DefaultShouldStopHereCallback(
382 ThreadPlan *current_plan, Flags &flags, FrameComparison operation,
383 void *baton) {
384 bool should_stop_here = true;
385 StackFrame *frame = current_plan->GetThread().GetStackFrameAtIndex(0).get();
386 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
387
388 // First see if the ThreadPlanShouldStopHere default implementation thinks we
389 // should get out of here:
390 should_stop_here = ThreadPlanShouldStopHere::DefaultShouldStopHereCallback(
391 current_plan, flags, operation, baton);
392 if (!should_stop_here)
393 return should_stop_here;
394
395 if (should_stop_here && current_plan->GetKind() == eKindStepInRange &&
396 operation == eFrameCompareYounger) {
397 ThreadPlanStepInRange *step_in_range_plan =
398 static_cast<ThreadPlanStepInRange *>(current_plan);
399 if (step_in_range_plan->m_step_into_target) {
400 SymbolContext sc = frame->GetSymbolContext(
401 eSymbolContextFunction | eSymbolContextBlock | eSymbolContextSymbol);
402 if (sc.symbol != nullptr) {
403 // First try an exact match, since that's cheap with ConstStrings. Then
404 // do a strstr compare.
405 if (step_in_range_plan->m_step_into_target == sc.GetFunctionName()) {
406 should_stop_here = true;
407 } else {
408 const char *target_name =
409 step_in_range_plan->m_step_into_target.AsCString();
410 const char *function_name = sc.GetFunctionName().AsCString();
411
412 if (function_name == nullptr)
413 should_stop_here = false;
414 else if (strstr(function_name, target_name) == nullptr)
415 should_stop_here = false;
416 }
417 if (log && !should_stop_here)
418 log->Printf("Stepping out of frame %s which did not match step into "
419 "target %s.",
420 sc.GetFunctionName().AsCString(),
421 step_in_range_plan->m_step_into_target.AsCString());
422 }
423 }
424
425 if (should_stop_here) {
426 ThreadPlanStepInRange *step_in_range_plan =
427 static_cast<ThreadPlanStepInRange *>(current_plan);
428 // Don't log the should_step_out here, it's easier to do it in
429 // FrameMatchesAvoidCriteria.
430 should_stop_here = !step_in_range_plan->FrameMatchesAvoidCriteria();
431 }
432 }
433
434 return should_stop_here;
435}
436
437bool ThreadPlanStepInRange::DoPlanExplainsStop(Event *event_ptr) {
438 // We always explain a stop. Either we've just done a single step, in which
439 // case we'll do our ordinary processing, or we stopped for some
440 // reason that isn't handled by our sub-plans, in which case we want to just
441 // stop right
442 // away.
443 // In general, we don't want to mark the plan as complete for unexplained
444 // stops.
445 // For instance, if you step in to some code with no debug info, so you step
446 // out
447 // and in the course of that hit a breakpoint, then you want to stop & show
448 // the user
449 // the breakpoint, but not unship the step in plan, since you still may want
450 // to complete that
451 // plan when you continue. This is particularly true when doing "step in to
452 // target function."
453 // stepping.
454 //
455 // The only variation is that if we are doing "step by running to next branch"
456 // in which case
457 // if we hit our branch breakpoint we don't set the plan to complete.
458
459 bool return_value = false;
460
461 if (m_virtual_step) {
462 return_value = true;
463 } else {
464 StopInfoSP stop_info_sp = GetPrivateStopInfo();
465 if (stop_info_sp) {
466 StopReason reason = stop_info_sp->GetStopReason();
467
468 if (reason == eStopReasonBreakpoint) {
469 if (NextRangeBreakpointExplainsStop(stop_info_sp)) {
470 return_value = true;
471 }
472 } else if (IsUsuallyUnexplainedStopReason(reason)) {
473 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
474 if (log)
475 log->PutCString("ThreadPlanStepInRange got asked if it explains the "
476 "stop for some reason other than step.");
477 return_value = false;
478 } else {
479 return_value = true;
480 }
481 } else
482 return_value = true;
483 }
484
485 return return_value;
486}
487
488bool ThreadPlanStepInRange::DoWillResume(lldb::StateType resume_state,
489 bool current_plan) {
490 m_virtual_step = false;
491 if (resume_state == eStateStepping && current_plan) {
492 // See if we are about to step over a virtual inlined call.
493 bool step_without_resume = m_thread.DecrementCurrentInlinedDepth();
494 if (step_without_resume) {
495 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
496 if (log)
497 log->Printf("ThreadPlanStepInRange::DoWillResume: returning false, "
498 "inline_depth: %d",
499 m_thread.GetCurrentInlinedDepth());
500 SetStopInfo(StopInfo::CreateStopReasonToTrace(m_thread));
501
502 // FIXME: Maybe it would be better to create a InlineStep stop reason, but
503 // then
504 // the whole rest of the world would have to handle that stop reason.
505 m_virtual_step = true;
506 }
507 return !step_without_resume;
508 }
509 return true;
510}
511
512bool ThreadPlanStepInRange::IsVirtualStep() { return m_virtual_step; }