LLDB mainline
BreakpointResolverScripted.h
Go to the documentation of this file.
1//===-- BreakpointResolverScripted.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_BREAKPOINT_BREAKPOINTRESOLVERSCRIPTED_H
10#define LLDB_BREAKPOINT_BREAKPOINTRESOLVERSCRIPTED_H
11
15#include "lldb/lldb-forward.h"
16
17namespace lldb_private {
18
19/// \class BreakpointResolverScripted BreakpointResolverScripted.h
20/// "lldb/Breakpoint/BreakpointResolverScripted.h" This class sets breakpoints
21/// on a given Address. This breakpoint only takes once, and then it won't
22/// attempt to reset itself.
23
25public:
26 BreakpointResolverScripted(const lldb::BreakpointSP &bkpt,
27 const llvm::StringRef class_name,
29 const StructuredDataImpl &args_data);
30
31 ~BreakpointResolverScripted() override = default;
32
33 static BreakpointResolver *
34 CreateFromStructuredData(const lldb::BreakpointSP &bkpt,
35 const StructuredData::Dictionary &options_dict,
36 Status &error);
37
39
41 SymbolContext &context,
42 Address *addr) override;
43
44 lldb::SearchDepth GetDepth() override;
45
46 void GetDescription(Stream *s) override;
47
48 void Dump(Stream *s) const override;
49
50 /// Methods for support type inquiry through isa, cast, and dyn_cast:
51 static inline bool classof(const BreakpointResolverScripted *) { return true; }
52 static inline bool classof(const BreakpointResolver *V) {
54 }
55
56 lldb::BreakpointResolverSP
57 CopyForBreakpoint(lldb::BreakpointSP &breakpoint) override;
58
59protected:
60 void NotifyBreakpointSet() override;
61private:
62 void CreateImplementationIfNeeded(lldb::BreakpointSP bkpt);
64
65 std::string m_class_name;
69
73};
74
75} // namespace lldb_private
76
77#endif // LLDB_BREAKPOINT_BREAKPOINTRESOLVERSCRIPTED_H
static llvm::raw_ostream & error(Stream &strm)
A section + offset based address class.
Definition: Address.h:59
"lldb/Breakpoint/BreakpointResolverScripted.h" This class sets breakpoints on a given Address.
lldb::BreakpointResolverSP CopyForBreakpoint(lldb::BreakpointSP &breakpoint) override
void GetDescription(Stream *s) override
Prints a canonical description for the breakpoint to the stream s.
StructuredData::ObjectSP SerializeToStructuredData() override
BreakpointResolverScripted(const BreakpointResolverScripted &)=delete
void Dump(Stream *s) const override
Standard "Dump" method. At present it does nothing.
Searcher::CallbackReturn SearchCallback(SearchFilter &filter, SymbolContext &context, Address *addr) override
void CreateImplementationIfNeeded(lldb::BreakpointSP bkpt)
const BreakpointResolverScripted & operator=(const BreakpointResolverScripted &)=delete
BreakpointResolverScripted(const lldb::BreakpointSP &bkpt, const llvm::StringRef class_name, lldb::SearchDepth depth, const StructuredDataImpl &args_data)
static BreakpointResolver * CreateFromStructuredData(const lldb::BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, Status &error)
~BreakpointResolverScripted() override=default
static bool classof(const BreakpointResolverScripted *)
Methods for support type inquiry through isa, cast, and dyn_cast:
static bool classof(const BreakpointResolver *V)
General Outline: The BreakpointResolver is a Searcher.
unsigned getResolverID() const
getResolverID - Return an ID for the concrete type of this object.
General Outline: Provides the callback and search depth for the SearchFilter search.
Definition: SearchFilter.h:83
An error handling class.
Definition: Status.h:44
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
std::shared_ptr< Generic > GenericSP
std::shared_ptr< Object > ObjectSP
Defines a symbol context baton that can be handed other debug core functions.
Definition: SymbolContext.h:33
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14