ThreadPlanStepRange.h revision 355940
1//===-- ThreadPlanStepRange.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 liblldb_ThreadPlanStepRange_h_
10#define liblldb_ThreadPlanStepRange_h_
11
12#include "lldb/Core/AddressRange.h"
13#include "lldb/Target/StackID.h"
14#include "lldb/Target/Thread.h"
15#include "lldb/Target/ThreadPlan.h"
16#include "lldb/Target/ThreadPlanShouldStopHere.h"
17
18namespace lldb_private {
19
20class ThreadPlanStepRange : public ThreadPlan {
21public:
22  ThreadPlanStepRange(ThreadPlanKind kind, const char *name, Thread &thread,
23                      const AddressRange &range,
24                      const SymbolContext &addr_context,
25                      lldb::RunMode stop_others,
26                      bool given_ranges_only = false);
27
28  ~ThreadPlanStepRange() override;
29
30  void GetDescription(Stream *s, lldb::DescriptionLevel level) override = 0;
31  bool ValidatePlan(Stream *error) override;
32  bool ShouldStop(Event *event_ptr) override = 0;
33  Vote ShouldReportStop(Event *event_ptr) override;
34  bool StopOthers() override;
35  lldb::StateType GetPlanRunState() override;
36  bool WillStop() override;
37  bool MischiefManaged() override;
38  void DidPush() override;
39  bool IsPlanStale() override;
40
41  void AddRange(const AddressRange &new_range);
42
43protected:
44  bool InRange();
45  lldb::FrameComparison CompareCurrentFrameToStartFrame();
46  bool InSymbol();
47  void DumpRanges(Stream *s);
48
49  Disassembler *GetDisassembler();
50
51  InstructionList *GetInstructionsForAddress(lldb::addr_t addr,
52                                             size_t &range_index,
53                                             size_t &insn_offset);
54
55  // Pushes a plan to proceed through the next section of instructions in the
56  // range - usually just a RunToAddress plan to run to the next branch.
57  // Returns true if it pushed such a plan.  If there was no available 'quick
58  // run' plan, then just single step.
59  bool SetNextBranchBreakpoint();
60
61  void ClearNextBranchBreakpoint();
62
63  bool NextRangeBreakpointExplainsStop(lldb::StopInfoSP stop_info_sp);
64
65  SymbolContext m_addr_context;
66  std::vector<AddressRange> m_address_ranges;
67  lldb::RunMode m_stop_others;
68  StackID m_stack_id; // Use the stack ID so we can tell step out from step in.
69  StackID m_parent_stack_id; // Use the parent stack ID so we can identify tail
70                             // calls and the like.
71  bool m_no_more_plans;   // Need this one so we can tell if we stepped into a
72                          // call,
73                          // but can't continue, in which case we are done.
74  bool m_first_run_event; // We want to broadcast only one running event, our
75                          // first.
76  lldb::BreakpointSP m_next_branch_bp_sp;
77  bool m_use_fast_step;
78  bool m_given_ranges_only;
79
80private:
81  std::vector<lldb::DisassemblerSP> m_instruction_ranges;
82
83  DISALLOW_COPY_AND_ASSIGN(ThreadPlanStepRange);
84};
85
86} // namespace lldb_private
87
88#endif // liblldb_ThreadPlanStepRange_h_
89