1//===-- llvm-dwarfdump.cpp - Debug info dumping utility for llvm ----------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This program is a utility that works like "dwarfdump".
10//
11//===----------------------------------------------------------------------===//
12
13#include "llvm-dwarfdump.h"
14#include "llvm/ADT/MapVector.h"
15#include "llvm/ADT/STLExtras.h"
16#include "llvm/ADT/SmallSet.h"
17#include "llvm/ADT/SmallVectorExtras.h"
18#include "llvm/ADT/StringSet.h"
19#include "llvm/DebugInfo/DIContext.h"
20#include "llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h"
21#include "llvm/DebugInfo/DWARF/DWARFCompileUnit.h"
22#include "llvm/DebugInfo/DWARF/DWARFContext.h"
23#include "llvm/MC/MCRegisterInfo.h"
24#include "llvm/MC/TargetRegistry.h"
25#include "llvm/Object/Archive.h"
26#include "llvm/Object/MachOUniversal.h"
27#include "llvm/Object/ObjectFile.h"
28#include "llvm/Support/CommandLine.h"
29#include "llvm/Support/Debug.h"
30#include "llvm/Support/Format.h"
31#include "llvm/Support/FormatVariadic.h"
32#include "llvm/Support/InitLLVM.h"
33#include "llvm/Support/MemoryBuffer.h"
34#include "llvm/Support/Parallel.h"
35#include "llvm/Support/Path.h"
36#include "llvm/Support/Regex.h"
37#include "llvm/Support/TargetSelect.h"
38#include "llvm/Support/Threading.h"
39#include "llvm/Support/ToolOutputFile.h"
40#include "llvm/Support/WithColor.h"
41#include "llvm/Support/raw_ostream.h"
42#include "llvm/TargetParser/Triple.h"
43#include <cstdlib>
44
45using namespace llvm;
46using namespace llvm::dwarfdump;
47using namespace llvm::object;
48
49namespace {
50/// Parser for options that take an optional offest argument.
51/// @{
52struct OffsetOption {
53 uint64_t Val = 0;
54 bool HasValue = false;
55 bool IsRequested = false;
56};
57struct BoolOption : public OffsetOption {};
58} // namespace
59
60namespace llvm {
61namespace cl {
62template <>
63class parser<OffsetOption> final : public basic_parser<OffsetOption> {
64public:
65 parser(Option &O) : basic_parser(O) {}
66
67 /// Return true on error.
68 bool parse(Option &O, StringRef ArgName, StringRef Arg, OffsetOption &Val) {
69 if (Arg == "") {
70 Val.Val = 0;
71 Val.HasValue = false;
72 Val.IsRequested = true;
73 return false;
74 }
75 if (Arg.getAsInteger(Radix: 0, Result&: Val.Val))
76 return O.error(Message: "'" + Arg + "' value invalid for integer argument");
77 Val.HasValue = true;
78 Val.IsRequested = true;
79 return false;
80 }
81
82 enum ValueExpected getValueExpectedFlagDefault() const {
83 return ValueOptional;
84 }
85
86 StringRef getValueName() const override { return StringRef("offset"); }
87
88 void printOptionDiff(const Option &O, OffsetOption V, OptVal Default,
89 size_t GlobalWidth) const {
90 printOptionName(O, GlobalWidth);
91 outs() << "[=offset]";
92 }
93};
94
95template <> class parser<BoolOption> final : public basic_parser<BoolOption> {
96public:
97 parser(Option &O) : basic_parser(O) {}
98
99 /// Return true on error.
100 bool parse(Option &O, StringRef ArgName, StringRef Arg, BoolOption &Val) {
101 if (Arg != "")
102 return O.error(Message: "this is a flag and does not take a value");
103 Val.Val = 0;
104 Val.HasValue = false;
105 Val.IsRequested = true;
106 return false;
107 }
108
109 enum ValueExpected getValueExpectedFlagDefault() const {
110 return ValueOptional;
111 }
112
113 StringRef getValueName() const override { return StringRef(); }
114
115 void printOptionDiff(const Option &O, OffsetOption V, OptVal Default,
116 size_t GlobalWidth) const {
117 printOptionName(O, GlobalWidth);
118 }
119};
120} // namespace cl
121} // namespace llvm
122
123/// @}
124/// Command line options.
125/// @{
126
127namespace {
128using namespace cl;
129
130enum ErrorDetailLevel {
131 OnlyDetailsNoSummary,
132 NoDetailsOnlySummary,
133 NoDetailsOrSummary,
134 BothDetailsAndSummary,
135 Unspecified
136};
137
138OptionCategory DwarfDumpCategory("Specific Options");
139static list<std::string>
140 InputFilenames(Positional, desc("<input object files or .dSYM bundles>"),
141 cat(DwarfDumpCategory));
142
143cl::OptionCategory SectionCategory("Section-specific Dump Options",
144 "These control which sections are dumped. "
145 "Where applicable these parameters take an "
146 "optional =<offset> argument to dump only "
147 "the entry at the specified offset.");
148
149static opt<bool> DumpAll("all", desc("Dump all debug info sections"),
150 cat(SectionCategory));
151static alias DumpAllAlias("a", desc("Alias for --all"), aliasopt(DumpAll),
152 cl::NotHidden);
153
154// Options for dumping specific sections.
155static unsigned DumpType = DIDT_Null;
156static std::array<std::optional<uint64_t>, (unsigned)DIDT_ID_Count> DumpOffsets;
157#define HANDLE_DWARF_SECTION(ENUM_NAME, ELF_NAME, CMDLINE_NAME, OPTION) \
158 static opt<OPTION> Dump##ENUM_NAME(CMDLINE_NAME, \
159 desc("Dump the " ELF_NAME " section"), \
160 cat(SectionCategory));
161#include "llvm/BinaryFormat/Dwarf.def"
162#undef HANDLE_DWARF_SECTION
163
164// The aliased DumpDebugFrame is created by the Dwarf.def x-macro just above.
165static alias DumpDebugFrameAlias("eh-frame", desc("Alias for --debug-frame"),
166 NotHidden, cat(SectionCategory),
167 aliasopt(DumpDebugFrame));
168static list<std::string>
169 ArchFilters("arch",
170 desc("Dump debug information for the specified CPU "
171 "architecture only. Architectures may be specified by "
172 "name or by number. This option can be specified "
173 "multiple times, once for each desired architecture."),
174 cat(DwarfDumpCategory));
175static opt<bool>
176 Diff("diff",
177 desc("Emit diff-friendly output by omitting offsets and addresses."),
178 cat(DwarfDumpCategory));
179static list<std::string>
180 Find("find",
181 desc("Search for the exact match for <name> in the accelerator tables "
182 "and print the matching debug information entries. When no "
183 "accelerator tables are available, the slower but more complete "
184 "-name option can be used instead."),
185 value_desc("name"), cat(DwarfDumpCategory));
186static alias FindAlias("f", desc("Alias for --find."), aliasopt(Find),
187 cl::NotHidden);
188static opt<bool> FindAllApple(
189 "find-all-apple",
190 desc("Print every debug information entry in the accelerator tables."),
191 cat(DwarfDumpCategory));
192static opt<bool> IgnoreCase("ignore-case",
193 desc("Ignore case distinctions when using --name."),
194 value_desc("i"), cat(DwarfDumpCategory));
195static opt<bool> DumpNonSkeleton(
196 "dwo",
197 desc("Dump the non skeleton DIE in the .dwo or .dwp file after dumping the "
198 "skeleton DIE from the main executable. This allows dumping the .dwo "
199 "files with resolved addresses."),
200 value_desc("d"), cat(DwarfDumpCategory));
201
202static alias IgnoreCaseAlias("i", desc("Alias for --ignore-case."),
203 aliasopt(IgnoreCase), cl::NotHidden);
204static list<std::string> Name(
205 "name",
206 desc("Find and print all debug info entries whose name "
207 "(DW_AT_name/DW_AT_linkage_name attribute) matches the exact text "
208 "in <pattern>. When used with the the -regex option <pattern> is "
209 "interpreted as a regular expression."),
210 value_desc("pattern"), cat(DwarfDumpCategory));
211static alias NameAlias("n", desc("Alias for --name"), aliasopt(Name),
212 cl::NotHidden);
213static opt<uint64_t>
214 Lookup("lookup",
215 desc("Lookup <address> in the debug information and print out any "
216 "available file, function, block and line table details."),
217 value_desc("address"), cat(DwarfDumpCategory));
218static opt<std::string>
219 OutputFilename("o", cl::init(Val: "-"),
220 cl::desc("Redirect output to the specified file."),
221 cl::value_desc("filename"), cat(DwarfDumpCategory));
222static alias OutputFilenameAlias("out-file", desc("Alias for -o."),
223 aliasopt(OutputFilename));
224static opt<bool> UseRegex(
225 "regex",
226 desc("Treat any <pattern> strings as regular "
227 "expressions when searching with --name. If --ignore-case is also "
228 "specified, the regular expression becomes case-insensitive."),
229 cat(DwarfDumpCategory));
230static alias RegexAlias("x", desc("Alias for --regex"), aliasopt(UseRegex),
231 cl::NotHidden);
232static opt<bool>
233 ShowChildren("show-children",
234 desc("Show a debug info entry's children when selectively "
235 "printing entries."),
236 cat(DwarfDumpCategory));
237static alias ShowChildrenAlias("c", desc("Alias for --show-children."),
238 aliasopt(ShowChildren), cl::NotHidden);
239static opt<bool>
240 ShowParents("show-parents",
241 desc("Show a debug info entry's parents when selectively "
242 "printing entries."),
243 cat(DwarfDumpCategory));
244static alias ShowParentsAlias("p", desc("Alias for --show-parents."),
245 aliasopt(ShowParents), cl::NotHidden);
246
247static list<std::string> FilterChildTag(
248 "filter-child-tag",
249 desc("When --show-children is specified, show only DIEs with the "
250 "specified DWARF tags."),
251 value_desc("list of DWARF tags"), cat(DwarfDumpCategory));
252static alias FilterChildTagAlias("t", desc("Alias for --filter-child-tag."),
253 aliasopt(FilterChildTag), cl::NotHidden);
254
255static opt<bool>
256 ShowForm("show-form",
257 desc("Show DWARF form types after the DWARF attribute types."),
258 cat(DwarfDumpCategory));
259static alias ShowFormAlias("F", desc("Alias for --show-form."),
260 aliasopt(ShowForm), cat(DwarfDumpCategory),
261 cl::NotHidden);
262static opt<unsigned>
263 ChildRecurseDepth("recurse-depth",
264 desc("Only recurse to a depth of N when displaying "
265 "children of debug info entries."),
266 cat(DwarfDumpCategory), init(Val: -1U), value_desc("N"));
267static alias ChildRecurseDepthAlias("r", desc("Alias for --recurse-depth."),
268 aliasopt(ChildRecurseDepth), cl::NotHidden);
269static opt<unsigned>
270 ParentRecurseDepth("parent-recurse-depth",
271 desc("Only recurse to a depth of N when displaying "
272 "parents of debug info entries."),
273 cat(DwarfDumpCategory), init(Val: -1U), value_desc("N"));
274static opt<bool>
275 SummarizeTypes("summarize-types",
276 desc("Abbreviate the description of type unit entries."),
277 cat(DwarfDumpCategory));
278static cl::opt<bool>
279 Statistics("statistics",
280 cl::desc("Emit JSON-formatted debug info quality metrics."),
281 cat(DwarfDumpCategory));
282static cl::opt<bool>
283 ShowSectionSizes("show-section-sizes",
284 cl::desc("Show the sizes of all debug sections, "
285 "expressed in bytes."),
286 cat(DwarfDumpCategory));
287static cl::opt<bool> ManuallyGenerateUnitIndex(
288 "manually-generate-unit-index",
289 cl::desc("if the input is dwp file, parse .debug_info "
290 "section and use it to populate "
291 "DW_SECT_INFO contributions in cu-index. "
292 "For DWARF5 it also populated TU Index."),
293 cl::init(Val: false), cl::Hidden, cl::cat(DwarfDumpCategory));
294static cl::opt<bool>
295 ShowSources("show-sources",
296 cl::desc("Show the sources across all compilation units."),
297 cat(DwarfDumpCategory));
298static opt<bool> Verify("verify", desc("Verify the DWARF debug info."),
299 cat(DwarfDumpCategory));
300static opt<unsigned> VerifyNumThreads(
301 "verify-num-threads", init(Val: 1),
302 desc("Number of threads to use for --verify. Single threaded verification "
303 "is the default unless this option is specified. If 0 is specified, "
304 "maximum hardware threads will be used. This can cause the "
305 "output to be non determinisitic, but can speed up verification and "
306 "is useful when running with the summary only or JSON summary modes."),
307 cat(DwarfDumpCategory));
308static opt<ErrorDetailLevel> ErrorDetails(
309 "error-display", init(Val: Unspecified),
310 desc("Set the level of detail and summary to display when verifying "
311 "(implies --verify)"),
312 values(clEnumValN(NoDetailsOrSummary, "quiet",
313 "Only display whether errors occurred."),
314 clEnumValN(NoDetailsOnlySummary, "summary",
315 "Display only a summary of the errors found."),
316 clEnumValN(OnlyDetailsNoSummary, "details",
317 "Display each error in detail but no summary."),
318 clEnumValN(BothDetailsAndSummary, "full",
319 "Display each error as well as a summary. [default]")),
320 cat(DwarfDumpCategory));
321static opt<std::string> JsonErrSummaryFile(
322 "verify-json", init(Val: ""),
323 desc("Output JSON-formatted error summary to the specified file. "
324 "(Implies --verify)"),
325 value_desc("filename.json"), cat(DwarfDumpCategory));
326static opt<bool> Quiet("quiet", desc("Use with -verify to not emit to STDOUT."),
327 cat(DwarfDumpCategory));
328static opt<bool> DumpUUID("uuid", desc("Show the UUID for each architecture."),
329 cat(DwarfDumpCategory));
330static alias DumpUUIDAlias("u", desc("Alias for --uuid."), aliasopt(DumpUUID),
331 cl::NotHidden);
332static opt<bool> Verbose("verbose",
333 desc("Print more low-level encoding details."),
334 cat(DwarfDumpCategory));
335static alias VerboseAlias("v", desc("Alias for --verbose."), aliasopt(Verbose),
336 cat(DwarfDumpCategory), cl::NotHidden);
337static opt<bool>
338 ShowVariableCoverage("show-variable-coverage",
339 desc("Show per-variable coverage metrics."),
340 cat(DwarfDumpCategory));
341static opt<std::string>
342 CoverageBaseline("coverage-baseline",
343 desc("File to use as the baseline for variable coverage "
344 "statistics (implies --show-variable-coverage)"),
345 value_desc("filename"), cat(DwarfDumpCategory));
346static opt<std::string>
347 BitcodeFile("variable-coverage-bitcode-file",
348 desc("File containing LLVM IR (bitcode or textual) used for "
349 "calculating variable definedness in coverage statistics "
350 "(implies --show-variable-coverage)"),
351 value_desc("filename"), cat(DwarfDumpCategory));
352static opt<bool> CombineInstances(
353 "combine-inline-variable-instances",
354 desc(
355 "Use with --show-variable-coverage to average variable coverage across "
356 "inlined subroutine instances instead of printing them separately."),
357 cat(DwarfDumpCategory));
358static cl::extrahelp
359 HelpResponse("\nPass @FILE as argument to read options from FILE.\n");
360} // namespace
361/// @}
362//===----------------------------------------------------------------------===//
363
364static llvm::SmallVector<unsigned>
365makeTagVector(const list<std::string> &TagStrings) {
366 return llvm::map_to_vector(C: TagStrings, F: [](const std::string &Tag) {
367 return llvm::dwarf::getTag(TagString: Tag);
368 });
369}
370
371static void error(Error Err) {
372 if (!Err)
373 return;
374 WithColor::error() << toString(E: std::move(Err)) << "\n";
375 exit(status: 1);
376}
377
378static void error(StringRef Prefix, Error Err) {
379 if (!Err)
380 return;
381 WithColor::error() << Prefix << ": " << toString(E: std::move(Err)) << "\n";
382 exit(status: 1);
383}
384
385static void error(StringRef Prefix, std::error_code EC) {
386 error(Prefix, Err: errorCodeToError(EC));
387}
388
389static DIDumpOptions getDumpOpts(DWARFContext &C) {
390 DIDumpOptions DumpOpts;
391 DumpOpts.DumpType = DumpType;
392 DumpOpts.ChildRecurseDepth = ChildRecurseDepth;
393 DumpOpts.ParentRecurseDepth = ParentRecurseDepth;
394 DumpOpts.ShowAddresses = !Diff;
395 DumpOpts.ShowChildren = ShowChildren;
396 DumpOpts.ShowParents = ShowParents;
397 DumpOpts.FilterChildTag = makeTagVector(TagStrings: FilterChildTag);
398 DumpOpts.ShowForm = ShowForm;
399 DumpOpts.SummarizeTypes = SummarizeTypes;
400 DumpOpts.Verbose = Verbose;
401 DumpOpts.DumpNonSkeleton = DumpNonSkeleton;
402 DumpOpts.RecoverableErrorHandler = C.getRecoverableErrorHandler();
403 // In -verify mode, print DIEs without children in error messages.
404 if (Verify) {
405 DumpOpts.Verbose = ErrorDetails != NoDetailsOnlySummary &&
406 ErrorDetails != NoDetailsOrSummary;
407 DumpOpts.ShowAggregateErrors = ErrorDetails != OnlyDetailsNoSummary &&
408 ErrorDetails != NoDetailsOnlySummary;
409 DumpOpts.JsonErrSummaryFile = JsonErrSummaryFile;
410 return DumpOpts.noImplicitRecursion();
411 }
412 return DumpOpts;
413}
414
415static uint32_t getCPUType(MachOObjectFile &MachO) {
416 if (MachO.is64Bit())
417 return MachO.getHeader64().cputype;
418 else
419 return MachO.getHeader().cputype;
420}
421
422/// Return true if the object file has not been filtered by an --arch option.
423static bool filterArch(ObjectFile &Obj) {
424 if (ArchFilters.empty())
425 return true;
426
427 if (auto *MachO = dyn_cast<MachOObjectFile>(Val: &Obj)) {
428 for (const StringRef Arch : ArchFilters) {
429 // Match architecture number.
430 unsigned Value;
431 if (!Arch.getAsInteger(Radix: 0, Result&: Value))
432 if (Value == getCPUType(MachO&: *MachO))
433 return true;
434
435 // Match as name.
436 if (MachO->getArchTriple().getArchName() == Triple(Arch).getArchName())
437 return true;
438 }
439 }
440 return false;
441}
442
443using HandlerFn = std::function<bool(ObjectFile &, DWARFContext &DICtx,
444 const Twine &, raw_ostream &)>;
445
446/// Print only DIEs that have a certain name.
447static bool filterByName(
448 const StringSet<> &Names, DWARFDie Die, StringRef NameRef, raw_ostream &OS,
449 std::function<StringRef(uint64_t RegNum, bool IsEH)> GetNameForDWARFReg) {
450 DIDumpOptions DumpOpts = getDumpOpts(C&: Die.getDwarfUnit()->getContext());
451 DumpOpts.GetNameForDWARFReg = GetNameForDWARFReg;
452 std::string Name =
453 (IgnoreCase && !UseRegex) ? NameRef.lower() : NameRef.str();
454 if (UseRegex) {
455 // Match regular expression.
456 for (auto Pattern : Names.keys()) {
457 Regex RE(Pattern, IgnoreCase ? Regex::IgnoreCase : Regex::NoFlags);
458 std::string Error;
459 if (!RE.isValid(Error)) {
460 errs() << "error in regular expression: " << Error << "\n";
461 exit(status: 1);
462 }
463 if (RE.match(String: Name)) {
464 Die.dump(OS, indent: 0, DumpOpts);
465 return true;
466 }
467 }
468 } else if (Names.count(Key: Name)) {
469 // Match full text.
470 Die.dump(OS, indent: 0, DumpOpts);
471 return true;
472 }
473 return false;
474}
475
476/// Print only DIEs that have a certain name.
477static void filterByName(
478 const StringSet<> &Names, DWARFContext::unit_iterator_range CUs,
479 raw_ostream &OS,
480 std::function<StringRef(uint64_t RegNum, bool IsEH)> GetNameForDWARFReg) {
481 auto filterDieNames = [&](DWARFUnit *Unit) {
482 for (const auto &Entry : Unit->dies()) {
483 DWARFDie Die = {Unit, &Entry};
484 if (const char *Name = Die.getName(Kind: DINameKind::ShortName))
485 if (filterByName(Names, Die, NameRef: Name, OS, GetNameForDWARFReg))
486 continue;
487 if (const char *Name = Die.getName(Kind: DINameKind::LinkageName))
488 filterByName(Names, Die, NameRef: Name, OS, GetNameForDWARFReg);
489 }
490 };
491 for (const auto &CU : CUs) {
492 filterDieNames(CU.get());
493 if (DumpNonSkeleton) {
494 // If we have split DWARF, then recurse down into the .dwo files as well.
495 DWARFDie CUDie = CU->getUnitDIE(ExtractUnitDIEOnly: false);
496 DWARFDie CUNonSkeletonDie = CU->getNonSkeletonUnitDIE(ExtractUnitDIEOnly: false);
497 // If we have a DWO file, we need to search it as well
498 if (CUNonSkeletonDie && CUDie != CUNonSkeletonDie)
499 filterDieNames(CUNonSkeletonDie.getDwarfUnit());
500 }
501 }
502}
503
504static void getDies(DWARFContext &DICtx, const AppleAcceleratorTable &Accel,
505 StringRef Name, SmallVectorImpl<DWARFDie> &Dies) {
506 for (const auto &Entry : Accel.equal_range(Key: Name)) {
507 if (std::optional<uint64_t> Off = Entry.getDIESectionOffset()) {
508 if (DWARFDie Die = DICtx.getDIEForOffset(Offset: *Off))
509 Dies.push_back(Elt: Die);
510 }
511 }
512}
513
514static DWARFDie toDie(const DWARFDebugNames::Entry &Entry,
515 DWARFContext &DICtx) {
516 std::optional<uint64_t> CUOff = Entry.getCUOffset();
517 std::optional<uint64_t> Off = Entry.getDIEUnitOffset();
518 if (!CUOff || !Off)
519 return DWARFDie();
520
521 DWARFCompileUnit *CU = DICtx.getCompileUnitForOffset(Offset: *CUOff);
522 if (!CU)
523 return DWARFDie();
524
525 if (std::optional<uint64_t> DWOId = CU->getDWOId()) {
526 // This is a skeleton unit. Look up the DIE in the DWO unit.
527 CU = DICtx.getDWOCompileUnitForHash(Hash: *DWOId);
528 if (!CU)
529 return DWARFDie();
530 }
531
532 return CU->getDIEForOffset(Offset: CU->getOffset() + *Off);
533}
534
535static void getDies(DWARFContext &DICtx, const DWARFDebugNames &Accel,
536 StringRef Name, SmallVectorImpl<DWARFDie> &Dies) {
537 for (const auto &Entry : Accel.equal_range(Key: Name)) {
538 if (DWARFDie Die = toDie(Entry, DICtx))
539 Dies.push_back(Elt: Die);
540 }
541}
542
543/// Print only DIEs that have a certain name.
544static void filterByAccelName(
545 ArrayRef<std::string> Names, DWARFContext &DICtx, raw_ostream &OS,
546 std::function<StringRef(uint64_t RegNum, bool IsEH)> GetNameForDWARFReg) {
547 SmallVector<DWARFDie, 4> Dies;
548 for (const auto &Name : Names) {
549 getDies(DICtx, Accel: DICtx.getAppleNames(), Name, Dies);
550 getDies(DICtx, Accel: DICtx.getAppleTypes(), Name, Dies);
551 getDies(DICtx, Accel: DICtx.getAppleNamespaces(), Name, Dies);
552 getDies(DICtx, Accel: DICtx.getDebugNames(), Name, Dies);
553 }
554 llvm::sort(C&: Dies);
555 Dies.erase(CS: llvm::unique(R&: Dies), CE: Dies.end());
556
557 DIDumpOptions DumpOpts = getDumpOpts(C&: DICtx);
558 DumpOpts.GetNameForDWARFReg = GetNameForDWARFReg;
559 for (DWARFDie Die : Dies)
560 Die.dump(OS, indent: 0, DumpOpts);
561}
562
563/// Print all DIEs in apple accelerator tables
564static void findAllApple(
565 DWARFContext &DICtx, raw_ostream &OS,
566 std::function<StringRef(uint64_t RegNum, bool IsEH)> GetNameForDWARFReg) {
567 MapVector<StringRef, llvm::SmallSet<DWARFDie, 2>> NameToDies;
568
569 auto PushDIEs = [&](const AppleAcceleratorTable &Accel) {
570 for (const auto &Entry : Accel.entries()) {
571 if (std::optional<uint64_t> Off = Entry.BaseEntry.getDIESectionOffset()) {
572 std::optional<StringRef> MaybeName = Entry.readName();
573 DWARFDie Die = DICtx.getDIEForOffset(Offset: *Off);
574 if (Die && MaybeName)
575 NameToDies[*MaybeName].insert(V: Die);
576 }
577 }
578 };
579
580 PushDIEs(DICtx.getAppleNames());
581 PushDIEs(DICtx.getAppleNamespaces());
582 PushDIEs(DICtx.getAppleTypes());
583
584 DIDumpOptions DumpOpts = getDumpOpts(C&: DICtx);
585 DumpOpts.GetNameForDWARFReg = GetNameForDWARFReg;
586 for (const auto &[Name, Dies] : NameToDies) {
587 OS << llvm::formatv(Fmt: "\nApple accelerator entries with name = \"{0}\":\n",
588 Vals: Name);
589 for (DWARFDie Die : Dies)
590 Die.dump(OS, indent: 0, DumpOpts);
591 }
592}
593
594/// Handle the --lookup option and dump the DIEs and line info for the given
595/// address.
596/// TODO: specified Address for --lookup option could relate for several
597/// different sections(in case not-linked object file). llvm-dwarfdump
598/// need to do something with this: extend lookup option with section
599/// information or probably display all matched entries, or something else...
600static bool lookup(ObjectFile &Obj, DWARFContext &DICtx, uint64_t Address,
601 raw_ostream &OS) {
602 auto DIEsForAddr = DICtx.getDIEsForAddress(Address: Lookup, CheckDWO: DumpNonSkeleton);
603
604 if (!DIEsForAddr)
605 return false;
606
607 DIDumpOptions DumpOpts = getDumpOpts(C&: DICtx);
608 DumpOpts.ChildRecurseDepth = 0;
609 DIEsForAddr.CompileUnit->dump(OS, DumpOpts);
610 if (DIEsForAddr.FunctionDIE) {
611 DIEsForAddr.FunctionDIE.dump(OS, indent: 2, DumpOpts);
612 if (DIEsForAddr.BlockDIE)
613 DIEsForAddr.BlockDIE.dump(OS, indent: 4, DumpOpts);
614 }
615
616 // TODO: it is neccessary to set proper SectionIndex here.
617 // object::SectionedAddress::UndefSection works for only absolute addresses.
618 if (DILineInfo LineInfo =
619 DICtx
620 .getLineInfoForAddress(
621 Address: {.Address: Lookup, .SectionIndex: object::SectionedAddress::UndefSection})
622 .value_or(u: DILineInfo())) {
623 LineInfo.dump(OS);
624 }
625
626 return true;
627}
628
629// Collect all sources referenced from the given line table, scoped to the given
630// CU compilation directory.
631static bool collectLineTableSources(const DWARFDebugLine::LineTable &LT,
632 StringRef CompDir,
633 std::vector<std::string> &Sources) {
634 bool Result = true;
635 std::optional<uint64_t> LastIndex = LT.getLastValidFileIndex();
636 for (uint64_t I = LT.hasFileAtIndex(FileIndex: 0) ? 0 : 1,
637 E = LastIndex ? *LastIndex + 1 : 0;
638 I < E; ++I) {
639 std::string Path;
640 Result &= LT.getFileNameByIndex(
641 FileIndex: I, CompDir, Kind: DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath,
642 Result&: Path);
643 Sources.push_back(x: std::move(Path));
644 }
645 return Result;
646}
647
648static bool collectObjectSources(ObjectFile &Obj, DWARFContext &DICtx,
649 const Twine &Filename, raw_ostream &OS) {
650 bool Result = true;
651 std::vector<std::string> Sources;
652
653 bool HasCompileUnits = false;
654 for (const auto &CU : DICtx.compile_units()) {
655 HasCompileUnits = true;
656 // Extract paths from the line table for this CU. This allows combining the
657 // compilation directory with the line information, in case both the include
658 // directory and file names in the line table are relative.
659 const DWARFDebugLine::LineTable *LT = DICtx.getLineTableForUnit(U: CU.get());
660 StringRef CompDir = CU->getCompilationDir();
661 if (LT) {
662 Result &= collectLineTableSources(LT: *LT, CompDir, Sources);
663 } else {
664 // Since there's no line table for this CU, collect the name from the CU
665 // itself.
666 const char *Name = CU->getUnitDIE().getShortName();
667 if (!Name) {
668 WithColor::warning()
669 << Filename << ": missing name for compilation unit\n";
670 continue;
671 }
672 SmallString<64> AbsName;
673 if (sys::path::is_relative(path: Name, style: sys::path::Style::posix) &&
674 sys::path::is_relative(path: Name, style: sys::path::Style::windows))
675 AbsName = CompDir;
676 sys::path::append(path&: AbsName, a: Name);
677 Sources.push_back(x: std::string(AbsName));
678 }
679 }
680
681 if (!HasCompileUnits) {
682 // Since there's no compile units available, walk the line tables and
683 // extract out any referenced paths.
684 DWARFDataExtractor LineData(DICtx.getDWARFObj(),
685 DICtx.getDWARFObj().getLineSection(),
686 DICtx.isLittleEndian(), 0);
687 DWARFDebugLine::SectionParser Parser(LineData, DICtx, DICtx.normal_units());
688 while (!Parser.done()) {
689 const auto RecoverableErrorHandler = [&](Error Err) {
690 Result = false;
691 WithColor::defaultErrorHandler(Err: std::move(Err));
692 };
693 void (*UnrecoverableErrorHandler)(Error Err) = error;
694
695 DWARFDebugLine::LineTable LT =
696 Parser.parseNext(RecoverableErrorHandler, UnrecoverableErrorHandler);
697 Result &= collectLineTableSources(LT, /*CompDir=*/"", Sources);
698 }
699 }
700
701 // Dedup and order the sources.
702 llvm::sort(C&: Sources);
703 Sources.erase(first: llvm::unique(R&: Sources), last: Sources.end());
704
705 for (StringRef Name : Sources)
706 OS << Name << "\n";
707 return Result;
708}
709
710static std::unique_ptr<MCRegisterInfo>
711createRegInfo(const object::ObjectFile &Obj) {
712 std::unique_ptr<MCRegisterInfo> MCRegInfo;
713 Triple TT;
714 TT.setArch(Kind: Triple::ArchType(Obj.getArch()));
715 TT.setVendor(Triple::UnknownVendor);
716 TT.setOS(Triple::UnknownOS);
717 std::string TargetLookupError;
718 const Target *TheTarget = TargetRegistry::lookupTarget(TheTriple: TT, Error&: TargetLookupError);
719 if (!TargetLookupError.empty())
720 return nullptr;
721 MCRegInfo.reset(p: TheTarget->createMCRegInfo(TT));
722 return MCRegInfo;
723}
724
725static bool dumpObjectFile(ObjectFile &Obj, DWARFContext &DICtx,
726 const Twine &Filename, raw_ostream &OS) {
727
728 auto MCRegInfo = createRegInfo(Obj);
729 if (!MCRegInfo)
730 logAllUnhandledErrors(E: createStringError(EC: inconvertibleErrorCode(),
731 S: "Error in creating MCRegInfo"),
732 OS&: errs(), ErrorBanner: Filename + ": ");
733
734 auto GetRegName = [&MCRegInfo](uint64_t DwarfRegNum, bool IsEH) -> StringRef {
735 if (!MCRegInfo)
736 return {};
737 if (std::optional<MCRegister> LLVMRegNum =
738 MCRegInfo->getLLVMRegNum(RegNum: DwarfRegNum, isEH: IsEH))
739 if (const char *RegName = MCRegInfo->getName(RegNo: *LLVMRegNum))
740 return StringRef(RegName);
741 return {};
742 };
743
744 // The UUID dump already contains all the same information.
745 if (!(DumpType & DIDT_UUID) || DumpType == DIDT_All)
746 OS << Filename << ":\tfile format " << Obj.getFileFormatName() << '\n';
747
748 // Handle the --lookup option.
749 if (Lookup)
750 return lookup(Obj, DICtx, Address: Lookup, OS);
751
752 // Handle the --name option.
753 if (!Name.empty()) {
754 StringSet<> Names;
755 for (const auto &name : Name)
756 Names.insert(key: (IgnoreCase && !UseRegex) ? StringRef(name).lower() : name);
757
758 filterByName(Names, CUs: DICtx.normal_units(), OS, GetNameForDWARFReg: GetRegName);
759 filterByName(Names, CUs: DICtx.dwo_units(), OS, GetNameForDWARFReg: GetRegName);
760 return true;
761 }
762
763 // Handle the --find option and lower it to --debug-info=<offset>.
764 if (!Find.empty()) {
765 filterByAccelName(Names: Find, DICtx, OS, GetNameForDWARFReg: GetRegName);
766 return true;
767 }
768
769 // Handle the --find-all-apple option and lower it to --debug-info=<offset>.
770 if (FindAllApple) {
771 findAllApple(DICtx, OS, GetNameForDWARFReg: GetRegName);
772 return true;
773 }
774
775 // Dump the complete DWARF structure.
776 auto DumpOpts = getDumpOpts(C&: DICtx);
777 DumpOpts.GetNameForDWARFReg = GetRegName;
778 DICtx.dump(OS, DumpOpts, DumpOffsets);
779 return true;
780}
781
782static bool verifyObjectFile(ObjectFile &Obj, DWARFContext &DICtx,
783 const Twine &Filename, raw_ostream &OS) {
784 // Verify the DWARF and exit with non-zero exit status if verification
785 // fails.
786 raw_ostream &stream = Quiet ? nulls() : OS;
787 stream << "Verifying " << Filename.str() << ":\tfile format "
788 << Obj.getFileFormatName() << "\n";
789 bool Result = DICtx.verify(OS&: stream, DumpOpts: getDumpOpts(C&: DICtx));
790 if (Result)
791 stream << "No errors.\n";
792 else
793 stream << "Errors detected.\n";
794 return Result;
795}
796
797static bool handleBuffer(StringRef Filename, MemoryBufferRef Buffer,
798 HandlerFn HandleObj, raw_ostream &OS);
799
800static bool handleArchive(StringRef Filename, Archive &Arch,
801 HandlerFn HandleObj, raw_ostream &OS) {
802 bool Result = true;
803 Error Err = Error::success();
804 for (const auto &Child : Arch.children(Err)) {
805 auto BuffOrErr = Child.getMemoryBufferRef();
806 error(Prefix: Filename, Err: BuffOrErr.takeError());
807 auto NameOrErr = Child.getName();
808 error(Prefix: Filename, Err: NameOrErr.takeError());
809 std::string Name = (Filename + "(" + NameOrErr.get() + ")").str();
810 Result &= handleBuffer(Filename: Name, Buffer: BuffOrErr.get(), HandleObj, OS);
811 }
812 error(Prefix: Filename, Err: std::move(Err));
813
814 return Result;
815}
816
817static bool handleBuffer(StringRef Filename, MemoryBufferRef Buffer,
818 HandlerFn HandleObj, raw_ostream &OS) {
819 Expected<std::unique_ptr<Binary>> BinOrErr = object::createBinary(Source: Buffer);
820 error(Prefix: Filename, Err: BinOrErr.takeError());
821
822 bool Result = true;
823 auto RecoverableErrorHandler = [&](Error E) {
824 Result = false;
825 WithColor::defaultErrorHandler(Err: std::move(E));
826 };
827 if (auto *Obj = dyn_cast<ObjectFile>(Val: BinOrErr->get())) {
828 if (filterArch(Obj&: *Obj)) {
829 std::unique_ptr<DWARFContext> DICtx = DWARFContext::create(
830 Obj: *Obj, RelocAction: DWARFContext::ProcessDebugRelocations::Process, L: nullptr, DWPName: "",
831 RecoverableErrorHandler, WarningHandler: WithColor::defaultWarningHandler,
832 /*ThreadSafe=*/true);
833 DICtx->setParseCUTUIndexManually(ManuallyGenerateUnitIndex);
834 if (!HandleObj(*Obj, *DICtx, Filename, OS))
835 Result = false;
836 }
837 } else if (auto *Fat = dyn_cast<MachOUniversalBinary>(Val: BinOrErr->get()))
838 for (auto &ObjForArch : Fat->objects()) {
839 std::string ObjName =
840 (Filename + "(" + ObjForArch.getArchFlagName() + ")").str();
841 if (auto MachOOrErr = ObjForArch.getAsObjectFile()) {
842 auto &Obj = **MachOOrErr;
843 if (filterArch(Obj)) {
844 std::unique_ptr<DWARFContext> DICtx = DWARFContext::create(
845 Obj, RelocAction: DWARFContext::ProcessDebugRelocations::Process, L: nullptr, DWPName: "",
846 RecoverableErrorHandler);
847 if (!HandleObj(Obj, *DICtx, ObjName, OS))
848 Result = false;
849 }
850 continue;
851 } else
852 consumeError(Err: MachOOrErr.takeError());
853 if (auto ArchiveOrErr = ObjForArch.getAsArchive()) {
854 error(Prefix: ObjName, Err: ArchiveOrErr.takeError());
855 if (!handleArchive(Filename: ObjName, Arch&: *ArchiveOrErr.get(), HandleObj, OS))
856 Result = false;
857 continue;
858 } else
859 consumeError(Err: ArchiveOrErr.takeError());
860 }
861 else if (auto *Arch = dyn_cast<Archive>(Val: BinOrErr->get()))
862 Result = handleArchive(Filename, Arch&: *Arch, HandleObj, OS);
863 return Result;
864}
865
866static bool handleFile(StringRef Filename, HandlerFn HandleObj,
867 raw_ostream &OS) {
868 ErrorOr<std::unique_ptr<MemoryBuffer>> BuffOrErr =
869 MemoryBuffer::getFileOrSTDIN(Filename);
870 error(Prefix: Filename, EC: BuffOrErr.getError());
871 std::unique_ptr<MemoryBuffer> Buffer = std::move(BuffOrErr.get());
872 return handleBuffer(Filename, Buffer: *Buffer, HandleObj, OS);
873}
874
875int main(int argc, char **argv) {
876 InitLLVM X(argc, argv);
877
878 // Flush outs() when printing to errs(). This avoids interleaving output
879 // between the two.
880 errs().tie(TieTo: &outs());
881
882 llvm::InitializeAllTargetInfos();
883 llvm::InitializeAllTargetMCs();
884
885 HideUnrelatedOptions(
886 Categories: {&DwarfDumpCategory, &SectionCategory, &getColorCategory()});
887 cl::ParseCommandLineOptions(
888 argc, argv,
889 Overview: "pretty-print DWARF debug information in object files"
890 " and debug info archives.\n");
891
892 // FIXME: Audit interactions between these two options and make them
893 // compatible.
894 if (Diff && Verbose) {
895 WithColor::error() << "incompatible arguments: specifying both -diff and "
896 "-verbose is currently not supported";
897 return 1;
898 }
899 // -error-detail and -json-summary-file both imply -verify
900 if (ErrorDetails != Unspecified || !JsonErrSummaryFile.empty()) {
901 Verify = true;
902 }
903
904 std::error_code EC;
905 ToolOutputFile OutputFile(OutputFilename, EC, sys::fs::OF_TextWithCRLF);
906 error(Prefix: "unable to open output file " + OutputFilename, EC);
907 // Don't remove output file if we exit with an error.
908 OutputFile.keep();
909
910 bool OffsetRequested = false;
911
912 // Defaults to dumping only debug_info, unless: A) verbose mode is specified,
913 // in which case all sections are dumped, or B) a specific section is
914 // requested.
915#define HANDLE_DWARF_SECTION(ENUM_NAME, ELF_NAME, CMDLINE_NAME, OPTION) \
916 if (Dump##ENUM_NAME.IsRequested) { \
917 DumpType |= DIDT_##ENUM_NAME; \
918 if (Dump##ENUM_NAME.HasValue) { \
919 DumpOffsets[DIDT_ID_##ENUM_NAME] = Dump##ENUM_NAME.Val; \
920 OffsetRequested = true; \
921 } \
922 }
923#include "llvm/BinaryFormat/Dwarf.def"
924#undef HANDLE_DWARF_SECTION
925 if (DumpUUID)
926 DumpType |= DIDT_UUID;
927 if (DumpAll)
928 DumpType = DIDT_All;
929 if (DumpType == DIDT_Null && !ShowVariableCoverage &&
930 CoverageBaseline.empty() && BitcodeFile.empty()) {
931 if (Verbose || Verify)
932 DumpType = DIDT_All;
933 else
934 DumpType = DIDT_DebugInfo;
935 }
936
937 // Unless dumping a specific DIE, default to --show-children.
938 if (!ShowChildren && !Verify && !OffsetRequested && Name.empty() &&
939 Find.empty() && !FindAllApple)
940 ShowChildren = true;
941
942 // Defaults to a.out if no filenames specified.
943 if (InputFilenames.empty())
944 InputFilenames.push_back(value: "a.out");
945
946 // Expand any .dSYM bundles to the individual object files contained therein.
947 std::vector<std::string> Objects;
948 for (const auto &F : InputFilenames) {
949 if (auto DsymObjectsOrErr = MachOObjectFile::findDsymObjectMembers(Path: F)) {
950 if (DsymObjectsOrErr->empty())
951 Objects.push_back(x: F);
952 else
953 llvm::append_range(C&: Objects, R&: *DsymObjectsOrErr);
954 } else {
955 error(Err: DsymObjectsOrErr.takeError());
956 }
957 }
958
959 bool Success = true;
960 if (Verify) {
961 if (!VerifyNumThreads)
962 parallel::strategy =
963 hardware_concurrency(ThreadCount: hardware_concurrency().compute_thread_count());
964 else
965 parallel::strategy = hardware_concurrency(ThreadCount: VerifyNumThreads);
966 for (StringRef Object : Objects)
967 Success &= handleFile(Filename: Object, HandleObj: verifyObjectFile, OS&: OutputFile.os());
968 } else if (Statistics) {
969 for (StringRef Object : Objects)
970 Success &= handleFile(Filename: Object, HandleObj: collectStatsForObjectFile, OS&: OutputFile.os());
971 } else if (ShowSectionSizes) {
972 for (StringRef Object : Objects)
973 Success &= handleFile(Filename: Object, HandleObj: collectObjectSectionSizes, OS&: OutputFile.os());
974 } else if (ShowSources) {
975 for (StringRef Object : Objects)
976 Success &= handleFile(Filename: Object, HandleObj: collectObjectSources, OS&: OutputFile.os());
977 } else {
978 for (StringRef Object : Objects)
979 Success &= handleFile(Filename: Object, HandleObj: dumpObjectFile, OS&: OutputFile.os());
980 }
981
982 if (!CoverageBaseline.empty()) {
983 auto handleBaseline = [&](ObjectFile &BaselineObj,
984 DWARFContext &BaselineCtx, const Twine &Filename,
985 raw_ostream &OS) {
986 auto showCoverage = [&](ObjectFile &Obj, DWARFContext &DICtx,
987 const Twine &Filename, raw_ostream &OS) {
988 return showVariableCoverage(Obj, DICtx, BaselineObj: &BaselineObj, BaselineCtx: &BaselineCtx,
989 BitcodeFile, CombineInstances, OS);
990 };
991 for (StringRef Object : Objects)
992 Success &= handleFile(Filename: Object, HandleObj: showCoverage, OS&: OutputFile.os());
993 return true;
994 };
995 Success &= handleFile(Filename: CoverageBaseline, HandleObj: handleBaseline, OS&: OutputFile.os());
996 } else if (ShowVariableCoverage || !BitcodeFile.empty()) {
997 auto showCoverage = [&](ObjectFile &Obj, DWARFContext &DICtx,
998 const Twine &Filename, raw_ostream &OS) {
999 return showVariableCoverage(Obj, DICtx, BaselineObj: nullptr, BaselineCtx: nullptr, BitcodeFile,
1000 CombineInstances, OS);
1001 };
1002 for (StringRef Object : Objects)
1003 Success &= handleFile(Filename: Object, HandleObj: showCoverage, OS&: OutputFile.os());
1004 }
1005
1006 return Success ? EXIT_SUCCESS : EXIT_FAILURE;
1007}
1008