blob: 9d7d52167ffcb438b213d14c8843f8c008e4b710 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- ThreadPlanStepInstruction.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/ThreadPlanStepInstruction.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000015#include "lldb/Core/Log.h"
16#include "lldb/Core/Stream.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000017#include "lldb/Target/Process.h"
Greg Claytonf4b47e12010-08-04 01:40:35 +000018#include "lldb/Target/RegisterContext.h"
19#include "lldb/Target/RegisterContext.h"
20#include "lldb/Target/StopInfo.h"
21#include "lldb/Target/Target.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000022
23using namespace lldb;
24using namespace lldb_private;
25
26//----------------------------------------------------------------------
27// ThreadPlanStepInstruction: Step over the current instruction
28//----------------------------------------------------------------------
29
30ThreadPlanStepInstruction::ThreadPlanStepInstruction
31(
32 Thread &thread,
33 bool step_over,
34 bool stop_other_threads,
35 Vote stop_vote,
36 Vote run_vote
37) :
Jim Inghamb01e7422010-06-19 04:45:32 +000038 ThreadPlan (ThreadPlan::eKindStepInstruction, "Step over single instruction", thread, stop_vote, run_vote),
Chris Lattner30fdc8d2010-06-08 16:52:24 +000039 m_instruction_addr (0),
Benjamin Kramer1ee0d4f2010-07-16 12:32:33 +000040 m_stop_other_threads (stop_other_threads),
Jim Ingham6b35c862012-03-01 20:01:22 +000041 m_step_over (step_over)
Benjamin Kramer1ee0d4f2010-07-16 12:32:33 +000042{
Jim Ingham7a88ec92014-07-08 19:28:57 +000043 m_takes_iteration_count = true;
44 SetUpState();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000045}
46
Eugene Zelenkoe65b2cf2015-12-15 01:33:19 +000047ThreadPlanStepInstruction::~ThreadPlanStepInstruction() = default;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000048
49void
Jim Ingham7a88ec92014-07-08 19:28:57 +000050ThreadPlanStepInstruction::SetUpState()
51{
52 m_instruction_addr = m_thread.GetRegisterContext()->GetPC(0);
53 StackFrameSP start_frame_sp(m_thread.GetStackFrameAtIndex(0));
54 m_stack_id = start_frame_sp->GetStackID();
55
Eugene Zelenkoe65b2cf2015-12-15 01:33:19 +000056 m_start_has_symbol = start_frame_sp->GetSymbolContext(eSymbolContextSymbol).symbol != nullptr;
Jim Ingham7a88ec92014-07-08 19:28:57 +000057
58 StackFrameSP parent_frame_sp = m_thread.GetStackFrameAtIndex(1);
59 if (parent_frame_sp)
60 m_parent_frame_id = parent_frame_sp->GetStackID();
61}
62
63void
Chris Lattner30fdc8d2010-06-08 16:52:24 +000064ThreadPlanStepInstruction::GetDescription (Stream *s, lldb::DescriptionLevel level)
65{
66 if (level == lldb::eDescriptionLevelBrief)
67 {
68 if (m_step_over)
69 s->Printf ("instruction step over");
70 else
71 s->Printf ("instruction step into");
72 }
73 else
74 {
75 s->Printf ("Stepping one instruction past ");
76 s->Address(m_instruction_addr, sizeof (addr_t));
Jim Inghama7d48222013-07-26 00:27:57 +000077 if (!m_start_has_symbol)
78 s->Printf(" which has no symbol");
79
Chris Lattner30fdc8d2010-06-08 16:52:24 +000080 if (m_step_over)
81 s->Printf(" stepping over calls");
82 else
83 s->Printf(" stepping into calls");
84 }
85}
86
87bool
88ThreadPlanStepInstruction::ValidatePlan (Stream *error)
89{
90 // Since we read the instruction we're stepping over from the thread,
91 // this plan will always work.
92 return true;
93}
94
95bool
Jim Ingham221d51c2013-05-08 00:35:16 +000096ThreadPlanStepInstruction::DoPlanExplainsStop (Event *event_ptr)
Chris Lattner30fdc8d2010-06-08 16:52:24 +000097{
Jim Ingham60c41182013-06-04 01:40:51 +000098 StopInfoSP stop_info_sp = GetPrivateStopInfo ();
Jim Inghamb15bfc72010-10-20 00:39:53 +000099 if (stop_info_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000100 {
Jim Inghamb15bfc72010-10-20 00:39:53 +0000101 StopReason reason = stop_info_sp->GetStopReason();
Eugene Zelenkoe65b2cf2015-12-15 01:33:19 +0000102 return (reason == eStopReasonTrace || reason == eStopReasonNone);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000103 }
104 return false;
105}
106
107bool
Jim Ingham7a88ec92014-07-08 19:28:57 +0000108ThreadPlanStepInstruction::IsPlanStale ()
109{
110 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
111 StackID cur_frame_id = m_thread.GetStackFrameAtIndex(0)->GetStackID();
112 if (cur_frame_id == m_stack_id)
113 {
Eugene Zelenkoe65b2cf2015-12-15 01:33:19 +0000114 return (m_thread.GetRegisterContext()->GetPC(0) != m_instruction_addr);
Jim Ingham7a88ec92014-07-08 19:28:57 +0000115 }
116 else if (cur_frame_id < m_stack_id)
117 {
118 // If the current frame is younger than the start frame and we are stepping over, then we need to continue,
119 // but if we are doing just one step, we're done.
Eugene Zelenkoe65b2cf2015-12-15 01:33:19 +0000120 return !m_step_over;
Jim Ingham7a88ec92014-07-08 19:28:57 +0000121 }
122 else
123 {
124 if (log)
125 {
126 log->Printf ("ThreadPlanStepInstruction::IsPlanStale - Current frame is older than start frame, plan is stale.");
127 }
128 return true;
129 }
130}
131
132bool
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000133ThreadPlanStepInstruction::ShouldStop (Event *event_ptr)
134{
135 if (m_step_over)
136 {
Greg Clayton5160ce52013-03-27 23:08:40 +0000137 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
Jim Ingham6b35c862012-03-01 20:01:22 +0000138
Jim Inghamc0b4d5a2014-11-20 22:04:45 +0000139 StackFrameSP cur_frame_sp = m_thread.GetStackFrameAtIndex(0);
140 if (!cur_frame_sp)
141 {
142 if (log)
143 log->Printf ("ThreadPlanStepInstruction couldn't get the 0th frame, stopping.");
144 SetPlanComplete();
145 return true;
146 }
147
148 StackID cur_frame_zero_id = cur_frame_sp->GetStackID();
Jim Ingham6b35c862012-03-01 20:01:22 +0000149
150 if (cur_frame_zero_id == m_stack_id || m_stack_id < cur_frame_zero_id)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000151 {
152 if (m_thread.GetRegisterContext()->GetPC(0) != m_instruction_addr)
153 {
Jim Ingham7a88ec92014-07-08 19:28:57 +0000154 if (--m_iteration_count <= 0)
155 {
156 SetPlanComplete();
157 return true;
158 }
159 else
160 {
161 // We are still stepping, reset the start pc, and in case we've stepped out,
162 // reset the current stack id.
163 SetUpState();
164 return false;
165 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000166 }
167 else
168 return false;
169 }
170 else
171 {
172 // We've stepped in, step back out again:
Jason Molendab57e4a12013-11-04 09:33:30 +0000173 StackFrame *return_frame = m_thread.GetStackFrameAtIndex(1).get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000174 if (return_frame)
175 {
Jim Inghama7d48222013-07-26 00:27:57 +0000176 if (return_frame->GetStackID() != m_parent_frame_id || m_start_has_symbol)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000177 {
Jim Inghamc0b4d5a2014-11-20 22:04:45 +0000178 // next-instruction shouldn't step out of inlined functions. But we may have stepped into a
179 // real function that starts with an inlined function, and we do want to step out of that...
180
181 if (cur_frame_sp->IsInlined())
182 {
183 StackFrameSP parent_frame_sp = m_thread.GetFrameWithStackID(m_stack_id);
184
185 if(parent_frame_sp && parent_frame_sp->GetConcreteFrameIndex() == cur_frame_sp->GetConcreteFrameIndex())
186 {
187 SetPlanComplete();
188 if (log)
189 {
190 log->Printf("Frame we stepped into is inlined into the frame we were stepping from, stopping.");
191 }
192 return true;
193 }
194 }
195
Jim Ingham886a3e22013-07-25 00:59:01 +0000196 if (log)
197 {
198 StreamString s;
199 s.PutCString ("Stepped in to: ");
200 addr_t stop_addr = m_thread.GetStackFrameAtIndex(0)->GetRegisterContext()->GetPC();
201 s.Address (stop_addr, m_thread.CalculateTarget()->GetArchitecture().GetAddressByteSize());
202 s.PutCString (" stepping out to: ");
203 addr_t return_addr = return_frame->GetRegisterContext()->GetPC();
204 s.Address (return_addr, m_thread.CalculateTarget()->GetArchitecture().GetAddressByteSize());
205 log->Printf("%s.", s.GetData());
206 }
207
208 // StepInstruction should probably have the tri-state RunMode, but for now it is safer to
209 // run others.
210 const bool stop_others = false;
Jim Ingham4b4b2472014-03-13 02:47:14 +0000211 m_thread.QueueThreadPlanForStepOutNoShouldStop(false,
Eugene Zelenkoe65b2cf2015-12-15 01:33:19 +0000212 nullptr,
Jim Ingham4b4b2472014-03-13 02:47:14 +0000213 true,
214 stop_others,
215 eVoteNo,
216 eVoteNoOpinion,
217 0);
Jim Ingham886a3e22013-07-25 00:59:01 +0000218 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000219 }
Jim Ingham886a3e22013-07-25 00:59:01 +0000220 else
221 {
222 if (log)
223 {
Jim Inghama7d48222013-07-26 00:27:57 +0000224 log->PutCString("The stack id we are stepping in changed, but our parent frame did not when stepping from code with no symbols. "
Jim Ingham886a3e22013-07-25 00:59:01 +0000225 "We are probably just confused about where we are, stopping.");
226 }
227 SetPlanComplete();
228 return true;
229 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000230 }
231 else
232 {
233 if (log)
234 log->Printf("Could not find previous frame, stopping.");
235 SetPlanComplete();
236 return true;
237 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000238 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000239 }
240 else
241 {
242 if (m_thread.GetRegisterContext()->GetPC(0) != m_instruction_addr)
243 {
Jim Ingham7a88ec92014-07-08 19:28:57 +0000244 if (--m_iteration_count <= 0)
245 {
246 SetPlanComplete();
247 return true;
248 }
249 else
250 {
251 // We are still stepping, reset the start pc, and in case we've stepped in or out,
252 // reset the current stack id.
253 SetUpState();
254 return false;
255 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000256 }
257 else
258 return false;
259 }
260}
261
262bool
263ThreadPlanStepInstruction::StopOthers ()
264{
265 return m_stop_other_threads;
266}
267
268StateType
Jim Ingham06e827c2010-11-11 19:26:09 +0000269ThreadPlanStepInstruction::GetPlanRunState ()
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000270{
271 return eStateStepping;
272}
273
274bool
275ThreadPlanStepInstruction::WillStop ()
276{
277 return true;
278}
279
280bool
281ThreadPlanStepInstruction::MischiefManaged ()
282{
283 if (IsPlanComplete())
284 {
Greg Clayton5160ce52013-03-27 23:08:40 +0000285 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000286 if (log)
287 log->Printf("Completed single instruction step plan.");
288 ThreadPlan::MischiefManaged ();
289 return true;
290 }
291 else
292 {
293 return false;
294 }
295}