]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / source / Target / ThreadPlanShouldStopHere.cpp
1 //===-- ThreadPlanShouldStopHere.cpp ----------------------------*- C++ -*-===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8
9 #include "lldb/Target/ThreadPlanShouldStopHere.h"
10 #include "lldb/Symbol/Symbol.h"
11 #include "lldb/Target/RegisterContext.h"
12 #include "lldb/Target/Thread.h"
13 #include "lldb/Utility/Log.h"
14
15 using namespace lldb;
16 using namespace lldb_private;
17
18 // ThreadPlanShouldStopHere constructor
19 ThreadPlanShouldStopHere::ThreadPlanShouldStopHere(ThreadPlan *owner)
20     : m_callbacks(), m_baton(nullptr), m_owner(owner),
21       m_flags(ThreadPlanShouldStopHere::eNone) {
22   m_callbacks.should_stop_here_callback =
23       ThreadPlanShouldStopHere::DefaultShouldStopHereCallback;
24   m_callbacks.step_from_here_callback =
25       ThreadPlanShouldStopHere::DefaultStepFromHereCallback;
26 }
27
28 ThreadPlanShouldStopHere::ThreadPlanShouldStopHere(
29     ThreadPlan *owner, const ThreadPlanShouldStopHereCallbacks *callbacks,
30     void *baton)
31     : m_callbacks(), m_baton(), m_owner(owner),
32       m_flags(ThreadPlanShouldStopHere::eNone) {
33   SetShouldStopHereCallbacks(callbacks, baton);
34 }
35
36 ThreadPlanShouldStopHere::~ThreadPlanShouldStopHere() = default;
37
38 bool ThreadPlanShouldStopHere::InvokeShouldStopHereCallback(
39     FrameComparison operation, Status &status) {
40   bool should_stop_here = true;
41   if (m_callbacks.should_stop_here_callback) {
42     should_stop_here = m_callbacks.should_stop_here_callback(
43         m_owner, m_flags, operation, status, m_baton);
44     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
45     if (log) {
46       lldb::addr_t current_addr =
47           m_owner->GetThread().GetRegisterContext()->GetPC(0);
48
49       log->Printf("ShouldStopHere callback returned %u from 0x%" PRIx64 ".",
50                   should_stop_here, current_addr);
51     }
52   }
53
54   return should_stop_here;
55 }
56
57 bool ThreadPlanShouldStopHere::DefaultShouldStopHereCallback(
58     ThreadPlan *current_plan, Flags &flags, FrameComparison operation,
59     Status &status, void *baton) {
60   bool should_stop_here = true;
61   StackFrame *frame = current_plan->GetThread().GetStackFrameAtIndex(0).get();
62   if (!frame)
63     return true;
64
65   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
66
67   if ((operation == eFrameCompareOlder && flags.Test(eStepOutAvoidNoDebug)) ||
68       (operation == eFrameCompareYounger && flags.Test(eStepInAvoidNoDebug)) ||
69       (operation == eFrameCompareSameParent &&
70        flags.Test(eStepInAvoidNoDebug))) {
71     if (!frame->HasDebugInformation()) {
72       if (log)
73         log->Printf("Stepping out of frame with no debug info");
74
75       should_stop_here = false;
76     }
77   }
78
79   // Always avoid code with line number 0.
80   // FIXME: At present the ShouldStop and the StepFromHere calculate this
81   // independently.  If this ever
82   // becomes expensive (this one isn't) we can try to have this set a state
83   // that the StepFromHere can use.
84   if (frame) {
85     SymbolContext sc;
86     sc = frame->GetSymbolContext(eSymbolContextLineEntry);
87     if (sc.line_entry.line == 0)
88       should_stop_here = false;
89   }
90
91   return should_stop_here;
92 }
93
94 ThreadPlanSP ThreadPlanShouldStopHere::DefaultStepFromHereCallback(
95     ThreadPlan *current_plan, Flags &flags, FrameComparison operation,
96     Status &status, void *baton) {
97   const bool stop_others = false;
98   const size_t frame_index = 0;
99   ThreadPlanSP return_plan_sp;
100   // If we are stepping through code at line number 0, then we need to step
101   // over this range.  Otherwise we will step out.
102   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
103
104   StackFrame *frame = current_plan->GetThread().GetStackFrameAtIndex(0).get();
105   if (!frame)
106     return return_plan_sp;
107   SymbolContext sc;
108   sc = frame->GetSymbolContext(eSymbolContextLineEntry | eSymbolContextSymbol);
109
110   if (sc.line_entry.line == 0) {
111     AddressRange range = sc.line_entry.range;
112
113     // If the whole function is marked line 0 just step out, that's easier &
114     // faster than continuing to step through it.
115     bool just_step_out = false;
116     if (sc.symbol && sc.symbol->ValueIsAddress()) {
117       Address symbol_end = sc.symbol->GetAddress();
118       symbol_end.Slide(sc.symbol->GetByteSize() - 1);
119       if (range.ContainsFileAddress(sc.symbol->GetAddress()) &&
120           range.ContainsFileAddress(symbol_end)) {
121         if (log)
122           log->Printf("Stopped in a function with only line 0 lines, just "
123                       "stepping out.");
124         just_step_out = true;
125       }
126     }
127     if (!just_step_out) {
128       if (log)
129         log->Printf("ThreadPlanShouldStopHere::DefaultStepFromHereCallback "
130                     "Queueing StepInRange plan to step through line 0 code.");
131
132       return_plan_sp = current_plan->GetThread().QueueThreadPlanForStepInRange(
133           false, range, sc, nullptr, eOnlyDuringStepping, status,
134           eLazyBoolCalculate, eLazyBoolNo);
135     }
136   }
137
138   if (!return_plan_sp)
139     return_plan_sp =
140         current_plan->GetThread().QueueThreadPlanForStepOutNoShouldStop(
141             false, nullptr, true, stop_others, eVoteNo, eVoteNoOpinion,
142             frame_index, status, true);
143   return return_plan_sp;
144 }
145
146 ThreadPlanSP ThreadPlanShouldStopHere::QueueStepOutFromHerePlan(
147     lldb_private::Flags &flags, lldb::FrameComparison operation,
148     Status &status) {
149   ThreadPlanSP return_plan_sp;
150   if (m_callbacks.step_from_here_callback) {
151     return_plan_sp = m_callbacks.step_from_here_callback(
152         m_owner, flags, operation, status, m_baton);
153   }
154   return return_plan_sp;
155 }
156
157 lldb::ThreadPlanSP ThreadPlanShouldStopHere::CheckShouldStopHereAndQueueStepOut(
158     lldb::FrameComparison operation, Status &status) {
159   if (!InvokeShouldStopHereCallback(operation, status))
160     return QueueStepOutFromHerePlan(m_flags, operation, status);
161   else
162     return ThreadPlanSP();
163 }