130fdc8d8SChris Lattner //===-- ThreadPlanStepInRange.cpp -------------------------------*- C++ -*-===//
230fdc8d8SChris Lattner //
330fdc8d8SChris Lattner //                     The LLVM Compiler Infrastructure
430fdc8d8SChris Lattner //
530fdc8d8SChris Lattner // This file is distributed under the University of Illinois Open Source
630fdc8d8SChris Lattner // License. See LICENSE.TXT for details.
730fdc8d8SChris Lattner //
830fdc8d8SChris Lattner //===----------------------------------------------------------------------===//
930fdc8d8SChris Lattner 
1030fdc8d8SChris Lattner // C Includes
1130fdc8d8SChris Lattner // C++ Includes
1230fdc8d8SChris Lattner // Other libraries and framework includes
1330fdc8d8SChris Lattner // Project includes
14e65b2cf2SEugene Zelenko #include "lldb/Target/ThreadPlanStepInRange.h"
154da6206dSJim Ingham #include "lldb/Core/Module.h"
167ce490c6SJim Ingham #include "lldb/Symbol/Function.h"
17b9c1b51eSKate Stone #include "lldb/Symbol/Symbol.h"
1830fdc8d8SChris Lattner #include "lldb/Target/Process.h"
1930fdc8d8SChris Lattner #include "lldb/Target/RegisterContext.h"
20514487e8SGreg Clayton #include "lldb/Target/Target.h"
2130fdc8d8SChris Lattner #include "lldb/Target/Thread.h"
2230fdc8d8SChris Lattner #include "lldb/Target/ThreadPlanStepOut.h"
2330fdc8d8SChris Lattner #include "lldb/Target/ThreadPlanStepThrough.h"
246f9e6901SZachary Turner #include "lldb/Utility/Log.h"
25bf9a7730SZachary Turner #include "lldb/Utility/RegularExpression.h"
26bf9a7730SZachary Turner #include "lldb/Utility/Stream.h"
2730fdc8d8SChris Lattner 
2830fdc8d8SChris Lattner using namespace lldb;
2930fdc8d8SChris Lattner using namespace lldb_private;
3030fdc8d8SChris Lattner 
31b9c1b51eSKate Stone uint32_t ThreadPlanStepInRange::s_default_flag_values =
32b9c1b51eSKate Stone     ThreadPlanShouldStopHere::eStepInAvoidNoDebug;
3330fdc8d8SChris Lattner 
3430fdc8d8SChris Lattner //----------------------------------------------------------------------
35b9c1b51eSKate Stone // ThreadPlanStepInRange: Step through a stack range, either stepping over or
36b9c1b51eSKate Stone // into
3730fdc8d8SChris Lattner // based on the value of \a type.
3830fdc8d8SChris Lattner //----------------------------------------------------------------------
3930fdc8d8SChris Lattner 
40b9c1b51eSKate Stone ThreadPlanStepInRange::ThreadPlanStepInRange(
41b9c1b51eSKate Stone     Thread &thread, const AddressRange &range,
42b9c1b51eSKate Stone     const SymbolContext &addr_context, lldb::RunMode stop_others,
434b4b2478SJim Ingham     LazyBool step_in_avoids_code_without_debug_info,
44b9c1b51eSKate Stone     LazyBool step_out_avoids_code_without_debug_info)
45b9c1b51eSKate Stone     : ThreadPlanStepRange(ThreadPlan::eKindStepInRange,
46b9c1b51eSKate Stone                           "Step Range stepping in", thread, range, addr_context,
47b9c1b51eSKate Stone                           stop_others),
48b9c1b51eSKate Stone       ThreadPlanShouldStopHere(this), m_step_past_prologue(true),
49b9c1b51eSKate Stone       m_virtual_step(false) {
504b4b2478SJim Ingham   SetCallbacks();
5130fdc8d8SChris Lattner   SetFlagsToDefault();
52b9c1b51eSKate Stone   SetupAvoidNoDebug(step_in_avoids_code_without_debug_info,
53b9c1b51eSKate Stone                     step_out_avoids_code_without_debug_info);
5430fdc8d8SChris Lattner }
5530fdc8d8SChris Lattner 
56b9c1b51eSKate Stone ThreadPlanStepInRange::ThreadPlanStepInRange(
57b9c1b51eSKate Stone     Thread &thread, const AddressRange &range,
58b9c1b51eSKate Stone     const SymbolContext &addr_context, const char *step_into_target,
59b9c1b51eSKate Stone     lldb::RunMode stop_others, LazyBool step_in_avoids_code_without_debug_info,
60b9c1b51eSKate Stone     LazyBool step_out_avoids_code_without_debug_info)
61b9c1b51eSKate Stone     : ThreadPlanStepRange(ThreadPlan::eKindStepInRange,
62b9c1b51eSKate Stone                           "Step Range stepping in", thread, range, addr_context,
63b9c1b51eSKate Stone                           stop_others),
64b9c1b51eSKate Stone       ThreadPlanShouldStopHere(this), m_step_past_prologue(true),
65b9c1b51eSKate Stone       m_virtual_step(false), m_step_into_target(step_into_target) {
664b4b2478SJim Ingham   SetCallbacks();
67c627682eSJim Ingham   SetFlagsToDefault();
68b9c1b51eSKate Stone   SetupAvoidNoDebug(step_in_avoids_code_without_debug_info,
69b9c1b51eSKate Stone                     step_out_avoids_code_without_debug_info);
70c627682eSJim Ingham }
71c627682eSJim Ingham 
72e65b2cf2SEugene Zelenko ThreadPlanStepInRange::~ThreadPlanStepInRange() = default;
7330fdc8d8SChris Lattner 
74b9c1b51eSKate Stone void ThreadPlanStepInRange::SetupAvoidNoDebug(
75b9c1b51eSKate Stone     LazyBool step_in_avoids_code_without_debug_info,
76b9c1b51eSKate Stone     LazyBool step_out_avoids_code_without_debug_info) {
774b4b2478SJim Ingham   bool avoid_nodebug = true;
784b4b2478SJim Ingham 
79b9c1b51eSKate Stone   switch (step_in_avoids_code_without_debug_info) {
804b4b2478SJim Ingham   case eLazyBoolYes:
814b4b2478SJim Ingham     avoid_nodebug = true;
824b4b2478SJim Ingham     break;
834b4b2478SJim Ingham   case eLazyBoolNo:
844b4b2478SJim Ingham     avoid_nodebug = false;
854b4b2478SJim Ingham     break;
864b4b2478SJim Ingham   case eLazyBoolCalculate:
874b4b2478SJim Ingham     avoid_nodebug = m_thread.GetStepInAvoidsNoDebug();
884b4b2478SJim Ingham     break;
894b4b2478SJim Ingham   }
904b4b2478SJim Ingham   if (avoid_nodebug)
914b4b2478SJim Ingham     GetFlags().Set(ThreadPlanShouldStopHere::eStepInAvoidNoDebug);
924b4b2478SJim Ingham   else
934b4b2478SJim Ingham     GetFlags().Clear(ThreadPlanShouldStopHere::eStepInAvoidNoDebug);
944b4b2478SJim Ingham 
95b9c1b51eSKate Stone   switch (step_out_avoids_code_without_debug_info) {
964b4b2478SJim Ingham   case eLazyBoolYes:
974b4b2478SJim Ingham     avoid_nodebug = true;
984b4b2478SJim Ingham     break;
994b4b2478SJim Ingham   case eLazyBoolNo:
1004b4b2478SJim Ingham     avoid_nodebug = false;
1014b4b2478SJim Ingham     break;
1024b4b2478SJim Ingham   case eLazyBoolCalculate:
1034b4b2478SJim Ingham     avoid_nodebug = m_thread.GetStepOutAvoidsNoDebug();
1044b4b2478SJim Ingham     break;
1054b4b2478SJim Ingham   }
1064b4b2478SJim Ingham   if (avoid_nodebug)
1074b4b2478SJim Ingham     GetFlags().Set(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug);
1084b4b2478SJim Ingham   else
1094b4b2478SJim Ingham     GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug);
1104b4b2478SJim Ingham }
1114b4b2478SJim Ingham 
112b9c1b51eSKate Stone void ThreadPlanStepInRange::GetDescription(Stream *s,
113b9c1b51eSKate Stone                                            lldb::DescriptionLevel level) {
114b9c1b51eSKate Stone   if (level == lldb::eDescriptionLevelBrief) {
1152bdbfd50SJim Ingham     s->Printf("step in");
1162bdbfd50SJim Ingham     return;
1172bdbfd50SJim Ingham   }
1182bdbfd50SJim Ingham 
1192bdbfd50SJim Ingham   s->Printf("Stepping in");
1202bdbfd50SJim Ingham   bool printed_line_info = false;
121b9c1b51eSKate Stone   if (m_addr_context.line_entry.IsValid()) {
1222bdbfd50SJim Ingham     s->Printf(" through line ");
1232bdbfd50SJim Ingham     m_addr_context.line_entry.DumpStopContext(s, false);
1242bdbfd50SJim Ingham     printed_line_info = true;
1252bdbfd50SJim Ingham   }
1262bdbfd50SJim Ingham 
1274d56e9c1SJim Ingham   const char *step_into_target = m_step_into_target.AsCString();
1284d56e9c1SJim Ingham   if (step_into_target && step_into_target[0] != '\0')
1292bdbfd50SJim Ingham     s->Printf(" targeting %s", m_step_into_target.AsCString());
1302bdbfd50SJim Ingham 
131b9c1b51eSKate Stone   if (!printed_line_info || level == eDescriptionLevelVerbose) {
1322bdbfd50SJim Ingham     s->Printf(" using ranges:");
1332bdbfd50SJim Ingham     DumpRanges(s);
13430fdc8d8SChris Lattner   }
1352bdbfd50SJim Ingham 
1362bdbfd50SJim Ingham   s->PutChar('.');
13730fdc8d8SChris Lattner }
13830fdc8d8SChris Lattner 
139b9c1b51eSKate Stone bool ThreadPlanStepInRange::ShouldStop(Event *event_ptr) {
1405160ce5cSGreg Clayton   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
14130fdc8d8SChris Lattner 
142b9c1b51eSKate Stone   if (log) {
14330fdc8d8SChris Lattner     StreamString s;
144b9c1b51eSKate Stone     s.Address(
145b9c1b51eSKate Stone         m_thread.GetRegisterContext()->GetPC(),
1461ac04c30SGreg Clayton         m_thread.CalculateTarget()->GetArchitecture().GetAddressByteSize());
14730fdc8d8SChris Lattner     log->Printf("ThreadPlanStepInRange reached %s.", s.GetData());
14830fdc8d8SChris Lattner   }
14930fdc8d8SChris Lattner 
15025f66700SJim Ingham   if (IsPlanComplete())
15125f66700SJim Ingham     return true;
15225f66700SJim Ingham 
1534d56e9c1SJim Ingham   m_no_more_plans = false;
154b9c1b51eSKate Stone   if (m_sub_plan_sp && m_sub_plan_sp->IsPlanComplete()) {
155b9c1b51eSKate Stone     if (!m_sub_plan_sp->PlanSucceeded()) {
1564d56e9c1SJim Ingham       SetPlanComplete();
1574d56e9c1SJim Ingham       m_no_more_plans = true;
1584d56e9c1SJim Ingham       return true;
159b9c1b51eSKate Stone     } else
1604d56e9c1SJim Ingham       m_sub_plan_sp.reset();
1614d56e9c1SJim Ingham   }
16230fdc8d8SChris Lattner 
163b9c1b51eSKate Stone   if (m_virtual_step) {
164b9c1b51eSKate Stone     // If we've just completed a virtual step, all we need to do is check for a
165b9c1b51eSKate Stone     // ShouldStopHere plan, and otherwise
166f02a2e96SJim Ingham     // we're done.
167b9c1b51eSKate Stone     // FIXME - This can be both a step in and a step out.  Probably should
168b9c1b51eSKate Stone     // record which in the m_virtual_step.
1694b4b2478SJim Ingham     m_sub_plan_sp = CheckShouldStopHereAndQueueStepOut(eFrameCompareYounger);
170b9c1b51eSKate Stone   } else {
171b9c1b51eSKate Stone     // Stepping through should be done running other threads in general, since
172b9c1b51eSKate Stone     // we're setting a breakpoint and
1734a58e968SJim Ingham     // continuing.  So only stop others if we are explicitly told to do so.
1749d790c5dSJim Ingham 
175e65b2cf2SEugene Zelenko     bool stop_others = (m_stop_others == lldb::eOnlyThisThread);
17630fdc8d8SChris Lattner 
177b5c0d1ccSJim Ingham     FrameComparison frame_order = CompareCurrentFrameToStartFrame();
178b5c0d1ccSJim Ingham 
179b9c1b51eSKate Stone     if (frame_order == eFrameCompareOlder ||
180b9c1b51eSKate Stone         frame_order == eFrameCompareSameParent) {
1815822173bSJim Ingham       // If we're in an older frame then we should stop.
1825822173bSJim Ingham       //
183b9c1b51eSKate Stone       // A caveat to this is if we think the frame is older but we're actually
184b9c1b51eSKate Stone       // in a trampoline.
185b9c1b51eSKate Stone       // I'm going to make the assumption that you wouldn't RETURN to a
186b9c1b51eSKate Stone       // trampoline.  So if we are
187b9c1b51eSKate Stone       // in a trampoline we think the frame is older because the trampoline
188b9c1b51eSKate Stone       // confused the backtracer.
189b9c1b51eSKate Stone       m_sub_plan_sp = m_thread.QueueThreadPlanForStepThrough(m_stack_id, false,
190b9c1b51eSKate Stone                                                              stop_others);
191b9c1b51eSKate Stone       if (!m_sub_plan_sp) {
1924b4b2478SJim Ingham         // Otherwise check the ShouldStopHere for step out:
193862d1bbdSJim Ingham         m_sub_plan_sp = CheckShouldStopHereAndQueueStepOut(frame_order);
194*a4bb80b2SJim Ingham         if (log) {
195*a4bb80b2SJim Ingham           if (m_sub_plan_sp)
196*a4bb80b2SJim Ingham             log->Printf("ShouldStopHere found plan to step out of this frame.");
197*a4bb80b2SJim Ingham           else
198*a4bb80b2SJim Ingham             log->Printf("ShouldStopHere no plan to step out of this frame.");
199*a4bb80b2SJim Ingham         }
200b9c1b51eSKate Stone       } else if (log) {
201b9c1b51eSKate Stone         log->Printf(
202b9c1b51eSKate Stone             "Thought I stepped out, but in fact arrived at a trampoline.");
2034b4b2478SJim Ingham       }
204b9c1b51eSKate Stone     } else if (frame_order == eFrameCompareEqual && InSymbol()) {
2055822173bSJim Ingham       // If we are not in a place we should step through, we're done.
206b9c1b51eSKate Stone       // One tricky bit here is that some stubs don't push a frame, so we have
207b9c1b51eSKate Stone       // to check
2085822173bSJim Ingham       // both the case of a frame that is younger, or the same as this frame.
209b9c1b51eSKate Stone       // However, if the frame is the same, and we are still in the symbol we
210b9c1b51eSKate Stone       // started
211b9c1b51eSKate Stone       // in, the we don't need to do this.  This first check isn't strictly
212b9c1b51eSKate Stone       // necessary,
2135822173bSJim Ingham       // but it is more efficient.
2145822173bSJim Ingham 
215b9c1b51eSKate Stone       // If we're still in the range, keep going, either by running to the next
216b9c1b51eSKate Stone       // branch breakpoint, or by
217564d8bc2SJim Ingham       // stepping.
218b9c1b51eSKate Stone       if (InRange()) {
219564d8bc2SJim Ingham         SetNextBranchBreakpoint();
220564d8bc2SJim Ingham         return false;
221564d8bc2SJim Ingham       }
222564d8bc2SJim Ingham 
2235822173bSJim Ingham       SetPlanComplete();
224c627682eSJim Ingham       m_no_more_plans = true;
2255822173bSJim Ingham       return true;
2265822173bSJim Ingham     }
2275822173bSJim Ingham 
228b9c1b51eSKate Stone     // If we get to this point, we're not going to use a previously set "next
229b9c1b51eSKate Stone     // branch" breakpoint, so delete it:
230564d8bc2SJim Ingham     ClearNextBranchBreakpoint();
231564d8bc2SJim Ingham 
2325822173bSJim Ingham     // We may have set the plan up above in the FrameIsOlder section:
2335822173bSJim Ingham 
2344d56e9c1SJim Ingham     if (!m_sub_plan_sp)
235b9c1b51eSKate Stone       m_sub_plan_sp = m_thread.QueueThreadPlanForStepThrough(m_stack_id, false,
236b9c1b51eSKate Stone                                                              stop_others);
23708b87e0dSJim Ingham 
238b9c1b51eSKate Stone     if (log) {
2394d56e9c1SJim Ingham       if (m_sub_plan_sp)
2404d56e9c1SJim Ingham         log->Printf("Found a step through plan: %s", m_sub_plan_sp->GetName());
24108b87e0dSJim Ingham       else
24208b87e0dSJim Ingham         log->Printf("No step through plan found.");
24308b87e0dSJim Ingham     }
24408b87e0dSJim Ingham 
245b9c1b51eSKate Stone     // If not, give the "should_stop" callback a chance to push a plan to get us
246b9c1b51eSKate Stone     // out of here.
24730fdc8d8SChris Lattner     // But only do that if we actually have stepped in.
2484d56e9c1SJim Ingham     if (!m_sub_plan_sp && frame_order == eFrameCompareYounger)
2494b4b2478SJim Ingham       m_sub_plan_sp = CheckShouldStopHereAndQueueStepOut(frame_order);
25030fdc8d8SChris Lattner 
251b9c1b51eSKate Stone     // If we've stepped in and we are going to stop here, check to see if we
252b9c1b51eSKate Stone     // were asked to
2537ce490c6SJim Ingham     // run past the prologue, and if so do that.
2547ce490c6SJim Ingham 
255b9c1b51eSKate Stone     if (!m_sub_plan_sp && frame_order == eFrameCompareYounger &&
256b9c1b51eSKate Stone         m_step_past_prologue) {
257b57e4a1bSJason Molenda       lldb::StackFrameSP curr_frame = m_thread.GetStackFrameAtIndex(0);
258b9c1b51eSKate Stone       if (curr_frame) {
2597ce490c6SJim Ingham         size_t bytes_to_skip = 0;
2607ce490c6SJim Ingham         lldb::addr_t curr_addr = m_thread.GetRegisterContext()->GetPC();
2617ce490c6SJim Ingham         Address func_start_address;
2627ce490c6SJim Ingham 
263b9c1b51eSKate Stone         SymbolContext sc = curr_frame->GetSymbolContext(eSymbolContextFunction |
264b9c1b51eSKate Stone                                                         eSymbolContextSymbol);
2657ce490c6SJim Ingham 
266b9c1b51eSKate Stone         if (sc.function) {
2677ce490c6SJim Ingham           func_start_address = sc.function->GetAddressRange().GetBaseAddress();
268b9c1b51eSKate Stone           if (curr_addr ==
269b9c1b51eSKate Stone               func_start_address.GetLoadAddress(
270b9c1b51eSKate Stone                   m_thread.CalculateTarget().get()))
2717ce490c6SJim Ingham             bytes_to_skip = sc.function->GetPrologueByteSize();
272b9c1b51eSKate Stone         } else if (sc.symbol) {
273e7612134SGreg Clayton           func_start_address = sc.symbol->GetAddress();
274b9c1b51eSKate Stone           if (curr_addr ==
275b9c1b51eSKate Stone               func_start_address.GetLoadAddress(
276b9c1b51eSKate Stone                   m_thread.CalculateTarget().get()))
2777ce490c6SJim Ingham             bytes_to_skip = sc.symbol->GetPrologueByteSize();
2787ce490c6SJim Ingham         }
2797ce490c6SJim Ingham 
280b9c1b51eSKate Stone         if (bytes_to_skip != 0) {
2817ce490c6SJim Ingham           func_start_address.Slide(bytes_to_skip);
28220ad3c40SCaroline Tice           log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP);
2837ce490c6SJim Ingham           if (log)
2847ce490c6SJim Ingham             log->Printf("Pushing past prologue ");
2857ce490c6SJim Ingham 
286b9c1b51eSKate Stone           m_sub_plan_sp = m_thread.QueueThreadPlanForRunToAddress(
287b9c1b51eSKate Stone               false, func_start_address, true);
2887ce490c6SJim Ingham         }
2897ce490c6SJim Ingham       }
2907ce490c6SJim Ingham     }
291f02a2e96SJim Ingham   }
2927ce490c6SJim Ingham 
293b9c1b51eSKate Stone   if (!m_sub_plan_sp) {
29430fdc8d8SChris Lattner     m_no_more_plans = true;
29530fdc8d8SChris Lattner     SetPlanComplete();
29630fdc8d8SChris Lattner     return true;
297b9c1b51eSKate Stone   } else {
29830fdc8d8SChris Lattner     m_no_more_plans = false;
2992bdbfd50SJim Ingham     m_sub_plan_sp->SetPrivate(true);
30030fdc8d8SChris Lattner     return false;
30130fdc8d8SChris Lattner   }
30230fdc8d8SChris Lattner }
30330fdc8d8SChris Lattner 
304b9c1b51eSKate Stone void ThreadPlanStepInRange::SetAvoidRegexp(const char *name) {
30595eae423SZachary Turner   auto name_ref = llvm::StringRef::withNullAsEmpty(name);
306e65b2cf2SEugene Zelenko   if (!m_avoid_regexp_ap)
30795eae423SZachary Turner     m_avoid_regexp_ap.reset(new RegularExpression(name_ref));
308a56c8006SJim Ingham 
30995eae423SZachary Turner   m_avoid_regexp_ap->Compile(name_ref);
310a56c8006SJim Ingham }
311a56c8006SJim Ingham 
312b9c1b51eSKate Stone void ThreadPlanStepInRange::SetDefaultFlagValue(uint32_t new_value) {
31330fdc8d8SChris Lattner   // TODO: Should we test this for sanity?
31430fdc8d8SChris Lattner   ThreadPlanStepInRange::s_default_flag_values = new_value;
31530fdc8d8SChris Lattner }
31630fdc8d8SChris Lattner 
317b9c1b51eSKate Stone bool ThreadPlanStepInRange::FrameMatchesAvoidCriteria() {
318b57e4a1bSJason Molenda   StackFrame *frame = GetThread().GetStackFrameAtIndex(0).get();
319a56c8006SJim Ingham 
3204da6206dSJim Ingham   // Check the library list first, as that's cheapest:
321a786e539SJim Ingham   bool libraries_say_avoid = false;
322a786e539SJim Ingham 
3234da6206dSJim Ingham   FileSpecList libraries_to_avoid(GetThread().GetLibrariesToAvoid());
3244da6206dSJim Ingham   size_t num_libraries = libraries_to_avoid.GetSize();
325b9c1b51eSKate Stone   if (num_libraries > 0) {
3264da6206dSJim Ingham     SymbolContext sc(frame->GetSymbolContext(eSymbolContextModule));
3274da6206dSJim Ingham     FileSpec frame_library(sc.module_sp->GetFileSpec());
3284da6206dSJim Ingham 
329b9c1b51eSKate Stone     if (frame_library) {
330b9c1b51eSKate Stone       for (size_t i = 0; i < num_libraries; i++) {
3314da6206dSJim Ingham         const FileSpec &file_spec(libraries_to_avoid.GetFileSpecAtIndex(i));
332b9c1b51eSKate Stone         if (FileSpec::Equal(file_spec, frame_library, false)) {
3334da6206dSJim Ingham           libraries_say_avoid = true;
3344da6206dSJim Ingham           break;
3354da6206dSJim Ingham         }
3364da6206dSJim Ingham       }
3374da6206dSJim Ingham     }
338a786e539SJim Ingham   }
3394da6206dSJim Ingham   if (libraries_say_avoid)
3404da6206dSJim Ingham     return true;
3414da6206dSJim Ingham 
34267cc0636SGreg Clayton   const RegularExpression *avoid_regexp_to_use = m_avoid_regexp_ap.get();
343e65b2cf2SEugene Zelenko   if (avoid_regexp_to_use == nullptr)
344ee8aea10SJim Ingham     avoid_regexp_to_use = GetThread().GetSymbolsToAvoidRegexp();
345ee8aea10SJim Ingham 
346b9c1b51eSKate Stone   if (avoid_regexp_to_use != nullptr) {
347b9c1b51eSKate Stone     SymbolContext sc = frame->GetSymbolContext(
348b9c1b51eSKate Stone         eSymbolContextFunction | eSymbolContextBlock | eSymbolContextSymbol);
349b9c1b51eSKate Stone     if (sc.symbol != nullptr) {
350b9c1b51eSKate Stone       const char *frame_function_name =
351b9c1b51eSKate Stone           sc.GetFunctionName(Mangled::ePreferDemangledWithoutArguments)
352b9c1b51eSKate Stone               .GetCString();
353b9c1b51eSKate Stone       if (frame_function_name) {
354cf2667c4SJim Ingham         size_t num_matches = 0;
3555160ce5cSGreg Clayton         Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
3563101ba33SJim Ingham         if (log)
357cf2667c4SJim Ingham           num_matches = 1;
358bc43cab5SGreg Clayton 
359bc43cab5SGreg Clayton         RegularExpression::Match regex_match(num_matches);
360bc43cab5SGreg Clayton 
361b9c1b51eSKate Stone         bool return_value =
362b9c1b51eSKate Stone             avoid_regexp_to_use->Execute(frame_function_name, &regex_match);
363b9c1b51eSKate Stone         if (return_value) {
364b9c1b51eSKate Stone           if (log) {
365cf2667c4SJim Ingham             std::string match;
366bc43cab5SGreg Clayton             regex_match.GetMatchAtIndex(frame_function_name, 0, match);
367b9c1b51eSKate Stone             log->Printf("Stepping out of function \"%s\" because it matches "
368b9c1b51eSKate Stone                         "the avoid regexp \"%s\" - match substring: \"%s\".",
36995eae423SZachary Turner                         frame_function_name,
37095eae423SZachary Turner                         avoid_regexp_to_use->GetText().str().c_str(),
371cf2667c4SJim Ingham                         match.c_str());
372cf2667c4SJim Ingham           }
3733101ba33SJim Ingham         }
3743101ba33SJim Ingham         return return_value;
3753101ba33SJim Ingham       }
376a56c8006SJim Ingham     }
377a56c8006SJim Ingham   }
378a56c8006SJim Ingham   return false;
379a56c8006SJim Ingham }
380a56c8006SJim Ingham 
381b9c1b51eSKate Stone bool ThreadPlanStepInRange::DefaultShouldStopHereCallback(
382b9c1b51eSKate Stone     ThreadPlan *current_plan, Flags &flags, FrameComparison operation,
383b9c1b51eSKate Stone     void *baton) {
3844b4b2478SJim Ingham   bool should_stop_here = true;
385b57e4a1bSJason Molenda   StackFrame *frame = current_plan->GetThread().GetStackFrameAtIndex(0).get();
3865160ce5cSGreg Clayton   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
38730fdc8d8SChris Lattner 
388b9c1b51eSKate Stone   // First see if the ThreadPlanShouldStopHere default implementation thinks we
389b9c1b51eSKate Stone   // should get out of here:
390b9c1b51eSKate Stone   should_stop_here = ThreadPlanShouldStopHere::DefaultShouldStopHereCallback(
391b9c1b51eSKate Stone       current_plan, flags, operation, baton);
3920c2b9d2aSJim Ingham   if (!should_stop_here)
3930c2b9d2aSJim Ingham     return should_stop_here;
394a56c8006SJim Ingham 
395b9c1b51eSKate Stone   if (should_stop_here && current_plan->GetKind() == eKindStepInRange &&
396b9c1b51eSKate Stone       operation == eFrameCompareYounger) {
397b9c1b51eSKate Stone     ThreadPlanStepInRange *step_in_range_plan =
398b9c1b51eSKate Stone         static_cast<ThreadPlanStepInRange *>(current_plan);
399b9c1b51eSKate Stone     if (step_in_range_plan->m_step_into_target) {
400b9c1b51eSKate Stone       SymbolContext sc = frame->GetSymbolContext(
401b9c1b51eSKate Stone           eSymbolContextFunction | eSymbolContextBlock | eSymbolContextSymbol);
402b9c1b51eSKate Stone       if (sc.symbol != nullptr) {
403b9c1b51eSKate Stone         // First try an exact match, since that's cheap with ConstStrings.  Then
404b9c1b51eSKate Stone         // do a strstr compare.
405b9c1b51eSKate Stone         if (step_in_range_plan->m_step_into_target == sc.GetFunctionName()) {
4064b4b2478SJim Ingham           should_stop_here = true;
407b9c1b51eSKate Stone         } else {
408b9c1b51eSKate Stone           const char *target_name =
409b9c1b51eSKate Stone               step_in_range_plan->m_step_into_target.AsCString();
410c627682eSJim Ingham           const char *function_name = sc.GetFunctionName().AsCString();
411c627682eSJim Ingham 
412e65b2cf2SEugene Zelenko           if (function_name == nullptr)
4134b4b2478SJim Ingham             should_stop_here = false;
414e65b2cf2SEugene Zelenko           else if (strstr(function_name, target_name) == nullptr)
4154b4b2478SJim Ingham             should_stop_here = false;
416c627682eSJim Ingham         }
4174b4b2478SJim Ingham         if (log && !should_stop_here)
418b9c1b51eSKate Stone           log->Printf("Stepping out of frame %s which did not match step into "
419b9c1b51eSKate Stone                       "target %s.",
4203101ba33SJim Ingham                       sc.GetFunctionName().AsCString(),
4213101ba33SJim Ingham                       step_in_range_plan->m_step_into_target.AsCString());
422c627682eSJim Ingham       }
423c627682eSJim Ingham     }
424c627682eSJim Ingham 
425b9c1b51eSKate Stone     if (should_stop_here) {
426b9c1b51eSKate Stone       ThreadPlanStepInRange *step_in_range_plan =
427b9c1b51eSKate Stone           static_cast<ThreadPlanStepInRange *>(current_plan);
428b9c1b51eSKate Stone       // Don't log the should_step_out here, it's easier to do it in
429b9c1b51eSKate Stone       // FrameMatchesAvoidCriteria.
4304b4b2478SJim Ingham       should_stop_here = !step_in_range_plan->FrameMatchesAvoidCriteria();
431a56c8006SJim Ingham     }
432a56c8006SJim Ingham   }
433a56c8006SJim Ingham 
4344b4b2478SJim Ingham   return should_stop_here;
43530fdc8d8SChris Lattner }
436fbbfe6ecSJim Ingham 
437b9c1b51eSKate Stone bool ThreadPlanStepInRange::DoPlanExplainsStop(Event *event_ptr) {
438fbbfe6ecSJim Ingham   // We always explain a stop.  Either we've just done a single step, in which
439fbbfe6ecSJim Ingham   // case we'll do our ordinary processing, or we stopped for some
440b9c1b51eSKate Stone   // reason that isn't handled by our sub-plans, in which case we want to just
441b9c1b51eSKate Stone   // stop right
442fbbfe6ecSJim Ingham   // away.
443b9c1b51eSKate Stone   // In general, we don't want to mark the plan as complete for unexplained
444b9c1b51eSKate Stone   // stops.
445b9c1b51eSKate Stone   // For instance, if you step in to some code with no debug info, so you step
446b9c1b51eSKate Stone   // out
447b9c1b51eSKate Stone   // and in the course of that hit a breakpoint, then you want to stop & show
448b9c1b51eSKate Stone   // the user
449b9c1b51eSKate Stone   // the breakpoint, but not unship the step in plan, since you still may want
450b9c1b51eSKate Stone   // to complete that
451b9c1b51eSKate Stone   // plan when you continue.  This is particularly true when doing "step in to
452b9c1b51eSKate Stone   // target function."
453c627682eSJim Ingham   // stepping.
454fbbfe6ecSJim Ingham   //
455b9c1b51eSKate Stone   // The only variation is that if we are doing "step by running to next branch"
456b9c1b51eSKate Stone   // in which case
457fbbfe6ecSJim Ingham   // if we hit our branch breakpoint we don't set the plan to complete.
458fbbfe6ecSJim Ingham 
4599b03fa0cSJim Ingham   bool return_value = false;
460f02a2e96SJim Ingham 
461b9c1b51eSKate Stone   if (m_virtual_step) {
462221d51cfSJim Ingham     return_value = true;
463b9c1b51eSKate Stone   } else {
46460c4118cSJim Ingham     StopInfoSP stop_info_sp = GetPrivateStopInfo();
465b9c1b51eSKate Stone     if (stop_info_sp) {
466fbbfe6ecSJim Ingham       StopReason reason = stop_info_sp->GetStopReason();
467fbbfe6ecSJim Ingham 
468b9c1b51eSKate Stone       if (reason == eStopReasonBreakpoint) {
469b9c1b51eSKate Stone         if (NextRangeBreakpointExplainsStop(stop_info_sp)) {
470221d51cfSJim Ingham           return_value = true;
471221d51cfSJim Ingham         }
472b9c1b51eSKate Stone       } else if (IsUsuallyUnexplainedStopReason(reason)) {
4735160ce5cSGreg Clayton         Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
474fbbfe6ecSJim Ingham         if (log)
475b9c1b51eSKate Stone           log->PutCString("ThreadPlanStepInRange got asked if it explains the "
476b9c1b51eSKate Stone                           "stop for some reason other than step.");
477221d51cfSJim Ingham         return_value = false;
478b9c1b51eSKate Stone       } else {
479221d51cfSJim Ingham         return_value = true;
480fbbfe6ecSJim Ingham       }
481b9c1b51eSKate Stone     } else
482221d51cfSJim Ingham       return_value = true;
483221d51cfSJim Ingham   }
484221d51cfSJim Ingham 
485221d51cfSJim Ingham   return return_value;
486fbbfe6ecSJim Ingham }
487513c6bb8SJim Ingham 
488b9c1b51eSKate Stone bool ThreadPlanStepInRange::DoWillResume(lldb::StateType resume_state,
489b9c1b51eSKate Stone                                          bool current_plan) {
49069fc298aSTamas Berghammer   m_virtual_step = false;
491b9c1b51eSKate Stone   if (resume_state == eStateStepping && current_plan) {
492513c6bb8SJim Ingham     // See if we are about to step over a virtual inlined call.
493513c6bb8SJim Ingham     bool step_without_resume = m_thread.DecrementCurrentInlinedDepth();
494b9c1b51eSKate Stone     if (step_without_resume) {
4955160ce5cSGreg Clayton       Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
496513c6bb8SJim Ingham       if (log)
497b9c1b51eSKate Stone         log->Printf("ThreadPlanStepInRange::DoWillResume: returning false, "
498b9c1b51eSKate Stone                     "inline_depth: %d",
499513c6bb8SJim Ingham                     m_thread.GetCurrentInlinedDepth());
500513c6bb8SJim Ingham       SetStopInfo(StopInfo::CreateStopReasonToTrace(m_thread));
501f02a2e96SJim Ingham 
502b9c1b51eSKate Stone       // FIXME: Maybe it would be better to create a InlineStep stop reason, but
503b9c1b51eSKate Stone       // then
504f02a2e96SJim Ingham       // the whole rest of the world would have to handle that stop reason.
505f02a2e96SJim Ingham       m_virtual_step = true;
506513c6bb8SJim Ingham     }
507513c6bb8SJim Ingham     return !step_without_resume;
508513c6bb8SJim Ingham   }
509221d51cfSJim Ingham   return true;
510513c6bb8SJim Ingham }
511246cb611SDaniel Malea 
512b9c1b51eSKate Stone bool ThreadPlanStepInRange::IsVirtualStep() { return m_virtual_step; }
513