ThreadPlanStepOverRange.h revision 0c8fa2d7dd18ae1816c82846234c45f79142e3df
1//===-- ThreadPlanStepOverRange.h -------------------------------*- 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
10#ifndef liblldb_ThreadPlanStepOverRange_h_
11#define liblldb_ThreadPlanStepOverRange_h_
12
13// C Includes
14// C++ Includes
15// Other libraries and framework includes
16// Project includes
17#include "lldb/Core/AddressRange.h"
18#include "lldb/Target/StackID.h"
19#include "lldb/Target/Thread.h"
20#include "lldb/Target/ThreadPlanStepRange.h"
21
22namespace lldb_private {
23
24class ThreadPlanStepOverRange : public ThreadPlanStepRange
25{
26public:
27
28    ThreadPlanStepOverRange (Thread &thread,
29                             const AddressRange &range,
30                             const SymbolContext &addr_context,
31                             lldb::RunMode stop_others);
32
33    virtual ~ThreadPlanStepOverRange ();
34
35    virtual void GetDescription (Stream *s, lldb::DescriptionLevel level);
36    virtual bool ShouldStop (Event *event_ptr);
37    virtual bool PlanExplainsStop ();
38    virtual bool WillResume (lldb::StateType resume_state, bool current_plan);
39
40protected:
41
42private:
43
44    friend ThreadPlan *
45    Thread::QueueThreadPlanForStepRange (bool abort_other_plans,
46                                         StepType type,
47                                         const AddressRange &range,
48                                         const SymbolContext &addr_context,
49                                         lldb::RunMode stop_others,
50                                         bool avoid_code_without_debug_info);
51    bool m_first_resume;
52
53    DISALLOW_COPY_AND_ASSIGN (ThreadPlanStepOverRange);
54
55};
56
57} // namespace lldb_private
58
59#endif  // liblldb_ThreadPlanStepOverRange_h_
60