LLDB mainline
AppleDWARFIndex.h
Go to the documentation of this file.
1//===-- AppleDWARFIndex.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_SOURCE_PLUGINS_SYMBOLFILE_DWARF_APPLEDWARFINDEX_H
10#define LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_APPLEDWARFINDEX_H
11
14
15namespace lldb_private {
17public:
18 static std::unique_ptr<AppleDWARFIndex>
19 Create(Module &module, DWARFDataExtractor apple_names,
20 DWARFDataExtractor apple_namespaces, DWARFDataExtractor apple_types,
21 DWARFDataExtractor apple_objc, DWARFDataExtractor debug_str);
22
24 Module &module, std::unique_ptr<DWARFMappedHash::MemoryTable> apple_names,
25 std::unique_ptr<DWARFMappedHash::MemoryTable> apple_namespaces,
26 std::unique_ptr<DWARFMappedHash::MemoryTable> apple_types,
27 std::unique_ptr<DWARFMappedHash::MemoryTable> apple_objc)
28 : DWARFIndex(module), m_apple_names_up(std::move(apple_names)),
29 m_apple_namespaces_up(std::move(apple_namespaces)),
30 m_apple_types_up(std::move(apple_types)),
31 m_apple_objc_up(std::move(apple_objc)) {}
32
33 void Preload() override {}
34
35 void
37 llvm::function_ref<bool(DWARFDIE die)> callback) override;
38 void
40 llvm::function_ref<bool(DWARFDIE die)> callback) override;
41 void
43 llvm::function_ref<bool(DWARFDIE die)> callback) override;
44 void GetObjCMethods(ConstString class_name,
45 llvm::function_ref<bool(DWARFDIE die)> callback) override;
47 ConstString class_name, bool must_be_implementation,
48 llvm::function_ref<bool(DWARFDIE die)> callback) override;
49 void GetTypes(ConstString name,
50 llvm::function_ref<bool(DWARFDIE die)> callback) override;
51 void GetTypes(const DWARFDeclContext &context,
52 llvm::function_ref<bool(DWARFDIE die)> callback) override;
53 void GetNamespaces(ConstString name,
54 llvm::function_ref<bool(DWARFDIE die)> callback) override;
55 void GetFunctions(const Module::LookupInfo &lookup_info,
57 const CompilerDeclContext &parent_decl_ctx,
58 llvm::function_ref<bool(DWARFDIE die)> callback) override;
59 void GetFunctions(const RegularExpression &regex,
60 llvm::function_ref<bool(DWARFDIE die)> callback) override;
61
62 void Dump(Stream &s) override;
63
64private:
65 std::unique_ptr<DWARFMappedHash::MemoryTable> m_apple_names_up;
66 std::unique_ptr<DWARFMappedHash::MemoryTable> m_apple_namespaces_up;
67 std::unique_ptr<DWARFMappedHash::MemoryTable> m_apple_types_up;
68 std::unique_ptr<DWARFMappedHash::MemoryTable> m_apple_objc_up;
69};
70} // namespace lldb_private
71
72#endif // LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_APPLEDWARFINDEX_H
void GetGlobalVariables(ConstString basename, llvm::function_ref< bool(DWARFDIE die)> callback) override
Finds global variables with the given base name.
void GetNamespaces(ConstString name, llvm::function_ref< bool(DWARFDIE die)> callback) override
void GetObjCMethods(ConstString class_name, llvm::function_ref< bool(DWARFDIE die)> callback) override
static std::unique_ptr< AppleDWARFIndex > Create(Module &module, DWARFDataExtractor apple_names, DWARFDataExtractor apple_namespaces, DWARFDataExtractor apple_types, DWARFDataExtractor apple_objc, DWARFDataExtractor debug_str)
AppleDWARFIndex(Module &module, std::unique_ptr< DWARFMappedHash::MemoryTable > apple_names, std::unique_ptr< DWARFMappedHash::MemoryTable > apple_namespaces, std::unique_ptr< DWARFMappedHash::MemoryTable > apple_types, std::unique_ptr< DWARFMappedHash::MemoryTable > apple_objc)
std::unique_ptr< DWARFMappedHash::MemoryTable > m_apple_types_up
void GetTypes(ConstString name, llvm::function_ref< bool(DWARFDIE die)> callback) override
std::unique_ptr< DWARFMappedHash::MemoryTable > m_apple_objc_up
std::unique_ptr< DWARFMappedHash::MemoryTable > m_apple_names_up
void Dump(Stream &s) override
void GetFunctions(const Module::LookupInfo &lookup_info, SymbolFileDWARF &dwarf, const CompilerDeclContext &parent_decl_ctx, llvm::function_ref< bool(DWARFDIE die)> callback) override
void GetCompleteObjCClass(ConstString class_name, bool must_be_implementation, llvm::function_ref< bool(DWARFDIE die)> callback) override
std::unique_ptr< DWARFMappedHash::MemoryTable > m_apple_namespaces_up
Represents a generic declaration context in a program.
A uniqued constant string class.
Definition: ConstString.h:39
A class that encapsulates name lookup information.
Definition: Module.h:950
A class that describes an executable image and its associated object and symbol files.
Definition: Module.h:88
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14