[Objdump] Output information about common symbols in a way closer to GNU objdump.
[oota-llvm.git] / tools / llvm-objdump / llvm-objdump.cpp
1 //===-- 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 // The flags and output of this program should be near identical to those of
15 // binutils objdump.
16 //
17 //===----------------------------------------------------------------------===//
18
19 #include "llvm-objdump.h"
20 #include "llvm/ADT/STLExtras.h"
21 #include "llvm/ADT/StringExtras.h"
22 #include "llvm/ADT/Triple.h"
23 #include "llvm/MC/MCAsmInfo.h"
24 #include "llvm/MC/MCContext.h"
25 #include "llvm/MC/MCDisassembler.h"
26 #include "llvm/MC/MCInst.h"
27 #include "llvm/MC/MCInstPrinter.h"
28 #include "llvm/MC/MCInstrAnalysis.h"
29 #include "llvm/MC/MCInstrInfo.h"
30 #include "llvm/MC/MCObjectFileInfo.h"
31 #include "llvm/MC/MCRegisterInfo.h"
32 #include "llvm/MC/MCRelocationInfo.h"
33 #include "llvm/MC/MCSubtargetInfo.h"
34 #include "llvm/Object/Archive.h"
35 #include "llvm/Object/COFF.h"
36 #include "llvm/Object/MachO.h"
37 #include "llvm/Object/ObjectFile.h"
38 #include "llvm/Support/Casting.h"
39 #include "llvm/Support/CommandLine.h"
40 #include "llvm/Support/Debug.h"
41 #include "llvm/Support/FileSystem.h"
42 #include "llvm/Support/Format.h"
43 #include "llvm/Support/GraphWriter.h"
44 #include "llvm/Support/Host.h"
45 #include "llvm/Support/ManagedStatic.h"
46 #include "llvm/Support/MemoryBuffer.h"
47 #include "llvm/Support/PrettyStackTrace.h"
48 #include "llvm/Support/Signals.h"
49 #include "llvm/Support/SourceMgr.h"
50 #include "llvm/Support/TargetRegistry.h"
51 #include "llvm/Support/TargetSelect.h"
52 #include "llvm/Support/raw_ostream.h"
53 #include <algorithm>
54 #include <cctype>
55 #include <cstring>
56 #include <system_error>
57
58 using namespace llvm;
59 using namespace object;
60
61 static cl::list<std::string>
62 InputFilenames(cl::Positional, cl::desc("<input object files>"),cl::ZeroOrMore);
63
64 cl::opt<bool>
65 llvm::Disassemble("disassemble",
66   cl::desc("Display assembler mnemonics for the machine instructions"));
67 static cl::alias
68 Disassembled("d", cl::desc("Alias for --disassemble"),
69              cl::aliasopt(Disassemble));
70
71 cl::opt<bool>
72 llvm::Relocations("r", cl::desc("Display the relocation entries in the file"));
73
74 cl::opt<bool>
75 llvm::SectionContents("s", cl::desc("Display the content of each section"));
76
77 cl::opt<bool>
78 llvm::SymbolTable("t", cl::desc("Display the symbol table"));
79
80 cl::opt<bool>
81 llvm::ExportsTrie("exports-trie", cl::desc("Display mach-o exported symbols"));
82
83 cl::opt<bool>
84 llvm::Rebase("rebase", cl::desc("Display mach-o rebasing info"));
85
86 cl::opt<bool>
87 llvm::Bind("bind", cl::desc("Display mach-o binding info"));
88
89 cl::opt<bool>
90 llvm::LazyBind("lazy-bind", cl::desc("Display mach-o lazy binding info"));
91
92 cl::opt<bool>
93 llvm::WeakBind("weak-bind", cl::desc("Display mach-o weak binding info"));
94
95 static cl::opt<bool>
96 MachOOpt("macho", cl::desc("Use MachO specific object file parser"));
97 static cl::alias
98 MachOm("m", cl::desc("Alias for --macho"), cl::aliasopt(MachOOpt));
99
100 cl::opt<std::string>
101 llvm::TripleName("triple", cl::desc("Target triple to disassemble for, "
102                                     "see -version for available targets"));
103
104 cl::opt<std::string>
105 llvm::MCPU("mcpu",
106      cl::desc("Target a specific cpu type (-mcpu=help for details)"),
107      cl::value_desc("cpu-name"),
108      cl::init(""));
109
110 cl::opt<std::string>
111 llvm::ArchName("arch-name", cl::desc("Target arch to disassemble for, "
112                                 "see -version for available targets"));
113
114 cl::opt<bool>
115 llvm::SectionHeaders("section-headers", cl::desc("Display summaries of the "
116                                                  "headers for each section."));
117 static cl::alias
118 SectionHeadersShort("headers", cl::desc("Alias for --section-headers"),
119                     cl::aliasopt(SectionHeaders));
120 static cl::alias
121 SectionHeadersShorter("h", cl::desc("Alias for --section-headers"),
122                       cl::aliasopt(SectionHeaders));
123
124 cl::list<std::string>
125 llvm::MAttrs("mattr",
126   cl::CommaSeparated,
127   cl::desc("Target specific attributes"),
128   cl::value_desc("a1,+a2,-a3,..."));
129
130 cl::opt<bool>
131 llvm::NoShowRawInsn("no-show-raw-insn", cl::desc("When disassembling "
132                                                  "instructions, do not print "
133                                                  "the instruction bytes."));
134
135 cl::opt<bool>
136 llvm::UnwindInfo("unwind-info", cl::desc("Display unwind information"));
137
138 static cl::alias
139 UnwindInfoShort("u", cl::desc("Alias for --unwind-info"),
140                 cl::aliasopt(UnwindInfo));
141
142 cl::opt<bool>
143 llvm::PrivateHeaders("private-headers",
144                      cl::desc("Display format specific file headers"));
145
146 static cl::alias
147 PrivateHeadersShort("p", cl::desc("Alias for --private-headers"),
148                     cl::aliasopt(PrivateHeaders));
149
150 static StringRef ToolName;
151 static int ReturnValue = EXIT_SUCCESS;
152
153 bool llvm::error(std::error_code EC) {
154   if (!EC)
155     return false;
156
157   outs() << ToolName << ": error reading file: " << EC.message() << ".\n";
158   outs().flush();
159   ReturnValue = EXIT_FAILURE;
160   return true;
161 }
162
163 static const Target *getTarget(const ObjectFile *Obj = nullptr) {
164   // Figure out the target triple.
165   llvm::Triple TheTriple("unknown-unknown-unknown");
166   if (TripleName.empty()) {
167     if (Obj) {
168       TheTriple.setArch(Triple::ArchType(Obj->getArch()));
169       // TheTriple defaults to ELF, and COFF doesn't have an environment:
170       // the best we can do here is indicate that it is mach-o.
171       if (Obj->isMachO())
172         TheTriple.setObjectFormat(Triple::MachO);
173
174       if (Obj->isCOFF()) {
175         const auto COFFObj = dyn_cast<COFFObjectFile>(Obj);
176         if (COFFObj->getArch() == Triple::thumb)
177           TheTriple.setTriple("thumbv7-windows");
178       }
179     }
180   } else
181     TheTriple.setTriple(Triple::normalize(TripleName));
182
183   // Get the target specific parser.
184   std::string Error;
185   const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple,
186                                                          Error);
187   if (!TheTarget) {
188     errs() << ToolName << ": " << Error;
189     return nullptr;
190   }
191
192   // Update the triple name and return the found target.
193   TripleName = TheTriple.getTriple();
194   return TheTarget;
195 }
196
197 void llvm::DumpBytes(StringRef bytes) {
198   static const char hex_rep[] = "0123456789abcdef";
199   // FIXME: The real way to do this is to figure out the longest instruction
200   //        and align to that size before printing. I'll fix this when I get
201   //        around to outputting relocations.
202   // 15 is the longest x86 instruction
203   // 3 is for the hex rep of a byte + a space.
204   // 1 is for the null terminator.
205   enum { OutputSize = (15 * 3) + 1 };
206   char output[OutputSize];
207
208   assert(bytes.size() <= 15
209     && "DumpBytes only supports instructions of up to 15 bytes");
210   memset(output, ' ', sizeof(output));
211   unsigned index = 0;
212   for (StringRef::iterator i = bytes.begin(),
213                            e = bytes.end(); i != e; ++i) {
214     output[index] = hex_rep[(*i & 0xF0) >> 4];
215     output[index + 1] = hex_rep[*i & 0xF];
216     index += 3;
217   }
218
219   output[sizeof(output) - 1] = 0;
220   outs() << output;
221 }
222
223 bool llvm::RelocAddressLess(RelocationRef a, RelocationRef b) {
224   uint64_t a_addr, b_addr;
225   if (error(a.getOffset(a_addr))) return false;
226   if (error(b.getOffset(b_addr))) return false;
227   return a_addr < b_addr;
228 }
229
230 static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) {
231   const Target *TheTarget = getTarget(Obj);
232   // getTarget() will have already issued a diagnostic if necessary, so
233   // just bail here if it failed.
234   if (!TheTarget)
235     return;
236
237   // Package up features to be passed to target/subtarget
238   std::string FeaturesStr;
239   if (MAttrs.size()) {
240     SubtargetFeatures Features;
241     for (unsigned i = 0; i != MAttrs.size(); ++i)
242       Features.AddFeature(MAttrs[i]);
243     FeaturesStr = Features.getString();
244   }
245
246   std::unique_ptr<const MCRegisterInfo> MRI(
247       TheTarget->createMCRegInfo(TripleName));
248   if (!MRI) {
249     errs() << "error: no register info for target " << TripleName << "\n";
250     return;
251   }
252
253   // Set up disassembler.
254   std::unique_ptr<const MCAsmInfo> AsmInfo(
255       TheTarget->createMCAsmInfo(*MRI, TripleName));
256   if (!AsmInfo) {
257     errs() << "error: no assembly info for target " << TripleName << "\n";
258     return;
259   }
260
261   std::unique_ptr<const MCSubtargetInfo> STI(
262       TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr));
263   if (!STI) {
264     errs() << "error: no subtarget info for target " << TripleName << "\n";
265     return;
266   }
267
268   std::unique_ptr<const MCInstrInfo> MII(TheTarget->createMCInstrInfo());
269   if (!MII) {
270     errs() << "error: no instruction info for target " << TripleName << "\n";
271     return;
272   }
273
274   std::unique_ptr<const MCObjectFileInfo> MOFI(new MCObjectFileInfo);
275   MCContext Ctx(AsmInfo.get(), MRI.get(), MOFI.get());
276
277   std::unique_ptr<MCDisassembler> DisAsm(
278     TheTarget->createMCDisassembler(*STI, Ctx));
279
280   if (!DisAsm) {
281     errs() << "error: no disassembler for target " << TripleName << "\n";
282     return;
283   }
284
285   std::unique_ptr<const MCInstrAnalysis> MIA(
286       TheTarget->createMCInstrAnalysis(MII.get()));
287
288   int AsmPrinterVariant = AsmInfo->getAssemblerDialect();
289   std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter(
290       AsmPrinterVariant, *AsmInfo, *MII, *MRI, *STI));
291   if (!IP) {
292     errs() << "error: no instruction printer for target " << TripleName
293       << '\n';
294     return;
295   }
296
297   StringRef Fmt = Obj->getBytesInAddress() > 4 ? "\t\t%016" PRIx64 ":  " :
298                                                  "\t\t\t%08" PRIx64 ":  ";
299
300   // Create a mapping, RelocSecs = SectionRelocMap[S], where sections
301   // in RelocSecs contain the relocations for section S.
302   std::error_code EC;
303   std::map<SectionRef, SmallVector<SectionRef, 1>> SectionRelocMap;
304   for (const SectionRef &Section : Obj->sections()) {
305     section_iterator Sec2 = Section.getRelocatedSection();
306     if (Sec2 != Obj->section_end())
307       SectionRelocMap[*Sec2].push_back(Section);
308   }
309
310   for (const SectionRef &Section : Obj->sections()) {
311     if (!Section.isText() || Section.isVirtual())
312       continue;
313
314     uint64_t SectionAddr = Section.getAddress();
315     uint64_t SectSize = Section.getSize();
316     if (!SectSize)
317       continue;
318
319     // Make a list of all the symbols in this section.
320     std::vector<std::pair<uint64_t, StringRef>> Symbols;
321     for (const SymbolRef &Symbol : Obj->symbols()) {
322       if (Section.containsSymbol(Symbol)) {
323         uint64_t Address;
324         if (error(Symbol.getAddress(Address)))
325           break;
326         if (Address == UnknownAddressOrSize)
327           continue;
328         Address -= SectionAddr;
329         if (Address >= SectSize)
330           continue;
331
332         StringRef Name;
333         if (error(Symbol.getName(Name)))
334           break;
335         Symbols.push_back(std::make_pair(Address, Name));
336       }
337     }
338
339     // Sort the symbols by address, just in case they didn't come in that way.
340     array_pod_sort(Symbols.begin(), Symbols.end());
341
342     // Make a list of all the relocations for this section.
343     std::vector<RelocationRef> Rels;
344     if (InlineRelocs) {
345       for (const SectionRef &RelocSec : SectionRelocMap[Section]) {
346         for (const RelocationRef &Reloc : RelocSec.relocations()) {
347           Rels.push_back(Reloc);
348         }
349       }
350     }
351
352     // Sort relocations by address.
353     std::sort(Rels.begin(), Rels.end(), RelocAddressLess);
354
355     StringRef SegmentName = "";
356     if (const MachOObjectFile *MachO = dyn_cast<const MachOObjectFile>(Obj)) {
357       DataRefImpl DR = Section.getRawDataRefImpl();
358       SegmentName = MachO->getSectionFinalSegmentName(DR);
359     }
360     StringRef name;
361     if (error(Section.getName(name)))
362       break;
363     outs() << "Disassembly of section ";
364     if (!SegmentName.empty())
365       outs() << SegmentName << ",";
366     outs() << name << ':';
367
368     // If the section has no symbols just insert a dummy one and disassemble
369     // the whole section.
370     if (Symbols.empty())
371       Symbols.push_back(std::make_pair(0, name));
372
373
374     SmallString<40> Comments;
375     raw_svector_ostream CommentStream(Comments);
376
377     StringRef BytesStr;
378     if (error(Section.getContents(BytesStr)))
379       break;
380     ArrayRef<uint8_t> Bytes(reinterpret_cast<const uint8_t *>(BytesStr.data()),
381                             BytesStr.size());
382
383     uint64_t Size;
384     uint64_t Index;
385
386     std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin();
387     std::vector<RelocationRef>::const_iterator rel_end = Rels.end();
388     // Disassemble symbol by symbol.
389     for (unsigned si = 0, se = Symbols.size(); si != se; ++si) {
390
391       uint64_t Start = Symbols[si].first;
392       // The end is either the section end or the beginning of the next symbol.
393       uint64_t End = (si == se - 1) ? SectSize : Symbols[si + 1].first;
394       // If this symbol has the same address as the next symbol, then skip it.
395       if (Start == End)
396         continue;
397
398       outs() << '\n' << Symbols[si].second << ":\n";
399
400 #ifndef NDEBUG
401       raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls();
402 #else
403       raw_ostream &DebugOut = nulls();
404 #endif
405
406       for (Index = Start; Index < End; Index += Size) {
407         MCInst Inst;
408
409         if (DisAsm->getInstruction(Inst, Size, Bytes.slice(Index),
410                                    SectionAddr + Index, DebugOut,
411                                    CommentStream)) {
412           outs() << format("%8" PRIx64 ":", SectionAddr + Index);
413           if (!NoShowRawInsn) {
414             outs() << "\t";
415             DumpBytes(StringRef(
416                 reinterpret_cast<const char *>(Bytes.data()) + Index, Size));
417           }
418           IP->printInst(&Inst, outs(), "");
419           outs() << CommentStream.str();
420           Comments.clear();
421           outs() << "\n";
422         } else {
423           errs() << ToolName << ": warning: invalid instruction encoding\n";
424           if (Size == 0)
425             Size = 1; // skip illegible bytes
426         }
427
428         // Print relocation for instruction.
429         while (rel_cur != rel_end) {
430           bool hidden = false;
431           uint64_t addr;
432           SmallString<16> name;
433           SmallString<32> val;
434
435           // If this relocation is hidden, skip it.
436           if (error(rel_cur->getHidden(hidden))) goto skip_print_rel;
437           if (hidden) goto skip_print_rel;
438
439           if (error(rel_cur->getOffset(addr))) goto skip_print_rel;
440           // Stop when rel_cur's address is past the current instruction.
441           if (addr >= Index + Size) break;
442           if (error(rel_cur->getTypeName(name))) goto skip_print_rel;
443           if (error(rel_cur->getValueString(val))) goto skip_print_rel;
444
445           outs() << format(Fmt.data(), SectionAddr + addr) << name
446                  << "\t" << val << "\n";
447
448         skip_print_rel:
449           ++rel_cur;
450         }
451       }
452     }
453   }
454 }
455
456 void llvm::PrintRelocations(const ObjectFile *Obj) {
457   StringRef Fmt = Obj->getBytesInAddress() > 4 ? "%016" PRIx64 :
458                                                  "%08" PRIx64;
459   // Regular objdump doesn't print relocations in non-relocatable object
460   // files.
461   if (!Obj->isRelocatableObject())
462     return;
463
464   for (const SectionRef &Section : Obj->sections()) {
465     if (Section.relocation_begin() == Section.relocation_end())
466       continue;
467     StringRef secname;
468     if (error(Section.getName(secname)))
469       continue;
470     outs() << "RELOCATION RECORDS FOR [" << secname << "]:\n";
471     for (const RelocationRef &Reloc : Section.relocations()) {
472       bool hidden;
473       uint64_t address;
474       SmallString<32> relocname;
475       SmallString<32> valuestr;
476       if (error(Reloc.getHidden(hidden)))
477         continue;
478       if (hidden)
479         continue;
480       if (error(Reloc.getTypeName(relocname)))
481         continue;
482       if (error(Reloc.getOffset(address)))
483         continue;
484       if (error(Reloc.getValueString(valuestr)))
485         continue;
486       outs() << format(Fmt.data(), address) << " " << relocname << " "
487              << valuestr << "\n";
488     }
489     outs() << "\n";
490   }
491 }
492
493 void llvm::PrintSectionHeaders(const ObjectFile *Obj) {
494   outs() << "Sections:\n"
495             "Idx Name          Size      Address          Type\n";
496   unsigned i = 0;
497   for (const SectionRef &Section : Obj->sections()) {
498     StringRef Name;
499     if (error(Section.getName(Name)))
500       return;
501     uint64_t Address = Section.getAddress();
502     uint64_t Size = Section.getSize();
503     bool Text = Section.isText();
504     bool Data = Section.isData();
505     bool BSS = Section.isBSS();
506     std::string Type = (std::string(Text ? "TEXT " : "") +
507                         (Data ? "DATA " : "") + (BSS ? "BSS" : ""));
508     outs() << format("%3d %-13s %08" PRIx64 " %016" PRIx64 " %s\n", i,
509                      Name.str().c_str(), Size, Address, Type.c_str());
510     ++i;
511   }
512 }
513
514 void llvm::PrintSectionContents(const ObjectFile *Obj) {
515   std::error_code EC;
516   for (const SectionRef &Section : Obj->sections()) {
517     StringRef Name;
518     StringRef Contents;
519     if (error(Section.getName(Name)))
520       continue;
521     uint64_t BaseAddr = Section.getAddress();
522     uint64_t Size = Section.getSize();
523     if (!Size)
524       continue;
525
526     outs() << "Contents of section " << Name << ":\n";
527     if (Section.isBSS()) {
528       outs() << format("<skipping contents of bss section at [%04" PRIx64
529                        ", %04" PRIx64 ")>\n",
530                        BaseAddr, BaseAddr + Size);
531       continue;
532     }
533
534     if (error(Section.getContents(Contents)))
535       continue;
536
537     // Dump out the content as hex and printable ascii characters.
538     for (std::size_t addr = 0, end = Contents.size(); addr < end; addr += 16) {
539       outs() << format(" %04" PRIx64 " ", BaseAddr + addr);
540       // Dump line of hex.
541       for (std::size_t i = 0; i < 16; ++i) {
542         if (i != 0 && i % 4 == 0)
543           outs() << ' ';
544         if (addr + i < end)
545           outs() << hexdigit((Contents[addr + i] >> 4) & 0xF, true)
546                  << hexdigit(Contents[addr + i] & 0xF, true);
547         else
548           outs() << "  ";
549       }
550       // Print ascii.
551       outs() << "  ";
552       for (std::size_t i = 0; i < 16 && addr + i < end; ++i) {
553         if (std::isprint(static_cast<unsigned char>(Contents[addr + i]) & 0xFF))
554           outs() << Contents[addr + i];
555         else
556           outs() << ".";
557       }
558       outs() << "\n";
559     }
560   }
561 }
562
563 static void PrintCOFFSymbolTable(const COFFObjectFile *coff) {
564   for (unsigned SI = 0, SE = coff->getNumberOfSymbols(); SI != SE; ++SI) {
565     ErrorOr<COFFSymbolRef> Symbol = coff->getSymbol(SI);
566     StringRef Name;
567     if (error(Symbol.getError()))
568       return;
569
570     if (error(coff->getSymbolName(*Symbol, Name)))
571       return;
572
573     outs() << "[" << format("%2d", SI) << "]"
574            << "(sec " << format("%2d", int(Symbol->getSectionNumber())) << ")"
575            << "(fl 0x00)" // Flag bits, which COFF doesn't have.
576            << "(ty " << format("%3x", unsigned(Symbol->getType())) << ")"
577            << "(scl " << format("%3x", unsigned(Symbol->getStorageClass())) << ") "
578            << "(nx " << unsigned(Symbol->getNumberOfAuxSymbols()) << ") "
579            << "0x" << format("%08x", unsigned(Symbol->getValue())) << " "
580            << Name << "\n";
581
582     for (unsigned AI = 0, AE = Symbol->getNumberOfAuxSymbols(); AI < AE; ++AI, ++SI) {
583       if (Symbol->isSectionDefinition()) {
584         const coff_aux_section_definition *asd;
585         if (error(coff->getAuxSymbol<coff_aux_section_definition>(SI + 1, asd)))
586           return;
587
588         int32_t AuxNumber = asd->getNumber(Symbol->isBigObj());
589
590         outs() << "AUX "
591                << format("scnlen 0x%x nreloc %d nlnno %d checksum 0x%x "
592                          , unsigned(asd->Length)
593                          , unsigned(asd->NumberOfRelocations)
594                          , unsigned(asd->NumberOfLinenumbers)
595                          , unsigned(asd->CheckSum))
596                << format("assoc %d comdat %d\n"
597                          , unsigned(AuxNumber)
598                          , unsigned(asd->Selection));
599       } else if (Symbol->isFileRecord()) {
600         const char *FileName;
601         if (error(coff->getAuxSymbol<char>(SI + 1, FileName)))
602           return;
603
604         StringRef Name(FileName, Symbol->getNumberOfAuxSymbols() *
605                                      coff->getSymbolTableEntrySize());
606         outs() << "AUX " << Name.rtrim(StringRef("\0", 1))  << '\n';
607
608         SI = SI + Symbol->getNumberOfAuxSymbols();
609         break;
610       } else {
611         outs() << "AUX Unknown\n";
612       }
613     }
614   }
615 }
616
617 void llvm::PrintSymbolTable(const ObjectFile *o) {
618   outs() << "SYMBOL TABLE:\n";
619
620   if (const COFFObjectFile *coff = dyn_cast<const COFFObjectFile>(o)) {
621     PrintCOFFSymbolTable(coff);
622     return;
623   }
624   for (const SymbolRef &Symbol : o->symbols()) {
625     StringRef Name;
626     uint64_t Address;
627     SymbolRef::Type Type;
628     uint64_t Size;
629     uint32_t Flags = Symbol.getFlags();
630     section_iterator Section = o->section_end();
631     if (error(Symbol.getName(Name)))
632       continue;
633     if (error(Symbol.getAddress(Address)))
634       continue;
635     if (error(Symbol.getType(Type)))
636       continue;
637     if (error(Symbol.getSize(Size)))
638       continue;
639     if (error(Symbol.getSection(Section)))
640       continue;
641
642     bool Global = Flags & SymbolRef::SF_Global;
643     bool Weak = Flags & SymbolRef::SF_Weak;
644     bool Absolute = Flags & SymbolRef::SF_Absolute;
645     bool Common = Flags & SymbolRef::SF_Common;
646
647     if (Common) {
648       uint32_t Alignment;
649       if (error(Symbol.getAlignment(Alignment)))
650         Alignment = 0;
651       Address = Size;
652       Size = Alignment;
653     }
654     if (Address == UnknownAddressOrSize)
655       Address = 0;
656     if (Size == UnknownAddressOrSize)
657       Size = 0;
658     char GlobLoc = ' ';
659     if (Type != SymbolRef::ST_Unknown)
660       GlobLoc = Global ? 'g' : 'l';
661     char Debug = (Type == SymbolRef::ST_Debug || Type == SymbolRef::ST_File)
662                  ? 'd' : ' ';
663     char FileFunc = ' ';
664     if (Type == SymbolRef::ST_File)
665       FileFunc = 'f';
666     else if (Type == SymbolRef::ST_Function)
667       FileFunc = 'F';
668
669     const char *Fmt = o->getBytesInAddress() > 4 ? "%016" PRIx64 :
670                                                    "%08" PRIx64;
671
672     outs() << format(Fmt, Address) << " "
673            << GlobLoc // Local -> 'l', Global -> 'g', Neither -> ' '
674            << (Weak ? 'w' : ' ') // Weak?
675            << ' ' // Constructor. Not supported yet.
676            << ' ' // Warning. Not supported yet.
677            << ' ' // Indirect reference to another symbol.
678            << Debug // Debugging (d) or dynamic (D) symbol.
679            << FileFunc // Name of function (F), file (f) or object (O).
680            << ' ';
681     if (Absolute) {
682       outs() << "*ABS*";
683     } else if (Common) {
684       outs() << "*COM*";
685     } else if (Section == o->section_end()) {
686       outs() << "*UND*";
687     } else {
688       if (const MachOObjectFile *MachO =
689           dyn_cast<const MachOObjectFile>(o)) {
690         DataRefImpl DR = Section->getRawDataRefImpl();
691         StringRef SegmentName = MachO->getSectionFinalSegmentName(DR);
692         outs() << SegmentName << ",";
693       }
694       StringRef SectionName;
695       if (error(Section->getName(SectionName)))
696         SectionName = "";
697       outs() << SectionName;
698     }
699     outs() << '\t'
700            << format("%08" PRIx64 " ", Size)
701            << Name
702            << '\n';
703   }
704 }
705
706 static void PrintUnwindInfo(const ObjectFile *o) {
707   outs() << "Unwind info:\n\n";
708
709   if (const COFFObjectFile *coff = dyn_cast<COFFObjectFile>(o)) {
710     printCOFFUnwindInfo(coff);
711   } else if (const MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(o))
712     printMachOUnwindInfo(MachO);
713   else {
714     // TODO: Extract DWARF dump tool to objdump.
715     errs() << "This operation is only currently supported "
716               "for COFF and MachO object files.\n";
717     return;
718   }
719 }
720
721 void llvm::printExportsTrie(const ObjectFile *o) {
722   outs() << "Exports trie:\n";
723   if (const MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(o))
724     printMachOExportsTrie(MachO);
725   else {
726     errs() << "This operation is only currently supported "
727               "for Mach-O executable files.\n";
728     return;
729   }
730 }
731
732 void llvm::printRebaseTable(const ObjectFile *o) {
733   outs() << "Rebase table:\n";
734   if (const MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(o))
735     printMachORebaseTable(MachO);
736   else {
737     errs() << "This operation is only currently supported "
738               "for Mach-O executable files.\n";
739     return;
740   }
741 }
742
743 void llvm::printBindTable(const ObjectFile *o) {
744   outs() << "Bind table:\n";
745   if (const MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(o))
746     printMachOBindTable(MachO);
747   else {
748     errs() << "This operation is only currently supported "
749               "for Mach-O executable files.\n";
750     return;
751   }
752 }
753
754 void llvm::printLazyBindTable(const ObjectFile *o) {
755   outs() << "Lazy bind table:\n";
756   if (const MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(o))
757     printMachOLazyBindTable(MachO);
758   else {
759     errs() << "This operation is only currently supported "
760               "for Mach-O executable files.\n";
761     return;
762   }
763 }
764
765 void llvm::printWeakBindTable(const ObjectFile *o) {
766   outs() << "Weak bind table:\n";
767   if (const MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(o))
768     printMachOWeakBindTable(MachO);
769   else {
770     errs() << "This operation is only currently supported "
771               "for Mach-O executable files.\n";
772     return;
773   }
774 }
775
776 static void printPrivateFileHeader(const ObjectFile *o) {
777   if (o->isELF()) {
778     printELFFileHeader(o);
779   } else if (o->isCOFF()) {
780     printCOFFFileHeader(o);
781   } else if (o->isMachO()) {
782     printMachOFileHeader(o);
783   }
784 }
785
786 static void DumpObject(const ObjectFile *o) {
787   outs() << '\n';
788   outs() << o->getFileName()
789          << ":\tfile format " << o->getFileFormatName() << "\n\n";
790
791   if (Disassemble)
792     DisassembleObject(o, Relocations);
793   if (Relocations && !Disassemble)
794     PrintRelocations(o);
795   if (SectionHeaders)
796     PrintSectionHeaders(o);
797   if (SectionContents)
798     PrintSectionContents(o);
799   if (SymbolTable)
800     PrintSymbolTable(o);
801   if (UnwindInfo)
802     PrintUnwindInfo(o);
803   if (PrivateHeaders)
804     printPrivateFileHeader(o);
805   if (ExportsTrie)
806     printExportsTrie(o);
807   if (Rebase)
808     printRebaseTable(o);
809   if (Bind)
810     printBindTable(o);
811   if (LazyBind)
812     printLazyBindTable(o);
813   if (WeakBind)
814     printWeakBindTable(o);
815 }
816
817 /// @brief Dump each object file in \a a;
818 static void DumpArchive(const Archive *a) {
819   for (Archive::child_iterator i = a->child_begin(), e = a->child_end(); i != e;
820        ++i) {
821     ErrorOr<std::unique_ptr<Binary>> ChildOrErr = i->getAsBinary();
822     if (std::error_code EC = ChildOrErr.getError()) {
823       // Ignore non-object files.
824       if (EC != object_error::invalid_file_type)
825         errs() << ToolName << ": '" << a->getFileName() << "': " << EC.message()
826                << ".\n";
827       continue;
828     }
829     if (ObjectFile *o = dyn_cast<ObjectFile>(&*ChildOrErr.get()))
830       DumpObject(o);
831     else
832       errs() << ToolName << ": '" << a->getFileName() << "': "
833               << "Unrecognized file type.\n";
834   }
835 }
836
837 /// @brief Open file and figure out how to dump it.
838 static void DumpInput(StringRef file) {
839   // If file isn't stdin, check that it exists.
840   if (file != "-" && !sys::fs::exists(file)) {
841     errs() << ToolName << ": '" << file << "': " << "No such file\n";
842     return;
843   }
844
845   // If we are using the Mach-O specific object file parser, then let it parse
846   // the file and process the command line options.  So the -arch flags can
847   // be used to select specific slices, etc.
848   if (MachOOpt) {
849     ParseInputMachO(file);
850     return;
851   }
852
853   // Attempt to open the binary.
854   ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(file);
855   if (std::error_code EC = BinaryOrErr.getError()) {
856     errs() << ToolName << ": '" << file << "': " << EC.message() << ".\n";
857     return;
858   }
859   Binary &Binary = *BinaryOrErr.get().getBinary();
860
861   if (Archive *a = dyn_cast<Archive>(&Binary))
862     DumpArchive(a);
863   else if (ObjectFile *o = dyn_cast<ObjectFile>(&Binary))
864     DumpObject(o);
865   else
866     errs() << ToolName << ": '" << file << "': " << "Unrecognized file type.\n";
867 }
868
869 int main(int argc, char **argv) {
870   // Print a stack trace if we signal out.
871   sys::PrintStackTraceOnErrorSignal();
872   PrettyStackTraceProgram X(argc, argv);
873   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
874
875   // Initialize targets and assembly printers/parsers.
876   llvm::InitializeAllTargetInfos();
877   llvm::InitializeAllTargetMCs();
878   llvm::InitializeAllAsmParsers();
879   llvm::InitializeAllDisassemblers();
880
881   // Register the target printer for --version.
882   cl::AddExtraVersionPrinter(TargetRegistry::printRegisteredTargetsForVersion);
883
884   cl::ParseCommandLineOptions(argc, argv, "llvm object file dumper\n");
885   TripleName = Triple::normalize(TripleName);
886
887   ToolName = argv[0];
888
889   // Defaults to a.out if no filenames specified.
890   if (InputFilenames.size() == 0)
891     InputFilenames.push_back("a.out");
892
893   if (!Disassemble
894       && !Relocations
895       && !SectionHeaders
896       && !SectionContents
897       && !SymbolTable
898       && !UnwindInfo
899       && !PrivateHeaders
900       && !ExportsTrie
901       && !Rebase
902       && !Bind
903       && !LazyBind
904       && !WeakBind
905       && !(UniversalHeaders && MachOOpt)
906       && !(ArchiveHeaders && MachOOpt)
907       && !(IndirectSymbols && MachOOpt)
908       && !(DataInCode && MachOOpt)) {
909     cl::PrintHelpMessage();
910     return 2;
911   }
912
913   std::for_each(InputFilenames.begin(), InputFilenames.end(),
914                 DumpInput);
915
916   return ReturnValue;
917 }