xref: /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlan.h (revision 700637cbb5e582861067a11aaca4d053546871d2)
1 //===-- ThreadPlan.h --------------------------------------------*- 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 #ifndef LLDB_TARGET_THREADPLAN_H
10 #define LLDB_TARGET_THREADPLAN_H
11 
12 #include <mutex>
13 #include <string>
14 
15 #include "lldb/Target/Process.h"
16 #include "lldb/Target/StopInfo.h"
17 #include "lldb/Target/Target.h"
18 #include "lldb/Target/Thread.h"
19 #include "lldb/Target/ThreadPlanTracer.h"
20 #include "lldb/Utility/UserID.h"
21 #include "lldb/lldb-private.h"
22 
23 namespace lldb_private {
24 
25 //  ThreadPlan:
26 //
27 //  This is the pure virtual base class for thread plans.
28 //
29 //  The thread plans provide the "atoms" of behavior that all the logical
30 //  process control, either directly from commands or through more complex
31 //  composite plans will rely on.
32 //
33 //  Plan Stack:
34 //
35 //  The thread maintaining a thread plan stack, and you program the actions of
36 //  a particular thread by pushing plans onto the plan stack.  There is always
37 //  a "Current" plan, which is the top of the plan stack, though in some cases
38 //  a plan may defer to plans higher in the stack for some piece of information
39 //  (let us define that the plan stack grows downwards).
40 //
41 //  The plan stack is never empty, there is always a Base Plan which persists
42 //  through the life of the running process.
43 //
44 //
45 //  Creating Plans:
46 //
47 //  The thread plan is generally created and added to the plan stack through
48 //  the QueueThreadPlanFor... API in lldb::Thread.  Those API's will return the
49 //  plan that performs the named operation in a manner appropriate for the
50 //  current process.  The plans in lldb/source/Target are generic
51 //  implementations, but a Process plugin can override them.
52 //
53 //  ValidatePlan is then called.  If it returns false, the plan is unshipped.
54 //  This is a little convenience which keeps us from having to error out of the
55 //  constructor.
56 //
57 //  Then the plan is added to the plan stack.  When the plan is added to the
58 //  plan stack its DidPush will get called.  This is useful if a plan wants to
59 //  push any additional plans as it is constructed, since you need to make sure
60 //  you're already on the stack before you push additional plans.
61 //
62 //  Completed Plans:
63 //
64 //  When the target process stops the plans are queried, among other things,
65 //  for whether their job is done.  If it is they are moved from the plan stack
66 //  to the Completed Plan stack in reverse order from their position on the
67 //  plan stack (since multiple plans may be done at a given stop.)  This is
68 //  used primarily so that the lldb::Thread::StopInfo for the thread can be set
69 //  properly.  If one plan pushes another to achieve part of its job, but it
70 //  doesn't want that sub-plan to be the one that sets the StopInfo, then call
71 //  SetPrivate on the sub-plan when you create it, and the Thread will pass
72 //  over that plan in reporting the reason for the stop.
73 //
74 //  Discarded plans:
75 //
76 //  Your plan may also get discarded, i.e. moved from the plan stack to the
77 //  "discarded plan stack".  This can happen, for instance, if the plan is
78 //  calling a function and the function call crashes and you want to unwind the
79 //  attempt to call.  So don't assume that your plan will always successfully
80 //  stop.  Which leads to:
81 //
82 //  Cleaning up after your plans:
83 //
84 //  When the plan is moved from the plan stack its DidPop method is always
85 //  called, no matter why.  Once it is moved off the plan stack it is done, and
86 //  won't get a chance to run again.  So you should undo anything that affects
87 //  target state in this method.  But be sure to leave the plan able to
88 //  correctly fill the StopInfo, however.  N.B. Don't wait to do clean up
89 //  target state till the destructor, since that will usually get called when
90 //  the target resumes, and you want to leave the target state correct for new
91 //  plans in the time between when your plan gets unshipped and the next
92 //  resume.
93 //
94 //  Thread State Checkpoint:
95 //
96 //  Note that calling functions on target process (ThreadPlanCallFunction)
97 //  changes current thread state. The function can be called either by direct
98 //  user demand or internally, for example lldb allocates memory on device to
99 //  calculate breakpoint condition expression - on Linux it is performed by
100 //  calling mmap on device.  ThreadStateCheckpoint saves Thread state (stop
101 //  info and completed plan stack) to restore it after completing function
102 //  call.
103 //
104 //  Over the lifetime of the plan, various methods of the ThreadPlan are then
105 //  called in response to changes of state in the process we are debugging as
106 //  follows:
107 //
108 //  Resuming:
109 //
110 //  When the target process is about to be restarted, the plan's WillResume
111 //  method is called, giving the plan a chance to prepare for the run.  If
112 //  WillResume returns false, then the process is not restarted.  Be sure to
113 //  set an appropriate error value in the Process if you have to do this.
114 //  Note, ThreadPlans actually implement DoWillResume, WillResume wraps that
115 //  call.
116 //
117 //  Next the "StopOthers" method of all the threads are polled, and if one
118 //  thread's Current plan returns "true" then only that thread gets to run.  If
119 //  more than one returns "true" the threads that want to run solo get run one
120 //  by one round robin fashion.  Otherwise all are let to run.
121 //
122 //  Note, the way StopOthers is implemented, the base class implementation just
123 //  asks the previous plan.  So if your plan has no opinion about whether it
124 //  should run stopping others or not, just don't implement StopOthers, and the
125 //  parent will be asked.
126 //
127 //  Finally, for each thread that is running, it run state is set to the return
128 //  of RunState from the thread's Current plan.
129 //
130 //  Responding to a stop:
131 //
132 //  When the target process stops, the plan is called in the following stages:
133 //
134 //  First the thread asks the Current Plan if it can handle this stop by
135 //  calling PlanExplainsStop.  If the Current plan answers "true" then it is
136 //  asked if the stop should percolate all the way to the user by calling the
137 //  ShouldStop method.  If the current plan doesn't explain the stop, then we
138 //  query up the plan stack for a plan that does explain the stop.  The plan
139 //  that does explain the stop then needs to figure out what to do about the
140 //  plans below it in the stack.  If the stop is recoverable, then the plan
141 //  that understands it can just do what it needs to set up to restart, and
142 //  then continue.  Otherwise, the plan that understood the stop should call
143 //  DiscardPlanStack to clean up the stack below it.  Note, plans actually
144 //  implement DoPlanExplainsStop, the result is cached in PlanExplainsStop so
145 //  the DoPlanExplainsStop itself will only get called once per stop.
146 //
147 //  Controlling plans:
148 //
149 //  In the normal case, when we decide to stop, we will  collapse the plan
150 //  stack up to the point of the plan that understood the stop reason.
151 //  However, if a plan wishes to stay on the stack after an event it didn't
152 //  directly handle it can designate itself a "Controlling" plan by responding
153 //  true to IsControllingPlan, and then if it wants not to be discarded, it can
154 //  return false to OkayToDiscard, and it and all its dependent plans will be
155 //  preserved when we resume execution.
156 //
157 //  The other effect of being a controlling plan is that when the Controlling
158 //  plan is
159 //  done , if it has set "OkayToDiscard" to false, then it will be popped &
160 //  execution will stop and return to the user.  Remember that if OkayToDiscard
161 //  is false, the plan will be popped and control will be given to the next
162 //  plan above it on the stack  So setting OkayToDiscard to false means the
163 //  user will regain control when the ControllingPlan is completed.
164 //
165 //  Between these two controls this allows things like: a
166 //  ControllingPlan/DontDiscard Step Over to hit a breakpoint, stop and return
167 //  control to the user, but then when the user continues, the step out
168 //  succeeds.  Even more tricky, when the breakpoint is hit, the user can
169 //  continue to step in/step over/etc, and finally when they continue, they
170 //  will finish up the Step Over.
171 //
172 //  FIXME: ControllingPlan & OkayToDiscard aren't really orthogonal.
173 //  ControllingPlan
174 //  designation means that this plan controls it's fate and the fate of plans
175 //  below it.  OkayToDiscard tells whether the ControllingPlan wants to stay on
176 //  the stack.  I originally thought "ControllingPlan-ness" would need to be a
177 //  fixed
178 //  characteristic of a ThreadPlan, in which case you needed the extra control.
179 //  But that doesn't seem to be true.  So we should be able to convert to only
180 //  ControllingPlan status to mean the current "ControllingPlan/DontDiscard".
181 //  Then no plans would be ControllingPlans by default, and you would set the
182 //  ones you wanted to be "user level" in this way.
183 //
184 //
185 //  Actually Stopping:
186 //
187 //  If a plan says responds "true" to ShouldStop, then it is asked if it's job
188 //  is complete by calling MischiefManaged.  If that returns true, the plan is
189 //  popped from the plan stack and added to the Completed Plan Stack.  Then the
190 //  next plan in the stack is asked if it ShouldStop, and  it returns "true",
191 //  it is asked if it is done, and if yes popped, and so on till we reach a
192 //  plan that is not done.
193 //
194 //  Since you often know in the ShouldStop method whether your plan is
195 //  complete, as a convenience you can call SetPlanComplete and the ThreadPlan
196 //  implementation of MischiefManaged will return "true", without your having
197 //  to redo the calculation when your sub-classes MischiefManaged is called.
198 //  If you call SetPlanComplete, you can later use IsPlanComplete to determine
199 //  whether the plan is complete.  This is only a convenience for sub-classes,
200 //  the logic in lldb::Thread will only call MischiefManaged.
201 //
202 //  One slightly tricky point is you have to be careful using SetPlanComplete
203 //  in PlanExplainsStop because you are not guaranteed that PlanExplainsStop
204 //  for a plan will get called before ShouldStop gets called.  If your sub-plan
205 //  explained the stop and then popped itself, only your ShouldStop will get
206 //  called.
207 //
208 //  If ShouldStop for any thread returns "true", then the WillStop method of
209 //  the Current plan of all threads will be called, the stop event is placed on
210 //  the Process's public broadcaster, and control returns to the upper layers
211 //  of the debugger.
212 //
213 //  Reporting the stop:
214 //
215 //  When the process stops, the thread is given a StopReason, in the form of a
216 //  StopInfo object.  If there is a completed plan corresponding to the stop,
217 //  then the "actual" stop reason can be suppressed, and instead a
218 //  StopInfoThreadPlan object will be cons'ed up from the top completed plan in
219 //  the stack.  However, if the plan doesn't want to be the stop reason, then
220 //  it can call SetPlanComplete and pass in "false" for the "success"
221 //  parameter.  In that case, the real stop reason will be used instead.  One
222 //  example of this is the "StepRangeStepIn" thread plan.  If it stops because
223 //  of a crash or breakpoint hit, it wants to unship itself, because it isn't
224 //  so useful to have step in keep going after a breakpoint hit.  But it can't
225 //  be the reason for the stop or no-one would see that they had hit a
226 //  breakpoint.
227 //
228 //  Cleaning up the plan stack:
229 //
230 //  One of the complications of ControllingPlans is that you may get past the
231 //  limits
232 //  of a plan without triggering it to clean itself up.  For instance, if you
233 //  are doing a ControllingPlan StepOver, and hit a breakpoint in a called
234 //  function,
235 //  then step over enough times to step out of the initial StepOver range, each
236 //  of the step overs will explain the stop & take themselves off the stack,
237 //  but control would never be returned to the original StepOver.  Eventually,
238 //  the user will continue, and when that continue stops, the old stale
239 //  StepOver plan that was left on the stack will get woken up and notice it is
240 //  done. But that can leave junk on the stack for a while.  To avoid that, the
241 //  plans implement a "IsPlanStale" method, that can check whether it is
242 //  relevant anymore.  On stop, after the regular plan negotiation, the
243 //  remaining plan stack is consulted and if any plan says it is stale, it and
244 //  the plans below it are discarded from the stack.
245 //
246 //  Automatically Resuming:
247 //
248 //  If ShouldStop for all threads returns "false", then the target process will
249 //  resume.  This then cycles back to Resuming above.
250 //
251 //  Reporting eStateStopped events when the target is restarted:
252 //
253 //  If a plan decides to auto-continue the target by returning "false" from
254 //  ShouldStop, then it will be asked whether the Stopped event should still be
255 //  reported.  For instance, if you hit a breakpoint that is a User set
256 //  breakpoint, but the breakpoint callback said to continue the target
257 //  process, you might still want to inform the upper layers of lldb that the
258 //  stop had happened.  The way this works is every thread gets to vote on
259 //  whether to report the stop.  If all votes are eVoteNoOpinion, then the
260 //  thread list will decide what to do (at present it will pretty much always
261 //  suppress these stopped events.) If there is an eVoteYes, then the event
262 //  will be reported regardless of the other votes.  If there is an eVoteNo and
263 //  no eVoteYes's, then the event won't be reported.
264 //
265 //  One other little detail here, sometimes a plan will push another plan onto
266 //  the plan stack to do some part of the first plan's job, and it would be
267 //  convenient to tell that plan how it should respond to ShouldReportStop.
268 //  You can do that by setting the report_stop_vote in the child plan when you
269 //  create it.
270 //
271 //  Suppressing the initial eStateRunning event:
272 //
273 //  The private process running thread will take care of ensuring that only one
274 //  "eStateRunning" event will be delivered to the public Process broadcaster
275 //  per public eStateStopped event.  However there are some cases where the
276 //  public state of this process is eStateStopped, but a thread plan needs to
277 //  restart the target, but doesn't want the running event to be publicly
278 //  broadcast.  The obvious example of this is running functions by hand as
279 //  part of expression evaluation.  To suppress the running event return
280 //  eVoteNo from ShouldReportStop, to force a running event to be reported
281 //  return eVoteYes, in general though you should return eVoteNoOpinion which
282 //  will allow the ThreadList to figure out the right thing to do.  The
283 //  report_run_vote argument to the constructor works like report_stop_vote, and
284 //  is a way for a plan to instruct a sub-plan on how to respond to
285 //  ShouldReportStop.
286 //
287 //  Reverse execution:
288 //
289 //  Every thread plan has an associated RunDirection (forward or backward).
290 //  For ThreadPlanBase, this direction is the Process's base direction.
291 //  Whenever we resume the target, we need to ensure that the topmost thread
292 //  plans for each runnable thread all agree on their direction. This is
293 //  ensured in ThreadList::WillResume(), which chooses a direction and then
294 //  discards thread plans incompatible with that direction.
295 
296 class ThreadPlan : public std::enable_shared_from_this<ThreadPlan>,
297                    public UserID {
298 public:
299   // We use these enums so that we can cast a base thread plan to it's real
300   // type without having to resort to dynamic casting.
301   enum ThreadPlanKind {
302     eKindGeneric,
303     eKindNull,
304     eKindBase,
305     eKindCallFunction,
306     eKindPython,
307     eKindStepInstruction,
308     eKindStepOut,
309     eKindStepOverBreakpoint,
310     eKindStepOverRange,
311     eKindStepInRange,
312     eKindRunToAddress,
313     eKindStepThrough,
314     eKindStepUntil,
315     eKindSingleThreadTimeout,
316   };
317 
318   virtual ~ThreadPlan();
319 
320   /// Returns the name of this thread plan.
321   ///
322   /// \return
323   ///   A const char * pointer to the thread plan's name.
GetName()324   const char *GetName() const { return m_name.c_str(); }
325 
326   /// Returns the Thread that is using this thread plan.
327   ///
328   /// \return
329   ///   A  pointer to the thread plan's owning thread.
330   Thread &GetThread();
331 
332   Target &GetTarget();
333 
334   const Target &GetTarget() const;
335 
336   /// Clear the Thread* cache.
337   ///
338   /// This is useful in situations like when a new Thread list is being
339   /// generated.
340   void ClearThreadCache();
341 
342   /// Print a description of this thread to the stream \a s.
343   /// \a thread.  Don't expect that the result of GetThread is valid in
344   /// the description method.  This might get called when the underlying
345   /// Thread has not been reported, so we only know the TID and not the thread.
346   ///
347   /// \param[in] s
348   ///    The stream to which to print the description.
349   ///
350   /// \param[in] level
351   ///    The level of description desired.  Note that eDescriptionLevelBrief
352   ///    will be used in the stop message printed when the plan is complete.
353   virtual void GetDescription(Stream *s, lldb::DescriptionLevel level) = 0;
354 
355   /// Returns whether this plan could be successfully created.
356   ///
357   /// \param[in] error
358   ///    A stream to which to print some reason why the plan could not be
359   ///    created.
360   ///    Can be NULL.
361   ///
362   /// \return
363   ///   \b true if the plan should be queued, \b false otherwise.
364   virtual bool ValidatePlan(Stream *error) = 0;
365 
TracerExplainsStop()366   bool TracerExplainsStop() {
367     if (!m_tracer_sp)
368       return false;
369     else
370       return m_tracer_sp->TracerExplainsStop();
371   }
372 
373   lldb::StateType RunState();
374 
375   bool PlanExplainsStop(Event *event_ptr);
376 
377   virtual bool ShouldStop(Event *event_ptr) = 0;
378 
379   /// Returns whether this thread plan overrides the `ShouldStop` of
380   /// subsequently processed plans.
381   ///
382   /// When processing the thread plan stack, this function gives plans the
383   /// ability to continue - even when subsequent plans return true from
384   /// `ShouldStop`. \see Thread::ShouldStop
ShouldAutoContinue(Event * event_ptr)385   virtual bool ShouldAutoContinue(Event *event_ptr) { return false; }
386 
387   // Whether a "stop class" event should be reported to the "outside world".
388   // In general if a thread plan is active, events should not be reported.
389 
390   virtual Vote ShouldReportStop(Event *event_ptr);
391 
392   Vote ShouldReportRun(Event *event_ptr);
393 
394   virtual void SetStopOthers(bool new_value);
395 
396   virtual bool StopOthers();
397 
398   // Returns true if the thread plan supports ThreadPlanSingleThreadTimeout to
399   // resume other threads after timeout. If the thread plan returns false it
400   // will prevent ThreadPlanSingleThreadTimeout from being created when this
401   // thread plan is alive.
SupportsResumeOthers()402   virtual bool SupportsResumeOthers() { return true; }
403 
ShouldRunBeforePublicStop()404   virtual bool ShouldRunBeforePublicStop() { return false; }
405 
406   // This is the wrapper for DoWillResume that does generic ThreadPlan logic,
407   // then calls DoWillResume.
408   bool WillResume(lldb::StateType resume_state, bool current_plan);
409 
410   virtual bool WillStop() = 0;
411 
IsControllingPlan()412   bool IsControllingPlan() { return m_is_controlling_plan; }
413 
414   // Returns true if this plan is a leaf plan, meaning the plan will be popped
415   // during each stop if it does not explain the stop and re-pushed before
416   // resuming to stay at the top of the stack.
IsLeafPlan()417   virtual bool IsLeafPlan() { return false; }
418 
SetIsControllingPlan(bool value)419   bool SetIsControllingPlan(bool value) {
420     bool old_value = m_is_controlling_plan;
421     m_is_controlling_plan = value;
422     return old_value;
423   }
424 
425   virtual bool OkayToDiscard();
426 
SetOkayToDiscard(bool value)427   void SetOkayToDiscard(bool value) { m_okay_to_discard = value; }
428 
429   // The base class MischiefManaged does some cleanup - so you have to call it
430   // in your MischiefManaged derived class.
431   virtual bool MischiefManaged();
432 
ThreadDestroyed()433   virtual void ThreadDestroyed() {
434     // Any cleanup that a plan might want to do in case the thread goes away in
435     // the middle of the plan being queued on a thread can be done here.
436   }
437 
GetPrivate()438   bool GetPrivate() { return m_plan_private; }
439 
SetPrivate(bool input)440   void SetPrivate(bool input) { m_plan_private = input; }
441 
442   virtual void DidPush();
443 
444   virtual void DidPop();
445 
GetKind()446   ThreadPlanKind GetKind() const { return m_kind; }
447 
448   bool IsPlanComplete();
449 
450   void SetPlanComplete(bool success = true);
451 
IsPlanStale()452   virtual bool IsPlanStale() { return false; }
453 
PlanSucceeded()454   bool PlanSucceeded() { return m_plan_succeeded; }
455 
IsBasePlan()456   virtual bool IsBasePlan() { return false; }
457 
GetThreadPlanTracer()458   lldb::ThreadPlanTracerSP &GetThreadPlanTracer() { return m_tracer_sp; }
459 
SetThreadPlanTracer(lldb::ThreadPlanTracerSP new_tracer_sp)460   void SetThreadPlanTracer(lldb::ThreadPlanTracerSP new_tracer_sp) {
461     m_tracer_sp = new_tracer_sp;
462   }
463 
DoTraceLog()464   void DoTraceLog() {
465     if (m_tracer_sp && m_tracer_sp->TracingEnabled())
466       m_tracer_sp->Log();
467   }
468 
469   // If the completion of the thread plan stepped out of a function, the return
470   // value of the function might have been captured by the thread plan
471   // (currently only ThreadPlanStepOut does this.) If so, the ReturnValueObject
472   // can be retrieved from here.
473 
GetReturnValueObject()474   virtual lldb::ValueObjectSP GetReturnValueObject() {
475     return lldb::ValueObjectSP();
476   }
477 
478   // If the thread plan managing the evaluation of a user expression lives
479   // longer than the command that instigated the expression (generally because
480   // the expression evaluation hit a breakpoint, and the user regained control
481   // at that point) a subsequent process control command step/continue/etc.
482   // might complete the expression evaluations.  If so, the result of the
483   // expression evaluation will show up here.
484 
GetExpressionVariable()485   virtual lldb::ExpressionVariableSP GetExpressionVariable() {
486     return lldb::ExpressionVariableSP();
487   }
488 
489   // If a thread plan stores the state before it was run, then you might want
490   // to restore the state when it is done.  This will do that job. This is
491   // mostly useful for artificial plans like CallFunction plans.
492 
RestoreThreadState()493   virtual void RestoreThreadState() {}
494 
IsVirtualStep()495   virtual bool IsVirtualStep() { return false; }
496 
SetIterationCount(size_t count)497   bool SetIterationCount(size_t count) {
498     if (m_takes_iteration_count) {
499       // Don't tell me to do something 0 times...
500       if (count == 0)
501         return false;
502       m_iteration_count = count;
503     }
504     return m_takes_iteration_count;
505   }
506 
507   virtual lldb::StateType GetPlanRunState() = 0;
508 
GetDirection()509   virtual lldb::RunDirection GetDirection() const {
510     return lldb::RunDirection::eRunForward;
511   }
512 
513 protected:
514   // Constructors and Destructors
515   ThreadPlan(ThreadPlanKind kind, const char *name, Thread &thread,
516              Vote report_stop_vote, Vote report_run_vote);
517 
518   // Classes that inherit from ThreadPlan can see and modify these
519 
DoWillResume(lldb::StateType resume_state,bool current_plan)520   virtual bool DoWillResume(lldb::StateType resume_state, bool current_plan) {
521     return true;
522   }
523 
524   virtual bool DoPlanExplainsStop(Event *event_ptr) = 0;
525 
526   // This pushes a plan onto the plan stack of the current plan's thread.
527   // Also sets the plans to private and not controlling plans.  A plan pushed by
528   // another thread plan is never either of the above.
PushPlan(lldb::ThreadPlanSP & thread_plan_sp)529   void PushPlan(lldb::ThreadPlanSP &thread_plan_sp) {
530     GetThread().PushPlan(thread_plan_sp);
531     thread_plan_sp->SetPrivate(true);
532     thread_plan_sp->SetIsControllingPlan(false);
533   }
534 
535   // This gets the previous plan to the current plan (for forwarding requests).
536   // This is mostly a formal requirement, it allows us to make the Thread's
537   // GetPreviousPlan protected, but only friend ThreadPlan to thread.
538 
GetPreviousPlan()539   ThreadPlan *GetPreviousPlan() { return GetThread().GetPreviousPlan(this); }
540 
541   // This forwards the private Thread::GetPrivateStopInfo which is generally
542   // what ThreadPlan's need to know.
543 
GetPrivateStopInfo()544   lldb::StopInfoSP GetPrivateStopInfo() {
545     return GetThread().GetPrivateStopInfo();
546   }
547 
SetStopInfo(lldb::StopInfoSP stop_reason_sp)548   void SetStopInfo(lldb::StopInfoSP stop_reason_sp) {
549     GetThread().SetStopInfo(stop_reason_sp);
550   }
551 
552   bool IsUsuallyUnexplainedStopReason(lldb::StopReason);
553 
554   Status m_status;
555   Process &m_process;
556   lldb::tid_t m_tid;
557   Vote m_report_stop_vote;
558   Vote m_report_run_vote;
559   bool m_takes_iteration_count;
560   bool m_could_not_resolve_hw_bp;
561   int32_t m_iteration_count = 1;
562 
563 private:
CachePlanExplainsStop(bool does_explain)564   void CachePlanExplainsStop(bool does_explain) {
565     m_cached_plan_explains_stop = does_explain ? eLazyBoolYes : eLazyBoolNo;
566   }
567 
568   // For ThreadPlan only
569   static lldb::user_id_t GetNextID();
570 
571   Thread *m_thread; // Stores a cached value of the thread, which is set to
572                     // nullptr when the thread resumes.  Don't use this anywhere
573                     // but ThreadPlan::GetThread().
574   ThreadPlanKind m_kind;
575   std::string m_name;
576   std::recursive_mutex m_plan_complete_mutex;
577   LazyBool m_cached_plan_explains_stop;
578   bool m_plan_complete;
579   bool m_plan_private;
580   bool m_okay_to_discard;
581   bool m_is_controlling_plan;
582   bool m_plan_succeeded;
583 
584   lldb::ThreadPlanTracerSP m_tracer_sp;
585 
586   ThreadPlan(const ThreadPlan &) = delete;
587   const ThreadPlan &operator=(const ThreadPlan &) = delete;
588 };
589 
590 // ThreadPlanNull:
591 // Threads are assumed to always have at least one plan on the plan stack. This
592 // is put on the plan stack when a thread is destroyed so that if you
593 // accidentally access a thread after it is destroyed you won't crash. But
594 // asking questions of the ThreadPlanNull is definitely an error.
595 
596 class ThreadPlanNull : public ThreadPlan {
597 public:
598   ThreadPlanNull(Thread &thread);
599   ~ThreadPlanNull() override;
600 
601   void GetDescription(Stream *s, lldb::DescriptionLevel level) override;
602 
603   bool ValidatePlan(Stream *error) override;
604 
605   bool ShouldStop(Event *event_ptr) override;
606 
607   bool MischiefManaged() override;
608 
609   bool WillStop() override;
610 
IsBasePlan()611   bool IsBasePlan() override { return true; }
612 
OkayToDiscard()613   bool OkayToDiscard() override { return false; }
614 
GetStatus()615   const Status &GetStatus() { return m_status; }
616 
617 protected:
618   bool DoPlanExplainsStop(Event *event_ptr) override;
619 
620   lldb::StateType GetPlanRunState() override;
621 
622   ThreadPlanNull(const ThreadPlanNull &) = delete;
623   const ThreadPlanNull &operator=(const ThreadPlanNull &) = delete;
624 };
625 
626 } // namespace lldb_private
627 
628 #endif // LLDB_TARGET_THREADPLAN_H
629