Next bit of support for llvm-objdump’s -private-headers for Mach-O files.
[oota-llvm.git] / tools / llvm-objdump / MachODump.cpp
1 //===-- MachODump.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 file implements the MachO-specific dumper for llvm-objdump.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm-objdump.h"
15 #include "llvm/ADT/STLExtras.h"
16 #include "llvm/ADT/StringExtras.h"
17 #include "llvm/ADT/Triple.h"
18 #include "llvm/DebugInfo/DIContext.h"
19 #include "llvm/MC/MCAsmInfo.h"
20 #include "llvm/MC/MCContext.h"
21 #include "llvm/MC/MCDisassembler.h"
22 #include "llvm/MC/MCInst.h"
23 #include "llvm/MC/MCInstPrinter.h"
24 #include "llvm/MC/MCInstrAnalysis.h"
25 #include "llvm/MC/MCInstrDesc.h"
26 #include "llvm/MC/MCInstrInfo.h"
27 #include "llvm/MC/MCRegisterInfo.h"
28 #include "llvm/MC/MCSubtargetInfo.h"
29 #include "llvm/Object/MachO.h"
30 #include "llvm/Support/Casting.h"
31 #include "llvm/Support/CommandLine.h"
32 #include "llvm/Support/Debug.h"
33 #include "llvm/Support/Endian.h"
34 #include "llvm/Support/Format.h"
35 #include "llvm/Support/GraphWriter.h"
36 #include "llvm/Support/MachO.h"
37 #include "llvm/Support/MemoryBuffer.h"
38 #include "llvm/Support/TargetRegistry.h"
39 #include "llvm/Support/TargetSelect.h"
40 #include "llvm/Support/raw_ostream.h"
41 #include <algorithm>
42 #include <cstring>
43 #include <system_error>
44 using namespace llvm;
45 using namespace object;
46
47 static cl::opt<bool>
48   UseDbg("g", cl::desc("Print line information from debug info if available"));
49
50 static cl::opt<std::string>
51   DSYMFile("dsym", cl::desc("Use .dSYM file for debug info"));
52
53 static std::string ThumbTripleName;
54
55 static const Target *GetTarget(const MachOObjectFile *MachOObj,
56                                const char **McpuDefault,
57                                const Target **ThumbTarget) {
58   // Figure out the target triple.
59   if (TripleName.empty()) {
60     llvm::Triple TT("unknown-unknown-unknown");
61     llvm::Triple ThumbTriple = Triple();
62     TT = MachOObj->getArch(McpuDefault, &ThumbTriple);
63     TripleName = TT.str();
64     ThumbTripleName = ThumbTriple.str();
65   }
66
67   // Get the target specific parser.
68   std::string Error;
69   const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
70   if (TheTarget && ThumbTripleName.empty())
71     return TheTarget;
72
73   *ThumbTarget = TargetRegistry::lookupTarget(ThumbTripleName, Error);
74   if (*ThumbTarget)
75     return TheTarget;
76
77   errs() << "llvm-objdump: error: unable to get target for '";
78   if (!TheTarget)
79     errs() << TripleName;
80   else
81     errs() << ThumbTripleName;
82   errs() << "', see --version and --triple.\n";
83   return nullptr;
84 }
85
86 struct SymbolSorter {
87   bool operator()(const SymbolRef &A, const SymbolRef &B) {
88     SymbolRef::Type AType, BType;
89     A.getType(AType);
90     B.getType(BType);
91
92     uint64_t AAddr, BAddr;
93     if (AType != SymbolRef::ST_Function)
94       AAddr = 0;
95     else
96       A.getAddress(AAddr);
97     if (BType != SymbolRef::ST_Function)
98       BAddr = 0;
99     else
100       B.getAddress(BAddr);
101     return AAddr < BAddr;
102   }
103 };
104
105 // Types for the storted data in code table that is built before disassembly
106 // and the predicate function to sort them.
107 typedef std::pair<uint64_t, DiceRef> DiceTableEntry;
108 typedef std::vector<DiceTableEntry> DiceTable;
109 typedef DiceTable::iterator dice_table_iterator;
110
111 static bool
112 compareDiceTableEntries(const DiceTableEntry i,
113                         const DiceTableEntry j) {
114   return i.first == j.first;
115 }
116
117 static void DumpDataInCode(const char *bytes, uint64_t Size,
118                            unsigned short Kind) {
119   uint64_t Value;
120
121   switch (Kind) {
122   case MachO::DICE_KIND_DATA:
123     switch (Size) {
124     case 4:
125       Value = bytes[3] << 24 |
126               bytes[2] << 16 |
127               bytes[1] << 8 |
128               bytes[0];
129       outs() << "\t.long " << Value;
130       break;
131     case 2:
132       Value = bytes[1] << 8 |
133               bytes[0];
134       outs() << "\t.short " << Value;
135       break;
136     case 1:
137       Value = bytes[0];
138       outs() << "\t.byte " << Value;
139       break;
140     }
141     outs() << "\t@ KIND_DATA\n";
142     break;
143   case MachO::DICE_KIND_JUMP_TABLE8:
144     Value = bytes[0];
145     outs() << "\t.byte " << Value << "\t@ KIND_JUMP_TABLE8";
146     break;
147   case MachO::DICE_KIND_JUMP_TABLE16:
148     Value = bytes[1] << 8 |
149             bytes[0];
150     outs() << "\t.short " << Value << "\t@ KIND_JUMP_TABLE16";
151     break;
152   case MachO::DICE_KIND_JUMP_TABLE32:
153     Value = bytes[3] << 24 |
154             bytes[2] << 16 |
155             bytes[1] << 8 |
156             bytes[0];
157     outs() << "\t.long " << Value << "\t@ KIND_JUMP_TABLE32";
158     break;
159   default:
160     outs() << "\t@ data in code kind = " << Kind << "\n";
161     break;
162   }
163 }
164
165 static void getSectionsAndSymbols(const MachO::mach_header Header,
166                                   MachOObjectFile *MachOObj,
167                                   std::vector<SectionRef> &Sections,
168                                   std::vector<SymbolRef> &Symbols,
169                                   SmallVectorImpl<uint64_t> &FoundFns,
170                                   uint64_t &BaseSegmentAddress) {
171   for (const SymbolRef &Symbol : MachOObj->symbols())
172     Symbols.push_back(Symbol);
173
174   for (const SectionRef &Section : MachOObj->sections()) {
175     StringRef SectName;
176     Section.getName(SectName);
177     Sections.push_back(Section);
178   }
179
180   MachOObjectFile::LoadCommandInfo Command =
181       MachOObj->getFirstLoadCommandInfo();
182   bool BaseSegmentAddressSet = false;
183   for (unsigned i = 0; ; ++i) {
184     if (Command.C.cmd == MachO::LC_FUNCTION_STARTS) {
185       // We found a function starts segment, parse the addresses for later
186       // consumption.
187       MachO::linkedit_data_command LLC =
188         MachOObj->getLinkeditDataLoadCommand(Command);
189
190       MachOObj->ReadULEB128s(LLC.dataoff, FoundFns);
191     }
192     else if (Command.C.cmd == MachO::LC_SEGMENT) {
193       MachO::segment_command SLC =
194         MachOObj->getSegmentLoadCommand(Command);
195       StringRef SegName = SLC.segname;
196       if(!BaseSegmentAddressSet && SegName != "__PAGEZERO") {
197         BaseSegmentAddressSet = true;
198         BaseSegmentAddress = SLC.vmaddr;
199       }
200     }
201
202     if (i == Header.ncmds - 1)
203       break;
204     else
205       Command = MachOObj->getNextLoadCommandInfo(Command);
206   }
207 }
208
209 static void DisassembleInputMachO2(StringRef Filename,
210                                    MachOObjectFile *MachOOF);
211
212 void llvm::DisassembleInputMachO(StringRef Filename) {
213   ErrorOr<std::unique_ptr<MemoryBuffer>> BuffOrErr =
214       MemoryBuffer::getFileOrSTDIN(Filename);
215   if (std::error_code EC = BuffOrErr.getError()) {
216     errs() << "llvm-objdump: " << Filename << ": " << EC.message() << "\n";
217     return;
218   }
219   std::unique_ptr<MemoryBuffer> Buff = std::move(BuffOrErr.get());
220
221   std::unique_ptr<MachOObjectFile> MachOOF = std::move(
222       ObjectFile::createMachOObjectFile(Buff.get()->getMemBufferRef()).get());
223
224   DisassembleInputMachO2(Filename, MachOOF.get());
225 }
226
227 static void DisassembleInputMachO2(StringRef Filename,
228                                    MachOObjectFile *MachOOF) {
229   const char *McpuDefault = nullptr;
230   const Target *ThumbTarget = nullptr;
231   const Target *TheTarget = GetTarget(MachOOF, &McpuDefault, &ThumbTarget);
232   if (!TheTarget) {
233     // GetTarget prints out stuff.
234     return;
235   }
236   if (MCPU.empty() && McpuDefault)
237     MCPU = McpuDefault;
238
239   std::unique_ptr<const MCInstrInfo> InstrInfo(TheTarget->createMCInstrInfo());
240   std::unique_ptr<MCInstrAnalysis> InstrAnalysis(
241       TheTarget->createMCInstrAnalysis(InstrInfo.get()));
242   std::unique_ptr<const MCInstrInfo> ThumbInstrInfo;
243   std::unique_ptr<MCInstrAnalysis> ThumbInstrAnalysis;
244   if (ThumbTarget) {
245     ThumbInstrInfo.reset(ThumbTarget->createMCInstrInfo());
246     ThumbInstrAnalysis.reset(
247         ThumbTarget->createMCInstrAnalysis(ThumbInstrInfo.get()));
248   }
249
250   // Package up features to be passed to target/subtarget
251   std::string FeaturesStr;
252   if (MAttrs.size()) {
253     SubtargetFeatures Features;
254     for (unsigned i = 0; i != MAttrs.size(); ++i)
255       Features.AddFeature(MAttrs[i]);
256     FeaturesStr = Features.getString();
257   }
258
259   // Set up disassembler.
260   std::unique_ptr<const MCRegisterInfo> MRI(
261       TheTarget->createMCRegInfo(TripleName));
262   std::unique_ptr<const MCAsmInfo> AsmInfo(
263       TheTarget->createMCAsmInfo(*MRI, TripleName));
264   std::unique_ptr<const MCSubtargetInfo> STI(
265       TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr));
266   MCContext Ctx(AsmInfo.get(), MRI.get(), nullptr);
267   std::unique_ptr<const MCDisassembler> DisAsm(
268       TheTarget->createMCDisassembler(*STI, Ctx));
269   int AsmPrinterVariant = AsmInfo->getAssemblerDialect();
270   std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter(
271       AsmPrinterVariant, *AsmInfo, *InstrInfo, *MRI, *STI));
272
273   if (!InstrAnalysis || !AsmInfo || !STI || !DisAsm || !IP) {
274     errs() << "error: couldn't initialize disassembler for target "
275            << TripleName << '\n';
276     return;
277   }
278
279   // Set up thumb disassembler.
280   std::unique_ptr<const MCRegisterInfo> ThumbMRI;
281   std::unique_ptr<const MCAsmInfo> ThumbAsmInfo;
282   std::unique_ptr<const MCSubtargetInfo> ThumbSTI;
283   std::unique_ptr<const MCDisassembler> ThumbDisAsm;
284   std::unique_ptr<MCInstPrinter> ThumbIP;
285   std::unique_ptr<MCContext> ThumbCtx;
286   if (ThumbTarget) {
287     ThumbMRI.reset(ThumbTarget->createMCRegInfo(ThumbTripleName));
288     ThumbAsmInfo.reset(
289         ThumbTarget->createMCAsmInfo(*ThumbMRI, ThumbTripleName));
290     ThumbSTI.reset(
291         ThumbTarget->createMCSubtargetInfo(ThumbTripleName, MCPU, FeaturesStr));
292     ThumbCtx.reset(new MCContext(ThumbAsmInfo.get(), ThumbMRI.get(), nullptr));
293     ThumbDisAsm.reset(ThumbTarget->createMCDisassembler(*ThumbSTI, *ThumbCtx));
294     int ThumbAsmPrinterVariant = ThumbAsmInfo->getAssemblerDialect();
295     ThumbIP.reset(ThumbTarget->createMCInstPrinter(
296         ThumbAsmPrinterVariant, *ThumbAsmInfo, *ThumbInstrInfo, *ThumbMRI,
297         *ThumbSTI));
298   }
299
300   if (ThumbTarget && (!ThumbInstrAnalysis || !ThumbAsmInfo || !ThumbSTI ||
301                       !ThumbDisAsm || !ThumbIP)) {
302     errs() << "error: couldn't initialize disassembler for target "
303            << ThumbTripleName << '\n';
304     return;
305   }
306
307   outs() << '\n' << Filename << ":\n\n";
308
309   MachO::mach_header Header = MachOOF->getHeader();
310
311   // FIXME: FoundFns isn't used anymore. Using symbols/LC_FUNCTION_STARTS to
312   // determine function locations will eventually go in MCObjectDisassembler.
313   // FIXME: Using the -cfg command line option, this code used to be able to
314   // annotate relocations with the referenced symbol's name, and if this was
315   // inside a __[cf]string section, the data it points to. This is now replaced
316   // by the upcoming MCSymbolizer, which needs the appropriate setup done above.
317   std::vector<SectionRef> Sections;
318   std::vector<SymbolRef> Symbols;
319   SmallVector<uint64_t, 8> FoundFns;
320   uint64_t BaseSegmentAddress;
321
322   getSectionsAndSymbols(Header, MachOOF, Sections, Symbols, FoundFns,
323                         BaseSegmentAddress);
324
325   // Sort the symbols by address, just in case they didn't come in that way.
326   std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());
327
328   // Build a data in code table that is sorted on by the address of each entry.
329   uint64_t BaseAddress = 0;
330   if (Header.filetype == MachO::MH_OBJECT)
331     Sections[0].getAddress(BaseAddress);
332   else
333     BaseAddress = BaseSegmentAddress;
334   DiceTable Dices;
335   for (dice_iterator DI = MachOOF->begin_dices(), DE = MachOOF->end_dices();
336        DI != DE; ++DI) {
337     uint32_t Offset;
338     DI->getOffset(Offset);
339     Dices.push_back(std::make_pair(BaseAddress + Offset, *DI));
340   }
341   array_pod_sort(Dices.begin(), Dices.end());
342
343 #ifndef NDEBUG
344   raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls();
345 #else
346   raw_ostream &DebugOut = nulls();
347 #endif
348
349   std::unique_ptr<DIContext> diContext;
350   ObjectFile *DbgObj = MachOOF;
351   // Try to find debug info and set up the DIContext for it.
352   if (UseDbg) {
353     // A separate DSym file path was specified, parse it as a macho file,
354     // get the sections and supply it to the section name parsing machinery.
355     if (!DSYMFile.empty()) {
356       ErrorOr<std::unique_ptr<MemoryBuffer>> BufOrErr =
357           MemoryBuffer::getFileOrSTDIN(DSYMFile);
358       if (std::error_code EC = BufOrErr.getError()) {
359         errs() << "llvm-objdump: " << Filename << ": " << EC.message() << '\n';
360         return;
361       }
362       DbgObj =
363           ObjectFile::createMachOObjectFile(BufOrErr.get()->getMemBufferRef())
364               .get()
365               .release();
366     }
367
368     // Setup the DIContext
369     diContext.reset(DIContext::getDWARFContext(*DbgObj));
370   }
371
372   for (unsigned SectIdx = 0; SectIdx != Sections.size(); SectIdx++) {
373
374     bool SectIsText = false;
375     Sections[SectIdx].isText(SectIsText);
376     if (SectIsText == false)
377       continue;
378
379     StringRef SectName;
380     if (Sections[SectIdx].getName(SectName) ||
381         SectName != "__text")
382       continue; // Skip non-text sections
383
384     DataRefImpl DR = Sections[SectIdx].getRawDataRefImpl();
385
386     StringRef SegmentName = MachOOF->getSectionFinalSegmentName(DR);
387     if (SegmentName != "__TEXT")
388       continue;
389
390     StringRef Bytes;
391     Sections[SectIdx].getContents(Bytes);
392     StringRefMemoryObject memoryObject(Bytes);
393     bool symbolTableWorked = false;
394
395     // Parse relocations.
396     std::vector<std::pair<uint64_t, SymbolRef>> Relocs;
397     for (const RelocationRef &Reloc : Sections[SectIdx].relocations()) {
398       uint64_t RelocOffset, SectionAddress;
399       Reloc.getOffset(RelocOffset);
400       Sections[SectIdx].getAddress(SectionAddress);
401       RelocOffset -= SectionAddress;
402
403       symbol_iterator RelocSym = Reloc.getSymbol();
404
405       Relocs.push_back(std::make_pair(RelocOffset, *RelocSym));
406     }
407     array_pod_sort(Relocs.begin(), Relocs.end());
408
409     // Disassemble symbol by symbol.
410     for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) {
411       StringRef SymName;
412       Symbols[SymIdx].getName(SymName);
413
414       SymbolRef::Type ST;
415       Symbols[SymIdx].getType(ST);
416       if (ST != SymbolRef::ST_Function)
417         continue;
418
419       // Make sure the symbol is defined in this section.
420       bool containsSym = false;
421       Sections[SectIdx].containsSymbol(Symbols[SymIdx], containsSym);
422       if (!containsSym)
423         continue;
424
425       // Start at the address of the symbol relative to the section's address.
426       uint64_t SectionAddress = 0;
427       uint64_t Start = 0;
428       Sections[SectIdx].getAddress(SectionAddress);
429       Symbols[SymIdx].getAddress(Start);
430       Start -= SectionAddress;
431
432       // Stop disassembling either at the beginning of the next symbol or at
433       // the end of the section.
434       bool containsNextSym = false;
435       uint64_t NextSym = 0;
436       uint64_t NextSymIdx = SymIdx+1;
437       while (Symbols.size() > NextSymIdx) {
438         SymbolRef::Type NextSymType;
439         Symbols[NextSymIdx].getType(NextSymType);
440         if (NextSymType == SymbolRef::ST_Function) {
441           Sections[SectIdx].containsSymbol(Symbols[NextSymIdx],
442                                            containsNextSym);
443           Symbols[NextSymIdx].getAddress(NextSym);
444           NextSym -= SectionAddress;
445           break;
446         }
447         ++NextSymIdx;
448       }
449
450       uint64_t SectSize;
451       Sections[SectIdx].getSize(SectSize);
452       uint64_t End = containsNextSym ?  NextSym : SectSize;
453       uint64_t Size;
454
455       symbolTableWorked = true;
456
457       DataRefImpl Symb = Symbols[SymIdx].getRawDataRefImpl();
458       bool isThumb =
459           (MachOOF->getSymbolFlags(Symb) & SymbolRef::SF_Thumb) && ThumbTarget;
460
461       outs() << SymName << ":\n";
462       DILineInfo lastLine;
463       for (uint64_t Index = Start; Index < End; Index += Size) {
464         MCInst Inst;
465
466         uint64_t SectAddress = 0;
467         Sections[SectIdx].getAddress(SectAddress);
468         outs() << format("%8" PRIx64 ":\t", SectAddress + Index);
469
470         // Check the data in code table here to see if this is data not an
471         // instruction to be disassembled.
472         DiceTable Dice;
473         Dice.push_back(std::make_pair(SectAddress + Index, DiceRef()));
474         dice_table_iterator DTI = std::search(Dices.begin(), Dices.end(),
475                                               Dice.begin(), Dice.end(),
476                                               compareDiceTableEntries);
477         if (DTI != Dices.end()){
478           uint16_t Length;
479           DTI->second.getLength(Length);
480           DumpBytes(StringRef(Bytes.data() + Index, Length));
481           uint16_t Kind;
482           DTI->second.getKind(Kind);
483           DumpDataInCode(Bytes.data() + Index, Length, Kind);
484           continue;
485         }
486
487         bool gotInst;
488         if (isThumb)
489           gotInst = ThumbDisAsm->getInstruction(Inst, Size, memoryObject, Index,
490                                      DebugOut, nulls());
491         else
492           gotInst = DisAsm->getInstruction(Inst, Size, memoryObject, Index,
493                                      DebugOut, nulls());
494         if (gotInst) {
495           DumpBytes(StringRef(Bytes.data() + Index, Size));
496           if (isThumb)
497             ThumbIP->printInst(&Inst, outs(), "");
498           else
499             IP->printInst(&Inst, outs(), "");
500
501           // Print debug info.
502           if (diContext) {
503             DILineInfo dli =
504               diContext->getLineInfoForAddress(SectAddress + Index);
505             // Print valid line info if it changed.
506             if (dli != lastLine && dli.Line != 0)
507               outs() << "\t## " << dli.FileName << ':' << dli.Line << ':'
508                      << dli.Column;
509             lastLine = dli;
510           }
511           outs() << "\n";
512         } else {
513           errs() << "llvm-objdump: warning: invalid instruction encoding\n";
514           if (Size == 0)
515             Size = 1; // skip illegible bytes
516         }
517       }
518     }
519     if (!symbolTableWorked) {
520       // Reading the symbol table didn't work, disassemble the whole section. 
521       uint64_t SectAddress;
522       Sections[SectIdx].getAddress(SectAddress);
523       uint64_t SectSize;
524       Sections[SectIdx].getSize(SectSize);
525       uint64_t InstSize;
526       for (uint64_t Index = 0; Index < SectSize; Index += InstSize) {
527         MCInst Inst;
528
529         if (DisAsm->getInstruction(Inst, InstSize, memoryObject, Index,
530                                    DebugOut, nulls())) {
531           outs() << format("%8" PRIx64 ":\t", SectAddress + Index);
532           DumpBytes(StringRef(Bytes.data() + Index, InstSize));
533           IP->printInst(&Inst, outs(), "");
534           outs() << "\n";
535         } else {
536           errs() << "llvm-objdump: warning: invalid instruction encoding\n";
537           if (InstSize == 0)
538             InstSize = 1; // skip illegible bytes
539         }
540       }
541     }
542   }
543 }
544
545
546 //===----------------------------------------------------------------------===//
547 // __compact_unwind section dumping
548 //===----------------------------------------------------------------------===//
549
550 namespace {
551
552 template <typename T> static uint64_t readNext(const char *&Buf) {
553     using llvm::support::little;
554     using llvm::support::unaligned;
555
556     uint64_t Val = support::endian::read<T, little, unaligned>(Buf);
557     Buf += sizeof(T);
558     return Val;
559   }
560
561 struct CompactUnwindEntry {
562   uint32_t OffsetInSection;
563
564   uint64_t FunctionAddr;
565   uint32_t Length;
566   uint32_t CompactEncoding;
567   uint64_t PersonalityAddr;
568   uint64_t LSDAAddr;
569
570   RelocationRef FunctionReloc;
571   RelocationRef PersonalityReloc;
572   RelocationRef LSDAReloc;
573
574   CompactUnwindEntry(StringRef Contents, unsigned Offset, bool Is64)
575     : OffsetInSection(Offset) {
576     if (Is64)
577       read<uint64_t>(Contents.data() + Offset);
578     else
579       read<uint32_t>(Contents.data() + Offset);
580   }
581
582 private:
583   template<typename UIntPtr>
584   void read(const char *Buf) {
585     FunctionAddr = readNext<UIntPtr>(Buf);
586     Length = readNext<uint32_t>(Buf);
587     CompactEncoding = readNext<uint32_t>(Buf);
588     PersonalityAddr = readNext<UIntPtr>(Buf);
589     LSDAAddr = readNext<UIntPtr>(Buf);
590   }
591 };
592 }
593
594 /// Given a relocation from __compact_unwind, consisting of the RelocationRef
595 /// and data being relocated, determine the best base Name and Addend to use for
596 /// display purposes.
597 ///
598 /// 1. An Extern relocation will directly reference a symbol (and the data is
599 ///    then already an addend), so use that.
600 /// 2. Otherwise the data is an offset in the object file's layout; try to find
601 //     a symbol before it in the same section, and use the offset from there.
602 /// 3. Finally, if all that fails, fall back to an offset from the start of the
603 ///    referenced section.
604 static void findUnwindRelocNameAddend(const MachOObjectFile *Obj,
605                                       std::map<uint64_t, SymbolRef> &Symbols,
606                                       const RelocationRef &Reloc,
607                                       uint64_t Addr,
608                                       StringRef &Name, uint64_t &Addend) {
609   if (Reloc.getSymbol() != Obj->symbol_end()) {
610     Reloc.getSymbol()->getName(Name);
611     Addend = Addr;
612     return;
613   }
614
615   auto RE = Obj->getRelocation(Reloc.getRawDataRefImpl());
616   SectionRef RelocSection = Obj->getRelocationSection(RE);
617
618   uint64_t SectionAddr;
619   RelocSection.getAddress(SectionAddr);
620
621   auto Sym = Symbols.upper_bound(Addr);
622   if (Sym == Symbols.begin()) {
623     // The first symbol in the object is after this reference, the best we can
624     // do is section-relative notation.
625     RelocSection.getName(Name);
626     Addend = Addr - SectionAddr;
627     return;
628   }
629
630   // Go back one so that SymbolAddress <= Addr.
631   --Sym;
632
633   section_iterator SymSection = Obj->section_end();
634   Sym->second.getSection(SymSection);
635   if (RelocSection == *SymSection) {
636     // There's a valid symbol in the same section before this reference.
637     Sym->second.getName(Name);
638     Addend = Addr - Sym->first;
639     return;
640   }
641
642   // There is a symbol before this reference, but it's in a different
643   // section. Probably not helpful to mention it, so use the section name.
644   RelocSection.getName(Name);
645   Addend = Addr - SectionAddr;
646 }
647
648 static void printUnwindRelocDest(const MachOObjectFile *Obj,
649                                  std::map<uint64_t, SymbolRef> &Symbols,
650                                  const RelocationRef &Reloc,
651                                  uint64_t Addr) {
652   StringRef Name;
653   uint64_t Addend;
654
655   findUnwindRelocNameAddend(Obj, Symbols, Reloc, Addr, Name, Addend);
656
657   outs() << Name;
658   if (Addend)
659     outs() << " + " << format("0x%" PRIx64, Addend);
660 }
661
662 static void
663 printMachOCompactUnwindSection(const MachOObjectFile *Obj,
664                                std::map<uint64_t, SymbolRef> &Symbols,
665                                const SectionRef &CompactUnwind) {
666
667   assert(Obj->isLittleEndian() &&
668          "There should not be a big-endian .o with __compact_unwind");
669
670   bool Is64 = Obj->is64Bit();
671   uint32_t PointerSize = Is64 ? sizeof(uint64_t) : sizeof(uint32_t);
672   uint32_t EntrySize = 3 * PointerSize + 2 * sizeof(uint32_t);
673
674   StringRef Contents;
675   CompactUnwind.getContents(Contents);
676
677   SmallVector<CompactUnwindEntry, 4> CompactUnwinds;
678
679   // First populate the initial raw offsets, encodings and so on from the entry.
680   for (unsigned Offset = 0; Offset < Contents.size(); Offset += EntrySize) {
681     CompactUnwindEntry Entry(Contents.data(), Offset, Is64);
682     CompactUnwinds.push_back(Entry);
683   }
684
685   // Next we need to look at the relocations to find out what objects are
686   // actually being referred to.
687   for (const RelocationRef &Reloc : CompactUnwind.relocations()) {
688     uint64_t RelocAddress;
689     Reloc.getOffset(RelocAddress);
690
691     uint32_t EntryIdx = RelocAddress / EntrySize;
692     uint32_t OffsetInEntry = RelocAddress - EntryIdx * EntrySize;
693     CompactUnwindEntry &Entry = CompactUnwinds[EntryIdx];
694
695     if (OffsetInEntry == 0)
696       Entry.FunctionReloc = Reloc;
697     else if (OffsetInEntry == PointerSize + 2 * sizeof(uint32_t))
698       Entry.PersonalityReloc = Reloc;
699     else if (OffsetInEntry == 2 * PointerSize + 2 * sizeof(uint32_t))
700       Entry.LSDAReloc = Reloc;
701     else
702       llvm_unreachable("Unexpected relocation in __compact_unwind section");
703   }
704
705   // Finally, we're ready to print the data we've gathered.
706   outs() << "Contents of __compact_unwind section:\n";
707   for (auto &Entry : CompactUnwinds) {
708     outs() << "  Entry at offset "
709            << format("0x%" PRIx32, Entry.OffsetInSection) << ":\n";
710
711     // 1. Start of the region this entry applies to.
712     outs() << "    start:                "
713            << format("0x%" PRIx64, Entry.FunctionAddr) << ' ';
714     printUnwindRelocDest(Obj, Symbols, Entry.FunctionReloc,
715                          Entry.FunctionAddr);
716     outs() << '\n';
717
718     // 2. Length of the region this entry applies to.
719     outs() << "    length:               "
720            << format("0x%" PRIx32, Entry.Length) << '\n';
721     // 3. The 32-bit compact encoding.
722     outs() << "    compact encoding:     "
723            << format("0x%08" PRIx32, Entry.CompactEncoding) << '\n';
724
725     // 4. The personality function, if present.
726     if (Entry.PersonalityReloc.getObjectFile()) {
727       outs() << "    personality function: "
728              << format("0x%" PRIx64, Entry.PersonalityAddr) << ' ';
729       printUnwindRelocDest(Obj, Symbols, Entry.PersonalityReloc,
730                            Entry.PersonalityAddr);
731       outs() << '\n';
732     }
733
734     // 5. This entry's language-specific data area.
735     if (Entry.LSDAReloc.getObjectFile()) {
736       outs() << "    LSDA:                 "
737              << format("0x%" PRIx64, Entry.LSDAAddr) << ' ';
738       printUnwindRelocDest(Obj, Symbols, Entry.LSDAReloc, Entry.LSDAAddr);
739       outs() << '\n';
740     }
741   }
742 }
743
744 //===----------------------------------------------------------------------===//
745 // __unwind_info section dumping
746 //===----------------------------------------------------------------------===//
747
748 static void printRegularSecondLevelUnwindPage(const char *PageStart) {
749   const char *Pos = PageStart;
750   uint32_t Kind = readNext<uint32_t>(Pos);
751   (void)Kind;
752   assert(Kind == 2 && "kind for a regular 2nd level index should be 2");
753
754   uint16_t EntriesStart = readNext<uint16_t>(Pos);
755   uint16_t NumEntries = readNext<uint16_t>(Pos);
756
757   Pos = PageStart + EntriesStart;
758   for (unsigned i = 0; i < NumEntries; ++i) {
759     uint32_t FunctionOffset = readNext<uint32_t>(Pos);
760     uint32_t Encoding = readNext<uint32_t>(Pos);
761
762     outs() << "      [" << i << "]: "
763            << "function offset="
764            << format("0x%08" PRIx32, FunctionOffset) << ", "
765            << "encoding="
766            << format("0x%08" PRIx32, Encoding)
767            << '\n';
768   }
769 }
770
771 static void printCompressedSecondLevelUnwindPage(
772     const char *PageStart, uint32_t FunctionBase,
773     const SmallVectorImpl<uint32_t> &CommonEncodings) {
774   const char *Pos = PageStart;
775   uint32_t Kind = readNext<uint32_t>(Pos);
776   (void)Kind;
777   assert(Kind == 3 && "kind for a compressed 2nd level index should be 3");
778
779   uint16_t EntriesStart = readNext<uint16_t>(Pos);
780   uint16_t NumEntries = readNext<uint16_t>(Pos);
781
782   uint16_t EncodingsStart = readNext<uint16_t>(Pos);
783   readNext<uint16_t>(Pos);
784   const auto *PageEncodings = reinterpret_cast<const support::ulittle32_t *>(
785       PageStart + EncodingsStart);
786
787   Pos = PageStart + EntriesStart;
788   for (unsigned i = 0; i < NumEntries; ++i) {
789     uint32_t Entry = readNext<uint32_t>(Pos);
790     uint32_t FunctionOffset = FunctionBase + (Entry & 0xffffff);
791     uint32_t EncodingIdx = Entry >> 24;
792
793     uint32_t Encoding;
794     if (EncodingIdx < CommonEncodings.size())
795       Encoding = CommonEncodings[EncodingIdx];
796     else
797       Encoding = PageEncodings[EncodingIdx - CommonEncodings.size()];
798
799     outs() << "      [" << i << "]: "
800            << "function offset="
801            << format("0x%08" PRIx32, FunctionOffset) << ", "
802            << "encoding[" << EncodingIdx << "]="
803            << format("0x%08" PRIx32, Encoding)
804            << '\n';
805   }
806 }
807
808 static void
809 printMachOUnwindInfoSection(const MachOObjectFile *Obj,
810                             std::map<uint64_t, SymbolRef> &Symbols,
811                             const SectionRef &UnwindInfo) {
812
813   assert(Obj->isLittleEndian() &&
814          "There should not be a big-endian .o with __unwind_info");
815
816   outs() << "Contents of __unwind_info section:\n";
817
818   StringRef Contents;
819   UnwindInfo.getContents(Contents);
820   const char *Pos = Contents.data();
821
822   //===----------------------------------
823   // Section header
824   //===----------------------------------
825
826   uint32_t Version = readNext<uint32_t>(Pos);
827   outs() << "  Version:                                   "
828          << format("0x%" PRIx32, Version) << '\n';
829   assert(Version == 1 && "only understand version 1");
830
831   uint32_t CommonEncodingsStart = readNext<uint32_t>(Pos);
832   outs() << "  Common encodings array section offset:     "
833          << format("0x%" PRIx32, CommonEncodingsStart) << '\n';
834   uint32_t NumCommonEncodings = readNext<uint32_t>(Pos);
835   outs() << "  Number of common encodings in array:       "
836          << format("0x%" PRIx32, NumCommonEncodings) << '\n';
837
838   uint32_t PersonalitiesStart = readNext<uint32_t>(Pos);
839   outs() << "  Personality function array section offset: "
840          << format("0x%" PRIx32, PersonalitiesStart) << '\n';
841   uint32_t NumPersonalities = readNext<uint32_t>(Pos);
842   outs() << "  Number of personality functions in array:  "
843          << format("0x%" PRIx32, NumPersonalities) << '\n';
844
845   uint32_t IndicesStart = readNext<uint32_t>(Pos);
846   outs() << "  Index array section offset:                "
847          << format("0x%" PRIx32, IndicesStart) << '\n';
848   uint32_t NumIndices = readNext<uint32_t>(Pos);
849   outs() << "  Number of indices in array:                "
850          << format("0x%" PRIx32, NumIndices) << '\n';
851
852   //===----------------------------------
853   // A shared list of common encodings
854   //===----------------------------------
855
856   // These occupy indices in the range [0, N] whenever an encoding is referenced
857   // from a compressed 2nd level index table. In practice the linker only
858   // creates ~128 of these, so that indices are available to embed encodings in
859   // the 2nd level index.
860
861   SmallVector<uint32_t, 64> CommonEncodings;
862   outs() << "  Common encodings: (count = " << NumCommonEncodings << ")\n";
863   Pos = Contents.data() + CommonEncodingsStart;
864   for (unsigned i = 0; i < NumCommonEncodings; ++i) {
865     uint32_t Encoding = readNext<uint32_t>(Pos);
866     CommonEncodings.push_back(Encoding);
867
868     outs() << "    encoding[" << i << "]: " << format("0x%08" PRIx32, Encoding)
869            << '\n';
870   }
871
872
873   //===----------------------------------
874   // Personality functions used in this executable
875   //===----------------------------------
876
877   // There should be only a handful of these (one per source language,
878   // roughly). Particularly since they only get 2 bits in the compact encoding.
879
880   outs() << "  Personality functions: (count = " << NumPersonalities << ")\n";
881   Pos = Contents.data() + PersonalitiesStart;
882   for (unsigned i = 0; i < NumPersonalities; ++i) {
883     uint32_t PersonalityFn = readNext<uint32_t>(Pos);
884     outs() << "    personality[" << i + 1
885            << "]: " << format("0x%08" PRIx32, PersonalityFn) << '\n';
886   }
887
888   //===----------------------------------
889   // The level 1 index entries
890   //===----------------------------------
891
892   // These specify an approximate place to start searching for the more detailed
893   // information, sorted by PC.
894
895   struct IndexEntry {
896     uint32_t FunctionOffset;
897     uint32_t SecondLevelPageStart;
898     uint32_t LSDAStart;
899   };
900
901   SmallVector<IndexEntry, 4> IndexEntries;
902
903   outs() << "  Top level indices: (count = " << NumIndices << ")\n";
904   Pos = Contents.data() + IndicesStart;
905   for (unsigned i = 0; i < NumIndices; ++i) {
906     IndexEntry Entry;
907
908     Entry.FunctionOffset = readNext<uint32_t>(Pos);
909     Entry.SecondLevelPageStart = readNext<uint32_t>(Pos);
910     Entry.LSDAStart = readNext<uint32_t>(Pos);
911     IndexEntries.push_back(Entry);
912
913     outs() << "    [" << i << "]: "
914            << "function offset="
915            << format("0x%08" PRIx32, Entry.FunctionOffset) << ", "
916            << "2nd level page offset="
917            << format("0x%08" PRIx32, Entry.SecondLevelPageStart) << ", "
918            << "LSDA offset="
919            << format("0x%08" PRIx32, Entry.LSDAStart) << '\n';
920   }
921
922
923   //===----------------------------------
924   // Next come the LSDA tables
925   //===----------------------------------
926
927   // The LSDA layout is rather implicit: it's a contiguous array of entries from
928   // the first top-level index's LSDAOffset to the last (sentinel).
929
930   outs() << "  LSDA descriptors:\n";
931   Pos = Contents.data() + IndexEntries[0].LSDAStart;
932   int NumLSDAs = (IndexEntries.back().LSDAStart - IndexEntries[0].LSDAStart) /
933                  (2 * sizeof(uint32_t));
934   for (int i = 0; i < NumLSDAs; ++i) {
935     uint32_t FunctionOffset = readNext<uint32_t>(Pos);
936     uint32_t LSDAOffset = readNext<uint32_t>(Pos);
937     outs() << "    [" << i << "]: "
938            << "function offset="
939            << format("0x%08" PRIx32, FunctionOffset) << ", "
940            << "LSDA offset="
941            << format("0x%08" PRIx32, LSDAOffset) << '\n';
942   }
943
944   //===----------------------------------
945   // Finally, the 2nd level indices
946   //===----------------------------------
947
948   // Generally these are 4K in size, and have 2 possible forms:
949   //   + Regular stores up to 511 entries with disparate encodings
950   //   + Compressed stores up to 1021 entries if few enough compact encoding
951   //     values are used.
952   outs() << "  Second level indices:\n";
953   for (unsigned i = 0; i < IndexEntries.size() - 1; ++i) {
954     // The final sentinel top-level index has no associated 2nd level page
955     if (IndexEntries[i].SecondLevelPageStart == 0)
956       break;
957
958     outs() << "    Second level index[" << i << "]: "
959            << "offset in section="
960            << format("0x%08" PRIx32, IndexEntries[i].SecondLevelPageStart)
961            << ", "
962            << "base function offset="
963            << format("0x%08" PRIx32, IndexEntries[i].FunctionOffset) << '\n';
964
965     Pos = Contents.data() + IndexEntries[i].SecondLevelPageStart;
966     uint32_t Kind = *reinterpret_cast<const support::ulittle32_t *>(Pos);
967     if (Kind == 2)
968       printRegularSecondLevelUnwindPage(Pos);
969     else if (Kind == 3)
970       printCompressedSecondLevelUnwindPage(Pos, IndexEntries[i].FunctionOffset,
971                                            CommonEncodings);
972     else
973       llvm_unreachable("Do not know how to print this kind of 2nd level page");
974
975   }
976 }
977
978 void llvm::printMachOUnwindInfo(const MachOObjectFile *Obj) {
979   std::map<uint64_t, SymbolRef> Symbols;
980   for (const SymbolRef &SymRef : Obj->symbols()) {
981     // Discard any undefined or absolute symbols. They're not going to take part
982     // in the convenience lookup for unwind info and just take up resources.
983     section_iterator Section = Obj->section_end();
984     SymRef.getSection(Section);
985     if (Section == Obj->section_end())
986       continue;
987
988     uint64_t Addr;
989     SymRef.getAddress(Addr);
990     Symbols.insert(std::make_pair(Addr, SymRef));
991   }
992
993   for (const SectionRef &Section : Obj->sections()) {
994     StringRef SectName;
995     Section.getName(SectName);
996     if (SectName == "__compact_unwind")
997       printMachOCompactUnwindSection(Obj, Symbols, Section);
998     else if (SectName == "__unwind_info")
999       printMachOUnwindInfoSection(Obj, Symbols, Section);
1000     else if (SectName == "__eh_frame")
1001       outs() << "llvm-objdump: warning: unhandled __eh_frame section\n";
1002
1003   }
1004 }
1005
1006 static void PrintMachHeader(uint32_t magic, uint32_t cputype,
1007                             uint32_t cpusubtype, uint32_t filetype,
1008                             uint32_t ncmds, uint32_t sizeofcmds, uint32_t flags,
1009                             bool verbose) {
1010   outs() << "Mach header\n";
1011   outs() << "      magic cputype cpusubtype  caps    filetype ncmds "
1012             "sizeofcmds      flags\n";
1013   if (verbose) {
1014     if (magic == MachO::MH_MAGIC)
1015       outs() << "   MH_MAGIC";
1016     else if (magic == MachO::MH_MAGIC_64)
1017       outs() << "MH_MAGIC_64";
1018     else
1019       outs() << format(" 0x%08" PRIx32, magic);
1020     switch (cputype) {
1021     case MachO::CPU_TYPE_I386:
1022       outs() << "    I386";
1023       switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
1024       case MachO::CPU_SUBTYPE_I386_ALL:
1025         outs() << "        ALL";
1026         break;
1027       default:
1028         outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
1029         break;
1030       }
1031       break;
1032     case MachO::CPU_TYPE_X86_64:
1033       outs() << "  X86_64";
1034     case MachO::CPU_SUBTYPE_X86_64_ALL:
1035       outs() << "        ALL";
1036       break;
1037     case MachO::CPU_SUBTYPE_X86_64_H:
1038       outs() << "    Haswell";
1039       outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
1040       break;
1041     case MachO::CPU_TYPE_ARM:
1042       outs() << "     ARM";
1043       switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
1044       case MachO::CPU_SUBTYPE_ARM_ALL:
1045         outs() << "        ALL";
1046         break;
1047       case MachO::CPU_SUBTYPE_ARM_V4T:
1048         outs() << "        V4T";
1049         break;
1050       case MachO::CPU_SUBTYPE_ARM_V5TEJ:
1051         outs() << "      V5TEJ";
1052         break;
1053       case MachO::CPU_SUBTYPE_ARM_XSCALE:
1054         outs() << "     XSCALE";
1055         break;
1056       case MachO::CPU_SUBTYPE_ARM_V6:
1057         outs() << "         V6";
1058         break;
1059       case MachO::CPU_SUBTYPE_ARM_V6M:
1060         outs() << "        V6M";
1061         break;
1062       case MachO::CPU_SUBTYPE_ARM_V7:
1063         outs() << "         V7";
1064         break;
1065       case MachO::CPU_SUBTYPE_ARM_V7EM:
1066         outs() << "       V7EM";
1067         break;
1068       case MachO::CPU_SUBTYPE_ARM_V7K:
1069         outs() << "        V7K";
1070         break;
1071       case MachO::CPU_SUBTYPE_ARM_V7M:
1072         outs() << "        V7M";
1073         break;
1074       case MachO::CPU_SUBTYPE_ARM_V7S:
1075         outs() << "        V7S";
1076         break;
1077       default:
1078         outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
1079         break;
1080       }
1081       break;
1082     case MachO::CPU_TYPE_ARM64:
1083       outs() << "   ARM64";
1084       switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
1085       case MachO::CPU_SUBTYPE_ARM64_ALL:
1086         outs() << "        ALL";
1087         break;
1088       default:
1089         outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
1090         break;
1091       }
1092       break;
1093     case MachO::CPU_TYPE_POWERPC:
1094       outs() << "     PPC";
1095       switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
1096       case MachO::CPU_SUBTYPE_POWERPC_ALL:
1097         outs() << "        ALL";
1098         break;
1099       default:
1100         outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
1101         break;
1102       }
1103       break;
1104     case MachO::CPU_TYPE_POWERPC64:
1105       outs() << "   PPC64";
1106       switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
1107       case MachO::CPU_SUBTYPE_POWERPC_ALL:
1108         outs() << "        ALL";
1109         break;
1110       default:
1111         outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
1112         break;
1113       }
1114       break;
1115     }
1116     if ((cpusubtype & MachO::CPU_SUBTYPE_MASK) == MachO::CPU_SUBTYPE_LIB64) {
1117       outs() << " LIB64 ";
1118     } else {
1119       outs() << format("  0x%02" PRIx32,
1120                        (cpusubtype & MachO::CPU_SUBTYPE_MASK) >> 24);
1121     }
1122     switch (filetype) {
1123     case MachO::MH_OBJECT:
1124       outs() << "      OBJECT";
1125       break;
1126     case MachO::MH_EXECUTE:
1127       outs() << "     EXECUTE";
1128       break;
1129     case MachO::MH_FVMLIB:
1130       outs() << "      FVMLIB";
1131       break;
1132     case MachO::MH_CORE:
1133       outs() << "        CORE";
1134       break;
1135     case MachO::MH_PRELOAD:
1136       outs() << "     PRELOAD";
1137       break;
1138     case MachO::MH_DYLIB:
1139       outs() << "       DYLIB";
1140       break;
1141     case MachO::MH_DYLIB_STUB:
1142       outs() << "  DYLIB_STUB";
1143       break;
1144     case MachO::MH_DYLINKER:
1145       outs() << "    DYLINKER";
1146       break;
1147     case MachO::MH_BUNDLE:
1148       outs() << "      BUNDLE";
1149       break;
1150     case MachO::MH_DSYM:
1151       outs() << "        DSYM";
1152       break;
1153     case MachO::MH_KEXT_BUNDLE:
1154       outs() << "  KEXTBUNDLE";
1155       break;
1156     default:
1157       outs() << format("  %10u", filetype);
1158       break;
1159     }
1160     outs() << format(" %5u", ncmds);
1161     outs() << format(" %10u", sizeofcmds);
1162     uint32_t f = flags;
1163     if (f & MachO::MH_NOUNDEFS) {
1164       outs() << "   NOUNDEFS";
1165       f &= ~MachO::MH_NOUNDEFS;
1166     }
1167     if (f & MachO::MH_INCRLINK) {
1168       outs() << " INCRLINK";
1169       f &= ~MachO::MH_INCRLINK;
1170     }
1171     if (f & MachO::MH_DYLDLINK) {
1172       outs() << " DYLDLINK";
1173       f &= ~MachO::MH_DYLDLINK;
1174     }
1175     if (f & MachO::MH_BINDATLOAD) {
1176       outs() << " BINDATLOAD";
1177       f &= ~MachO::MH_BINDATLOAD;
1178     }
1179     if (f & MachO::MH_PREBOUND) {
1180       outs() << " PREBOUND";
1181       f &= ~MachO::MH_PREBOUND;
1182     }
1183     if (f & MachO::MH_SPLIT_SEGS) {
1184       outs() << " SPLIT_SEGS";
1185       f &= ~MachO::MH_SPLIT_SEGS;
1186     }
1187     if (f & MachO::MH_LAZY_INIT) {
1188       outs() << " LAZY_INIT";
1189       f &= ~MachO::MH_LAZY_INIT;
1190     }
1191     if (f & MachO::MH_TWOLEVEL) {
1192       outs() << " TWOLEVEL";
1193       f &= ~MachO::MH_TWOLEVEL;
1194     }
1195     if (f & MachO::MH_FORCE_FLAT) {
1196       outs() << " FORCE_FLAT";
1197       f &= ~MachO::MH_FORCE_FLAT;
1198     }
1199     if (f & MachO::MH_NOMULTIDEFS) {
1200       outs() << " NOMULTIDEFS";
1201       f &= ~MachO::MH_NOMULTIDEFS;
1202     }
1203     if (f & MachO::MH_NOFIXPREBINDING) {
1204       outs() << " NOFIXPREBINDING";
1205       f &= ~MachO::MH_NOFIXPREBINDING;
1206     }
1207     if (f & MachO::MH_PREBINDABLE) {
1208       outs() << " PREBINDABLE";
1209       f &= ~MachO::MH_PREBINDABLE;
1210     }
1211     if (f & MachO::MH_ALLMODSBOUND) {
1212       outs() << " ALLMODSBOUND";
1213       f &= ~MachO::MH_ALLMODSBOUND;
1214     }
1215     if (f & MachO::MH_SUBSECTIONS_VIA_SYMBOLS) {
1216       outs() << " SUBSECTIONS_VIA_SYMBOLS";
1217       f &= ~MachO::MH_SUBSECTIONS_VIA_SYMBOLS;
1218     }
1219     if (f & MachO::MH_CANONICAL) {
1220       outs() << " CANONICAL";
1221       f &= ~MachO::MH_CANONICAL;
1222     }
1223     if (f & MachO::MH_WEAK_DEFINES) {
1224       outs() << " WEAK_DEFINES";
1225       f &= ~MachO::MH_WEAK_DEFINES;
1226     }
1227     if (f & MachO::MH_BINDS_TO_WEAK) {
1228       outs() << " BINDS_TO_WEAK";
1229       f &= ~MachO::MH_BINDS_TO_WEAK;
1230     }
1231     if (f & MachO::MH_ALLOW_STACK_EXECUTION) {
1232       outs() << " ALLOW_STACK_EXECUTION";
1233       f &= ~MachO::MH_ALLOW_STACK_EXECUTION;
1234     }
1235     if (f & MachO::MH_DEAD_STRIPPABLE_DYLIB) {
1236       outs() << " DEAD_STRIPPABLE_DYLIB";
1237       f &= ~MachO::MH_DEAD_STRIPPABLE_DYLIB;
1238     }
1239     if (f & MachO::MH_PIE) {
1240       outs() << " PIE";
1241       f &= ~MachO::MH_PIE;
1242     }
1243     if (f & MachO::MH_NO_REEXPORTED_DYLIBS) {
1244       outs() << " NO_REEXPORTED_DYLIBS";
1245       f &= ~MachO::MH_NO_REEXPORTED_DYLIBS;
1246     }
1247     if (f & MachO::MH_HAS_TLV_DESCRIPTORS) {
1248       outs() << " MH_HAS_TLV_DESCRIPTORS";
1249       f &= ~MachO::MH_HAS_TLV_DESCRIPTORS;
1250     }
1251     if (f & MachO::MH_NO_HEAP_EXECUTION) {
1252       outs() << " MH_NO_HEAP_EXECUTION";
1253       f &= ~MachO::MH_NO_HEAP_EXECUTION;
1254     }
1255     if (f & MachO::MH_APP_EXTENSION_SAFE) {
1256       outs() << " APP_EXTENSION_SAFE";
1257       f &= ~MachO::MH_APP_EXTENSION_SAFE;
1258     }
1259     if (f != 0 || flags == 0)
1260       outs() << format(" 0x%08" PRIx32, f);
1261   } else {
1262     outs() << format(" 0x%08" PRIx32, magic);
1263     outs() << format(" %7d", cputype);
1264     outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
1265     outs() << format("  0x%02" PRIx32,
1266                      (cpusubtype & MachO::CPU_SUBTYPE_MASK) >> 24);
1267     outs() << format("  %10u", filetype);
1268     outs() << format(" %5u", ncmds);
1269     outs() << format(" %10u", sizeofcmds);
1270     outs() << format(" 0x%08" PRIx32, flags);
1271   }
1272   outs() << "\n";
1273 }
1274
1275 static void PrintSegmentCommand(uint32_t cmd, uint32_t cmdsize,
1276                                 StringRef SegName, uint64_t vmaddr,
1277                                 uint64_t vmsize, uint64_t fileoff,
1278                                 uint64_t filesize, uint32_t maxprot,
1279                                 uint32_t initprot, uint32_t nsects,
1280                                 uint32_t flags, uint32_t object_size,
1281                                 bool verbose) {
1282   uint64_t expected_cmdsize;
1283   if (cmd == MachO::LC_SEGMENT) {
1284     outs() << "      cmd LC_SEGMENT\n";
1285     expected_cmdsize = nsects;
1286     expected_cmdsize *= sizeof(struct MachO::section);
1287     expected_cmdsize += sizeof(struct MachO::segment_command);
1288   } else {
1289     outs() << "      cmd LC_SEGMENT_64\n";
1290     expected_cmdsize = nsects;
1291     expected_cmdsize *= sizeof(struct MachO::section_64);
1292     expected_cmdsize += sizeof(struct MachO::segment_command_64);
1293   }
1294   outs() << "  cmdsize " << cmdsize;
1295   if (cmdsize != expected_cmdsize)
1296     outs() << " Inconsistent size\n";
1297   else
1298     outs() << "\n";
1299   outs() << "  segname " << SegName << "\n";
1300   if (cmd == MachO::LC_SEGMENT_64) {
1301     outs() << "   vmaddr " << format("0x%016" PRIx64, vmaddr) << "\n";
1302     outs() << "   vmsize " << format("0x%016" PRIx64, vmsize) << "\n";
1303   } else {
1304     outs() << "   vmaddr " << format("0x%08" PRIx32, vmaddr) << "\n";
1305     outs() << "   vmsize " << format("0x%08" PRIx32, vmsize) << "\n";
1306   }
1307   outs() << "  fileoff " << fileoff;
1308   if (fileoff > object_size)
1309     outs() << " (past end of file)\n";
1310   else
1311     outs() << "\n";
1312   outs() << " filesize " << filesize;
1313   if (fileoff + filesize > object_size)
1314     outs() << " (past end of file)\n";
1315   else
1316     outs() << "\n";
1317   if (verbose) {
1318     if ((maxprot &
1319          ~(MachO::VM_PROT_READ | MachO::VM_PROT_WRITE |
1320            MachO::VM_PROT_EXECUTE)) != 0)
1321       outs() << "  maxprot ?" << format("0x%08" PRIx32, maxprot) << "\n";
1322     else {
1323       if (maxprot & MachO::VM_PROT_READ)
1324         outs() << "  maxprot r";
1325       else
1326         outs() << "  maxprot -";
1327       if (maxprot & MachO::VM_PROT_WRITE)
1328         outs() << "w";
1329       else
1330         outs() << "-";
1331       if (maxprot & MachO::VM_PROT_EXECUTE)
1332         outs() << "x\n";
1333       else
1334         outs() << "-\n";
1335     }
1336     if ((initprot &
1337          ~(MachO::VM_PROT_READ | MachO::VM_PROT_WRITE |
1338            MachO::VM_PROT_EXECUTE)) != 0)
1339       outs() << "  initprot ?" << format("0x%08" PRIx32, initprot) << "\n";
1340     else {
1341       if (initprot & MachO::VM_PROT_READ)
1342         outs() << " initprot r";
1343       else
1344         outs() << " initprot -";
1345       if (initprot & MachO::VM_PROT_WRITE)
1346         outs() << "w";
1347       else
1348         outs() << "-";
1349       if (initprot & MachO::VM_PROT_EXECUTE)
1350         outs() << "x\n";
1351       else
1352         outs() << "-\n";
1353     }
1354   } else {
1355     outs() << "  maxprot " << format("0x%08" PRIx32, maxprot) << "\n";
1356     outs() << " initprot " << format("0x%08" PRIx32, initprot) << "\n";
1357   }
1358   outs() << "   nsects " << nsects << "\n";
1359   if (verbose) {
1360     outs() << "    flags";
1361     if (flags == 0)
1362       outs() << " (none)\n";
1363     else {
1364       if (flags & MachO::SG_HIGHVM) {
1365         outs() << " HIGHVM";
1366         flags &= ~MachO::SG_HIGHVM;
1367       }
1368       if (flags & MachO::SG_FVMLIB) {
1369         outs() << " FVMLIB";
1370         flags &= ~MachO::SG_FVMLIB;
1371       }
1372       if (flags & MachO::SG_NORELOC) {
1373         outs() << " NORELOC";
1374         flags &= ~MachO::SG_NORELOC;
1375       }
1376       if (flags & MachO::SG_PROTECTED_VERSION_1) {
1377         outs() << " PROTECTED_VERSION_1";
1378         flags &= ~MachO::SG_PROTECTED_VERSION_1;
1379       }
1380       if (flags)
1381         outs() << format(" 0x%08" PRIx32, flags) << " (unknown flags)\n";
1382       else
1383         outs() << "\n";
1384     }
1385   } else {
1386     outs() << "    flags " << format("0x%" PRIx32, flags) << "\n";
1387   }
1388 }
1389
1390 static void PrintSection(const char *sectname, const char *segname,
1391                          uint64_t addr, uint64_t size, uint32_t offset,
1392                          uint32_t align, uint32_t reloff, uint32_t nreloc,
1393                          uint32_t flags, uint32_t reserved1, uint32_t reserved2,
1394                          uint32_t cmd, const char *sg_segname,
1395                          uint32_t filetype, uint32_t object_size,
1396                          bool verbose) {
1397   outs() << "Section\n";
1398   outs() << "  sectname " << format("%.16s\n", sectname);
1399   outs() << "   segname " << format("%.16s", segname);
1400   if (filetype != MachO::MH_OBJECT && strncmp(sg_segname, segname, 16) != 0)
1401     outs() << " (does not match segment)\n";
1402   else
1403     outs() << "\n";
1404   if (cmd == MachO::LC_SEGMENT_64) {
1405     outs() << "      addr " << format("0x%016" PRIx64, addr) << "\n";
1406     outs() << "      size " << format("0x%016" PRIx64, size);
1407   } else {
1408     outs() << "      addr " << format("0x%08" PRIx32, addr) << "\n";
1409     outs() << "      size " << format("0x%08" PRIx32, size);
1410   }
1411   if ((flags & MachO::S_ZEROFILL) != 0 && offset + size > object_size)
1412     outs() << " (past end of file)\n";
1413   else
1414     outs() << "\n";
1415   outs() << "    offset " << offset;
1416   if (offset > object_size)
1417     outs() << " (past end of file)\n";
1418   else
1419     outs() << "\n";
1420   uint32_t align_shifted = 1 << align;
1421   outs() << "     align 2^" << align << " (" << align_shifted << ")\n";
1422   outs() << "    reloff " << reloff;
1423   if (reloff > object_size)
1424     outs() << " (past end of file)\n";
1425   else
1426     outs() << "\n";
1427   outs() << "    nreloc " << nreloc;
1428   if (reloff + nreloc * sizeof(struct MachO::relocation_info) > object_size)
1429     outs() << " (past end of file)\n";
1430   else
1431     outs() << "\n";
1432   uint32_t section_type = flags & MachO::SECTION_TYPE;
1433   if (verbose) {
1434     outs() << "      type";
1435     if (section_type == MachO::S_REGULAR)
1436       outs() << " S_REGULAR\n";
1437     else if (section_type == MachO::S_ZEROFILL)
1438       outs() << " S_ZEROFILL\n";
1439     else if (section_type == MachO::S_CSTRING_LITERALS)
1440       outs() << " S_CSTRING_LITERALS\n";
1441     else if (section_type == MachO::S_4BYTE_LITERALS)
1442       outs() << " S_4BYTE_LITERALS\n";
1443     else if (section_type == MachO::S_8BYTE_LITERALS)
1444       outs() << " S_8BYTE_LITERALS\n";
1445     else if (section_type == MachO::S_16BYTE_LITERALS)
1446       outs() << " S_16BYTE_LITERALS\n";
1447     else if (section_type == MachO::S_LITERAL_POINTERS)
1448       outs() << " S_LITERAL_POINTERS\n";
1449     else if (section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS)
1450       outs() << " S_NON_LAZY_SYMBOL_POINTERS\n";
1451     else if (section_type == MachO::S_LAZY_SYMBOL_POINTERS)
1452       outs() << " S_LAZY_SYMBOL_POINTERS\n";
1453     else if (section_type == MachO::S_SYMBOL_STUBS)
1454       outs() << " S_SYMBOL_STUBS\n";
1455     else if (section_type == MachO::S_MOD_INIT_FUNC_POINTERS)
1456       outs() << " S_MOD_INIT_FUNC_POINTERS\n";
1457     else if (section_type == MachO::S_MOD_TERM_FUNC_POINTERS)
1458       outs() << " S_MOD_TERM_FUNC_POINTERS\n";
1459     else if (section_type == MachO::S_COALESCED)
1460       outs() << " S_COALESCED\n";
1461     else if (section_type == MachO::S_INTERPOSING)
1462       outs() << " S_INTERPOSING\n";
1463     else if (section_type == MachO::S_DTRACE_DOF)
1464       outs() << " S_DTRACE_DOF\n";
1465     else if (section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS)
1466       outs() << " S_LAZY_DYLIB_SYMBOL_POINTERS\n";
1467     else if (section_type == MachO::S_THREAD_LOCAL_REGULAR)
1468       outs() << " S_THREAD_LOCAL_REGULAR\n";
1469     else if (section_type == MachO::S_THREAD_LOCAL_ZEROFILL)
1470       outs() << " S_THREAD_LOCAL_ZEROFILL\n";
1471     else if (section_type == MachO::S_THREAD_LOCAL_VARIABLES)
1472       outs() << " S_THREAD_LOCAL_VARIABLES\n";
1473     else if (section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS)
1474       outs() << " S_THREAD_LOCAL_VARIABLE_POINTERS\n";
1475     else if (section_type == MachO::S_THREAD_LOCAL_INIT_FUNCTION_POINTERS)
1476       outs() << " S_THREAD_LOCAL_INIT_FUNCTION_POINTERS\n";
1477     else
1478       outs() << format("0x%08" PRIx32, section_type) << "\n";
1479     outs() << "attributes";
1480     uint32_t section_attributes = flags & MachO::SECTION_ATTRIBUTES;
1481     if (section_attributes & MachO::S_ATTR_PURE_INSTRUCTIONS)
1482       outs() << " PURE_INSTRUCTIONS";
1483     if (section_attributes & MachO::S_ATTR_NO_TOC)
1484       outs() << " NO_TOC";
1485     if (section_attributes & MachO::S_ATTR_STRIP_STATIC_SYMS)
1486       outs() << " STRIP_STATIC_SYMS";
1487     if (section_attributes & MachO::S_ATTR_NO_DEAD_STRIP)
1488       outs() << " NO_DEAD_STRIP";
1489     if (section_attributes & MachO::S_ATTR_LIVE_SUPPORT)
1490       outs() << " LIVE_SUPPORT";
1491     if (section_attributes & MachO::S_ATTR_SELF_MODIFYING_CODE)
1492       outs() << " SELF_MODIFYING_CODE";
1493     if (section_attributes & MachO::S_ATTR_DEBUG)
1494       outs() << " DEBUG";
1495     if (section_attributes & MachO::S_ATTR_SOME_INSTRUCTIONS)
1496       outs() << " SOME_INSTRUCTIONS";
1497     if (section_attributes & MachO::S_ATTR_EXT_RELOC)
1498       outs() << " EXT_RELOC";
1499     if (section_attributes & MachO::S_ATTR_LOC_RELOC)
1500       outs() << " LOC_RELOC";
1501     if (section_attributes == 0)
1502       outs() << " (none)";
1503     outs() << "\n";
1504   } else
1505     outs() << "     flags " << format("0x%08" PRIx32, flags) << "\n";
1506   outs() << " reserved1 " << reserved1;
1507   if (section_type == MachO::S_SYMBOL_STUBS ||
1508       section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
1509       section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
1510       section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
1511       section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS)
1512     outs() << " (index into indirect symbol table)\n";
1513   else
1514     outs() << "\n";
1515   outs() << " reserved2 " << reserved2;
1516   if (section_type == MachO::S_SYMBOL_STUBS)
1517     outs() << " (size of stubs)\n";
1518   else
1519     outs() << "\n";
1520 }
1521
1522 static void PrintSymtabLoadCommand(MachO::symtab_command st, uint32_t cputype,
1523                                    uint32_t object_size) {
1524   outs() << "     cmd LC_SYMTAB\n";
1525   outs() << " cmdsize " << st.cmdsize;
1526   if (st.cmdsize != sizeof(struct MachO::symtab_command))
1527     outs() << " Incorrect size\n";
1528   else
1529     outs() << "\n";
1530   outs() << "  symoff " << st.symoff;
1531   if (st.symoff > object_size)
1532     outs() << " (past end of file)\n";
1533   else
1534     outs() << "\n";
1535   outs() << "   nsyms " << st.nsyms;
1536   uint64_t big_size;
1537   if (cputype & MachO::CPU_ARCH_ABI64) {
1538     big_size = st.nsyms;
1539     big_size *= sizeof(struct MachO::nlist_64);
1540     big_size += st.symoff;
1541     if (big_size > object_size)
1542       outs() << " (past end of file)\n";
1543     else
1544       outs() << "\n";
1545   } else {
1546     big_size = st.nsyms;
1547     big_size *= sizeof(struct MachO::nlist);
1548     big_size += st.symoff;
1549     if (big_size > object_size)
1550       outs() << " (past end of file)\n";
1551     else
1552       outs() << "\n";
1553   }
1554   outs() << "  stroff " << st.stroff;
1555   if (st.stroff > object_size)
1556     outs() << " (past end of file)\n";
1557   else
1558     outs() << "\n";
1559   outs() << " strsize " << st.strsize;
1560   big_size = st.stroff;
1561   big_size += st.strsize;
1562   if (big_size > object_size)
1563     outs() << " (past end of file)\n";
1564   else
1565     outs() << "\n";
1566 }
1567
1568 static void PrintDysymtabLoadCommand(MachO::dysymtab_command dyst,
1569                                      uint32_t nsyms, uint32_t object_size,
1570                                      uint32_t cputype) {
1571   outs() << "            cmd LC_DYSYMTAB\n";
1572   outs() << "        cmdsize " << dyst.cmdsize;
1573   if (dyst.cmdsize != sizeof(struct MachO::dysymtab_command))
1574     outs() << " Incorrect size\n";
1575   else
1576     outs() << "\n";
1577   outs() << "      ilocalsym " << dyst.ilocalsym;
1578   if (dyst.ilocalsym > nsyms)
1579     outs() << " (greater than the number of symbols)\n";
1580   else
1581     outs() << "\n";
1582   outs() << "      nlocalsym " << dyst.nlocalsym;
1583   uint64_t big_size;
1584   big_size = dyst.ilocalsym;
1585   big_size += dyst.nlocalsym;
1586   if (big_size > nsyms)
1587     outs() << " (past the end of the symbol table)\n";
1588   else
1589     outs() << "\n";
1590   outs() << "     iextdefsym " << dyst.iextdefsym;
1591   if (dyst.iextdefsym > nsyms)
1592     outs() << " (greater than the number of symbols)\n";
1593   else
1594     outs() << "\n";
1595   outs() << "     nextdefsym " << dyst.nextdefsym;
1596   big_size = dyst.iextdefsym;
1597   big_size += dyst.nextdefsym;
1598   if (big_size > nsyms)
1599     outs() << " (past the end of the symbol table)\n";
1600   else
1601     outs() << "\n";
1602   outs() << "      iundefsym " << dyst.iundefsym;
1603   if (dyst.iundefsym > nsyms)
1604     outs() << " (greater than the number of symbols)\n";
1605   else
1606     outs() << "\n";
1607   outs() << "      nundefsym " << dyst.nundefsym;
1608   big_size = dyst.iundefsym;
1609   big_size += dyst.nundefsym;
1610   if (big_size > nsyms)
1611     outs() << " (past the end of the symbol table)\n";
1612   else
1613     outs() << "\n";
1614   outs() << "         tocoff " << dyst.tocoff;
1615   if (dyst.tocoff > object_size)
1616     outs() << " (past end of file)\n";
1617   else
1618     outs() << "\n";
1619   outs() << "           ntoc " << dyst.ntoc;
1620   big_size = dyst.ntoc;
1621   big_size *= sizeof(struct MachO::dylib_table_of_contents);
1622   big_size += dyst.tocoff;
1623   if (big_size > object_size)
1624     outs() << " (past end of file)\n";
1625   else
1626     outs() << "\n";
1627   outs() << "      modtaboff " << dyst.modtaboff;
1628   if (dyst.modtaboff > object_size)
1629     outs() << " (past end of file)\n";
1630   else
1631     outs() << "\n";
1632   outs() << "        nmodtab " << dyst.nmodtab;
1633   uint64_t modtabend;
1634   if (cputype & MachO::CPU_ARCH_ABI64) {
1635     modtabend = dyst.nmodtab;
1636     modtabend *= sizeof(struct MachO::dylib_module_64);
1637     modtabend += dyst.modtaboff;
1638   } else {
1639     modtabend = dyst.nmodtab;
1640     modtabend *= sizeof(struct MachO::dylib_module);
1641     modtabend += dyst.modtaboff;
1642   }
1643   if (modtabend > object_size)
1644     outs() << " (past end of file)\n";
1645   else
1646     outs() << "\n";
1647   outs() << "   extrefsymoff " << dyst.extrefsymoff;
1648   if (dyst.extrefsymoff > object_size)
1649     outs() << " (past end of file)\n";
1650   else
1651     outs() << "\n";
1652   outs() << "    nextrefsyms " << dyst.nextrefsyms;
1653   big_size = dyst.nextrefsyms;
1654   big_size *= sizeof(struct MachO::dylib_reference);
1655   big_size += dyst.extrefsymoff;
1656   if (big_size > object_size)
1657     outs() << " (past end of file)\n";
1658   else
1659     outs() << "\n";
1660   outs() << " indirectsymoff " << dyst.indirectsymoff;
1661   if (dyst.indirectsymoff > object_size)
1662     outs() << " (past end of file)\n";
1663   else
1664     outs() << "\n";
1665   outs() << "  nindirectsyms " << dyst.nindirectsyms;
1666   big_size = dyst.nindirectsyms;
1667   big_size *= sizeof(uint32_t);
1668   big_size += dyst.indirectsymoff;
1669   if (big_size > object_size)
1670     outs() << " (past end of file)\n";
1671   else
1672     outs() << "\n";
1673   outs() << "      extreloff " << dyst.extreloff;
1674   if (dyst.extreloff > object_size)
1675     outs() << " (past end of file)\n";
1676   else
1677     outs() << "\n";
1678   outs() << "        nextrel " << dyst.nextrel;
1679   big_size = dyst.nextrel;
1680   big_size *= sizeof(struct MachO::relocation_info);
1681   big_size += dyst.extreloff;
1682   if (big_size > object_size)
1683     outs() << " (past end of file)\n";
1684   else
1685     outs() << "\n";
1686   outs() << "      locreloff " << dyst.locreloff;
1687   if (dyst.locreloff > object_size)
1688     outs() << " (past end of file)\n";
1689   else
1690     outs() << "\n";
1691   outs() << "        nlocrel " << dyst.nlocrel;
1692   big_size = dyst.nlocrel;
1693   big_size *= sizeof(struct MachO::relocation_info);
1694   big_size += dyst.locreloff;
1695   if (big_size > object_size)
1696     outs() << " (past end of file)\n";
1697   else
1698     outs() << "\n";
1699 }
1700
1701 static void PrintLoadCommands(const MachOObjectFile *Obj, uint32_t ncmds,
1702                               uint32_t filetype, uint32_t cputype,
1703                               bool verbose) {
1704   StringRef Buf = Obj->getData();
1705   MachOObjectFile::LoadCommandInfo Command = Obj->getFirstLoadCommandInfo();
1706   for (unsigned i = 0;; ++i) {
1707     outs() << "Load command " << i << "\n";
1708     if (Command.C.cmd == MachO::LC_SEGMENT) {
1709       MachO::segment_command SLC = Obj->getSegmentLoadCommand(Command);
1710       const char *sg_segname = SLC.segname;
1711       PrintSegmentCommand(SLC.cmd, SLC.cmdsize, SLC.segname, SLC.vmaddr,
1712                           SLC.vmsize, SLC.fileoff, SLC.filesize, SLC.maxprot,
1713                           SLC.initprot, SLC.nsects, SLC.flags, Buf.size(),
1714                           verbose);
1715       for (unsigned j = 0; j < SLC.nsects; j++) {
1716         MachO::section_64 S = Obj->getSection64(Command, j);
1717         PrintSection(S.sectname, S.segname, S.addr, S.size, S.offset, S.align,
1718                      S.reloff, S.nreloc, S.flags, S.reserved1, S.reserved2,
1719                      SLC.cmd, sg_segname, filetype, Buf.size(), verbose);
1720       }
1721     } else if (Command.C.cmd == MachO::LC_SEGMENT_64) {
1722       MachO::segment_command_64 SLC_64 = Obj->getSegment64LoadCommand(Command);
1723       const char *sg_segname = SLC_64.segname;
1724       PrintSegmentCommand(SLC_64.cmd, SLC_64.cmdsize, SLC_64.segname,
1725                           SLC_64.vmaddr, SLC_64.vmsize, SLC_64.fileoff,
1726                           SLC_64.filesize, SLC_64.maxprot, SLC_64.initprot,
1727                           SLC_64.nsects, SLC_64.flags, Buf.size(), verbose);
1728       for (unsigned j = 0; j < SLC_64.nsects; j++) {
1729         MachO::section_64 S_64 = Obj->getSection64(Command, j);
1730         PrintSection(S_64.sectname, S_64.segname, S_64.addr, S_64.size,
1731                      S_64.offset, S_64.align, S_64.reloff, S_64.nreloc,
1732                      S_64.flags, S_64.reserved1, S_64.reserved2, SLC_64.cmd,
1733                      sg_segname, filetype, Buf.size(), verbose);
1734       }
1735     } else if (Command.C.cmd == MachO::LC_SYMTAB) {
1736       MachO::symtab_command Symtab = Obj->getSymtabLoadCommand();
1737       PrintSymtabLoadCommand(Symtab, cputype, Buf.size());
1738     } else if (Command.C.cmd == MachO::LC_DYSYMTAB) {
1739       MachO::dysymtab_command Dysymtab = Obj->getDysymtabLoadCommand();
1740       MachO::symtab_command Symtab = Obj->getSymtabLoadCommand();
1741       PrintDysymtabLoadCommand(Dysymtab, Symtab.nsyms, Buf.size(), cputype);
1742     } else {
1743       outs() << "      cmd ?(" << format("0x%08" PRIx32, Command.C.cmd)
1744              << ")\n";
1745       outs() << "  cmdsize " << Command.C.cmdsize << "\n";
1746       // TODO: get and print the raw bytes of the load command.
1747     }
1748     // TODO: print all the other kinds of load commands.
1749     if (i == ncmds - 1)
1750       break;
1751     else
1752       Command = Obj->getNextLoadCommandInfo(Command);
1753   }
1754 }
1755
1756 static void getAndPrintMachHeader(const MachOObjectFile *Obj, uint32_t &ncmds,
1757                                   uint32_t &filetype, uint32_t &cputype,
1758                                   bool verbose) {
1759   if (Obj->is64Bit()) {
1760     MachO::mach_header_64 H_64;
1761     H_64 = Obj->getHeader64();
1762     PrintMachHeader(H_64.magic, H_64.cputype, H_64.cpusubtype, H_64.filetype,
1763                     H_64.ncmds, H_64.sizeofcmds, H_64.flags, verbose);
1764     ncmds = H_64.ncmds;
1765     filetype = H_64.filetype;
1766     cputype = H_64.cputype;
1767   } else {
1768     MachO::mach_header H;
1769     H = Obj->getHeader();
1770     PrintMachHeader(H.magic, H.cputype, H.cpusubtype, H.filetype, H.ncmds,
1771                     H.sizeofcmds, H.flags, verbose);
1772     ncmds = H.ncmds;
1773     filetype = H.filetype;
1774     cputype = H.cputype;
1775   }
1776 }
1777
1778 void llvm::printMachOFileHeader(const object::ObjectFile *Obj) {
1779   const MachOObjectFile *file = dyn_cast<const MachOObjectFile>(Obj);
1780   uint32_t ncmds = 0;
1781   uint32_t filetype = 0;
1782   uint32_t cputype = 0;
1783   getAndPrintMachHeader(file, ncmds, filetype, cputype, true);
1784   PrintLoadCommands(file, ncmds, filetype, cputype, true);
1785 }