Home
last modified time | relevance | path

Searched refs:PDBFile (Results 1 – 25 of 44) sorted by relevance

12

/openbsd/src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
DPDBFile.cpp41 PDBFile::PDBFile(StringRef Path, std::unique_ptr<BinaryStream> PdbFileBuffer, in PDBFile() function in PDBFile
46 PDBFile::~PDBFile() = default;
48 StringRef PDBFile::getFilePath() const { return FilePath; } in getFilePath()
50 StringRef PDBFile::getFileDirectory() const { in getFileDirectory()
54 uint32_t PDBFile::getBlockSize() const { return ContainerLayout.SB->BlockSize; } in getBlockSize()
56 uint32_t PDBFile::getFreeBlockMapBlock() const { in getFreeBlockMapBlock()
60 uint32_t PDBFile::getBlockCount() const { in getBlockCount()
64 uint32_t PDBFile::getNumDirectoryBytes() const { in getNumDirectoryBytes()
68 uint32_t PDBFile::getBlockMapIndex() const { in getBlockMapIndex()
72 uint32_t PDBFile::getUnknown1() const { return ContainerLayout.SB->Unknown1; } in getUnknown1()
[all …]
DNativeEnumInjectedSources.cpp40 PDBFile &File;
44 PDBFile &File, const PDBStringTable &Strings) in NativeInjectedSource()
98 PDBFile &File, const InjectedSourceStream &IJS, in NativeEnumInjectedSources()
DInputFile.cpp38 llvm::pdb::getModuleDebugStream(PDBFile &File, StringRef &ModuleName, in getModuleDebugStream()
68 Expected<ModuleDebugStreamRef> llvm::pdb::getModuleDebugStream(PDBFile &File, in getModuleDebugStream()
348 PDBFile &InputFile::pdb() { in pdb()
350 return *PdbOrObj.get<PDBFile *>(); in pdb()
353 const PDBFile &InputFile::pdb() const { in pdb()
355 return *PdbOrObj.get<PDBFile *>(); in pdb()
405 bool InputFile::isPdb() const { return PdbOrObj.is<PDBFile *>(); } in isPdb()
DDbiStream.cpp50 Error DbiStream::reload(PDBFile *Pdb) { in reload()
256 Error DbiStream::initializeSectionHeadersData(PDBFile *Pdb) { in initializeSectionHeadersData()
282 Error DbiStream::initializeOldFpoRecords(PDBFile *Pdb) { in initializeOldFpoRecords()
306 Error DbiStream::initializeNewFpoRecords(PDBFile *Pdb) { in initializeNewFpoRecords()
324 DbiStream::createIndexedStreamForHeaderType(PDBFile *Pdb, in createIndexedStreamForHeaderType()
DNativeSession.cpp56 static DbiStream *getDbiStreamPtr(PDBFile &File) { in getDbiStreamPtr()
65 NativeSession::NativeSession(std::unique_ptr<PDBFile> PdbFile, in NativeSession()
79 auto File = std::make_unique<PDBFile>(Path, std::move(Stream), *Allocator); in createFromPdb()
91 static Expected<std::unique_ptr<PDBFile>>
109 auto File = std::make_unique<PDBFile>(PdbPath, std::move(Stream), *Allocator); in loadPdbFile()
DLinePrinter.cpp180 void LinePrinter::formatMsfStreamData(StringRef Label, PDBFile &File, in formatMsfStreamData()
218 void LinePrinter::formatMsfStreamData(StringRef Label, PDBFile &File, in formatMsfStreamData()
253 PDBFile &File, const msf::MSFStreamLayout &StreamLayout) { in formatMsfStreamBlocks()
/openbsd/src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
DDbiStream.h36 class PDBFile; variable
45 Error reload(PDBFile *Pdb);
97 Error initializeSectionHeadersData(PDBFile *Pdb);
99 Error initializeOldFpoRecords(PDBFile *Pdb);
100 Error initializeNewFpoRecords(PDBFile *Pdb);
103 createIndexedStreamForHeaderType(PDBFile *Pdb, DbgHeaderType Type) const;
DInputFile.h34 class PDBFile; variable
45 PointerUnion<PDBFile *, object::COFFObjectFile *, MemoryBuffer *> PdbOrObj;
57 InputFile(PDBFile *Pdb) { PdbOrObj = Pdb; } in InputFile()
66 PDBFile &pdb();
67 const PDBFile &pdb() const;
156 getModuleDebugStream(PDBFile &File, StringRef &ModuleName, uint32_t Index);
157 Expected<ModuleDebugStreamRef> getModuleDebugStream(PDBFile &File,
DNativeEnumInjectedSources.h20 class PDBFile; variable
25 NativeEnumInjectedSources(PDBFile &File, const InjectedSourceStream &IJS,
35 PDBFile &File;
DNativeSession.h23 class PDBFile; variable
39 NativeSession(std::unique_ptr<PDBFile> PdbFile,
109 PDBFile &getPDBFile() { return *Pdb; } in getPDBFile()
110 const PDBFile &getPDBFile() const { return *Pdb; } in getPDBFile()
126 std::unique_ptr<PDBFile> Pdb;
DTpiStream.h32 class PDBFile; variable
38 TpiStream(PDBFile &File, std::unique_ptr<msf::MappedBlockStream> Stream);
77 PDBFile &Pdb;
DLinePrinter.h47 class PDBFile; variable
75 void formatMsfStreamData(StringRef Label, PDBFile &File, uint32_t StreamIdx,
78 void formatMsfStreamData(StringRef Label, PDBFile &File,
81 void formatMsfStreamBlocks(PDBFile &File, const msf::MSFStreamLayout &Stream);
DPDBFile.h40 class PDBFile : public msf::IMSFFile {
44 PDBFile(StringRef Path, std::unique_ptr<BinaryStream> PdbFileBuffer,
46 ~PDBFile() override;
/openbsd/src/gnu/llvm/llvm/tools/llvm-pdbutil/
DBytesOutputStyle.h26 class PDBFile; variable
30 BytesOutputStyle(PDBFile &File);
60 PDBFile &File;
DDumpOutputStyle.h68 PDBFile &getPdb();
88 Error dumpOldFpo(PDBFile &File);
89 Error dumpNewFpo(PDBFile &File);
DYAMLOutputStyle.h23 YAMLOutputStyle(PDBFile &File);
40 PDBFile &File;
DStreamUtil.h20 class PDBFile; variable
58 void discoverStreamPurposes(PDBFile &File,
Dllvm-pdbutil.h28 class PDBFile; variable
31 typedef llvm::PointerUnion<object::COFFObjectFile *, pdb::PDBFile *>
208 enum class InputFileType { PDBFile, PDBStream, DBIStream, Names, ModuleStream }; enumerator
DBytesOutputStyle.cpp85 BytesOutputStyle::BytesOutputStyle(PDBFile &File) in BytesOutputStyle()
323 static void iterateOneModule(PDBFile &File, LinePrinter &P, in iterateOneModule()
354 static void iterateModules(PDBFile &File, LinePrinter &P, uint32_t IndentLevel, in iterateModules()
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
DPdbIndex.h50 llvm::pdb::PDBFile *m_file = nullptr;
112 static llvm::Expected<std::unique_ptr<PdbIndex>> create(llvm::pdb::PDBFile *);
118 llvm::pdb::PDBFile &pdb() { return *m_file; } in pdb()
119 const llvm::pdb::PDBFile &pdb() const { return *m_file; } in pdb()
DSymbolFileNativePDB.h161 llvm::pdb::PDBFile &GetPDBFile() { return m_index->pdb(); } in GetPDBFile()
162 const llvm::pdb::PDBFile &GetPDBFile() const { return m_index->pdb(); } in GetPDBFile()
275 std::unique_ptr<llvm::pdb::PDBFile> m_file_up;
/openbsd/src/gnu/llvm/lld/COFF/
DDebugTypes.cpp53 pdb::PDBFile &file = f->session->getPDBFile(); in TypeServerSource()
362 pdb::PDBFile &pdbFile = pdbInputFile->session->getPDBFile(); in mergeDebugT()
451 pdb::PDBFile &pdbSession = (*tsSrc)->pdbInputFile->session->getPDBFile(); in mergeDebugT()
752 pdb::PDBFile &pdbFile = pdbInputFile->session->getPDBFile(); in loadGHashes()
794 pdb::PDBFile &pdbFile = pdbInputFile->session->getPDBFile(); in remapTpiWithGHashes()
/openbsd/src/gnu/usr.bin/clang/libLLVMDebugInfoPDB/
DMakefile70 PDBFile.cpp \
/openbsd/src/gnu/llvm/llvm/utils/gn/secondary/llvm/lib/DebugInfo/PDB/
DBUILD.gn58 "Native/PDBFile.cpp",
/openbsd/src/gnu/llvm/llvm/lib/DebugInfo/PDB/
DCMakeLists.txt85 Native/PDBFile.cpp

12