blob: 4cf15b614b39d0bc5bffa25cb967fe56dc62ac45 [file] [log] [blame]
Michael J. Spencer92e1deb2011-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//
14//===----------------------------------------------------------------------===//
15
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000016#include "llvm-objdump.h"
Benjamin Kramer685a2502011-07-20 19:37:35 +000017#include "MCFunction.h"
Michael J. Spencer27781b72011-10-08 00:18:30 +000018#include "llvm/Object/Archive.h"
Michael J. Spencer22ff0f32011-10-18 19:32:17 +000019#include "llvm/Object/COFF.h"
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000020#include "llvm/Object/ObjectFile.h"
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000021#include "llvm/ADT/OwningPtr.h"
Michael J. Spencer1e8ba3f2011-10-17 17:13:22 +000022#include "llvm/ADT/StringExtras.h"
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000023#include "llvm/ADT/Triple.h"
Benjamin Kramer739b65b2011-07-15 18:39:24 +000024#include "llvm/ADT/STLExtras.h"
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000025#include "llvm/MC/MCAsmInfo.h"
26#include "llvm/MC/MCDisassembler.h"
27#include "llvm/MC/MCInst.h"
28#include "llvm/MC/MCInstPrinter.h"
Craig Topper17463b32012-04-02 06:09:36 +000029#include "llvm/MC/MCInstrInfo.h"
Jim Grosbachc6449b62012-03-05 19:33:20 +000030#include "llvm/MC/MCRegisterInfo.h"
James Molloyb9505852011-09-07 17:24:38 +000031#include "llvm/MC/MCSubtargetInfo.h"
Michael J. Spencer27781b72011-10-08 00:18:30 +000032#include "llvm/Support/Casting.h"
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000033#include "llvm/Support/CommandLine.h"
34#include "llvm/Support/Debug.h"
Michael J. Spencer27781b72011-10-08 00:18:30 +000035#include "llvm/Support/FileSystem.h"
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000036#include "llvm/Support/Format.h"
Benjamin Kramer853b0fd2011-07-25 23:04:36 +000037#include "llvm/Support/GraphWriter.h"
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000038#include "llvm/Support/Host.h"
39#include "llvm/Support/ManagedStatic.h"
40#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000041#include "llvm/Support/MemoryObject.h"
42#include "llvm/Support/PrettyStackTrace.h"
43#include "llvm/Support/Signals.h"
44#include "llvm/Support/SourceMgr.h"
Evan Cheng3e74d6f2011-08-24 18:08:43 +000045#include "llvm/Support/TargetRegistry.h"
46#include "llvm/Support/TargetSelect.h"
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000047#include "llvm/Support/raw_ostream.h"
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000048#include "llvm/Support/system_error.h"
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000049#include <algorithm>
Benjamin Kramer81bbdfd2012-03-23 11:49:32 +000050#include <cctype>
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000051#include <cstring>
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000052using namespace llvm;
53using namespace object;
54
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000055static cl::list<std::string>
56InputFilenames(cl::Positional, cl::desc("<input object files>"),cl::ZeroOrMore);
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000057
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000058static cl::opt<bool>
59Disassemble("disassemble",
60 cl::desc("Display assembler mnemonics for the machine instructions"));
61static cl::alias
62Disassembled("d", cl::desc("Alias for --disassemble"),
63 cl::aliasopt(Disassemble));
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000064
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000065static cl::opt<bool>
Michael J. Spencer27781b72011-10-08 00:18:30 +000066Relocations("r", cl::desc("Display the relocation entries in the file"));
67
68static cl::opt<bool>
Michael J. Spencer1e8ba3f2011-10-17 17:13:22 +000069SectionContents("s", cl::desc("Display the content of each section"));
70
71static cl::opt<bool>
Michael J. Spencer22ff0f32011-10-18 19:32:17 +000072SymbolTable("t", cl::desc("Display the symbol table"));
73
74static cl::opt<bool>
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000075MachO("macho", cl::desc("Use MachO specific object file parser"));
76static cl::alias
77MachOm("m", cl::desc("Alias for --macho"), cl::aliasopt(MachO));
Benjamin Kramer685a2502011-07-20 19:37:35 +000078
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000079cl::opt<std::string>
80llvm::TripleName("triple", cl::desc("Target triple to disassemble for, "
81 "see -version for available targets"));
82
83cl::opt<std::string>
84llvm::ArchName("arch", cl::desc("Target arch to disassemble for, "
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000085 "see -version for available targets"));
86
Nick Lewycky023bb152011-10-10 21:21:34 +000087static cl::opt<bool>
88SectionHeaders("section-headers", cl::desc("Display summaries of the headers "
89 "for each section."));
90static cl::alias
91SectionHeadersShort("headers", cl::desc("Alias for --section-headers"),
92 cl::aliasopt(SectionHeaders));
93static cl::alias
94SectionHeadersShorter("h", cl::desc("Alias for --section-headers"),
95 cl::aliasopt(SectionHeaders));
96
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000097static StringRef ToolName;
Michael J. Spencer92e1deb2011-01-20 06:39:06 +000098
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000099static bool error(error_code ec) {
100 if (!ec) return false;
Michael J. Spencer25b15772011-06-25 17:55:23 +0000101
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000102 outs() << ToolName << ": error reading file: " << ec.message() << ".\n";
103 outs().flush();
104 return true;
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000105}
106
107static const Target *GetTarget(const ObjectFile *Obj = NULL) {
108 // Figure out the target triple.
109 llvm::Triple TT("unknown-unknown-unknown");
Michael J. Spencerd11699d2011-01-20 07:22:04 +0000110 if (TripleName.empty()) {
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000111 if (Obj)
112 TT.setArch(Triple::ArchType(Obj->getArch()));
Michael J. Spencerd11699d2011-01-20 07:22:04 +0000113 } else
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000114 TT.setTriple(Triple::normalize(TripleName));
115
116 if (!ArchName.empty())
117 TT.setArchName(ArchName);
118
119 TripleName = TT.str();
120
121 // Get the target specific parser.
122 std::string Error;
123 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
124 if (TheTarget)
125 return TheTarget;
126
127 errs() << ToolName << ": error: unable to get target for '" << TripleName
128 << "', see --version and --triple.\n";
129 return 0;
130}
131
David Blaikie2d24e2a2011-12-20 02:50:00 +0000132void llvm::StringRefMemoryObject::anchor() { }
133
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000134void llvm::DumpBytes(StringRef bytes) {
135 static const char hex_rep[] = "0123456789abcdef";
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000136 // FIXME: The real way to do this is to figure out the longest instruction
137 // and align to that size before printing. I'll fix this when I get
138 // around to outputting relocations.
139 // 15 is the longest x86 instruction
140 // 3 is for the hex rep of a byte + a space.
141 // 1 is for the null terminator.
142 enum { OutputSize = (15 * 3) + 1 };
143 char output[OutputSize];
144
145 assert(bytes.size() <= 15
146 && "DumpBytes only supports instructions of up to 15 bytes");
147 memset(output, ' ', sizeof(output));
148 unsigned index = 0;
149 for (StringRef::iterator i = bytes.begin(),
150 e = bytes.end(); i != e; ++i) {
151 output[index] = hex_rep[(*i & 0xF0) >> 4];
152 output[index + 1] = hex_rep[*i & 0xF];
153 index += 3;
154 }
155
156 output[sizeof(output) - 1] = 0;
157 outs() << output;
158}
159
Michael J. Spencer942eb002011-10-13 22:17:18 +0000160static bool RelocAddressLess(RelocationRef a, RelocationRef b) {
161 uint64_t a_addr, b_addr;
162 if (error(a.getAddress(a_addr))) return false;
163 if (error(b.getAddress(b_addr))) return false;
164 return a_addr < b_addr;
165}
166
167static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) {
Michael J. Spencer27781b72011-10-08 00:18:30 +0000168 const Target *TheTarget = GetTarget(Obj);
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000169 if (!TheTarget) {
170 // GetTarget prints out stuff.
171 return;
172 }
173
Michael J. Spencer25b15772011-06-25 17:55:23 +0000174 error_code ec;
Michael J. Spencer4344b1e2011-10-07 19:25:32 +0000175 for (section_iterator i = Obj->begin_sections(),
Michael J. Spencer27781b72011-10-08 00:18:30 +0000176 e = Obj->end_sections();
177 i != e; i.increment(ec)) {
Michael J. Spencer25b15772011-06-25 17:55:23 +0000178 if (error(ec)) break;
179 bool text;
180 if (error(i->isText(text))) break;
181 if (!text) continue;
182
Michael J. Spencer942eb002011-10-13 22:17:18 +0000183 uint64_t SectionAddr;
184 if (error(i->getAddress(SectionAddr))) break;
185
Benjamin Kramer739b65b2011-07-15 18:39:24 +0000186 // Make a list of all the symbols in this section.
187 std::vector<std::pair<uint64_t, StringRef> > Symbols;
Michael J. Spencer4344b1e2011-10-07 19:25:32 +0000188 for (symbol_iterator si = Obj->begin_symbols(),
Michael J. Spencer27781b72011-10-08 00:18:30 +0000189 se = Obj->end_symbols();
190 si != se; si.increment(ec)) {
Benjamin Kramer739b65b2011-07-15 18:39:24 +0000191 bool contains;
192 if (!error(i->containsSymbol(*si, contains)) && contains) {
193 uint64_t Address;
Danil Malyshevb0436a72011-11-29 17:40:10 +0000194 if (error(si->getAddress(Address))) break;
Cameron Zwarichaab21912012-02-03 04:13:37 +0000195 Address -= SectionAddr;
196
Benjamin Kramer739b65b2011-07-15 18:39:24 +0000197 StringRef Name;
198 if (error(si->getName(Name))) break;
199 Symbols.push_back(std::make_pair(Address, Name));
200 }
201 }
202
203 // Sort the symbols by address, just in case they didn't come in that way.
204 array_pod_sort(Symbols.begin(), Symbols.end());
205
Michael J. Spencer942eb002011-10-13 22:17:18 +0000206 // Make a list of all the relocations for this section.
207 std::vector<RelocationRef> Rels;
208 if (InlineRelocs) {
209 for (relocation_iterator ri = i->begin_relocations(),
210 re = i->end_relocations();
211 ri != re; ri.increment(ec)) {
212 if (error(ec)) break;
213 Rels.push_back(*ri);
214 }
215 }
216
217 // Sort relocations by address.
218 std::sort(Rels.begin(), Rels.end(), RelocAddressLess);
219
Michael J. Spencer25b15772011-06-25 17:55:23 +0000220 StringRef name;
221 if (error(i->getName(name))) break;
Benjamin Kramer739b65b2011-07-15 18:39:24 +0000222 outs() << "Disassembly of section " << name << ':';
223
224 // If the section has no symbols just insert a dummy one and disassemble
225 // the whole section.
226 if (Symbols.empty())
227 Symbols.push_back(std::make_pair(0, name));
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000228
229 // Set up disassembler.
Evan Cheng1abf2cb2011-07-14 23:50:31 +0000230 OwningPtr<const MCAsmInfo> AsmInfo(TheTarget->createMCAsmInfo(TripleName));
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000231
232 if (!AsmInfo) {
233 errs() << "error: no assembly info for target " << TripleName << "\n";
234 return;
235 }
236
Michael J. Spencer27781b72011-10-08 00:18:30 +0000237 OwningPtr<const MCSubtargetInfo> STI(
238 TheTarget->createMCSubtargetInfo(TripleName, "", ""));
James Molloyb9505852011-09-07 17:24:38 +0000239
240 if (!STI) {
241 errs() << "error: no subtarget info for target " << TripleName << "\n";
242 return;
243 }
244
Owen Anderson10c044e2011-10-27 21:55:13 +0000245 OwningPtr<const MCDisassembler> DisAsm(
Michael J. Spencer27781b72011-10-08 00:18:30 +0000246 TheTarget->createMCDisassembler(*STI));
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000247 if (!DisAsm) {
248 errs() << "error: no disassembler for target " << TripleName << "\n";
249 return;
250 }
251
Jim Grosbachc6449b62012-03-05 19:33:20 +0000252 OwningPtr<const MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
253 if (!MRI) {
254 errs() << "error: no register info for target " << TripleName << "\n";
255 return;
256 }
257
Craig Topper17463b32012-04-02 06:09:36 +0000258 OwningPtr<const MCInstrInfo> MII(TheTarget->createMCInstrInfo());
259 if (!MII) {
260 errs() << "error: no instruction info for target " << TripleName << "\n";
261 return;
262 }
263
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000264 int AsmPrinterVariant = AsmInfo->getAssemblerDialect();
265 OwningPtr<MCInstPrinter> IP(TheTarget->createMCInstPrinter(
Craig Topper17463b32012-04-02 06:09:36 +0000266 AsmPrinterVariant, *AsmInfo, *MII, *MRI, *STI));
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000267 if (!IP) {
Michael J. Spencer27781b72011-10-08 00:18:30 +0000268 errs() << "error: no instruction printer for target " << TripleName
269 << '\n';
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000270 return;
271 }
272
Michael J. Spencer25b15772011-06-25 17:55:23 +0000273 StringRef Bytes;
274 if (error(i->getContents(Bytes))) break;
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000275 StringRefMemoryObject memoryObject(Bytes);
276 uint64_t Size;
277 uint64_t Index;
Benjamin Kramer739b65b2011-07-15 18:39:24 +0000278 uint64_t SectSize;
279 if (error(i->getSize(SectSize))) break;
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000280
Michael J. Spencer942eb002011-10-13 22:17:18 +0000281 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin();
282 std::vector<RelocationRef>::const_iterator rel_end = Rels.end();
Benjamin Kramer739b65b2011-07-15 18:39:24 +0000283 // Disassemble symbol by symbol.
284 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) {
285 uint64_t Start = Symbols[si].first;
Michael J. Spencer178dbd42011-10-13 20:37:08 +0000286 uint64_t End;
287 // The end is either the size of the section or the beginning of the next
288 // symbol.
289 if (si == se - 1)
290 End = SectSize;
291 // Make sure this symbol takes up space.
292 else if (Symbols[si + 1].first != Start)
293 End = Symbols[si + 1].first - 1;
294 else
295 // This symbol has the same address as the next symbol. Skip it.
296 continue;
297
Benjamin Kramer739b65b2011-07-15 18:39:24 +0000298 outs() << '\n' << Symbols[si].second << ":\n";
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000299
Benjamin Kramer739b65b2011-07-15 18:39:24 +0000300#ifndef NDEBUG
301 raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls();
302#else
303 raw_ostream &DebugOut = nulls();
304#endif
305
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000306 for (Index = Start; Index < End; Index += Size) {
307 MCInst Inst;
Owen Anderson98c5dda2011-09-15 23:38:46 +0000308
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000309 if (DisAsm->getInstruction(Inst, Size, memoryObject, Index,
310 DebugOut, nulls())) {
Benjamin Kramer51cf8662012-03-10 02:04:38 +0000311 outs() << format("%8" PRIx64 ":\t", SectionAddr + Index);
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000312 DumpBytes(StringRef(Bytes.data() + Index, Size));
313 IP->printInst(&Inst, outs(), "");
314 outs() << "\n";
315 } else {
316 errs() << ToolName << ": warning: invalid instruction encoding\n";
317 if (Size == 0)
318 Size = 1; // skip illegible bytes
Benjamin Kramer739b65b2011-07-15 18:39:24 +0000319 }
Michael J. Spencer942eb002011-10-13 22:17:18 +0000320
321 // Print relocation for instruction.
322 while (rel_cur != rel_end) {
Owen Anderson0685e942011-10-25 20:35:53 +0000323 bool hidden = false;
Michael J. Spencer942eb002011-10-13 22:17:18 +0000324 uint64_t addr;
325 SmallString<16> name;
326 SmallString<32> val;
Owen Anderson0685e942011-10-25 20:35:53 +0000327
328 // If this relocation is hidden, skip it.
329 if (error(rel_cur->getHidden(hidden))) goto skip_print_rel;
330 if (hidden) goto skip_print_rel;
331
Michael J. Spencer942eb002011-10-13 22:17:18 +0000332 if (error(rel_cur->getAddress(addr))) goto skip_print_rel;
333 // Stop when rel_cur's address is past the current instruction.
Owen Anderson34749ce2011-10-25 20:15:39 +0000334 if (addr >= Index + Size) break;
Michael J. Spencer942eb002011-10-13 22:17:18 +0000335 if (error(rel_cur->getTypeName(name))) goto skip_print_rel;
336 if (error(rel_cur->getValueString(val))) goto skip_print_rel;
337
Benjamin Kramer51cf8662012-03-10 02:04:38 +0000338 outs() << format("\t\t\t%8" PRIx64 ": ", SectionAddr + addr) << name
339 << "\t" << val << "\n";
Michael J. Spencer942eb002011-10-13 22:17:18 +0000340
341 skip_print_rel:
342 ++rel_cur;
343 }
Benjamin Kramer685a2502011-07-20 19:37:35 +0000344 }
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000345 }
346 }
347}
348
Michael J. Spencer27781b72011-10-08 00:18:30 +0000349static void PrintRelocations(const ObjectFile *o) {
350 error_code ec;
351 for (section_iterator si = o->begin_sections(), se = o->end_sections();
352 si != se; si.increment(ec)){
353 if (error(ec)) return;
354 if (si->begin_relocations() == si->end_relocations())
355 continue;
356 StringRef secname;
357 if (error(si->getName(secname))) continue;
358 outs() << "RELOCATION RECORDS FOR [" << secname << "]:\n";
359 for (relocation_iterator ri = si->begin_relocations(),
360 re = si->end_relocations();
361 ri != re; ri.increment(ec)) {
362 if (error(ec)) return;
363
Owen Anderson0685e942011-10-25 20:35:53 +0000364 bool hidden;
Michael J. Spencer27781b72011-10-08 00:18:30 +0000365 uint64_t address;
366 SmallString<32> relocname;
367 SmallString<32> valuestr;
Owen Anderson0685e942011-10-25 20:35:53 +0000368 if (error(ri->getHidden(hidden))) continue;
369 if (hidden) continue;
Michael J. Spencer27781b72011-10-08 00:18:30 +0000370 if (error(ri->getTypeName(relocname))) continue;
371 if (error(ri->getAddress(address))) continue;
372 if (error(ri->getValueString(valuestr))) continue;
373 outs() << address << " " << relocname << " " << valuestr << "\n";
374 }
375 outs() << "\n";
376 }
377}
378
Nick Lewycky023bb152011-10-10 21:21:34 +0000379static void PrintSectionHeaders(const ObjectFile *o) {
380 outs() << "Sections:\n"
381 "Idx Name Size Address Type\n";
382 error_code ec;
383 unsigned i = 0;
384 for (section_iterator si = o->begin_sections(), se = o->end_sections();
385 si != se; si.increment(ec)) {
386 if (error(ec)) return;
387 StringRef Name;
388 if (error(si->getName(Name))) return;
389 uint64_t Address;
390 if (error(si->getAddress(Address))) return;
391 uint64_t Size;
392 if (error(si->getSize(Size))) return;
393 bool Text, Data, BSS;
394 if (error(si->isText(Text))) return;
395 if (error(si->isData(Data))) return;
396 if (error(si->isBSS(BSS))) return;
397 std::string Type = (std::string(Text ? "TEXT " : "") +
Michael J. Spencer14a5f462011-10-13 20:37:20 +0000398 (Data ? "DATA " : "") + (BSS ? "BSS" : ""));
Benjamin Kramer51cf8662012-03-10 02:04:38 +0000399 outs() << format("%3d %-13s %09" PRIx64 " %017" PRIx64 " %s\n",
400 i, Name.str().c_str(), Size, Address, Type.c_str());
Nick Lewycky023bb152011-10-10 21:21:34 +0000401 ++i;
402 }
403}
404
Michael J. Spencer1e8ba3f2011-10-17 17:13:22 +0000405static void PrintSectionContents(const ObjectFile *o) {
406 error_code ec;
407 for (section_iterator si = o->begin_sections(),
408 se = o->end_sections();
409 si != se; si.increment(ec)) {
410 if (error(ec)) return;
411 StringRef Name;
412 StringRef Contents;
413 uint64_t BaseAddr;
414 if (error(si->getName(Name))) continue;
415 if (error(si->getContents(Contents))) continue;
416 if (error(si->getAddress(BaseAddr))) continue;
417
418 outs() << "Contents of section " << Name << ":\n";
419
420 // Dump out the content as hex and printable ascii characters.
421 for (std::size_t addr = 0, end = Contents.size(); addr < end; addr += 16) {
Benjamin Kramer51cf8662012-03-10 02:04:38 +0000422 outs() << format(" %04" PRIx64 " ", BaseAddr + addr);
Michael J. Spencer1e8ba3f2011-10-17 17:13:22 +0000423 // Dump line of hex.
424 for (std::size_t i = 0; i < 16; ++i) {
425 if (i != 0 && i % 4 == 0)
426 outs() << ' ';
427 if (addr + i < end)
428 outs() << hexdigit((Contents[addr + i] >> 4) & 0xF, true)
429 << hexdigit(Contents[addr + i] & 0xF, true);
430 else
431 outs() << " ";
432 }
433 // Print ascii.
434 outs() << " ";
435 for (std::size_t i = 0; i < 16 && addr + i < end; ++i) {
436 if (std::isprint(Contents[addr + i] & 0xFF))
437 outs() << Contents[addr + i];
438 else
439 outs() << ".";
440 }
441 outs() << "\n";
442 }
443 }
444}
445
Michael J. Spencer22ff0f32011-10-18 19:32:17 +0000446static void PrintCOFFSymbolTable(const COFFObjectFile *coff) {
447 const coff_file_header *header;
448 if (error(coff->getHeader(header))) return;
449 int aux_count = 0;
450 const coff_symbol *symbol = 0;
451 for (int i = 0, e = header->NumberOfSymbols; i != e; ++i) {
452 if (aux_count--) {
453 // Figure out which type of aux this is.
454 if (symbol->StorageClass == COFF::IMAGE_SYM_CLASS_STATIC
455 && symbol->Value == 0) { // Section definition.
456 const coff_aux_section_definition *asd;
457 if (error(coff->getAuxSymbol<coff_aux_section_definition>(i, asd)))
458 return;
459 outs() << "AUX "
460 << format("scnlen 0x%x nreloc %d nlnno %d checksum 0x%x "
461 , unsigned(asd->Length)
462 , unsigned(asd->NumberOfRelocations)
463 , unsigned(asd->NumberOfLinenumbers)
464 , unsigned(asd->CheckSum))
465 << format("assoc %d comdat %d\n"
466 , unsigned(asd->Number)
467 , unsigned(asd->Selection));
468 } else {
469 outs() << "AUX Unknown\n";
470 }
471 } else {
472 StringRef name;
473 if (error(coff->getSymbol(i, symbol))) return;
474 if (error(coff->getSymbolName(symbol, name))) return;
475 outs() << "[" << format("%2d", i) << "]"
476 << "(sec " << format("%2d", int(symbol->SectionNumber)) << ")"
477 << "(fl 0x00)" // Flag bits, which COFF doesn't have.
478 << "(ty " << format("%3x", unsigned(symbol->Type)) << ")"
479 << "(scl " << format("%3x", unsigned(symbol->StorageClass)) << ") "
480 << "(nx " << unsigned(symbol->NumberOfAuxSymbols) << ") "
481 << "0x" << format("%08x", unsigned(symbol->Value)) << " "
482 << name << "\n";
483 aux_count = symbol->NumberOfAuxSymbols;
484 }
485 }
486}
487
488static void PrintSymbolTable(const ObjectFile *o) {
489 outs() << "SYMBOL TABLE:\n";
490
491 if (const COFFObjectFile *coff = dyn_cast<const COFFObjectFile>(o))
492 PrintCOFFSymbolTable(coff);
493 else {
494 error_code ec;
495 for (symbol_iterator si = o->begin_symbols(),
496 se = o->end_symbols(); si != se; si.increment(ec)) {
497 if (error(ec)) return;
498 StringRef Name;
Danil Malyshevb0436a72011-11-29 17:40:10 +0000499 uint64_t Address;
Michael J. Spencer22ff0f32011-10-18 19:32:17 +0000500 SymbolRef::Type Type;
Michael J. Spencer22ff0f32011-10-18 19:32:17 +0000501 uint64_t Size;
David Meyerc46255a2012-02-28 23:47:53 +0000502 uint32_t Flags;
Michael J. Spencer22ff0f32011-10-18 19:32:17 +0000503 section_iterator Section = o->end_sections();
504 if (error(si->getName(Name))) continue;
Danil Malyshevb0436a72011-11-29 17:40:10 +0000505 if (error(si->getAddress(Address))) continue;
David Meyerc46255a2012-02-28 23:47:53 +0000506 if (error(si->getFlags(Flags))) continue;
Michael J. Spencer22ff0f32011-10-18 19:32:17 +0000507 if (error(si->getType(Type))) continue;
Michael J. Spencer22ff0f32011-10-18 19:32:17 +0000508 if (error(si->getSize(Size))) continue;
509 if (error(si->getSection(Section))) continue;
510
David Meyerc46255a2012-02-28 23:47:53 +0000511 bool Global = Flags & SymbolRef::SF_Global;
512 bool Weak = Flags & SymbolRef::SF_Weak;
513 bool Absolute = Flags & SymbolRef::SF_Absolute;
514
Danil Malyshevb0436a72011-11-29 17:40:10 +0000515 if (Address == UnknownAddressOrSize)
516 Address = 0;
517 if (Size == UnknownAddressOrSize)
518 Size = 0;
Michael J. Spencer22ff0f32011-10-18 19:32:17 +0000519 char GlobLoc = ' ';
David Meyer2c677272012-02-29 02:11:55 +0000520 if (Type != SymbolRef::ST_Unknown)
Michael J. Spencer22ff0f32011-10-18 19:32:17 +0000521 GlobLoc = Global ? 'g' : 'l';
522 char Debug = (Type == SymbolRef::ST_Debug || Type == SymbolRef::ST_File)
523 ? 'd' : ' ';
524 char FileFunc = ' ';
525 if (Type == SymbolRef::ST_File)
526 FileFunc = 'f';
527 else if (Type == SymbolRef::ST_Function)
528 FileFunc = 'F';
529
Benjamin Kramer51cf8662012-03-10 02:04:38 +0000530 outs() << format("%08" PRIx64, Address) << " "
Michael J. Spencer22ff0f32011-10-18 19:32:17 +0000531 << GlobLoc // Local -> 'l', Global -> 'g', Neither -> ' '
532 << (Weak ? 'w' : ' ') // Weak?
533 << ' ' // Constructor. Not supported yet.
534 << ' ' // Warning. Not supported yet.
535 << ' ' // Indirect reference to another symbol.
536 << Debug // Debugging (d) or dynamic (D) symbol.
537 << FileFunc // Name of function (F), file (f) or object (O).
538 << ' ';
539 if (Absolute)
540 outs() << "*ABS*";
541 else if (Section == o->end_sections())
542 outs() << "*UND*";
543 else {
544 StringRef SectionName;
545 if (error(Section->getName(SectionName)))
546 SectionName = "";
547 outs() << SectionName;
548 }
549 outs() << '\t'
Benjamin Kramer51cf8662012-03-10 02:04:38 +0000550 << format("%08" PRIx64 " ", Size)
Michael J. Spencer22ff0f32011-10-18 19:32:17 +0000551 << Name
552 << '\n';
553 }
554 }
555}
556
Michael J. Spencer27781b72011-10-08 00:18:30 +0000557static void DumpObject(const ObjectFile *o) {
Michael J. Spencer1e8ba3f2011-10-17 17:13:22 +0000558 outs() << '\n';
559 outs() << o->getFileName()
560 << ":\tfile format " << o->getFileFormatName() << "\n\n";
561
Michael J. Spencer27781b72011-10-08 00:18:30 +0000562 if (Disassemble)
Michael J. Spencer942eb002011-10-13 22:17:18 +0000563 DisassembleObject(o, Relocations);
564 if (Relocations && !Disassemble)
Michael J. Spencer27781b72011-10-08 00:18:30 +0000565 PrintRelocations(o);
Nick Lewycky023bb152011-10-10 21:21:34 +0000566 if (SectionHeaders)
567 PrintSectionHeaders(o);
Michael J. Spencer1e8ba3f2011-10-17 17:13:22 +0000568 if (SectionContents)
569 PrintSectionContents(o);
Michael J. Spencer22ff0f32011-10-18 19:32:17 +0000570 if (SymbolTable)
571 PrintSymbolTable(o);
Michael J. Spencer27781b72011-10-08 00:18:30 +0000572}
573
574/// @brief Dump each object file in \a a;
575static void DumpArchive(const Archive *a) {
576 for (Archive::child_iterator i = a->begin_children(),
577 e = a->end_children(); i != e; ++i) {
578 OwningPtr<Binary> child;
579 if (error_code ec = i->getAsBinary(child)) {
Michael J. Spencerf81285c2011-11-16 01:24:41 +0000580 // Ignore non-object files.
581 if (ec != object_error::invalid_file_type)
582 errs() << ToolName << ": '" << a->getFileName() << "': " << ec.message()
583 << ".\n";
Michael J. Spencer27781b72011-10-08 00:18:30 +0000584 continue;
585 }
586 if (ObjectFile *o = dyn_cast<ObjectFile>(child.get()))
587 DumpObject(o);
588 else
589 errs() << ToolName << ": '" << a->getFileName() << "': "
590 << "Unrecognized file type.\n";
591 }
592}
593
594/// @brief Open file and figure out how to dump it.
595static void DumpInput(StringRef file) {
596 // If file isn't stdin, check that it exists.
597 if (file != "-" && !sys::fs::exists(file)) {
598 errs() << ToolName << ": '" << file << "': " << "No such file\n";
599 return;
600 }
601
602 if (MachO && Disassemble) {
603 DisassembleInputMachO(file);
604 return;
605 }
606
607 // Attempt to open the binary.
608 OwningPtr<Binary> binary;
609 if (error_code ec = createBinary(file, binary)) {
610 errs() << ToolName << ": '" << file << "': " << ec.message() << ".\n";
611 return;
612 }
613
614 if (Archive *a = dyn_cast<Archive>(binary.get())) {
615 DumpArchive(a);
616 } else if (ObjectFile *o = dyn_cast<ObjectFile>(binary.get())) {
617 DumpObject(o);
618 } else {
619 errs() << ToolName << ": '" << file << "': " << "Unrecognized file type.\n";
620 }
621}
622
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000623int main(int argc, char **argv) {
624 // Print a stack trace if we signal out.
625 sys::PrintStackTraceOnErrorSignal();
626 PrettyStackTraceProgram X(argc, argv);
627 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
628
629 // Initialize targets and assembly printers/parsers.
630 llvm::InitializeAllTargetInfos();
Evan Chenge78085a2011-07-22 21:58:54 +0000631 llvm::InitializeAllTargetMCs();
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000632 llvm::InitializeAllAsmParsers();
633 llvm::InitializeAllDisassemblers();
634
Pete Cooperff204962012-05-03 23:20:10 +0000635 // Register the target printer for --version.
636 cl::AddExtraVersionPrinter(TargetRegistry::printRegisteredTargetsForVersion);
637
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000638 cl::ParseCommandLineOptions(argc, argv, "llvm object file dumper\n");
639 TripleName = Triple::normalize(TripleName);
640
641 ToolName = argv[0];
642
643 // Defaults to a.out if no filenames specified.
644 if (InputFilenames.size() == 0)
645 InputFilenames.push_back("a.out");
646
Michael J. Spencer22ff0f32011-10-18 19:32:17 +0000647 if (!Disassemble
648 && !Relocations
649 && !SectionHeaders
650 && !SectionContents
651 && !SymbolTable) {
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000652 cl::PrintHelpMessage();
653 return 2;
654 }
655
Michael J. Spencer27781b72011-10-08 00:18:30 +0000656 std::for_each(InputFilenames.begin(), InputFilenames.end(),
657 DumpInput);
Michael J. Spencer92e1deb2011-01-20 06:39:06 +0000658
659 return 0;
660}