//===-- llvm-dwarfdump.cpp - Debug info dumping utility for llvm ----------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This program is a utility that works like "dwarfdump". // //===----------------------------------------------------------------------===// #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/StringSet.h" #include "llvm/ADT/Triple.h" #include "llvm/DebugInfo/DIContext.h" #include "llvm/DebugInfo/DWARF/DWARFContext.h" #include "llvm/Object/Archive.h" #include "llvm/Object/MachOUniversal.h" #include "llvm/Object/ObjectFile.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" #include "llvm/Support/Format.h" #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/Path.h" #include "llvm/Support/PrettyStackTrace.h" #include "llvm/Support/Regex.h" #include "llvm/Support/Signals.h" #include "llvm/Support/TargetSelect.h" #include "llvm/Support/ToolOutputFile.h" #include "llvm/Support/raw_ostream.h" using namespace llvm; using namespace object; /// Parser for options that take an optional offest argument. /// @{ struct OffsetOption { uint64_t Val = 0; bool HasValue = false; bool IsRequested = false; }; namespace llvm { namespace cl { template <> class parser final : public basic_parser { public: parser(Option &O) : basic_parser(O) {} /// Return true on error. bool parse(Option &O, StringRef ArgName, StringRef Arg, OffsetOption &Val) { if (Arg == "") { Val.Val = 0; Val.HasValue = false; Val.IsRequested = true; return false; } if (Arg.getAsInteger(0, Val.Val)) return O.error("'" + Arg + "' value invalid for integer argument!"); Val.HasValue = true; Val.IsRequested = true; return false; } enum ValueExpected getValueExpectedFlagDefault() const { return ValueOptional; } void printOptionInfo(const Option &O, size_t GlobalWidth) const { outs() << " -" << O.ArgStr; Option::printHelpStr(O.HelpStr, GlobalWidth, getOptionWidth(O)); } void printOptionDiff(const Option &O, OffsetOption V, OptVal Default, size_t GlobalWidth) const { printOptionName(O, GlobalWidth); outs() << "[=offset]"; } // An out-of-line virtual method to provide a 'home' for this class. void anchor() override {}; }; } // cl } // llvm /// @} /// Command line options. /// @{ namespace { using namespace cl; OptionCategory DwarfDumpCategory("Specific Options"); static opt Help("h", desc("Alias for -help"), Hidden, cat(DwarfDumpCategory)); static list InputFilenames(Positional, desc(""), ZeroOrMore, cat(DwarfDumpCategory)); cl::OptionCategory SectionCategory("Section-specific Dump Options", "These control which sections are dumped. " "Where applicable these parameters take an " "optional = argument to dump only " "the entry at the specified offset."); static opt DumpAll("all", desc("Dump all debug info sections"), cat(SectionCategory)); static alias DumpAllAlias("a", desc("Alias for -all"), aliasopt(DumpAll)); // Options for dumping specific sections. static unsigned DumpType = DIDT_Null; static std::array, (unsigned)DIDT_ID_Count> DumpOffsets; #define HANDLE_DWARF_SECTION(ENUM_NAME, ELF_NAME, CMDLINE_NAME) \ static opt Dump##ENUM_NAME( \ CMDLINE_NAME, desc("Dump the " ELF_NAME " section"), \ cat(SectionCategory)); #include "llvm/BinaryFormat/Dwarf.def" #undef HANDLE_DWARF_SECTION static alias DumpDebugFrameAlias("eh-frame", desc("Alias for -debug-frame"), NotHidden, cat(SectionCategory), aliasopt(DumpDebugFrame)); static list ArchFilters("arch", desc("Dump debug information for the specified CPU " "architecture only. Architectures may be specified by " "name or by number. This option can be specified " "multiple times, once for each desired architecture."), cat(DwarfDumpCategory)); static opt Diff("diff", desc("Emit diff-friendly output by omitting offsets and addresses."), cat(DwarfDumpCategory)); static list Find("find", desc("Search for the exact match for in the accelerator tables " "and print the matching debug information entries. When no " "accelerator tables are available, the slower but more complete " "-name option can be used instead."), value_desc("name"), cat(DwarfDumpCategory)); static alias FindAlias("f", desc("Alias for -find."), aliasopt(Find)); static opt IgnoreCase("ignore-case", desc("Ignore case distinctions in when searching by name."), value_desc("i"), cat(DwarfDumpCategory)); static alias IgnoreCaseAlias("i", desc("Alias for -ignore-case."), aliasopt(IgnoreCase)); static list Name( "name", desc("Find and print all debug info entries whose name (DW_AT_name " "attribute) matches the exact text in . When used with the " "the -regex option is interpreted as a regular expression."), value_desc("pattern"), cat(DwarfDumpCategory)); static alias NameAlias("n", desc("Alias for -name"), aliasopt(Name)); static opt Lookup("lookup", desc("Lookup
in the debug information and print out any" "available file, function, block and line table details."), value_desc("address"), cat(DwarfDumpCategory)); static opt OutputFilename("out-file", cl::init(""), cl::desc("Redirect output to the specified file."), cl::value_desc("filename")); static alias OutputFilenameAlias("o", desc("Alias for -out-file."), aliasopt(OutputFilename), cat(DwarfDumpCategory)); static opt UseRegex("regex", desc("Treat any strings as regular expressions when " "searching instead of just as an exact string match."), cat(DwarfDumpCategory)); static alias RegexAlias("x", desc("Alias for -regex"), aliasopt(UseRegex)); static opt ShowChildren("show-children", desc("Show a debug info entry's children when selectively " "printing with the = option."), cat(DwarfDumpCategory)); static alias ShowChildrenAlias("c", desc("Alias for -show-children."), aliasopt(ShowChildren)); static opt ShowParents("show-parents", desc("Show a debug info entry's parents when selectively " "printing with the = option."), cat(DwarfDumpCategory)); static alias ShowParentsAlias("p", desc("Alias for -show-parents."), aliasopt(ShowParents)); static opt ShowForm("show-form", desc("Show DWARF form types after the DWARF attribute types."), cat(DwarfDumpCategory)); static alias ShowFormAlias("F", desc("Alias for -show-form."), aliasopt(ShowForm), cat(DwarfDumpCategory)); static opt RecurseDepth( "recurse-depth", desc("Only recurse to a depth of N when displaying debug info entries."), cat(DwarfDumpCategory), init(-1U), value_desc("N")); static alias RecurseDepthAlias("r", desc("Alias for -recurse-depth."), aliasopt(RecurseDepth)); static opt SummarizeTypes("summarize-types", desc("Abbreviate the description of type unit entries."), cat(DwarfDumpCategory)); static cl::opt Statistics("statistics", cl::desc("Emit JSON-formatted debug info quality metrics."), cat(DwarfDumpCategory)); static opt Verify("verify", desc("Verify the DWARF debug info."), cat(DwarfDumpCategory)); static opt Quiet("quiet", desc("Use with -verify to not emit to STDOUT."), cat(DwarfDumpCategory)); static opt DumpUUID("uuid", desc("Show the UUID for each architecture."), cat(DwarfDumpCategory)); static alias DumpUUIDAlias("u", desc("Alias for -uuid."), aliasopt(DumpUUID)); static opt Verbose("verbose", desc("Print more low-level encoding details."), cat(DwarfDumpCategory)); static alias VerboseAlias("v", desc("Alias for -verbose."), aliasopt(Verbose), cat(DwarfDumpCategory)); } // namespace /// @} //===----------------------------------------------------------------------===// static void error(StringRef Prefix, std::error_code EC) { if (!EC) return; errs() << Prefix << ": " << EC.message() << "\n"; exit(1); } static DIDumpOptions getDumpOpts() { DIDumpOptions DumpOpts; DumpOpts.DumpType = DumpType; DumpOpts.RecurseDepth = RecurseDepth; DumpOpts.ShowAddresses = !Diff; DumpOpts.ShowChildren = ShowChildren; DumpOpts.ShowParents = ShowParents; DumpOpts.ShowForm = ShowForm; DumpOpts.SummarizeTypes = SummarizeTypes; DumpOpts.Verbose = Verbose; // In -verify mode, print DIEs without children in error messages. if (Verify) return DumpOpts.noImplicitRecursion(); return DumpOpts; } static uint32_t getCPUType(MachOObjectFile &MachO) { if (MachO.is64Bit()) return MachO.getHeader64().cputype; else return MachO.getHeader().cputype; } /// Return true if the object file has not been filtered by an --arch option. static bool filterArch(ObjectFile &Obj) { if (ArchFilters.empty()) return true; if (auto *MachO = dyn_cast(&Obj)) { std::string ObjArch = Triple::getArchTypeName(MachO->getArchTriple().getArch()); for (auto Arch : ArchFilters) { // Match name. if (Arch == ObjArch) return true; // Match architecture number. unsigned Value; if (!StringRef(Arch).getAsInteger(0, Value)) if (Value == getCPUType(*MachO)) return true; } } return false; } using HandlerFn = std::function; /// Print only DIEs that have a certain name. static void filterByName(const StringSet<> &Names, DWARFContext::cu_iterator_range CUs, raw_ostream &OS) { for (const auto &CU : CUs) for (const auto &Entry : CU->dies()) { DWARFDie Die = {CU.get(), &Entry}; if (const char *NamePtr = Die.getName(DINameKind::ShortName)) { std::string Name = (IgnoreCase && !UseRegex) ? StringRef(NamePtr).lower() : NamePtr; // Match regular expression. if (UseRegex) for (auto Pattern : Names.keys()) { Regex RE(Pattern, IgnoreCase ? Regex::IgnoreCase : Regex::NoFlags); std::string Error; if (!RE.isValid(Error)) { errs() << "error in regular expression: " << Error << "\n"; exit(1); } if (RE.match(Name)) Die.dump(OS, 0, getDumpOpts()); } // Match full text. else if (Names.count(Name)) Die.dump(OS, 0, getDumpOpts()); } } } /// Handle the --lookup option and dump the DIEs and line info for the given /// address. static bool lookup(DWARFContext &DICtx, uint64_t Address, raw_ostream &OS) { auto DIEsForAddr = DICtx.getDIEsForAddress(Lookup); if (!DIEsForAddr) return false; DIDumpOptions DumpOpts = getDumpOpts(); DumpOpts.RecurseDepth = 0; DIEsForAddr.CompileUnit->dump(OS, DumpOpts); if (DIEsForAddr.FunctionDIE) { DIEsForAddr.FunctionDIE.dump(OS, 2, DumpOpts); if (DIEsForAddr.BlockDIE) DIEsForAddr.BlockDIE.dump(OS, 4, DumpOpts); } if (DILineInfo LineInfo = DICtx.getLineInfoForAddress(Lookup)) LineInfo.dump(OS); return true; } bool collectStatsForObjectFile(ObjectFile &Obj, DWARFContext &DICtx, Twine Filename, raw_ostream &OS); static bool dumpObjectFile(ObjectFile &Obj, DWARFContext &DICtx, Twine Filename, raw_ostream &OS) { logAllUnhandledErrors(DICtx.loadRegisterInfo(Obj), errs(), Filename.str() + ": "); // The UUID dump already contains all the same information. if (!(DumpType & DIDT_UUID) || DumpType == DIDT_All) OS << Filename << ":\tfile format " << Obj.getFileFormatName() << '\n'; // Handle the --lookup option. if (Lookup) return lookup(DICtx, Lookup, OS); // Handle the --name option. if (!Name.empty()) { StringSet<> Names; for (auto name : Name) Names.insert((IgnoreCase && !UseRegex) ? StringRef(name).lower() : name); filterByName(Names, DICtx.compile_units(), OS); filterByName(Names, DICtx.dwo_compile_units(), OS); return true; } // Handle the --find option and lower it to --debug-info=. if (!Find.empty()) { DumpOffsets[DIDT_ID_DebugInfo] = [&]() -> llvm::Optional { for (auto Name : Find) { auto find = [&](const DWARFAcceleratorTable &Accel) -> llvm::Optional { for (auto Entry : Accel.equal_range(Name)) for (auto Atom : Entry) if (auto Offset = Atom.getAsSectionOffset()) return Offset; return None; }; if (auto Offset = find(DICtx.getAppleNames())) return DumpOffsets[DIDT_ID_DebugInfo] = *Offset; if (auto Offset = find(DICtx.getAppleTypes())) return DumpOffsets[DIDT_ID_DebugInfo] = *Offset; if (auto Offset = find(DICtx.getAppleNamespaces())) return DumpOffsets[DIDT_ID_DebugInfo] = *Offset; } return None; }(); // Early exit if --find was specified but the current file doesn't have it. if (!DumpOffsets[DIDT_ID_DebugInfo]) return true; } // Dump the complete DWARF structure. DICtx.dump(OS, getDumpOpts(), DumpOffsets); return true; } static bool verifyObjectFile(ObjectFile &Obj, DWARFContext &DICtx, Twine Filename, raw_ostream &OS) { // Verify the DWARF and exit with non-zero exit status if verification // fails. raw_ostream &stream = Quiet ? nulls() : OS; stream << "Verifying " << Filename.str() << ":\tfile format " << Obj.getFileFormatName() << "\n"; bool Result = DICtx.verify(stream, getDumpOpts()); if (Result) stream << "No errors.\n"; else stream << "Errors detected.\n"; return Result; } static bool handleBuffer(StringRef Filename, MemoryBufferRef Buffer, HandlerFn HandleObj, raw_ostream &OS); static bool handleArchive(StringRef Filename, Archive &Arch, HandlerFn HandleObj, raw_ostream &OS) { bool Result = true; Error Err = Error::success(); for (auto Child : Arch.children(Err)) { auto BuffOrErr = Child.getMemoryBufferRef(); error(Filename, errorToErrorCode(BuffOrErr.takeError())); auto NameOrErr = Child.getName(); error(Filename, errorToErrorCode(NameOrErr.takeError())); std::string Name = (Filename + "(" + NameOrErr.get() + ")").str(); Result &= handleBuffer(Name, BuffOrErr.get(), HandleObj, OS); } error(Filename, errorToErrorCode(std::move(Err))); return Result; } static bool handleBuffer(StringRef Filename, MemoryBufferRef Buffer, HandlerFn HandleObj, raw_ostream &OS) { Expected> BinOrErr = object::createBinary(Buffer); error(Filename, errorToErrorCode(BinOrErr.takeError())); bool Result = true; if (auto *Obj = dyn_cast(BinOrErr->get())) { if (filterArch(*Obj)) { std::unique_ptr DICtx = DWARFContext::create(*Obj); Result = HandleObj(*Obj, *DICtx, Filename, OS); } } else if (auto *Fat = dyn_cast(BinOrErr->get())) for (auto &ObjForArch : Fat->objects()) { std::string ObjName = (Filename + "(" + ObjForArch.getArchFlagName() + ")").str(); if (auto MachOOrErr = ObjForArch.getAsObjectFile()) { auto &Obj = **MachOOrErr; if (filterArch(Obj)) { std::unique_ptr DICtx = DWARFContext::create(Obj); Result &= HandleObj(Obj, *DICtx, ObjName, OS); } continue; } else consumeError(MachOOrErr.takeError()); if (auto ArchiveOrErr = ObjForArch.getAsArchive()) { error(ObjName, errorToErrorCode(ArchiveOrErr.takeError())); Result &= handleArchive(ObjName, *ArchiveOrErr.get(), HandleObj, OS); continue; } else consumeError(ArchiveOrErr.takeError()); } else if (auto *Arch = dyn_cast(BinOrErr->get())) Result = handleArchive(Filename, *Arch, HandleObj, OS); return Result; } static bool handleFile(StringRef Filename, HandlerFn HandleObj, raw_ostream &OS) { ErrorOr> BuffOrErr = MemoryBuffer::getFileOrSTDIN(Filename); error(Filename, BuffOrErr.getError()); std::unique_ptr Buffer = std::move(BuffOrErr.get()); return handleBuffer(Filename, *Buffer, HandleObj, OS); } /// If the input path is a .dSYM bundle (as created by the dsymutil tool), /// replace it with individual entries for each of the object files inside the /// bundle otherwise return the input path. static std::vector expandBundle(const std::string &InputPath) { std::vector BundlePaths; SmallString<256> BundlePath(InputPath); // Manually open up the bundle to avoid introducing additional dependencies. if (sys::fs::is_directory(BundlePath) && sys::path::extension(BundlePath) == ".dSYM") { std::error_code EC; sys::path::append(BundlePath, "Contents", "Resources", "DWARF"); for (sys::fs::directory_iterator Dir(BundlePath, EC), DirEnd; Dir != DirEnd && !EC; Dir.increment(EC)) { const std::string &Path = Dir->path(); sys::fs::file_status Status; EC = sys::fs::status(Path, Status); error(Path, EC); switch (Status.type()) { case sys::fs::file_type::regular_file: case sys::fs::file_type::symlink_file: case sys::fs::file_type::type_unknown: BundlePaths.push_back(Path); break; default: /*ignore*/; } } error(BundlePath, EC); } if (!BundlePaths.size()) BundlePaths.push_back(InputPath); return BundlePaths; } int main(int argc, char **argv) { // Print a stack trace if we signal out. sys::PrintStackTraceOnErrorSignal(argv[0]); PrettyStackTraceProgram X(argc, argv); llvm_shutdown_obj Y; // Call llvm_shutdown() on exit. llvm::InitializeAllTargetInfos(); llvm::InitializeAllTargetMCs(); HideUnrelatedOptions({&DwarfDumpCategory, &SectionCategory}); cl::ParseCommandLineOptions( argc, argv, "pretty-print DWARF debug information in object files" " and debug info archives.\n"); if (Help) { PrintHelpMessage(/*Hidden =*/false, /*Categorized =*/true); return 0; } std::unique_ptr OutputFile; if (!OutputFilename.empty()) { std::error_code EC; OutputFile = llvm::make_unique(OutputFilename, EC, sys::fs::F_None); error("Unable to open output file" + OutputFilename, EC); // Don't remove output file if we exit with an error. OutputFile->keep(); } raw_ostream &OS = OutputFile ? OutputFile->os() : outs(); bool OffsetRequested = false; // Defaults to dumping all sections, unless brief mode is specified in which // case only the .debug_info section in dumped. #define HANDLE_DWARF_SECTION(ENUM_NAME, ELF_NAME, CMDLINE_NAME) \ if (Dump##ENUM_NAME.IsRequested) { \ DumpType |= DIDT_##ENUM_NAME; \ if (Dump##ENUM_NAME.HasValue) { \ DumpOffsets[DIDT_ID_##ENUM_NAME] = Dump##ENUM_NAME.Val; \ OffsetRequested = true; \ } \ } #include "llvm/BinaryFormat/Dwarf.def" #undef HANDLE_DWARF_SECTION if (DumpUUID) DumpType |= DIDT_UUID; if (DumpAll) DumpType = DIDT_All; if (DumpType == DIDT_Null) { if (Verbose) DumpType = DIDT_All; else DumpType = DIDT_DebugInfo; } // Unless dumping a specific DIE, default to --show-children. if (!ShowChildren && !Verify && !OffsetRequested && Name.empty() && Find.empty()) ShowChildren = true; // Defaults to a.out if no filenames specified. if (InputFilenames.size() == 0) InputFilenames.push_back("a.out"); // Expand any .dSYM bundles to the individual object files contained therein. std::vector Objects; for (const auto &F : InputFilenames) { auto Objs = expandBundle(F); Objects.insert(Objects.end(), Objs.begin(), Objs.end()); } if (Verify) { // If we encountered errors during verify, exit with a non-zero exit status. if (!std::all_of(Objects.begin(), Objects.end(), [&](std::string Object) { return handleFile(Object, verifyObjectFile, OS); })) exit(1); } else if (Statistics) for (auto Object : Objects) handleFile(Object, collectStatsForObjectFile, OS); else for (auto Object : Objects) handleFile(Object, dumpObjectFile, OS); return EXIT_SUCCESS; }