| /openbsd/src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
| D | PDBFile.cpp | 41 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 …]
|
| D | NativeEnumInjectedSources.cpp | 40 PDBFile &File; 44 PDBFile &File, const PDBStringTable &Strings) in NativeInjectedSource() 98 PDBFile &File, const InjectedSourceStream &IJS, in NativeEnumInjectedSources()
|
| D | InputFile.cpp | 38 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()
|
| D | DbiStream.cpp | 50 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()
|
| D | NativeSession.cpp | 56 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()
|
| D | LinePrinter.cpp | 180 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/ |
| D | DbiStream.h | 36 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;
|
| D | InputFile.h | 34 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,
|
| D | NativeEnumInjectedSources.h | 20 class PDBFile; variable 25 NativeEnumInjectedSources(PDBFile &File, const InjectedSourceStream &IJS, 35 PDBFile &File;
|
| D | NativeSession.h | 23 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;
|
| D | TpiStream.h | 32 class PDBFile; variable 38 TpiStream(PDBFile &File, std::unique_ptr<msf::MappedBlockStream> Stream); 77 PDBFile &Pdb;
|
| D | LinePrinter.h | 47 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);
|
| D | PDBFile.h | 40 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/ |
| D | BytesOutputStyle.h | 26 class PDBFile; variable 30 BytesOutputStyle(PDBFile &File); 60 PDBFile &File;
|
| D | DumpOutputStyle.h | 68 PDBFile &getPdb(); 88 Error dumpOldFpo(PDBFile &File); 89 Error dumpNewFpo(PDBFile &File);
|
| D | YAMLOutputStyle.h | 23 YAMLOutputStyle(PDBFile &File); 40 PDBFile &File;
|
| D | StreamUtil.h | 20 class PDBFile; variable 58 void discoverStreamPurposes(PDBFile &File,
|
| D | llvm-pdbutil.h | 28 class PDBFile; variable 31 typedef llvm::PointerUnion<object::COFFObjectFile *, pdb::PDBFile *> 208 enum class InputFileType { PDBFile, PDBStream, DBIStream, Names, ModuleStream }; enumerator
|
| D | BytesOutputStyle.cpp | 85 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/ |
| D | PdbIndex.h | 50 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()
|
| D | SymbolFileNativePDB.h | 161 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/ |
| D | DebugTypes.cpp | 53 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/ |
| D | Makefile | 70 PDBFile.cpp \
|
| /openbsd/src/gnu/llvm/llvm/utils/gn/secondary/llvm/lib/DebugInfo/PDB/ |
| D | BUILD.gn | 58 "Native/PDBFile.cpp",
|
| /openbsd/src/gnu/llvm/llvm/lib/DebugInfo/PDB/ |
| D | CMakeLists.txt | 85 Native/PDBFile.cpp
|