/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
H A D | PDBFile.cpp | 42 PDBFile::PDBFile(StringRef Path, std::unique_ptr<BinaryStream> PdbFileBuffer, in PDBFile() function in PDBFile 47 PDBFile::~PDBFile() = default; 49 StringRef PDBFile::getFilePath() const { return FilePath; } in getFilePath() 51 StringRef PDBFile::getFileDirectory() const { in getFileDirectory() 55 uint32_t PDBFile::getBlockSize() const { return ContainerLayout.SB->BlockSize; } in getBlockSize() 57 uint32_t PDBFile::getFreeBlockMapBlock() const { in getFreeBlockMapBlock() 61 uint32_t PDBFile::getBlockCount() const { in getBlockCount() 65 uint32_t PDBFile::getNumDirectoryBytes() const { in getNumDirectoryBytes() 69 uint32_t PDBFile::getBlockMapIndex() const { in getBlockMapIndex() 73 uint32_t PDBFile::getUnknown1() const { return ContainerLayout.SB->Unknown1; } in getUnknown1() [all …]
|
H A D | NativeEnumInjectedSources.cpp | 38 PDBFile &File; 42 PDBFile &File, const PDBStringTable &Strings) in NativeInjectedSource() 96 PDBFile &File, const InjectedSourceStream &IJS, in NativeEnumInjectedSources()
|
H A D | DbiStream.cpp | 52 Error DbiStream::reload(PDBFile *Pdb) { in reload() 258 Error DbiStream::initializeSectionHeadersData(PDBFile *Pdb) { in initializeSectionHeadersData() 284 Error DbiStream::initializeOldFpoRecords(PDBFile *Pdb) { in initializeOldFpoRecords() 308 Error DbiStream::initializeNewFpoRecords(PDBFile *Pdb) { in initializeNewFpoRecords() 326 DbiStream::createIndexedStreamForHeaderType(PDBFile *Pdb, in createIndexedStreamForHeaderType()
|
H A D | NativeSession.cpp | 48 static DbiStream *getDbiStreamPtr(PDBFile &File) { in getDbiStreamPtr() 57 NativeSession::NativeSession(std::unique_ptr<PDBFile> PdbFile, in NativeSession() 71 auto File = std::make_unique<PDBFile>(Path, std::move(Stream), *Allocator); in createFromPdb() 83 static Expected<std::unique_ptr<PDBFile>> 101 auto File = std::make_unique<PDBFile>(PdbPath, std::move(Stream), *Allocator); in loadPdbFile()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | DbiStream.h | 34 class PDBFile; variable 43 Error reload(PDBFile *Pdb); 95 Error initializeSectionHeadersData(PDBFile *Pdb); 97 Error initializeOldFpoRecords(PDBFile *Pdb); 98 Error initializeNewFpoRecords(PDBFile *Pdb); 101 createIndexedStreamForHeaderType(PDBFile *Pdb, DbgHeaderType Type) const;
|
H A D | NativeEnumInjectedSources.h | 20 class PDBFile; variable 25 NativeEnumInjectedSources(PDBFile &File, const InjectedSourceStream &IJS, 35 PDBFile &File;
|
H A D | NativeSession.h | 25 class PDBFile; variable 35 NativeSession(std::unique_ptr<PDBFile> PdbFile, 105 PDBFile &getPDBFile() { return *Pdb; } in getPDBFile() 106 const PDBFile &getPDBFile() const { return *Pdb; } in getPDBFile() 122 std::unique_ptr<PDBFile> Pdb;
|
H A D | TpiStream.h | 31 class PDBFile; variable 37 TpiStream(PDBFile &File, std::unique_ptr<msf::MappedBlockStream> Stream); 76 PDBFile &Pdb;
|
H A D | PDBFile.h | 42 class PDBFile : public msf::IMSFFile { 46 PDBFile(StringRef Path, std::unique_ptr<BinaryStream> PdbFileBuffer, 48 ~PDBFile() override;
|
H A D | SymbolStream.h | 21 class PDBFile; variable
|
H A D | PublicsStream.h | 25 class PDBFile; variable
|
H A D | InfoStream.h | 26 class PDBFile; variable
|
H A D | InfoStreamBuilder.h | 27 class PDBFile; variable
|
H A D | GlobalsStream.h | 24 class PDBFile; variable
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
H A D | BytesOutputStyle.h | 26 class PDBFile; variable 30 BytesOutputStyle(PDBFile &File); 60 PDBFile &File;
|
H A D | InputFile.h | 35 class PDBFile; variable 46 PointerUnion<PDBFile *, object::COFFObjectFile *, MemoryBuffer *> PdbOrObj; 64 PDBFile &pdb(); 65 const PDBFile &pdb() const;
|
H A D | LinePrinter.h | 30 class PDBFile; variable 56 void formatMsfStreamData(StringRef Label, PDBFile &File, uint32_t StreamIdx, 59 void formatMsfStreamData(StringRef Label, PDBFile &File, 62 void formatMsfStreamBlocks(PDBFile &File, const msf::MSFStreamLayout &Stream);
|
H A D | DumpOutputStyle.h | 75 PDBFile &getPdb(); 95 Error dumpOldFpo(PDBFile &File); 96 Error dumpNewFpo(PDBFile &File);
|
H A D | YAMLOutputStyle.h | 24 YAMLOutputStyle(PDBFile &File); 41 PDBFile &File;
|
H A D | StreamUtil.h | 20 class PDBFile; variable 58 void discoverStreamPurposes(PDBFile &File,
|
H A D | InputFile.cpp | 38 getModuleDebugStream(PDBFile &File, StringRef &ModuleName, uint32_t Index) { in getModuleDebugStream() 302 PDBFile &InputFile::pdb() { in pdb() 304 return *PdbOrObj.get<PDBFile *>(); in pdb() 307 const PDBFile &InputFile::pdb() const { in pdb() 309 return *PdbOrObj.get<PDBFile *>(); in pdb() 359 bool InputFile::isPdb() const { return PdbOrObj.is<PDBFile *>(); } in isPdb()
|
H A D | llvm-pdbutil.h | 28 class PDBFile; variable 31 typedef llvm::PointerUnion<object::COFFObjectFile *, pdb::PDBFile *> 206 enum class InputFileType { PDBFile, PDBStream, DBIStream, Names, ModuleStream }; enumerator
|
H A D | LinePrinter.cpp | 174 void LinePrinter::formatMsfStreamData(StringRef Label, PDBFile &File, in formatMsfStreamData() 212 void LinePrinter::formatMsfStreamData(StringRef Label, PDBFile &File, in formatMsfStreamData() 247 PDBFile &File, const msf::MSFStreamLayout &StreamLayout) { in formatMsfStreamBlocks()
|
H A D | OutputStyle.h | 16 class PDBFile; variable
|
H A 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()
|