1 //===------ utils/obj2yaml.cpp - obj2yaml conversion tool -------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
11 #include "llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h"
12 #include "llvm/DebugInfo/CodeView/DebugStringTableSubsection.h"
13 #include "llvm/DebugInfo/CodeView/StringsAndChecksums.h"
14 #include "llvm/Object/COFF.h"
15 #include "llvm/ObjectYAML/COFFYAML.h"
16 #include "llvm/ObjectYAML/CodeViewYAMLTypes.h"
17 #include "llvm/Support/ErrorHandling.h"
18 #include "llvm/Support/YAMLTraits.h"
25 const object::COFFObjectFile
&Obj
;
26 COFFYAML::Object YAMLObj
;
28 void dumpOptionalHeader(T OptionalHeader
);
30 void dumpSections(unsigned numSections
);
31 void dumpSymbols(unsigned numSymbols
);
34 COFFDumper(const object::COFFObjectFile
&Obj
);
35 COFFYAML::Object
&getYAMLObj();
40 COFFDumper::COFFDumper(const object::COFFObjectFile
&Obj
) : Obj(Obj
) {
41 const object::pe32_header
*PE32Header
= nullptr;
42 Obj
.getPE32Header(PE32Header
);
44 dumpOptionalHeader(PE32Header
);
46 const object::pe32plus_header
*PE32PlusHeader
= nullptr;
47 Obj
.getPE32PlusHeader(PE32PlusHeader
);
49 dumpOptionalHeader(PE32PlusHeader
);
53 dumpSections(Obj
.getNumberOfSections());
54 dumpSymbols(Obj
.getNumberOfSymbols());
57 template <typename T
> void COFFDumper::dumpOptionalHeader(T OptionalHeader
) {
58 YAMLObj
.OptionalHeader
= COFFYAML::PEHeader();
59 YAMLObj
.OptionalHeader
->Header
.AddressOfEntryPoint
=
60 OptionalHeader
->AddressOfEntryPoint
;
61 YAMLObj
.OptionalHeader
->Header
.AddressOfEntryPoint
=
62 OptionalHeader
->AddressOfEntryPoint
;
63 YAMLObj
.OptionalHeader
->Header
.ImageBase
= OptionalHeader
->ImageBase
;
64 YAMLObj
.OptionalHeader
->Header
.SectionAlignment
=
65 OptionalHeader
->SectionAlignment
;
66 YAMLObj
.OptionalHeader
->Header
.FileAlignment
= OptionalHeader
->FileAlignment
;
67 YAMLObj
.OptionalHeader
->Header
.MajorOperatingSystemVersion
=
68 OptionalHeader
->MajorOperatingSystemVersion
;
69 YAMLObj
.OptionalHeader
->Header
.MinorOperatingSystemVersion
=
70 OptionalHeader
->MinorOperatingSystemVersion
;
71 YAMLObj
.OptionalHeader
->Header
.MajorImageVersion
=
72 OptionalHeader
->MajorImageVersion
;
73 YAMLObj
.OptionalHeader
->Header
.MinorImageVersion
=
74 OptionalHeader
->MinorImageVersion
;
75 YAMLObj
.OptionalHeader
->Header
.MajorSubsystemVersion
=
76 OptionalHeader
->MajorSubsystemVersion
;
77 YAMLObj
.OptionalHeader
->Header
.MinorSubsystemVersion
=
78 OptionalHeader
->MinorSubsystemVersion
;
79 YAMLObj
.OptionalHeader
->Header
.Subsystem
= OptionalHeader
->Subsystem
;
80 YAMLObj
.OptionalHeader
->Header
.DLLCharacteristics
=
81 OptionalHeader
->DLLCharacteristics
;
82 YAMLObj
.OptionalHeader
->Header
.SizeOfStackReserve
=
83 OptionalHeader
->SizeOfStackReserve
;
84 YAMLObj
.OptionalHeader
->Header
.SizeOfStackCommit
=
85 OptionalHeader
->SizeOfStackCommit
;
86 YAMLObj
.OptionalHeader
->Header
.SizeOfHeapReserve
=
87 OptionalHeader
->SizeOfHeapReserve
;
88 YAMLObj
.OptionalHeader
->Header
.SizeOfHeapCommit
=
89 OptionalHeader
->SizeOfHeapCommit
;
91 for (auto &DestDD
: YAMLObj
.OptionalHeader
->DataDirectories
) {
92 const object::data_directory
*DD
;
93 if (Obj
.getDataDirectory(I
++, DD
))
95 DestDD
= COFF::DataDirectory();
96 DestDD
->RelativeVirtualAddress
= DD
->RelativeVirtualAddress
;
97 DestDD
->Size
= DD
->Size
;
101 void COFFDumper::dumpHeader() {
102 YAMLObj
.Header
.Machine
= Obj
.getMachine();
103 YAMLObj
.Header
.Characteristics
= Obj
.getCharacteristics();
107 initializeFileAndStringTable(const llvm::object::COFFObjectFile
&Obj
,
108 codeview::StringsAndChecksumsRef
&SC
) {
110 ExitOnError
Err("Invalid .debug$S section!");
111 // Iterate all .debug$S sections looking for the checksums and string table.
112 // Exit as soon as both sections are found.
113 for (const auto &S
: Obj
.sections()) {
114 if (SC
.hasStrings() && SC
.hasChecksums())
117 StringRef SectionName
;
118 S
.getName(SectionName
);
119 ArrayRef
<uint8_t> sectionData
;
120 if (SectionName
!= ".debug$S")
123 const object::coff_section
*COFFSection
= Obj
.getCOFFSection(S
);
125 Obj
.getSectionContents(COFFSection
, sectionData
);
127 BinaryStreamReader
Reader(sectionData
, support::little
);
130 Err(Reader
.readInteger(Magic
));
131 assert(Magic
== COFF::DEBUG_SECTION_MAGIC
&& "Invalid .debug$S section!");
133 codeview::DebugSubsectionArray Subsections
;
134 Err(Reader
.readArray(Subsections
, Reader
.bytesRemaining()));
136 SC
.initialize(Subsections
);
140 void COFFDumper::dumpSections(unsigned NumSections
) {
141 std::vector
<COFFYAML::Section
> &YAMLSections
= YAMLObj
.Sections
;
142 codeview::StringsAndChecksumsRef SC
;
143 initializeFileAndStringTable(Obj
, SC
);
145 for (const auto &ObjSection
: Obj
.sections()) {
146 const object::coff_section
*COFFSection
= Obj
.getCOFFSection(ObjSection
);
147 COFFYAML::Section NewYAMLSection
;
148 ObjSection
.getName(NewYAMLSection
.Name
);
149 NewYAMLSection
.Header
.Characteristics
= COFFSection
->Characteristics
;
150 NewYAMLSection
.Header
.VirtualAddress
= ObjSection
.getAddress();
151 NewYAMLSection
.Header
.VirtualSize
= COFFSection
->VirtualSize
;
152 NewYAMLSection
.Header
.NumberOfLineNumbers
=
153 COFFSection
->NumberOfLinenumbers
;
154 NewYAMLSection
.Header
.NumberOfRelocations
=
155 COFFSection
->NumberOfRelocations
;
156 NewYAMLSection
.Header
.PointerToLineNumbers
=
157 COFFSection
->PointerToLinenumbers
;
158 NewYAMLSection
.Header
.PointerToRawData
= COFFSection
->PointerToRawData
;
159 NewYAMLSection
.Header
.PointerToRelocations
=
160 COFFSection
->PointerToRelocations
;
161 NewYAMLSection
.Header
.SizeOfRawData
= COFFSection
->SizeOfRawData
;
162 uint32_t Shift
= (COFFSection
->Characteristics
>> 20) & 0xF;
163 NewYAMLSection
.Alignment
= (1U << Shift
) >> 1;
164 assert(NewYAMLSection
.Alignment
<= 8192);
166 ArrayRef
<uint8_t> sectionData
;
167 if (!ObjSection
.isBSS())
168 Obj
.getSectionContents(COFFSection
, sectionData
);
169 NewYAMLSection
.SectionData
= yaml::BinaryRef(sectionData
);
171 if (NewYAMLSection
.Name
== ".debug$S")
172 NewYAMLSection
.DebugS
= CodeViewYAML::fromDebugS(sectionData
, SC
);
173 else if (NewYAMLSection
.Name
== ".debug$T")
174 NewYAMLSection
.DebugT
= CodeViewYAML::fromDebugT(sectionData
,
175 NewYAMLSection
.Name
);
176 else if (NewYAMLSection
.Name
== ".debug$P")
177 NewYAMLSection
.DebugP
= CodeViewYAML::fromDebugT(sectionData
,
178 NewYAMLSection
.Name
);
179 else if (NewYAMLSection
.Name
== ".debug$H")
180 NewYAMLSection
.DebugH
= CodeViewYAML::fromDebugH(sectionData
);
182 std::vector
<COFFYAML::Relocation
> Relocations
;
183 for (const auto &Reloc
: ObjSection
.relocations()) {
184 const object::coff_relocation
*reloc
= Obj
.getCOFFRelocation(Reloc
);
185 COFFYAML::Relocation Rel
;
186 object::symbol_iterator Sym
= Reloc
.getSymbol();
187 Expected
<StringRef
> SymbolNameOrErr
= Sym
->getName();
188 if (!SymbolNameOrErr
) {
190 raw_string_ostream
OS(Buf
);
191 logAllUnhandledErrors(SymbolNameOrErr
.takeError(), OS
, "");
193 report_fatal_error(Buf
);
195 Rel
.SymbolName
= *SymbolNameOrErr
;
196 Rel
.VirtualAddress
= reloc
->VirtualAddress
;
197 Rel
.Type
= reloc
->Type
;
198 Relocations
.push_back(Rel
);
200 NewYAMLSection
.Relocations
= Relocations
;
201 YAMLSections
.push_back(NewYAMLSection
);
206 dumpFunctionDefinition(COFFYAML::Symbol
*Sym
,
207 const object::coff_aux_function_definition
*ObjFD
) {
208 COFF::AuxiliaryFunctionDefinition YAMLFD
;
209 YAMLFD
.TagIndex
= ObjFD
->TagIndex
;
210 YAMLFD
.TotalSize
= ObjFD
->TotalSize
;
211 YAMLFD
.PointerToLinenumber
= ObjFD
->PointerToLinenumber
;
212 YAMLFD
.PointerToNextFunction
= ObjFD
->PointerToNextFunction
;
214 Sym
->FunctionDefinition
= YAMLFD
;
218 dumpbfAndEfLineInfo(COFFYAML::Symbol
*Sym
,
219 const object::coff_aux_bf_and_ef_symbol
*ObjBES
) {
220 COFF::AuxiliarybfAndefSymbol YAMLAAS
;
221 YAMLAAS
.Linenumber
= ObjBES
->Linenumber
;
222 YAMLAAS
.PointerToNextFunction
= ObjBES
->PointerToNextFunction
;
224 Sym
->bfAndefSymbol
= YAMLAAS
;
227 static void dumpWeakExternal(COFFYAML::Symbol
*Sym
,
228 const object::coff_aux_weak_external
*ObjWE
) {
229 COFF::AuxiliaryWeakExternal YAMLWE
;
230 YAMLWE
.TagIndex
= ObjWE
->TagIndex
;
231 YAMLWE
.Characteristics
= ObjWE
->Characteristics
;
233 Sym
->WeakExternal
= YAMLWE
;
237 dumpSectionDefinition(COFFYAML::Symbol
*Sym
,
238 const object::coff_aux_section_definition
*ObjSD
,
240 COFF::AuxiliarySectionDefinition YAMLASD
;
241 int32_t AuxNumber
= ObjSD
->getNumber(IsBigObj
);
242 YAMLASD
.Length
= ObjSD
->Length
;
243 YAMLASD
.NumberOfRelocations
= ObjSD
->NumberOfRelocations
;
244 YAMLASD
.NumberOfLinenumbers
= ObjSD
->NumberOfLinenumbers
;
245 YAMLASD
.CheckSum
= ObjSD
->CheckSum
;
246 YAMLASD
.Number
= AuxNumber
;
247 YAMLASD
.Selection
= ObjSD
->Selection
;
249 Sym
->SectionDefinition
= YAMLASD
;
253 dumpCLRTokenDefinition(COFFYAML::Symbol
*Sym
,
254 const object::coff_aux_clr_token
*ObjCLRToken
) {
255 COFF::AuxiliaryCLRToken YAMLCLRToken
;
256 YAMLCLRToken
.AuxType
= ObjCLRToken
->AuxType
;
257 YAMLCLRToken
.SymbolTableIndex
= ObjCLRToken
->SymbolTableIndex
;
259 Sym
->CLRToken
= YAMLCLRToken
;
262 void COFFDumper::dumpSymbols(unsigned NumSymbols
) {
263 std::vector
<COFFYAML::Symbol
> &Symbols
= YAMLObj
.Symbols
;
264 for (const auto &S
: Obj
.symbols()) {
265 object::COFFSymbolRef Symbol
= Obj
.getCOFFSymbol(S
);
266 COFFYAML::Symbol Sym
;
267 Obj
.getSymbolName(Symbol
, Sym
.Name
);
268 Sym
.SimpleType
= COFF::SymbolBaseType(Symbol
.getBaseType());
269 Sym
.ComplexType
= COFF::SymbolComplexType(Symbol
.getComplexType());
270 Sym
.Header
.StorageClass
= Symbol
.getStorageClass();
271 Sym
.Header
.Value
= Symbol
.getValue();
272 Sym
.Header
.SectionNumber
= Symbol
.getSectionNumber();
273 Sym
.Header
.NumberOfAuxSymbols
= Symbol
.getNumberOfAuxSymbols();
275 if (Symbol
.getNumberOfAuxSymbols() > 0) {
276 ArrayRef
<uint8_t> AuxData
= Obj
.getSymbolAuxData(Symbol
);
277 if (Symbol
.isFunctionDefinition()) {
278 // This symbol represents a function definition.
279 assert(Symbol
.getNumberOfAuxSymbols() == 1 &&
280 "Expected a single aux symbol to describe this function!");
282 const object::coff_aux_function_definition
*ObjFD
=
283 reinterpret_cast<const object::coff_aux_function_definition
*>(
285 dumpFunctionDefinition(&Sym
, ObjFD
);
286 } else if (Symbol
.isFunctionLineInfo()) {
287 // This symbol describes function line number information.
288 assert(Symbol
.getNumberOfAuxSymbols() == 1 &&
289 "Expected a single aux symbol to describe this function!");
291 const object::coff_aux_bf_and_ef_symbol
*ObjBES
=
292 reinterpret_cast<const object::coff_aux_bf_and_ef_symbol
*>(
294 dumpbfAndEfLineInfo(&Sym
, ObjBES
);
295 } else if (Symbol
.isAnyUndefined()) {
296 // This symbol represents a weak external definition.
297 assert(Symbol
.getNumberOfAuxSymbols() == 1 &&
298 "Expected a single aux symbol to describe this weak symbol!");
300 const object::coff_aux_weak_external
*ObjWE
=
301 reinterpret_cast<const object::coff_aux_weak_external
*>(
303 dumpWeakExternal(&Sym
, ObjWE
);
304 } else if (Symbol
.isFileRecord()) {
305 // This symbol represents a file record.
306 Sym
.File
= StringRef(reinterpret_cast<const char *>(AuxData
.data()),
307 Symbol
.getNumberOfAuxSymbols() *
308 Obj
.getSymbolTableEntrySize())
309 .rtrim(StringRef("\0", /*length=*/1));
310 } else if (Symbol
.isSectionDefinition()) {
311 // This symbol represents a section definition.
312 assert(Symbol
.getNumberOfAuxSymbols() == 1 &&
313 "Expected a single aux symbol to describe this section!");
315 const object::coff_aux_section_definition
*ObjSD
=
316 reinterpret_cast<const object::coff_aux_section_definition
*>(
318 dumpSectionDefinition(&Sym
, ObjSD
, Symbol
.isBigObj());
319 } else if (Symbol
.isCLRToken()) {
320 // This symbol represents a CLR token definition.
321 assert(Symbol
.getNumberOfAuxSymbols() == 1 &&
322 "Expected a single aux symbol to describe this CLR Token!");
324 const object::coff_aux_clr_token
*ObjCLRToken
=
325 reinterpret_cast<const object::coff_aux_clr_token
*>(
327 dumpCLRTokenDefinition(&Sym
, ObjCLRToken
);
329 llvm_unreachable("Unhandled auxiliary symbol!");
332 Symbols
.push_back(Sym
);
336 COFFYAML::Object
&COFFDumper::getYAMLObj() {
340 std::error_code
coff2yaml(raw_ostream
&Out
, const object::COFFObjectFile
&Obj
) {
341 COFFDumper
Dumper(Obj
);
343 yaml::Output
Yout(Out
);
344 Yout
<< Dumper
.getYAMLObj();
346 return std::error_code();