[memprof] Move YAML traits to MemProf.h (NFC) (#118668)
[llvm-project.git] / lldb / source / Plugins / ObjectFile / PDB / ObjectFilePDB.h
blobc06e72650e0117e9f1cb7a7731666b92ea664c8d
1 //===-- ObjectFilePDB.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 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_SOURCE_PLUGINS_OBJECTFILE_PDB_OBJECTFILEPDB_H
10 #define LLDB_SOURCE_PLUGINS_OBJECTFILE_PDB_OBJECTFILEPDB_H
12 #include "lldb/Symbol/ObjectFile.h"
13 #include "lldb/Utility/ArchSpec.h"
14 #include "llvm/DebugInfo/PDB/Native/NativeSession.h"
15 #include "llvm/DebugInfo/PDB/PDBTypes.h"
17 namespace lldb_private {
19 class ObjectFilePDB : public ObjectFile {
20 public:
21 // Static Functions
22 static void Initialize();
23 static void Terminate();
25 static llvm::StringRef GetPluginNameStatic() { return "pdb"; }
26 static const char *GetPluginDescriptionStatic() {
27 return "PDB object file reader.";
30 static std::unique_ptr<llvm::pdb::PDBFile>
31 loadPDBFile(std::string PdbPath, llvm::BumpPtrAllocator &Allocator);
33 static ObjectFile *
34 CreateInstance(const lldb::ModuleSP &module_sp, lldb::DataBufferSP data_sp,
35 lldb::offset_t data_offset, const FileSpec *file,
36 lldb::offset_t file_offset, lldb::offset_t length);
38 static ObjectFile *CreateMemoryInstance(const lldb::ModuleSP &module_sp,
39 lldb::WritableDataBufferSP data_sp,
40 const lldb::ProcessSP &process_sp,
41 lldb::addr_t header_addr);
43 static size_t GetModuleSpecifications(const FileSpec &file,
44 lldb::DataBufferSP &data_sp,
45 lldb::offset_t data_offset,
46 lldb::offset_t file_offset,
47 lldb::offset_t length,
48 ModuleSpecList &specs);
50 // PluginInterface protocol
51 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
53 // LLVM RTTI support
54 static char ID;
55 bool isA(const void *ClassID) const override {
56 return ClassID == &ID || ObjectFile::isA(ClassID);
58 static bool classof(const ObjectFile *obj) { return obj->isA(&ID); }
60 // ObjectFile Protocol.
61 uint32_t GetAddressByteSize() const override { return 8; }
63 lldb::ByteOrder GetByteOrder() const override {
64 return lldb::eByteOrderLittle;
67 bool ParseHeader() override { return true; }
69 bool IsExecutable() const override { return false; }
71 void ParseSymtab(lldb_private::Symtab &symtab) override {}
73 bool IsStripped() override { return false; }
75 // No section in PDB file.
76 void CreateSections(SectionList &unified_section_list) override {}
78 void Dump(Stream *s) override {}
80 ArchSpec GetArchitecture() override;
82 UUID GetUUID() override { return m_uuid; }
84 uint32_t GetDependentModules(FileSpecList &files) override { return 0; }
86 Type CalculateType() override { return eTypeDebugInfo; }
88 Strata CalculateStrata() override { return eStrataUser; }
90 llvm::pdb::PDBFile &GetPDBFile() { return *m_file_up; }
92 ObjectFilePDB(const lldb::ModuleSP &module_sp, lldb::DataBufferSP &data_sp,
93 lldb::offset_t data_offset, const FileSpec *file,
94 lldb::offset_t offset, lldb::offset_t length);
96 private:
97 UUID m_uuid;
98 llvm::BumpPtrAllocator m_allocator;
99 std::unique_ptr<llvm::pdb::PDBFile> m_file_up;
101 bool initPDBFile();
104 } // namespace lldb_private
105 #endif // LLDB_SOURCE_PLUGINS_OBJECTFILE_PDB_OBJECTFILEPDB_H