blob: f019e9e9a98dca325820665188db9091e549216f [file] [log] [blame]
Eric Christopher3680f882012-10-16 23:46:21 +00001//===-- llvm-dwarfdump.cpp - Debug info dumping utility for llvm ----------===//
Benjamin Krameraa2f78f2011-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
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000014#include "llvm/ADT/STLExtras.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000015#include "llvm/ADT/Triple.h"
16#include "llvm/DebugInfo/DIContext.h"
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000017#include "llvm/Object/ObjectFile.h"
Eric Christopher7c678de2012-11-07 23:22:07 +000018#include "llvm/Object/RelocVisitor.h"
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000019#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>
Eric Christopher7c678de2012-11-07 23:22:07 +000031#include <list>
32#include <string>
33
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000034using namespace llvm;
35using namespace object;
36
37static cl::list<std::string>
38InputFilenames(cl::Positional, cl::desc("<input object files>"),
39 cl::ZeroOrMore);
40
Benjamin Kramer4d9924f2011-09-15 21:17:40 +000041static cl::opt<unsigned long long>
42Address("address", cl::init(-1ULL),
43 cl::desc("Print line information for a given address"));
44
Alexey Samsonovf4462fa2012-07-02 05:54:45 +000045static cl::opt<bool>
46PrintFunctions("functions", cl::init(false),
47 cl::desc("Print function names as well as line information "
48 "for a given address"));
49
Alexey Samsonovc942e6b2012-09-04 08:12:33 +000050static cl::opt<bool>
51PrintInlining("inlining", cl::init(false),
52 cl::desc("Print all inlined frames for a given address"));
53
Eli Bendersky7a94daa2013-01-25 20:26:43 +000054static cl::opt<DIDumpType>
55DumpType("debug-dump", cl::init(DIDT_All),
56 cl::desc("Dump of debug sections:"),
57 cl::values(
58 clEnumValN(DIDT_All, "all", "Dump all debug sections"),
59 clEnumValN(DIDT_Abbrev, "abbrev", ".debug_abbrev"),
60 clEnumValN(DIDT_AbbrevDwo, "abbrev.dwo", ".debug_abbrev.dwo"),
61 clEnumValN(DIDT_Aranges, "aranges", ".debug_aranges"),
62 clEnumValN(DIDT_Info, "info", ".debug_info"),
63 clEnumValN(DIDT_InfoDwo, "info.dwo", ".debug_info.dwo"),
David Blaikie3af14422013-11-19 00:29:42 +000064 clEnumValN(DIDT_Types, "types", ".debug_types"),
David Blaikie92d9d622014-01-09 05:08:24 +000065 clEnumValN(DIDT_TypesDwo, "types.dwo", ".debug_types.dwo"),
Eli Bendersky7a94daa2013-01-25 20:26:43 +000066 clEnumValN(DIDT_Line, "line", ".debug_line"),
David Blaikie1d4736e2014-02-24 23:58:54 +000067 clEnumValN(DIDT_LineDwo, "line.dwo", ".debug_line.dwo"),
David Blaikie18e73502013-06-19 21:37:13 +000068 clEnumValN(DIDT_Loc, "loc", ".debug_loc"),
Eli Benderskyfd08bc12013-02-05 23:30:58 +000069 clEnumValN(DIDT_Frames, "frames", ".debug_frame"),
Eli Bendersky7a94daa2013-01-25 20:26:43 +000070 clEnumValN(DIDT_Ranges, "ranges", ".debug_ranges"),
Krzysztof Parzyszek97438dc2013-02-12 16:20:28 +000071 clEnumValN(DIDT_Pubnames, "pubnames", ".debug_pubnames"),
Eric Christopher4c7e6ba2013-09-25 23:02:41 +000072 clEnumValN(DIDT_Pubtypes, "pubtypes", ".debug_pubtypes"),
Eric Christophera9e303e2013-09-25 23:02:44 +000073 clEnumValN(DIDT_GnuPubnames, "gnu_pubnames", ".debug_gnu_pubnames"),
74 clEnumValN(DIDT_GnuPubtypes, "gnu_pubtypes", ".debug_gnu_pubtypes"),
Eli Bendersky7a94daa2013-01-25 20:26:43 +000075 clEnumValN(DIDT_Str, "str", ".debug_str"),
76 clEnumValN(DIDT_StrDwo, "str.dwo", ".debug_str.dwo"),
77 clEnumValN(DIDT_StrOffsetsDwo, "str_offsets.dwo", ".debug_str_offsets.dwo"),
78 clEnumValEnd));
79
Alexey Samsonovc942e6b2012-09-04 08:12:33 +000080static void PrintDILineInfo(DILineInfo dli) {
81 if (PrintFunctions)
82 outs() << (dli.getFunctionName() ? dli.getFunctionName() : "<unknown>")
83 << "\n";
84 outs() << (dli.getFileName() ? dli.getFileName() : "<unknown>") << ':'
85 << dli.getLine() << ':' << dli.getColumn() << '\n';
86}
87
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000088static void DumpInput(const StringRef &Filename) {
Ahmed Charles56440fd2014-03-06 05:51:42 +000089 std::unique_ptr<MemoryBuffer> Buff;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000090
91 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename, Buff)) {
92 errs() << Filename << ": " << ec.message() << "\n";
93 return;
94 }
95
Ahmed Charles96c9d952014-03-05 10:19:29 +000096 ErrorOr<ObjectFile*> ObjOrErr(ObjectFile::createObjectFile(Buff.release()));
Rafael Espindola51cc3602014-01-22 00:14:49 +000097 if (error_code EC = ObjOrErr.getError()) {
98 errs() << Filename << ": " << EC.message() << '\n';
Eli Benderskya5a4ff52013-01-25 20:53:41 +000099 return;
100 }
Ahmed Charles56440fd2014-03-06 05:51:42 +0000101 std::unique_ptr<ObjectFile> Obj(ObjOrErr.get());
Eli Benderskya5a4ff52013-01-25 20:53:41 +0000102
Ahmed Charles56440fd2014-03-06 05:51:42 +0000103 std::unique_ptr<DIContext> DICtx(DIContext::getDWARFContext(Obj.get()));
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000104
Benjamin Kramer4d9924f2011-09-15 21:17:40 +0000105 if (Address == -1ULL) {
106 outs() << Filename
107 << ":\tfile format " << Obj->getFileFormatName() << "\n\n";
108 // Dump the complete DWARF structure.
Eli Bendersky7a94daa2013-01-25 20:26:43 +0000109 DICtx->dump(outs(), DumpType);
Benjamin Kramer4d9924f2011-09-15 21:17:40 +0000110 } else {
111 // Print line info for the specified address.
Alexey Samsonovc942e6b2012-09-04 08:12:33 +0000112 int SpecFlags = DILineInfoSpecifier::FileLineInfo |
113 DILineInfoSpecifier::AbsoluteFilePath;
Alexey Samsonovf4462fa2012-07-02 05:54:45 +0000114 if (PrintFunctions)
Alexey Samsonovc942e6b2012-09-04 08:12:33 +0000115 SpecFlags |= DILineInfoSpecifier::FunctionName;
116 if (PrintInlining) {
Eric Christopher3680f882012-10-16 23:46:21 +0000117 DIInliningInfo InliningInfo =
Eli Bendersky48eaffc2013-01-25 17:06:42 +0000118 DICtx->getInliningInfoForAddress(Address, SpecFlags);
Alexey Samsonovc942e6b2012-09-04 08:12:33 +0000119 uint32_t n = InliningInfo.getNumberOfFrames();
120 if (n == 0) {
121 // Print one empty debug line info in any case.
122 PrintDILineInfo(DILineInfo());
123 } else {
124 for (uint32_t i = 0; i < n; i++) {
125 DILineInfo dli = InliningInfo.getFrame(i);
126 PrintDILineInfo(dli);
127 }
128 }
129 } else {
Eli Bendersky48eaffc2013-01-25 17:06:42 +0000130 DILineInfo dli = DICtx->getLineInfoForAddress(Address, SpecFlags);
Alexey Samsonovc942e6b2012-09-04 08:12:33 +0000131 PrintDILineInfo(dli);
132 }
Benjamin Kramer4d9924f2011-09-15 21:17:40 +0000133 }
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000134}
135
136int main(int argc, char **argv) {
137 // Print a stack trace if we signal out.
138 sys::PrintStackTraceOnErrorSignal();
139 PrettyStackTraceProgram X(argc, argv);
140 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
141
142 cl::ParseCommandLineOptions(argc, argv, "llvm dwarf dumper\n");
143
144 // Defaults to a.out if no filenames specified.
145 if (InputFilenames.size() == 0)
146 InputFilenames.push_back("a.out");
147
148 std::for_each(InputFilenames.begin(), InputFilenames.end(), DumpInput);
149
150 return 0;
151}