OSDN Git Service

Merging r340691:
[android-x86/external-llvm.git] / tools / llvm-pdbutil / YAMLOutputStyle.cpp
1 //===- YAMLOutputStyle.cpp ------------------------------------ *- C++ --*-===//
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 "YAMLOutputStyle.h"
11
12 #include "PdbYaml.h"
13 #include "llvm-pdbutil.h"
14
15 #include "llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h"
16 #include "llvm/DebugInfo/CodeView/DebugSubsection.h"
17 #include "llvm/DebugInfo/CodeView/DebugUnknownSubsection.h"
18 #include "llvm/DebugInfo/CodeView/StringsAndChecksums.h"
19 #include "llvm/DebugInfo/MSF/MappedBlockStream.h"
20 #include "llvm/DebugInfo/PDB/Native/DbiStream.h"
21 #include "llvm/DebugInfo/PDB/Native/InfoStream.h"
22 #include "llvm/DebugInfo/PDB/Native/ModuleDebugStream.h"
23 #include "llvm/DebugInfo/PDB/Native/PDBFile.h"
24 #include "llvm/DebugInfo/PDB/Native/RawConstants.h"
25 #include "llvm/DebugInfo/PDB/Native/TpiStream.h"
26
27 using namespace llvm;
28 using namespace llvm::codeview;
29 using namespace llvm::pdb;
30
31 static bool checkModuleSubsection(opts::ModuleSubsection MS) {
32   return any_of(opts::pdb2yaml::DumpModuleSubsections,
33                 [=](opts::ModuleSubsection M) {
34                   return M == MS || M == opts::ModuleSubsection::All;
35                 });
36 }
37
38 YAMLOutputStyle::YAMLOutputStyle(PDBFile &File)
39     : File(File), Out(outs()), Obj(File.getAllocator()) {
40   Out.setWriteDefaultValues(!opts::pdb2yaml::Minimal);
41 }
42
43 Error YAMLOutputStyle::dump() {
44   if (opts::pdb2yaml::StreamDirectory)
45     opts::pdb2yaml::StreamMetadata = true;
46
47   if (auto EC = dumpFileHeaders())
48     return EC;
49
50   if (auto EC = dumpStreamMetadata())
51     return EC;
52
53   if (auto EC = dumpStreamDirectory())
54     return EC;
55
56   if (auto EC = dumpStringTable())
57     return EC;
58
59   if (auto EC = dumpPDBStream())
60     return EC;
61
62   if (auto EC = dumpDbiStream())
63     return EC;
64
65   if (auto EC = dumpTpiStream())
66     return EC;
67
68   if (auto EC = dumpIpiStream())
69     return EC;
70
71   flush();
72   return Error::success();
73 }
74
75
76 Error YAMLOutputStyle::dumpFileHeaders() {
77   if (opts::pdb2yaml::NoFileHeaders)
78     return Error::success();
79
80   yaml::MSFHeaders Headers;
81   Obj.Headers.emplace();
82   Obj.Headers->SuperBlock.NumBlocks = File.getBlockCount();
83   Obj.Headers->SuperBlock.BlockMapAddr = File.getBlockMapIndex();
84   Obj.Headers->SuperBlock.BlockSize = File.getBlockSize();
85   auto Blocks = File.getDirectoryBlockArray();
86   Obj.Headers->DirectoryBlocks.assign(Blocks.begin(), Blocks.end());
87   Obj.Headers->NumDirectoryBlocks = File.getNumDirectoryBlocks();
88   Obj.Headers->SuperBlock.NumDirectoryBytes = File.getNumDirectoryBytes();
89   Obj.Headers->NumStreams =
90       opts::pdb2yaml::StreamMetadata ? File.getNumStreams() : 0;
91   Obj.Headers->SuperBlock.FreeBlockMapBlock = File.getFreeBlockMapBlock();
92   Obj.Headers->SuperBlock.Unknown1 = File.getUnknown1();
93   Obj.Headers->FileSize = File.getFileSize();
94
95   return Error::success();
96 }
97
98 Error YAMLOutputStyle::dumpStringTable() {
99   bool RequiresStringTable = opts::pdb2yaml::DumpModuleFiles ||
100                              !opts::pdb2yaml::DumpModuleSubsections.empty();
101   bool RequestedStringTable = opts::pdb2yaml::StringTable;
102   if (!RequiresStringTable && !RequestedStringTable)
103     return Error::success();
104
105   auto ExpectedST = File.getStringTable();
106   if (!ExpectedST)
107     return ExpectedST.takeError();
108
109   Obj.StringTable.emplace();
110   const auto &ST = ExpectedST.get();
111   for (auto ID : ST.name_ids()) {
112     auto S = ST.getStringForID(ID);
113     if (!S)
114       return S.takeError();
115     if (S->empty())
116       continue;
117     Obj.StringTable->push_back(*S);
118   }
119   return Error::success();
120 }
121
122 Error YAMLOutputStyle::dumpStreamMetadata() {
123   if (!opts::pdb2yaml::StreamMetadata)
124     return Error::success();
125
126   Obj.StreamSizes.emplace();
127   Obj.StreamSizes->assign(File.getStreamSizes().begin(),
128                           File.getStreamSizes().end());
129   return Error::success();
130 }
131
132 Error YAMLOutputStyle::dumpStreamDirectory() {
133   if (!opts::pdb2yaml::StreamDirectory)
134     return Error::success();
135
136   auto StreamMap = File.getStreamMap();
137   Obj.StreamMap.emplace();
138   for (auto &Stream : StreamMap) {
139     pdb::yaml::StreamBlockList BlockList;
140     BlockList.Blocks.assign(Stream.begin(), Stream.end());
141     Obj.StreamMap->push_back(BlockList);
142   }
143
144   return Error::success();
145 }
146
147 Error YAMLOutputStyle::dumpPDBStream() {
148   if (!opts::pdb2yaml::PdbStream)
149     return Error::success();
150
151   auto IS = File.getPDBInfoStream();
152   if (!IS)
153     return IS.takeError();
154
155   auto &InfoS = IS.get();
156   Obj.PdbStream.emplace();
157   Obj.PdbStream->Age = InfoS.getAge();
158   Obj.PdbStream->Guid = InfoS.getGuid();
159   Obj.PdbStream->Signature = InfoS.getSignature();
160   Obj.PdbStream->Version = InfoS.getVersion();
161   Obj.PdbStream->Features = InfoS.getFeatureSignatures();
162
163   return Error::success();
164 }
165
166 static opts::ModuleSubsection convertSubsectionKind(DebugSubsectionKind K) {
167   switch (K) {
168   case DebugSubsectionKind::CrossScopeExports:
169     return opts::ModuleSubsection::CrossScopeExports;
170   case DebugSubsectionKind::CrossScopeImports:
171     return opts::ModuleSubsection::CrossScopeImports;
172   case DebugSubsectionKind::FileChecksums:
173     return opts::ModuleSubsection::FileChecksums;
174   case DebugSubsectionKind::InlineeLines:
175     return opts::ModuleSubsection::InlineeLines;
176   case DebugSubsectionKind::Lines:
177     return opts::ModuleSubsection::Lines;
178   case DebugSubsectionKind::Symbols:
179     return opts::ModuleSubsection::Symbols;
180   case DebugSubsectionKind::StringTable:
181     return opts::ModuleSubsection::StringTable;
182   case DebugSubsectionKind::FrameData:
183     return opts::ModuleSubsection::FrameData;
184   default:
185     return opts::ModuleSubsection::Unknown;
186   }
187   llvm_unreachable("Unreachable!");
188 }
189
190 Error YAMLOutputStyle::dumpDbiStream() {
191   if (!opts::pdb2yaml::DbiStream)
192     return Error::success();
193
194   auto DbiS = File.getPDBDbiStream();
195   if (!DbiS)
196     return DbiS.takeError();
197
198   auto &DS = DbiS.get();
199   Obj.DbiStream.emplace();
200   Obj.DbiStream->Age = DS.getAge();
201   Obj.DbiStream->BuildNumber = DS.getBuildNumber();
202   Obj.DbiStream->Flags = DS.getFlags();
203   Obj.DbiStream->MachineType = DS.getMachineType();
204   Obj.DbiStream->PdbDllRbld = DS.getPdbDllRbld();
205   Obj.DbiStream->PdbDllVersion = DS.getPdbDllVersion();
206   Obj.DbiStream->VerHeader = DS.getDbiVersion();
207   if (opts::pdb2yaml::DumpModules) {
208     const auto &Modules = DS.modules();
209     for (uint32_t I = 0; I < Modules.getModuleCount(); ++I) {
210       DbiModuleDescriptor MI = Modules.getModuleDescriptor(I);
211
212       Obj.DbiStream->ModInfos.emplace_back();
213       yaml::PdbDbiModuleInfo &DMI = Obj.DbiStream->ModInfos.back();
214
215       DMI.Mod = MI.getModuleName();
216       DMI.Obj = MI.getObjFileName();
217       if (opts::pdb2yaml::DumpModuleFiles) {
218         auto Files = Modules.source_files(I);
219         DMI.SourceFiles.assign(Files.begin(), Files.end());
220       }
221
222       uint16_t ModiStream = MI.getModuleStreamIndex();
223       if (ModiStream == kInvalidStreamIndex)
224         continue;
225
226       auto ModStreamData = msf::MappedBlockStream::createIndexedStream(
227           File.getMsfLayout(), File.getMsfBuffer(), ModiStream,
228           File.getAllocator());
229
230       pdb::ModuleDebugStreamRef ModS(MI, std::move(ModStreamData));
231       if (auto EC = ModS.reload())
232         return EC;
233
234       auto ExpectedST = File.getStringTable();
235       if (!ExpectedST)
236         return ExpectedST.takeError();
237       if (!opts::pdb2yaml::DumpModuleSubsections.empty() &&
238           ModS.hasDebugSubsections()) {
239         auto ExpectedChecksums = ModS.findChecksumsSubsection();
240         if (!ExpectedChecksums)
241           return ExpectedChecksums.takeError();
242
243         StringsAndChecksumsRef SC(ExpectedST->getStringTable(),
244                                   *ExpectedChecksums);
245
246         for (const auto &SS : ModS.subsections()) {
247           opts::ModuleSubsection OptionKind = convertSubsectionKind(SS.kind());
248           if (!checkModuleSubsection(OptionKind))
249             continue;
250
251           auto Converted =
252               CodeViewYAML::YAMLDebugSubsection::fromCodeViewSubection(SC, SS);
253           if (!Converted)
254             return Converted.takeError();
255           DMI.Subsections.push_back(*Converted);
256         }
257       }
258
259       if (opts::pdb2yaml::DumpModuleSyms) {
260         DMI.Modi.emplace();
261
262         DMI.Modi->Signature = ModS.signature();
263         bool HadError = false;
264         for (auto &Sym : ModS.symbols(&HadError)) {
265           auto ES = CodeViewYAML::SymbolRecord::fromCodeViewSymbol(Sym);
266           if (!ES)
267             return ES.takeError();
268
269           DMI.Modi->Symbols.push_back(*ES);
270         }
271       }
272     }
273   }
274   return Error::success();
275 }
276
277 Error YAMLOutputStyle::dumpTpiStream() {
278   if (!opts::pdb2yaml::TpiStream)
279     return Error::success();
280
281   auto TpiS = File.getPDBTpiStream();
282   if (!TpiS)
283     return TpiS.takeError();
284
285   auto &TS = TpiS.get();
286   Obj.TpiStream.emplace();
287   Obj.TpiStream->Version = TS.getTpiVersion();
288   for (auto &Record : TS.types(nullptr)) {
289     auto ExpectedRecord = CodeViewYAML::LeafRecord::fromCodeViewRecord(Record);
290     if (!ExpectedRecord)
291       return ExpectedRecord.takeError();
292     Obj.TpiStream->Records.push_back(*ExpectedRecord);
293   }
294
295   return Error::success();
296 }
297
298 Error YAMLOutputStyle::dumpIpiStream() {
299   if (!opts::pdb2yaml::IpiStream)
300     return Error::success();
301
302   auto InfoS = File.getPDBInfoStream();
303   if (!InfoS)
304     return InfoS.takeError();
305   if (!InfoS->containsIdStream())
306     return Error::success();
307
308   auto IpiS = File.getPDBIpiStream();
309   if (!IpiS)
310     return IpiS.takeError();
311
312   auto &IS = IpiS.get();
313   Obj.IpiStream.emplace();
314   Obj.IpiStream->Version = IS.getTpiVersion();
315   for (auto &Record : IS.types(nullptr)) {
316     auto ExpectedRecord = CodeViewYAML::LeafRecord::fromCodeViewRecord(Record);
317     if (!ExpectedRecord)
318       return ExpectedRecord.takeError();
319
320     Obj.IpiStream->Records.push_back(*ExpectedRecord);
321   }
322
323   return Error::success();
324 }
325
326 void YAMLOutputStyle::flush() {
327   Out << Obj;
328   outs().flush();
329 }