LLDB mainline
BreakpointResolverFileRegex.h
Go to the documentation of this file.
1//===-- BreakpointResolverFileRegex.h ----------------------------*- C++
2//-*-===//
3//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLDB_BREAKPOINT_BREAKPOINTRESOLVERFILEREGEX_H
11#define LLDB_BREAKPOINT_BREAKPOINTRESOLVERFILEREGEX_H
12
13#include <set>
16
17namespace lldb_private {
18
19/// \class BreakpointResolverFileRegex BreakpointResolverFileRegex.h
20/// "lldb/Breakpoint/BreakpointResolverFileRegex.h" This class sets
21/// breakpoints by file and line. Optionally, it will look for inlined
22/// instances of the file and line specification.
23
25public:
27 const lldb::BreakpointSP &bkpt, RegularExpression regex,
28 const std::unordered_set<std::string> &func_name_set, bool exact_match);
29
30 static BreakpointResolver *
31 CreateFromStructuredData(const lldb::BreakpointSP &bkpt,
32 const StructuredData::Dictionary &options_dict,
33 Status &error);
34
36
37 ~BreakpointResolverFileRegex() override = default;
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 void AddFunctionName(const char *func_name);
50
51 /// Methods for support type inquiry through isa, cast, and dyn_cast:
52 static inline bool classof(const BreakpointResolverFileRegex *) {
53 return true;
54 }
55 static inline bool classof(const BreakpointResolver *V) {
57 }
58
59 lldb::BreakpointResolverSP
60 CopyForBreakpoint(lldb::BreakpointSP &breakpoint) override;
61
62protected:
63 friend class Breakpoint;
65 m_regex; // This is the line expression that we are looking for.
66 bool m_exact_match; // If true, then if the source we match is in a comment,
67 // we won't set a location there.
68 std::unordered_set<std::string> m_function_names; // Limit the search to
69 // functions in the
70 // comp_unit passed in.
71
72private:
76};
77
78} // namespace lldb_private
79
80#endif // LLDB_BREAKPOINT_BREAKPOINTRESOLVERFILEREGEX_H
static llvm::raw_ostream & error(Stream &strm)
A section + offset based address class.
Definition: Address.h:59
"lldb/Breakpoint/BreakpointResolverFileRegex.h" This class sets breakpoints by file and line.
const BreakpointResolverFileRegex & operator=(const BreakpointResolverFileRegex &)=delete
BreakpointResolverFileRegex(const BreakpointResolverFileRegex &)=delete
StructuredData::ObjectSP SerializeToStructuredData() override
void GetDescription(Stream *s) override
Prints a canonical description for the breakpoint to the stream s.
Searcher::CallbackReturn SearchCallback(SearchFilter &filter, SymbolContext &context, Address *addr) override
std::unordered_set< std::string > m_function_names
static BreakpointResolver * CreateFromStructuredData(const lldb::BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, Status &error)
void Dump(Stream *s) const override
Standard "Dump" method. At present it does nothing.
static bool classof(const BreakpointResolver *V)
static bool classof(const BreakpointResolverFileRegex *)
Methods for support type inquiry through isa, cast, and dyn_cast:
lldb::BreakpointResolverSP CopyForBreakpoint(lldb::BreakpointSP &breakpoint) override
General Outline: The BreakpointResolver is a Searcher.
unsigned getResolverID() const
getResolverID - Return an ID for the concrete type of this object.
General Outline: A breakpoint has four main parts, a filter, a resolver, the list of breakpoint locat...
Definition: Breakpoint.h:81
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< 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