blob: e4f6aa7f6ec583d7582ea9e8e48b8b7f3e357e48 [file] [log] [blame]
Zachary Turner08950322017-06-22 20:57:39 +00001//===- DumpOutputStyle.cpp ------------------------------------ *- C++ --*-===//
Zachary Turner7e5d31e2017-06-15 22:24:24 +00002//
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
Zachary Turner08950322017-06-22 20:57:39 +000010#include "DumpOutputStyle.h"
Zachary Turner7e5d31e2017-06-15 22:24:24 +000011
Zachary Turner7e5d31e2017-06-15 22:24:24 +000012#include "FormatUtil.h"
Zachary Turner6ef51e82017-09-01 20:06:56 +000013#include "InputFile.h"
Zachary Turner7e5d31e2017-06-15 22:24:24 +000014#include "MinimalSymbolDumper.h"
15#include "MinimalTypeDumper.h"
16#include "StreamUtil.h"
17#include "llvm-pdbutil.h"
18
Zachary Turnerf391f222017-06-15 23:59:56 +000019#include "llvm/ADT/STLExtras.h"
Zachary Turner7e5d31e2017-06-15 22:24:24 +000020#include "llvm/DebugInfo/CodeView/CVSymbolVisitor.h"
21#include "llvm/DebugInfo/CodeView/CVTypeVisitor.h"
22#include "llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h"
23#include "llvm/DebugInfo/CodeView/DebugCrossExSubsection.h"
24#include "llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h"
Zachary Turner77a68882018-09-11 22:35:01 +000025#include "llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h"
Zachary Turner7e5d31e2017-06-15 22:24:24 +000026#include "llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h"
27#include "llvm/DebugInfo/CodeView/DebugLinesSubsection.h"
28#include "llvm/DebugInfo/CodeView/DebugStringTableSubsection.h"
Zachary Turner7e5d31e2017-06-15 22:24:24 +000029#include "llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h"
Zachary Turner7e5d31e2017-06-15 22:24:24 +000030#include "llvm/DebugInfo/CodeView/Formatters.h"
31#include "llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h"
32#include "llvm/DebugInfo/CodeView/Line.h"
33#include "llvm/DebugInfo/CodeView/SymbolDeserializer.h"
Zachary Turner7e5d31e2017-06-15 22:24:24 +000034#include "llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h"
35#include "llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h"
Zachary Turner7c192ee2017-12-05 23:58:18 +000036#include "llvm/DebugInfo/CodeView/TypeHashing.h"
Zachary Turnerf330d3e2017-06-30 18:15:47 +000037#include "llvm/DebugInfo/CodeView/TypeIndexDiscovery.h"
Zachary Turner7e5d31e2017-06-15 22:24:24 +000038#include "llvm/DebugInfo/MSF/MappedBlockStream.h"
39#include "llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h"
40#include "llvm/DebugInfo/PDB/Native/DbiStream.h"
Zachary Turner7e5d31e2017-06-15 22:24:24 +000041#include "llvm/DebugInfo/PDB/Native/GlobalsStream.h"
42#include "llvm/DebugInfo/PDB/Native/ISectionContribVisitor.h"
43#include "llvm/DebugInfo/PDB/Native/InfoStream.h"
44#include "llvm/DebugInfo/PDB/Native/ModuleDebugStream.h"
45#include "llvm/DebugInfo/PDB/Native/PDBFile.h"
46#include "llvm/DebugInfo/PDB/Native/PublicsStream.h"
47#include "llvm/DebugInfo/PDB/Native/RawError.h"
Zachary Turner7c192ee2017-12-05 23:58:18 +000048#include "llvm/DebugInfo/PDB/Native/SymbolStream.h"
Zachary Turner7e5d31e2017-06-15 22:24:24 +000049#include "llvm/DebugInfo/PDB/Native/TpiHashing.h"
50#include "llvm/DebugInfo/PDB/Native/TpiStream.h"
Zachary Turner7e5d31e2017-06-15 22:24:24 +000051#include "llvm/Object/COFF.h"
52#include "llvm/Support/BinaryStreamReader.h"
53#include "llvm/Support/FormatAdapters.h"
54#include "llvm/Support/FormatVariadic.h"
55
Michael Zolotukhin9d2ef852017-12-13 22:21:02 +000056#include <cctype>
Zachary Turner7e5d31e2017-06-15 22:24:24 +000057
58using namespace llvm;
59using namespace llvm::codeview;
60using namespace llvm::msf;
61using namespace llvm::pdb;
62
Zachary Turner6ef51e82017-09-01 20:06:56 +000063DumpOutputStyle::DumpOutputStyle(InputFile &File)
Zachary Turner7e5d31e2017-06-15 22:24:24 +000064 : File(File), P(2, false, outs()) {}
65
Zachary Turner6ef51e82017-09-01 20:06:56 +000066PDBFile &DumpOutputStyle::getPdb() { return File.pdb(); }
67object::COFFObjectFile &DumpOutputStyle::getObj() { return File.obj(); }
68
Alexandre Ganeafabcc792018-08-06 19:35:00 +000069void DumpOutputStyle::printStreamNotValidForObj() {
70 AutoIndent Indent(P, 4);
71 P.formatLine("Dumping this stream is not valid for object files");
72}
73
74void DumpOutputStyle::printStreamNotPresent(StringRef StreamName) {
75 AutoIndent Indent(P, 4);
76 P.formatLine("{0} stream not present", StreamName);
77}
78
Zachary Turner08950322017-06-22 20:57:39 +000079Error DumpOutputStyle::dump() {
80 if (opts::dump::DumpSummary) {
Zachary Turner7e5d31e2017-06-15 22:24:24 +000081 if (auto EC = dumpFileSummary())
82 return EC;
83 P.NewLine();
84 }
85
Zachary Turner08950322017-06-22 20:57:39 +000086 if (opts::dump::DumpStreams) {
Zachary Turner7e5d31e2017-06-15 22:24:24 +000087 if (auto EC = dumpStreamSummary())
88 return EC;
89 P.NewLine();
90 }
91
Zachary Turner6ef51e82017-09-01 20:06:56 +000092 if (opts::dump::DumpSymbolStats) {
Zachary Turnerae734ae2017-08-31 20:43:22 +000093 if (auto EC = dumpSymbolStats())
94 return EC;
95 P.NewLine();
96 }
97
Zachary Turner6ef51e82017-09-01 20:06:56 +000098 if (opts::dump::DumpUdtStats) {
Zachary Turnerae734ae2017-08-31 20:43:22 +000099 if (auto EC = dumpUdtStats())
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000100 return EC;
101 P.NewLine();
102 }
103
Zachary Turner0995a922018-03-23 18:43:39 +0000104 if (opts::dump::DumpNamedStreams) {
105 if (auto EC = dumpNamedStreams())
106 return EC;
107 P.NewLine();
108 }
109
110 if (opts::dump::DumpStringTable || opts::dump::DumpStringTableDetails) {
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000111 if (auto EC = dumpStringTable())
112 return EC;
113 P.NewLine();
114 }
115
Zachary Turner08950322017-06-22 20:57:39 +0000116 if (opts::dump::DumpModules) {
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000117 if (auto EC = dumpModules())
118 return EC;
119 }
120
Zachary Turner08950322017-06-22 20:57:39 +0000121 if (opts::dump::DumpModuleFiles) {
Zachary Turnere6f0d3c2017-06-15 23:12:41 +0000122 if (auto EC = dumpModuleFiles())
123 return EC;
124 }
125
Zachary Turner08950322017-06-22 20:57:39 +0000126 if (opts::dump::DumpLines) {
Zachary Turner7b1eb002017-06-15 23:56:19 +0000127 if (auto EC = dumpLines())
128 return EC;
129 }
130
Zachary Turner08950322017-06-22 20:57:39 +0000131 if (opts::dump::DumpInlineeLines) {
Zachary Turner7b1eb002017-06-15 23:56:19 +0000132 if (auto EC = dumpInlineeLines())
133 return EC;
134 }
135
Zachary Turner08950322017-06-22 20:57:39 +0000136 if (opts::dump::DumpXmi) {
Zachary Turner68e216b2017-06-16 00:04:24 +0000137 if (auto EC = dumpXmi())
138 return EC;
139 }
140
Zachary Turner08950322017-06-22 20:57:39 +0000141 if (opts::dump::DumpXme) {
Zachary Turner68e216b2017-06-16 00:04:24 +0000142 if (auto EC = dumpXme())
143 return EC;
144 }
145
Zachary Turner77a68882018-09-11 22:35:01 +0000146 if (opts::dump::DumpFpo) {
147 if (auto EC = dumpFpo())
148 return EC;
149 }
150
Zachary Turner7c192ee2017-12-05 23:58:18 +0000151 if (File.isObj()) {
152 if (opts::dump::DumpTypes || !opts::dump::DumpTypeIndex.empty() ||
153 opts::dump::DumpTypeExtras)
154 if (auto EC = dumpTypesFromObjectFile())
155 return EC;
156 } else {
157 if (opts::dump::DumpTypes || !opts::dump::DumpTypeIndex.empty() ||
158 opts::dump::DumpTypeExtras) {
159 if (auto EC = dumpTpiStream(StreamTPI))
160 return EC;
161 }
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000162
Zachary Turner7c192ee2017-12-05 23:58:18 +0000163 if (opts::dump::DumpIds || !opts::dump::DumpIdIndex.empty() ||
164 opts::dump::DumpIdExtras) {
165 if (auto EC = dumpTpiStream(StreamIPI))
166 return EC;
167 }
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000168 }
169
Zachary Turner7f08d4a2018-07-06 02:59:25 +0000170 if (opts::dump::DumpGSIRecords) {
171 if (auto EC = dumpGSIRecords())
172 return EC;
173 }
174
Reid Kleckner4a753bd2017-07-26 00:40:36 +0000175 if (opts::dump::DumpGlobals) {
176 if (auto EC = dumpGlobals())
177 return EC;
178 }
179
Zachary Turner08950322017-06-22 20:57:39 +0000180 if (opts::dump::DumpPublics) {
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000181 if (auto EC = dumpPublics())
182 return EC;
183 }
184
Zachary Turner08950322017-06-22 20:57:39 +0000185 if (opts::dump::DumpSymbols) {
Zachary Turner6ef51e82017-09-01 20:06:56 +0000186 auto EC = File.isPdb() ? dumpModuleSymsForPdb() : dumpModuleSymsForObj();
187 if (EC)
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000188 return EC;
189 }
190
Zachary Turner6c8e8ae2017-08-04 20:02:38 +0000191 if (opts::dump::DumpSectionHeaders) {
192 if (auto EC = dumpSectionHeaders())
193 return EC;
194 }
195
Zachary Turner08950322017-06-22 20:57:39 +0000196 if (opts::dump::DumpSectionContribs) {
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000197 if (auto EC = dumpSectionContribs())
198 return EC;
199 }
200
Zachary Turner08950322017-06-22 20:57:39 +0000201 if (opts::dump::DumpSectionMap) {
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000202 if (auto EC = dumpSectionMap())
203 return EC;
204 }
205
206 return Error::success();
207}
208
209static void printHeader(LinePrinter &P, const Twine &S) {
210 P.NewLine();
211 P.formatLine("{0,=60}", S);
212 P.formatLine("{0}", fmt_repeat('=', 60));
213}
214
Zachary Turner08950322017-06-22 20:57:39 +0000215Error DumpOutputStyle::dumpFileSummary() {
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000216 printHeader(P, "Summary");
217
Zachary Turner6ef51e82017-09-01 20:06:56 +0000218 if (File.isObj()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000219 printStreamNotValidForObj();
Zachary Turner6ef51e82017-09-01 20:06:56 +0000220 return Error::success();
221 }
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000222
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000223 AutoIndent Indent(P);
224 ExitOnError Err("Invalid PDB Format: ");
225
Zachary Turner6ef51e82017-09-01 20:06:56 +0000226 P.formatLine("Block Size: {0}", getPdb().getBlockSize());
227 P.formatLine("Number of blocks: {0}", getPdb().getBlockCount());
228 P.formatLine("Number of streams: {0}", getPdb().getNumStreams());
229
230 auto &PS = Err(getPdb().getPDBInfoStream());
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000231 P.formatLine("Signature: {0}", PS.getSignature());
232 P.formatLine("Age: {0}", PS.getAge());
233 P.formatLine("GUID: {0}", fmt_guid(PS.getGuid().Guid));
234 P.formatLine("Features: {0:x+}", static_cast<uint32_t>(PS.getFeatures()));
Zachary Turner6ef51e82017-09-01 20:06:56 +0000235 P.formatLine("Has Debug Info: {0}", getPdb().hasPDBDbiStream());
236 P.formatLine("Has Types: {0}", getPdb().hasPDBTpiStream());
237 P.formatLine("Has IDs: {0}", getPdb().hasPDBIpiStream());
238 P.formatLine("Has Globals: {0}", getPdb().hasPDBGlobalsStream());
239 P.formatLine("Has Publics: {0}", getPdb().hasPDBPublicsStream());
240 if (getPdb().hasPDBDbiStream()) {
241 auto &DBI = Err(getPdb().getPDBDbiStream());
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000242 P.formatLine("Is incrementally linked: {0}", DBI.isIncrementallyLinked());
243 P.formatLine("Has conflicting types: {0}", DBI.hasCTypes());
244 P.formatLine("Is stripped: {0}", DBI.isStripped());
245 }
246
247 return Error::success();
248}
249
Zachary Turner6ef51e82017-09-01 20:06:56 +0000250static StatCollection getSymbolStats(const SymbolGroup &SG,
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000251 StatCollection &CumulativeStats) {
252 StatCollection Stats;
Leonard Mosescu437cbaf2018-11-02 18:00:37 +0000253 if (SG.getFile().isPdb() && SG.hasDebugStream()) {
Zachary Turner6ef51e82017-09-01 20:06:56 +0000254 // For PDB files, all symbols are packed into one stream.
255 for (const auto &S : SG.getPdbModuleStream().symbols(nullptr)) {
256 Stats.update(S.kind(), S.length());
257 CumulativeStats.update(S.kind(), S.length());
258 }
259 return Stats;
260 }
261
262 for (const auto &SS : SG.getDebugSubsections()) {
263 // For object files, all symbols are spread across multiple Symbol
264 // subsections of a given .debug$S section.
265 if (SS.kind() != DebugSubsectionKind::Symbols)
266 continue;
267 DebugSymbolsSubsectionRef Symbols;
268 BinaryStreamReader Reader(SS.getRecordData());
269 cantFail(Symbols.initialize(Reader));
270 for (const auto &S : Symbols) {
271 Stats.update(S.kind(), S.length());
272 CumulativeStats.update(S.kind(), S.length());
273 }
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000274 }
275 return Stats;
276}
277
Zachary Turner6ef51e82017-09-01 20:06:56 +0000278static StatCollection getChunkStats(const SymbolGroup &SG,
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000279 StatCollection &CumulativeStats) {
280 StatCollection Stats;
Zachary Turner6ef51e82017-09-01 20:06:56 +0000281 for (const auto &Chunk : SG.getDebugSubsections()) {
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000282 Stats.update(uint32_t(Chunk.kind()), Chunk.getRecordLength());
283 CumulativeStats.update(uint32_t(Chunk.kind()), Chunk.getRecordLength());
284 }
285 return Stats;
286}
287
288static inline std::string formatModuleDetailKind(DebugSubsectionKind K) {
289 return formatChunkKind(K, false);
290}
291
292static inline std::string formatModuleDetailKind(SymbolKind K) {
293 return formatSymbolKind(K);
294}
295
296template <typename Kind>
297static void printModuleDetailStats(LinePrinter &P, StringRef Label,
298 const StatCollection &Stats) {
299 P.NewLine();
300 P.formatLine(" {0}", Label);
301 AutoIndent Indent(P);
302 P.formatLine("{0,40}: {1,7} entries ({2,8} bytes)", "Total",
303 Stats.Totals.Count, Stats.Totals.Size);
304 P.formatLine("{0}", fmt_repeat('-', 74));
305 for (const auto &K : Stats.Individual) {
306 std::string KindName = formatModuleDetailKind(Kind(K.first));
307 P.formatLine("{0,40}: {1,7} entries ({2,8} bytes)", KindName,
308 K.second.Count, K.second.Size);
309 }
310}
311
Zachary Turner6ef51e82017-09-01 20:06:56 +0000312static bool isMyCode(const SymbolGroup &Group) {
313 if (Group.getFile().isObj())
314 return true;
315
316 StringRef Name = Group.name();
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000317 if (Name.startswith("Import:"))
318 return false;
319 if (Name.endswith_lower(".dll"))
320 return false;
321 if (Name.equals_lower("* linker *"))
322 return false;
323 if (Name.startswith_lower("f:\\binaries\\Intermediate\\vctools"))
324 return false;
325 if (Name.startswith_lower("f:\\dd\\vctools\\crt"))
326 return false;
327 return true;
328}
329
Zachary Turner6ef51e82017-09-01 20:06:56 +0000330static bool shouldDumpSymbolGroup(uint32_t Idx, const SymbolGroup &Group) {
331 if (opts::dump::JustMyCode && !isMyCode(Group))
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000332 return false;
333
334 // If the arg was not specified on the command line, always dump all modules.
335 if (opts::dump::DumpModi.getNumOccurrences() == 0)
336 return true;
337
338 // Otherwise, only dump if this is the same module specified.
Zachary Turner6ef51e82017-09-01 20:06:56 +0000339 return (opts::dump::DumpModi == Idx);
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000340}
341
Zachary Turner08950322017-06-22 20:57:39 +0000342Error DumpOutputStyle::dumpStreamSummary() {
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000343 printHeader(P, "Streams");
344
Zachary Turner6ef51e82017-09-01 20:06:56 +0000345 if (File.isObj()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000346 printStreamNotValidForObj();
Zachary Turner6ef51e82017-09-01 20:06:56 +0000347 return Error::success();
348 }
349
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000350 AutoIndent Indent(P);
351
Zachary Turner6ef51e82017-09-01 20:06:56 +0000352 if (StreamPurposes.empty())
353 discoverStreamPurposes(getPdb(), StreamPurposes);
354
355 uint32_t StreamCount = getPdb().getNumStreams();
356 uint32_t MaxStreamSize = getPdb().getMaxStreamSize();
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000357
358 for (uint16_t StreamIdx = 0; StreamIdx < StreamCount; ++StreamIdx) {
359 P.formatLine(
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000360 "Stream {0} ({1} bytes): [{2}]",
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000361 fmt_align(StreamIdx, AlignStyle::Right, NumDigits(StreamCount)),
Zachary Turner6ef51e82017-09-01 20:06:56 +0000362 fmt_align(getPdb().getStreamByteSize(StreamIdx), AlignStyle::Right,
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000363 NumDigits(MaxStreamSize)),
364 StreamPurposes[StreamIdx].getLongName());
365
Zachary Turner055ae722017-06-23 20:28:14 +0000366 if (opts::dump::DumpStreamBlocks) {
Zachary Turner6ef51e82017-09-01 20:06:56 +0000367 auto Blocks = getPdb().getStreamBlockList(StreamIdx);
Zachary Turner055ae722017-06-23 20:28:14 +0000368 std::vector<uint32_t> BV(Blocks.begin(), Blocks.end());
369 P.formatLine(" {0} Blocks: [{1}]",
370 fmt_repeat(' ', NumDigits(StreamCount)),
371 make_range(BV.begin(), BV.end()));
372 }
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000373 }
374
375 return Error::success();
376}
377
Zachary Turnere6f0d3c2017-06-15 23:12:41 +0000378static Expected<ModuleDebugStreamRef> getModuleDebugStream(PDBFile &File,
379 uint32_t Index) {
Reid Kleckner04f27092017-07-27 23:13:18 +0000380 ExitOnError Err("Unexpected error: ");
Zachary Turnere6f0d3c2017-06-15 23:12:41 +0000381
382 auto &Dbi = Err(File.getPDBDbiStream());
383 const auto &Modules = Dbi.modules();
384 auto Modi = Modules.getModuleDescriptor(Index);
385
386 uint16_t ModiStream = Modi.getModuleStreamIndex();
387 if (ModiStream == kInvalidStreamIndex)
388 return make_error<RawError>(raw_error_code::no_stream,
389 "Module stream not present");
390
Zachary Turner6ef51e82017-09-01 20:06:56 +0000391 auto ModStreamData = File.createIndexedStream(ModiStream);
Zachary Turnere6f0d3c2017-06-15 23:12:41 +0000392
393 ModuleDebugStreamRef ModS(Modi, std::move(ModStreamData));
394 if (auto EC = ModS.reload())
395 return make_error<RawError>(raw_error_code::corrupt_file,
396 "Invalid module stream");
397
398 return std::move(ModS);
399}
400
Zachary Turnerf391f222017-06-15 23:59:56 +0000401template <typename CallbackT>
Zachary Turner6ef51e82017-09-01 20:06:56 +0000402static void
403iterateOneModule(InputFile &File, const Optional<PrintScope> &HeaderScope,
404 const SymbolGroup &SG, uint32_t Modi, CallbackT Callback) {
405 if (HeaderScope) {
406 HeaderScope->P.formatLine(
407 "Mod {0:4} | `{1}`: ",
408 fmt_align(Modi, AlignStyle::Right, HeaderScope->LabelWidth), SG.name());
409 }
Zachary Turner7f318ae2017-08-03 23:11:52 +0000410
Zachary Turner6ef51e82017-09-01 20:06:56 +0000411 AutoIndent Indent(HeaderScope);
412 Callback(Modi, SG);
Zachary Turner7f318ae2017-08-03 23:11:52 +0000413}
414
415template <typename CallbackT>
Zachary Turner6ef51e82017-09-01 20:06:56 +0000416static void iterateSymbolGroups(InputFile &Input,
417 const Optional<PrintScope> &HeaderScope,
418 CallbackT Callback) {
419 AutoIndent Indent(HeaderScope);
Zachary Turnerf391f222017-06-15 23:59:56 +0000420
Reid Kleckner04f27092017-07-27 23:13:18 +0000421 ExitOnError Err("Unexpected error processing modules: ");
Zachary Turnerf391f222017-06-15 23:59:56 +0000422
Zachary Turner7f318ae2017-08-03 23:11:52 +0000423 if (opts::dump::DumpModi.getNumOccurrences() > 0) {
424 assert(opts::dump::DumpModi.getNumOccurrences() == 1);
425 uint32_t Modi = opts::dump::DumpModi;
Zachary Turner6ef51e82017-09-01 20:06:56 +0000426 SymbolGroup SG(&Input, Modi);
427 iterateOneModule(Input, withLabelWidth(HeaderScope, NumDigits(Modi)), SG,
428 Modi, Callback);
Zachary Turner7f318ae2017-08-03 23:11:52 +0000429 return;
430 }
431
Zachary Turner6ef51e82017-09-01 20:06:56 +0000432 uint32_t I = 0;
433
434 for (const auto &SG : Input.symbol_groups()) {
435 if (shouldDumpSymbolGroup(I, SG))
436 iterateOneModule(Input, withLabelWidth(HeaderScope, NumDigits(I)), SG, I,
437 Callback);
438
439 ++I;
Zachary Turnerf391f222017-06-15 23:59:56 +0000440 }
441}
442
443template <typename SubsectionT>
444static void iterateModuleSubsections(
Zachary Turner6ef51e82017-09-01 20:06:56 +0000445 InputFile &File, const Optional<PrintScope> &HeaderScope,
446 llvm::function_ref<void(uint32_t, const SymbolGroup &, SubsectionT &)>
Zachary Turnerf391f222017-06-15 23:59:56 +0000447 Callback) {
448
Zachary Turner6ef51e82017-09-01 20:06:56 +0000449 iterateSymbolGroups(File, HeaderScope,
450 [&](uint32_t Modi, const SymbolGroup &SG) {
451 for (const auto &SS : SG.getDebugSubsections()) {
452 SubsectionT Subsection;
Zachary Turnerf391f222017-06-15 23:59:56 +0000453
Zachary Turner6ef51e82017-09-01 20:06:56 +0000454 if (SS.kind() != Subsection.kind())
455 continue;
Zachary Turnerf391f222017-06-15 23:59:56 +0000456
Zachary Turner6ef51e82017-09-01 20:06:56 +0000457 BinaryStreamReader Reader(SS.getRecordData());
458 if (auto EC = Subsection.initialize(Reader))
459 continue;
460 Callback(Modi, SG, Subsection);
461 }
462 });
Zachary Turnerf391f222017-06-15 23:59:56 +0000463}
464
Zachary Turner8995c862018-04-17 20:06:43 +0000465static Expected<std::pair<std::unique_ptr<MappedBlockStream>,
466 ArrayRef<llvm::object::coff_section>>>
467loadSectionHeaders(PDBFile &File, DbgHeaderType Type) {
468 if (!File.hasPDBDbiStream())
469 return make_error<StringError>(
470 "Section headers require a DBI Stream, which could not be loaded",
471 inconvertibleErrorCode());
472
473 auto &Dbi = cantFail(File.getPDBDbiStream());
474 uint32_t SI = Dbi.getDebugStreamIndex(Type);
475
476 if (SI == kInvalidStreamIndex)
477 return make_error<StringError>(
478 "PDB does not contain the requested image section header type",
479 inconvertibleErrorCode());
480
481 auto Stream = File.createIndexedStream(SI);
482 if (!Stream)
483 return make_error<StringError>("Could not load the required stream data",
484 inconvertibleErrorCode());
485
486 ArrayRef<object::coff_section> Headers;
487 if (Stream->getLength() % sizeof(object::coff_section) != 0)
488 return make_error<StringError>(
489 "Section header array size is not a multiple of section header size",
490 inconvertibleErrorCode());
491
492 uint32_t NumHeaders = Stream->getLength() / sizeof(object::coff_section);
493 BinaryStreamReader Reader(*Stream);
494 cantFail(Reader.readArray(Headers, NumHeaders));
495 return std::make_pair(std::move(Stream), Headers);
496}
497
498static std::vector<std::string> getSectionNames(PDBFile &File) {
499 auto ExpectedHeaders = loadSectionHeaders(File, DbgHeaderType::SectionHdr);
500 if (!ExpectedHeaders)
501 return {};
502
503 std::unique_ptr<MappedBlockStream> Stream;
504 ArrayRef<object::coff_section> Headers;
505 std::tie(Stream, Headers) = std::move(*ExpectedHeaders);
506 std::vector<std::string> Names;
507 for (const auto &H : Headers)
508 Names.push_back(H.Name);
509 return Names;
510}
511
512static void dumpSectionContrib(LinePrinter &P, const SectionContrib &SC,
513 ArrayRef<std::string> SectionNames,
514 uint32_t FieldWidth) {
515 std::string NameInsert;
Peter Collingbourned1f81522018-04-17 21:44:17 +0000516 if (SC.ISect > 0 && SC.ISect <= SectionNames.size()) {
Zachary Turner8995c862018-04-17 20:06:43 +0000517 StringRef SectionName = SectionNames[SC.ISect - 1];
518 NameInsert = formatv("[{0}]", SectionName).str();
519 } else
520 NameInsert = "[???]";
521 P.formatLine("SC{5} | mod = {2}, {0}, size = {1}, data crc = {3}, reloc "
522 "crc = {4}",
523 formatSegmentOffset(SC.ISect, SC.Off), fmtle(SC.Size),
524 fmtle(SC.Imod), fmtle(SC.DataCrc), fmtle(SC.RelocCrc),
525 fmt_align(NameInsert, AlignStyle::Left, FieldWidth + 2));
526 AutoIndent Indent(P, FieldWidth + 2);
527 P.formatLine(" {0}",
528 formatSectionCharacteristics(P.getIndentLevel() + 6,
529 SC.Characteristics, 3, " | "));
530}
531
532static void dumpSectionContrib(LinePrinter &P, const SectionContrib2 &SC,
533 ArrayRef<std::string> SectionNames,
534 uint32_t FieldWidth) {
535 P.formatLine("SC2[{6}] | mod = {2}, {0}, size = {1}, data crc = {3}, reloc "
536 "crc = {4}, coff section = {5}",
537 formatSegmentOffset(SC.Base.ISect, SC.Base.Off),
538 fmtle(SC.Base.Size), fmtle(SC.Base.Imod), fmtle(SC.Base.DataCrc),
539 fmtle(SC.Base.RelocCrc), fmtle(SC.ISectCoff));
540 P.formatLine(" {0}",
541 formatSectionCharacteristics(P.getIndentLevel() + 6,
542 SC.Base.Characteristics, 3, " | "));
543}
544
Zachary Turner08950322017-06-22 20:57:39 +0000545Error DumpOutputStyle::dumpModules() {
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000546 printHeader(P, "Modules");
Zachary Turner6ef51e82017-09-01 20:06:56 +0000547
548 if (File.isObj()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000549 printStreamNotValidForObj();
Zachary Turner6ef51e82017-09-01 20:06:56 +0000550 return Error::success();
551 }
552
553 if (!getPdb().hasPDBDbiStream()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000554 printStreamNotPresent("DBI");
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000555 return Error::success();
556 }
557
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000558 AutoIndent Indent(P);
Reid Kleckner04f27092017-07-27 23:13:18 +0000559 ExitOnError Err("Unexpected error processing modules: ");
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000560
Zachary Turner6ef51e82017-09-01 20:06:56 +0000561 auto &Stream = Err(getPdb().getPDBDbiStream());
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000562
563 const DbiModuleList &Modules = Stream.modules();
Zachary Turner6ef51e82017-09-01 20:06:56 +0000564 iterateSymbolGroups(
565 File, PrintScope{P, 11}, [&](uint32_t Modi, const SymbolGroup &Strings) {
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000566 auto Desc = Modules.getModuleDescriptor(Modi);
Zachary Turner8995c862018-04-17 20:06:43 +0000567 if (opts::dump::DumpSectionContribs) {
568 std::vector<std::string> Sections = getSectionNames(getPdb());
569 dumpSectionContrib(P, Desc.getSectionContrib(), Sections, 0);
570 }
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000571 P.formatLine("Obj: `{0}`: ", Desc.getObjFileName());
572 P.formatLine("debug stream: {0}, # files: {1}, has ec info: {2}",
573 Desc.getModuleStreamIndex(), Desc.getNumberOfFiles(),
574 Desc.hasECInfo());
575 StringRef PdbFilePath =
576 Err(Stream.getECName(Desc.getPdbFilePathNameIndex()));
577 StringRef SrcFilePath =
578 Err(Stream.getECName(Desc.getSourceFileNameIndex()));
579 P.formatLine("pdb file ni: {0} `{1}`, src file ni: {2} `{3}`",
580 Desc.getPdbFilePathNameIndex(), PdbFilePath,
581 Desc.getSourceFileNameIndex(), SrcFilePath);
582 });
Zachary Turnere6f0d3c2017-06-15 23:12:41 +0000583 return Error::success();
584}
585
Zachary Turner08950322017-06-22 20:57:39 +0000586Error DumpOutputStyle::dumpModuleFiles() {
Zachary Turnere6f0d3c2017-06-15 23:12:41 +0000587 printHeader(P, "Files");
588
Zachary Turner6ef51e82017-09-01 20:06:56 +0000589 if (File.isObj()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000590 printStreamNotValidForObj();
591 return Error::success();
592 }
593
594 if (!getPdb().hasPDBDbiStream()) {
595 printStreamNotPresent("DBI");
Zachary Turner6ef51e82017-09-01 20:06:56 +0000596 return Error::success();
597 }
598
Reid Kleckner04f27092017-07-27 23:13:18 +0000599 ExitOnError Err("Unexpected error processing modules: ");
Zachary Turnere6f0d3c2017-06-15 23:12:41 +0000600
Zachary Turner6ef51e82017-09-01 20:06:56 +0000601 iterateSymbolGroups(File, PrintScope{P, 11},
602 [this, &Err](uint32_t Modi, const SymbolGroup &Strings) {
603 auto &Stream = Err(getPdb().getPDBDbiStream());
Zachary Turnere6f0d3c2017-06-15 23:12:41 +0000604
Zachary Turner6ef51e82017-09-01 20:06:56 +0000605 const DbiModuleList &Modules = Stream.modules();
606 for (const auto &F : Modules.source_files(Modi)) {
607 Strings.formatFromFileName(P, F);
608 }
609 });
Zachary Turner7b1eb002017-06-15 23:56:19 +0000610 return Error::success();
611}
612
Zachary Turnerae734ae2017-08-31 20:43:22 +0000613Error DumpOutputStyle::dumpSymbolStats() {
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000614 printHeader(P, "Module Stats");
615
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000616 if (File.isPdb() && !getPdb().hasPDBDbiStream()) {
617 printStreamNotPresent("DBI");
618 return Error::success();
619 }
620
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000621 ExitOnError Err("Unexpected error processing modules: ");
622
623 StatCollection SymStats;
624 StatCollection ChunkStats;
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000625
Zachary Turner8fcc9de2017-09-01 20:17:20 +0000626 Optional<PrintScope> Scope;
627 if (File.isPdb())
628 Scope.emplace(P, 2);
629
630 iterateSymbolGroups(File, Scope, [&](uint32_t Modi, const SymbolGroup &SG) {
Zachary Turner6ef51e82017-09-01 20:06:56 +0000631 StatCollection SS = getSymbolStats(SG, SymStats);
632 StatCollection CS = getChunkStats(SG, ChunkStats);
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000633
Zachary Turner6ef51e82017-09-01 20:06:56 +0000634 if (SG.getFile().isPdb()) {
Zachary Turner8fcc9de2017-09-01 20:17:20 +0000635 AutoIndent Indent(P);
Zachary Turner6ef51e82017-09-01 20:06:56 +0000636 auto Modules = cantFail(File.pdb().getPDBDbiStream()).modules();
637 uint32_t ModCount = Modules.getModuleCount();
638 DbiModuleDescriptor Desc = Modules.getModuleDescriptor(Modi);
639 uint32_t StreamIdx = Desc.getModuleStreamIndex();
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000640
Zachary Turner6ef51e82017-09-01 20:06:56 +0000641 if (StreamIdx == kInvalidStreamIndex) {
642 P.formatLine("Mod {0} (debug info not present): [{1}]",
643 fmt_align(Modi, AlignStyle::Right, NumDigits(ModCount)),
644 Desc.getModuleName());
645 return;
646 }
Zachary Turner6ef51e82017-09-01 20:06:56 +0000647 P.formatLine("Stream {0}, {1} bytes", StreamIdx,
648 getPdb().getStreamByteSize(StreamIdx));
649
650 printModuleDetailStats<SymbolKind>(P, "Symbols", SS);
651 printModuleDetailStats<DebugSubsectionKind>(P, "Chunks", CS);
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000652 }
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000653 });
654
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000655 if (SymStats.Totals.Count > 0) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000656 P.printLine(" Summary |");
657 AutoIndent Indent(P, 4);
Zachary Turnerb6d8c582017-08-21 14:53:25 +0000658 printModuleDetailStats<SymbolKind>(P, "Symbols", SymStats);
659 printModuleDetailStats<DebugSubsectionKind>(P, "Chunks", ChunkStats);
660 }
661
662 return Error::success();
663}
664
Zachary Turnerae734ae2017-08-31 20:43:22 +0000665static bool isValidNamespaceIdentifier(StringRef S) {
666 if (S.empty())
667 return false;
668
669 if (std::isdigit(S[0]))
670 return false;
671
672 return llvm::all_of(S, [](char C) { return std::isalnum(C); });
673}
674
675namespace {
676constexpr uint32_t kNoneUdtKind = 0;
677constexpr uint32_t kSimpleUdtKind = 1;
678constexpr uint32_t kUnknownUdtKind = 2;
679const StringRef NoneLabel("<none type>");
680const StringRef SimpleLabel("<simple type>");
681const StringRef UnknownLabel("<unknown type>");
682
683} // namespace
684
685static StringRef getUdtStatLabel(uint32_t Kind) {
686 if (Kind == kNoneUdtKind)
687 return NoneLabel;
688
689 if (Kind == kSimpleUdtKind)
690 return SimpleLabel;
691
692 if (Kind == kUnknownUdtKind)
693 return UnknownLabel;
694
695 return formatTypeLeafKind(static_cast<TypeLeafKind>(Kind));
696}
697
698static uint32_t getLongestTypeLeafName(const StatCollection &Stats) {
699 size_t L = 0;
700 for (const auto &Stat : Stats.Individual) {
701 StringRef Label = getUdtStatLabel(Stat.first);
702 L = std::max(L, Label.size());
703 }
704 return static_cast<uint32_t>(L);
705}
706
707Error DumpOutputStyle::dumpUdtStats() {
708 printHeader(P, "S_UDT Record Stats");
709
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000710 if (File.isPdb() && !getPdb().hasPDBGlobalsStream()) {
711 printStreamNotPresent("Globals");
712 return Error::success();
713 }
714
Zachary Turnerae734ae2017-08-31 20:43:22 +0000715 StatCollection UdtStats;
716 StatCollection UdtTargetStats;
Zachary Turnerae734ae2017-08-31 20:43:22 +0000717 AutoIndent Indent(P, 4);
718
Zachary Turner6ef51e82017-09-01 20:06:56 +0000719 auto &TpiTypes = File.types();
Zachary Turnerae734ae2017-08-31 20:43:22 +0000720
721 StringMap<StatCollection::Stat> NamespacedStats;
722
Zachary Turnerae734ae2017-08-31 20:43:22 +0000723 size_t LongestNamespace = 0;
Zachary Turner6ef51e82017-09-01 20:06:56 +0000724 auto HandleOneSymbol = [&](const CVSymbol &Sym) {
Zachary Turnerae734ae2017-08-31 20:43:22 +0000725 if (Sym.kind() != SymbolKind::S_UDT)
Zachary Turner6ef51e82017-09-01 20:06:56 +0000726 return;
Zachary Turnerae734ae2017-08-31 20:43:22 +0000727 UdtStats.update(SymbolKind::S_UDT, Sym.length());
728
729 UDTSym UDT = cantFail(SymbolDeserializer::deserializeAs<UDTSym>(Sym));
730
731 uint32_t Kind = 0;
732 uint32_t RecordSize = 0;
Zachary Turner6ef51e82017-09-01 20:06:56 +0000733
734 if (UDT.Type.isNoneType())
735 Kind = kNoneUdtKind;
736 else if (UDT.Type.isSimple())
737 Kind = kSimpleUdtKind;
738 else if (Optional<CVType> T = TpiTypes.tryGetType(UDT.Type)) {
739 Kind = T->kind();
740 RecordSize = T->length();
741 } else
742 Kind = kUnknownUdtKind;
Zachary Turnerae734ae2017-08-31 20:43:22 +0000743
744 UdtTargetStats.update(Kind, RecordSize);
745
746 size_t Pos = UDT.Name.find("::");
747 if (Pos == StringRef::npos)
Zachary Turner6ef51e82017-09-01 20:06:56 +0000748 return;
Zachary Turnerae734ae2017-08-31 20:43:22 +0000749
750 StringRef Scope = UDT.Name.take_front(Pos);
751 if (Scope.empty() || !isValidNamespaceIdentifier(Scope))
Zachary Turner6ef51e82017-09-01 20:06:56 +0000752 return;
Zachary Turnerae734ae2017-08-31 20:43:22 +0000753
754 LongestNamespace = std::max(LongestNamespace, Scope.size());
755 NamespacedStats[Scope].update(RecordSize);
Zachary Turner6ef51e82017-09-01 20:06:56 +0000756 };
757
758 P.NewLine();
759
760 if (File.isPdb()) {
Zachary Turner6ef51e82017-09-01 20:06:56 +0000761 auto &SymbolRecords = cantFail(getPdb().getPDBSymbolStream());
Reid Klecknereb271e82017-10-27 00:45:51 +0000762 auto ExpGlobals = getPdb().getPDBGlobalsStream();
763 if (!ExpGlobals)
764 return ExpGlobals.takeError();
Zachary Turner6ef51e82017-09-01 20:06:56 +0000765
Reid Klecknereb271e82017-10-27 00:45:51 +0000766 for (uint32_t PubSymOff : ExpGlobals->getGlobalsTable()) {
Zachary Turner6ef51e82017-09-01 20:06:56 +0000767 CVSymbol Sym = SymbolRecords.readRecord(PubSymOff);
768 HandleOneSymbol(Sym);
769 }
770 } else {
771 for (const auto &Sec : File.symbol_groups()) {
772 for (const auto &SS : Sec.getDebugSubsections()) {
773 if (SS.kind() != DebugSubsectionKind::Symbols)
774 continue;
775
776 DebugSymbolsSubsectionRef Symbols;
777 BinaryStreamReader Reader(SS.getRecordData());
778 cantFail(Symbols.initialize(Reader));
779 for (const auto &S : Symbols)
780 HandleOneSymbol(S);
781 }
782 }
Zachary Turnerae734ae2017-08-31 20:43:22 +0000783 }
784
785 LongestNamespace += StringRef(" namespace ''").size();
Zachary Turner71f3f902017-08-31 20:50:25 +0000786 size_t LongestTypeLeafKind = getLongestTypeLeafName(UdtTargetStats);
787 size_t FieldWidth = std::max(LongestNamespace, LongestTypeLeafKind);
Zachary Turnerae734ae2017-08-31 20:43:22 +0000788
789 // Compute the max number of digits for count and size fields, including comma
790 // separators.
791 StringRef CountHeader("Count");
792 StringRef SizeHeader("Size");
Zachary Turner71f3f902017-08-31 20:50:25 +0000793 size_t CD = NumDigits(UdtStats.Totals.Count);
Zachary Turnerae734ae2017-08-31 20:43:22 +0000794 CD += (CD - 1) / 3;
795 CD = std::max(CD, CountHeader.size());
796
Zachary Turner71f3f902017-08-31 20:50:25 +0000797 size_t SD = NumDigits(UdtStats.Totals.Size);
Zachary Turnerae734ae2017-08-31 20:43:22 +0000798 SD += (SD - 1) / 3;
799 SD = std::max(SD, SizeHeader.size());
800
801 uint32_t TableWidth = FieldWidth + 3 + CD + 2 + SD + 1;
802
803 P.formatLine("{0} | {1} {2}",
804 fmt_align("Record Kind", AlignStyle::Right, FieldWidth),
805 fmt_align(CountHeader, AlignStyle::Right, CD),
806 fmt_align(SizeHeader, AlignStyle::Right, SD));
807
808 P.formatLine("{0}", fmt_repeat('-', TableWidth));
809 for (const auto &Stat : UdtTargetStats.Individual) {
810 StringRef Label = getUdtStatLabel(Stat.first);
811 P.formatLine("{0} | {1:N} {2:N}",
812 fmt_align(Label, AlignStyle::Right, FieldWidth),
813 fmt_align(Stat.second.Count, AlignStyle::Right, CD),
814 fmt_align(Stat.second.Size, AlignStyle::Right, SD));
815 }
816 P.formatLine("{0}", fmt_repeat('-', TableWidth));
817 P.formatLine("{0} | {1:N} {2:N}",
818 fmt_align("Total (S_UDT)", AlignStyle::Right, FieldWidth),
819 fmt_align(UdtStats.Totals.Count, AlignStyle::Right, CD),
820 fmt_align(UdtStats.Totals.Size, AlignStyle::Right, SD));
821 P.formatLine("{0}", fmt_repeat('-', TableWidth));
822 for (const auto &Stat : NamespacedStats) {
823 std::string Label = formatv("namespace '{0}'", Stat.getKey());
824 P.formatLine("{0} | {1:N} {2:N}",
825 fmt_align(Label, AlignStyle::Right, FieldWidth),
826 fmt_align(Stat.second.Count, AlignStyle::Right, CD),
827 fmt_align(Stat.second.Size, AlignStyle::Right, SD));
828 }
829 return Error::success();
830}
831
Zachary Turner6ef51e82017-09-01 20:06:56 +0000832static void typesetLinesAndColumns(LinePrinter &P, uint32_t Start,
833 const LineColumnEntry &E) {
Zachary Turner7b1eb002017-06-15 23:56:19 +0000834 const uint32_t kMaxCharsPerLineNumber = 4; // 4 digit line number
835 uint32_t MinColumnWidth = kMaxCharsPerLineNumber + 5;
836
837 // Let's try to keep it under 100 characters
838 constexpr uint32_t kMaxRowLength = 100;
839 // At least 3 spaces between columns.
840 uint32_t ColumnsPerRow = kMaxRowLength / (MinColumnWidth + 3);
841 uint32_t ItemsLeft = E.LineNumbers.size();
842 auto LineIter = E.LineNumbers.begin();
843 while (ItemsLeft != 0) {
844 uint32_t RowColumns = std::min(ItemsLeft, ColumnsPerRow);
845 for (uint32_t I = 0; I < RowColumns; ++I) {
846 LineInfo Line(LineIter->Flags);
847 std::string LineStr;
848 if (Line.isAlwaysStepInto())
849 LineStr = "ASI";
850 else if (Line.isNeverStepInto())
851 LineStr = "NSI";
Zachary Turnere6f0d3c2017-06-15 23:12:41 +0000852 else
Zachary Turner7b1eb002017-06-15 23:56:19 +0000853 LineStr = utostr(Line.getStartLine());
854 char Statement = Line.isStatement() ? ' ' : '!';
855 P.format("{0} {1:X-} {2} ",
856 fmt_align(LineStr, AlignStyle::Right, kMaxCharsPerLineNumber),
857 fmt_align(Start + LineIter->Offset, AlignStyle::Right, 8, '0'),
858 Statement);
859 ++LineIter;
860 --ItemsLeft;
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000861 }
Zachary Turner7b1eb002017-06-15 23:56:19 +0000862 P.NewLine();
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000863 }
Zachary Turner7b1eb002017-06-15 23:56:19 +0000864}
865
Zachary Turner08950322017-06-22 20:57:39 +0000866Error DumpOutputStyle::dumpLines() {
Zachary Turner7b1eb002017-06-15 23:56:19 +0000867 printHeader(P, "Lines");
Zachary Turner7b1eb002017-06-15 23:56:19 +0000868
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000869 if (File.isPdb() && !getPdb().hasPDBDbiStream()) {
870 printStreamNotPresent("DBI");
871 return Error::success();
872 }
873
Zachary Turnerf391f222017-06-15 23:59:56 +0000874 uint32_t LastModi = UINT32_MAX;
875 uint32_t LastNameIndex = UINT32_MAX;
876 iterateModuleSubsections<DebugLinesSubsectionRef>(
Zachary Turner6ef51e82017-09-01 20:06:56 +0000877 File, PrintScope{P, 4},
Zachary Turnerf391f222017-06-15 23:59:56 +0000878 [this, &LastModi, &LastNameIndex](uint32_t Modi,
Zachary Turner6ef51e82017-09-01 20:06:56 +0000879 const SymbolGroup &Strings,
Zachary Turnerf391f222017-06-15 23:59:56 +0000880 DebugLinesSubsectionRef &Lines) {
881 uint16_t Segment = Lines.header()->RelocSegment;
882 uint32_t Begin = Lines.header()->RelocOffset;
883 uint32_t End = Begin + Lines.header()->CodeSize;
884 for (const auto &Block : Lines) {
885 if (LastModi != Modi || LastNameIndex != Block.NameIndex) {
886 LastModi = Modi;
887 LastNameIndex = Block.NameIndex;
888 Strings.formatFromChecksumsOffset(P, Block.NameIndex);
Zachary Turner7b1eb002017-06-15 23:56:19 +0000889 }
890
Zachary Turnerf391f222017-06-15 23:59:56 +0000891 AutoIndent Indent(P, 2);
892 P.formatLine("{0:X-4}:{1:X-8}-{2:X-8}, ", Segment, Begin, End);
893 uint32_t Count = Block.LineNumbers.size();
894 if (Lines.hasColumnInfo())
895 P.format("line/column/addr entries = {0}", Count);
896 else
897 P.format("line/addr entries = {0}", Count);
Zachary Turner7b1eb002017-06-15 23:56:19 +0000898
Zachary Turnerf391f222017-06-15 23:59:56 +0000899 P.NewLine();
Zachary Turner6ef51e82017-09-01 20:06:56 +0000900 typesetLinesAndColumns(P, Begin, Block);
Zachary Turner7b1eb002017-06-15 23:56:19 +0000901 }
902 });
903
904 return Error::success();
905}
906
Zachary Turner08950322017-06-22 20:57:39 +0000907Error DumpOutputStyle::dumpInlineeLines() {
Zachary Turner7b1eb002017-06-15 23:56:19 +0000908 printHeader(P, "Inlinee Lines");
Zachary Turner7b1eb002017-06-15 23:56:19 +0000909
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000910 if (File.isPdb() && !getPdb().hasPDBDbiStream()) {
911 printStreamNotPresent("DBI");
912 return Error::success();
913 }
914
Zachary Turnerf391f222017-06-15 23:59:56 +0000915 iterateModuleSubsections<DebugInlineeLinesSubsectionRef>(
Zachary Turner6ef51e82017-09-01 20:06:56 +0000916 File, PrintScope{P, 2},
917 [this](uint32_t Modi, const SymbolGroup &Strings,
Zachary Turnerf391f222017-06-15 23:59:56 +0000918 DebugInlineeLinesSubsectionRef &Lines) {
919 P.formatLine("{0,+8} | {1,+5} | {2}", "Inlinee", "Line", "Source File");
920 for (const auto &Entry : Lines) {
921 P.formatLine("{0,+8} | {1,+5} | ", Entry.Header->Inlinee,
922 fmtle(Entry.Header->SourceLineNum));
923 Strings.formatFromChecksumsOffset(P, Entry.Header->FileID, true);
Zachary Turner7b1eb002017-06-15 23:56:19 +0000924 }
Zachary Turnerf391f222017-06-15 23:59:56 +0000925 P.NewLine();
Zachary Turner7b1eb002017-06-15 23:56:19 +0000926 });
927
Zachary Turner7e5d31e2017-06-15 22:24:24 +0000928 return Error::success();
929}
Zachary Turnere6f0d3c2017-06-15 23:12:41 +0000930
Zachary Turner08950322017-06-22 20:57:39 +0000931Error DumpOutputStyle::dumpXmi() {
Zachary Turner68e216b2017-06-16 00:04:24 +0000932 printHeader(P, "Cross Module Imports");
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000933
934 if (File.isPdb() && !getPdb().hasPDBDbiStream()) {
935 printStreamNotPresent("DBI");
936 return Error::success();
937 }
938
Zachary Turner68e216b2017-06-16 00:04:24 +0000939 iterateModuleSubsections<DebugCrossModuleImportsSubsectionRef>(
Zachary Turner6ef51e82017-09-01 20:06:56 +0000940 File, PrintScope{P, 2},
941 [this](uint32_t Modi, const SymbolGroup &Strings,
Zachary Turner68e216b2017-06-16 00:04:24 +0000942 DebugCrossModuleImportsSubsectionRef &Imports) {
943 P.formatLine("{0,=32} | {1}", "Imported Module", "Type IDs");
944
945 for (const auto &Xmi : Imports) {
946 auto ExpectedModule =
947 Strings.getNameFromStringTable(Xmi.Header->ModuleNameOffset);
948 StringRef Module;
949 SmallString<32> ModuleStorage;
950 if (!ExpectedModule) {
951 Module = "(unknown module)";
952 consumeError(ExpectedModule.takeError());
953 } else
954 Module = *ExpectedModule;
955 if (Module.size() > 32) {
956 ModuleStorage = "...";
957 ModuleStorage += Module.take_back(32 - 3);
958 Module = ModuleStorage;
959 }
960 std::vector<std::string> TIs;
961 for (const auto I : Xmi.Imports)
962 TIs.push_back(formatv("{0,+10:X+}", fmtle(I)));
963 std::string Result =
964 typesetItemList(TIs, P.getIndentLevel() + 35, 12, " ");
965 P.formatLine("{0,+32} | {1}", Module, Result);
966 }
967 });
968
969 return Error::success();
970}
971
Zachary Turner08950322017-06-22 20:57:39 +0000972Error DumpOutputStyle::dumpXme() {
Zachary Turner68e216b2017-06-16 00:04:24 +0000973 printHeader(P, "Cross Module Exports");
974
Alexandre Ganeafabcc792018-08-06 19:35:00 +0000975 if (File.isPdb() && !getPdb().hasPDBDbiStream()) {
976 printStreamNotPresent("DBI");
977 return Error::success();
978 }
979
Zachary Turner68e216b2017-06-16 00:04:24 +0000980 iterateModuleSubsections<DebugCrossModuleExportsSubsectionRef>(
Zachary Turner6ef51e82017-09-01 20:06:56 +0000981 File, PrintScope{P, 2},
982 [this](uint32_t Modi, const SymbolGroup &Strings,
Zachary Turner68e216b2017-06-16 00:04:24 +0000983 DebugCrossModuleExportsSubsectionRef &Exports) {
984 P.formatLine("{0,-10} | {1}", "Local ID", "Global ID");
985 for (const auto &Export : Exports) {
986 P.formatLine("{0,+10:X+} | {1}", TypeIndex(Export.Local),
987 TypeIndex(Export.Global));
988 }
989 });
990
991 return Error::success();
992}
993
Zachary Turner69d3b582018-09-12 21:02:01 +0000994std::string formatFrameType(object::frame_type FT) {
995 switch (FT) {
996 case object::frame_type::Fpo:
997 return "FPO";
998 case object::frame_type::NonFpo:
999 return "Non-FPO";
1000 case object::frame_type::Trap:
1001 return "Trap";
1002 case object::frame_type::Tss:
1003 return "TSS";
1004 }
1005 return "<unknown>";
1006}
1007
1008Error DumpOutputStyle::dumpOldFpo(PDBFile &File) {
1009 printHeader(P, "Old FPO Data");
1010
1011 ExitOnError Err("Error dumping old fpo data:");
1012 auto &Dbi = Err(File.getPDBDbiStream());
1013
1014 uint32_t Index = Dbi.getDebugStreamIndex(DbgHeaderType::FPO);
1015 if (Index == kInvalidStreamIndex) {
1016 printStreamNotPresent("FPO");
1017 return Error::success();
1018 }
1019
1020 std::unique_ptr<MappedBlockStream> OldFpo = File.createIndexedStream(Index);
1021 BinaryStreamReader Reader(*OldFpo);
1022 FixedStreamArray<object::FpoData> Records;
1023 Err(Reader.readArray(Records,
1024 Reader.bytesRemaining() / sizeof(object::FpoData)));
1025
1026 P.printLine(" RVA | Code | Locals | Params | Prolog | Saved Regs | Use "
1027 "BP | Has SEH | Frame Type");
1028
1029 for (const object::FpoData &FD : Records) {
1030 P.formatLine("{0:X-8} | {1,4} | {2,6} | {3,6} | {4,6} | {5,10} | {6,6} | "
1031 "{7,7} | {8,9}",
1032 uint32_t(FD.Offset), uint32_t(FD.Size), uint32_t(FD.NumLocals),
1033 uint32_t(FD.NumParams), FD.getPrologSize(),
1034 FD.getNumSavedRegs(), FD.useBP(), FD.hasSEH(),
1035 formatFrameType(FD.getFP()));
1036 }
1037 return Error::success();
1038}
1039
1040Error DumpOutputStyle::dumpNewFpo(PDBFile &File) {
Zachary Turner77a68882018-09-11 22:35:01 +00001041 printHeader(P, "New FPO Data");
1042
Zachary Turner69d3b582018-09-12 21:02:01 +00001043 ExitOnError Err("Error dumping new fpo data:");
Zachary Turner77a68882018-09-11 22:35:01 +00001044 auto &Dbi = Err(File.getPDBDbiStream());
1045
1046 uint32_t Index = Dbi.getDebugStreamIndex(DbgHeaderType::NewFPO);
1047 if (Index == kInvalidStreamIndex) {
1048 printStreamNotPresent("New FPO");
1049 return Error::success();
1050 }
1051
1052 std::unique_ptr<MappedBlockStream> NewFpo = File.createIndexedStream(Index);
1053
1054 DebugFrameDataSubsectionRef FDS;
1055 if (auto EC = FDS.initialize(*NewFpo))
1056 return make_error<RawError>(raw_error_code::corrupt_file,
1057 "Invalid new fpo stream");
1058
1059 P.printLine(" RVA | Code | Locals | Params | Stack | Prolog | Saved Regs "
1060 "| Has SEH | Has C++EH | Start | Program");
1061 for (const FrameData &FD : FDS) {
1062 bool IsFuncStart = FD.Flags & FrameData::IsFunctionStart;
1063 bool HasEH = FD.Flags & FrameData::HasEH;
1064 bool HasSEH = FD.Flags & FrameData::HasSEH;
1065
1066 auto &StringTable = Err(File.getStringTable());
1067
1068 auto Program = Err(StringTable.getStringForID(FD.FrameFunc));
1069 P.formatLine("{0:X-8} | {1,4} | {2,6} | {3,6} | {4,5} | {5,6} | {6,10} | "
1070 "{7,7} | {8,9} | {9,5} | {10}",
1071 uint32_t(FD.RvaStart), uint32_t(FD.CodeSize),
1072 uint32_t(FD.LocalSize), uint32_t(FD.ParamsSize),
1073 uint32_t(FD.MaxStackSize), uint16_t(FD.PrologSize),
1074 uint16_t(FD.SavedRegsSize), HasSEH, HasEH, IsFuncStart,
1075 Program);
1076 }
1077 return Error::success();
1078}
1079
Zachary Turner69d3b582018-09-12 21:02:01 +00001080Error DumpOutputStyle::dumpFpo() {
1081 if (!File.isPdb()) {
1082 printStreamNotValidForObj();
1083 return Error::success();
1084 }
1085
1086 PDBFile &File = getPdb();
1087 if (!File.hasPDBDbiStream()) {
1088 printStreamNotPresent("DBI");
1089 return Error::success();
1090 }
1091
1092 if (auto EC = dumpOldFpo(File))
1093 return EC;
1094 if (auto EC = dumpNewFpo(File))
1095 return EC;
1096 return Error::success();
1097}
1098
Zachary Turnerd9e5a1f2018-01-05 19:12:40 +00001099Error DumpOutputStyle::dumpStringTableFromPdb() {
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001100 AutoIndent Indent(P);
Zachary Turner6ef51e82017-09-01 20:06:56 +00001101 auto IS = getPdb().getStringTable();
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001102 if (!IS) {
1103 P.formatLine("Not present in file");
1104 consumeError(IS.takeError());
1105 return Error::success();
1106 }
1107
Zachary Turner0995a922018-03-23 18:43:39 +00001108 if (opts::dump::DumpStringTable) {
1109 if (IS->name_ids().empty())
1110 P.formatLine("Empty");
1111 else {
1112 auto MaxID =
1113 std::max_element(IS->name_ids().begin(), IS->name_ids().end());
1114 uint32_t Digits = NumDigits(*MaxID);
1115
1116 P.formatLine("{0} | {1}", fmt_align("ID", AlignStyle::Right, Digits),
1117 "String");
1118
1119 std::vector<uint32_t> SortedIDs(IS->name_ids().begin(),
1120 IS->name_ids().end());
Fangrui Song3b35e172018-09-27 02:13:45 +00001121 llvm::sort(SortedIDs);
Zachary Turner0995a922018-03-23 18:43:39 +00001122 for (uint32_t I : SortedIDs) {
1123 auto ES = IS->getStringForID(I);
1124 llvm::SmallString<32> Str;
1125 if (!ES) {
1126 consumeError(ES.takeError());
1127 Str = "Error reading string";
1128 } else if (!ES->empty()) {
1129 Str.append("'");
1130 Str.append(*ES);
1131 Str.append("'");
1132 }
1133
1134 if (!Str.empty())
1135 P.formatLine("{0} | {1}", fmt_align(I, AlignStyle::Right, Digits),
1136 Str);
1137 }
1138 }
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001139 }
1140
Zachary Turner0995a922018-03-23 18:43:39 +00001141 if (opts::dump::DumpStringTableDetails) {
1142 P.NewLine();
1143 {
1144 P.printLine("String Table Header:");
1145 AutoIndent Indent(P);
1146 P.formatLine("Signature: {0}", IS->getSignature());
1147 P.formatLine("Hash Version: {0}", IS->getHashVersion());
1148 P.formatLine("Name Buffer Size: {0}", IS->getByteSize());
1149 P.NewLine();
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001150 }
1151
Zachary Turner0995a922018-03-23 18:43:39 +00001152 BinaryStreamRef NameBuffer = IS->getStringTable().getBuffer();
1153 ArrayRef<uint8_t> Contents;
1154 cantFail(NameBuffer.readBytes(0, NameBuffer.getLength(), Contents));
1155 P.formatBinary("Name Buffer", Contents, 0);
1156 P.NewLine();
1157 {
1158 P.printLine("Hash Table:");
1159 AutoIndent Indent(P);
1160 P.formatLine("Bucket Count: {0}", IS->name_ids().size());
1161 for (const auto &Entry : enumerate(IS->name_ids()))
1162 P.formatLine("Bucket[{0}] : {1}", Entry.index(),
1163 uint32_t(Entry.value()));
1164 P.formatLine("Name Count: {0}", IS->getNameCount());
1165 }
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001166 }
1167 return Error::success();
1168}
1169
Zachary Turnerd9e5a1f2018-01-05 19:12:40 +00001170Error DumpOutputStyle::dumpStringTableFromObj() {
1171 iterateModuleSubsections<DebugStringTableSubsectionRef>(
1172 File, PrintScope{P, 4},
1173 [&](uint32_t Modi, const SymbolGroup &Strings,
1174 DebugStringTableSubsectionRef &Strings2) {
1175 BinaryStreamRef StringTableBuffer = Strings2.getBuffer();
1176 BinaryStreamReader Reader(StringTableBuffer);
1177 while (Reader.bytesRemaining() > 0) {
1178 StringRef Str;
1179 uint32_t Offset = Reader.getOffset();
1180 cantFail(Reader.readCString(Str));
1181 if (Str.empty())
1182 continue;
1183
1184 P.formatLine("{0} | {1}", fmt_align(Offset, AlignStyle::Right, 4),
1185 Str);
1186 }
1187 });
1188 return Error::success();
1189}
1190
Zachary Turner0995a922018-03-23 18:43:39 +00001191Error DumpOutputStyle::dumpNamedStreams() {
1192 printHeader(P, "Named Streams");
Zachary Turner0995a922018-03-23 18:43:39 +00001193
1194 if (File.isObj()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001195 printStreamNotValidForObj();
Zachary Turner0995a922018-03-23 18:43:39 +00001196 return Error::success();
1197 }
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001198
1199 AutoIndent Indent(P);
Zachary Turner0995a922018-03-23 18:43:39 +00001200 ExitOnError Err("Invalid PDB File: ");
1201
1202 auto &IS = Err(File.pdb().getPDBInfoStream());
1203 const NamedStreamMap &NS = IS.getNamedStreams();
1204 for (const auto &Entry : NS.entries()) {
1205 P.printLine(Entry.getKey());
1206 AutoIndent Indent2(P, 2);
1207 P.formatLine("Index: {0}", Entry.getValue());
1208 P.formatLine("Size in bytes: {0}",
1209 File.pdb().getStreamByteSize(Entry.getValue()));
1210 }
1211
1212 return Error::success();
1213}
1214
Zachary Turnerd9e5a1f2018-01-05 19:12:40 +00001215Error DumpOutputStyle::dumpStringTable() {
1216 printHeader(P, "String Table");
1217
1218 if (File.isPdb())
1219 return dumpStringTableFromPdb();
1220
1221 return dumpStringTableFromObj();
1222}
1223
Zachary Turnerf330d3e2017-06-30 18:15:47 +00001224static void buildDepSet(LazyRandomTypeCollection &Types,
1225 ArrayRef<TypeIndex> Indices,
1226 std::map<TypeIndex, CVType> &DepSet) {
1227 SmallVector<TypeIndex, 4> DepList;
1228 for (const auto &I : Indices) {
1229 TypeIndex TI(I);
1230 if (DepSet.find(TI) != DepSet.end() || TI.isSimple() || TI.isNoneType())
1231 continue;
1232
1233 CVType Type = Types.getType(TI);
1234 DepSet[TI] = Type;
1235 codeview::discoverTypeIndices(Type, DepList);
1236 buildDepSet(Types, DepList, DepSet);
1237 }
1238}
1239
Zachary Turner7c192ee2017-12-05 23:58:18 +00001240static void
1241dumpFullTypeStream(LinePrinter &Printer, LazyRandomTypeCollection &Types,
Zachary Turnerb6f5a8c2017-12-06 00:26:43 +00001242 uint32_t NumTypeRecords, uint32_t NumHashBuckets,
Zachary Turner7c192ee2017-12-05 23:58:18 +00001243 FixedStreamArray<support::ulittle32_t> HashValues,
Zachary Turnerb17277e2018-09-20 15:50:13 +00001244 TpiStream *Stream, bool Bytes, bool Extras) {
Zachary Turner7c192ee2017-12-05 23:58:18 +00001245
Zachary Turnerb6f5a8c2017-12-06 00:26:43 +00001246 Printer.formatLine("Showing {0:N} records", NumTypeRecords);
1247 uint32_t Width = NumDigits(TypeIndex::FirstNonSimpleIndex + NumTypeRecords);
Zachary Turnerf330d3e2017-06-30 18:15:47 +00001248
1249 MinimalTypeDumpVisitor V(Printer, Width + 2, Bytes, Extras, Types,
Zachary Turnerb17277e2018-09-20 15:50:13 +00001250 NumHashBuckets, HashValues, Stream);
Zachary Turnerf330d3e2017-06-30 18:15:47 +00001251
1252 if (auto EC = codeview::visitTypeStream(Types, V)) {
1253 Printer.formatLine("An error occurred dumping type records: {0}",
1254 toString(std::move(EC)));
1255 }
1256}
1257
1258static void dumpPartialTypeStream(LinePrinter &Printer,
1259 LazyRandomTypeCollection &Types,
1260 TpiStream &Stream, ArrayRef<TypeIndex> TiList,
1261 bool Bytes, bool Extras, bool Deps) {
1262 uint32_t Width =
1263 NumDigits(TypeIndex::FirstNonSimpleIndex + Stream.getNumTypeRecords());
1264
1265 MinimalTypeDumpVisitor V(Printer, Width + 2, Bytes, Extras, Types,
Zachary Turnerb17277e2018-09-20 15:50:13 +00001266 Stream.getNumHashBuckets(), Stream.getHashValues(),
1267 &Stream);
Zachary Turnerf330d3e2017-06-30 18:15:47 +00001268
1269 if (opts::dump::DumpTypeDependents) {
1270 // If we need to dump all dependents, then iterate each index and find
1271 // all dependents, adding them to a map ordered by TypeIndex.
1272 std::map<TypeIndex, CVType> DepSet;
1273 buildDepSet(Types, TiList, DepSet);
1274
1275 Printer.formatLine(
1276 "Showing {0:N} records and their dependents ({1:N} records total)",
1277 TiList.size(), DepSet.size());
1278
1279 for (auto &Dep : DepSet) {
1280 if (auto EC = codeview::visitTypeRecord(Dep.second, Dep.first, V))
1281 Printer.formatLine("An error occurred dumping type record {0}: {1}",
1282 Dep.first, toString(std::move(EC)));
1283 }
1284 } else {
1285 Printer.formatLine("Showing {0:N} records.", TiList.size());
1286
1287 for (const auto &I : TiList) {
1288 TypeIndex TI(I);
1289 CVType Type = Types.getType(TI);
1290 if (auto EC = codeview::visitTypeRecord(Type, TI, V))
1291 Printer.formatLine("An error occurred dumping type record {0}: {1}", TI,
1292 toString(std::move(EC)));
1293 }
1294 }
1295}
1296
Zachary Turner7c192ee2017-12-05 23:58:18 +00001297Error DumpOutputStyle::dumpTypesFromObjectFile() {
1298 LazyRandomTypeCollection Types(100);
1299
1300 for (const auto &S : getObj().sections()) {
1301 StringRef SectionName;
1302 if (auto EC = S.getName(SectionName))
1303 return errorCodeToError(EC);
1304
Zachary Turner5ea14cb2018-04-05 18:18:12 +00001305 // .debug$T is a standard CodeView type section, while .debug$P is the same
1306 // format but used for MSVC precompiled header object files.
1307 if (SectionName == ".debug$T")
1308 printHeader(P, "Types (.debug$T)");
1309 else if (SectionName == ".debug$P")
1310 printHeader(P, "Precompiled Types (.debug$P)");
1311 else
Zachary Turner7c192ee2017-12-05 23:58:18 +00001312 continue;
Zachary Turner5ea14cb2018-04-05 18:18:12 +00001313
Zachary Turner7c192ee2017-12-05 23:58:18 +00001314 StringRef Contents;
1315 if (auto EC = S.getContents(Contents))
1316 return errorCodeToError(EC);
1317
1318 uint32_t Magic;
1319 BinaryStreamReader Reader(Contents, llvm::support::little);
1320 if (auto EC = Reader.readInteger(Magic))
1321 return EC;
1322 if (Magic != COFF::DEBUG_SECTION_MAGIC)
1323 return make_error<StringError>("Invalid CodeView debug section.",
1324 inconvertibleErrorCode());
1325
1326 Types.reset(Reader, 100);
1327
1328 if (opts::dump::DumpTypes) {
Zachary Turnerb17277e2018-09-20 15:50:13 +00001329 dumpFullTypeStream(P, Types, 0, 0, {}, nullptr, opts::dump::DumpTypeData,
1330 false);
Zachary Turner7c192ee2017-12-05 23:58:18 +00001331 } else if (opts::dump::DumpTypeExtras) {
1332 auto LocalHashes = LocallyHashedType::hashTypeCollection(Types);
1333 auto GlobalHashes = GloballyHashedType::hashTypeCollection(Types);
1334 assert(LocalHashes.size() == GlobalHashes.size());
1335
1336 P.formatLine("Local / Global hashes:");
1337 TypeIndex TI(TypeIndex::FirstNonSimpleIndex);
1338 for (const auto &H : zip(LocalHashes, GlobalHashes)) {
1339 AutoIndent Indent2(P);
1340 LocallyHashedType &L = std::get<0>(H);
1341 GloballyHashedType &G = std::get<1>(H);
1342
1343 P.formatLine("TI: {0}, LocalHash: {1:X}, GlobalHash: {2}", TI, L, G);
1344
1345 ++TI;
1346 }
1347 P.NewLine();
1348 }
1349 }
1350
1351 return Error::success();
1352}
1353
Zachary Turner08950322017-06-22 20:57:39 +00001354Error DumpOutputStyle::dumpTpiStream(uint32_t StreamIdx) {
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001355 assert(StreamIdx == StreamTPI || StreamIdx == StreamIPI);
1356
Zachary Turner6ef51e82017-09-01 20:06:56 +00001357 if (StreamIdx == StreamTPI) {
1358 printHeader(P, "Types (TPI Stream)");
1359 } else if (StreamIdx == StreamIPI) {
1360 printHeader(P, "Types (IPI Stream)");
1361 }
1362
Zachary Turner7c192ee2017-12-05 23:58:18 +00001363 assert(!File.isObj());
Zachary Turner6ef51e82017-09-01 20:06:56 +00001364
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001365 bool Present = false;
Zachary Turner4d56b5f2017-06-15 23:04:42 +00001366 bool DumpTypes = false;
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001367 bool DumpBytes = false;
Zachary Turner4d56b5f2017-06-15 23:04:42 +00001368 bool DumpExtras = false;
Zachary Turnerbd5fe952017-06-16 23:42:15 +00001369 std::vector<uint32_t> Indices;
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001370 if (StreamIdx == StreamTPI) {
Zachary Turner6ef51e82017-09-01 20:06:56 +00001371 Present = getPdb().hasPDBTpiStream();
Zachary Turner08950322017-06-22 20:57:39 +00001372 DumpTypes = opts::dump::DumpTypes;
1373 DumpBytes = opts::dump::DumpTypeData;
1374 DumpExtras = opts::dump::DumpTypeExtras;
1375 Indices.assign(opts::dump::DumpTypeIndex.begin(),
1376 opts::dump::DumpTypeIndex.end());
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001377 } else if (StreamIdx == StreamIPI) {
Zachary Turner6ef51e82017-09-01 20:06:56 +00001378 Present = getPdb().hasPDBIpiStream();
Zachary Turner08950322017-06-22 20:57:39 +00001379 DumpTypes = opts::dump::DumpIds;
1380 DumpBytes = opts::dump::DumpIdData;
1381 DumpExtras = opts::dump::DumpIdExtras;
1382 Indices.assign(opts::dump::DumpIdIndex.begin(),
1383 opts::dump::DumpIdIndex.end());
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001384 }
1385
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001386 if (!Present) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001387 printStreamNotPresent(StreamIdx == StreamTPI ? "TPI" : "IPI");
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001388 return Error::success();
1389 }
1390
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001391 AutoIndent Indent(P);
Reid Kleckner04f27092017-07-27 23:13:18 +00001392 ExitOnError Err("Unexpected error processing types: ");
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001393
Zachary Turner6ef51e82017-09-01 20:06:56 +00001394 auto &Stream = Err((StreamIdx == StreamTPI) ? getPdb().getPDBTpiStream()
1395 : getPdb().getPDBIpiStream());
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001396
Zachary Turner6ef51e82017-09-01 20:06:56 +00001397 auto &Types = (StreamIdx == StreamTPI) ? File.types() : File.ids();
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001398
Zachary Turnerb17277e2018-09-20 15:50:13 +00001399 // Enable resolving forward decls.
1400 Stream.buildHashMap();
1401
Zachary Turnerf330d3e2017-06-30 18:15:47 +00001402 if (DumpTypes || !Indices.empty()) {
1403 if (Indices.empty())
Zachary Turnerb6f5a8c2017-12-06 00:26:43 +00001404 dumpFullTypeStream(P, Types, Stream.getNumTypeRecords(),
1405 Stream.getNumHashBuckets(), Stream.getHashValues(),
Zachary Turnerb17277e2018-09-20 15:50:13 +00001406 &Stream, DumpBytes, DumpExtras);
Zachary Turnerf330d3e2017-06-30 18:15:47 +00001407 else {
1408 std::vector<TypeIndex> TiList(Indices.begin(), Indices.end());
1409 dumpPartialTypeStream(P, Types, Stream, TiList, DumpBytes, DumpExtras,
1410 opts::dump::DumpTypeDependents);
Zachary Turner4d56b5f2017-06-15 23:04:42 +00001411 }
1412 }
1413
1414 if (DumpExtras) {
1415 P.NewLine();
1416 auto IndexOffsets = Stream.getTypeIndexOffsets();
1417 P.formatLine("Type Index Offsets:");
1418 for (const auto &IO : IndexOffsets) {
1419 AutoIndent Indent2(P);
1420 P.formatLine("TI: {0}, Offset: {1}", IO.Type, fmtle(IO.Offset));
1421 }
1422
Leonard Mosescu437cbaf2018-11-02 18:00:37 +00001423 if (getPdb().hasPDBStringTable()) {
1424 P.NewLine();
1425 P.formatLine("Hash Adjusters:");
1426 auto &Adjusters = Stream.getHashAdjusters();
1427 auto &Strings = Err(getPdb().getStringTable());
1428 for (const auto &A : Adjusters) {
1429 AutoIndent Indent2(P);
1430 auto ExpectedStr = Strings.getStringForID(A.first);
1431 TypeIndex TI(A.second);
1432 if (ExpectedStr)
1433 P.formatLine("`{0}` -> {1}", *ExpectedStr, TI);
1434 else {
1435 P.formatLine("unknown str id ({0}) -> {1}", A.first, TI);
1436 consumeError(ExpectedStr.takeError());
1437 }
Zachary Turner4d56b5f2017-06-15 23:04:42 +00001438 }
1439 }
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001440 }
1441 return Error::success();
1442}
1443
Zachary Turner6ef51e82017-09-01 20:06:56 +00001444Error DumpOutputStyle::dumpModuleSymsForObj() {
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001445 printHeader(P, "Symbols");
1446
1447 AutoIndent Indent(P);
Zachary Turner6ef51e82017-09-01 20:06:56 +00001448
1449 ExitOnError Err("Unexpected error processing symbols: ");
1450
1451 auto &Types = File.types();
1452
1453 SymbolVisitorCallbackPipeline Pipeline;
1454 SymbolDeserializer Deserializer(nullptr, CodeViewContainer::ObjectFile);
1455 MinimalSymbolDumper Dumper(P, opts::dump::DumpSymRecordBytes, Types, Types);
1456
1457 Pipeline.addCallbackToPipeline(Deserializer);
1458 Pipeline.addCallbackToPipeline(Dumper);
1459 CVSymbolVisitor Visitor(Pipeline);
1460
1461 std::unique_ptr<llvm::Error> SymbolError;
1462
1463 iterateModuleSubsections<DebugSymbolsSubsectionRef>(
1464 File, PrintScope{P, 2},
1465 [&](uint32_t Modi, const SymbolGroup &Strings,
1466 DebugSymbolsSubsectionRef &Symbols) {
Zachary Turnerd9e5a1f2018-01-05 19:12:40 +00001467 Dumper.setSymbolGroup(&Strings);
Zachary Turner6ef51e82017-09-01 20:06:56 +00001468 for (auto Symbol : Symbols) {
1469 if (auto EC = Visitor.visitSymbolRecord(Symbol)) {
1470 SymbolError = llvm::make_unique<Error>(std::move(EC));
1471 return;
1472 }
1473 }
1474 });
1475
1476 if (SymbolError)
1477 return std::move(*SymbolError);
1478
1479 return Error::success();
1480}
1481
1482Error DumpOutputStyle::dumpModuleSymsForPdb() {
1483 printHeader(P, "Symbols");
1484
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001485 if (File.isPdb() && !getPdb().hasPDBDbiStream()) {
1486 printStreamNotPresent("DBI");
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001487 return Error::success();
1488 }
1489
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001490 AutoIndent Indent(P);
Reid Kleckner04f27092017-07-27 23:13:18 +00001491 ExitOnError Err("Unexpected error processing symbols: ");
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001492
Zachary Turner6ef51e82017-09-01 20:06:56 +00001493 auto &Ids = File.ids();
1494 auto &Types = File.types();
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001495
Zachary Turner6ef51e82017-09-01 20:06:56 +00001496 iterateSymbolGroups(
1497 File, PrintScope{P, 2}, [&](uint32_t I, const SymbolGroup &Strings) {
1498 auto ExpectedModS = getModuleDebugStream(File.pdb(), I);
Zachary Turner7f318ae2017-08-03 23:11:52 +00001499 if (!ExpectedModS) {
1500 P.formatLine("Error loading module stream {0}. {1}", I,
1501 toString(ExpectedModS.takeError()));
1502 return;
1503 }
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001504
Zachary Turner7f318ae2017-08-03 23:11:52 +00001505 ModuleDebugStreamRef &ModS = *ExpectedModS;
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001506
Zachary Turner7f318ae2017-08-03 23:11:52 +00001507 SymbolVisitorCallbackPipeline Pipeline;
1508 SymbolDeserializer Deserializer(nullptr, CodeViewContainer::Pdb);
Zachary Turnerd9e5a1f2018-01-05 19:12:40 +00001509 MinimalSymbolDumper Dumper(P, opts::dump::DumpSymRecordBytes, Strings,
1510 Ids, Types);
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001511
Zachary Turner7f318ae2017-08-03 23:11:52 +00001512 Pipeline.addCallbackToPipeline(Deserializer);
1513 Pipeline.addCallbackToPipeline(Dumper);
1514 CVSymbolVisitor Visitor(Pipeline);
1515 auto SS = ModS.getSymbolsSubstream();
1516 if (auto EC =
1517 Visitor.visitSymbolStream(ModS.getSymbolArray(), SS.Offset)) {
1518 P.formatLine("Error while processing symbol records. {0}",
1519 toString(std::move(EC)));
1520 return;
1521 }
1522 });
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001523 return Error::success();
1524}
1525
Zachary Turner7f08d4a2018-07-06 02:59:25 +00001526Error DumpOutputStyle::dumpGSIRecords() {
1527 printHeader(P, "GSI Records");
Zachary Turner7f08d4a2018-07-06 02:59:25 +00001528
1529 if (File.isObj()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001530 printStreamNotValidForObj();
Zachary Turner7f08d4a2018-07-06 02:59:25 +00001531 return Error::success();
1532 }
1533
1534 if (!getPdb().hasPDBSymbolStream()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001535 printStreamNotPresent("GSI Common Symbol");
Zachary Turner7f08d4a2018-07-06 02:59:25 +00001536 return Error::success();
1537 }
1538
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001539 AutoIndent Indent(P);
1540
Zachary Turner7f08d4a2018-07-06 02:59:25 +00001541 auto &Records = cantFail(getPdb().getPDBSymbolStream());
1542 auto &Types = File.types();
1543 auto &Ids = File.ids();
1544
1545 P.printLine("Records");
1546 SymbolVisitorCallbackPipeline Pipeline;
1547 SymbolDeserializer Deserializer(nullptr, CodeViewContainer::Pdb);
1548 MinimalSymbolDumper Dumper(P, opts::dump::DumpSymRecordBytes, Ids, Types);
1549
1550 Pipeline.addCallbackToPipeline(Deserializer);
1551 Pipeline.addCallbackToPipeline(Dumper);
1552 CVSymbolVisitor Visitor(Pipeline);
1553
1554 BinaryStreamRef SymStream = Records.getSymbolArray().getUnderlyingStream();
1555 if (auto E = Visitor.visitSymbolStream(Records.getSymbolArray(), 0))
1556 return E;
1557 return Error::success();
1558}
1559
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001560Error DumpOutputStyle::dumpGlobals() {
1561 printHeader(P, "Global Symbols");
Zachary Turner6ef51e82017-09-01 20:06:56 +00001562
1563 if (File.isObj()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001564 printStreamNotValidForObj();
Zachary Turner6ef51e82017-09-01 20:06:56 +00001565 return Error::success();
1566 }
1567
1568 if (!getPdb().hasPDBGlobalsStream()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001569 printStreamNotPresent("Globals");
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001570 return Error::success();
1571 }
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001572
1573 AutoIndent Indent(P);
Reid Kleckner04f27092017-07-27 23:13:18 +00001574 ExitOnError Err("Error dumping globals stream: ");
Zachary Turner6ef51e82017-09-01 20:06:56 +00001575 auto &Globals = Err(getPdb().getPDBGlobalsStream());
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001576
Zachary Turnercffc8762018-10-08 04:19:16 +00001577 if (opts::dump::DumpGlobalNames.empty()) {
1578 const GSIHashTable &Table = Globals.getGlobalsTable();
1579 Err(dumpSymbolsFromGSI(Table, opts::dump::DumpGlobalExtras));
1580 } else {
1581 SymbolStream &SymRecords = cantFail(getPdb().getPDBSymbolStream());
1582 auto &Types = File.types();
1583 auto &Ids = File.ids();
1584
1585 SymbolVisitorCallbackPipeline Pipeline;
1586 SymbolDeserializer Deserializer(nullptr, CodeViewContainer::Pdb);
1587 MinimalSymbolDumper Dumper(P, opts::dump::DumpSymRecordBytes, Ids, Types);
1588
1589 Pipeline.addCallbackToPipeline(Deserializer);
1590 Pipeline.addCallbackToPipeline(Dumper);
1591 CVSymbolVisitor Visitor(Pipeline);
1592
1593 using ResultEntryType = std::pair<uint32_t, CVSymbol>;
1594 for (StringRef Name : opts::dump::DumpGlobalNames) {
1595 AutoIndent Indent(P);
1596 P.formatLine("Global Name `{0}`", Name);
1597 std::vector<ResultEntryType> Results =
1598 Globals.findRecordsByName(Name, SymRecords);
1599 if (Results.empty()) {
1600 AutoIndent Indent(P);
1601 P.printLine("(no matching records found)");
1602 continue;
1603 }
1604
1605 for (ResultEntryType Result : Results) {
1606 if (auto E = Visitor.visitSymbolRecord(Result.second, Result.first))
1607 return E;
1608 }
1609 }
1610 }
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001611 return Error::success();
1612}
1613
Zachary Turner08950322017-06-22 20:57:39 +00001614Error DumpOutputStyle::dumpPublics() {
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001615 printHeader(P, "Public Symbols");
Zachary Turner6ef51e82017-09-01 20:06:56 +00001616
1617 if (File.isObj()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001618 printStreamNotValidForObj();
Zachary Turner6ef51e82017-09-01 20:06:56 +00001619 return Error::success();
1620 }
1621
1622 if (!getPdb().hasPDBPublicsStream()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001623 printStreamNotPresent("Publics");
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001624 return Error::success();
1625 }
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001626
1627 AutoIndent Indent(P);
Reid Kleckner04f27092017-07-27 23:13:18 +00001628 ExitOnError Err("Error dumping publics stream: ");
Zachary Turner6ef51e82017-09-01 20:06:56 +00001629 auto &Publics = Err(getPdb().getPDBPublicsStream());
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001630
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001631 const GSIHashTable &PublicsTable = Publics.getPublicsTable();
Zachary Turnered601f12017-08-09 04:23:59 +00001632 if (opts::dump::DumpPublicExtras) {
1633 P.printLine("Publics Header");
1634 AutoIndent Indent(P);
1635 P.formatLine("sym hash = {0}, thunk table addr = {1}", Publics.getSymHash(),
1636 formatSegmentOffset(Publics.getThunkTableSection(),
1637 Publics.getThunkTableOffset()));
1638 }
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001639 Err(dumpSymbolsFromGSI(PublicsTable, opts::dump::DumpPublicExtras));
Zachary Turnerd36e1552017-06-30 21:35:00 +00001640
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001641 // Skip the rest if we aren't dumping extras.
Reid Klecknercf6f6502017-07-21 18:28:55 +00001642 if (!opts::dump::DumpPublicExtras)
1643 return Error::success();
1644
Reid Klecknercf6f6502017-07-21 18:28:55 +00001645 P.formatLine("Address Map");
1646 {
1647 // These are offsets into the publics stream sorted by secidx:secrel.
1648 AutoIndent Indent2(P);
1649 for (uint32_t Addr : Publics.getAddressMap())
1650 P.formatLine("off = {0}", Addr);
1651 }
1652
1653 // The thunk map is optional debug info used for ILT thunks.
1654 if (!Publics.getThunkMap().empty()) {
1655 P.formatLine("Thunk Map");
1656 AutoIndent Indent2(P);
1657 for (uint32_t Addr : Publics.getThunkMap())
1658 P.formatLine("{0:x8}", Addr);
1659 }
1660
1661 // The section offsets table appears to be empty when incremental linking
1662 // isn't in use.
1663 if (!Publics.getSectionOffsets().empty()) {
1664 P.formatLine("Section Offsets");
1665 AutoIndent Indent2(P);
1666 for (const SectionOffset &SO : Publics.getSectionOffsets())
1667 P.formatLine("{0:x4}:{1:x8}", uint16_t(SO.Isect), uint32_t(SO.Off));
1668 }
1669
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001670 return Error::success();
1671}
1672
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001673Error DumpOutputStyle::dumpSymbolsFromGSI(const GSIHashTable &Table,
1674 bool HashExtras) {
Zachary Turner6ef51e82017-09-01 20:06:56 +00001675 auto ExpectedSyms = getPdb().getPDBSymbolStream();
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001676 if (!ExpectedSyms)
1677 return ExpectedSyms.takeError();
Zachary Turner6ef51e82017-09-01 20:06:56 +00001678 auto &Types = File.types();
1679 auto &Ids = File.ids();
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001680
Zachary Turnered601f12017-08-09 04:23:59 +00001681 if (HashExtras) {
1682 P.printLine("GSI Header");
1683 AutoIndent Indent(P);
1684 P.formatLine("sig = {0:X}, hdr = {1:X}, hr size = {2}, num buckets = {3}",
1685 Table.getVerSignature(), Table.getVerHeader(),
1686 Table.getHashRecordSize(), Table.getNumBuckets());
1687 }
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001688
Zachary Turnered601f12017-08-09 04:23:59 +00001689 {
1690 P.printLine("Records");
1691 SymbolVisitorCallbackPipeline Pipeline;
1692 SymbolDeserializer Deserializer(nullptr, CodeViewContainer::Pdb);
Zachary Turner6ef51e82017-09-01 20:06:56 +00001693 MinimalSymbolDumper Dumper(P, opts::dump::DumpSymRecordBytes, Ids, Types);
Zachary Turnered601f12017-08-09 04:23:59 +00001694
1695 Pipeline.addCallbackToPipeline(Deserializer);
1696 Pipeline.addCallbackToPipeline(Dumper);
1697 CVSymbolVisitor Visitor(Pipeline);
1698
Zachary Turner7f08d4a2018-07-06 02:59:25 +00001699
Zachary Turnered601f12017-08-09 04:23:59 +00001700 BinaryStreamRef SymStream =
1701 ExpectedSyms->getSymbolArray().getUnderlyingStream();
1702 for (uint32_t PubSymOff : Table) {
1703 Expected<CVSymbol> Sym = readSymbolFromStream(SymStream, PubSymOff);
1704 if (!Sym)
1705 return Sym.takeError();
1706 if (auto E = Visitor.visitSymbolRecord(*Sym, PubSymOff))
1707 return E;
1708 }
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001709 }
1710
1711 // Return early if we aren't dumping public hash table and address map info.
Zachary Turner7f08d4a2018-07-06 02:59:25 +00001712 if (HashExtras) {
Zachary Turner7f08d4a2018-07-06 02:59:25 +00001713 P.formatLine("Hash Entries");
1714 {
1715 AutoIndent Indent2(P);
1716 for (const PSHashRecord &HR : Table.HashRecords)
1717 P.formatLine("off = {0}, refcnt = {1}", uint32_t(HR.Off),
1718 uint32_t(HR.CRef));
1719 }
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001720
Zachary Turner7f08d4a2018-07-06 02:59:25 +00001721 P.formatLine("Hash Buckets");
1722 {
1723 AutoIndent Indent2(P);
1724 for (uint32_t Hash : Table.HashBuckets)
1725 P.formatLine("{0:x8}", Hash);
1726 }
Reid Kleckner4a753bd2017-07-26 00:40:36 +00001727 }
1728
1729 return Error::success();
1730}
1731
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001732static std::string formatSegMapDescriptorFlag(uint32_t IndentLevel,
1733 OMFSegDescFlags Flags) {
1734 std::vector<std::string> Opts;
1735 if (Flags == OMFSegDescFlags::None)
1736 return "none";
1737
1738 PUSH_FLAG(OMFSegDescFlags, Read, Flags, "read");
1739 PUSH_FLAG(OMFSegDescFlags, Write, Flags, "write");
1740 PUSH_FLAG(OMFSegDescFlags, Execute, Flags, "execute");
1741 PUSH_FLAG(OMFSegDescFlags, AddressIs32Bit, Flags, "32 bit addr");
1742 PUSH_FLAG(OMFSegDescFlags, IsSelector, Flags, "selector");
1743 PUSH_FLAG(OMFSegDescFlags, IsAbsoluteAddress, Flags, "absolute addr");
1744 PUSH_FLAG(OMFSegDescFlags, IsGroup, Flags, "group");
Zachary Turner68e216b2017-06-16 00:04:24 +00001745 return typesetItemList(Opts, IndentLevel, 4, " | ");
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001746}
1747
Zachary Turner6c8e8ae2017-08-04 20:02:38 +00001748Error DumpOutputStyle::dumpSectionHeaders() {
1749 dumpSectionHeaders("Section Headers", DbgHeaderType::SectionHdr);
1750 dumpSectionHeaders("Original Section Headers", DbgHeaderType::SectionHdrOrig);
1751 return Error::success();
1752}
1753
1754void DumpOutputStyle::dumpSectionHeaders(StringRef Label, DbgHeaderType Type) {
1755 printHeader(P, Label);
Zachary Turner6c8e8ae2017-08-04 20:02:38 +00001756
Zachary Turner6ef51e82017-09-01 20:06:56 +00001757 if (File.isObj()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001758 printStreamNotValidForObj();
Zachary Turner6ef51e82017-09-01 20:06:56 +00001759 return;
1760 }
1761
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001762 if (!getPdb().hasPDBDbiStream()) {
1763 printStreamNotPresent("DBI");
1764 return;
1765 }
1766
1767 AutoIndent Indent(P);
Zachary Turner6ef51e82017-09-01 20:06:56 +00001768 ExitOnError Err("Error dumping section headers: ");
Zachary Turnerebe12ac2017-08-04 21:10:04 +00001769 std::unique_ptr<MappedBlockStream> Stream;
Zachary Turner6c8e8ae2017-08-04 20:02:38 +00001770 ArrayRef<object::coff_section> Headers;
Zachary Turner6ef51e82017-09-01 20:06:56 +00001771 auto ExpectedHeaders = loadSectionHeaders(getPdb(), Type);
Zachary Turnerebe12ac2017-08-04 21:10:04 +00001772 if (!ExpectedHeaders) {
1773 P.printLine(toString(ExpectedHeaders.takeError()));
Zachary Turner6c8e8ae2017-08-04 20:02:38 +00001774 return;
1775 }
Zachary Turnerebe12ac2017-08-04 21:10:04 +00001776 std::tie(Stream, Headers) = std::move(*ExpectedHeaders);
Zachary Turner6c8e8ae2017-08-04 20:02:38 +00001777
1778 uint32_t I = 1;
1779 for (const auto &Header : Headers) {
1780 P.NewLine();
1781 P.formatLine("SECTION HEADER #{0}", I);
1782 P.formatLine("{0,8} name", Header.Name);
1783 P.formatLine("{0,8:X-} virtual size", uint32_t(Header.VirtualSize));
1784 P.formatLine("{0,8:X-} virtual address", uint32_t(Header.VirtualAddress));
1785 P.formatLine("{0,8:X-} size of raw data", uint32_t(Header.SizeOfRawData));
1786 P.formatLine("{0,8:X-} file pointer to raw data",
1787 uint32_t(Header.PointerToRawData));
1788 P.formatLine("{0,8:X-} file pointer to relocation table",
1789 uint32_t(Header.PointerToRelocations));
1790 P.formatLine("{0,8:X-} file pointer to line numbers",
1791 uint32_t(Header.PointerToLinenumbers));
1792 P.formatLine("{0,8:X-} number of relocations",
1793 uint32_t(Header.NumberOfRelocations));
1794 P.formatLine("{0,8:X-} number of line numbers",
1795 uint32_t(Header.NumberOfLinenumbers));
1796 P.formatLine("{0,8:X-} flags", uint32_t(Header.Characteristics));
1797 AutoIndent IndentMore(P, 9);
1798 P.formatLine("{0}", formatSectionCharacteristics(
1799 P.getIndentLevel(), Header.Characteristics, 1, ""));
1800 ++I;
1801 }
1802 return;
1803}
1804
Zachary Turner08950322017-06-22 20:57:39 +00001805Error DumpOutputStyle::dumpSectionContribs() {
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001806 printHeader(P, "Section Contributions");
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001807
Zachary Turner6ef51e82017-09-01 20:06:56 +00001808 if (File.isObj()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001809 printStreamNotValidForObj();
Zachary Turner6ef51e82017-09-01 20:06:56 +00001810 return Error::success();
1811 }
1812
Zachary Turner6ef51e82017-09-01 20:06:56 +00001813 if (!getPdb().hasPDBDbiStream()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001814 printStreamNotPresent("DBI");
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001815 return Error::success();
1816 }
1817
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001818 AutoIndent Indent(P);
1819 ExitOnError Err("Error dumping section contributions: ");
1820
Zachary Turner6ef51e82017-09-01 20:06:56 +00001821 auto &Dbi = Err(getPdb().getPDBDbiStream());
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001822
1823 class Visitor : public ISectionContribVisitor {
1824 public:
Zachary Turnerebe12ac2017-08-04 21:10:04 +00001825 Visitor(LinePrinter &P, ArrayRef<std::string> Names) : P(P), Names(Names) {
1826 auto Max = std::max_element(
1827 Names.begin(), Names.end(),
1828 [](StringRef S1, StringRef S2) { return S1.size() < S2.size(); });
1829 MaxNameLen = (Max == Names.end() ? 0 : Max->size());
1830 }
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001831 void visit(const SectionContrib &SC) override {
Zachary Turner8995c862018-04-17 20:06:43 +00001832 dumpSectionContrib(P, SC, Names, MaxNameLen);
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001833 }
1834 void visit(const SectionContrib2 &SC) override {
Zachary Turner8995c862018-04-17 20:06:43 +00001835 dumpSectionContrib(P, SC, Names, MaxNameLen);
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001836 }
1837
1838 private:
1839 LinePrinter &P;
Zachary Turnerebe12ac2017-08-04 21:10:04 +00001840 uint32_t MaxNameLen;
1841 ArrayRef<std::string> Names;
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001842 };
1843
Zachary Turner6ef51e82017-09-01 20:06:56 +00001844 std::vector<std::string> Names = getSectionNames(getPdb());
Zachary Turnerebe12ac2017-08-04 21:10:04 +00001845 Visitor V(P, makeArrayRef(Names));
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001846 Dbi.visitSectionContributions(V);
1847 return Error::success();
1848}
1849
Zachary Turner08950322017-06-22 20:57:39 +00001850Error DumpOutputStyle::dumpSectionMap() {
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001851 printHeader(P, "Section Map");
Zachary Turner6ef51e82017-09-01 20:06:56 +00001852
1853 if (File.isObj()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001854 printStreamNotValidForObj();
Zachary Turner6ef51e82017-09-01 20:06:56 +00001855 return Error::success();
1856 }
1857
Zachary Turner6ef51e82017-09-01 20:06:56 +00001858 if (!getPdb().hasPDBDbiStream()) {
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001859 printStreamNotPresent("DBI");
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001860 return Error::success();
1861 }
1862
Alexandre Ganeafabcc792018-08-06 19:35:00 +00001863 AutoIndent Indent(P);
1864 ExitOnError Err("Error dumping section map: ");
1865
Zachary Turner6ef51e82017-09-01 20:06:56 +00001866 auto &Dbi = Err(getPdb().getPDBDbiStream());
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001867
1868 uint32_t I = 0;
1869 for (auto &M : Dbi.getSectionMap()) {
1870 P.formatLine(
Zachary Turner6c8e8ae2017-08-04 20:02:38 +00001871 "Section {0:4} | ovl = {1}, group = {2}, frame = {3}, name = {4}", I,
Zachary Turner7e5d31e2017-06-15 22:24:24 +00001872 fmtle(M.Ovl), fmtle(M.Group), fmtle(M.Frame), fmtle(M.SecName));
1873 P.formatLine(" class = {0}, offset = {1}, size = {2}",
1874 fmtle(M.ClassName), fmtle(M.Offset), fmtle(M.SecByteLength));
1875 P.formatLine(" flags = {0}",
1876 formatSegMapDescriptorFlag(
1877 P.getIndentLevel() + 13,
1878 static_cast<OMFSegDescFlags>(uint16_t(M.Flags))));
1879 ++I;
1880 }
1881 return Error::success();
1882}