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:
27 const llvm::StringRef class_name,
29 const StructuredDataImpl &args_data);
30
31 ~BreakpointResolverScripted() override = default;
32
35 Status &error);
36
38
40 SymbolContext &context,
41 Address *addr) override;
42
43 lldb::SearchDepth GetDepth() override;
44
45 void GetDescription(Stream *s) override;
46
47 void Dump(Stream *s) const override;
48
49 /// Methods for support type inquiry through isa, cast, and dyn_cast:
50 static inline bool classof(const BreakpointResolverScripted *) { return true; }
51 static inline bool classof(const BreakpointResolver *V) {
53 }
54
56 CopyForBreakpoint(lldb::BreakpointSP &breakpoint) override;
57
58protected:
59 void NotifyBreakpointSet() override;
60private:
63
64 std::string m_class_name;
68
72};
73
74} // namespace lldb_private
75
76#endif // LLDB_BREAKPOINT_BREAKPOINTRESOLVERSCRIPTED_H
static llvm::raw_ostream & error(Stream &strm)
A section + offset based address class.
Definition: Address.h:62
"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
static lldb::BreakpointResolverSP CreateFromStructuredData(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:34
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
std::shared_ptr< lldb_private::BreakpointResolver > BreakpointResolverSP
Definition: lldb-forward.h:320
std::shared_ptr< lldb_private::Breakpoint > BreakpointSP
Definition: lldb-forward.h:313