1 //===- DbiModuleDescriptorBuilder.h - PDB module information ----*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_DEBUGINFO_PDB_RAW_DBIMODULEDESCRIPTORBUILDER_H
10 #define LLVM_DEBUGINFO_PDB_RAW_DBIMODULEDESCRIPTORBUILDER_H
12 #include "llvm/ADT/StringRef.h"
13 #include "llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h"
14 #include "llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h"
15 #include "llvm/DebugInfo/CodeView/DebugLinesSubsection.h"
16 #include "llvm/DebugInfo/CodeView/DebugSubsectionRecord.h"
17 #include "llvm/DebugInfo/CodeView/SymbolRecord.h"
18 #include "llvm/DebugInfo/PDB/Native/RawTypes.h"
19 #include "llvm/Support/Error.h"
25 class BinaryStreamWriter
;
28 class DebugSubsectionRecordBuilder
;
37 class DbiModuleDescriptorBuilder
{
38 friend class DbiStreamBuilder
;
41 DbiModuleDescriptorBuilder(StringRef ModuleName
, uint32_t ModIndex
,
42 msf::MSFBuilder
&Msf
);
43 ~DbiModuleDescriptorBuilder();
45 DbiModuleDescriptorBuilder(const DbiModuleDescriptorBuilder
&) = delete;
46 DbiModuleDescriptorBuilder
&
47 operator=(const DbiModuleDescriptorBuilder
&) = delete;
49 void setPdbFilePathNI(uint32_t NI
);
50 void setObjFileName(StringRef Name
);
51 void setFirstSectionContrib(const SectionContrib
&SC
);
52 void addSymbol(codeview::CVSymbol Symbol
);
53 void addSymbolsInBulk(ArrayRef
<uint8_t> BulkSymbols
);
56 addDebugSubsection(std::shared_ptr
<codeview::DebugSubsection
> Subsection
);
59 addDebugSubsection(const codeview::DebugSubsectionRecord
&SubsectionContents
);
61 uint16_t getStreamIndex() const;
62 StringRef
getModuleName() const { return ModuleName
; }
63 StringRef
getObjFileName() const { return ObjFileName
; }
65 unsigned getModuleIndex() const { return Layout
.Mod
; }
67 ArrayRef
<std::string
> source_files() const {
68 return makeArrayRef(SourceFiles
);
71 uint32_t calculateSerializedLength() const;
73 /// Return the offset within the module symbol stream of the next symbol
74 /// record passed to addSymbol. Add four to account for the signature.
75 uint32_t getNextSymbolOffset() const { return SymbolByteSize
+ 4; }
78 Error
finalizeMsfLayout();
80 Error
commit(BinaryStreamWriter
&ModiWriter
, const msf::MSFLayout
&MsfLayout
,
81 WritableBinaryStreamRef MsfBuffer
);
84 uint32_t calculateC13DebugInfoSize() const;
86 void addSourceFile(StringRef Path
);
89 uint32_t SymbolByteSize
= 0;
90 uint32_t PdbFilePathNI
= 0;
91 std::string ModuleName
;
92 std::string ObjFileName
;
93 std::vector
<std::string
> SourceFiles
;
94 std::vector
<ArrayRef
<uint8_t>> Symbols
;
96 std::vector
<std::unique_ptr
<codeview::DebugSubsectionRecordBuilder
>>
99 ModuleInfoHeader Layout
;
102 } // end namespace pdb
104 } // end namespace llvm
106 #endif // LLVM_DEBUGINFO_PDB_RAW_DBIMODULEDESCRIPTORBUILDER_H