blob: 80948560ca9a576f116c052180e559d3c6c5aead [file] [log] [blame]
Eric Christopherd7169e92012-10-16 23:46:21 +00001//===-- llvm-dwarfdump.cpp - Debug info dumping utility for llvm ----------===//
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +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//
10// This program is a utility that works like "dwarfdump".
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/ADT/OwningPtr.h"
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +000015#include "llvm/ADT/STLExtras.h"
Chandler Carruthf010c462012-12-04 10:44:52 +000016#include "llvm/ADT/Triple.h"
17#include "llvm/DebugInfo/DIContext.h"
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +000018#include "llvm/Object/ObjectFile.h"
Eric Christopher806e03d2012-11-07 23:22:07 +000019#include "llvm/Object/RelocVisitor.h"
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +000020#include "llvm/Support/CommandLine.h"
21#include "llvm/Support/Debug.h"
22#include "llvm/Support/Format.h"
23#include "llvm/Support/ManagedStatic.h"
24#include "llvm/Support/MemoryBuffer.h"
25#include "llvm/Support/MemoryObject.h"
26#include "llvm/Support/PrettyStackTrace.h"
27#include "llvm/Support/Signals.h"
28#include "llvm/Support/raw_ostream.h"
29#include "llvm/Support/system_error.h"
30#include <algorithm>
31#include <cstring>
Eric Christopher806e03d2012-11-07 23:22:07 +000032#include <list>
33#include <string>
34
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +000035using namespace llvm;
36using namespace object;
37
38static cl::list<std::string>
39InputFilenames(cl::Positional, cl::desc("<input object files>"),
40 cl::ZeroOrMore);
41
Benjamin Kramer6b3ae462011-09-15 21:17:40 +000042static cl::opt<unsigned long long>
43Address("address", cl::init(-1ULL),
44 cl::desc("Print line information for a given address"));
45
Alexey Samsonov3e25c4a2012-07-02 05:54:45 +000046static cl::opt<bool>
47PrintFunctions("functions", cl::init(false),
48 cl::desc("Print function names as well as line information "
49 "for a given address"));
50
Alexey Samsonov5eae90d2012-09-04 08:12:33 +000051static cl::opt<bool>
52PrintInlining("inlining", cl::init(false),
53 cl::desc("Print all inlined frames for a given address"));
54
Eli Bendersky939a4e82013-01-25 20:26:43 +000055static cl::opt<DIDumpType>
56DumpType("debug-dump", cl::init(DIDT_All),
57 cl::desc("Dump of debug sections:"),
58 cl::values(
59 clEnumValN(DIDT_All, "all", "Dump all debug sections"),
60 clEnumValN(DIDT_Abbrev, "abbrev", ".debug_abbrev"),
61 clEnumValN(DIDT_AbbrevDwo, "abbrev.dwo", ".debug_abbrev.dwo"),
62 clEnumValN(DIDT_Aranges, "aranges", ".debug_aranges"),
63 clEnumValN(DIDT_Info, "info", ".debug_info"),
64 clEnumValN(DIDT_InfoDwo, "info.dwo", ".debug_info.dwo"),
65 clEnumValN(DIDT_Line, "line", ".debug_line"),
Eli Bendersky60bdc5b2013-02-05 23:30:58 +000066 clEnumValN(DIDT_Frames, "frames", ".debug_frame"),
Eli Bendersky939a4e82013-01-25 20:26:43 +000067 clEnumValN(DIDT_Ranges, "ranges", ".debug_ranges"),
Krzysztof Parzyszeke38825f2013-02-12 16:20:28 +000068 clEnumValN(DIDT_Pubnames, "pubnames", ".debug_pubnames"),
Eli Bendersky939a4e82013-01-25 20:26:43 +000069 clEnumValN(DIDT_Str, "str", ".debug_str"),
70 clEnumValN(DIDT_StrDwo, "str.dwo", ".debug_str.dwo"),
71 clEnumValN(DIDT_StrOffsetsDwo, "str_offsets.dwo", ".debug_str_offsets.dwo"),
72 clEnumValEnd));
73
Alexey Samsonov5eae90d2012-09-04 08:12:33 +000074static void PrintDILineInfo(DILineInfo dli) {
75 if (PrintFunctions)
76 outs() << (dli.getFunctionName() ? dli.getFunctionName() : "<unknown>")
77 << "\n";
78 outs() << (dli.getFileName() ? dli.getFileName() : "<unknown>") << ':'
79 << dli.getLine() << ':' << dli.getColumn() << '\n';
80}
81
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +000082static void DumpInput(const StringRef &Filename) {
83 OwningPtr<MemoryBuffer> Buff;
84
85 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename, Buff)) {
86 errs() << Filename << ": " << ec.message() << "\n";
87 return;
88 }
89
90 OwningPtr<ObjectFile> Obj(ObjectFile::createObjectFile(Buff.take()));
Eli Benderskya965bac2013-01-25 20:53:41 +000091 if (!Obj) {
92 errs() << Filename << ": Unknown object file format\n";
93 return;
94 }
95
Eli Bendersky172d5972013-01-25 17:06:42 +000096 OwningPtr<DIContext> DICtx(DIContext::getDWARFContext(Obj.get()));
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +000097
Benjamin Kramer6b3ae462011-09-15 21:17:40 +000098 if (Address == -1ULL) {
99 outs() << Filename
100 << ":\tfile format " << Obj->getFileFormatName() << "\n\n";
101 // Dump the complete DWARF structure.
Eli Bendersky939a4e82013-01-25 20:26:43 +0000102 DICtx->dump(outs(), DumpType);
Benjamin Kramer6b3ae462011-09-15 21:17:40 +0000103 } else {
104 // Print line info for the specified address.
Alexey Samsonov5eae90d2012-09-04 08:12:33 +0000105 int SpecFlags = DILineInfoSpecifier::FileLineInfo |
106 DILineInfoSpecifier::AbsoluteFilePath;
Alexey Samsonov3e25c4a2012-07-02 05:54:45 +0000107 if (PrintFunctions)
Alexey Samsonov5eae90d2012-09-04 08:12:33 +0000108 SpecFlags |= DILineInfoSpecifier::FunctionName;
109 if (PrintInlining) {
Eric Christopherd7169e92012-10-16 23:46:21 +0000110 DIInliningInfo InliningInfo =
Eli Bendersky172d5972013-01-25 17:06:42 +0000111 DICtx->getInliningInfoForAddress(Address, SpecFlags);
Alexey Samsonov5eae90d2012-09-04 08:12:33 +0000112 uint32_t n = InliningInfo.getNumberOfFrames();
113 if (n == 0) {
114 // Print one empty debug line info in any case.
115 PrintDILineInfo(DILineInfo());
116 } else {
117 for (uint32_t i = 0; i < n; i++) {
118 DILineInfo dli = InliningInfo.getFrame(i);
119 PrintDILineInfo(dli);
120 }
121 }
122 } else {
Eli Bendersky172d5972013-01-25 17:06:42 +0000123 DILineInfo dli = DICtx->getLineInfoForAddress(Address, SpecFlags);
Alexey Samsonov5eae90d2012-09-04 08:12:33 +0000124 PrintDILineInfo(dli);
125 }
Benjamin Kramer6b3ae462011-09-15 21:17:40 +0000126 }
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +0000127}
128
129int main(int argc, char **argv) {
130 // Print a stack trace if we signal out.
131 sys::PrintStackTraceOnErrorSignal();
132 PrettyStackTraceProgram X(argc, argv);
133 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
134
135 cl::ParseCommandLineOptions(argc, argv, "llvm dwarf dumper\n");
136
137 // Defaults to a.out if no filenames specified.
138 if (InputFilenames.size() == 0)
139 InputFilenames.push_back("a.out");
140
141 std::for_each(InputFilenames.begin(), InputFilenames.end(), DumpInput);
142
143 return 0;
144}