Eric Christopher | d7169e9 | 2012-10-16 23:46:21 +0000 | [diff] [blame^] | 1 | //===-- llvm-dwarfdump.cpp - Debug info dumping utility for llvm ----------===// |
Benjamin Kramer | 72c0d7f | 2011-09-13 19:42:23 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This program is a utility that works like "dwarfdump". |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/ADT/OwningPtr.h" |
| 15 | #include "llvm/ADT/Triple.h" |
| 16 | #include "llvm/ADT/STLExtras.h" |
| 17 | #include "llvm/Object/ObjectFile.h" |
| 18 | #include "llvm/DebugInfo/DIContext.h" |
| 19 | #include "llvm/Support/CommandLine.h" |
| 20 | #include "llvm/Support/Debug.h" |
| 21 | #include "llvm/Support/Format.h" |
| 22 | #include "llvm/Support/ManagedStatic.h" |
| 23 | #include "llvm/Support/MemoryBuffer.h" |
| 24 | #include "llvm/Support/MemoryObject.h" |
| 25 | #include "llvm/Support/PrettyStackTrace.h" |
| 26 | #include "llvm/Support/Signals.h" |
| 27 | #include "llvm/Support/raw_ostream.h" |
| 28 | #include "llvm/Support/system_error.h" |
| 29 | #include <algorithm> |
| 30 | #include <cstring> |
| 31 | using namespace llvm; |
| 32 | using namespace object; |
| 33 | |
| 34 | static cl::list<std::string> |
| 35 | InputFilenames(cl::Positional, cl::desc("<input object files>"), |
| 36 | cl::ZeroOrMore); |
| 37 | |
Benjamin Kramer | 6b3ae46 | 2011-09-15 21:17:40 +0000 | [diff] [blame] | 38 | static cl::opt<unsigned long long> |
| 39 | Address("address", cl::init(-1ULL), |
| 40 | cl::desc("Print line information for a given address")); |
| 41 | |
Alexey Samsonov | 3e25c4a | 2012-07-02 05:54:45 +0000 | [diff] [blame] | 42 | static cl::opt<bool> |
| 43 | PrintFunctions("functions", cl::init(false), |
| 44 | cl::desc("Print function names as well as line information " |
| 45 | "for a given address")); |
| 46 | |
Alexey Samsonov | 5eae90d | 2012-09-04 08:12:33 +0000 | [diff] [blame] | 47 | static cl::opt<bool> |
| 48 | PrintInlining("inlining", cl::init(false), |
| 49 | cl::desc("Print all inlined frames for a given address")); |
| 50 | |
| 51 | static void PrintDILineInfo(DILineInfo dli) { |
| 52 | if (PrintFunctions) |
| 53 | outs() << (dli.getFunctionName() ? dli.getFunctionName() : "<unknown>") |
| 54 | << "\n"; |
| 55 | outs() << (dli.getFileName() ? dli.getFileName() : "<unknown>") << ':' |
| 56 | << dli.getLine() << ':' << dli.getColumn() << '\n'; |
| 57 | } |
| 58 | |
Benjamin Kramer | 72c0d7f | 2011-09-13 19:42:23 +0000 | [diff] [blame] | 59 | static void DumpInput(const StringRef &Filename) { |
| 60 | OwningPtr<MemoryBuffer> Buff; |
| 61 | |
| 62 | if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename, Buff)) { |
| 63 | errs() << Filename << ": " << ec.message() << "\n"; |
| 64 | return; |
| 65 | } |
| 66 | |
| 67 | OwningPtr<ObjectFile> Obj(ObjectFile::createObjectFile(Buff.take())); |
| 68 | |
Benjamin Kramer | 72c0d7f | 2011-09-13 19:42:23 +0000 | [diff] [blame] | 69 | StringRef DebugInfoSection; |
| 70 | StringRef DebugAbbrevSection; |
| 71 | StringRef DebugLineSection; |
Benjamin Kramer | 358f4fd | 2011-09-14 01:09:52 +0000 | [diff] [blame] | 72 | StringRef DebugArangesSection; |
Benjamin Kramer | 34f864f | 2011-09-15 16:57:13 +0000 | [diff] [blame] | 73 | StringRef DebugStringSection; |
Alexey Samsonov | eceb5b9 | 2012-08-27 07:17:47 +0000 | [diff] [blame] | 74 | StringRef DebugRangesSection; |
Benjamin Kramer | 72c0d7f | 2011-09-13 19:42:23 +0000 | [diff] [blame] | 75 | |
| 76 | error_code ec; |
Michael J. Spencer | 2099039 | 2011-10-07 19:52:41 +0000 | [diff] [blame] | 77 | for (section_iterator i = Obj->begin_sections(), |
| 78 | e = Obj->end_sections(); |
| 79 | i != e; i.increment(ec)) { |
Benjamin Kramer | 72c0d7f | 2011-09-13 19:42:23 +0000 | [diff] [blame] | 80 | StringRef name; |
| 81 | i->getName(name); |
| 82 | StringRef data; |
| 83 | i->getContents(data); |
Benjamin Kramer | 1c0b24f | 2011-09-14 17:28:13 +0000 | [diff] [blame] | 84 | |
| 85 | if (name.startswith("__DWARF,")) |
| 86 | name = name.substr(8); // Skip "__DWARF," prefix. |
| 87 | name = name.substr(name.find_first_not_of("._")); // Skip . and _ prefixes. |
| 88 | if (name == "debug_info") |
Benjamin Kramer | 72c0d7f | 2011-09-13 19:42:23 +0000 | [diff] [blame] | 89 | DebugInfoSection = data; |
Benjamin Kramer | 1c0b24f | 2011-09-14 17:28:13 +0000 | [diff] [blame] | 90 | else if (name == "debug_abbrev") |
Benjamin Kramer | 72c0d7f | 2011-09-13 19:42:23 +0000 | [diff] [blame] | 91 | DebugAbbrevSection = data; |
Benjamin Kramer | 1c0b24f | 2011-09-14 17:28:13 +0000 | [diff] [blame] | 92 | else if (name == "debug_line") |
Benjamin Kramer | 72c0d7f | 2011-09-13 19:42:23 +0000 | [diff] [blame] | 93 | DebugLineSection = data; |
Benjamin Kramer | 1c0b24f | 2011-09-14 17:28:13 +0000 | [diff] [blame] | 94 | else if (name == "debug_aranges") |
Benjamin Kramer | 358f4fd | 2011-09-14 01:09:52 +0000 | [diff] [blame] | 95 | DebugArangesSection = data; |
Benjamin Kramer | 34f864f | 2011-09-15 16:57:13 +0000 | [diff] [blame] | 96 | else if (name == "debug_str") |
| 97 | DebugStringSection = data; |
Alexey Samsonov | eceb5b9 | 2012-08-27 07:17:47 +0000 | [diff] [blame] | 98 | else if (name == "debug_ranges") |
| 99 | DebugRangesSection = data; |
Benjamin Kramer | 72c0d7f | 2011-09-13 19:42:23 +0000 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | OwningPtr<DIContext> dictx(DIContext::getDWARFContext(/*FIXME*/true, |
| 103 | DebugInfoSection, |
Benjamin Kramer | 358f4fd | 2011-09-14 01:09:52 +0000 | [diff] [blame] | 104 | DebugAbbrevSection, |
Benjamin Kramer | b848e97 | 2011-09-15 02:12:05 +0000 | [diff] [blame] | 105 | DebugArangesSection, |
Benjamin Kramer | 34f864f | 2011-09-15 16:57:13 +0000 | [diff] [blame] | 106 | DebugLineSection, |
Alexey Samsonov | eceb5b9 | 2012-08-27 07:17:47 +0000 | [diff] [blame] | 107 | DebugStringSection, |
| 108 | DebugRangesSection)); |
Benjamin Kramer | 6b3ae46 | 2011-09-15 21:17:40 +0000 | [diff] [blame] | 109 | if (Address == -1ULL) { |
| 110 | outs() << Filename |
| 111 | << ":\tfile format " << Obj->getFileFormatName() << "\n\n"; |
| 112 | // Dump the complete DWARF structure. |
| 113 | dictx->dump(outs()); |
| 114 | } else { |
| 115 | // Print line info for the specified address. |
Alexey Samsonov | 5eae90d | 2012-09-04 08:12:33 +0000 | [diff] [blame] | 116 | int SpecFlags = DILineInfoSpecifier::FileLineInfo | |
| 117 | DILineInfoSpecifier::AbsoluteFilePath; |
Alexey Samsonov | 3e25c4a | 2012-07-02 05:54:45 +0000 | [diff] [blame] | 118 | if (PrintFunctions) |
Alexey Samsonov | 5eae90d | 2012-09-04 08:12:33 +0000 | [diff] [blame] | 119 | SpecFlags |= DILineInfoSpecifier::FunctionName; |
| 120 | if (PrintInlining) { |
Eric Christopher | d7169e9 | 2012-10-16 23:46:21 +0000 | [diff] [blame^] | 121 | DIInliningInfo InliningInfo = |
| 122 | dictx->getInliningInfoForAddress(Address, SpecFlags); |
Alexey Samsonov | 5eae90d | 2012-09-04 08:12:33 +0000 | [diff] [blame] | 123 | uint32_t n = InliningInfo.getNumberOfFrames(); |
| 124 | if (n == 0) { |
| 125 | // Print one empty debug line info in any case. |
| 126 | PrintDILineInfo(DILineInfo()); |
| 127 | } else { |
| 128 | for (uint32_t i = 0; i < n; i++) { |
| 129 | DILineInfo dli = InliningInfo.getFrame(i); |
| 130 | PrintDILineInfo(dli); |
| 131 | } |
| 132 | } |
| 133 | } else { |
| 134 | DILineInfo dli = dictx->getLineInfoForAddress(Address, SpecFlags); |
| 135 | PrintDILineInfo(dli); |
| 136 | } |
Benjamin Kramer | 6b3ae46 | 2011-09-15 21:17:40 +0000 | [diff] [blame] | 137 | } |
Benjamin Kramer | 72c0d7f | 2011-09-13 19:42:23 +0000 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | int main(int argc, char **argv) { |
| 141 | // Print a stack trace if we signal out. |
| 142 | sys::PrintStackTraceOnErrorSignal(); |
| 143 | PrettyStackTraceProgram X(argc, argv); |
| 144 | llvm_shutdown_obj Y; // Call llvm_shutdown() on exit. |
| 145 | |
| 146 | cl::ParseCommandLineOptions(argc, argv, "llvm dwarf dumper\n"); |
| 147 | |
| 148 | // Defaults to a.out if no filenames specified. |
| 149 | if (InputFilenames.size() == 0) |
| 150 | InputFilenames.push_back("a.out"); |
| 151 | |
| 152 | std::for_each(InputFilenames.begin(), InputFilenames.end(), DumpInput); |
| 153 | |
| 154 | return 0; |
| 155 | } |