LLDB mainline
ThreadPlanStepOverBreakpoint.h
Go to the documentation of this file.
1//===-- ThreadPlanStepOverBreakpoint.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_THREADPLANSTEPOVERBREAKPOINT_H
10#define LLDB_TARGET_THREADPLANSTEPOVERBREAKPOINT_H
11
12#include "lldb/Target/Thread.h"
14
15namespace lldb_private {
16
18public:
20
22
23 void GetDescription(Stream *s, lldb::DescriptionLevel level) override;
24 bool ValidatePlan(Stream *error) override;
25 bool ShouldStop(Event *event_ptr) override;
26 bool StopOthers() override;
28 bool WillStop() override;
29 void DidPop() override;
30 bool MischiefManaged() override;
31 void ThreadDestroyed() override;
32 void SetAutoContinue(bool do_it);
33 bool ShouldAutoContinue(Event *event_ptr) override;
34 bool IsPlanStale() override;
35
37
38protected:
39 bool DoPlanExplainsStop(Event *event_ptr) override;
40 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
41
43
44private:
49
53};
54
55} // namespace lldb_private
56
57#endif // LLDB_TARGET_THREADPLANSTEPOVERBREAKPOINT_H
static llvm::raw_ostream & error(Stream &strm)
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
bool ValidatePlan(Stream *error) override
Returns whether this plan could be successfully created.
bool DoWillResume(lldb::StateType resume_state, bool current_plan) override
ThreadPlanStepOverBreakpoint(const ThreadPlanStepOverBreakpoint &)=delete
void GetDescription(Stream *s, lldb::DescriptionLevel level) override
Print a description of this thread to the stream s.
const ThreadPlanStepOverBreakpoint & operator=(const ThreadPlanStepOverBreakpoint &)=delete
bool ShouldAutoContinue(Event *event_ptr) override
Returns whether this thread plan overrides the ShouldStop of subsequently processed plans.
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
DescriptionLevel
Description levels for "void GetDescription(Stream *, DescriptionLevel)" calls.
StateType
Process and Thread States.
uint64_t user_id_t
Definition: lldb-types.h:80
uint64_t addr_t
Definition: lldb-types.h:79