blob: 7fa01f7633ef1f5bd26b97e6776adc2edbd60e5c [file] [log] [blame]
Michael J. Spencer2670c252011-01-20 06:39:06 +00001//===-- llvm-objdump.cpp - Object file dumping utility for llvm -----------===//
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 binutils "objdump", that is, it
11// dumps out a plethora of information about an object file depending on the
12// flags.
13//
Michael J. Spencerd7e70032013-02-05 20:27:22 +000014// The flags and output of this program should be near identical to those of
15// binutils objdump.
16//
Michael J. Spencer2670c252011-01-20 06:39:06 +000017//===----------------------------------------------------------------------===//
18
Benjamin Kramer43a772e2011-09-19 17:56:04 +000019#include "llvm-objdump.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000020#include "llvm/ADT/STLExtras.h"
Michael J. Spencer4e25c022011-10-17 17:13:22 +000021#include "llvm/ADT/StringExtras.h"
Michael J. Spencer2670c252011-01-20 06:39:06 +000022#include "llvm/ADT/Triple.h"
23#include "llvm/MC/MCAsmInfo.h"
Ahmed Bougachaaa790682013-05-24 01:07:04 +000024#include "llvm/MC/MCAtom.h"
Ahmed Bougachaad1084d2013-05-24 00:39:57 +000025#include "llvm/MC/MCContext.h"
Michael J. Spencer2670c252011-01-20 06:39:06 +000026#include "llvm/MC/MCDisassembler.h"
Ahmed Bougachaaa790682013-05-24 01:07:04 +000027#include "llvm/MC/MCFunction.h"
Michael J. Spencer2670c252011-01-20 06:39:06 +000028#include "llvm/MC/MCInst.h"
29#include "llvm/MC/MCInstPrinter.h"
Ahmed Bougachaaa790682013-05-24 01:07:04 +000030#include "llvm/MC/MCInstrAnalysis.h"
Craig Topper54bfde72012-04-02 06:09:36 +000031#include "llvm/MC/MCInstrInfo.h"
Ahmed Bougachaaa790682013-05-24 01:07:04 +000032#include "llvm/MC/MCModule.h"
Ahmed Bougacha17926472013-08-21 07:29:02 +000033#include "llvm/MC/MCModuleYAML.h"
Ahmed Bougachaaa790682013-05-24 01:07:04 +000034#include "llvm/MC/MCObjectDisassembler.h"
Ahmed Bougachaad1084d2013-05-24 00:39:57 +000035#include "llvm/MC/MCObjectFileInfo.h"
36#include "llvm/MC/MCObjectSymbolizer.h"
Jim Grosbachfd93a592012-03-05 19:33:20 +000037#include "llvm/MC/MCRegisterInfo.h"
Ahmed Bougachaad1084d2013-05-24 00:39:57 +000038#include "llvm/MC/MCRelocationInfo.h"
Ahmed Bougachaaa790682013-05-24 01:07:04 +000039#include "llvm/MC/MCSubtargetInfo.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000040#include "llvm/Object/Archive.h"
41#include "llvm/Object/COFF.h"
Rafael Espindolaa9f810b2012-12-21 03:47:03 +000042#include "llvm/Object/MachO.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000043#include "llvm/Object/ObjectFile.h"
Michael J. Spencerba4a3622011-10-08 00:18:30 +000044#include "llvm/Support/Casting.h"
Michael J. Spencer2670c252011-01-20 06:39:06 +000045#include "llvm/Support/CommandLine.h"
46#include "llvm/Support/Debug.h"
Michael J. Spencerba4a3622011-10-08 00:18:30 +000047#include "llvm/Support/FileSystem.h"
Michael J. Spencer2670c252011-01-20 06:39:06 +000048#include "llvm/Support/Format.h"
Benjamin Kramerbf115312011-07-25 23:04:36 +000049#include "llvm/Support/GraphWriter.h"
Michael J. Spencer2670c252011-01-20 06:39:06 +000050#include "llvm/Support/Host.h"
51#include "llvm/Support/ManagedStatic.h"
52#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer2670c252011-01-20 06:39:06 +000053#include "llvm/Support/MemoryObject.h"
54#include "llvm/Support/PrettyStackTrace.h"
55#include "llvm/Support/Signals.h"
56#include "llvm/Support/SourceMgr.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000057#include "llvm/Support/TargetRegistry.h"
58#include "llvm/Support/TargetSelect.h"
Michael J. Spencer2670c252011-01-20 06:39:06 +000059#include "llvm/Support/raw_ostream.h"
Michael J. Spencer2670c252011-01-20 06:39:06 +000060#include "llvm/Support/system_error.h"
Michael J. Spencer2670c252011-01-20 06:39:06 +000061#include <algorithm>
Benjamin Kramera5177e62012-03-23 11:49:32 +000062#include <cctype>
Michael J. Spencer2670c252011-01-20 06:39:06 +000063#include <cstring>
Ahmed Bougacha17926472013-08-21 07:29:02 +000064
Michael J. Spencer2670c252011-01-20 06:39:06 +000065using namespace llvm;
66using namespace object;
67
Benjamin Kramer43a772e2011-09-19 17:56:04 +000068static cl::list<std::string>
69InputFilenames(cl::Positional, cl::desc("<input object files>"),cl::ZeroOrMore);
Michael J. Spencer2670c252011-01-20 06:39:06 +000070
Benjamin Kramer43a772e2011-09-19 17:56:04 +000071static cl::opt<bool>
72Disassemble("disassemble",
73 cl::desc("Display assembler mnemonics for the machine instructions"));
74static cl::alias
75Disassembled("d", cl::desc("Alias for --disassemble"),
76 cl::aliasopt(Disassemble));
Michael J. Spencer2670c252011-01-20 06:39:06 +000077
Benjamin Kramer43a772e2011-09-19 17:56:04 +000078static cl::opt<bool>
Michael J. Spencerba4a3622011-10-08 00:18:30 +000079Relocations("r", cl::desc("Display the relocation entries in the file"));
80
81static cl::opt<bool>
Michael J. Spencer4e25c022011-10-17 17:13:22 +000082SectionContents("s", cl::desc("Display the content of each section"));
83
84static cl::opt<bool>
Michael J. Spencerbfa06782011-10-18 19:32:17 +000085SymbolTable("t", cl::desc("Display the symbol table"));
86
87static cl::opt<bool>
Rafael Espindolaa9f810b2012-12-21 03:47:03 +000088MachOOpt("macho", cl::desc("Use MachO specific object file parser"));
Benjamin Kramer43a772e2011-09-19 17:56:04 +000089static cl::alias
Rafael Espindolaa9f810b2012-12-21 03:47:03 +000090MachOm("m", cl::desc("Alias for --macho"), cl::aliasopt(MachOOpt));
Benjamin Kramer87ee76c2011-07-20 19:37:35 +000091
Benjamin Kramer43a772e2011-09-19 17:56:04 +000092cl::opt<std::string>
93llvm::TripleName("triple", cl::desc("Target triple to disassemble for, "
94 "see -version for available targets"));
95
96cl::opt<std::string>
97llvm::ArchName("arch", cl::desc("Target arch to disassemble for, "
Michael J. Spencer2670c252011-01-20 06:39:06 +000098 "see -version for available targets"));
99
Nick Lewyckyfcf84622011-10-10 21:21:34 +0000100static cl::opt<bool>
101SectionHeaders("section-headers", cl::desc("Display summaries of the headers "
102 "for each section."));
103static cl::alias
104SectionHeadersShort("headers", cl::desc("Alias for --section-headers"),
105 cl::aliasopt(SectionHeaders));
106static cl::alias
107SectionHeadersShorter("h", cl::desc("Alias for --section-headers"),
108 cl::aliasopt(SectionHeaders));
109
Jack Carter551efd72012-08-28 19:24:49 +0000110static cl::list<std::string>
111MAttrs("mattr",
112 cl::CommaSeparated,
113 cl::desc("Target specific attributes"),
114 cl::value_desc("a1,+a2,-a3,..."));
115
Eli Bendersky3a6808c2012-11-20 22:57:02 +0000116static cl::opt<bool>
117NoShowRawInsn("no-show-raw-insn", cl::desc("When disassembling instructions, "
118 "do not print the instruction bytes."));
119
Michael J. Spencer0c6ec482012-12-05 20:12:35 +0000120static cl::opt<bool>
121UnwindInfo("unwind-info", cl::desc("Display unwind information"));
122
123static cl::alias
124UnwindInfoShort("u", cl::desc("Alias for --unwind-info"),
125 cl::aliasopt(UnwindInfo));
126
Michael J. Spencer209565db2013-01-06 03:56:49 +0000127static cl::opt<bool>
128PrivateHeaders("private-headers",
129 cl::desc("Display format specific file headers"));
130
131static cl::alias
132PrivateHeadersShort("p", cl::desc("Alias for --private-headers"),
133 cl::aliasopt(PrivateHeaders));
134
Ahmed Bougachaad1084d2013-05-24 00:39:57 +0000135static cl::opt<bool>
136Symbolize("symbolize", cl::desc("When disassembling instructions, "
137 "try to symbolize operands."));
138
Ahmed Bougachaaa790682013-05-24 01:07:04 +0000139static cl::opt<bool>
140CFG("cfg", cl::desc("Create a CFG for every function found in the object"
141 " and write it to a graphviz file"));
142
Ahmed Bougacha17926472013-08-21 07:29:02 +0000143// FIXME: Does it make sense to have a dedicated tool for yaml cfg output?
144static cl::opt<std::string>
145YAMLCFG("yaml-cfg",
146 cl::desc("Create a CFG and write it as a YAML MCModule."),
147 cl::value_desc("yaml output file"));
148
Benjamin Kramer43a772e2011-09-19 17:56:04 +0000149static StringRef ToolName;
Michael J. Spencer2670c252011-01-20 06:39:06 +0000150
Mark Seaborneb03ac52014-01-25 00:32:01 +0000151bool llvm::error(error_code EC) {
152 if (!EC)
153 return false;
Michael J. Spencer1d6167f2011-06-25 17:55:23 +0000154
Mark Seaborneb03ac52014-01-25 00:32:01 +0000155 outs() << ToolName << ": error reading file: " << EC.message() << ".\n";
Benjamin Kramer43a772e2011-09-19 17:56:04 +0000156 outs().flush();
157 return true;
Michael J. Spencer2670c252011-01-20 06:39:06 +0000158}
159
Jim Grosbachaf9aec02012-08-07 17:53:14 +0000160static const Target *getTarget(const ObjectFile *Obj = NULL) {
Michael J. Spencer2670c252011-01-20 06:39:06 +0000161 // Figure out the target triple.
Kevin Enderbyfe3d0052012-05-08 23:38:45 +0000162 llvm::Triple TheTriple("unknown-unknown-unknown");
Michael J. Spencer05350e6d2011-01-20 07:22:04 +0000163 if (TripleName.empty()) {
Ahmed Bougachaad1084d2013-05-24 00:39:57 +0000164 if (Obj) {
Kevin Enderbyfe3d0052012-05-08 23:38:45 +0000165 TheTriple.setArch(Triple::ArchType(Obj->getArch()));
Ahmed Bougachaad1084d2013-05-24 00:39:57 +0000166 // TheTriple defaults to ELF, and COFF doesn't have an environment:
167 // the best we can do here is indicate that it is mach-o.
168 if (Obj->isMachO())
Saleem Abdulrasool35476332014-03-06 20:47:11 +0000169 TheTriple.setObjectFormat(Triple::MachO);
Ahmed Bougachaad1084d2013-05-24 00:39:57 +0000170 }
Michael J. Spencer05350e6d2011-01-20 07:22:04 +0000171 } else
Kevin Enderbyfe3d0052012-05-08 23:38:45 +0000172 TheTriple.setTriple(Triple::normalize(TripleName));
Michael J. Spencer2670c252011-01-20 06:39:06 +0000173
174 // Get the target specific parser.
175 std::string Error;
Kevin Enderbyfe3d0052012-05-08 23:38:45 +0000176 const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple,
177 Error);
178 if (!TheTarget) {
179 errs() << ToolName << ": " << Error;
180 return 0;
181 }
Michael J. Spencer2670c252011-01-20 06:39:06 +0000182
Kevin Enderbyfe3d0052012-05-08 23:38:45 +0000183 // Update the triple name and return the found target.
184 TripleName = TheTriple.getTriple();
185 return TheTarget;
Michael J. Spencer2670c252011-01-20 06:39:06 +0000186}
187
Ahmed Bougachaaa790682013-05-24 01:07:04 +0000188// Write a graphviz file for the CFG inside an MCFunction.
Ahmed Bougacha17926472013-08-21 07:29:02 +0000189// FIXME: Use GraphWriter
Ahmed Bougachaaa790682013-05-24 01:07:04 +0000190static void emitDOTFile(const char *FileName, const MCFunction &f,
191 MCInstPrinter *IP) {
192 // Start a new dot file.
193 std::string Error;
Rafael Espindola90c7f1c2014-02-24 18:20:12 +0000194 raw_fd_ostream Out(FileName, Error, sys::fs::F_Text);
Ahmed Bougachaaa790682013-05-24 01:07:04 +0000195 if (!Error.empty()) {
196 errs() << "llvm-objdump: warning: " << Error << '\n';
197 return;
198 }
199
200 Out << "digraph \"" << f.getName() << "\" {\n";
201 Out << "graph [ rankdir = \"LR\" ];\n";
202 for (MCFunction::const_iterator i = f.begin(), e = f.end(); i != e; ++i) {
203 // Only print blocks that have predecessors.
204 bool hasPreds = (*i)->pred_begin() != (*i)->pred_end();
205
206 if (!hasPreds && i != f.begin())
207 continue;
208
209 Out << '"' << (*i)->getInsts()->getBeginAddr() << "\" [ label=\"<a>";
210 // Print instructions.
211 for (unsigned ii = 0, ie = (*i)->getInsts()->size(); ii != ie;
212 ++ii) {
213 if (ii != 0) // Not the first line, start a new row.
214 Out << '|';
215 if (ii + 1 == ie) // Last line, add an end id.
216 Out << "<o>";
217
218 // Escape special chars and print the instruction in mnemonic form.
219 std::string Str;
220 raw_string_ostream OS(Str);
221 IP->printInst(&(*i)->getInsts()->at(ii).Inst, OS, "");
222 Out << DOT::EscapeString(OS.str());
223 }
224 Out << "\" shape=\"record\" ];\n";
225
226 // Add edges.
227 for (MCBasicBlock::succ_const_iterator si = (*i)->succ_begin(),
228 se = (*i)->succ_end(); si != se; ++si)
229 Out << (*i)->getInsts()->getBeginAddr() << ":o -> "
230 << (*si)->getInsts()->getBeginAddr() << ":a\n";
231 }
232 Out << "}\n";
233}
David Blaikiea379b1812011-12-20 02:50:00 +0000234
Benjamin Kramer43a772e2011-09-19 17:56:04 +0000235void llvm::DumpBytes(StringRef bytes) {
236 static const char hex_rep[] = "0123456789abcdef";
Michael J. Spencer2670c252011-01-20 06:39:06 +0000237 // FIXME: The real way to do this is to figure out the longest instruction
238 // and align to that size before printing. I'll fix this when I get
239 // around to outputting relocations.
240 // 15 is the longest x86 instruction
241 // 3 is for the hex rep of a byte + a space.
242 // 1 is for the null terminator.
243 enum { OutputSize = (15 * 3) + 1 };
244 char output[OutputSize];
245
246 assert(bytes.size() <= 15
247 && "DumpBytes only supports instructions of up to 15 bytes");
248 memset(output, ' ', sizeof(output));
249 unsigned index = 0;
250 for (StringRef::iterator i = bytes.begin(),
251 e = bytes.end(); i != e; ++i) {
252 output[index] = hex_rep[(*i & 0xF0) >> 4];
253 output[index + 1] = hex_rep[*i & 0xF];
254 index += 3;
255 }
256
257 output[sizeof(output) - 1] = 0;
258 outs() << output;
259}
260
Michael J. Spencer0c6ec482012-12-05 20:12:35 +0000261bool llvm::RelocAddressLess(RelocationRef a, RelocationRef b) {
Michael J. Spencer51862b32011-10-13 22:17:18 +0000262 uint64_t a_addr, b_addr;
Rafael Espindola1e483872013-04-25 12:28:45 +0000263 if (error(a.getOffset(a_addr))) return false;
264 if (error(b.getOffset(b_addr))) return false;
Michael J. Spencer51862b32011-10-13 22:17:18 +0000265 return a_addr < b_addr;
266}
267
268static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) {
Jim Grosbachaf9aec02012-08-07 17:53:14 +0000269 const Target *TheTarget = getTarget(Obj);
270 // getTarget() will have already issued a diagnostic if necessary, so
271 // just bail here if it failed.
272 if (!TheTarget)
Michael J. Spencer2670c252011-01-20 06:39:06 +0000273 return;
Michael J. Spencer2670c252011-01-20 06:39:06 +0000274
Jack Carter551efd72012-08-28 19:24:49 +0000275 // Package up features to be passed to target/subtarget
276 std::string FeaturesStr;
277 if (MAttrs.size()) {
278 SubtargetFeatures Features;
279 for (unsigned i = 0; i != MAttrs.size(); ++i)
280 Features.AddFeature(MAttrs[i]);
281 FeaturesStr = Features.getString();
282 }
283
Ahmed Charles56440fd2014-03-06 05:51:42 +0000284 std::unique_ptr<const MCRegisterInfo> MRI(
285 TheTarget->createMCRegInfo(TripleName));
Ahmed Bougacha0835ca12013-05-16 21:28:23 +0000286 if (!MRI) {
287 errs() << "error: no register info for target " << TripleName << "\n";
288 return;
289 }
290
291 // Set up disassembler.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000292 std::unique_ptr<const MCAsmInfo> AsmInfo(
293 TheTarget->createMCAsmInfo(*MRI, TripleName));
Ahmed Bougacha0835ca12013-05-16 21:28:23 +0000294 if (!AsmInfo) {
295 errs() << "error: no assembly info for target " << TripleName << "\n";
296 return;
297 }
298
Ahmed Charles56440fd2014-03-06 05:51:42 +0000299 std::unique_ptr<const MCSubtargetInfo> STI(
300 TheTarget->createMCSubtargetInfo(TripleName, "", FeaturesStr));
Ahmed Bougacha0835ca12013-05-16 21:28:23 +0000301 if (!STI) {
302 errs() << "error: no subtarget info for target " << TripleName << "\n";
303 return;
304 }
305
Ahmed Charles56440fd2014-03-06 05:51:42 +0000306 std::unique_ptr<const MCInstrInfo> MII(TheTarget->createMCInstrInfo());
Ahmed Bougacha0835ca12013-05-16 21:28:23 +0000307 if (!MII) {
308 errs() << "error: no instruction info for target " << TripleName << "\n";
309 return;
310 }
311
Ahmed Charles56440fd2014-03-06 05:51:42 +0000312 std::unique_ptr<MCDisassembler> DisAsm(TheTarget->createMCDisassembler(*STI));
Ahmed Bougachaad1084d2013-05-24 00:39:57 +0000313 if (!DisAsm) {
314 errs() << "error: no disassembler for target " << TripleName << "\n";
315 return;
316 }
317
Ahmed Charles56440fd2014-03-06 05:51:42 +0000318 std::unique_ptr<const MCObjectFileInfo> MOFI;
319 std::unique_ptr<MCContext> Ctx;
Ahmed Bougachaad1084d2013-05-24 00:39:57 +0000320
321 if (Symbolize) {
322 MOFI.reset(new MCObjectFileInfo);
Bill Wendlingbc07a892013-06-18 07:20:20 +0000323 Ctx.reset(new MCContext(AsmInfo.get(), MRI.get(), MOFI.get()));
Ahmed Charles56440fd2014-03-06 05:51:42 +0000324 std::unique_ptr<MCRelocationInfo> RelInfo(
325 TheTarget->createMCRelocationInfo(TripleName, *Ctx.get()));
Ahmed Bougachaad1084d2013-05-24 00:39:57 +0000326 if (RelInfo) {
Ahmed Charles56440fd2014-03-06 05:51:42 +0000327 std::unique_ptr<MCSymbolizer> Symzer(
328 MCObjectSymbolizer::createObjectSymbolizer(*Ctx.get(), RelInfo, Obj));
Ahmed Bougachaad1084d2013-05-24 00:39:57 +0000329 if (Symzer)
Ahmed Charlesdf17c832014-03-07 09:38:02 +0000330 DisAsm->setSymbolizer(std::move(Symzer));
Ahmed Bougachaad1084d2013-05-24 00:39:57 +0000331 }
332 }
333
Ahmed Charles56440fd2014-03-06 05:51:42 +0000334 std::unique_ptr<const MCInstrAnalysis> MIA(
335 TheTarget->createMCInstrAnalysis(MII.get()));
Ahmed Bougachaaa790682013-05-24 01:07:04 +0000336
Ahmed Bougacha0835ca12013-05-16 21:28:23 +0000337 int AsmPrinterVariant = AsmInfo->getAssemblerDialect();
Ahmed Charles56440fd2014-03-06 05:51:42 +0000338 std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter(
Ahmed Bougacha0835ca12013-05-16 21:28:23 +0000339 AsmPrinterVariant, *AsmInfo, *MII, *MRI, *STI));
340 if (!IP) {
341 errs() << "error: no instruction printer for target " << TripleName
342 << '\n';
343 return;
344 }
345
Ahmed Bougacha17926472013-08-21 07:29:02 +0000346 if (CFG || !YAMLCFG.empty()) {
Ahmed Charles56440fd2014-03-06 05:51:42 +0000347 std::unique_ptr<MCObjectDisassembler> OD(
348 new MCObjectDisassembler(*Obj, *DisAsm, *MIA));
349 std::unique_ptr<MCModule> Mod(OD->buildModule(/* withCFG */ true));
Ahmed Bougachaaa790682013-05-24 01:07:04 +0000350 for (MCModule::const_atom_iterator AI = Mod->atom_begin(),
351 AE = Mod->atom_end();
352 AI != AE; ++AI) {
353 outs() << "Atom " << (*AI)->getName() << ": \n";
354 if (const MCTextAtom *TA = dyn_cast<MCTextAtom>(*AI)) {
355 for (MCTextAtom::const_iterator II = TA->begin(), IE = TA->end();
356 II != IE;
357 ++II) {
358 IP->printInst(&II->Inst, outs(), "");
359 outs() << "\n";
360 }
361 }
362 }
Ahmed Bougacha17926472013-08-21 07:29:02 +0000363 if (CFG) {
364 for (MCModule::const_func_iterator FI = Mod->func_begin(),
365 FE = Mod->func_end();
366 FI != FE; ++FI) {
367 static int filenum = 0;
368 emitDOTFile((Twine((*FI)->getName()) + "_" +
369 utostr(filenum) + ".dot").str().c_str(),
370 **FI, IP.get());
371 ++filenum;
372 }
373 }
374 if (!YAMLCFG.empty()) {
375 std::string Error;
Rafael Espindola90c7f1c2014-02-24 18:20:12 +0000376 raw_fd_ostream YAMLOut(YAMLCFG.c_str(), Error, sys::fs::F_Text);
Ahmed Bougacha17926472013-08-21 07:29:02 +0000377 if (!Error.empty()) {
Ahmed Bougachad56f7052013-08-21 16:13:25 +0000378 errs() << ToolName << ": warning: " << Error << '\n';
Ahmed Bougacha17926472013-08-21 07:29:02 +0000379 return;
380 }
381 mcmodule2yaml(YAMLOut, *Mod, *MII, *MRI);
Ahmed Bougachaaa790682013-05-24 01:07:04 +0000382 }
383 }
384
Mark Seaborn0929d3d2014-01-25 17:38:19 +0000385 // Create a mapping, RelocSecs = SectionRelocMap[S], where sections
386 // in RelocSecs contain the relocations for section S.
Mark Seaborneb03ac52014-01-25 00:32:01 +0000387 error_code EC;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000388 std::map<SectionRef, SmallVector<SectionRef, 1>> SectionRelocMap;
389 for (const SectionRef &Section : Obj->sections()) {
390 section_iterator Sec2 = Section.getRelocatedSection();
Rafael Espindolab5155a52014-02-10 20:24:04 +0000391 if (Sec2 != Obj->section_end())
Alexey Samsonov48803e52014-03-13 14:37:36 +0000392 SectionRelocMap[*Sec2].push_back(Section);
Mark Seaborn0929d3d2014-01-25 17:38:19 +0000393 }
394
Alexey Samsonov48803e52014-03-13 14:37:36 +0000395 for (const SectionRef &Section : Obj->sections()) {
Mark Seaborneb03ac52014-01-25 00:32:01 +0000396 bool Text;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000397 if (error(Section.isText(Text)))
Mark Seaborneb03ac52014-01-25 00:32:01 +0000398 break;
399 if (!Text)
400 continue;
Michael J. Spencer1d6167f2011-06-25 17:55:23 +0000401
Michael J. Spencer51862b32011-10-13 22:17:18 +0000402 uint64_t SectionAddr;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000403 if (error(Section.getAddress(SectionAddr)))
Mark Seaborneb03ac52014-01-25 00:32:01 +0000404 break;
Michael J. Spencer51862b32011-10-13 22:17:18 +0000405
Simon Atanasyan2b614e12014-02-24 22:12:11 +0000406 uint64_t SectSize;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000407 if (error(Section.getSize(SectSize)))
Simon Atanasyan2b614e12014-02-24 22:12:11 +0000408 break;
409
Benjamin Kramere0dda9c2011-07-15 18:39:24 +0000410 // Make a list of all the symbols in this section.
411 std::vector<std::pair<uint64_t, StringRef> > Symbols;
Rafael Espindolab5155a52014-02-10 20:24:04 +0000412 for (symbol_iterator SI = Obj->symbol_begin(), SE = Obj->symbol_end();
Rafael Espindola5e812af2014-01-30 02:49:50 +0000413 SI != SE; ++SI) {
Benjamin Kramere0dda9c2011-07-15 18:39:24 +0000414 bool contains;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000415 if (!error(Section.containsSymbol(*SI, contains)) && contains) {
Benjamin Kramere0dda9c2011-07-15 18:39:24 +0000416 uint64_t Address;
Mark Seaborneb03ac52014-01-25 00:32:01 +0000417 if (error(SI->getAddress(Address)))
418 break;
419 if (Address == UnknownAddressOrSize)
420 continue;
Cameron Zwarich07f0f772012-02-03 04:13:37 +0000421 Address -= SectionAddr;
Simon Atanasyan2b614e12014-02-24 22:12:11 +0000422 if (Address >= SectSize)
423 continue;
Cameron Zwarich07f0f772012-02-03 04:13:37 +0000424
Benjamin Kramere0dda9c2011-07-15 18:39:24 +0000425 StringRef Name;
Mark Seaborneb03ac52014-01-25 00:32:01 +0000426 if (error(SI->getName(Name)))
427 break;
Benjamin Kramere0dda9c2011-07-15 18:39:24 +0000428 Symbols.push_back(std::make_pair(Address, Name));
429 }
430 }
431
432 // Sort the symbols by address, just in case they didn't come in that way.
433 array_pod_sort(Symbols.begin(), Symbols.end());
434
Michael J. Spencer51862b32011-10-13 22:17:18 +0000435 // Make a list of all the relocations for this section.
436 std::vector<RelocationRef> Rels;
437 if (InlineRelocs) {
Alexey Samsonov48803e52014-03-13 14:37:36 +0000438 SmallVectorImpl<SectionRef> *RelocSecs = &SectionRelocMap[Section];
Mark Seaborn0929d3d2014-01-25 17:38:19 +0000439 for (SmallVectorImpl<SectionRef>::iterator RelocSec = RelocSecs->begin(),
440 E = RelocSecs->end();
441 RelocSec != E; ++RelocSec) {
Rafael Espindolab5155a52014-02-10 20:24:04 +0000442 for (relocation_iterator RI = RelocSec->relocation_begin(),
443 RE = RelocSec->relocation_end();
Rafael Espindola5e812af2014-01-30 02:49:50 +0000444 RI != RE; ++RI)
Mark Seaborn0929d3d2014-01-25 17:38:19 +0000445 Rels.push_back(*RI);
Michael J. Spencer51862b32011-10-13 22:17:18 +0000446 }
447 }
448
449 // Sort relocations by address.
450 std::sort(Rels.begin(), Rels.end(), RelocAddressLess);
451
Rafael Espindolaa9f810b2012-12-21 03:47:03 +0000452 StringRef SegmentName = "";
Mark Seaborneb03ac52014-01-25 00:32:01 +0000453 if (const MachOObjectFile *MachO = dyn_cast<const MachOObjectFile>(Obj)) {
Alexey Samsonov48803e52014-03-13 14:37:36 +0000454 DataRefImpl DR = Section.getRawDataRefImpl();
Rafael Espindola56f976f2013-04-18 18:08:55 +0000455 SegmentName = MachO->getSectionFinalSegmentName(DR);
Rafael Espindolaa9f810b2012-12-21 03:47:03 +0000456 }
Michael J. Spencer1d6167f2011-06-25 17:55:23 +0000457 StringRef name;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000458 if (error(Section.getName(name)))
Mark Seaborneb03ac52014-01-25 00:32:01 +0000459 break;
Rafael Espindolaa9f810b2012-12-21 03:47:03 +0000460 outs() << "Disassembly of section ";
461 if (!SegmentName.empty())
462 outs() << SegmentName << ",";
463 outs() << name << ':';
Benjamin Kramere0dda9c2011-07-15 18:39:24 +0000464
465 // If the section has no symbols just insert a dummy one and disassemble
466 // the whole section.
467 if (Symbols.empty())
468 Symbols.push_back(std::make_pair(0, name));
Michael J. Spencer2670c252011-01-20 06:39:06 +0000469
Ahmed Bougachaad1084d2013-05-24 00:39:57 +0000470
471 SmallString<40> Comments;
472 raw_svector_ostream CommentStream(Comments);
473
Michael J. Spencer1d6167f2011-06-25 17:55:23 +0000474 StringRef Bytes;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000475 if (error(Section.getContents(Bytes)))
Mark Seaborneb03ac52014-01-25 00:32:01 +0000476 break;
Ahmed Bougachaad1084d2013-05-24 00:39:57 +0000477 StringRefMemoryObject memoryObject(Bytes, SectionAddr);
Michael J. Spencer2670c252011-01-20 06:39:06 +0000478 uint64_t Size;
479 uint64_t Index;
480
Michael J. Spencer51862b32011-10-13 22:17:18 +0000481 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin();
482 std::vector<RelocationRef>::const_iterator rel_end = Rels.end();
Benjamin Kramere0dda9c2011-07-15 18:39:24 +0000483 // Disassemble symbol by symbol.
484 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) {
485 uint64_t Start = Symbols[si].first;
Michael J. Spenceree84f642011-10-13 20:37:08 +0000486 uint64_t End;
487 // The end is either the size of the section or the beginning of the next
488 // symbol.
489 if (si == se - 1)
490 End = SectSize;
491 // Make sure this symbol takes up space.
492 else if (Symbols[si + 1].first != Start)
493 End = Symbols[si + 1].first - 1;
494 else
495 // This symbol has the same address as the next symbol. Skip it.
496 continue;
497
Benjamin Kramere0dda9c2011-07-15 18:39:24 +0000498 outs() << '\n' << Symbols[si].second << ":\n";
Michael J. Spencer2670c252011-01-20 06:39:06 +0000499
Benjamin Kramere0dda9c2011-07-15 18:39:24 +0000500#ifndef NDEBUG
Mark Seaborneb03ac52014-01-25 00:32:01 +0000501 raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls();
Benjamin Kramere0dda9c2011-07-15 18:39:24 +0000502#else
Mark Seaborneb03ac52014-01-25 00:32:01 +0000503 raw_ostream &DebugOut = nulls();
Benjamin Kramere0dda9c2011-07-15 18:39:24 +0000504#endif
505
Benjamin Kramer43a772e2011-09-19 17:56:04 +0000506 for (Index = Start; Index < End; Index += Size) {
507 MCInst Inst;
Owen Andersona0c3b972011-09-15 23:38:46 +0000508
Ahmed Bougachaad1084d2013-05-24 00:39:57 +0000509 if (DisAsm->getInstruction(Inst, Size, memoryObject,
510 SectionAddr + Index,
511 DebugOut, CommentStream)) {
Eli Bendersky3a6808c2012-11-20 22:57:02 +0000512 outs() << format("%8" PRIx64 ":", SectionAddr + Index);
513 if (!NoShowRawInsn) {
514 outs() << "\t";
515 DumpBytes(StringRef(Bytes.data() + Index, Size));
516 }
Benjamin Kramer43a772e2011-09-19 17:56:04 +0000517 IP->printInst(&Inst, outs(), "");
Ahmed Bougachaad1084d2013-05-24 00:39:57 +0000518 outs() << CommentStream.str();
519 Comments.clear();
Benjamin Kramer43a772e2011-09-19 17:56:04 +0000520 outs() << "\n";
521 } else {
522 errs() << ToolName << ": warning: invalid instruction encoding\n";
523 if (Size == 0)
524 Size = 1; // skip illegible bytes
Benjamin Kramere0dda9c2011-07-15 18:39:24 +0000525 }
Michael J. Spencer51862b32011-10-13 22:17:18 +0000526
527 // Print relocation for instruction.
528 while (rel_cur != rel_end) {
Owen Andersonfa3e5202011-10-25 20:35:53 +0000529 bool hidden = false;
Michael J. Spencer51862b32011-10-13 22:17:18 +0000530 uint64_t addr;
531 SmallString<16> name;
532 SmallString<32> val;
Owen Andersonfa3e5202011-10-25 20:35:53 +0000533
534 // If this relocation is hidden, skip it.
535 if (error(rel_cur->getHidden(hidden))) goto skip_print_rel;
536 if (hidden) goto skip_print_rel;
537
Rafael Espindola1e483872013-04-25 12:28:45 +0000538 if (error(rel_cur->getOffset(addr))) goto skip_print_rel;
Michael J. Spencer51862b32011-10-13 22:17:18 +0000539 // Stop when rel_cur's address is past the current instruction.
Owen Andersonf20e3e52011-10-25 20:15:39 +0000540 if (addr >= Index + Size) break;
Michael J. Spencer51862b32011-10-13 22:17:18 +0000541 if (error(rel_cur->getTypeName(name))) goto skip_print_rel;
542 if (error(rel_cur->getValueString(val))) goto skip_print_rel;
543
Benjamin Kramer82803112012-03-10 02:04:38 +0000544 outs() << format("\t\t\t%8" PRIx64 ": ", SectionAddr + addr) << name
545 << "\t" << val << "\n";
Michael J. Spencer51862b32011-10-13 22:17:18 +0000546
547 skip_print_rel:
548 ++rel_cur;
549 }
Benjamin Kramer87ee76c2011-07-20 19:37:35 +0000550 }
Michael J. Spencer2670c252011-01-20 06:39:06 +0000551 }
552 }
553}
554
Alexey Samsonov48803e52014-03-13 14:37:36 +0000555static void PrintRelocations(const ObjectFile *Obj) {
556 for (const SectionRef &Section : Obj->sections()) {
557 if (Section.relocation_begin() == Section.relocation_end())
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000558 continue;
559 StringRef secname;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000560 if (error(Section.getName(secname)))
561 continue;
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000562 outs() << "RELOCATION RECORDS FOR [" << secname << "]:\n";
Alexey Samsonov48803e52014-03-13 14:37:36 +0000563 for (relocation_iterator ri = Section.relocation_begin(),
564 re = Section.relocation_end();
Rafael Espindola5e812af2014-01-30 02:49:50 +0000565 ri != re; ++ri) {
Owen Andersonfa3e5202011-10-25 20:35:53 +0000566 bool hidden;
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000567 uint64_t address;
568 SmallString<32> relocname;
569 SmallString<32> valuestr;
Owen Andersonfa3e5202011-10-25 20:35:53 +0000570 if (error(ri->getHidden(hidden))) continue;
571 if (hidden) continue;
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000572 if (error(ri->getTypeName(relocname))) continue;
Rafael Espindola1e483872013-04-25 12:28:45 +0000573 if (error(ri->getOffset(address))) continue;
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000574 if (error(ri->getValueString(valuestr))) continue;
575 outs() << address << " " << relocname << " " << valuestr << "\n";
576 }
577 outs() << "\n";
578 }
579}
580
Alexey Samsonov48803e52014-03-13 14:37:36 +0000581static void PrintSectionHeaders(const ObjectFile *Obj) {
Nick Lewyckyfcf84622011-10-10 21:21:34 +0000582 outs() << "Sections:\n"
583 "Idx Name Size Address Type\n";
Nick Lewyckyfcf84622011-10-10 21:21:34 +0000584 unsigned i = 0;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000585 for (const SectionRef &Section : Obj->sections()) {
Nick Lewyckyfcf84622011-10-10 21:21:34 +0000586 StringRef Name;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000587 if (error(Section.getName(Name)))
Mark Seaborneb03ac52014-01-25 00:32:01 +0000588 return;
Nick Lewyckyfcf84622011-10-10 21:21:34 +0000589 uint64_t Address;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000590 if (error(Section.getAddress(Address)))
591 return;
Nick Lewyckyfcf84622011-10-10 21:21:34 +0000592 uint64_t Size;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000593 if (error(Section.getSize(Size)))
594 return;
Nick Lewyckyfcf84622011-10-10 21:21:34 +0000595 bool Text, Data, BSS;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000596 if (error(Section.isText(Text)))
597 return;
598 if (error(Section.isData(Data)))
599 return;
600 if (error(Section.isBSS(BSS)))
601 return;
Nick Lewyckyfcf84622011-10-10 21:21:34 +0000602 std::string Type = (std::string(Text ? "TEXT " : "") +
Michael J. Spencer8f67d472011-10-13 20:37:20 +0000603 (Data ? "DATA " : "") + (BSS ? "BSS" : ""));
Alexey Samsonov48803e52014-03-13 14:37:36 +0000604 outs() << format("%3d %-13s %08" PRIx64 " %016" PRIx64 " %s\n", i,
605 Name.str().c_str(), Size, Address, Type.c_str());
Nick Lewyckyfcf84622011-10-10 21:21:34 +0000606 ++i;
607 }
608}
609
Alexey Samsonov48803e52014-03-13 14:37:36 +0000610static void PrintSectionContents(const ObjectFile *Obj) {
Mark Seaborneb03ac52014-01-25 00:32:01 +0000611 error_code EC;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000612 for (const SectionRef &Section : Obj->sections()) {
Michael J. Spencer4e25c022011-10-17 17:13:22 +0000613 StringRef Name;
614 StringRef Contents;
615 uint64_t BaseAddr;
Alexey Samsonov209095c2013-04-16 10:53:11 +0000616 bool BSS;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000617 if (error(Section.getName(Name)))
618 continue;
619 if (error(Section.getContents(Contents)))
620 continue;
621 if (error(Section.getAddress(BaseAddr)))
622 continue;
623 if (error(Section.isBSS(BSS)))
624 continue;
Michael J. Spencer4e25c022011-10-17 17:13:22 +0000625
626 outs() << "Contents of section " << Name << ":\n";
Alexey Samsonov209095c2013-04-16 10:53:11 +0000627 if (BSS) {
628 outs() << format("<skipping contents of bss section at [%04" PRIx64
629 ", %04" PRIx64 ")>\n", BaseAddr,
630 BaseAddr + Contents.size());
631 continue;
632 }
Michael J. Spencer4e25c022011-10-17 17:13:22 +0000633
634 // Dump out the content as hex and printable ascii characters.
635 for (std::size_t addr = 0, end = Contents.size(); addr < end; addr += 16) {
Benjamin Kramer82803112012-03-10 02:04:38 +0000636 outs() << format(" %04" PRIx64 " ", BaseAddr + addr);
Michael J. Spencer4e25c022011-10-17 17:13:22 +0000637 // Dump line of hex.
638 for (std::size_t i = 0; i < 16; ++i) {
639 if (i != 0 && i % 4 == 0)
640 outs() << ' ';
641 if (addr + i < end)
642 outs() << hexdigit((Contents[addr + i] >> 4) & 0xF, true)
643 << hexdigit(Contents[addr + i] & 0xF, true);
644 else
645 outs() << " ";
646 }
647 // Print ascii.
648 outs() << " ";
649 for (std::size_t i = 0; i < 16 && addr + i < end; ++i) {
Guy Benyei83c74e92013-02-12 21:21:59 +0000650 if (std::isprint(static_cast<unsigned char>(Contents[addr + i]) & 0xFF))
Michael J. Spencer4e25c022011-10-17 17:13:22 +0000651 outs() << Contents[addr + i];
652 else
653 outs() << ".";
654 }
655 outs() << "\n";
656 }
657 }
658}
659
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000660static void PrintCOFFSymbolTable(const COFFObjectFile *coff) {
661 const coff_file_header *header;
662 if (error(coff->getHeader(header))) return;
663 int aux_count = 0;
664 const coff_symbol *symbol = 0;
665 for (int i = 0, e = header->NumberOfSymbols; i != e; ++i) {
666 if (aux_count--) {
667 // Figure out which type of aux this is.
668 if (symbol->StorageClass == COFF::IMAGE_SYM_CLASS_STATIC
669 && symbol->Value == 0) { // Section definition.
670 const coff_aux_section_definition *asd;
671 if (error(coff->getAuxSymbol<coff_aux_section_definition>(i, asd)))
672 return;
673 outs() << "AUX "
674 << format("scnlen 0x%x nreloc %d nlnno %d checksum 0x%x "
675 , unsigned(asd->Length)
676 , unsigned(asd->NumberOfRelocations)
677 , unsigned(asd->NumberOfLinenumbers)
678 , unsigned(asd->CheckSum))
679 << format("assoc %d comdat %d\n"
680 , unsigned(asd->Number)
681 , unsigned(asd->Selection));
Jim Grosbachaf9aec02012-08-07 17:53:14 +0000682 } else
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000683 outs() << "AUX Unknown\n";
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000684 } else {
685 StringRef name;
686 if (error(coff->getSymbol(i, symbol))) return;
687 if (error(coff->getSymbolName(symbol, name))) return;
688 outs() << "[" << format("%2d", i) << "]"
689 << "(sec " << format("%2d", int(symbol->SectionNumber)) << ")"
690 << "(fl 0x00)" // Flag bits, which COFF doesn't have.
691 << "(ty " << format("%3x", unsigned(symbol->Type)) << ")"
692 << "(scl " << format("%3x", unsigned(symbol->StorageClass)) << ") "
693 << "(nx " << unsigned(symbol->NumberOfAuxSymbols) << ") "
694 << "0x" << format("%08x", unsigned(symbol->Value)) << " "
695 << name << "\n";
696 aux_count = symbol->NumberOfAuxSymbols;
697 }
698 }
699}
700
701static void PrintSymbolTable(const ObjectFile *o) {
702 outs() << "SYMBOL TABLE:\n";
703
704 if (const COFFObjectFile *coff = dyn_cast<const COFFObjectFile>(o))
705 PrintCOFFSymbolTable(coff);
706 else {
Rafael Espindolab5155a52014-02-10 20:24:04 +0000707 for (symbol_iterator si = o->symbol_begin(), se = o->symbol_end();
Rafael Espindola5e812af2014-01-30 02:49:50 +0000708 si != se; ++si) {
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000709 StringRef Name;
Danil Malyshevcbe72fc2011-11-29 17:40:10 +0000710 uint64_t Address;
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000711 SymbolRef::Type Type;
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000712 uint64_t Size;
Rafael Espindola20122a42014-01-31 20:57:12 +0000713 uint32_t Flags = si->getFlags();
Rafael Espindolab5155a52014-02-10 20:24:04 +0000714 section_iterator Section = o->section_end();
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000715 if (error(si->getName(Name))) continue;
Danil Malyshevcbe72fc2011-11-29 17:40:10 +0000716 if (error(si->getAddress(Address))) continue;
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000717 if (error(si->getType(Type))) continue;
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000718 if (error(si->getSize(Size))) continue;
719 if (error(si->getSection(Section))) continue;
720
David Meyer1df4b842012-02-28 23:47:53 +0000721 bool Global = Flags & SymbolRef::SF_Global;
722 bool Weak = Flags & SymbolRef::SF_Weak;
723 bool Absolute = Flags & SymbolRef::SF_Absolute;
724
Danil Malyshevcbe72fc2011-11-29 17:40:10 +0000725 if (Address == UnknownAddressOrSize)
726 Address = 0;
727 if (Size == UnknownAddressOrSize)
728 Size = 0;
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000729 char GlobLoc = ' ';
David Meyer7e4b9762012-02-29 02:11:55 +0000730 if (Type != SymbolRef::ST_Unknown)
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000731 GlobLoc = Global ? 'g' : 'l';
732 char Debug = (Type == SymbolRef::ST_Debug || Type == SymbolRef::ST_File)
733 ? 'd' : ' ';
734 char FileFunc = ' ';
735 if (Type == SymbolRef::ST_File)
736 FileFunc = 'f';
737 else if (Type == SymbolRef::ST_Function)
738 FileFunc = 'F';
739
Michael J. Spencerd857c1c2013-01-10 22:40:50 +0000740 const char *Fmt = o->getBytesInAddress() > 4 ? "%016" PRIx64 :
741 "%08" PRIx64;
742
743 outs() << format(Fmt, Address) << " "
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000744 << GlobLoc // Local -> 'l', Global -> 'g', Neither -> ' '
745 << (Weak ? 'w' : ' ') // Weak?
746 << ' ' // Constructor. Not supported yet.
747 << ' ' // Warning. Not supported yet.
748 << ' ' // Indirect reference to another symbol.
749 << Debug // Debugging (d) or dynamic (D) symbol.
750 << FileFunc // Name of function (F), file (f) or object (O).
751 << ' ';
752 if (Absolute)
753 outs() << "*ABS*";
Rafael Espindolab5155a52014-02-10 20:24:04 +0000754 else if (Section == o->section_end())
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000755 outs() << "*UND*";
756 else {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000757 if (const MachOObjectFile *MachO =
758 dyn_cast<const MachOObjectFile>(o)) {
Rafael Espindolaa9f810b2012-12-21 03:47:03 +0000759 DataRefImpl DR = Section->getRawDataRefImpl();
Rafael Espindola56f976f2013-04-18 18:08:55 +0000760 StringRef SegmentName = MachO->getSectionFinalSegmentName(DR);
Rafael Espindolaa9f810b2012-12-21 03:47:03 +0000761 outs() << SegmentName << ",";
762 }
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000763 StringRef SectionName;
764 if (error(Section->getName(SectionName)))
765 SectionName = "";
766 outs() << SectionName;
767 }
768 outs() << '\t'
Benjamin Kramer82803112012-03-10 02:04:38 +0000769 << format("%08" PRIx64 " ", Size)
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000770 << Name
771 << '\n';
772 }
773 }
774}
775
Michael J. Spencer0c6ec482012-12-05 20:12:35 +0000776static void PrintUnwindInfo(const ObjectFile *o) {
777 outs() << "Unwind info:\n\n";
778
779 if (const COFFObjectFile *coff = dyn_cast<COFFObjectFile>(o)) {
780 printCOFFUnwindInfo(coff);
781 } else {
782 // TODO: Extract DWARF dump tool to objdump.
783 errs() << "This operation is only currently supported "
784 "for COFF object files.\n";
785 return;
786 }
787}
788
Rui Ueyamac2bed422013-09-27 21:04:00 +0000789static void printPrivateFileHeader(const ObjectFile *o) {
790 if (o->isELF()) {
791 printELFFileHeader(o);
792 } else if (o->isCOFF()) {
793 printCOFFFileHeader(o);
794 }
795}
796
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000797static void DumpObject(const ObjectFile *o) {
Michael J. Spencer4e25c022011-10-17 17:13:22 +0000798 outs() << '\n';
799 outs() << o->getFileName()
800 << ":\tfile format " << o->getFileFormatName() << "\n\n";
801
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000802 if (Disassemble)
Michael J. Spencer51862b32011-10-13 22:17:18 +0000803 DisassembleObject(o, Relocations);
804 if (Relocations && !Disassemble)
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000805 PrintRelocations(o);
Nick Lewyckyfcf84622011-10-10 21:21:34 +0000806 if (SectionHeaders)
807 PrintSectionHeaders(o);
Michael J. Spencer4e25c022011-10-17 17:13:22 +0000808 if (SectionContents)
809 PrintSectionContents(o);
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000810 if (SymbolTable)
811 PrintSymbolTable(o);
Michael J. Spencer0c6ec482012-12-05 20:12:35 +0000812 if (UnwindInfo)
813 PrintUnwindInfo(o);
Rui Ueyamac2bed422013-09-27 21:04:00 +0000814 if (PrivateHeaders)
815 printPrivateFileHeader(o);
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000816}
817
818/// @brief Dump each object file in \a a;
819static void DumpArchive(const Archive *a) {
Mark Seaborneb03ac52014-01-25 00:32:01 +0000820 for (Archive::child_iterator i = a->child_begin(), e = a->child_end(); i != e;
821 ++i) {
Ahmed Charles56440fd2014-03-06 05:51:42 +0000822 std::unique_ptr<Binary> child;
Mark Seaborneb03ac52014-01-25 00:32:01 +0000823 if (error_code EC = i->getAsBinary(child)) {
Michael J. Spencer53723de2011-11-16 01:24:41 +0000824 // Ignore non-object files.
Mark Seaborneb03ac52014-01-25 00:32:01 +0000825 if (EC != object_error::invalid_file_type)
826 errs() << ToolName << ": '" << a->getFileName() << "': " << EC.message()
Michael J. Spencer53723de2011-11-16 01:24:41 +0000827 << ".\n";
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000828 continue;
829 }
830 if (ObjectFile *o = dyn_cast<ObjectFile>(child.get()))
831 DumpObject(o);
832 else
833 errs() << ToolName << ": '" << a->getFileName() << "': "
834 << "Unrecognized file type.\n";
835 }
836}
837
838/// @brief Open file and figure out how to dump it.
839static void DumpInput(StringRef file) {
840 // If file isn't stdin, check that it exists.
841 if (file != "-" && !sys::fs::exists(file)) {
842 errs() << ToolName << ": '" << file << "': " << "No such file\n";
843 return;
844 }
845
Rafael Espindolaa9f810b2012-12-21 03:47:03 +0000846 if (MachOOpt && Disassemble) {
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000847 DisassembleInputMachO(file);
848 return;
849 }
850
851 // Attempt to open the binary.
Rafael Espindola63da2952014-01-15 19:37:43 +0000852 ErrorOr<Binary *> BinaryOrErr = createBinary(file);
853 if (error_code EC = BinaryOrErr.getError()) {
854 errs() << ToolName << ": '" << file << "': " << EC.message() << ".\n";
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000855 return;
856 }
Ahmed Charles56440fd2014-03-06 05:51:42 +0000857 std::unique_ptr<Binary> binary(BinaryOrErr.get());
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000858
Jim Grosbachaf9aec02012-08-07 17:53:14 +0000859 if (Archive *a = dyn_cast<Archive>(binary.get()))
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000860 DumpArchive(a);
Jim Grosbachaf9aec02012-08-07 17:53:14 +0000861 else if (ObjectFile *o = dyn_cast<ObjectFile>(binary.get()))
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000862 DumpObject(o);
Jim Grosbachaf9aec02012-08-07 17:53:14 +0000863 else
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000864 errs() << ToolName << ": '" << file << "': " << "Unrecognized file type.\n";
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000865}
866
Michael J. Spencer2670c252011-01-20 06:39:06 +0000867int main(int argc, char **argv) {
868 // Print a stack trace if we signal out.
869 sys::PrintStackTraceOnErrorSignal();
870 PrettyStackTraceProgram X(argc, argv);
871 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
872
873 // Initialize targets and assembly printers/parsers.
874 llvm::InitializeAllTargetInfos();
Evan Cheng8c886a42011-07-22 21:58:54 +0000875 llvm::InitializeAllTargetMCs();
Michael J. Spencer2670c252011-01-20 06:39:06 +0000876 llvm::InitializeAllAsmParsers();
877 llvm::InitializeAllDisassemblers();
878
Pete Cooper28fb4fc2012-05-03 23:20:10 +0000879 // Register the target printer for --version.
880 cl::AddExtraVersionPrinter(TargetRegistry::printRegisteredTargetsForVersion);
881
Michael J. Spencer2670c252011-01-20 06:39:06 +0000882 cl::ParseCommandLineOptions(argc, argv, "llvm object file dumper\n");
883 TripleName = Triple::normalize(TripleName);
884
885 ToolName = argv[0];
886
887 // Defaults to a.out if no filenames specified.
888 if (InputFilenames.size() == 0)
889 InputFilenames.push_back("a.out");
890
Michael J. Spencerbfa06782011-10-18 19:32:17 +0000891 if (!Disassemble
892 && !Relocations
893 && !SectionHeaders
894 && !SectionContents
Michael J. Spencer0c6ec482012-12-05 20:12:35 +0000895 && !SymbolTable
Michael J. Spencer209565db2013-01-06 03:56:49 +0000896 && !UnwindInfo
897 && !PrivateHeaders) {
Michael J. Spencer2670c252011-01-20 06:39:06 +0000898 cl::PrintHelpMessage();
899 return 2;
900 }
901
Michael J. Spencerba4a3622011-10-08 00:18:30 +0000902 std::for_each(InputFilenames.begin(), InputFilenames.end(),
903 DumpInput);
Michael J. Spencer2670c252011-01-20 06:39:06 +0000904
905 return 0;
906}