LLDB mainline
ThreadPlanStepUntil.h
Go to the documentation of this file.
1//===-- ThreadPlanStepUntil.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_THREADPLANSTEPUNTIL_H
10#define LLDB_TARGET_THREADPLANSTEPUNTIL_H
11
12#include "lldb/Target/Thread.h"
14
15namespace lldb_private {
16
18public:
19 ~ThreadPlanStepUntil() override;
20
21 void GetDescription(Stream *s, lldb::DescriptionLevel level) override;
22 bool ValidatePlan(Stream *error) override;
23 bool ShouldStop(Event *event_ptr) override;
24 bool StopOthers() override;
26 bool WillStop() override;
27 bool MischiefManaged() override;
28
29protected:
30 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
31 bool DoPlanExplainsStop(Event *event_ptr) override;
32
33 ThreadPlanStepUntil(Thread &thread, lldb::addr_t *address_list,
34 size_t num_addresses, bool stop_others,
35 uint32_t frame_idx = 0);
36
37 void AnalyzeStop();
38
39private:
48
49 typedef std::map<lldb::addr_t, lldb::break_id_t> until_collection;
52
53 void Clear();
54
56 bool abort_other_plans, lldb::addr_t *address_list, size_t num_addresses,
57 bool stop_others, uint32_t frame_idx, Status &status);
58
59 // Need an appropriate marker for the current stack so we can tell step out
60 // from step in.
61
64};
65
66} // namespace lldb_private
67
68#endif // LLDB_TARGET_THREADPLANSTEPUNTIL_H
static llvm::raw_ostream & error(Stream &strm)
An error handling class.
Definition: Status.h:44
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
bool DoWillResume(lldb::StateType resume_state, bool current_plan) override
ThreadPlanStepUntil(const ThreadPlanStepUntil &)=delete
void GetDescription(Stream *s, lldb::DescriptionLevel level) override
Print a description of this thread to the stream s.
bool DoPlanExplainsStop(Event *event_ptr) override
bool ValidatePlan(Stream *error) override
Returns whether this plan could be successfully created.
lldb::StateType GetPlanRunState() override
const ThreadPlanStepUntil & operator=(const ThreadPlanStepUntil &)=delete
std::map< lldb::addr_t, lldb::break_id_t > until_collection
bool ShouldStop(Event *event_ptr) override
virtual lldb::ThreadPlanSP QueueThreadPlanForStepUntil(bool abort_other_plans, lldb::addr_t *address_list, size_t num_addresses, bool stop_others, uint32_t frame_idx, Status &status)
Definition: Thread.cpp:1366
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
std::shared_ptr< lldb_private::ThreadPlan > ThreadPlanSP
Definition: lldb-forward.h:441
DescriptionLevel
Description levels for "void GetDescription(Stream *, DescriptionLevel)" calls.
StateType
Process and Thread States.
int32_t break_id_t
Definition: lldb-types.h:84
uint64_t addr_t
Definition: lldb-types.h:79