LLDB mainline
FileLineResolver.h
Go to the documentation of this file.
1//===-- FileLineResolver.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_CORE_FILELINERESOLVER_H
10#define LLDB_CORE_FILELINERESOLVER_H
11
15#include "lldb/lldb-defines.h"
16
17#include <cstdint>
18
19namespace lldb_private {
20class Address;
21class Stream;
22
23/// \class FileLineResolver FileLineResolver.h "lldb/Core/FileLineResolver.h"
24/// This class finds address for source file and line. Optionally, it will
25/// look for inlined instances of the file and line specification.
26
27class FileLineResolver : public Searcher {
28public:
30 : m_file_spec(),
31 // Set this to zero for all lines in a file
32 m_sc_list() {}
33
34 FileLineResolver(const FileSpec &resolver, uint32_t line_no,
35 bool check_inlines);
36
38
40 SymbolContext &context,
41 Address *addr) override;
42
43 lldb::SearchDepth GetDepth() override;
44
45 void GetDescription(Stream *s) override;
46
48
49 void Clear();
50
51 void Reset(const FileSpec &file_spec, uint32_t line, bool check_inlines);
52
53protected:
54 FileSpec m_file_spec; // This is the file spec we are looking for.
55 uint32_t m_line_number =
56 UINT32_MAX; // This is the line number that we are looking for.
58 bool m_inlines = true; // This determines whether the resolver looks for
59 // inlined functions or not.
60
61private:
64};
65
66} // namespace lldb_private
67
68#endif // LLDB_CORE_FILELINERESOLVER_H
A section + offset based address class.
Definition: Address.h:62
This class finds address for source file and line.
void GetDescription(Stream *s) override
Prints a canonical description for the searcher to the stream s.
lldb::SearchDepth GetDepth() override
Searcher::CallbackReturn SearchCallback(SearchFilter &filter, SymbolContext &context, Address *addr) override
const FileLineResolver & operator=(const FileLineResolver &)=delete
const SymbolContextList & GetFileLineMatches()
void Reset(const FileSpec &file_spec, uint32_t line, bool check_inlines)
FileLineResolver(const FileLineResolver &)=delete
A file utility class.
Definition: FileSpec.h:56
General Outline: Provides the callback and search depth for the SearchFilter search.
Definition: SearchFilter.h:83
General Outline: Provides the callback and search depth for the SearchFilter search.
Definition: SearchFilter.h:42
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
Defines a list of symbol context objects.
Defines a symbol context baton that can be handed other debug core functions.
Definition: SymbolContext.h:34
#define UINT32_MAX
Definition: lldb-defines.h:19
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14