1 //===- ModuleDebugStream.cpp - PDB Module Info Stream Access --------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "llvm/DebugInfo/PDB/Native/ModuleDebugStream.h" 11 #include "llvm/ADT/iterator_range.h" 12 #include "llvm/DebugInfo/CodeView/SymbolRecord.h" 13 #include "llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h" 14 #include "llvm/DebugInfo/PDB/Native/PDBFile.h" 15 #include "llvm/DebugInfo/PDB/Native/RawError.h" 16 #include "llvm/DebugInfo/PDB/Native/RawTypes.h" 17 #include "llvm/Support/BinaryStreamReader.h" 18 #include "llvm/Support/BinaryStreamRef.h" 19 #include "llvm/Support/Error.h" 20 #include <algorithm> 21 #include <cstdint> 22 23 using namespace llvm; 24 using namespace llvm::codeview; 25 using namespace llvm::msf; 26 using namespace llvm::pdb; 27 28 ModuleDebugStreamRef::ModuleDebugStreamRef( 29 const DbiModuleDescriptor &Module, 30 std::unique_ptr<MappedBlockStream> Stream) 31 : Mod(Module), Stream(std::move(Stream)) {} 32 33 ModuleDebugStreamRef::~ModuleDebugStreamRef() = default; 34 35 Error ModuleDebugStreamRef::reload() { 36 BinaryStreamReader Reader(*Stream); 37 38 uint32_t SymbolSize = Mod.getSymbolDebugInfoByteSize(); 39 uint32_t C11Size = Mod.getC11LineInfoByteSize(); 40 uint32_t C13Size = Mod.getC13LineInfoByteSize(); 41 42 if (C11Size > 0 && C13Size > 0) 43 return make_error<RawError>(raw_error_code::corrupt_file, 44 "Module has both C11 and C13 line info"); 45 46 BinaryStreamRef S; 47 48 if (auto EC = Reader.readInteger(Signature)) 49 return EC; 50 if (auto EC = Reader.readSubstream(SymbolsSubstream, SymbolSize - 4)) 51 return EC; 52 if (auto EC = Reader.readSubstream(C11LinesSubstream, C11Size)) 53 return EC; 54 if (auto EC = Reader.readSubstream(C13LinesSubstream, C13Size)) 55 return EC; 56 57 BinaryStreamReader SymbolReader(SymbolsSubstream.StreamData); 58 if (auto EC = 59 SymbolReader.readArray(SymbolArray, SymbolReader.bytesRemaining())) 60 return EC; 61 62 BinaryStreamReader SubsectionsReader(C13LinesSubstream.StreamData); 63 if (auto EC = SubsectionsReader.readArray(Subsections, 64 SubsectionsReader.bytesRemaining())) 65 return EC; 66 67 uint32_t GlobalRefsSize; 68 if (auto EC = Reader.readInteger(GlobalRefsSize)) 69 return EC; 70 if (auto EC = Reader.readSubstream(GlobalRefsSubstream, GlobalRefsSize)) 71 return EC; 72 if (Reader.bytesRemaining() > 0) 73 return make_error<RawError>(raw_error_code::corrupt_file, 74 "Unexpected bytes in module stream."); 75 76 return Error::success(); 77 } 78 79 BinarySubstreamRef ModuleDebugStreamRef::getSymbolsSubstream() const { 80 return SymbolsSubstream; 81 } 82 83 BinarySubstreamRef ModuleDebugStreamRef::getC11LinesSubstream() const { 84 return C11LinesSubstream; 85 } 86 87 BinarySubstreamRef ModuleDebugStreamRef::getC13LinesSubstream() const { 88 return C13LinesSubstream; 89 } 90 91 BinarySubstreamRef ModuleDebugStreamRef::getGlobalRefsSubstream() const { 92 return GlobalRefsSubstream; 93 } 94 95 iterator_range<codeview::CVSymbolArray::Iterator> 96 ModuleDebugStreamRef::symbols(bool *HadError) const { 97 return make_range(SymbolArray.begin(HadError), SymbolArray.end()); 98 } 99 100 llvm::iterator_range<ModuleDebugStreamRef::DebugSubsectionIterator> 101 ModuleDebugStreamRef::subsections() const { 102 return make_range(Subsections.begin(), Subsections.end()); 103 } 104 105 bool ModuleDebugStreamRef::hasDebugSubsections() const { 106 return !C13LinesSubstream.empty(); 107 } 108 109 Error ModuleDebugStreamRef::commit() { return Error::success(); } 110 111 Expected<codeview::DebugChecksumsSubsectionRef> 112 ModuleDebugStreamRef::findChecksumsSubsection() const { 113 codeview::DebugChecksumsSubsectionRef Result; 114 for (const auto &SS : subsections()) { 115 if (SS.kind() != DebugSubsectionKind::FileChecksums) 116 continue; 117 118 if (auto EC = Result.initialize(SS.getRecordData())) 119 return std::move(EC); 120 return Result; 121 } 122 return Result; 123 } 124