1 | //===-- ThreadPlanStepOverRange.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_THREADPLANSTEPOVERRANGE_H |
10 | #define LLDB_TARGET_THREADPLANSTEPOVERRANGE_H |
11 | |
12 | #include "lldb/Core/AddressRange.h" |
13 | #include "lldb/Target/StackID.h" |
14 | #include "lldb/Target/Thread.h" |
15 | #include "lldb/Target/ThreadPlanStepRange.h" |
16 | |
17 | namespace lldb_private { |
18 | |
19 | class ThreadPlanStepOverRange : public ThreadPlanStepRange, |
20 | ThreadPlanShouldStopHere { |
21 | public: |
22 | ThreadPlanStepOverRange(Thread &thread, const AddressRange &range, |
23 | const SymbolContext &addr_context, |
24 | lldb::RunMode stop_others, |
25 | LazyBool step_out_avoids_no_debug); |
26 | |
27 | ~ThreadPlanStepOverRange() override; |
28 | |
29 | void GetDescription(Stream *s, lldb::DescriptionLevel level) override; |
30 | bool ShouldStop(Event *event_ptr) override; |
31 | |
32 | protected: |
33 | bool DoPlanExplainsStop(Event *event_ptr) override; |
34 | bool DoWillResume(lldb::StateType resume_state, bool current_plan) override; |
35 | |
36 | void SetFlagsToDefault() override { |
37 | GetFlags().Set(ThreadPlanStepOverRange::s_default_flag_values); |
38 | } |
39 | |
40 | private: |
41 | static uint32_t s_default_flag_values; |
42 | |
43 | void SetupAvoidNoDebug(LazyBool step_out_avoids_code_without_debug_info); |
44 | bool IsEquivalentContext(const SymbolContext &context); |
45 | |
46 | bool m_first_resume; |
47 | |
48 | ThreadPlanStepOverRange(const ThreadPlanStepOverRange &) = delete; |
49 | const ThreadPlanStepOverRange & |
50 | operator=(const ThreadPlanStepOverRange &) = delete; |
51 | }; |
52 | |
53 | } // namespace lldb_private |
54 | |
55 | #endif // LLDB_TARGET_THREADPLANSTEPOVERRANGE_H |
56 |