]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverFileLine.h
Merge ^/head r305892 through r306302.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / include / lldb / Core / AddressResolverFileLine.h
1 //===-- AddressResolverFileLine.h -------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef liblldb_AddressResolverFileLine_h_
11 #define liblldb_AddressResolverFileLine_h_
12
13 // Project includes
14 #include "lldb/Core/AddressResolver.h"
15
16 namespace lldb_private {
17
18 //----------------------------------------------------------------------
19 /// @class AddressResolverFileLine AddressResolverFileLine.h "lldb/Core/AddressResolverFileLine.h"
20 /// @brief This class finds address for source file and line.  Optionally, it will look for inlined
21 /// instances of the file and line specification.
22 //----------------------------------------------------------------------
23
24 class AddressResolverFileLine :
25     public AddressResolver
26 {
27 public:
28
29     AddressResolverFileLine (const FileSpec &resolver,
30                              uint32_t line_no,
31                              bool check_inlines);
32
33     ~AddressResolverFileLine () override;
34
35     Searcher::CallbackReturn
36     SearchCallback (SearchFilter &filter,
37                     SymbolContext &context,
38                     Address *addr,
39                     bool containing) override;
40
41     Searcher::Depth
42     GetDepth () override;
43
44     void
45     GetDescription (Stream *s) override;
46
47 protected:
48     FileSpec m_file_spec; // This is the file spec we are looking for.
49     uint32_t m_line_number; // This is the line number that we are looking for.
50     bool m_inlines; // This determines whether the resolver looks for inlined functions or not.
51
52 private:
53     DISALLOW_COPY_AND_ASSIGN(AddressResolverFileLine);
54 };
55
56 } // namespace lldb_private
57
58 #endif // liblldb_AddressResolverFileLine_h_