Partially fix memcpy / memset / memmove lowering in SelectionDAG construction if...
[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-c/Disassembler.h"
16 #include "llvm/ADT/STLExtras.h"
17 #include "llvm/ADT/StringExtras.h"
18 #include "llvm/ADT/Triple.h"
19 #include "llvm/Config/config.h"
20 #include "llvm/DebugInfo/DIContext.h"
21 #include "llvm/DebugInfo/DWARF/DWARFContext.h"
22 #include "llvm/MC/MCAsmInfo.h"
23 #include "llvm/MC/MCContext.h"
24 #include "llvm/MC/MCDisassembler.h"
25 #include "llvm/MC/MCInst.h"
26 #include "llvm/MC/MCInstPrinter.h"
27 #include "llvm/MC/MCInstrDesc.h"
28 #include "llvm/MC/MCInstrInfo.h"
29 #include "llvm/MC/MCRegisterInfo.h"
30 #include "llvm/MC/MCSubtargetInfo.h"
31 #include "llvm/Object/MachO.h"
32 #include "llvm/Object/MachOUniversal.h"
33 #include "llvm/Support/Casting.h"
34 #include "llvm/Support/CommandLine.h"
35 #include "llvm/Support/Debug.h"
36 #include "llvm/Support/Endian.h"
37 #include "llvm/Support/Format.h"
38 #include "llvm/Support/FormattedStream.h"
39 #include "llvm/Support/GraphWriter.h"
40 #include "llvm/Support/LEB128.h"
41 #include "llvm/Support/MachO.h"
42 #include "llvm/Support/MemoryBuffer.h"
43 #include "llvm/Support/TargetRegistry.h"
44 #include "llvm/Support/TargetSelect.h"
45 #include "llvm/Support/raw_ostream.h"
46 #include <algorithm>
47 #include <cstring>
48 #include <system_error>
49
50 #if HAVE_CXXABI_H
51 #include <cxxabi.h>
52 #endif
53
54 using namespace llvm;
55 using namespace object;
56
57 static cl::opt<bool>
58     UseDbg("g",
59            cl::desc("Print line information from debug info if available"));
60
61 static cl::opt<std::string> DSYMFile("dsym",
62                                      cl::desc("Use .dSYM file for debug info"));
63
64 static cl::opt<bool> FullLeadingAddr("full-leading-addr",
65                                      cl::desc("Print full leading address"));
66
67 static cl::opt<bool> NoLeadingAddr("no-leading-addr",
68                                    cl::desc("Print no leading address"));
69
70 cl::opt<bool> llvm::UniversalHeaders("universal-headers",
71                                      cl::desc("Print Mach-O universal headers "
72                                               "(requires -macho)"));
73
74 cl::opt<bool>
75     llvm::ArchiveHeaders("archive-headers",
76                          cl::desc("Print archive headers for Mach-O archives "
77                                   "(requires -macho)"));
78
79 cl::opt<bool>
80     ArchiveMemberOffsets("archive-member-offsets",
81                          cl::desc("Print the offset to each archive member for "
82                                   "Mach-O archives (requires -macho and "
83                                   "-archive-headers)"));
84
85 cl::opt<bool>
86     llvm::IndirectSymbols("indirect-symbols",
87                           cl::desc("Print indirect symbol table for Mach-O "
88                                    "objects (requires -macho)"));
89
90 cl::opt<bool>
91     llvm::DataInCode("data-in-code",
92                      cl::desc("Print the data in code table for Mach-O objects "
93                               "(requires -macho)"));
94
95 cl::opt<bool>
96     llvm::LinkOptHints("link-opt-hints",
97                        cl::desc("Print the linker optimization hints for "
98                                 "Mach-O objects (requires -macho)"));
99
100 cl::opt<bool>
101     llvm::InfoPlist("info-plist",
102                     cl::desc("Print the info plist section as strings for "
103                              "Mach-O objects (requires -macho)"));
104
105 cl::opt<bool>
106     llvm::DylibsUsed("dylibs-used",
107                      cl::desc("Print the shared libraries used for linked "
108                               "Mach-O files (requires -macho)"));
109
110 cl::opt<bool>
111     llvm::DylibId("dylib-id",
112                   cl::desc("Print the shared library's id for the dylib Mach-O "
113                            "file (requires -macho)"));
114
115 cl::opt<bool>
116     llvm::NonVerbose("non-verbose",
117                      cl::desc("Print the info for Mach-O objects in "
118                               "non-verbose or numeric form (requires -macho)"));
119
120 cl::opt<bool>
121     llvm::ObjcMetaData("objc-meta-data",
122                        cl::desc("Print the Objective-C runtime meta data for "
123                                 "Mach-O files (requires -macho)"));
124
125 cl::opt<std::string> llvm::DisSymName(
126     "dis-symname",
127     cl::desc("disassemble just this symbol's instructions (requires -macho"));
128
129 static cl::opt<bool> NoSymbolicOperands(
130     "no-symbolic-operands",
131     cl::desc("do not symbolic operands when disassembling (requires -macho)"));
132
133 static cl::list<std::string>
134     ArchFlags("arch", cl::desc("architecture(s) from a Mach-O file to dump"),
135               cl::ZeroOrMore);
136
137 bool ArchAll = false;
138
139 static std::string ThumbTripleName;
140
141 static const Target *GetTarget(const MachOObjectFile *MachOObj,
142                                const char **McpuDefault,
143                                const Target **ThumbTarget) {
144   // Figure out the target triple.
145   if (TripleName.empty()) {
146     llvm::Triple TT("unknown-unknown-unknown");
147     llvm::Triple ThumbTriple = Triple();
148     TT = MachOObj->getArch(McpuDefault, &ThumbTriple);
149     TripleName = TT.str();
150     ThumbTripleName = ThumbTriple.str();
151   }
152
153   // Get the target specific parser.
154   std::string Error;
155   const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
156   if (TheTarget && ThumbTripleName.empty())
157     return TheTarget;
158
159   *ThumbTarget = TargetRegistry::lookupTarget(ThumbTripleName, Error);
160   if (*ThumbTarget)
161     return TheTarget;
162
163   errs() << "llvm-objdump: error: unable to get target for '";
164   if (!TheTarget)
165     errs() << TripleName;
166   else
167     errs() << ThumbTripleName;
168   errs() << "', see --version and --triple.\n";
169   return nullptr;
170 }
171
172 struct SymbolSorter {
173   bool operator()(const SymbolRef &A, const SymbolRef &B) {
174     uint64_t AAddr = (A.getType() != SymbolRef::ST_Function) ? 0 : A.getValue();
175     uint64_t BAddr = (B.getType() != SymbolRef::ST_Function) ? 0 : B.getValue();
176     return AAddr < BAddr;
177   }
178 };
179
180 // Types for the storted data in code table that is built before disassembly
181 // and the predicate function to sort them.
182 typedef std::pair<uint64_t, DiceRef> DiceTableEntry;
183 typedef std::vector<DiceTableEntry> DiceTable;
184 typedef DiceTable::iterator dice_table_iterator;
185
186 // This is used to search for a data in code table entry for the PC being
187 // disassembled.  The j parameter has the PC in j.first.  A single data in code
188 // table entry can cover many bytes for each of its Kind's.  So if the offset,
189 // aka the i.first value, of the data in code table entry plus its Length
190 // covers the PC being searched for this will return true.  If not it will
191 // return false.
192 static bool compareDiceTableEntries(const DiceTableEntry &i,
193                                     const DiceTableEntry &j) {
194   uint16_t Length;
195   i.second.getLength(Length);
196
197   return j.first >= i.first && j.first < i.first + Length;
198 }
199
200 static uint64_t DumpDataInCode(const uint8_t *bytes, uint64_t Length,
201                                unsigned short Kind) {
202   uint32_t Value, Size = 1;
203
204   switch (Kind) {
205   default:
206   case MachO::DICE_KIND_DATA:
207     if (Length >= 4) {
208       if (!NoShowRawInsn)
209         dumpBytes(makeArrayRef(bytes, 4), outs());
210       Value = bytes[3] << 24 | bytes[2] << 16 | bytes[1] << 8 | bytes[0];
211       outs() << "\t.long " << Value;
212       Size = 4;
213     } else if (Length >= 2) {
214       if (!NoShowRawInsn)
215         dumpBytes(makeArrayRef(bytes, 2), outs());
216       Value = bytes[1] << 8 | bytes[0];
217       outs() << "\t.short " << Value;
218       Size = 2;
219     } else {
220       if (!NoShowRawInsn)
221         dumpBytes(makeArrayRef(bytes, 2), outs());
222       Value = bytes[0];
223       outs() << "\t.byte " << Value;
224       Size = 1;
225     }
226     if (Kind == MachO::DICE_KIND_DATA)
227       outs() << "\t@ KIND_DATA\n";
228     else
229       outs() << "\t@ data in code kind = " << Kind << "\n";
230     break;
231   case MachO::DICE_KIND_JUMP_TABLE8:
232     if (!NoShowRawInsn)
233       dumpBytes(makeArrayRef(bytes, 1), outs());
234     Value = bytes[0];
235     outs() << "\t.byte " << format("%3u", Value) << "\t@ KIND_JUMP_TABLE8\n";
236     Size = 1;
237     break;
238   case MachO::DICE_KIND_JUMP_TABLE16:
239     if (!NoShowRawInsn)
240       dumpBytes(makeArrayRef(bytes, 2), outs());
241     Value = bytes[1] << 8 | bytes[0];
242     outs() << "\t.short " << format("%5u", Value & 0xffff)
243            << "\t@ KIND_JUMP_TABLE16\n";
244     Size = 2;
245     break;
246   case MachO::DICE_KIND_JUMP_TABLE32:
247   case MachO::DICE_KIND_ABS_JUMP_TABLE32:
248     if (!NoShowRawInsn)
249       dumpBytes(makeArrayRef(bytes, 4), outs());
250     Value = bytes[3] << 24 | bytes[2] << 16 | bytes[1] << 8 | bytes[0];
251     outs() << "\t.long " << Value;
252     if (Kind == MachO::DICE_KIND_JUMP_TABLE32)
253       outs() << "\t@ KIND_JUMP_TABLE32\n";
254     else
255       outs() << "\t@ KIND_ABS_JUMP_TABLE32\n";
256     Size = 4;
257     break;
258   }
259   return Size;
260 }
261
262 static void getSectionsAndSymbols(MachOObjectFile *MachOObj,
263                                   std::vector<SectionRef> &Sections,
264                                   std::vector<SymbolRef> &Symbols,
265                                   SmallVectorImpl<uint64_t> &FoundFns,
266                                   uint64_t &BaseSegmentAddress) {
267   for (const SymbolRef &Symbol : MachOObj->symbols()) {
268     ErrorOr<StringRef> SymName = Symbol.getName();
269     if (std::error_code EC = SymName.getError())
270       report_fatal_error(EC.message());
271     if (!SymName->startswith("ltmp"))
272       Symbols.push_back(Symbol);
273   }
274
275   for (const SectionRef &Section : MachOObj->sections()) {
276     StringRef SectName;
277     Section.getName(SectName);
278     Sections.push_back(Section);
279   }
280
281   bool BaseSegmentAddressSet = false;
282   for (const auto &Command : MachOObj->load_commands()) {
283     if (Command.C.cmd == MachO::LC_FUNCTION_STARTS) {
284       // We found a function starts segment, parse the addresses for later
285       // consumption.
286       MachO::linkedit_data_command LLC =
287           MachOObj->getLinkeditDataLoadCommand(Command);
288
289       MachOObj->ReadULEB128s(LLC.dataoff, FoundFns);
290     } else if (Command.C.cmd == MachO::LC_SEGMENT) {
291       MachO::segment_command SLC = MachOObj->getSegmentLoadCommand(Command);
292       StringRef SegName = SLC.segname;
293       if (!BaseSegmentAddressSet && SegName != "__PAGEZERO") {
294         BaseSegmentAddressSet = true;
295         BaseSegmentAddress = SLC.vmaddr;
296       }
297     }
298   }
299 }
300
301 static void PrintIndirectSymbolTable(MachOObjectFile *O, bool verbose,
302                                      uint32_t n, uint32_t count,
303                                      uint32_t stride, uint64_t addr) {
304   MachO::dysymtab_command Dysymtab = O->getDysymtabLoadCommand();
305   uint32_t nindirectsyms = Dysymtab.nindirectsyms;
306   if (n > nindirectsyms)
307     outs() << " (entries start past the end of the indirect symbol "
308               "table) (reserved1 field greater than the table size)";
309   else if (n + count > nindirectsyms)
310     outs() << " (entries extends past the end of the indirect symbol "
311               "table)";
312   outs() << "\n";
313   uint32_t cputype = O->getHeader().cputype;
314   if (cputype & MachO::CPU_ARCH_ABI64)
315     outs() << "address            index";
316   else
317     outs() << "address    index";
318   if (verbose)
319     outs() << " name\n";
320   else
321     outs() << "\n";
322   for (uint32_t j = 0; j < count && n + j < nindirectsyms; j++) {
323     if (cputype & MachO::CPU_ARCH_ABI64)
324       outs() << format("0x%016" PRIx64, addr + j * stride) << " ";
325     else
326       outs() << format("0x%08" PRIx32, addr + j * stride) << " ";
327     MachO::dysymtab_command Dysymtab = O->getDysymtabLoadCommand();
328     uint32_t indirect_symbol = O->getIndirectSymbolTableEntry(Dysymtab, n + j);
329     if (indirect_symbol == MachO::INDIRECT_SYMBOL_LOCAL) {
330       outs() << "LOCAL\n";
331       continue;
332     }
333     if (indirect_symbol ==
334         (MachO::INDIRECT_SYMBOL_LOCAL | MachO::INDIRECT_SYMBOL_ABS)) {
335       outs() << "LOCAL ABSOLUTE\n";
336       continue;
337     }
338     if (indirect_symbol == MachO::INDIRECT_SYMBOL_ABS) {
339       outs() << "ABSOLUTE\n";
340       continue;
341     }
342     outs() << format("%5u ", indirect_symbol);
343     if (verbose) {
344       MachO::symtab_command Symtab = O->getSymtabLoadCommand();
345       if (indirect_symbol < Symtab.nsyms) {
346         symbol_iterator Sym = O->getSymbolByIndex(indirect_symbol);
347         SymbolRef Symbol = *Sym;
348         ErrorOr<StringRef> SymName = Symbol.getName();
349         if (std::error_code EC = SymName.getError())
350           report_fatal_error(EC.message());
351         outs() << *SymName;
352       } else {
353         outs() << "?";
354       }
355     }
356     outs() << "\n";
357   }
358 }
359
360 static void PrintIndirectSymbols(MachOObjectFile *O, bool verbose) {
361   for (const auto &Load : O->load_commands()) {
362     if (Load.C.cmd == MachO::LC_SEGMENT_64) {
363       MachO::segment_command_64 Seg = O->getSegment64LoadCommand(Load);
364       for (unsigned J = 0; J < Seg.nsects; ++J) {
365         MachO::section_64 Sec = O->getSection64(Load, J);
366         uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
367         if (section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
368             section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
369             section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
370             section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS ||
371             section_type == MachO::S_SYMBOL_STUBS) {
372           uint32_t stride;
373           if (section_type == MachO::S_SYMBOL_STUBS)
374             stride = Sec.reserved2;
375           else
376             stride = 8;
377           if (stride == 0) {
378             outs() << "Can't print indirect symbols for (" << Sec.segname << ","
379                    << Sec.sectname << ") "
380                    << "(size of stubs in reserved2 field is zero)\n";
381             continue;
382           }
383           uint32_t count = Sec.size / stride;
384           outs() << "Indirect symbols for (" << Sec.segname << ","
385                  << Sec.sectname << ") " << count << " entries";
386           uint32_t n = Sec.reserved1;
387           PrintIndirectSymbolTable(O, verbose, n, count, stride, Sec.addr);
388         }
389       }
390     } else if (Load.C.cmd == MachO::LC_SEGMENT) {
391       MachO::segment_command Seg = O->getSegmentLoadCommand(Load);
392       for (unsigned J = 0; J < Seg.nsects; ++J) {
393         MachO::section Sec = O->getSection(Load, J);
394         uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
395         if (section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
396             section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
397             section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
398             section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS ||
399             section_type == MachO::S_SYMBOL_STUBS) {
400           uint32_t stride;
401           if (section_type == MachO::S_SYMBOL_STUBS)
402             stride = Sec.reserved2;
403           else
404             stride = 4;
405           if (stride == 0) {
406             outs() << "Can't print indirect symbols for (" << Sec.segname << ","
407                    << Sec.sectname << ") "
408                    << "(size of stubs in reserved2 field is zero)\n";
409             continue;
410           }
411           uint32_t count = Sec.size / stride;
412           outs() << "Indirect symbols for (" << Sec.segname << ","
413                  << Sec.sectname << ") " << count << " entries";
414           uint32_t n = Sec.reserved1;
415           PrintIndirectSymbolTable(O, verbose, n, count, stride, Sec.addr);
416         }
417       }
418     }
419   }
420 }
421
422 static void PrintDataInCodeTable(MachOObjectFile *O, bool verbose) {
423   MachO::linkedit_data_command DIC = O->getDataInCodeLoadCommand();
424   uint32_t nentries = DIC.datasize / sizeof(struct MachO::data_in_code_entry);
425   outs() << "Data in code table (" << nentries << " entries)\n";
426   outs() << "offset     length kind\n";
427   for (dice_iterator DI = O->begin_dices(), DE = O->end_dices(); DI != DE;
428        ++DI) {
429     uint32_t Offset;
430     DI->getOffset(Offset);
431     outs() << format("0x%08" PRIx32, Offset) << " ";
432     uint16_t Length;
433     DI->getLength(Length);
434     outs() << format("%6u", Length) << " ";
435     uint16_t Kind;
436     DI->getKind(Kind);
437     if (verbose) {
438       switch (Kind) {
439       case MachO::DICE_KIND_DATA:
440         outs() << "DATA";
441         break;
442       case MachO::DICE_KIND_JUMP_TABLE8:
443         outs() << "JUMP_TABLE8";
444         break;
445       case MachO::DICE_KIND_JUMP_TABLE16:
446         outs() << "JUMP_TABLE16";
447         break;
448       case MachO::DICE_KIND_JUMP_TABLE32:
449         outs() << "JUMP_TABLE32";
450         break;
451       case MachO::DICE_KIND_ABS_JUMP_TABLE32:
452         outs() << "ABS_JUMP_TABLE32";
453         break;
454       default:
455         outs() << format("0x%04" PRIx32, Kind);
456         break;
457       }
458     } else
459       outs() << format("0x%04" PRIx32, Kind);
460     outs() << "\n";
461   }
462 }
463
464 static void PrintLinkOptHints(MachOObjectFile *O) {
465   MachO::linkedit_data_command LohLC = O->getLinkOptHintsLoadCommand();
466   const char *loh = O->getData().substr(LohLC.dataoff, 1).data();
467   uint32_t nloh = LohLC.datasize;
468   outs() << "Linker optimiztion hints (" << nloh << " total bytes)\n";
469   for (uint32_t i = 0; i < nloh;) {
470     unsigned n;
471     uint64_t identifier = decodeULEB128((const uint8_t *)(loh + i), &n);
472     i += n;
473     outs() << "    identifier " << identifier << " ";
474     if (i >= nloh)
475       return;
476     switch (identifier) {
477     case 1:
478       outs() << "AdrpAdrp\n";
479       break;
480     case 2:
481       outs() << "AdrpLdr\n";
482       break;
483     case 3:
484       outs() << "AdrpAddLdr\n";
485       break;
486     case 4:
487       outs() << "AdrpLdrGotLdr\n";
488       break;
489     case 5:
490       outs() << "AdrpAddStr\n";
491       break;
492     case 6:
493       outs() << "AdrpLdrGotStr\n";
494       break;
495     case 7:
496       outs() << "AdrpAdd\n";
497       break;
498     case 8:
499       outs() << "AdrpLdrGot\n";
500       break;
501     default:
502       outs() << "Unknown identifier value\n";
503       break;
504     }
505     uint64_t narguments = decodeULEB128((const uint8_t *)(loh + i), &n);
506     i += n;
507     outs() << "    narguments " << narguments << "\n";
508     if (i >= nloh)
509       return;
510
511     for (uint32_t j = 0; j < narguments; j++) {
512       uint64_t value = decodeULEB128((const uint8_t *)(loh + i), &n);
513       i += n;
514       outs() << "\tvalue " << format("0x%" PRIx64, value) << "\n";
515       if (i >= nloh)
516         return;
517     }
518   }
519 }
520
521 static void PrintDylibs(MachOObjectFile *O, bool JustId) {
522   unsigned Index = 0;
523   for (const auto &Load : O->load_commands()) {
524     if ((JustId && Load.C.cmd == MachO::LC_ID_DYLIB) ||
525         (!JustId && (Load.C.cmd == MachO::LC_ID_DYLIB ||
526                      Load.C.cmd == MachO::LC_LOAD_DYLIB ||
527                      Load.C.cmd == MachO::LC_LOAD_WEAK_DYLIB ||
528                      Load.C.cmd == MachO::LC_REEXPORT_DYLIB ||
529                      Load.C.cmd == MachO::LC_LAZY_LOAD_DYLIB ||
530                      Load.C.cmd == MachO::LC_LOAD_UPWARD_DYLIB))) {
531       MachO::dylib_command dl = O->getDylibIDLoadCommand(Load);
532       if (dl.dylib.name < dl.cmdsize) {
533         const char *p = (const char *)(Load.Ptr) + dl.dylib.name;
534         if (JustId)
535           outs() << p << "\n";
536         else {
537           outs() << "\t" << p;
538           outs() << " (compatibility version "
539                  << ((dl.dylib.compatibility_version >> 16) & 0xffff) << "."
540                  << ((dl.dylib.compatibility_version >> 8) & 0xff) << "."
541                  << (dl.dylib.compatibility_version & 0xff) << ",";
542           outs() << " current version "
543                  << ((dl.dylib.current_version >> 16) & 0xffff) << "."
544                  << ((dl.dylib.current_version >> 8) & 0xff) << "."
545                  << (dl.dylib.current_version & 0xff) << ")\n";
546         }
547       } else {
548         outs() << "\tBad offset (" << dl.dylib.name << ") for name of ";
549         if (Load.C.cmd == MachO::LC_ID_DYLIB)
550           outs() << "LC_ID_DYLIB ";
551         else if (Load.C.cmd == MachO::LC_LOAD_DYLIB)
552           outs() << "LC_LOAD_DYLIB ";
553         else if (Load.C.cmd == MachO::LC_LOAD_WEAK_DYLIB)
554           outs() << "LC_LOAD_WEAK_DYLIB ";
555         else if (Load.C.cmd == MachO::LC_LAZY_LOAD_DYLIB)
556           outs() << "LC_LAZY_LOAD_DYLIB ";
557         else if (Load.C.cmd == MachO::LC_REEXPORT_DYLIB)
558           outs() << "LC_REEXPORT_DYLIB ";
559         else if (Load.C.cmd == MachO::LC_LOAD_UPWARD_DYLIB)
560           outs() << "LC_LOAD_UPWARD_DYLIB ";
561         else
562           outs() << "LC_??? ";
563         outs() << "command " << Index++ << "\n";
564       }
565     }
566   }
567 }
568
569 typedef DenseMap<uint64_t, StringRef> SymbolAddressMap;
570
571 static void CreateSymbolAddressMap(MachOObjectFile *O,
572                                    SymbolAddressMap *AddrMap) {
573   // Create a map of symbol addresses to symbol names.
574   for (const SymbolRef &Symbol : O->symbols()) {
575     SymbolRef::Type ST = Symbol.getType();
576     if (ST == SymbolRef::ST_Function || ST == SymbolRef::ST_Data ||
577         ST == SymbolRef::ST_Other) {
578       uint64_t Address = Symbol.getValue();
579       ErrorOr<StringRef> SymNameOrErr = Symbol.getName();
580       if (std::error_code EC = SymNameOrErr.getError())
581         report_fatal_error(EC.message());
582       StringRef SymName = *SymNameOrErr;
583       if (!SymName.startswith(".objc"))
584         (*AddrMap)[Address] = SymName;
585     }
586   }
587 }
588
589 // GuessSymbolName is passed the address of what might be a symbol and a
590 // pointer to the SymbolAddressMap.  It returns the name of a symbol
591 // with that address or nullptr if no symbol is found with that address.
592 static const char *GuessSymbolName(uint64_t value, SymbolAddressMap *AddrMap) {
593   const char *SymbolName = nullptr;
594   // A DenseMap can't lookup up some values.
595   if (value != 0xffffffffffffffffULL && value != 0xfffffffffffffffeULL) {
596     StringRef name = AddrMap->lookup(value);
597     if (!name.empty())
598       SymbolName = name.data();
599   }
600   return SymbolName;
601 }
602
603 static void DumpCstringChar(const char c) {
604   char p[2];
605   p[0] = c;
606   p[1] = '\0';
607   outs().write_escaped(p);
608 }
609
610 static void DumpCstringSection(MachOObjectFile *O, const char *sect,
611                                uint32_t sect_size, uint64_t sect_addr,
612                                bool print_addresses) {
613   for (uint32_t i = 0; i < sect_size; i++) {
614     if (print_addresses) {
615       if (O->is64Bit())
616         outs() << format("%016" PRIx64, sect_addr + i) << "  ";
617       else
618         outs() << format("%08" PRIx64, sect_addr + i) << "  ";
619     }
620     for (; i < sect_size && sect[i] != '\0'; i++)
621       DumpCstringChar(sect[i]);
622     if (i < sect_size && sect[i] == '\0')
623       outs() << "\n";
624   }
625 }
626
627 static void DumpLiteral4(uint32_t l, float f) {
628   outs() << format("0x%08" PRIx32, l);
629   if ((l & 0x7f800000) != 0x7f800000)
630     outs() << format(" (%.16e)\n", f);
631   else {
632     if (l == 0x7f800000)
633       outs() << " (+Infinity)\n";
634     else if (l == 0xff800000)
635       outs() << " (-Infinity)\n";
636     else if ((l & 0x00400000) == 0x00400000)
637       outs() << " (non-signaling Not-a-Number)\n";
638     else
639       outs() << " (signaling Not-a-Number)\n";
640   }
641 }
642
643 static void DumpLiteral4Section(MachOObjectFile *O, const char *sect,
644                                 uint32_t sect_size, uint64_t sect_addr,
645                                 bool print_addresses) {
646   for (uint32_t i = 0; i < sect_size; i += sizeof(float)) {
647     if (print_addresses) {
648       if (O->is64Bit())
649         outs() << format("%016" PRIx64, sect_addr + i) << "  ";
650       else
651         outs() << format("%08" PRIx64, sect_addr + i) << "  ";
652     }
653     float f;
654     memcpy(&f, sect + i, sizeof(float));
655     if (O->isLittleEndian() != sys::IsLittleEndianHost)
656       sys::swapByteOrder(f);
657     uint32_t l;
658     memcpy(&l, sect + i, sizeof(uint32_t));
659     if (O->isLittleEndian() != sys::IsLittleEndianHost)
660       sys::swapByteOrder(l);
661     DumpLiteral4(l, f);
662   }
663 }
664
665 static void DumpLiteral8(MachOObjectFile *O, uint32_t l0, uint32_t l1,
666                          double d) {
667   outs() << format("0x%08" PRIx32, l0) << " " << format("0x%08" PRIx32, l1);
668   uint32_t Hi, Lo;
669   if (O->isLittleEndian()) {
670     Hi = l1;
671     Lo = l0;
672   } else {
673     Hi = l0;
674     Lo = l1;
675   }
676   // Hi is the high word, so this is equivalent to if(isfinite(d))
677   if ((Hi & 0x7ff00000) != 0x7ff00000)
678     outs() << format(" (%.16e)\n", d);
679   else {
680     if (Hi == 0x7ff00000 && Lo == 0)
681       outs() << " (+Infinity)\n";
682     else if (Hi == 0xfff00000 && Lo == 0)
683       outs() << " (-Infinity)\n";
684     else if ((Hi & 0x00080000) == 0x00080000)
685       outs() << " (non-signaling Not-a-Number)\n";
686     else
687       outs() << " (signaling Not-a-Number)\n";
688   }
689 }
690
691 static void DumpLiteral8Section(MachOObjectFile *O, const char *sect,
692                                 uint32_t sect_size, uint64_t sect_addr,
693                                 bool print_addresses) {
694   for (uint32_t i = 0; i < sect_size; i += sizeof(double)) {
695     if (print_addresses) {
696       if (O->is64Bit())
697         outs() << format("%016" PRIx64, sect_addr + i) << "  ";
698       else
699         outs() << format("%08" PRIx64, sect_addr + i) << "  ";
700     }
701     double d;
702     memcpy(&d, sect + i, sizeof(double));
703     if (O->isLittleEndian() != sys::IsLittleEndianHost)
704       sys::swapByteOrder(d);
705     uint32_t l0, l1;
706     memcpy(&l0, sect + i, sizeof(uint32_t));
707     memcpy(&l1, sect + i + sizeof(uint32_t), sizeof(uint32_t));
708     if (O->isLittleEndian() != sys::IsLittleEndianHost) {
709       sys::swapByteOrder(l0);
710       sys::swapByteOrder(l1);
711     }
712     DumpLiteral8(O, l0, l1, d);
713   }
714 }
715
716 static void DumpLiteral16(uint32_t l0, uint32_t l1, uint32_t l2, uint32_t l3) {
717   outs() << format("0x%08" PRIx32, l0) << " ";
718   outs() << format("0x%08" PRIx32, l1) << " ";
719   outs() << format("0x%08" PRIx32, l2) << " ";
720   outs() << format("0x%08" PRIx32, l3) << "\n";
721 }
722
723 static void DumpLiteral16Section(MachOObjectFile *O, const char *sect,
724                                  uint32_t sect_size, uint64_t sect_addr,
725                                  bool print_addresses) {
726   for (uint32_t i = 0; i < sect_size; i += 16) {
727     if (print_addresses) {
728       if (O->is64Bit())
729         outs() << format("%016" PRIx64, sect_addr + i) << "  ";
730       else
731         outs() << format("%08" PRIx64, sect_addr + i) << "  ";
732     }
733     uint32_t l0, l1, l2, l3;
734     memcpy(&l0, sect + i, sizeof(uint32_t));
735     memcpy(&l1, sect + i + sizeof(uint32_t), sizeof(uint32_t));
736     memcpy(&l2, sect + i + 2 * sizeof(uint32_t), sizeof(uint32_t));
737     memcpy(&l3, sect + i + 3 * sizeof(uint32_t), sizeof(uint32_t));
738     if (O->isLittleEndian() != sys::IsLittleEndianHost) {
739       sys::swapByteOrder(l0);
740       sys::swapByteOrder(l1);
741       sys::swapByteOrder(l2);
742       sys::swapByteOrder(l3);
743     }
744     DumpLiteral16(l0, l1, l2, l3);
745   }
746 }
747
748 static void DumpLiteralPointerSection(MachOObjectFile *O,
749                                       const SectionRef &Section,
750                                       const char *sect, uint32_t sect_size,
751                                       uint64_t sect_addr,
752                                       bool print_addresses) {
753   // Collect the literal sections in this Mach-O file.
754   std::vector<SectionRef> LiteralSections;
755   for (const SectionRef &Section : O->sections()) {
756     DataRefImpl Ref = Section.getRawDataRefImpl();
757     uint32_t section_type;
758     if (O->is64Bit()) {
759       const MachO::section_64 Sec = O->getSection64(Ref);
760       section_type = Sec.flags & MachO::SECTION_TYPE;
761     } else {
762       const MachO::section Sec = O->getSection(Ref);
763       section_type = Sec.flags & MachO::SECTION_TYPE;
764     }
765     if (section_type == MachO::S_CSTRING_LITERALS ||
766         section_type == MachO::S_4BYTE_LITERALS ||
767         section_type == MachO::S_8BYTE_LITERALS ||
768         section_type == MachO::S_16BYTE_LITERALS)
769       LiteralSections.push_back(Section);
770   }
771
772   // Set the size of the literal pointer.
773   uint32_t lp_size = O->is64Bit() ? 8 : 4;
774
775   // Collect the external relocation symbols for the literal pointers.
776   std::vector<std::pair<uint64_t, SymbolRef>> Relocs;
777   for (const RelocationRef &Reloc : Section.relocations()) {
778     DataRefImpl Rel;
779     MachO::any_relocation_info RE;
780     bool isExtern = false;
781     Rel = Reloc.getRawDataRefImpl();
782     RE = O->getRelocation(Rel);
783     isExtern = O->getPlainRelocationExternal(RE);
784     if (isExtern) {
785       uint64_t RelocOffset = Reloc.getOffset();
786       symbol_iterator RelocSym = Reloc.getSymbol();
787       Relocs.push_back(std::make_pair(RelocOffset, *RelocSym));
788     }
789   }
790   array_pod_sort(Relocs.begin(), Relocs.end());
791
792   // Dump each literal pointer.
793   for (uint32_t i = 0; i < sect_size; i += lp_size) {
794     if (print_addresses) {
795       if (O->is64Bit())
796         outs() << format("%016" PRIx64, sect_addr + i) << "  ";
797       else
798         outs() << format("%08" PRIx64, sect_addr + i) << "  ";
799     }
800     uint64_t lp;
801     if (O->is64Bit()) {
802       memcpy(&lp, sect + i, sizeof(uint64_t));
803       if (O->isLittleEndian() != sys::IsLittleEndianHost)
804         sys::swapByteOrder(lp);
805     } else {
806       uint32_t li;
807       memcpy(&li, sect + i, sizeof(uint32_t));
808       if (O->isLittleEndian() != sys::IsLittleEndianHost)
809         sys::swapByteOrder(li);
810       lp = li;
811     }
812
813     // First look for an external relocation entry for this literal pointer.
814     auto Reloc = std::find_if(
815         Relocs.begin(), Relocs.end(),
816         [&](const std::pair<uint64_t, SymbolRef> &P) { return P.first == i; });
817     if (Reloc != Relocs.end()) {
818       symbol_iterator RelocSym = Reloc->second;
819       ErrorOr<StringRef> SymName = RelocSym->getName();
820       if (std::error_code EC = SymName.getError())
821         report_fatal_error(EC.message());
822       outs() << "external relocation entry for symbol:" << *SymName << "\n";
823       continue;
824     }
825
826     // For local references see what the section the literal pointer points to.
827     auto Sect = std::find_if(LiteralSections.begin(), LiteralSections.end(),
828                              [&](const SectionRef &R) {
829                                return lp >= R.getAddress() &&
830                                       lp < R.getAddress() + R.getSize();
831                              });
832     if (Sect == LiteralSections.end()) {
833       outs() << format("0x%" PRIx64, lp) << " (not in a literal section)\n";
834       continue;
835     }
836
837     uint64_t SectAddress = Sect->getAddress();
838     uint64_t SectSize = Sect->getSize();
839
840     StringRef SectName;
841     Sect->getName(SectName);
842     DataRefImpl Ref = Sect->getRawDataRefImpl();
843     StringRef SegmentName = O->getSectionFinalSegmentName(Ref);
844     outs() << SegmentName << ":" << SectName << ":";
845
846     uint32_t section_type;
847     if (O->is64Bit()) {
848       const MachO::section_64 Sec = O->getSection64(Ref);
849       section_type = Sec.flags & MachO::SECTION_TYPE;
850     } else {
851       const MachO::section Sec = O->getSection(Ref);
852       section_type = Sec.flags & MachO::SECTION_TYPE;
853     }
854
855     StringRef BytesStr;
856     Sect->getContents(BytesStr);
857     const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
858
859     switch (section_type) {
860     case MachO::S_CSTRING_LITERALS:
861       for (uint64_t i = lp - SectAddress; i < SectSize && Contents[i] != '\0';
862            i++) {
863         DumpCstringChar(Contents[i]);
864       }
865       outs() << "\n";
866       break;
867     case MachO::S_4BYTE_LITERALS:
868       float f;
869       memcpy(&f, Contents + (lp - SectAddress), sizeof(float));
870       uint32_t l;
871       memcpy(&l, Contents + (lp - SectAddress), sizeof(uint32_t));
872       if (O->isLittleEndian() != sys::IsLittleEndianHost) {
873         sys::swapByteOrder(f);
874         sys::swapByteOrder(l);
875       }
876       DumpLiteral4(l, f);
877       break;
878     case MachO::S_8BYTE_LITERALS: {
879       double d;
880       memcpy(&d, Contents + (lp - SectAddress), sizeof(double));
881       uint32_t l0, l1;
882       memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t));
883       memcpy(&l1, Contents + (lp - SectAddress) + sizeof(uint32_t),
884              sizeof(uint32_t));
885       if (O->isLittleEndian() != sys::IsLittleEndianHost) {
886         sys::swapByteOrder(f);
887         sys::swapByteOrder(l0);
888         sys::swapByteOrder(l1);
889       }
890       DumpLiteral8(O, l0, l1, d);
891       break;
892     }
893     case MachO::S_16BYTE_LITERALS: {
894       uint32_t l0, l1, l2, l3;
895       memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t));
896       memcpy(&l1, Contents + (lp - SectAddress) + sizeof(uint32_t),
897              sizeof(uint32_t));
898       memcpy(&l2, Contents + (lp - SectAddress) + 2 * sizeof(uint32_t),
899              sizeof(uint32_t));
900       memcpy(&l3, Contents + (lp - SectAddress) + 3 * sizeof(uint32_t),
901              sizeof(uint32_t));
902       if (O->isLittleEndian() != sys::IsLittleEndianHost) {
903         sys::swapByteOrder(l0);
904         sys::swapByteOrder(l1);
905         sys::swapByteOrder(l2);
906         sys::swapByteOrder(l3);
907       }
908       DumpLiteral16(l0, l1, l2, l3);
909       break;
910     }
911     }
912   }
913 }
914
915 static void DumpInitTermPointerSection(MachOObjectFile *O, const char *sect,
916                                        uint32_t sect_size, uint64_t sect_addr,
917                                        SymbolAddressMap *AddrMap,
918                                        bool verbose) {
919   uint32_t stride;
920   if (O->is64Bit())
921     stride = sizeof(uint64_t);
922   else
923     stride = sizeof(uint32_t);
924   for (uint32_t i = 0; i < sect_size; i += stride) {
925     const char *SymbolName = nullptr;
926     if (O->is64Bit()) {
927       outs() << format("0x%016" PRIx64, sect_addr + i * stride) << " ";
928       uint64_t pointer_value;
929       memcpy(&pointer_value, sect + i, stride);
930       if (O->isLittleEndian() != sys::IsLittleEndianHost)
931         sys::swapByteOrder(pointer_value);
932       outs() << format("0x%016" PRIx64, pointer_value);
933       if (verbose)
934         SymbolName = GuessSymbolName(pointer_value, AddrMap);
935     } else {
936       outs() << format("0x%08" PRIx64, sect_addr + i * stride) << " ";
937       uint32_t pointer_value;
938       memcpy(&pointer_value, sect + i, stride);
939       if (O->isLittleEndian() != sys::IsLittleEndianHost)
940         sys::swapByteOrder(pointer_value);
941       outs() << format("0x%08" PRIx32, pointer_value);
942       if (verbose)
943         SymbolName = GuessSymbolName(pointer_value, AddrMap);
944     }
945     if (SymbolName)
946       outs() << " " << SymbolName;
947     outs() << "\n";
948   }
949 }
950
951 static void DumpRawSectionContents(MachOObjectFile *O, const char *sect,
952                                    uint32_t size, uint64_t addr) {
953   uint32_t cputype = O->getHeader().cputype;
954   if (cputype == MachO::CPU_TYPE_I386 || cputype == MachO::CPU_TYPE_X86_64) {
955     uint32_t j;
956     for (uint32_t i = 0; i < size; i += j, addr += j) {
957       if (O->is64Bit())
958         outs() << format("%016" PRIx64, addr) << "\t";
959       else
960         outs() << format("%08" PRIx64, addr) << "\t";
961       for (j = 0; j < 16 && i + j < size; j++) {
962         uint8_t byte_word = *(sect + i + j);
963         outs() << format("%02" PRIx32, (uint32_t)byte_word) << " ";
964       }
965       outs() << "\n";
966     }
967   } else {
968     uint32_t j;
969     for (uint32_t i = 0; i < size; i += j, addr += j) {
970       if (O->is64Bit())
971         outs() << format("%016" PRIx64, addr) << "\t";
972       else
973         outs() << format("%08" PRIx64, sect) << "\t";
974       for (j = 0; j < 4 * sizeof(int32_t) && i + j < size;
975            j += sizeof(int32_t)) {
976         if (i + j + sizeof(int32_t) < size) {
977           uint32_t long_word;
978           memcpy(&long_word, sect + i + j, sizeof(int32_t));
979           if (O->isLittleEndian() != sys::IsLittleEndianHost)
980             sys::swapByteOrder(long_word);
981           outs() << format("%08" PRIx32, long_word) << " ";
982         } else {
983           for (uint32_t k = 0; i + j + k < size; k++) {
984             uint8_t byte_word = *(sect + i + j);
985             outs() << format("%02" PRIx32, (uint32_t)byte_word) << " ";
986           }
987         }
988       }
989       outs() << "\n";
990     }
991   }
992 }
993
994 static void DisassembleMachO(StringRef Filename, MachOObjectFile *MachOOF,
995                              StringRef DisSegName, StringRef DisSectName);
996 static void DumpProtocolSection(MachOObjectFile *O, const char *sect,
997                                 uint32_t size, uint32_t addr);
998
999 static void DumpSectionContents(StringRef Filename, MachOObjectFile *O,
1000                                 bool verbose) {
1001   SymbolAddressMap AddrMap;
1002   if (verbose)
1003     CreateSymbolAddressMap(O, &AddrMap);
1004
1005   for (unsigned i = 0; i < FilterSections.size(); ++i) {
1006     StringRef DumpSection = FilterSections[i];
1007     std::pair<StringRef, StringRef> DumpSegSectName;
1008     DumpSegSectName = DumpSection.split(',');
1009     StringRef DumpSegName, DumpSectName;
1010     if (DumpSegSectName.second.size()) {
1011       DumpSegName = DumpSegSectName.first;
1012       DumpSectName = DumpSegSectName.second;
1013     } else {
1014       DumpSegName = "";
1015       DumpSectName = DumpSegSectName.first;
1016     }
1017     for (const SectionRef &Section : O->sections()) {
1018       StringRef SectName;
1019       Section.getName(SectName);
1020       DataRefImpl Ref = Section.getRawDataRefImpl();
1021       StringRef SegName = O->getSectionFinalSegmentName(Ref);
1022       if ((DumpSegName.empty() || SegName == DumpSegName) &&
1023           (SectName == DumpSectName)) {
1024
1025         uint32_t section_flags;
1026         if (O->is64Bit()) {
1027           const MachO::section_64 Sec = O->getSection64(Ref);
1028           section_flags = Sec.flags;
1029
1030         } else {
1031           const MachO::section Sec = O->getSection(Ref);
1032           section_flags = Sec.flags;
1033         }
1034         uint32_t section_type = section_flags & MachO::SECTION_TYPE;
1035
1036         StringRef BytesStr;
1037         Section.getContents(BytesStr);
1038         const char *sect = reinterpret_cast<const char *>(BytesStr.data());
1039         uint32_t sect_size = BytesStr.size();
1040         uint64_t sect_addr = Section.getAddress();
1041
1042         outs() << "Contents of (" << SegName << "," << SectName
1043                << ") section\n";
1044
1045         if (verbose) {
1046           if ((section_flags & MachO::S_ATTR_PURE_INSTRUCTIONS) ||
1047               (section_flags & MachO::S_ATTR_SOME_INSTRUCTIONS)) {
1048             DisassembleMachO(Filename, O, SegName, SectName);
1049             continue;
1050           }
1051           if (SegName == "__TEXT" && SectName == "__info_plist") {
1052             outs() << sect;
1053             continue;
1054           }
1055           if (SegName == "__OBJC" && SectName == "__protocol") {
1056             DumpProtocolSection(O, sect, sect_size, sect_addr);
1057             continue;
1058           }
1059           switch (section_type) {
1060           case MachO::S_REGULAR:
1061             DumpRawSectionContents(O, sect, sect_size, sect_addr);
1062             break;
1063           case MachO::S_ZEROFILL:
1064             outs() << "zerofill section and has no contents in the file\n";
1065             break;
1066           case MachO::S_CSTRING_LITERALS:
1067             DumpCstringSection(O, sect, sect_size, sect_addr, !NoLeadingAddr);
1068             break;
1069           case MachO::S_4BYTE_LITERALS:
1070             DumpLiteral4Section(O, sect, sect_size, sect_addr, !NoLeadingAddr);
1071             break;
1072           case MachO::S_8BYTE_LITERALS:
1073             DumpLiteral8Section(O, sect, sect_size, sect_addr, !NoLeadingAddr);
1074             break;
1075           case MachO::S_16BYTE_LITERALS:
1076             DumpLiteral16Section(O, sect, sect_size, sect_addr, !NoLeadingAddr);
1077             break;
1078           case MachO::S_LITERAL_POINTERS:
1079             DumpLiteralPointerSection(O, Section, sect, sect_size, sect_addr,
1080                                       !NoLeadingAddr);
1081             break;
1082           case MachO::S_MOD_INIT_FUNC_POINTERS:
1083           case MachO::S_MOD_TERM_FUNC_POINTERS:
1084             DumpInitTermPointerSection(O, sect, sect_size, sect_addr, &AddrMap,
1085                                        verbose);
1086             break;
1087           default:
1088             outs() << "Unknown section type ("
1089                    << format("0x%08" PRIx32, section_type) << ")\n";
1090             DumpRawSectionContents(O, sect, sect_size, sect_addr);
1091             break;
1092           }
1093         } else {
1094           if (section_type == MachO::S_ZEROFILL)
1095             outs() << "zerofill section and has no contents in the file\n";
1096           else
1097             DumpRawSectionContents(O, sect, sect_size, sect_addr);
1098         }
1099       }
1100     }
1101   }
1102 }
1103
1104 static void DumpInfoPlistSectionContents(StringRef Filename,
1105                                          MachOObjectFile *O) {
1106   for (const SectionRef &Section : O->sections()) {
1107     StringRef SectName;
1108     Section.getName(SectName);
1109     DataRefImpl Ref = Section.getRawDataRefImpl();
1110     StringRef SegName = O->getSectionFinalSegmentName(Ref);
1111     if (SegName == "__TEXT" && SectName == "__info_plist") {
1112       outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
1113       StringRef BytesStr;
1114       Section.getContents(BytesStr);
1115       const char *sect = reinterpret_cast<const char *>(BytesStr.data());
1116       outs() << sect;
1117       return;
1118     }
1119   }
1120 }
1121
1122 // checkMachOAndArchFlags() checks to see if the ObjectFile is a Mach-O file
1123 // and if it is and there is a list of architecture flags is specified then
1124 // check to make sure this Mach-O file is one of those architectures or all
1125 // architectures were specified.  If not then an error is generated and this
1126 // routine returns false.  Else it returns true.
1127 static bool checkMachOAndArchFlags(ObjectFile *O, StringRef Filename) {
1128   if (isa<MachOObjectFile>(O) && !ArchAll && ArchFlags.size() != 0) {
1129     MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(O);
1130     bool ArchFound = false;
1131     MachO::mach_header H;
1132     MachO::mach_header_64 H_64;
1133     Triple T;
1134     if (MachO->is64Bit()) {
1135       H_64 = MachO->MachOObjectFile::getHeader64();
1136       T = MachOObjectFile::getArch(H_64.cputype, H_64.cpusubtype);
1137     } else {
1138       H = MachO->MachOObjectFile::getHeader();
1139       T = MachOObjectFile::getArch(H.cputype, H.cpusubtype);
1140     }
1141     unsigned i;
1142     for (i = 0; i < ArchFlags.size(); ++i) {
1143       if (ArchFlags[i] == T.getArchName())
1144         ArchFound = true;
1145       break;
1146     }
1147     if (!ArchFound) {
1148       errs() << "llvm-objdump: file: " + Filename + " does not contain "
1149              << "architecture: " + ArchFlags[i] + "\n";
1150       return false;
1151     }
1152   }
1153   return true;
1154 }
1155
1156 static void printObjcMetaData(MachOObjectFile *O, bool verbose);
1157
1158 // ProcessMachO() is passed a single opened Mach-O file, which may be an
1159 // archive member and or in a slice of a universal file.  It prints the
1160 // the file name and header info and then processes it according to the
1161 // command line options.
1162 static void ProcessMachO(StringRef Filename, MachOObjectFile *MachOOF,
1163                          StringRef ArchiveMemberName = StringRef(),
1164                          StringRef ArchitectureName = StringRef()) {
1165   // If we are doing some processing here on the Mach-O file print the header
1166   // info.  And don't print it otherwise like in the case of printing the
1167   // UniversalHeaders or ArchiveHeaders.
1168   if (Disassemble || PrivateHeaders || ExportsTrie || Rebase || Bind ||
1169       LazyBind || WeakBind || IndirectSymbols || DataInCode || LinkOptHints ||
1170       DylibsUsed || DylibId || ObjcMetaData || (FilterSections.size() != 0)) {
1171     outs() << Filename;
1172     if (!ArchiveMemberName.empty())
1173       outs() << '(' << ArchiveMemberName << ')';
1174     if (!ArchitectureName.empty())
1175       outs() << " (architecture " << ArchitectureName << ")";
1176     outs() << ":\n";
1177   }
1178
1179   if (Disassemble)
1180     DisassembleMachO(Filename, MachOOF, "__TEXT", "__text");
1181   if (IndirectSymbols)
1182     PrintIndirectSymbols(MachOOF, !NonVerbose);
1183   if (DataInCode)
1184     PrintDataInCodeTable(MachOOF, !NonVerbose);
1185   if (LinkOptHints)
1186     PrintLinkOptHints(MachOOF);
1187   if (Relocations)
1188     PrintRelocations(MachOOF);
1189   if (SectionHeaders)
1190     PrintSectionHeaders(MachOOF);
1191   if (SectionContents)
1192     PrintSectionContents(MachOOF);
1193   if (FilterSections.size() != 0)
1194     DumpSectionContents(Filename, MachOOF, !NonVerbose);
1195   if (InfoPlist)
1196     DumpInfoPlistSectionContents(Filename, MachOOF);
1197   if (DylibsUsed)
1198     PrintDylibs(MachOOF, false);
1199   if (DylibId)
1200     PrintDylibs(MachOOF, true);
1201   if (SymbolTable)
1202     PrintSymbolTable(MachOOF);
1203   if (UnwindInfo)
1204     printMachOUnwindInfo(MachOOF);
1205   if (PrivateHeaders)
1206     printMachOFileHeader(MachOOF);
1207   if (ObjcMetaData)
1208     printObjcMetaData(MachOOF, !NonVerbose);
1209   if (ExportsTrie)
1210     printExportsTrie(MachOOF);
1211   if (Rebase)
1212     printRebaseTable(MachOOF);
1213   if (Bind)
1214     printBindTable(MachOOF);
1215   if (LazyBind)
1216     printLazyBindTable(MachOOF);
1217   if (WeakBind)
1218     printWeakBindTable(MachOOF);
1219 }
1220
1221 // printUnknownCPUType() helps print_fat_headers for unknown CPU's.
1222 static void printUnknownCPUType(uint32_t cputype, uint32_t cpusubtype) {
1223   outs() << "    cputype (" << cputype << ")\n";
1224   outs() << "    cpusubtype (" << cpusubtype << ")\n";
1225 }
1226
1227 // printCPUType() helps print_fat_headers by printing the cputype and
1228 // pusubtype (symbolically for the one's it knows about).
1229 static void printCPUType(uint32_t cputype, uint32_t cpusubtype) {
1230   switch (cputype) {
1231   case MachO::CPU_TYPE_I386:
1232     switch (cpusubtype) {
1233     case MachO::CPU_SUBTYPE_I386_ALL:
1234       outs() << "    cputype CPU_TYPE_I386\n";
1235       outs() << "    cpusubtype CPU_SUBTYPE_I386_ALL\n";
1236       break;
1237     default:
1238       printUnknownCPUType(cputype, cpusubtype);
1239       break;
1240     }
1241     break;
1242   case MachO::CPU_TYPE_X86_64:
1243     switch (cpusubtype) {
1244     case MachO::CPU_SUBTYPE_X86_64_ALL:
1245       outs() << "    cputype CPU_TYPE_X86_64\n";
1246       outs() << "    cpusubtype CPU_SUBTYPE_X86_64_ALL\n";
1247       break;
1248     case MachO::CPU_SUBTYPE_X86_64_H:
1249       outs() << "    cputype CPU_TYPE_X86_64\n";
1250       outs() << "    cpusubtype CPU_SUBTYPE_X86_64_H\n";
1251       break;
1252     default:
1253       printUnknownCPUType(cputype, cpusubtype);
1254       break;
1255     }
1256     break;
1257   case MachO::CPU_TYPE_ARM:
1258     switch (cpusubtype) {
1259     case MachO::CPU_SUBTYPE_ARM_ALL:
1260       outs() << "    cputype CPU_TYPE_ARM\n";
1261       outs() << "    cpusubtype CPU_SUBTYPE_ARM_ALL\n";
1262       break;
1263     case MachO::CPU_SUBTYPE_ARM_V4T:
1264       outs() << "    cputype CPU_TYPE_ARM\n";
1265       outs() << "    cpusubtype CPU_SUBTYPE_ARM_V4T\n";
1266       break;
1267     case MachO::CPU_SUBTYPE_ARM_V5TEJ:
1268       outs() << "    cputype CPU_TYPE_ARM\n";
1269       outs() << "    cpusubtype CPU_SUBTYPE_ARM_V5TEJ\n";
1270       break;
1271     case MachO::CPU_SUBTYPE_ARM_XSCALE:
1272       outs() << "    cputype CPU_TYPE_ARM\n";
1273       outs() << "    cpusubtype CPU_SUBTYPE_ARM_XSCALE\n";
1274       break;
1275     case MachO::CPU_SUBTYPE_ARM_V6:
1276       outs() << "    cputype CPU_TYPE_ARM\n";
1277       outs() << "    cpusubtype CPU_SUBTYPE_ARM_V6\n";
1278       break;
1279     case MachO::CPU_SUBTYPE_ARM_V6M:
1280       outs() << "    cputype CPU_TYPE_ARM\n";
1281       outs() << "    cpusubtype CPU_SUBTYPE_ARM_V6M\n";
1282       break;
1283     case MachO::CPU_SUBTYPE_ARM_V7:
1284       outs() << "    cputype CPU_TYPE_ARM\n";
1285       outs() << "    cpusubtype CPU_SUBTYPE_ARM_V7\n";
1286       break;
1287     case MachO::CPU_SUBTYPE_ARM_V7EM:
1288       outs() << "    cputype CPU_TYPE_ARM\n";
1289       outs() << "    cpusubtype CPU_SUBTYPE_ARM_V7EM\n";
1290       break;
1291     case MachO::CPU_SUBTYPE_ARM_V7K:
1292       outs() << "    cputype CPU_TYPE_ARM\n";
1293       outs() << "    cpusubtype CPU_SUBTYPE_ARM_V7K\n";
1294       break;
1295     case MachO::CPU_SUBTYPE_ARM_V7M:
1296       outs() << "    cputype CPU_TYPE_ARM\n";
1297       outs() << "    cpusubtype CPU_SUBTYPE_ARM_V7M\n";
1298       break;
1299     case MachO::CPU_SUBTYPE_ARM_V7S:
1300       outs() << "    cputype CPU_TYPE_ARM\n";
1301       outs() << "    cpusubtype CPU_SUBTYPE_ARM_V7S\n";
1302       break;
1303     default:
1304       printUnknownCPUType(cputype, cpusubtype);
1305       break;
1306     }
1307     break;
1308   case MachO::CPU_TYPE_ARM64:
1309     switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
1310     case MachO::CPU_SUBTYPE_ARM64_ALL:
1311       outs() << "    cputype CPU_TYPE_ARM64\n";
1312       outs() << "    cpusubtype CPU_SUBTYPE_ARM64_ALL\n";
1313       break;
1314     default:
1315       printUnknownCPUType(cputype, cpusubtype);
1316       break;
1317     }
1318     break;
1319   default:
1320     printUnknownCPUType(cputype, cpusubtype);
1321     break;
1322   }
1323 }
1324
1325 static void printMachOUniversalHeaders(const object::MachOUniversalBinary *UB,
1326                                        bool verbose) {
1327   outs() << "Fat headers\n";
1328   if (verbose)
1329     outs() << "fat_magic FAT_MAGIC\n";
1330   else
1331     outs() << "fat_magic " << format("0x%" PRIx32, MachO::FAT_MAGIC) << "\n";
1332
1333   uint32_t nfat_arch = UB->getNumberOfObjects();
1334   StringRef Buf = UB->getData();
1335   uint64_t size = Buf.size();
1336   uint64_t big_size = sizeof(struct MachO::fat_header) +
1337                       nfat_arch * sizeof(struct MachO::fat_arch);
1338   outs() << "nfat_arch " << UB->getNumberOfObjects();
1339   if (nfat_arch == 0)
1340     outs() << " (malformed, contains zero architecture types)\n";
1341   else if (big_size > size)
1342     outs() << " (malformed, architectures past end of file)\n";
1343   else
1344     outs() << "\n";
1345
1346   for (uint32_t i = 0; i < nfat_arch; ++i) {
1347     MachOUniversalBinary::ObjectForArch OFA(UB, i);
1348     uint32_t cputype = OFA.getCPUType();
1349     uint32_t cpusubtype = OFA.getCPUSubType();
1350     outs() << "architecture ";
1351     for (uint32_t j = 0; i != 0 && j <= i - 1; j++) {
1352       MachOUniversalBinary::ObjectForArch other_OFA(UB, j);
1353       uint32_t other_cputype = other_OFA.getCPUType();
1354       uint32_t other_cpusubtype = other_OFA.getCPUSubType();
1355       if (cputype != 0 && cpusubtype != 0 && cputype == other_cputype &&
1356           (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) ==
1357               (other_cpusubtype & ~MachO::CPU_SUBTYPE_MASK)) {
1358         outs() << "(illegal duplicate architecture) ";
1359         break;
1360       }
1361     }
1362     if (verbose) {
1363       outs() << OFA.getArchTypeName() << "\n";
1364       printCPUType(cputype, cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
1365     } else {
1366       outs() << i << "\n";
1367       outs() << "    cputype " << cputype << "\n";
1368       outs() << "    cpusubtype " << (cpusubtype & ~MachO::CPU_SUBTYPE_MASK)
1369              << "\n";
1370     }
1371     if (verbose &&
1372         (cpusubtype & MachO::CPU_SUBTYPE_MASK) == MachO::CPU_SUBTYPE_LIB64)
1373       outs() << "    capabilities CPU_SUBTYPE_LIB64\n";
1374     else
1375       outs() << "    capabilities "
1376              << format("0x%" PRIx32,
1377                        (cpusubtype & MachO::CPU_SUBTYPE_MASK) >> 24) << "\n";
1378     outs() << "    offset " << OFA.getOffset();
1379     if (OFA.getOffset() > size)
1380       outs() << " (past end of file)";
1381     if (OFA.getOffset() % (1 << OFA.getAlign()) != 0)
1382       outs() << " (not aligned on it's alignment (2^" << OFA.getAlign() << ")";
1383     outs() << "\n";
1384     outs() << "    size " << OFA.getSize();
1385     big_size = OFA.getOffset() + OFA.getSize();
1386     if (big_size > size)
1387       outs() << " (past end of file)";
1388     outs() << "\n";
1389     outs() << "    align 2^" << OFA.getAlign() << " (" << (1 << OFA.getAlign())
1390            << ")\n";
1391   }
1392 }
1393
1394 static void printArchiveChild(const Archive::Child &C, bool verbose,
1395                               bool print_offset) {
1396   if (print_offset)
1397     outs() << C.getChildOffset() << "\t";
1398   sys::fs::perms Mode = C.getAccessMode();
1399   if (verbose) {
1400     // FIXME: this first dash, "-", is for (Mode & S_IFMT) == S_IFREG.
1401     // But there is nothing in sys::fs::perms for S_IFMT or S_IFREG.
1402     outs() << "-";
1403     outs() << ((Mode & sys::fs::owner_read) ? "r" : "-");
1404     outs() << ((Mode & sys::fs::owner_write) ? "w" : "-");
1405     outs() << ((Mode & sys::fs::owner_exe) ? "x" : "-");
1406     outs() << ((Mode & sys::fs::group_read) ? "r" : "-");
1407     outs() << ((Mode & sys::fs::group_write) ? "w" : "-");
1408     outs() << ((Mode & sys::fs::group_exe) ? "x" : "-");
1409     outs() << ((Mode & sys::fs::others_read) ? "r" : "-");
1410     outs() << ((Mode & sys::fs::others_write) ? "w" : "-");
1411     outs() << ((Mode & sys::fs::others_exe) ? "x" : "-");
1412   } else {
1413     outs() << format("0%o ", Mode);
1414   }
1415
1416   unsigned UID = C.getUID();
1417   outs() << format("%3d/", UID);
1418   unsigned GID = C.getGID();
1419   outs() << format("%-3d ", GID);
1420   ErrorOr<uint64_t> Size = C.getRawSize();
1421   if (std::error_code EC = Size.getError())
1422     report_fatal_error(EC.message());
1423   outs() << format("%5" PRId64, Size.get()) << " ";
1424
1425   StringRef RawLastModified = C.getRawLastModified();
1426   if (verbose) {
1427     unsigned Seconds;
1428     if (RawLastModified.getAsInteger(10, Seconds))
1429       outs() << "(date: \"%s\" contains non-decimal chars) " << RawLastModified;
1430     else {
1431       // Since cime(3) returns a 26 character string of the form:
1432       // "Sun Sep 16 01:03:52 1973\n\0"
1433       // just print 24 characters.
1434       time_t t = Seconds;
1435       outs() << format("%.24s ", ctime(&t));
1436     }
1437   } else {
1438     outs() << RawLastModified << " ";
1439   }
1440
1441   if (verbose) {
1442     ErrorOr<StringRef> NameOrErr = C.getName();
1443     if (NameOrErr.getError()) {
1444       StringRef RawName = C.getRawName();
1445       outs() << RawName << "\n";
1446     } else {
1447       StringRef Name = NameOrErr.get();
1448       outs() << Name << "\n";
1449     }
1450   } else {
1451     StringRef RawName = C.getRawName();
1452     outs() << RawName << "\n";
1453   }
1454 }
1455
1456 static void printArchiveHeaders(Archive *A, bool verbose, bool print_offset) {
1457   for (Archive::child_iterator I = A->child_begin(false), E = A->child_end();
1458        I != E; ++I) {
1459     if (std::error_code EC = I->getError())
1460       report_fatal_error(EC.message());
1461     const Archive::Child &C = **I;
1462     printArchiveChild(C, verbose, print_offset);
1463   }
1464 }
1465
1466 // ParseInputMachO() parses the named Mach-O file in Filename and handles the
1467 // -arch flags selecting just those slices as specified by them and also parses
1468 // archive files.  Then for each individual Mach-O file ProcessMachO() is
1469 // called to process the file based on the command line options.
1470 void llvm::ParseInputMachO(StringRef Filename) {
1471   // Check for -arch all and verifiy the -arch flags are valid.
1472   for (unsigned i = 0; i < ArchFlags.size(); ++i) {
1473     if (ArchFlags[i] == "all") {
1474       ArchAll = true;
1475     } else {
1476       if (!MachOObjectFile::isValidArch(ArchFlags[i])) {
1477         errs() << "llvm-objdump: Unknown architecture named '" + ArchFlags[i] +
1478                       "'for the -arch option\n";
1479         return;
1480       }
1481     }
1482   }
1483
1484   // Attempt to open the binary.
1485   ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(Filename);
1486   if (std::error_code EC = BinaryOrErr.getError()) {
1487     errs() << "llvm-objdump: '" << Filename << "': " << EC.message() << ".\n";
1488     return;
1489   }
1490   Binary &Bin = *BinaryOrErr.get().getBinary();
1491
1492   if (Archive *A = dyn_cast<Archive>(&Bin)) {
1493     outs() << "Archive : " << Filename << "\n";
1494     if (ArchiveHeaders)
1495       printArchiveHeaders(A, !NonVerbose, ArchiveMemberOffsets);
1496     for (Archive::child_iterator I = A->child_begin(), E = A->child_end();
1497          I != E; ++I) {
1498       if (std::error_code EC = I->getError())
1499         report_error(Filename, EC);
1500       auto &C = I->get();
1501       ErrorOr<std::unique_ptr<Binary>> ChildOrErr = C.getAsBinary();
1502       if (ChildOrErr.getError())
1503         continue;
1504       if (MachOObjectFile *O = dyn_cast<MachOObjectFile>(&*ChildOrErr.get())) {
1505         if (!checkMachOAndArchFlags(O, Filename))
1506           return;
1507         ProcessMachO(Filename, O, O->getFileName());
1508       }
1509     }
1510     return;
1511   }
1512   if (UniversalHeaders) {
1513     if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin))
1514       printMachOUniversalHeaders(UB, !NonVerbose);
1515   }
1516   if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin)) {
1517     // If we have a list of architecture flags specified dump only those.
1518     if (!ArchAll && ArchFlags.size() != 0) {
1519       // Look for a slice in the universal binary that matches each ArchFlag.
1520       bool ArchFound;
1521       for (unsigned i = 0; i < ArchFlags.size(); ++i) {
1522         ArchFound = false;
1523         for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1524                                                    E = UB->end_objects();
1525              I != E; ++I) {
1526           if (ArchFlags[i] == I->getArchTypeName()) {
1527             ArchFound = true;
1528             ErrorOr<std::unique_ptr<ObjectFile>> ObjOrErr =
1529                 I->getAsObjectFile();
1530             std::string ArchitectureName = "";
1531             if (ArchFlags.size() > 1)
1532               ArchitectureName = I->getArchTypeName();
1533             if (ObjOrErr) {
1534               ObjectFile &O = *ObjOrErr.get();
1535               if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(&O))
1536                 ProcessMachO(Filename, MachOOF, "", ArchitectureName);
1537             } else if (ErrorOr<std::unique_ptr<Archive>> AOrErr =
1538                            I->getAsArchive()) {
1539               std::unique_ptr<Archive> &A = *AOrErr;
1540               outs() << "Archive : " << Filename;
1541               if (!ArchitectureName.empty())
1542                 outs() << " (architecture " << ArchitectureName << ")";
1543               outs() << "\n";
1544               if (ArchiveHeaders)
1545                 printArchiveHeaders(A.get(), !NonVerbose, ArchiveMemberOffsets);
1546               for (Archive::child_iterator AI = A->child_begin(),
1547                                            AE = A->child_end();
1548                    AI != AE; ++AI) {
1549                 if (std::error_code EC = AI->getError())
1550                   report_error(Filename, EC);
1551                 auto &C = AI->get();
1552                 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = C.getAsBinary();
1553                 if (ChildOrErr.getError())
1554                   continue;
1555                 if (MachOObjectFile *O =
1556                         dyn_cast<MachOObjectFile>(&*ChildOrErr.get()))
1557                   ProcessMachO(Filename, O, O->getFileName(), ArchitectureName);
1558               }
1559             }
1560           }
1561         }
1562         if (!ArchFound) {
1563           errs() << "llvm-objdump: file: " + Filename + " does not contain "
1564                  << "architecture: " + ArchFlags[i] + "\n";
1565           return;
1566         }
1567       }
1568       return;
1569     }
1570     // No architecture flags were specified so if this contains a slice that
1571     // matches the host architecture dump only that.
1572     if (!ArchAll) {
1573       for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1574                                                  E = UB->end_objects();
1575            I != E; ++I) {
1576         if (MachOObjectFile::getHostArch().getArchName() ==
1577             I->getArchTypeName()) {
1578           ErrorOr<std::unique_ptr<ObjectFile>> ObjOrErr = I->getAsObjectFile();
1579           std::string ArchiveName;
1580           ArchiveName.clear();
1581           if (ObjOrErr) {
1582             ObjectFile &O = *ObjOrErr.get();
1583             if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(&O))
1584               ProcessMachO(Filename, MachOOF);
1585           } else if (ErrorOr<std::unique_ptr<Archive>> AOrErr =
1586                          I->getAsArchive()) {
1587             std::unique_ptr<Archive> &A = *AOrErr;
1588             outs() << "Archive : " << Filename << "\n";
1589             if (ArchiveHeaders)
1590               printArchiveHeaders(A.get(), !NonVerbose, ArchiveMemberOffsets);
1591             for (Archive::child_iterator AI = A->child_begin(),
1592                                          AE = A->child_end();
1593                  AI != AE; ++AI) {
1594               if (std::error_code EC = AI->getError())
1595                 report_error(Filename, EC);
1596               auto &C = AI->get();
1597               ErrorOr<std::unique_ptr<Binary>> ChildOrErr = C.getAsBinary();
1598               if (ChildOrErr.getError())
1599                 continue;
1600               if (MachOObjectFile *O =
1601                       dyn_cast<MachOObjectFile>(&*ChildOrErr.get()))
1602                 ProcessMachO(Filename, O, O->getFileName());
1603             }
1604           }
1605           return;
1606         }
1607       }
1608     }
1609     // Either all architectures have been specified or none have been specified
1610     // and this does not contain the host architecture so dump all the slices.
1611     bool moreThanOneArch = UB->getNumberOfObjects() > 1;
1612     for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1613                                                E = UB->end_objects();
1614          I != E; ++I) {
1615       ErrorOr<std::unique_ptr<ObjectFile>> ObjOrErr = I->getAsObjectFile();
1616       std::string ArchitectureName = "";
1617       if (moreThanOneArch)
1618         ArchitectureName = I->getArchTypeName();
1619       if (ObjOrErr) {
1620         ObjectFile &Obj = *ObjOrErr.get();
1621         if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(&Obj))
1622           ProcessMachO(Filename, MachOOF, "", ArchitectureName);
1623       } else if (ErrorOr<std::unique_ptr<Archive>> AOrErr = I->getAsArchive()) {
1624         std::unique_ptr<Archive> &A = *AOrErr;
1625         outs() << "Archive : " << Filename;
1626         if (!ArchitectureName.empty())
1627           outs() << " (architecture " << ArchitectureName << ")";
1628         outs() << "\n";
1629         if (ArchiveHeaders)
1630           printArchiveHeaders(A.get(), !NonVerbose, ArchiveMemberOffsets);
1631         for (Archive::child_iterator AI = A->child_begin(), AE = A->child_end();
1632              AI != AE; ++AI) {
1633           if (std::error_code EC = AI->getError())
1634             report_error(Filename, EC);
1635           auto &C = AI->get();
1636           ErrorOr<std::unique_ptr<Binary>> ChildOrErr = C.getAsBinary();
1637           if (ChildOrErr.getError())
1638             continue;
1639           if (MachOObjectFile *O =
1640                   dyn_cast<MachOObjectFile>(&*ChildOrErr.get())) {
1641             if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(O))
1642               ProcessMachO(Filename, MachOOF, MachOOF->getFileName(),
1643                            ArchitectureName);
1644           }
1645         }
1646       }
1647     }
1648     return;
1649   }
1650   if (ObjectFile *O = dyn_cast<ObjectFile>(&Bin)) {
1651     if (!checkMachOAndArchFlags(O, Filename))
1652       return;
1653     if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(&*O)) {
1654       ProcessMachO(Filename, MachOOF);
1655     } else
1656       errs() << "llvm-objdump: '" << Filename << "': "
1657              << "Object is not a Mach-O file type.\n";
1658   } else
1659     errs() << "llvm-objdump: '" << Filename << "': "
1660            << "Unrecognized file type.\n";
1661 }
1662
1663 typedef std::pair<uint64_t, const char *> BindInfoEntry;
1664 typedef std::vector<BindInfoEntry> BindTable;
1665 typedef BindTable::iterator bind_table_iterator;
1666
1667 // The block of info used by the Symbolizer call backs.
1668 struct DisassembleInfo {
1669   bool verbose;
1670   MachOObjectFile *O;
1671   SectionRef S;
1672   SymbolAddressMap *AddrMap;
1673   std::vector<SectionRef> *Sections;
1674   const char *class_name;
1675   const char *selector_name;
1676   char *method;
1677   char *demangled_name;
1678   uint64_t adrp_addr;
1679   uint32_t adrp_inst;
1680   BindTable *bindtable;
1681   uint32_t depth;
1682 };
1683
1684 // SymbolizerGetOpInfo() is the operand information call back function.
1685 // This is called to get the symbolic information for operand(s) of an
1686 // instruction when it is being done.  This routine does this from
1687 // the relocation information, symbol table, etc. That block of information
1688 // is a pointer to the struct DisassembleInfo that was passed when the
1689 // disassembler context was created and passed to back to here when
1690 // called back by the disassembler for instruction operands that could have
1691 // relocation information. The address of the instruction containing operand is
1692 // at the Pc parameter.  The immediate value the operand has is passed in
1693 // op_info->Value and is at Offset past the start of the instruction and has a
1694 // byte Size of 1, 2 or 4. The symbolc information is returned in TagBuf is the
1695 // LLVMOpInfo1 struct defined in the header "llvm-c/Disassembler.h" as symbol
1696 // names and addends of the symbolic expression to add for the operand.  The
1697 // value of TagType is currently 1 (for the LLVMOpInfo1 struct). If symbolic
1698 // information is returned then this function returns 1 else it returns 0.
1699 static int SymbolizerGetOpInfo(void *DisInfo, uint64_t Pc, uint64_t Offset,
1700                                uint64_t Size, int TagType, void *TagBuf) {
1701   struct DisassembleInfo *info = (struct DisassembleInfo *)DisInfo;
1702   struct LLVMOpInfo1 *op_info = (struct LLVMOpInfo1 *)TagBuf;
1703   uint64_t value = op_info->Value;
1704
1705   // Make sure all fields returned are zero if we don't set them.
1706   memset((void *)op_info, '\0', sizeof(struct LLVMOpInfo1));
1707   op_info->Value = value;
1708
1709   // If the TagType is not the value 1 which it code knows about or if no
1710   // verbose symbolic information is wanted then just return 0, indicating no
1711   // information is being returned.
1712   if (TagType != 1 || !info->verbose)
1713     return 0;
1714
1715   unsigned int Arch = info->O->getArch();
1716   if (Arch == Triple::x86) {
1717     if (Size != 1 && Size != 2 && Size != 4 && Size != 0)
1718       return 0;
1719     if (info->O->getHeader().filetype != MachO::MH_OBJECT) {
1720       // TODO:
1721       // Search the external relocation entries of a fully linked image
1722       // (if any) for an entry that matches this segment offset.
1723       // uint32_t seg_offset = (Pc + Offset);
1724       return 0;
1725     }
1726     // In MH_OBJECT filetypes search the section's relocation entries (if any)
1727     // for an entry for this section offset.
1728     uint32_t sect_addr = info->S.getAddress();
1729     uint32_t sect_offset = (Pc + Offset) - sect_addr;
1730     bool reloc_found = false;
1731     DataRefImpl Rel;
1732     MachO::any_relocation_info RE;
1733     bool isExtern = false;
1734     SymbolRef Symbol;
1735     bool r_scattered = false;
1736     uint32_t r_value, pair_r_value, r_type;
1737     for (const RelocationRef &Reloc : info->S.relocations()) {
1738       uint64_t RelocOffset = Reloc.getOffset();
1739       if (RelocOffset == sect_offset) {
1740         Rel = Reloc.getRawDataRefImpl();
1741         RE = info->O->getRelocation(Rel);
1742         r_type = info->O->getAnyRelocationType(RE);
1743         r_scattered = info->O->isRelocationScattered(RE);
1744         if (r_scattered) {
1745           r_value = info->O->getScatteredRelocationValue(RE);
1746           if (r_type == MachO::GENERIC_RELOC_SECTDIFF ||
1747               r_type == MachO::GENERIC_RELOC_LOCAL_SECTDIFF) {
1748             DataRefImpl RelNext = Rel;
1749             info->O->moveRelocationNext(RelNext);
1750             MachO::any_relocation_info RENext;
1751             RENext = info->O->getRelocation(RelNext);
1752             if (info->O->isRelocationScattered(RENext))
1753               pair_r_value = info->O->getScatteredRelocationValue(RENext);
1754             else
1755               return 0;
1756           }
1757         } else {
1758           isExtern = info->O->getPlainRelocationExternal(RE);
1759           if (isExtern) {
1760             symbol_iterator RelocSym = Reloc.getSymbol();
1761             Symbol = *RelocSym;
1762           }
1763         }
1764         reloc_found = true;
1765         break;
1766       }
1767     }
1768     if (reloc_found && isExtern) {
1769       ErrorOr<StringRef> SymName = Symbol.getName();
1770       if (std::error_code EC = SymName.getError())
1771         report_fatal_error(EC.message());
1772       const char *name = SymName->data();
1773       op_info->AddSymbol.Present = 1;
1774       op_info->AddSymbol.Name = name;
1775       // For i386 extern relocation entries the value in the instruction is
1776       // the offset from the symbol, and value is already set in op_info->Value.
1777       return 1;
1778     }
1779     if (reloc_found && (r_type == MachO::GENERIC_RELOC_SECTDIFF ||
1780                         r_type == MachO::GENERIC_RELOC_LOCAL_SECTDIFF)) {
1781       const char *add = GuessSymbolName(r_value, info->AddrMap);
1782       const char *sub = GuessSymbolName(pair_r_value, info->AddrMap);
1783       uint32_t offset = value - (r_value - pair_r_value);
1784       op_info->AddSymbol.Present = 1;
1785       if (add != nullptr)
1786         op_info->AddSymbol.Name = add;
1787       else
1788         op_info->AddSymbol.Value = r_value;
1789       op_info->SubtractSymbol.Present = 1;
1790       if (sub != nullptr)
1791         op_info->SubtractSymbol.Name = sub;
1792       else
1793         op_info->SubtractSymbol.Value = pair_r_value;
1794       op_info->Value = offset;
1795       return 1;
1796     }
1797     return 0;
1798   }
1799   if (Arch == Triple::x86_64) {
1800     if (Size != 1 && Size != 2 && Size != 4 && Size != 0)
1801       return 0;
1802     if (info->O->getHeader().filetype != MachO::MH_OBJECT) {
1803       // TODO:
1804       // Search the external relocation entries of a fully linked image
1805       // (if any) for an entry that matches this segment offset.
1806       // uint64_t seg_offset = (Pc + Offset);
1807       return 0;
1808     }
1809     // In MH_OBJECT filetypes search the section's relocation entries (if any)
1810     // for an entry for this section offset.
1811     uint64_t sect_addr = info->S.getAddress();
1812     uint64_t sect_offset = (Pc + Offset) - sect_addr;
1813     bool reloc_found = false;
1814     DataRefImpl Rel;
1815     MachO::any_relocation_info RE;
1816     bool isExtern = false;
1817     SymbolRef Symbol;
1818     for (const RelocationRef &Reloc : info->S.relocations()) {
1819       uint64_t RelocOffset = Reloc.getOffset();
1820       if (RelocOffset == sect_offset) {
1821         Rel = Reloc.getRawDataRefImpl();
1822         RE = info->O->getRelocation(Rel);
1823         // NOTE: Scattered relocations don't exist on x86_64.
1824         isExtern = info->O->getPlainRelocationExternal(RE);
1825         if (isExtern) {
1826           symbol_iterator RelocSym = Reloc.getSymbol();
1827           Symbol = *RelocSym;
1828         }
1829         reloc_found = true;
1830         break;
1831       }
1832     }
1833     if (reloc_found && isExtern) {
1834       // The Value passed in will be adjusted by the Pc if the instruction
1835       // adds the Pc.  But for x86_64 external relocation entries the Value
1836       // is the offset from the external symbol.
1837       if (info->O->getAnyRelocationPCRel(RE))
1838         op_info->Value -= Pc + Offset + Size;
1839       ErrorOr<StringRef> SymName = Symbol.getName();
1840       if (std::error_code EC = SymName.getError())
1841         report_fatal_error(EC.message());
1842       const char *name = SymName->data();
1843       unsigned Type = info->O->getAnyRelocationType(RE);
1844       if (Type == MachO::X86_64_RELOC_SUBTRACTOR) {
1845         DataRefImpl RelNext = Rel;
1846         info->O->moveRelocationNext(RelNext);
1847         MachO::any_relocation_info RENext = info->O->getRelocation(RelNext);
1848         unsigned TypeNext = info->O->getAnyRelocationType(RENext);
1849         bool isExternNext = info->O->getPlainRelocationExternal(RENext);
1850         unsigned SymbolNum = info->O->getPlainRelocationSymbolNum(RENext);
1851         if (TypeNext == MachO::X86_64_RELOC_UNSIGNED && isExternNext) {
1852           op_info->SubtractSymbol.Present = 1;
1853           op_info->SubtractSymbol.Name = name;
1854           symbol_iterator RelocSymNext = info->O->getSymbolByIndex(SymbolNum);
1855           Symbol = *RelocSymNext;
1856           ErrorOr<StringRef> SymNameNext = Symbol.getName();
1857           if (std::error_code EC = SymNameNext.getError())
1858             report_fatal_error(EC.message());
1859           name = SymNameNext->data();
1860         }
1861       }
1862       // TODO: add the VariantKinds to op_info->VariantKind for relocation types
1863       // like: X86_64_RELOC_TLV, X86_64_RELOC_GOT_LOAD and X86_64_RELOC_GOT.
1864       op_info->AddSymbol.Present = 1;
1865       op_info->AddSymbol.Name = name;
1866       return 1;
1867     }
1868     return 0;
1869   }
1870   if (Arch == Triple::arm) {
1871     if (Offset != 0 || (Size != 4 && Size != 2))
1872       return 0;
1873     if (info->O->getHeader().filetype != MachO::MH_OBJECT) {
1874       // TODO:
1875       // Search the external relocation entries of a fully linked image
1876       // (if any) for an entry that matches this segment offset.
1877       // uint32_t seg_offset = (Pc + Offset);
1878       return 0;
1879     }
1880     // In MH_OBJECT filetypes search the section's relocation entries (if any)
1881     // for an entry for this section offset.
1882     uint32_t sect_addr = info->S.getAddress();
1883     uint32_t sect_offset = (Pc + Offset) - sect_addr;
1884     DataRefImpl Rel;
1885     MachO::any_relocation_info RE;
1886     bool isExtern = false;
1887     SymbolRef Symbol;
1888     bool r_scattered = false;
1889     uint32_t r_value, pair_r_value, r_type, r_length, other_half;
1890     auto Reloc =
1891         std::find_if(info->S.relocations().begin(), info->S.relocations().end(),
1892                      [&](const RelocationRef &Reloc) {
1893                        uint64_t RelocOffset = Reloc.getOffset();
1894                        return RelocOffset == sect_offset;
1895                      });
1896
1897     if (Reloc == info->S.relocations().end())
1898       return 0;
1899
1900     Rel = Reloc->getRawDataRefImpl();
1901     RE = info->O->getRelocation(Rel);
1902     r_length = info->O->getAnyRelocationLength(RE);
1903     r_scattered = info->O->isRelocationScattered(RE);
1904     if (r_scattered) {
1905       r_value = info->O->getScatteredRelocationValue(RE);
1906       r_type = info->O->getScatteredRelocationType(RE);
1907     } else {
1908       r_type = info->O->getAnyRelocationType(RE);
1909       isExtern = info->O->getPlainRelocationExternal(RE);
1910       if (isExtern) {
1911         symbol_iterator RelocSym = Reloc->getSymbol();
1912         Symbol = *RelocSym;
1913       }
1914     }
1915     if (r_type == MachO::ARM_RELOC_HALF ||
1916         r_type == MachO::ARM_RELOC_SECTDIFF ||
1917         r_type == MachO::ARM_RELOC_LOCAL_SECTDIFF ||
1918         r_type == MachO::ARM_RELOC_HALF_SECTDIFF) {
1919       DataRefImpl RelNext = Rel;
1920       info->O->moveRelocationNext(RelNext);
1921       MachO::any_relocation_info RENext;
1922       RENext = info->O->getRelocation(RelNext);
1923       other_half = info->O->getAnyRelocationAddress(RENext) & 0xffff;
1924       if (info->O->isRelocationScattered(RENext))
1925         pair_r_value = info->O->getScatteredRelocationValue(RENext);
1926     }
1927
1928     if (isExtern) {
1929       ErrorOr<StringRef> SymName = Symbol.getName();
1930       if (std::error_code EC = SymName.getError())
1931         report_fatal_error(EC.message());
1932       const char *name = SymName->data();
1933       op_info->AddSymbol.Present = 1;
1934       op_info->AddSymbol.Name = name;
1935       switch (r_type) {
1936       case MachO::ARM_RELOC_HALF:
1937         if ((r_length & 0x1) == 1) {
1938           op_info->Value = value << 16 | other_half;
1939           op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_HI16;
1940         } else {
1941           op_info->Value = other_half << 16 | value;
1942           op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_LO16;
1943         }
1944         break;
1945       default:
1946         break;
1947       }
1948       return 1;
1949     }
1950     // If we have a branch that is not an external relocation entry then
1951     // return 0 so the code in tryAddingSymbolicOperand() can use the
1952     // SymbolLookUp call back with the branch target address to look up the
1953     // symbol and possiblity add an annotation for a symbol stub.
1954     if (isExtern == 0 && (r_type == MachO::ARM_RELOC_BR24 ||
1955                           r_type == MachO::ARM_THUMB_RELOC_BR22))
1956       return 0;
1957
1958     uint32_t offset = 0;
1959     if (r_type == MachO::ARM_RELOC_HALF ||
1960         r_type == MachO::ARM_RELOC_HALF_SECTDIFF) {
1961       if ((r_length & 0x1) == 1)
1962         value = value << 16 | other_half;
1963       else
1964         value = other_half << 16 | value;
1965     }
1966     if (r_scattered && (r_type != MachO::ARM_RELOC_HALF &&
1967                         r_type != MachO::ARM_RELOC_HALF_SECTDIFF)) {
1968       offset = value - r_value;
1969       value = r_value;
1970     }
1971
1972     if (r_type == MachO::ARM_RELOC_HALF_SECTDIFF) {
1973       if ((r_length & 0x1) == 1)
1974         op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_HI16;
1975       else
1976         op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_LO16;
1977       const char *add = GuessSymbolName(r_value, info->AddrMap);
1978       const char *sub = GuessSymbolName(pair_r_value, info->AddrMap);
1979       int32_t offset = value - (r_value - pair_r_value);
1980       op_info->AddSymbol.Present = 1;
1981       if (add != nullptr)
1982         op_info->AddSymbol.Name = add;
1983       else
1984         op_info->AddSymbol.Value = r_value;
1985       op_info->SubtractSymbol.Present = 1;
1986       if (sub != nullptr)
1987         op_info->SubtractSymbol.Name = sub;
1988       else
1989         op_info->SubtractSymbol.Value = pair_r_value;
1990       op_info->Value = offset;
1991       return 1;
1992     }
1993
1994     op_info->AddSymbol.Present = 1;
1995     op_info->Value = offset;
1996     if (r_type == MachO::ARM_RELOC_HALF) {
1997       if ((r_length & 0x1) == 1)
1998         op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_HI16;
1999       else
2000         op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_LO16;
2001     }
2002     const char *add = GuessSymbolName(value, info->AddrMap);
2003     if (add != nullptr) {
2004       op_info->AddSymbol.Name = add;
2005       return 1;
2006     }
2007     op_info->AddSymbol.Value = value;
2008     return 1;
2009   }
2010   if (Arch == Triple::aarch64) {
2011     if (Offset != 0 || Size != 4)
2012       return 0;
2013     if (info->O->getHeader().filetype != MachO::MH_OBJECT) {
2014       // TODO:
2015       // Search the external relocation entries of a fully linked image
2016       // (if any) for an entry that matches this segment offset.
2017       // uint64_t seg_offset = (Pc + Offset);
2018       return 0;
2019     }
2020     // In MH_OBJECT filetypes search the section's relocation entries (if any)
2021     // for an entry for this section offset.
2022     uint64_t sect_addr = info->S.getAddress();
2023     uint64_t sect_offset = (Pc + Offset) - sect_addr;
2024     auto Reloc =
2025         std::find_if(info->S.relocations().begin(), info->S.relocations().end(),
2026                      [&](const RelocationRef &Reloc) {
2027                        uint64_t RelocOffset = Reloc.getOffset();
2028                        return RelocOffset == sect_offset;
2029                      });
2030
2031     if (Reloc == info->S.relocations().end())
2032       return 0;
2033
2034     DataRefImpl Rel = Reloc->getRawDataRefImpl();
2035     MachO::any_relocation_info RE = info->O->getRelocation(Rel);
2036     uint32_t r_type = info->O->getAnyRelocationType(RE);
2037     if (r_type == MachO::ARM64_RELOC_ADDEND) {
2038       DataRefImpl RelNext = Rel;
2039       info->O->moveRelocationNext(RelNext);
2040       MachO::any_relocation_info RENext = info->O->getRelocation(RelNext);
2041       if (value == 0) {
2042         value = info->O->getPlainRelocationSymbolNum(RENext);
2043         op_info->Value = value;
2044       }
2045     }
2046     // NOTE: Scattered relocations don't exist on arm64.
2047     if (!info->O->getPlainRelocationExternal(RE))
2048       return 0;
2049     ErrorOr<StringRef> SymName = Reloc->getSymbol()->getName();
2050     if (std::error_code EC = SymName.getError())
2051       report_fatal_error(EC.message());
2052     const char *name = SymName->data();
2053     op_info->AddSymbol.Present = 1;
2054     op_info->AddSymbol.Name = name;
2055
2056     switch (r_type) {
2057     case MachO::ARM64_RELOC_PAGE21:
2058       /* @page */
2059       op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_PAGE;
2060       break;
2061     case MachO::ARM64_RELOC_PAGEOFF12:
2062       /* @pageoff */
2063       op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_PAGEOFF;
2064       break;
2065     case MachO::ARM64_RELOC_GOT_LOAD_PAGE21:
2066       /* @gotpage */
2067       op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_GOTPAGE;
2068       break;
2069     case MachO::ARM64_RELOC_GOT_LOAD_PAGEOFF12:
2070       /* @gotpageoff */
2071       op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_GOTPAGEOFF;
2072       break;
2073     case MachO::ARM64_RELOC_TLVP_LOAD_PAGE21:
2074       /* @tvlppage is not implemented in llvm-mc */
2075       op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_TLVP;
2076       break;
2077     case MachO::ARM64_RELOC_TLVP_LOAD_PAGEOFF12:
2078       /* @tvlppageoff is not implemented in llvm-mc */
2079       op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_TLVOFF;
2080       break;
2081     default:
2082     case MachO::ARM64_RELOC_BRANCH26:
2083       op_info->VariantKind = LLVMDisassembler_VariantKind_None;
2084       break;
2085     }
2086     return 1;
2087   }
2088   return 0;
2089 }
2090
2091 // GuessCstringPointer is passed the address of what might be a pointer to a
2092 // literal string in a cstring section.  If that address is in a cstring section
2093 // it returns a pointer to that string.  Else it returns nullptr.
2094 static const char *GuessCstringPointer(uint64_t ReferenceValue,
2095                                        struct DisassembleInfo *info) {
2096   for (const auto &Load : info->O->load_commands()) {
2097     if (Load.C.cmd == MachO::LC_SEGMENT_64) {
2098       MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load);
2099       for (unsigned J = 0; J < Seg.nsects; ++J) {
2100         MachO::section_64 Sec = info->O->getSection64(Load, J);
2101         uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2102         if (section_type == MachO::S_CSTRING_LITERALS &&
2103             ReferenceValue >= Sec.addr &&
2104             ReferenceValue < Sec.addr + Sec.size) {
2105           uint64_t sect_offset = ReferenceValue - Sec.addr;
2106           uint64_t object_offset = Sec.offset + sect_offset;
2107           StringRef MachOContents = info->O->getData();
2108           uint64_t object_size = MachOContents.size();
2109           const char *object_addr = (const char *)MachOContents.data();
2110           if (object_offset < object_size) {
2111             const char *name = object_addr + object_offset;
2112             return name;
2113           } else {
2114             return nullptr;
2115           }
2116         }
2117       }
2118     } else if (Load.C.cmd == MachO::LC_SEGMENT) {
2119       MachO::segment_command Seg = info->O->getSegmentLoadCommand(Load);
2120       for (unsigned J = 0; J < Seg.nsects; ++J) {
2121         MachO::section Sec = info->O->getSection(Load, J);
2122         uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2123         if (section_type == MachO::S_CSTRING_LITERALS &&
2124             ReferenceValue >= Sec.addr &&
2125             ReferenceValue < Sec.addr + Sec.size) {
2126           uint64_t sect_offset = ReferenceValue - Sec.addr;
2127           uint64_t object_offset = Sec.offset + sect_offset;
2128           StringRef MachOContents = info->O->getData();
2129           uint64_t object_size = MachOContents.size();
2130           const char *object_addr = (const char *)MachOContents.data();
2131           if (object_offset < object_size) {
2132             const char *name = object_addr + object_offset;
2133             return name;
2134           } else {
2135             return nullptr;
2136           }
2137         }
2138       }
2139     }
2140   }
2141   return nullptr;
2142 }
2143
2144 // GuessIndirectSymbol returns the name of the indirect symbol for the
2145 // ReferenceValue passed in or nullptr.  This is used when ReferenceValue maybe
2146 // an address of a symbol stub or a lazy or non-lazy pointer to associate the
2147 // symbol name being referenced by the stub or pointer.
2148 static const char *GuessIndirectSymbol(uint64_t ReferenceValue,
2149                                        struct DisassembleInfo *info) {
2150   MachO::dysymtab_command Dysymtab = info->O->getDysymtabLoadCommand();
2151   MachO::symtab_command Symtab = info->O->getSymtabLoadCommand();
2152   for (const auto &Load : info->O->load_commands()) {
2153     if (Load.C.cmd == MachO::LC_SEGMENT_64) {
2154       MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load);
2155       for (unsigned J = 0; J < Seg.nsects; ++J) {
2156         MachO::section_64 Sec = info->O->getSection64(Load, J);
2157         uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2158         if ((section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
2159              section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
2160              section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
2161              section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS ||
2162              section_type == MachO::S_SYMBOL_STUBS) &&
2163             ReferenceValue >= Sec.addr &&
2164             ReferenceValue < Sec.addr + Sec.size) {
2165           uint32_t stride;
2166           if (section_type == MachO::S_SYMBOL_STUBS)
2167             stride = Sec.reserved2;
2168           else
2169             stride = 8;
2170           if (stride == 0)
2171             return nullptr;
2172           uint32_t index = Sec.reserved1 + (ReferenceValue - Sec.addr) / stride;
2173           if (index < Dysymtab.nindirectsyms) {
2174             uint32_t indirect_symbol =
2175                 info->O->getIndirectSymbolTableEntry(Dysymtab, index);
2176             if (indirect_symbol < Symtab.nsyms) {
2177               symbol_iterator Sym = info->O->getSymbolByIndex(indirect_symbol);
2178               SymbolRef Symbol = *Sym;
2179               ErrorOr<StringRef> SymName = Symbol.getName();
2180               if (std::error_code EC = SymName.getError())
2181                 report_fatal_error(EC.message());
2182               const char *name = SymName->data();
2183               return name;
2184             }
2185           }
2186         }
2187       }
2188     } else if (Load.C.cmd == MachO::LC_SEGMENT) {
2189       MachO::segment_command Seg = info->O->getSegmentLoadCommand(Load);
2190       for (unsigned J = 0; J < Seg.nsects; ++J) {
2191         MachO::section Sec = info->O->getSection(Load, J);
2192         uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2193         if ((section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
2194              section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
2195              section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
2196              section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS ||
2197              section_type == MachO::S_SYMBOL_STUBS) &&
2198             ReferenceValue >= Sec.addr &&
2199             ReferenceValue < Sec.addr + Sec.size) {
2200           uint32_t stride;
2201           if (section_type == MachO::S_SYMBOL_STUBS)
2202             stride = Sec.reserved2;
2203           else
2204             stride = 4;
2205           if (stride == 0)
2206             return nullptr;
2207           uint32_t index = Sec.reserved1 + (ReferenceValue - Sec.addr) / stride;
2208           if (index < Dysymtab.nindirectsyms) {
2209             uint32_t indirect_symbol =
2210                 info->O->getIndirectSymbolTableEntry(Dysymtab, index);
2211             if (indirect_symbol < Symtab.nsyms) {
2212               symbol_iterator Sym = info->O->getSymbolByIndex(indirect_symbol);
2213               SymbolRef Symbol = *Sym;
2214               ErrorOr<StringRef> SymName = Symbol.getName();
2215               if (std::error_code EC = SymName.getError())
2216                 report_fatal_error(EC.message());
2217               const char *name = SymName->data();
2218               return name;
2219             }
2220           }
2221         }
2222       }
2223     }
2224   }
2225   return nullptr;
2226 }
2227
2228 // method_reference() is called passing it the ReferenceName that might be
2229 // a reference it to an Objective-C method call.  If so then it allocates and
2230 // assembles a method call string with the values last seen and saved in
2231 // the DisassembleInfo's class_name and selector_name fields.  This is saved
2232 // into the method field of the info and any previous string is free'ed.
2233 // Then the class_name field in the info is set to nullptr.  The method call
2234 // string is set into ReferenceName and ReferenceType is set to
2235 // LLVMDisassembler_ReferenceType_Out_Objc_Message.  If this not a method call
2236 // then both ReferenceType and ReferenceName are left unchanged.
2237 static void method_reference(struct DisassembleInfo *info,
2238                              uint64_t *ReferenceType,
2239                              const char **ReferenceName) {
2240   unsigned int Arch = info->O->getArch();
2241   if (*ReferenceName != nullptr) {
2242     if (strcmp(*ReferenceName, "_objc_msgSend") == 0) {
2243       if (info->selector_name != nullptr) {
2244         if (info->method != nullptr)
2245           free(info->method);
2246         if (info->class_name != nullptr) {
2247           info->method = (char *)malloc(5 + strlen(info->class_name) +
2248                                         strlen(info->selector_name));
2249           if (info->method != nullptr) {
2250             strcpy(info->method, "+[");
2251             strcat(info->method, info->class_name);
2252             strcat(info->method, " ");
2253             strcat(info->method, info->selector_name);
2254             strcat(info->method, "]");
2255             *ReferenceName = info->method;
2256             *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message;
2257           }
2258         } else {
2259           info->method = (char *)malloc(9 + strlen(info->selector_name));
2260           if (info->method != nullptr) {
2261             if (Arch == Triple::x86_64)
2262               strcpy(info->method, "-[%rdi ");
2263             else if (Arch == Triple::aarch64)
2264               strcpy(info->method, "-[x0 ");
2265             else
2266               strcpy(info->method, "-[r? ");
2267             strcat(info->method, info->selector_name);
2268             strcat(info->method, "]");
2269             *ReferenceName = info->method;
2270             *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message;
2271           }
2272         }
2273         info->class_name = nullptr;
2274       }
2275     } else if (strcmp(*ReferenceName, "_objc_msgSendSuper2") == 0) {
2276       if (info->selector_name != nullptr) {
2277         if (info->method != nullptr)
2278           free(info->method);
2279         info->method = (char *)malloc(17 + strlen(info->selector_name));
2280         if (info->method != nullptr) {
2281           if (Arch == Triple::x86_64)
2282             strcpy(info->method, "-[[%rdi super] ");
2283           else if (Arch == Triple::aarch64)
2284             strcpy(info->method, "-[[x0 super] ");
2285           else
2286             strcpy(info->method, "-[[r? super] ");
2287           strcat(info->method, info->selector_name);
2288           strcat(info->method, "]");
2289           *ReferenceName = info->method;
2290           *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message;
2291         }
2292         info->class_name = nullptr;
2293       }
2294     }
2295   }
2296 }
2297
2298 // GuessPointerPointer() is passed the address of what might be a pointer to
2299 // a reference to an Objective-C class, selector, message ref or cfstring.
2300 // If so the value of the pointer is returned and one of the booleans are set
2301 // to true.  If not zero is returned and all the booleans are set to false.
2302 static uint64_t GuessPointerPointer(uint64_t ReferenceValue,
2303                                     struct DisassembleInfo *info,
2304                                     bool &classref, bool &selref, bool &msgref,
2305                                     bool &cfstring) {
2306   classref = false;
2307   selref = false;
2308   msgref = false;
2309   cfstring = false;
2310   for (const auto &Load : info->O->load_commands()) {
2311     if (Load.C.cmd == MachO::LC_SEGMENT_64) {
2312       MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load);
2313       for (unsigned J = 0; J < Seg.nsects; ++J) {
2314         MachO::section_64 Sec = info->O->getSection64(Load, J);
2315         if ((strncmp(Sec.sectname, "__objc_selrefs", 16) == 0 ||
2316              strncmp(Sec.sectname, "__objc_classrefs", 16) == 0 ||
2317              strncmp(Sec.sectname, "__objc_superrefs", 16) == 0 ||
2318              strncmp(Sec.sectname, "__objc_msgrefs", 16) == 0 ||
2319              strncmp(Sec.sectname, "__cfstring", 16) == 0) &&
2320             ReferenceValue >= Sec.addr &&
2321             ReferenceValue < Sec.addr + Sec.size) {
2322           uint64_t sect_offset = ReferenceValue - Sec.addr;
2323           uint64_t object_offset = Sec.offset + sect_offset;
2324           StringRef MachOContents = info->O->getData();
2325           uint64_t object_size = MachOContents.size();
2326           const char *object_addr = (const char *)MachOContents.data();
2327           if (object_offset < object_size) {
2328             uint64_t pointer_value;
2329             memcpy(&pointer_value, object_addr + object_offset,
2330                    sizeof(uint64_t));
2331             if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
2332               sys::swapByteOrder(pointer_value);
2333             if (strncmp(Sec.sectname, "__objc_selrefs", 16) == 0)
2334               selref = true;
2335             else if (strncmp(Sec.sectname, "__objc_classrefs", 16) == 0 ||
2336                      strncmp(Sec.sectname, "__objc_superrefs", 16) == 0)
2337               classref = true;
2338             else if (strncmp(Sec.sectname, "__objc_msgrefs", 16) == 0 &&
2339                      ReferenceValue + 8 < Sec.addr + Sec.size) {
2340               msgref = true;
2341               memcpy(&pointer_value, object_addr + object_offset + 8,
2342                      sizeof(uint64_t));
2343               if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
2344                 sys::swapByteOrder(pointer_value);
2345             } else if (strncmp(Sec.sectname, "__cfstring", 16) == 0)
2346               cfstring = true;
2347             return pointer_value;
2348           } else {
2349             return 0;
2350           }
2351         }
2352       }
2353     }
2354     // TODO: Look for LC_SEGMENT for 32-bit Mach-O files.
2355   }
2356   return 0;
2357 }
2358
2359 // get_pointer_64 returns a pointer to the bytes in the object file at the
2360 // Address from a section in the Mach-O file.  And indirectly returns the
2361 // offset into the section, number of bytes left in the section past the offset
2362 // and which section is was being referenced.  If the Address is not in a
2363 // section nullptr is returned.
2364 static const char *get_pointer_64(uint64_t Address, uint32_t &offset,
2365                                   uint32_t &left, SectionRef &S,
2366                                   DisassembleInfo *info,
2367                                   bool objc_only = false) {
2368   offset = 0;
2369   left = 0;
2370   S = SectionRef();
2371   for (unsigned SectIdx = 0; SectIdx != info->Sections->size(); SectIdx++) {
2372     uint64_t SectAddress = ((*(info->Sections))[SectIdx]).getAddress();
2373     uint64_t SectSize = ((*(info->Sections))[SectIdx]).getSize();
2374     if (SectSize == 0)
2375       continue;
2376     if (objc_only) {
2377       StringRef SectName;
2378       ((*(info->Sections))[SectIdx]).getName(SectName);
2379       DataRefImpl Ref = ((*(info->Sections))[SectIdx]).getRawDataRefImpl();
2380       StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
2381       if (SegName != "__OBJC" && SectName != "__cstring")
2382         continue;
2383     }
2384     if (Address >= SectAddress && Address < SectAddress + SectSize) {
2385       S = (*(info->Sections))[SectIdx];
2386       offset = Address - SectAddress;
2387       left = SectSize - offset;
2388       StringRef SectContents;
2389       ((*(info->Sections))[SectIdx]).getContents(SectContents);
2390       return SectContents.data() + offset;
2391     }
2392   }
2393   return nullptr;
2394 }
2395
2396 static const char *get_pointer_32(uint32_t Address, uint32_t &offset,
2397                                   uint32_t &left, SectionRef &S,
2398                                   DisassembleInfo *info,
2399                                   bool objc_only = false) {
2400   return get_pointer_64(Address, offset, left, S, info, objc_only);
2401 }
2402
2403 // get_symbol_64() returns the name of a symbol (or nullptr) and the address of
2404 // the symbol indirectly through n_value. Based on the relocation information
2405 // for the specified section offset in the specified section reference.
2406 // If no relocation information is found and a non-zero ReferenceValue for the
2407 // symbol is passed, look up that address in the info's AddrMap.
2408 static const char *get_symbol_64(uint32_t sect_offset, SectionRef S,
2409                                  DisassembleInfo *info, uint64_t &n_value,
2410                                  uint64_t ReferenceValue = 0) {
2411   n_value = 0;
2412   if (!info->verbose)
2413     return nullptr;
2414
2415   // See if there is an external relocation entry at the sect_offset.
2416   bool reloc_found = false;
2417   DataRefImpl Rel;
2418   MachO::any_relocation_info RE;
2419   bool isExtern = false;
2420   SymbolRef Symbol;
2421   for (const RelocationRef &Reloc : S.relocations()) {
2422     uint64_t RelocOffset = Reloc.getOffset();
2423     if (RelocOffset == sect_offset) {
2424       Rel = Reloc.getRawDataRefImpl();
2425       RE = info->O->getRelocation(Rel);
2426       if (info->O->isRelocationScattered(RE))
2427         continue;
2428       isExtern = info->O->getPlainRelocationExternal(RE);
2429       if (isExtern) {
2430         symbol_iterator RelocSym = Reloc.getSymbol();
2431         Symbol = *RelocSym;
2432       }
2433       reloc_found = true;
2434       break;
2435     }
2436   }
2437   // If there is an external relocation entry for a symbol in this section
2438   // at this section_offset then use that symbol's value for the n_value
2439   // and return its name.
2440   const char *SymbolName = nullptr;
2441   if (reloc_found && isExtern) {
2442     n_value = Symbol.getValue();
2443     ErrorOr<StringRef> NameOrError = Symbol.getName();
2444     if (std::error_code EC = NameOrError.getError())
2445       report_fatal_error(EC.message());
2446     StringRef Name = *NameOrError;
2447     if (!Name.empty()) {
2448       SymbolName = Name.data();
2449       return SymbolName;
2450     }
2451   }
2452
2453   // TODO: For fully linked images, look through the external relocation
2454   // entries off the dynamic symtab command. For these the r_offset is from the
2455   // start of the first writeable segment in the Mach-O file.  So the offset
2456   // to this section from that segment is passed to this routine by the caller,
2457   // as the database_offset. Which is the difference of the section's starting
2458   // address and the first writable segment.
2459   //
2460   // NOTE: need add passing the database_offset to this routine.
2461
2462   // We did not find an external relocation entry so look up the ReferenceValue
2463   // as an address of a symbol and if found return that symbol's name.
2464   SymbolName = GuessSymbolName(ReferenceValue, info->AddrMap);
2465
2466   return SymbolName;
2467 }
2468
2469 static const char *get_symbol_32(uint32_t sect_offset, SectionRef S,
2470                                  DisassembleInfo *info,
2471                                  uint32_t ReferenceValue) {
2472   uint64_t n_value64;
2473   return get_symbol_64(sect_offset, S, info, n_value64, ReferenceValue);
2474 }
2475
2476 // These are structs in the Objective-C meta data and read to produce the
2477 // comments for disassembly.  While these are part of the ABI they are no
2478 // public defintions.  So the are here not in include/llvm/Support/MachO.h .
2479
2480 // The cfstring object in a 64-bit Mach-O file.
2481 struct cfstring64_t {
2482   uint64_t isa;        // class64_t * (64-bit pointer)
2483   uint64_t flags;      // flag bits
2484   uint64_t characters; // char * (64-bit pointer)
2485   uint64_t length;     // number of non-NULL characters in above
2486 };
2487
2488 // The class object in a 64-bit Mach-O file.
2489 struct class64_t {
2490   uint64_t isa;        // class64_t * (64-bit pointer)
2491   uint64_t superclass; // class64_t * (64-bit pointer)
2492   uint64_t cache;      // Cache (64-bit pointer)
2493   uint64_t vtable;     // IMP * (64-bit pointer)
2494   uint64_t data;       // class_ro64_t * (64-bit pointer)
2495 };
2496
2497 struct class32_t {
2498   uint32_t isa;        /* class32_t * (32-bit pointer) */
2499   uint32_t superclass; /* class32_t * (32-bit pointer) */
2500   uint32_t cache;      /* Cache (32-bit pointer) */
2501   uint32_t vtable;     /* IMP * (32-bit pointer) */
2502   uint32_t data;       /* class_ro32_t * (32-bit pointer) */
2503 };
2504
2505 struct class_ro64_t {
2506   uint32_t flags;
2507   uint32_t instanceStart;
2508   uint32_t instanceSize;
2509   uint32_t reserved;
2510   uint64_t ivarLayout;     // const uint8_t * (64-bit pointer)
2511   uint64_t name;           // const char * (64-bit pointer)
2512   uint64_t baseMethods;    // const method_list_t * (64-bit pointer)
2513   uint64_t baseProtocols;  // const protocol_list_t * (64-bit pointer)
2514   uint64_t ivars;          // const ivar_list_t * (64-bit pointer)
2515   uint64_t weakIvarLayout; // const uint8_t * (64-bit pointer)
2516   uint64_t baseProperties; // const struct objc_property_list (64-bit pointer)
2517 };
2518
2519 struct class_ro32_t {
2520   uint32_t flags;
2521   uint32_t instanceStart;
2522   uint32_t instanceSize;
2523   uint32_t ivarLayout;     /* const uint8_t * (32-bit pointer) */
2524   uint32_t name;           /* const char * (32-bit pointer) */
2525   uint32_t baseMethods;    /* const method_list_t * (32-bit pointer) */
2526   uint32_t baseProtocols;  /* const protocol_list_t * (32-bit pointer) */
2527   uint32_t ivars;          /* const ivar_list_t * (32-bit pointer) */
2528   uint32_t weakIvarLayout; /* const uint8_t * (32-bit pointer) */
2529   uint32_t baseProperties; /* const struct objc_property_list *
2530                                                    (32-bit pointer) */
2531 };
2532
2533 /* Values for class_ro{64,32}_t->flags */
2534 #define RO_META (1 << 0)
2535 #define RO_ROOT (1 << 1)
2536 #define RO_HAS_CXX_STRUCTORS (1 << 2)
2537
2538 struct method_list64_t {
2539   uint32_t entsize;
2540   uint32_t count;
2541   /* struct method64_t first;  These structures follow inline */
2542 };
2543
2544 struct method_list32_t {
2545   uint32_t entsize;
2546   uint32_t count;
2547   /* struct method32_t first;  These structures follow inline */
2548 };
2549
2550 struct method64_t {
2551   uint64_t name;  /* SEL (64-bit pointer) */
2552   uint64_t types; /* const char * (64-bit pointer) */
2553   uint64_t imp;   /* IMP (64-bit pointer) */
2554 };
2555
2556 struct method32_t {
2557   uint32_t name;  /* SEL (32-bit pointer) */
2558   uint32_t types; /* const char * (32-bit pointer) */
2559   uint32_t imp;   /* IMP (32-bit pointer) */
2560 };
2561
2562 struct protocol_list64_t {
2563   uint64_t count; /* uintptr_t (a 64-bit value) */
2564   /* struct protocol64_t * list[0];  These pointers follow inline */
2565 };
2566
2567 struct protocol_list32_t {
2568   uint32_t count; /* uintptr_t (a 32-bit value) */
2569   /* struct protocol32_t * list[0];  These pointers follow inline */
2570 };
2571
2572 struct protocol64_t {
2573   uint64_t isa;                     /* id * (64-bit pointer) */
2574   uint64_t name;                    /* const char * (64-bit pointer) */
2575   uint64_t protocols;               /* struct protocol_list64_t *
2576                                                     (64-bit pointer) */
2577   uint64_t instanceMethods;         /* method_list_t * (64-bit pointer) */
2578   uint64_t classMethods;            /* method_list_t * (64-bit pointer) */
2579   uint64_t optionalInstanceMethods; /* method_list_t * (64-bit pointer) */
2580   uint64_t optionalClassMethods;    /* method_list_t * (64-bit pointer) */
2581   uint64_t instanceProperties;      /* struct objc_property_list *
2582                                                        (64-bit pointer) */
2583 };
2584
2585 struct protocol32_t {
2586   uint32_t isa;                     /* id * (32-bit pointer) */
2587   uint32_t name;                    /* const char * (32-bit pointer) */
2588   uint32_t protocols;               /* struct protocol_list_t *
2589                                                     (32-bit pointer) */
2590   uint32_t instanceMethods;         /* method_list_t * (32-bit pointer) */
2591   uint32_t classMethods;            /* method_list_t * (32-bit pointer) */
2592   uint32_t optionalInstanceMethods; /* method_list_t * (32-bit pointer) */
2593   uint32_t optionalClassMethods;    /* method_list_t * (32-bit pointer) */
2594   uint32_t instanceProperties;      /* struct objc_property_list *
2595                                                        (32-bit pointer) */
2596 };
2597
2598 struct ivar_list64_t {
2599   uint32_t entsize;
2600   uint32_t count;
2601   /* struct ivar64_t first;  These structures follow inline */
2602 };
2603
2604 struct ivar_list32_t {
2605   uint32_t entsize;
2606   uint32_t count;
2607   /* struct ivar32_t first;  These structures follow inline */
2608 };
2609
2610 struct ivar64_t {
2611   uint64_t offset; /* uintptr_t * (64-bit pointer) */
2612   uint64_t name;   /* const char * (64-bit pointer) */
2613   uint64_t type;   /* const char * (64-bit pointer) */
2614   uint32_t alignment;
2615   uint32_t size;
2616 };
2617
2618 struct ivar32_t {
2619   uint32_t offset; /* uintptr_t * (32-bit pointer) */
2620   uint32_t name;   /* const char * (32-bit pointer) */
2621   uint32_t type;   /* const char * (32-bit pointer) */
2622   uint32_t alignment;
2623   uint32_t size;
2624 };
2625
2626 struct objc_property_list64 {
2627   uint32_t entsize;
2628   uint32_t count;
2629   /* struct objc_property64 first;  These structures follow inline */
2630 };
2631
2632 struct objc_property_list32 {
2633   uint32_t entsize;
2634   uint32_t count;
2635   /* struct objc_property32 first;  These structures follow inline */
2636 };
2637
2638 struct objc_property64 {
2639   uint64_t name;       /* const char * (64-bit pointer) */
2640   uint64_t attributes; /* const char * (64-bit pointer) */
2641 };
2642
2643 struct objc_property32 {
2644   uint32_t name;       /* const char * (32-bit pointer) */
2645   uint32_t attributes; /* const char * (32-bit pointer) */
2646 };
2647
2648 struct category64_t {
2649   uint64_t name;               /* const char * (64-bit pointer) */
2650   uint64_t cls;                /* struct class_t * (64-bit pointer) */
2651   uint64_t instanceMethods;    /* struct method_list_t * (64-bit pointer) */
2652   uint64_t classMethods;       /* struct method_list_t * (64-bit pointer) */
2653   uint64_t protocols;          /* struct protocol_list_t * (64-bit pointer) */
2654   uint64_t instanceProperties; /* struct objc_property_list *
2655                                   (64-bit pointer) */
2656 };
2657
2658 struct category32_t {
2659   uint32_t name;               /* const char * (32-bit pointer) */
2660   uint32_t cls;                /* struct class_t * (32-bit pointer) */
2661   uint32_t instanceMethods;    /* struct method_list_t * (32-bit pointer) */
2662   uint32_t classMethods;       /* struct method_list_t * (32-bit pointer) */
2663   uint32_t protocols;          /* struct protocol_list_t * (32-bit pointer) */
2664   uint32_t instanceProperties; /* struct objc_property_list *
2665                                   (32-bit pointer) */
2666 };
2667
2668 struct objc_image_info64 {
2669   uint32_t version;
2670   uint32_t flags;
2671 };
2672 struct objc_image_info32 {
2673   uint32_t version;
2674   uint32_t flags;
2675 };
2676 struct imageInfo_t {
2677   uint32_t version;
2678   uint32_t flags;
2679 };
2680 /* masks for objc_image_info.flags */
2681 #define OBJC_IMAGE_IS_REPLACEMENT (1 << 0)
2682 #define OBJC_IMAGE_SUPPORTS_GC (1 << 1)
2683
2684 struct message_ref64 {
2685   uint64_t imp; /* IMP (64-bit pointer) */
2686   uint64_t sel; /* SEL (64-bit pointer) */
2687 };
2688
2689 struct message_ref32 {
2690   uint32_t imp; /* IMP (32-bit pointer) */
2691   uint32_t sel; /* SEL (32-bit pointer) */
2692 };
2693
2694 // Objective-C 1 (32-bit only) meta data structs.
2695
2696 struct objc_module_t {
2697   uint32_t version;
2698   uint32_t size;
2699   uint32_t name;   /* char * (32-bit pointer) */
2700   uint32_t symtab; /* struct objc_symtab * (32-bit pointer) */
2701 };
2702
2703 struct objc_symtab_t {
2704   uint32_t sel_ref_cnt;
2705   uint32_t refs; /* SEL * (32-bit pointer) */
2706   uint16_t cls_def_cnt;
2707   uint16_t cat_def_cnt;
2708   // uint32_t defs[1];        /* void * (32-bit pointer) variable size */
2709 };
2710
2711 struct objc_class_t {
2712   uint32_t isa;         /* struct objc_class * (32-bit pointer) */
2713   uint32_t super_class; /* struct objc_class * (32-bit pointer) */
2714   uint32_t name;        /* const char * (32-bit pointer) */
2715   int32_t version;
2716   int32_t info;
2717   int32_t instance_size;
2718   uint32_t ivars;       /* struct objc_ivar_list * (32-bit pointer) */
2719   uint32_t methodLists; /* struct objc_method_list ** (32-bit pointer) */
2720   uint32_t cache;       /* struct objc_cache * (32-bit pointer) */
2721   uint32_t protocols;   /* struct objc_protocol_list * (32-bit pointer) */
2722 };
2723
2724 #define CLS_GETINFO(cls, infomask) ((cls)->info & (infomask))
2725 // class is not a metaclass
2726 #define CLS_CLASS 0x1
2727 // class is a metaclass
2728 #define CLS_META 0x2
2729
2730 struct objc_category_t {
2731   uint32_t category_name;    /* char * (32-bit pointer) */
2732   uint32_t class_name;       /* char * (32-bit pointer) */
2733   uint32_t instance_methods; /* struct objc_method_list * (32-bit pointer) */
2734   uint32_t class_methods;    /* struct objc_method_list * (32-bit pointer) */
2735   uint32_t protocols;        /* struct objc_protocol_list * (32-bit ptr) */
2736 };
2737
2738 struct objc_ivar_t {
2739   uint32_t ivar_name; /* char * (32-bit pointer) */
2740   uint32_t ivar_type; /* char * (32-bit pointer) */
2741   int32_t ivar_offset;
2742 };
2743
2744 struct objc_ivar_list_t {
2745   int32_t ivar_count;
2746   // struct objc_ivar_t ivar_list[1];          /* variable length structure */
2747 };
2748
2749 struct objc_method_list_t {
2750   uint32_t obsolete; /* struct objc_method_list * (32-bit pointer) */
2751   int32_t method_count;
2752   // struct objc_method_t method_list[1];      /* variable length structure */
2753 };
2754
2755 struct objc_method_t {
2756   uint32_t method_name;  /* SEL, aka struct objc_selector * (32-bit pointer) */
2757   uint32_t method_types; /* char * (32-bit pointer) */
2758   uint32_t method_imp;   /* IMP, aka function pointer, (*IMP)(id, SEL, ...)
2759                             (32-bit pointer) */
2760 };
2761
2762 struct objc_protocol_list_t {
2763   uint32_t next; /* struct objc_protocol_list * (32-bit pointer) */
2764   int32_t count;
2765   // uint32_t list[1];   /* Protocol *, aka struct objc_protocol_t *
2766   //                        (32-bit pointer) */
2767 };
2768
2769 struct objc_protocol_t {
2770   uint32_t isa;              /* struct objc_class * (32-bit pointer) */
2771   uint32_t protocol_name;    /* char * (32-bit pointer) */
2772   uint32_t protocol_list;    /* struct objc_protocol_list * (32-bit pointer) */
2773   uint32_t instance_methods; /* struct objc_method_description_list *
2774                                 (32-bit pointer) */
2775   uint32_t class_methods;    /* struct objc_method_description_list *
2776                                 (32-bit pointer) */
2777 };
2778
2779 struct objc_method_description_list_t {
2780   int32_t count;
2781   // struct objc_method_description_t list[1];
2782 };
2783
2784 struct objc_method_description_t {
2785   uint32_t name;  /* SEL, aka struct objc_selector * (32-bit pointer) */
2786   uint32_t types; /* char * (32-bit pointer) */
2787 };
2788
2789 inline void swapStruct(struct cfstring64_t &cfs) {
2790   sys::swapByteOrder(cfs.isa);
2791   sys::swapByteOrder(cfs.flags);
2792   sys::swapByteOrder(cfs.characters);
2793   sys::swapByteOrder(cfs.length);
2794 }
2795
2796 inline void swapStruct(struct class64_t &c) {
2797   sys::swapByteOrder(c.isa);
2798   sys::swapByteOrder(c.superclass);
2799   sys::swapByteOrder(c.cache);
2800   sys::swapByteOrder(c.vtable);
2801   sys::swapByteOrder(c.data);
2802 }
2803
2804 inline void swapStruct(struct class32_t &c) {
2805   sys::swapByteOrder(c.isa);
2806   sys::swapByteOrder(c.superclass);
2807   sys::swapByteOrder(c.cache);
2808   sys::swapByteOrder(c.vtable);
2809   sys::swapByteOrder(c.data);
2810 }
2811
2812 inline void swapStruct(struct class_ro64_t &cro) {
2813   sys::swapByteOrder(cro.flags);
2814   sys::swapByteOrder(cro.instanceStart);
2815   sys::swapByteOrder(cro.instanceSize);
2816   sys::swapByteOrder(cro.reserved);
2817   sys::swapByteOrder(cro.ivarLayout);
2818   sys::swapByteOrder(cro.name);
2819   sys::swapByteOrder(cro.baseMethods);
2820   sys::swapByteOrder(cro.baseProtocols);
2821   sys::swapByteOrder(cro.ivars);
2822   sys::swapByteOrder(cro.weakIvarLayout);
2823   sys::swapByteOrder(cro.baseProperties);
2824 }
2825
2826 inline void swapStruct(struct class_ro32_t &cro) {
2827   sys::swapByteOrder(cro.flags);
2828   sys::swapByteOrder(cro.instanceStart);
2829   sys::swapByteOrder(cro.instanceSize);
2830   sys::swapByteOrder(cro.ivarLayout);
2831   sys::swapByteOrder(cro.name);
2832   sys::swapByteOrder(cro.baseMethods);
2833   sys::swapByteOrder(cro.baseProtocols);
2834   sys::swapByteOrder(cro.ivars);
2835   sys::swapByteOrder(cro.weakIvarLayout);
2836   sys::swapByteOrder(cro.baseProperties);
2837 }
2838
2839 inline void swapStruct(struct method_list64_t &ml) {
2840   sys::swapByteOrder(ml.entsize);
2841   sys::swapByteOrder(ml.count);
2842 }
2843
2844 inline void swapStruct(struct method_list32_t &ml) {
2845   sys::swapByteOrder(ml.entsize);
2846   sys::swapByteOrder(ml.count);
2847 }
2848
2849 inline void swapStruct(struct method64_t &m) {
2850   sys::swapByteOrder(m.name);
2851   sys::swapByteOrder(m.types);
2852   sys::swapByteOrder(m.imp);
2853 }
2854
2855 inline void swapStruct(struct method32_t &m) {
2856   sys::swapByteOrder(m.name);
2857   sys::swapByteOrder(m.types);
2858   sys::swapByteOrder(m.imp);
2859 }
2860
2861 inline void swapStruct(struct protocol_list64_t &pl) {
2862   sys::swapByteOrder(pl.count);
2863 }
2864
2865 inline void swapStruct(struct protocol_list32_t &pl) {
2866   sys::swapByteOrder(pl.count);
2867 }
2868
2869 inline void swapStruct(struct protocol64_t &p) {
2870   sys::swapByteOrder(p.isa);
2871   sys::swapByteOrder(p.name);
2872   sys::swapByteOrder(p.protocols);
2873   sys::swapByteOrder(p.instanceMethods);
2874   sys::swapByteOrder(p.classMethods);
2875   sys::swapByteOrder(p.optionalInstanceMethods);
2876   sys::swapByteOrder(p.optionalClassMethods);
2877   sys::swapByteOrder(p.instanceProperties);
2878 }
2879
2880 inline void swapStruct(struct protocol32_t &p) {
2881   sys::swapByteOrder(p.isa);
2882   sys::swapByteOrder(p.name);
2883   sys::swapByteOrder(p.protocols);
2884   sys::swapByteOrder(p.instanceMethods);
2885   sys::swapByteOrder(p.classMethods);
2886   sys::swapByteOrder(p.optionalInstanceMethods);
2887   sys::swapByteOrder(p.optionalClassMethods);
2888   sys::swapByteOrder(p.instanceProperties);
2889 }
2890
2891 inline void swapStruct(struct ivar_list64_t &il) {
2892   sys::swapByteOrder(il.entsize);
2893   sys::swapByteOrder(il.count);
2894 }
2895
2896 inline void swapStruct(struct ivar_list32_t &il) {
2897   sys::swapByteOrder(il.entsize);
2898   sys::swapByteOrder(il.count);
2899 }
2900
2901 inline void swapStruct(struct ivar64_t &i) {
2902   sys::swapByteOrder(i.offset);
2903   sys::swapByteOrder(i.name);
2904   sys::swapByteOrder(i.type);
2905   sys::swapByteOrder(i.alignment);
2906   sys::swapByteOrder(i.size);
2907 }
2908
2909 inline void swapStruct(struct ivar32_t &i) {
2910   sys::swapByteOrder(i.offset);
2911   sys::swapByteOrder(i.name);
2912   sys::swapByteOrder(i.type);
2913   sys::swapByteOrder(i.alignment);
2914   sys::swapByteOrder(i.size);
2915 }
2916
2917 inline void swapStruct(struct objc_property_list64 &pl) {
2918   sys::swapByteOrder(pl.entsize);
2919   sys::swapByteOrder(pl.count);
2920 }
2921
2922 inline void swapStruct(struct objc_property_list32 &pl) {
2923   sys::swapByteOrder(pl.entsize);
2924   sys::swapByteOrder(pl.count);
2925 }
2926
2927 inline void swapStruct(struct objc_property64 &op) {
2928   sys::swapByteOrder(op.name);
2929   sys::swapByteOrder(op.attributes);
2930 }
2931
2932 inline void swapStruct(struct objc_property32 &op) {
2933   sys::swapByteOrder(op.name);
2934   sys::swapByteOrder(op.attributes);
2935 }
2936
2937 inline void swapStruct(struct category64_t &c) {
2938   sys::swapByteOrder(c.name);
2939   sys::swapByteOrder(c.cls);
2940   sys::swapByteOrder(c.instanceMethods);
2941   sys::swapByteOrder(c.classMethods);
2942   sys::swapByteOrder(c.protocols);
2943   sys::swapByteOrder(c.instanceProperties);
2944 }
2945
2946 inline void swapStruct(struct category32_t &c) {
2947   sys::swapByteOrder(c.name);
2948   sys::swapByteOrder(c.cls);
2949   sys::swapByteOrder(c.instanceMethods);
2950   sys::swapByteOrder(c.classMethods);
2951   sys::swapByteOrder(c.protocols);
2952   sys::swapByteOrder(c.instanceProperties);
2953 }
2954
2955 inline void swapStruct(struct objc_image_info64 &o) {
2956   sys::swapByteOrder(o.version);
2957   sys::swapByteOrder(o.flags);
2958 }
2959
2960 inline void swapStruct(struct objc_image_info32 &o) {
2961   sys::swapByteOrder(o.version);
2962   sys::swapByteOrder(o.flags);
2963 }
2964
2965 inline void swapStruct(struct imageInfo_t &o) {
2966   sys::swapByteOrder(o.version);
2967   sys::swapByteOrder(o.flags);
2968 }
2969
2970 inline void swapStruct(struct message_ref64 &mr) {
2971   sys::swapByteOrder(mr.imp);
2972   sys::swapByteOrder(mr.sel);
2973 }
2974
2975 inline void swapStruct(struct message_ref32 &mr) {
2976   sys::swapByteOrder(mr.imp);
2977   sys::swapByteOrder(mr.sel);
2978 }
2979
2980 inline void swapStruct(struct objc_module_t &module) {
2981   sys::swapByteOrder(module.version);
2982   sys::swapByteOrder(module.size);
2983   sys::swapByteOrder(module.name);
2984   sys::swapByteOrder(module.symtab);
2985 }
2986
2987 inline void swapStruct(struct objc_symtab_t &symtab) {
2988   sys::swapByteOrder(symtab.sel_ref_cnt);
2989   sys::swapByteOrder(symtab.refs);
2990   sys::swapByteOrder(symtab.cls_def_cnt);
2991   sys::swapByteOrder(symtab.cat_def_cnt);
2992 }
2993
2994 inline void swapStruct(struct objc_class_t &objc_class) {
2995   sys::swapByteOrder(objc_class.isa);
2996   sys::swapByteOrder(objc_class.super_class);
2997   sys::swapByteOrder(objc_class.name);
2998   sys::swapByteOrder(objc_class.version);
2999   sys::swapByteOrder(objc_class.info);
3000   sys::swapByteOrder(objc_class.instance_size);
3001   sys::swapByteOrder(objc_class.ivars);
3002   sys::swapByteOrder(objc_class.methodLists);
3003   sys::swapByteOrder(objc_class.cache);
3004   sys::swapByteOrder(objc_class.protocols);
3005 }
3006
3007 inline void swapStruct(struct objc_category_t &objc_category) {
3008   sys::swapByteOrder(objc_category.category_name);
3009   sys::swapByteOrder(objc_category.class_name);
3010   sys::swapByteOrder(objc_category.instance_methods);
3011   sys::swapByteOrder(objc_category.class_methods);
3012   sys::swapByteOrder(objc_category.protocols);
3013 }
3014
3015 inline void swapStruct(struct objc_ivar_list_t &objc_ivar_list) {
3016   sys::swapByteOrder(objc_ivar_list.ivar_count);
3017 }
3018
3019 inline void swapStruct(struct objc_ivar_t &objc_ivar) {
3020   sys::swapByteOrder(objc_ivar.ivar_name);
3021   sys::swapByteOrder(objc_ivar.ivar_type);
3022   sys::swapByteOrder(objc_ivar.ivar_offset);
3023 }
3024
3025 inline void swapStruct(struct objc_method_list_t &method_list) {
3026   sys::swapByteOrder(method_list.obsolete);
3027   sys::swapByteOrder(method_list.method_count);
3028 }
3029
3030 inline void swapStruct(struct objc_method_t &method) {
3031   sys::swapByteOrder(method.method_name);
3032   sys::swapByteOrder(method.method_types);
3033   sys::swapByteOrder(method.method_imp);
3034 }
3035
3036 inline void swapStruct(struct objc_protocol_list_t &protocol_list) {
3037   sys::swapByteOrder(protocol_list.next);
3038   sys::swapByteOrder(protocol_list.count);
3039 }
3040
3041 inline void swapStruct(struct objc_protocol_t &protocol) {
3042   sys::swapByteOrder(protocol.isa);
3043   sys::swapByteOrder(protocol.protocol_name);
3044   sys::swapByteOrder(protocol.protocol_list);
3045   sys::swapByteOrder(protocol.instance_methods);
3046   sys::swapByteOrder(protocol.class_methods);
3047 }
3048
3049 inline void swapStruct(struct objc_method_description_list_t &mdl) {
3050   sys::swapByteOrder(mdl.count);
3051 }
3052
3053 inline void swapStruct(struct objc_method_description_t &md) {
3054   sys::swapByteOrder(md.name);
3055   sys::swapByteOrder(md.types);
3056 }
3057
3058 static const char *get_dyld_bind_info_symbolname(uint64_t ReferenceValue,
3059                                                  struct DisassembleInfo *info);
3060
3061 // get_objc2_64bit_class_name() is used for disassembly and is passed a pointer
3062 // to an Objective-C class and returns the class name.  It is also passed the
3063 // address of the pointer, so when the pointer is zero as it can be in an .o
3064 // file, that is used to look for an external relocation entry with a symbol
3065 // name.
3066 static const char *get_objc2_64bit_class_name(uint64_t pointer_value,
3067                                               uint64_t ReferenceValue,
3068                                               struct DisassembleInfo *info) {
3069   const char *r;
3070   uint32_t offset, left;
3071   SectionRef S;
3072
3073   // The pointer_value can be 0 in an object file and have a relocation
3074   // entry for the class symbol at the ReferenceValue (the address of the
3075   // pointer).
3076   if (pointer_value == 0) {
3077     r = get_pointer_64(ReferenceValue, offset, left, S, info);
3078     if (r == nullptr || left < sizeof(uint64_t))
3079       return nullptr;
3080     uint64_t n_value;
3081     const char *symbol_name = get_symbol_64(offset, S, info, n_value);
3082     if (symbol_name == nullptr)
3083       return nullptr;
3084     const char *class_name = strrchr(symbol_name, '$');
3085     if (class_name != nullptr && class_name[1] == '_' && class_name[2] != '\0')
3086       return class_name + 2;
3087     else
3088       return nullptr;
3089   }
3090
3091   // The case were the pointer_value is non-zero and points to a class defined
3092   // in this Mach-O file.
3093   r = get_pointer_64(pointer_value, offset, left, S, info);
3094   if (r == nullptr || left < sizeof(struct class64_t))
3095     return nullptr;
3096   struct class64_t c;
3097   memcpy(&c, r, sizeof(struct class64_t));
3098   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3099     swapStruct(c);
3100   if (c.data == 0)
3101     return nullptr;
3102   r = get_pointer_64(c.data, offset, left, S, info);
3103   if (r == nullptr || left < sizeof(struct class_ro64_t))
3104     return nullptr;
3105   struct class_ro64_t cro;
3106   memcpy(&cro, r, sizeof(struct class_ro64_t));
3107   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3108     swapStruct(cro);
3109   if (cro.name == 0)
3110     return nullptr;
3111   const char *name = get_pointer_64(cro.name, offset, left, S, info);
3112   return name;
3113 }
3114
3115 // get_objc2_64bit_cfstring_name is used for disassembly and is passed a
3116 // pointer to a cfstring and returns its name or nullptr.
3117 static const char *get_objc2_64bit_cfstring_name(uint64_t ReferenceValue,
3118                                                  struct DisassembleInfo *info) {
3119   const char *r, *name;
3120   uint32_t offset, left;
3121   SectionRef S;
3122   struct cfstring64_t cfs;
3123   uint64_t cfs_characters;
3124
3125   r = get_pointer_64(ReferenceValue, offset, left, S, info);
3126   if (r == nullptr || left < sizeof(struct cfstring64_t))
3127     return nullptr;
3128   memcpy(&cfs, r, sizeof(struct cfstring64_t));
3129   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3130     swapStruct(cfs);
3131   if (cfs.characters == 0) {
3132     uint64_t n_value;
3133     const char *symbol_name = get_symbol_64(
3134         offset + offsetof(struct cfstring64_t, characters), S, info, n_value);
3135     if (symbol_name == nullptr)
3136       return nullptr;
3137     cfs_characters = n_value;
3138   } else
3139     cfs_characters = cfs.characters;
3140   name = get_pointer_64(cfs_characters, offset, left, S, info);
3141
3142   return name;
3143 }
3144
3145 // get_objc2_64bit_selref() is used for disassembly and is passed a the address
3146 // of a pointer to an Objective-C selector reference when the pointer value is
3147 // zero as in a .o file and is likely to have a external relocation entry with
3148 // who's symbol's n_value is the real pointer to the selector name.  If that is
3149 // the case the real pointer to the selector name is returned else 0 is
3150 // returned
3151 static uint64_t get_objc2_64bit_selref(uint64_t ReferenceValue,
3152                                        struct DisassembleInfo *info) {
3153   uint32_t offset, left;
3154   SectionRef S;
3155
3156   const char *r = get_pointer_64(ReferenceValue, offset, left, S, info);
3157   if (r == nullptr || left < sizeof(uint64_t))
3158     return 0;
3159   uint64_t n_value;
3160   const char *symbol_name = get_symbol_64(offset, S, info, n_value);
3161   if (symbol_name == nullptr)
3162     return 0;
3163   return n_value;
3164 }
3165
3166 static const SectionRef get_section(MachOObjectFile *O, const char *segname,
3167                                     const char *sectname) {
3168   for (const SectionRef &Section : O->sections()) {
3169     StringRef SectName;
3170     Section.getName(SectName);
3171     DataRefImpl Ref = Section.getRawDataRefImpl();
3172     StringRef SegName = O->getSectionFinalSegmentName(Ref);
3173     if (SegName == segname && SectName == sectname)
3174       return Section;
3175   }
3176   return SectionRef();
3177 }
3178
3179 static void
3180 walk_pointer_list_64(const char *listname, const SectionRef S,
3181                      MachOObjectFile *O, struct DisassembleInfo *info,
3182                      void (*func)(uint64_t, struct DisassembleInfo *info)) {
3183   if (S == SectionRef())
3184     return;
3185
3186   StringRef SectName;
3187   S.getName(SectName);
3188   DataRefImpl Ref = S.getRawDataRefImpl();
3189   StringRef SegName = O->getSectionFinalSegmentName(Ref);
3190   outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
3191
3192   StringRef BytesStr;
3193   S.getContents(BytesStr);
3194   const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
3195
3196   for (uint32_t i = 0; i < S.getSize(); i += sizeof(uint64_t)) {
3197     uint32_t left = S.getSize() - i;
3198     uint32_t size = left < sizeof(uint64_t) ? left : sizeof(uint64_t);
3199     uint64_t p = 0;
3200     memcpy(&p, Contents + i, size);
3201     if (i + sizeof(uint64_t) > S.getSize())
3202       outs() << listname << " list pointer extends past end of (" << SegName
3203              << "," << SectName << ") section\n";
3204     outs() << format("%016" PRIx64, S.getAddress() + i) << " ";
3205
3206     if (O->isLittleEndian() != sys::IsLittleEndianHost)
3207       sys::swapByteOrder(p);
3208
3209     uint64_t n_value = 0;
3210     const char *name = get_symbol_64(i, S, info, n_value, p);
3211     if (name == nullptr)
3212       name = get_dyld_bind_info_symbolname(S.getAddress() + i, info);
3213
3214     if (n_value != 0) {
3215       outs() << format("0x%" PRIx64, n_value);
3216       if (p != 0)
3217         outs() << " + " << format("0x%" PRIx64, p);
3218     } else
3219       outs() << format("0x%" PRIx64, p);
3220     if (name != nullptr)
3221       outs() << " " << name;
3222     outs() << "\n";
3223
3224     p += n_value;
3225     if (func)
3226       func(p, info);
3227   }
3228 }
3229
3230 static void
3231 walk_pointer_list_32(const char *listname, const SectionRef S,
3232                      MachOObjectFile *O, struct DisassembleInfo *info,
3233                      void (*func)(uint32_t, struct DisassembleInfo *info)) {
3234   if (S == SectionRef())
3235     return;
3236
3237   StringRef SectName;
3238   S.getName(SectName);
3239   DataRefImpl Ref = S.getRawDataRefImpl();
3240   StringRef SegName = O->getSectionFinalSegmentName(Ref);
3241   outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
3242
3243   StringRef BytesStr;
3244   S.getContents(BytesStr);
3245   const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
3246
3247   for (uint32_t i = 0; i < S.getSize(); i += sizeof(uint32_t)) {
3248     uint32_t left = S.getSize() - i;
3249     uint32_t size = left < sizeof(uint32_t) ? left : sizeof(uint32_t);
3250     uint32_t p = 0;
3251     memcpy(&p, Contents + i, size);
3252     if (i + sizeof(uint32_t) > S.getSize())
3253       outs() << listname << " list pointer extends past end of (" << SegName
3254              << "," << SectName << ") section\n";
3255     uint32_t Address = S.getAddress() + i;
3256     outs() << format("%08" PRIx32, Address) << " ";
3257
3258     if (O->isLittleEndian() != sys::IsLittleEndianHost)
3259       sys::swapByteOrder(p);
3260     outs() << format("0x%" PRIx32, p);
3261
3262     const char *name = get_symbol_32(i, S, info, p);
3263     if (name != nullptr)
3264       outs() << " " << name;
3265     outs() << "\n";
3266
3267     if (func)
3268       func(p, info);
3269   }
3270 }
3271
3272 static void print_layout_map(const char *layout_map, uint32_t left) {
3273   if (layout_map == nullptr)
3274     return;
3275   outs() << "                layout map: ";
3276   do {
3277     outs() << format("0x%02" PRIx32, (*layout_map) & 0xff) << " ";
3278     left--;
3279     layout_map++;
3280   } while (*layout_map != '\0' && left != 0);
3281   outs() << "\n";
3282 }
3283
3284 static void print_layout_map64(uint64_t p, struct DisassembleInfo *info) {
3285   uint32_t offset, left;
3286   SectionRef S;
3287   const char *layout_map;
3288
3289   if (p == 0)
3290     return;
3291   layout_map = get_pointer_64(p, offset, left, S, info);
3292   print_layout_map(layout_map, left);
3293 }
3294
3295 static void print_layout_map32(uint32_t p, struct DisassembleInfo *info) {
3296   uint32_t offset, left;
3297   SectionRef S;
3298   const char *layout_map;
3299
3300   if (p == 0)
3301     return;
3302   layout_map = get_pointer_32(p, offset, left, S, info);
3303   print_layout_map(layout_map, left);
3304 }
3305
3306 static void print_method_list64_t(uint64_t p, struct DisassembleInfo *info,
3307                                   const char *indent) {
3308   struct method_list64_t ml;
3309   struct method64_t m;
3310   const char *r;
3311   uint32_t offset, xoffset, left, i;
3312   SectionRef S, xS;
3313   const char *name, *sym_name;
3314   uint64_t n_value;
3315
3316   r = get_pointer_64(p, offset, left, S, info);
3317   if (r == nullptr)
3318     return;
3319   memset(&ml, '\0', sizeof(struct method_list64_t));
3320   if (left < sizeof(struct method_list64_t)) {
3321     memcpy(&ml, r, left);
3322     outs() << "   (method_list_t entends past the end of the section)\n";
3323   } else
3324     memcpy(&ml, r, sizeof(struct method_list64_t));
3325   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3326     swapStruct(ml);
3327   outs() << indent << "\t\t   entsize " << ml.entsize << "\n";
3328   outs() << indent << "\t\t     count " << ml.count << "\n";
3329
3330   p += sizeof(struct method_list64_t);
3331   offset += sizeof(struct method_list64_t);
3332   for (i = 0; i < ml.count; i++) {
3333     r = get_pointer_64(p, offset, left, S, info);
3334     if (r == nullptr)
3335       return;
3336     memset(&m, '\0', sizeof(struct method64_t));
3337     if (left < sizeof(struct method64_t)) {
3338       memcpy(&m, r, left);
3339       outs() << indent << "   (method_t extends past the end of the section)\n";
3340     } else
3341       memcpy(&m, r, sizeof(struct method64_t));
3342     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3343       swapStruct(m);
3344
3345     outs() << indent << "\t\t      name ";
3346     sym_name = get_symbol_64(offset + offsetof(struct method64_t, name), S,
3347                              info, n_value, m.name);
3348     if (n_value != 0) {
3349       if (info->verbose && sym_name != nullptr)
3350         outs() << sym_name;
3351       else
3352         outs() << format("0x%" PRIx64, n_value);
3353       if (m.name != 0)
3354         outs() << " + " << format("0x%" PRIx64, m.name);
3355     } else
3356       outs() << format("0x%" PRIx64, m.name);
3357     name = get_pointer_64(m.name + n_value, xoffset, left, xS, info);
3358     if (name != nullptr)
3359       outs() << format(" %.*s", left, name);
3360     outs() << "\n";
3361
3362     outs() << indent << "\t\t     types ";
3363     sym_name = get_symbol_64(offset + offsetof(struct method64_t, types), S,
3364                              info, n_value, m.types);
3365     if (n_value != 0) {
3366       if (info->verbose && sym_name != nullptr)
3367         outs() << sym_name;
3368       else
3369         outs() << format("0x%" PRIx64, n_value);
3370       if (m.types != 0)
3371         outs() << " + " << format("0x%" PRIx64, m.types);
3372     } else
3373       outs() << format("0x%" PRIx64, m.types);
3374     name = get_pointer_64(m.types + n_value, xoffset, left, xS, info);
3375     if (name != nullptr)
3376       outs() << format(" %.*s", left, name);
3377     outs() << "\n";
3378
3379     outs() << indent << "\t\t       imp ";
3380     name = get_symbol_64(offset + offsetof(struct method64_t, imp), S, info,
3381                          n_value, m.imp);
3382     if (info->verbose && name == nullptr) {
3383       if (n_value != 0) {
3384         outs() << format("0x%" PRIx64, n_value) << " ";
3385         if (m.imp != 0)
3386           outs() << "+ " << format("0x%" PRIx64, m.imp) << " ";
3387       } else
3388         outs() << format("0x%" PRIx64, m.imp) << " ";
3389     }
3390     if (name != nullptr)
3391       outs() << name;
3392     outs() << "\n";
3393
3394     p += sizeof(struct method64_t);
3395     offset += sizeof(struct method64_t);
3396   }
3397 }
3398
3399 static void print_method_list32_t(uint64_t p, struct DisassembleInfo *info,
3400                                   const char *indent) {
3401   struct method_list32_t ml;
3402   struct method32_t m;
3403   const char *r, *name;
3404   uint32_t offset, xoffset, left, i;
3405   SectionRef S, xS;
3406
3407   r = get_pointer_32(p, offset, left, S, info);
3408   if (r == nullptr)
3409     return;
3410   memset(&ml, '\0', sizeof(struct method_list32_t));
3411   if (left < sizeof(struct method_list32_t)) {
3412     memcpy(&ml, r, left);
3413     outs() << "   (method_list_t entends past the end of the section)\n";
3414   } else
3415     memcpy(&ml, r, sizeof(struct method_list32_t));
3416   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3417     swapStruct(ml);
3418   outs() << indent << "\t\t   entsize " << ml.entsize << "\n";
3419   outs() << indent << "\t\t     count " << ml.count << "\n";
3420
3421   p += sizeof(struct method_list32_t);
3422   offset += sizeof(struct method_list32_t);
3423   for (i = 0; i < ml.count; i++) {
3424     r = get_pointer_32(p, offset, left, S, info);
3425     if (r == nullptr)
3426       return;
3427     memset(&m, '\0', sizeof(struct method32_t));
3428     if (left < sizeof(struct method32_t)) {
3429       memcpy(&ml, r, left);
3430       outs() << indent << "   (method_t entends past the end of the section)\n";
3431     } else
3432       memcpy(&m, r, sizeof(struct method32_t));
3433     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3434       swapStruct(m);
3435
3436     outs() << indent << "\t\t      name " << format("0x%" PRIx32, m.name);
3437     name = get_pointer_32(m.name, xoffset, left, xS, info);
3438     if (name != nullptr)
3439       outs() << format(" %.*s", left, name);
3440     outs() << "\n";
3441
3442     outs() << indent << "\t\t     types " << format("0x%" PRIx32, m.types);
3443     name = get_pointer_32(m.types, xoffset, left, xS, info);
3444     if (name != nullptr)
3445       outs() << format(" %.*s", left, name);
3446     outs() << "\n";
3447
3448     outs() << indent << "\t\t       imp " << format("0x%" PRIx32, m.imp);
3449     name = get_symbol_32(offset + offsetof(struct method32_t, imp), S, info,
3450                          m.imp);
3451     if (name != nullptr)
3452       outs() << " " << name;
3453     outs() << "\n";
3454
3455     p += sizeof(struct method32_t);
3456     offset += sizeof(struct method32_t);
3457   }
3458 }
3459
3460 static bool print_method_list(uint32_t p, struct DisassembleInfo *info) {
3461   uint32_t offset, left, xleft;
3462   SectionRef S;
3463   struct objc_method_list_t method_list;
3464   struct objc_method_t method;
3465   const char *r, *methods, *name, *SymbolName;
3466   int32_t i;
3467
3468   r = get_pointer_32(p, offset, left, S, info, true);
3469   if (r == nullptr)
3470     return true;
3471
3472   outs() << "\n";
3473   if (left > sizeof(struct objc_method_list_t)) {
3474     memcpy(&method_list, r, sizeof(struct objc_method_list_t));
3475   } else {
3476     outs() << "\t\t objc_method_list extends past end of the section\n";
3477     memset(&method_list, '\0', sizeof(struct objc_method_list_t));
3478     memcpy(&method_list, r, left);
3479   }
3480   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3481     swapStruct(method_list);
3482
3483   outs() << "\t\t         obsolete "
3484          << format("0x%08" PRIx32, method_list.obsolete) << "\n";
3485   outs() << "\t\t     method_count " << method_list.method_count << "\n";
3486
3487   methods = r + sizeof(struct objc_method_list_t);
3488   for (i = 0; i < method_list.method_count; i++) {
3489     if ((i + 1) * sizeof(struct objc_method_t) > left) {
3490       outs() << "\t\t remaining method's extend past the of the section\n";
3491       break;
3492     }
3493     memcpy(&method, methods + i * sizeof(struct objc_method_t),
3494            sizeof(struct objc_method_t));
3495     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3496       swapStruct(method);
3497
3498     outs() << "\t\t      method_name "
3499            << format("0x%08" PRIx32, method.method_name);
3500     if (info->verbose) {
3501       name = get_pointer_32(method.method_name, offset, xleft, S, info, true);
3502       if (name != nullptr)
3503         outs() << format(" %.*s", xleft, name);
3504       else
3505         outs() << " (not in an __OBJC section)";
3506     }
3507     outs() << "\n";
3508
3509     outs() << "\t\t     method_types "
3510            << format("0x%08" PRIx32, method.method_types);
3511     if (info->verbose) {
3512       name = get_pointer_32(method.method_types, offset, xleft, S, info, true);
3513       if (name != nullptr)
3514         outs() << format(" %.*s", xleft, name);
3515       else
3516         outs() << " (not in an __OBJC section)";
3517     }
3518     outs() << "\n";
3519
3520     outs() << "\t\t       method_imp "
3521            << format("0x%08" PRIx32, method.method_imp) << " ";
3522     if (info->verbose) {
3523       SymbolName = GuessSymbolName(method.method_imp, info->AddrMap);
3524       if (SymbolName != nullptr)
3525         outs() << SymbolName;
3526     }
3527     outs() << "\n";
3528   }
3529   return false;
3530 }
3531
3532 static void print_protocol_list64_t(uint64_t p, struct DisassembleInfo *info) {
3533   struct protocol_list64_t pl;
3534   uint64_t q, n_value;
3535   struct protocol64_t pc;
3536   const char *r;
3537   uint32_t offset, xoffset, left, i;
3538   SectionRef S, xS;
3539   const char *name, *sym_name;
3540
3541   r = get_pointer_64(p, offset, left, S, info);
3542   if (r == nullptr)
3543     return;
3544   memset(&pl, '\0', sizeof(struct protocol_list64_t));
3545   if (left < sizeof(struct protocol_list64_t)) {
3546     memcpy(&pl, r, left);
3547     outs() << "   (protocol_list_t entends past the end of the section)\n";
3548   } else
3549     memcpy(&pl, r, sizeof(struct protocol_list64_t));
3550   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3551     swapStruct(pl);
3552   outs() << "                      count " << pl.count << "\n";
3553
3554   p += sizeof(struct protocol_list64_t);
3555   offset += sizeof(struct protocol_list64_t);
3556   for (i = 0; i < pl.count; i++) {
3557     r = get_pointer_64(p, offset, left, S, info);
3558     if (r == nullptr)
3559       return;
3560     q = 0;
3561     if (left < sizeof(uint64_t)) {
3562       memcpy(&q, r, left);
3563       outs() << "   (protocol_t * entends past the end of the section)\n";
3564     } else
3565       memcpy(&q, r, sizeof(uint64_t));
3566     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3567       sys::swapByteOrder(q);
3568
3569     outs() << "\t\t      list[" << i << "] ";
3570     sym_name = get_symbol_64(offset, S, info, n_value, q);
3571     if (n_value != 0) {
3572       if (info->verbose && sym_name != nullptr)
3573         outs() << sym_name;
3574       else
3575         outs() << format("0x%" PRIx64, n_value);
3576       if (q != 0)
3577         outs() << " + " << format("0x%" PRIx64, q);
3578     } else
3579       outs() << format("0x%" PRIx64, q);
3580     outs() << " (struct protocol_t *)\n";
3581
3582     r = get_pointer_64(q + n_value, offset, left, S, info);
3583     if (r == nullptr)
3584       return;
3585     memset(&pc, '\0', sizeof(struct protocol64_t));
3586     if (left < sizeof(struct protocol64_t)) {
3587       memcpy(&pc, r, left);
3588       outs() << "   (protocol_t entends past the end of the section)\n";
3589     } else
3590       memcpy(&pc, r, sizeof(struct protocol64_t));
3591     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3592       swapStruct(pc);
3593
3594     outs() << "\t\t\t      isa " << format("0x%" PRIx64, pc.isa) << "\n";
3595
3596     outs() << "\t\t\t     name ";
3597     sym_name = get_symbol_64(offset + offsetof(struct protocol64_t, name), S,
3598                              info, n_value, pc.name);
3599     if (n_value != 0) {
3600       if (info->verbose && sym_name != nullptr)
3601         outs() << sym_name;
3602       else
3603         outs() << format("0x%" PRIx64, n_value);
3604       if (pc.name != 0)
3605         outs() << " + " << format("0x%" PRIx64, pc.name);
3606     } else
3607       outs() << format("0x%" PRIx64, pc.name);
3608     name = get_pointer_64(pc.name + n_value, xoffset, left, xS, info);
3609     if (name != nullptr)
3610       outs() << format(" %.*s", left, name);
3611     outs() << "\n";
3612
3613     outs() << "\t\t\tprotocols " << format("0x%" PRIx64, pc.protocols) << "\n";
3614
3615     outs() << "\t\t  instanceMethods ";
3616     sym_name =
3617         get_symbol_64(offset + offsetof(struct protocol64_t, instanceMethods),
3618                       S, info, n_value, pc.instanceMethods);
3619     if (n_value != 0) {
3620       if (info->verbose && sym_name != nullptr)
3621         outs() << sym_name;
3622       else
3623         outs() << format("0x%" PRIx64, n_value);
3624       if (pc.instanceMethods != 0)
3625         outs() << " + " << format("0x%" PRIx64, pc.instanceMethods);
3626     } else
3627       outs() << format("0x%" PRIx64, pc.instanceMethods);
3628     outs() << " (struct method_list_t *)\n";
3629     if (pc.instanceMethods + n_value != 0)
3630       print_method_list64_t(pc.instanceMethods + n_value, info, "\t");
3631
3632     outs() << "\t\t     classMethods ";
3633     sym_name =
3634         get_symbol_64(offset + offsetof(struct protocol64_t, classMethods), S,
3635                       info, n_value, pc.classMethods);
3636     if (n_value != 0) {
3637       if (info->verbose && sym_name != nullptr)
3638         outs() << sym_name;
3639       else
3640         outs() << format("0x%" PRIx64, n_value);
3641       if (pc.classMethods != 0)
3642         outs() << " + " << format("0x%" PRIx64, pc.classMethods);
3643     } else
3644       outs() << format("0x%" PRIx64, pc.classMethods);
3645     outs() << " (struct method_list_t *)\n";
3646     if (pc.classMethods + n_value != 0)
3647       print_method_list64_t(pc.classMethods + n_value, info, "\t");
3648
3649     outs() << "\t  optionalInstanceMethods "
3650            << format("0x%" PRIx64, pc.optionalInstanceMethods) << "\n";
3651     outs() << "\t     optionalClassMethods "
3652            << format("0x%" PRIx64, pc.optionalClassMethods) << "\n";
3653     outs() << "\t       instanceProperties "
3654            << format("0x%" PRIx64, pc.instanceProperties) << "\n";
3655
3656     p += sizeof(uint64_t);
3657     offset += sizeof(uint64_t);
3658   }
3659 }
3660
3661 static void print_protocol_list32_t(uint32_t p, struct DisassembleInfo *info) {
3662   struct protocol_list32_t pl;
3663   uint32_t q;
3664   struct protocol32_t pc;
3665   const char *r;
3666   uint32_t offset, xoffset, left, i;
3667   SectionRef S, xS;
3668   const char *name;
3669
3670   r = get_pointer_32(p, offset, left, S, info);
3671   if (r == nullptr)
3672     return;
3673   memset(&pl, '\0', sizeof(struct protocol_list32_t));
3674   if (left < sizeof(struct protocol_list32_t)) {
3675     memcpy(&pl, r, left);
3676     outs() << "   (protocol_list_t entends past the end of the section)\n";
3677   } else
3678     memcpy(&pl, r, sizeof(struct protocol_list32_t));
3679   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3680     swapStruct(pl);
3681   outs() << "                      count " << pl.count << "\n";
3682
3683   p += sizeof(struct protocol_list32_t);
3684   offset += sizeof(struct protocol_list32_t);
3685   for (i = 0; i < pl.count; i++) {
3686     r = get_pointer_32(p, offset, left, S, info);
3687     if (r == nullptr)
3688       return;
3689     q = 0;
3690     if (left < sizeof(uint32_t)) {
3691       memcpy(&q, r, left);
3692       outs() << "   (protocol_t * entends past the end of the section)\n";
3693     } else
3694       memcpy(&q, r, sizeof(uint32_t));
3695     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3696       sys::swapByteOrder(q);
3697     outs() << "\t\t      list[" << i << "] " << format("0x%" PRIx32, q)
3698            << " (struct protocol_t *)\n";
3699     r = get_pointer_32(q, offset, left, S, info);
3700     if (r == nullptr)
3701       return;
3702     memset(&pc, '\0', sizeof(struct protocol32_t));
3703     if (left < sizeof(struct protocol32_t)) {
3704       memcpy(&pc, r, left);
3705       outs() << "   (protocol_t entends past the end of the section)\n";
3706     } else
3707       memcpy(&pc, r, sizeof(struct protocol32_t));
3708     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3709       swapStruct(pc);
3710     outs() << "\t\t\t      isa " << format("0x%" PRIx32, pc.isa) << "\n";
3711     outs() << "\t\t\t     name " << format("0x%" PRIx32, pc.name);
3712     name = get_pointer_32(pc.name, xoffset, left, xS, info);
3713     if (name != nullptr)
3714       outs() << format(" %.*s", left, name);
3715     outs() << "\n";
3716     outs() << "\t\t\tprotocols " << format("0x%" PRIx32, pc.protocols) << "\n";
3717     outs() << "\t\t  instanceMethods "
3718            << format("0x%" PRIx32, pc.instanceMethods)
3719            << " (struct method_list_t *)\n";
3720     if (pc.instanceMethods != 0)
3721       print_method_list32_t(pc.instanceMethods, info, "\t");
3722     outs() << "\t\t     classMethods " << format("0x%" PRIx32, pc.classMethods)
3723            << " (struct method_list_t *)\n";
3724     if (pc.classMethods != 0)
3725       print_method_list32_t(pc.classMethods, info, "\t");
3726     outs() << "\t  optionalInstanceMethods "
3727            << format("0x%" PRIx32, pc.optionalInstanceMethods) << "\n";
3728     outs() << "\t     optionalClassMethods "
3729            << format("0x%" PRIx32, pc.optionalClassMethods) << "\n";
3730     outs() << "\t       instanceProperties "
3731            << format("0x%" PRIx32, pc.instanceProperties) << "\n";
3732     p += sizeof(uint32_t);
3733     offset += sizeof(uint32_t);
3734   }
3735 }
3736
3737 static void print_indent(uint32_t indent) {
3738   for (uint32_t i = 0; i < indent;) {
3739     if (indent - i >= 8) {
3740       outs() << "\t";
3741       i += 8;
3742     } else {
3743       for (uint32_t j = i; j < indent; j++)
3744         outs() << " ";
3745       return;
3746     }
3747   }
3748 }
3749
3750 static bool print_method_description_list(uint32_t p, uint32_t indent,
3751                                           struct DisassembleInfo *info) {
3752   uint32_t offset, left, xleft;
3753   SectionRef S;
3754   struct objc_method_description_list_t mdl;
3755   struct objc_method_description_t md;
3756   const char *r, *list, *name;
3757   int32_t i;
3758
3759   r = get_pointer_32(p, offset, left, S, info, true);
3760   if (r == nullptr)
3761     return true;
3762
3763   outs() << "\n";
3764   if (left > sizeof(struct objc_method_description_list_t)) {
3765     memcpy(&mdl, r, sizeof(struct objc_method_description_list_t));
3766   } else {
3767     print_indent(indent);
3768     outs() << " objc_method_description_list extends past end of the section\n";
3769     memset(&mdl, '\0', sizeof(struct objc_method_description_list_t));
3770     memcpy(&mdl, r, left);
3771   }
3772   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3773     swapStruct(mdl);
3774
3775   print_indent(indent);
3776   outs() << "        count " << mdl.count << "\n";
3777
3778   list = r + sizeof(struct objc_method_description_list_t);
3779   for (i = 0; i < mdl.count; i++) {
3780     if ((i + 1) * sizeof(struct objc_method_description_t) > left) {
3781       print_indent(indent);
3782       outs() << " remaining list entries extend past the of the section\n";
3783       break;
3784     }
3785     print_indent(indent);
3786     outs() << "        list[" << i << "]\n";
3787     memcpy(&md, list + i * sizeof(struct objc_method_description_t),
3788            sizeof(struct objc_method_description_t));
3789     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3790       swapStruct(md);
3791
3792     print_indent(indent);
3793     outs() << "             name " << format("0x%08" PRIx32, md.name);
3794     if (info->verbose) {
3795       name = get_pointer_32(md.name, offset, xleft, S, info, true);
3796       if (name != nullptr)
3797         outs() << format(" %.*s", xleft, name);
3798       else
3799         outs() << " (not in an __OBJC section)";
3800     }
3801     outs() << "\n";
3802
3803     print_indent(indent);
3804     outs() << "            types " << format("0x%08" PRIx32, md.types);
3805     if (info->verbose) {
3806       name = get_pointer_32(md.types, offset, xleft, S, info, true);
3807       if (name != nullptr)
3808         outs() << format(" %.*s", xleft, name);
3809       else
3810         outs() << " (not in an __OBJC section)";
3811     }
3812     outs() << "\n";
3813   }
3814   return false;
3815 }
3816
3817 static bool print_protocol_list(uint32_t p, uint32_t indent,
3818                                 struct DisassembleInfo *info);
3819
3820 static bool print_protocol(uint32_t p, uint32_t indent,
3821                            struct DisassembleInfo *info) {
3822   uint32_t offset, left;
3823   SectionRef S;
3824   struct objc_protocol_t protocol;
3825   const char *r, *name;
3826
3827   r = get_pointer_32(p, offset, left, S, info, true);
3828   if (r == nullptr)
3829     return true;
3830
3831   outs() << "\n";
3832   if (left >= sizeof(struct objc_protocol_t)) {
3833     memcpy(&protocol, r, sizeof(struct objc_protocol_t));
3834   } else {
3835     print_indent(indent);
3836     outs() << "            Protocol extends past end of the section\n";
3837     memset(&protocol, '\0', sizeof(struct objc_protocol_t));
3838     memcpy(&protocol, r, left);
3839   }
3840   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3841     swapStruct(protocol);
3842
3843   print_indent(indent);
3844   outs() << "              isa " << format("0x%08" PRIx32, protocol.isa)
3845          << "\n";
3846
3847   print_indent(indent);
3848   outs() << "    protocol_name "
3849          << format("0x%08" PRIx32, protocol.protocol_name);
3850   if (info->verbose) {
3851     name = get_pointer_32(protocol.protocol_name, offset, left, S, info, true);
3852     if (name != nullptr)
3853       outs() << format(" %.*s", left, name);
3854     else
3855       outs() << " (not in an __OBJC section)";
3856   }
3857   outs() << "\n";
3858
3859   print_indent(indent);
3860   outs() << "    protocol_list "
3861          << format("0x%08" PRIx32, protocol.protocol_list);
3862   if (print_protocol_list(protocol.protocol_list, indent + 4, info))
3863     outs() << " (not in an __OBJC section)\n";
3864
3865   print_indent(indent);
3866   outs() << " instance_methods "
3867          << format("0x%08" PRIx32, protocol.instance_methods);
3868   if (print_method_description_list(protocol.instance_methods, indent, info))
3869     outs() << " (not in an __OBJC section)\n";
3870
3871   print_indent(indent);
3872   outs() << "    class_methods "
3873          << format("0x%08" PRIx32, protocol.class_methods);
3874   if (print_method_description_list(protocol.class_methods, indent, info))
3875     outs() << " (not in an __OBJC section)\n";
3876
3877   return false;
3878 }
3879
3880 static bool print_protocol_list(uint32_t p, uint32_t indent,
3881                                 struct DisassembleInfo *info) {
3882   uint32_t offset, left, l;
3883   SectionRef S;
3884   struct objc_protocol_list_t protocol_list;
3885   const char *r, *list;
3886   int32_t i;
3887
3888   r = get_pointer_32(p, offset, left, S, info, true);
3889   if (r == nullptr)
3890     return true;
3891
3892   outs() << "\n";
3893   if (left > sizeof(struct objc_protocol_list_t)) {
3894     memcpy(&protocol_list, r, sizeof(struct objc_protocol_list_t));
3895   } else {
3896     outs() << "\t\t objc_protocol_list_t extends past end of the section\n";
3897     memset(&protocol_list, '\0', sizeof(struct objc_protocol_list_t));
3898     memcpy(&protocol_list, r, left);
3899   }
3900   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3901     swapStruct(protocol_list);
3902
3903   print_indent(indent);
3904   outs() << "         next " << format("0x%08" PRIx32, protocol_list.next)
3905          << "\n";
3906   print_indent(indent);
3907   outs() << "        count " << protocol_list.count << "\n";
3908
3909   list = r + sizeof(struct objc_protocol_list_t);
3910   for (i = 0; i < protocol_list.count; i++) {
3911     if ((i + 1) * sizeof(uint32_t) > left) {
3912       outs() << "\t\t remaining list entries extend past the of the section\n";
3913       break;
3914     }
3915     memcpy(&l, list + i * sizeof(uint32_t), sizeof(uint32_t));
3916     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3917       sys::swapByteOrder(l);
3918
3919     print_indent(indent);
3920     outs() << "      list[" << i << "] " << format("0x%08" PRIx32, l);
3921     if (print_protocol(l, indent, info))
3922       outs() << "(not in an __OBJC section)\n";
3923   }
3924   return false;
3925 }
3926
3927 static void print_ivar_list64_t(uint64_t p, struct DisassembleInfo *info) {
3928   struct ivar_list64_t il;
3929   struct ivar64_t i;
3930   const char *r;
3931   uint32_t offset, xoffset, left, j;
3932   SectionRef S, xS;
3933   const char *name, *sym_name, *ivar_offset_p;
3934   uint64_t ivar_offset, n_value;
3935
3936   r = get_pointer_64(p, offset, left, S, info);
3937   if (r == nullptr)
3938     return;
3939   memset(&il, '\0', sizeof(struct ivar_list64_t));
3940   if (left < sizeof(struct ivar_list64_t)) {
3941     memcpy(&il, r, left);
3942     outs() << "   (ivar_list_t entends past the end of the section)\n";
3943   } else
3944     memcpy(&il, r, sizeof(struct ivar_list64_t));
3945   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3946     swapStruct(il);
3947   outs() << "                    entsize " << il.entsize << "\n";
3948   outs() << "                      count " << il.count << "\n";
3949
3950   p += sizeof(struct ivar_list64_t);
3951   offset += sizeof(struct ivar_list64_t);
3952   for (j = 0; j < il.count; j++) {
3953     r = get_pointer_64(p, offset, left, S, info);
3954     if (r == nullptr)
3955       return;
3956     memset(&i, '\0', sizeof(struct ivar64_t));
3957     if (left < sizeof(struct ivar64_t)) {
3958       memcpy(&i, r, left);
3959       outs() << "   (ivar_t entends past the end of the section)\n";
3960     } else
3961       memcpy(&i, r, sizeof(struct ivar64_t));
3962     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3963       swapStruct(i);
3964
3965     outs() << "\t\t\t   offset ";
3966     sym_name = get_symbol_64(offset + offsetof(struct ivar64_t, offset), S,
3967                              info, n_value, i.offset);
3968     if (n_value != 0) {
3969       if (info->verbose && sym_name != nullptr)
3970         outs() << sym_name;
3971       else
3972         outs() << format("0x%" PRIx64, n_value);
3973       if (i.offset != 0)
3974         outs() << " + " << format("0x%" PRIx64, i.offset);
3975     } else
3976       outs() << format("0x%" PRIx64, i.offset);
3977     ivar_offset_p = get_pointer_64(i.offset + n_value, xoffset, left, xS, info);
3978     if (ivar_offset_p != nullptr && left >= sizeof(*ivar_offset_p)) {
3979       memcpy(&ivar_offset, ivar_offset_p, sizeof(ivar_offset));
3980       if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3981         sys::swapByteOrder(ivar_offset);
3982       outs() << " " << ivar_offset << "\n";
3983     } else
3984       outs() << "\n";
3985
3986     outs() << "\t\t\t     name ";
3987     sym_name = get_symbol_64(offset + offsetof(struct ivar64_t, name), S, info,
3988                              n_value, i.name);
3989     if (n_value != 0) {
3990       if (info->verbose && sym_name != nullptr)
3991         outs() << sym_name;
3992       else
3993         outs() << format("0x%" PRIx64, n_value);
3994       if (i.name != 0)
3995         outs() << " + " << format("0x%" PRIx64, i.name);
3996     } else
3997       outs() << format("0x%" PRIx64, i.name);
3998     name = get_pointer_64(i.name + n_value, xoffset, left, xS, info);
3999     if (name != nullptr)
4000       outs() << format(" %.*s", left, name);
4001     outs() << "\n";
4002
4003     outs() << "\t\t\t     type ";
4004     sym_name = get_symbol_64(offset + offsetof(struct ivar64_t, type), S, info,
4005                              n_value, i.name);
4006     name = get_pointer_64(i.type + n_value, xoffset, left, xS, info);
4007     if (n_value != 0) {
4008       if (info->verbose && sym_name != nullptr)
4009         outs() << sym_name;
4010       else
4011         outs() << format("0x%" PRIx64, n_value);
4012       if (i.type != 0)
4013         outs() << " + " << format("0x%" PRIx64, i.type);
4014     } else
4015       outs() << format("0x%" PRIx64, i.type);
4016     if (name != nullptr)
4017       outs() << format(" %.*s", left, name);
4018     outs() << "\n";
4019
4020     outs() << "\t\t\talignment " << i.alignment << "\n";
4021     outs() << "\t\t\t     size " << i.size << "\n";
4022
4023     p += sizeof(struct ivar64_t);
4024     offset += sizeof(struct ivar64_t);
4025   }
4026 }
4027
4028 static void print_ivar_list32_t(uint32_t p, struct DisassembleInfo *info) {
4029   struct ivar_list32_t il;
4030   struct ivar32_t i;
4031   const char *r;
4032   uint32_t offset, xoffset, left, j;
4033   SectionRef S, xS;
4034   const char *name, *ivar_offset_p;
4035   uint32_t ivar_offset;
4036
4037   r = get_pointer_32(p, offset, left, S, info);
4038   if (r == nullptr)
4039     return;
4040   memset(&il, '\0', sizeof(struct ivar_list32_t));
4041   if (left < sizeof(struct ivar_list32_t)) {
4042     memcpy(&il, r, left);
4043     outs() << "   (ivar_list_t entends past the end of the section)\n";
4044   } else
4045     memcpy(&il, r, sizeof(struct ivar_list32_t));
4046   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4047     swapStruct(il);
4048   outs() << "                    entsize " << il.entsize << "\n";
4049   outs() << "                      count " << il.count << "\n";
4050
4051   p += sizeof(struct ivar_list32_t);
4052   offset += sizeof(struct ivar_list32_t);
4053   for (j = 0; j < il.count; j++) {
4054     r = get_pointer_32(p, offset, left, S, info);
4055     if (r == nullptr)
4056       return;
4057     memset(&i, '\0', sizeof(struct ivar32_t));
4058     if (left < sizeof(struct ivar32_t)) {
4059       memcpy(&i, r, left);
4060       outs() << "   (ivar_t entends past the end of the section)\n";
4061     } else
4062       memcpy(&i, r, sizeof(struct ivar32_t));
4063     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4064       swapStruct(i);
4065
4066     outs() << "\t\t\t   offset " << format("0x%" PRIx32, i.offset);
4067     ivar_offset_p = get_pointer_32(i.offset, xoffset, left, xS, info);
4068     if (ivar_offset_p != nullptr && left >= sizeof(*ivar_offset_p)) {
4069       memcpy(&ivar_offset, ivar_offset_p, sizeof(ivar_offset));
4070       if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4071         sys::swapByteOrder(ivar_offset);
4072       outs() << " " << ivar_offset << "\n";
4073     } else
4074       outs() << "\n";
4075
4076     outs() << "\t\t\t     name " << format("0x%" PRIx32, i.name);
4077     name = get_pointer_32(i.name, xoffset, left, xS, info);
4078     if (name != nullptr)
4079       outs() << format(" %.*s", left, name);
4080     outs() << "\n";
4081
4082     outs() << "\t\t\t     type " << format("0x%" PRIx32, i.type);
4083     name = get_pointer_32(i.type, xoffset, left, xS, info);
4084     if (name != nullptr)
4085       outs() << format(" %.*s", left, name);
4086     outs() << "\n";
4087
4088     outs() << "\t\t\talignment " << i.alignment << "\n";
4089     outs() << "\t\t\t     size " << i.size << "\n";
4090
4091     p += sizeof(struct ivar32_t);
4092     offset += sizeof(struct ivar32_t);
4093   }
4094 }
4095
4096 static void print_objc_property_list64(uint64_t p,
4097                                        struct DisassembleInfo *info) {
4098   struct objc_property_list64 opl;
4099   struct objc_property64 op;
4100   const char *r;
4101   uint32_t offset, xoffset, left, j;
4102   SectionRef S, xS;
4103   const char *name, *sym_name;
4104   uint64_t n_value;
4105
4106   r = get_pointer_64(p, offset, left, S, info);
4107   if (r == nullptr)
4108     return;
4109   memset(&opl, '\0', sizeof(struct objc_property_list64));
4110   if (left < sizeof(struct objc_property_list64)) {
4111     memcpy(&opl, r, left);
4112     outs() << "   (objc_property_list entends past the end of the section)\n";
4113   } else
4114     memcpy(&opl, r, sizeof(struct objc_property_list64));
4115   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4116     swapStruct(opl);
4117   outs() << "                    entsize " << opl.entsize << "\n";
4118   outs() << "                      count " << opl.count << "\n";
4119
4120   p += sizeof(struct objc_property_list64);
4121   offset += sizeof(struct objc_property_list64);
4122   for (j = 0; j < opl.count; j++) {
4123     r = get_pointer_64(p, offset, left, S, info);
4124     if (r == nullptr)
4125       return;
4126     memset(&op, '\0', sizeof(struct objc_property64));
4127     if (left < sizeof(struct objc_property64)) {
4128       memcpy(&op, r, left);
4129       outs() << "   (objc_property entends past the end of the section)\n";
4130     } else
4131       memcpy(&op, r, sizeof(struct objc_property64));
4132     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4133       swapStruct(op);
4134
4135     outs() << "\t\t\t     name ";
4136     sym_name = get_symbol_64(offset + offsetof(struct objc_property64, name), S,
4137                              info, n_value, op.name);
4138     if (n_value != 0) {
4139       if (info->verbose && sym_name != nullptr)
4140         outs() << sym_name;
4141       else
4142         outs() << format("0x%" PRIx64, n_value);
4143       if (op.name != 0)
4144         outs() << " + " << format("0x%" PRIx64, op.name);
4145     } else
4146       outs() << format("0x%" PRIx64, op.name);
4147     name = get_pointer_64(op.name + n_value, xoffset, left, xS, info);
4148     if (name != nullptr)
4149       outs() << format(" %.*s", left, name);
4150     outs() << "\n";
4151
4152     outs() << "\t\t\tattributes ";
4153     sym_name =
4154         get_symbol_64(offset + offsetof(struct objc_property64, attributes), S,
4155                       info, n_value, op.attributes);
4156     if (n_value != 0) {
4157       if (info->verbose && sym_name != nullptr)
4158         outs() << sym_name;
4159       else
4160         outs() << format("0x%" PRIx64, n_value);
4161       if (op.attributes != 0)
4162         outs() << " + " << format("0x%" PRIx64, op.attributes);
4163     } else
4164       outs() << format("0x%" PRIx64, op.attributes);
4165     name = get_pointer_64(op.attributes + n_value, xoffset, left, xS, info);
4166     if (name != nullptr)
4167       outs() << format(" %.*s", left, name);
4168     outs() << "\n";
4169
4170     p += sizeof(struct objc_property64);
4171     offset += sizeof(struct objc_property64);
4172   }
4173 }
4174
4175 static void print_objc_property_list32(uint32_t p,
4176                                        struct DisassembleInfo *info) {
4177   struct objc_property_list32 opl;
4178   struct objc_property32 op;
4179   const char *r;
4180   uint32_t offset, xoffset, left, j;
4181   SectionRef S, xS;
4182   const char *name;
4183
4184   r = get_pointer_32(p, offset, left, S, info);
4185   if (r == nullptr)
4186     return;
4187   memset(&opl, '\0', sizeof(struct objc_property_list32));
4188   if (left < sizeof(struct objc_property_list32)) {
4189     memcpy(&opl, r, left);
4190     outs() << "   (objc_property_list entends past the end of the section)\n";
4191   } else
4192     memcpy(&opl, r, sizeof(struct objc_property_list32));
4193   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4194     swapStruct(opl);
4195   outs() << "                    entsize " << opl.entsize << "\n";
4196   outs() << "                      count " << opl.count << "\n";
4197
4198   p += sizeof(struct objc_property_list32);
4199   offset += sizeof(struct objc_property_list32);
4200   for (j = 0; j < opl.count; j++) {
4201     r = get_pointer_32(p, offset, left, S, info);
4202     if (r == nullptr)
4203       return;
4204     memset(&op, '\0', sizeof(struct objc_property32));
4205     if (left < sizeof(struct objc_property32)) {
4206       memcpy(&op, r, left);
4207       outs() << "   (objc_property entends past the end of the section)\n";
4208     } else
4209       memcpy(&op, r, sizeof(struct objc_property32));
4210     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4211       swapStruct(op);
4212
4213     outs() << "\t\t\t     name " << format("0x%" PRIx32, op.name);
4214     name = get_pointer_32(op.name, xoffset, left, xS, info);
4215     if (name != nullptr)
4216       outs() << format(" %.*s", left, name);
4217     outs() << "\n";
4218
4219     outs() << "\t\t\tattributes " << format("0x%" PRIx32, op.attributes);
4220     name = get_pointer_32(op.attributes, xoffset, left, xS, info);
4221     if (name != nullptr)
4222       outs() << format(" %.*s", left, name);
4223     outs() << "\n";
4224
4225     p += sizeof(struct objc_property32);
4226     offset += sizeof(struct objc_property32);
4227   }
4228 }
4229
4230 static bool print_class_ro64_t(uint64_t p, struct DisassembleInfo *info,
4231                                bool &is_meta_class) {
4232   struct class_ro64_t cro;
4233   const char *r;
4234   uint32_t offset, xoffset, left;
4235   SectionRef S, xS;
4236   const char *name, *sym_name;
4237   uint64_t n_value;
4238
4239   r = get_pointer_64(p, offset, left, S, info);
4240   if (r == nullptr || left < sizeof(struct class_ro64_t))
4241     return false;
4242   memset(&cro, '\0', sizeof(struct class_ro64_t));
4243   if (left < sizeof(struct class_ro64_t)) {
4244     memcpy(&cro, r, left);
4245     outs() << "   (class_ro_t entends past the end of the section)\n";
4246   } else
4247     memcpy(&cro, r, sizeof(struct class_ro64_t));
4248   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4249     swapStruct(cro);
4250   outs() << "                    flags " << format("0x%" PRIx32, cro.flags);
4251   if (cro.flags & RO_META)
4252     outs() << " RO_META";
4253   if (cro.flags & RO_ROOT)
4254     outs() << " RO_ROOT";
4255   if (cro.flags & RO_HAS_CXX_STRUCTORS)
4256     outs() << " RO_HAS_CXX_STRUCTORS";
4257   outs() << "\n";
4258   outs() << "            instanceStart " << cro.instanceStart << "\n";
4259   outs() << "             instanceSize " << cro.instanceSize << "\n";
4260   outs() << "                 reserved " << format("0x%" PRIx32, cro.reserved)
4261          << "\n";
4262   outs() << "               ivarLayout " << format("0x%" PRIx64, cro.ivarLayout)
4263          << "\n";
4264   print_layout_map64(cro.ivarLayout, info);
4265
4266   outs() << "                     name ";
4267   sym_name = get_symbol_64(offset + offsetof(struct class_ro64_t, name), S,
4268                            info, n_value, cro.name);
4269   if (n_value != 0) {
4270     if (info->verbose && sym_name != nullptr)
4271       outs() << sym_name;
4272     else
4273       outs() << format("0x%" PRIx64, n_value);
4274     if (cro.name != 0)
4275       outs() << " + " << format("0x%" PRIx64, cro.name);
4276   } else
4277     outs() << format("0x%" PRIx64, cro.name);
4278   name = get_pointer_64(cro.name + n_value, xoffset, left, xS, info);
4279   if (name != nullptr)
4280     outs() << format(" %.*s", left, name);
4281   outs() << "\n";
4282
4283   outs() << "              baseMethods ";
4284   sym_name = get_symbol_64(offset + offsetof(struct class_ro64_t, baseMethods),
4285                            S, info, n_value, cro.baseMethods);
4286   if (n_value != 0) {
4287     if (info->verbose && sym_name != nullptr)
4288       outs() << sym_name;
4289     else
4290       outs() << format("0x%" PRIx64, n_value);
4291     if (cro.baseMethods != 0)
4292       outs() << " + " << format("0x%" PRIx64, cro.baseMethods);
4293   } else
4294     outs() << format("0x%" PRIx64, cro.baseMethods);
4295   outs() << " (struct method_list_t *)\n";
4296   if (cro.baseMethods + n_value != 0)
4297     print_method_list64_t(cro.baseMethods + n_value, info, "");
4298
4299   outs() << "            baseProtocols ";
4300   sym_name =
4301       get_symbol_64(offset + offsetof(struct class_ro64_t, baseProtocols), S,
4302                     info, n_value, cro.baseProtocols);
4303   if (n_value != 0) {
4304     if (info->verbose && sym_name != nullptr)
4305       outs() << sym_name;
4306     else
4307       outs() << format("0x%" PRIx64, n_value);
4308     if (cro.baseProtocols != 0)
4309       outs() << " + " << format("0x%" PRIx64, cro.baseProtocols);
4310   } else
4311     outs() << format("0x%" PRIx64, cro.baseProtocols);
4312   outs() << "\n";
4313   if (cro.baseProtocols + n_value != 0)
4314     print_protocol_list64_t(cro.baseProtocols + n_value, info);
4315
4316   outs() << "                    ivars ";
4317   sym_name = get_symbol_64(offset + offsetof(struct class_ro64_t, ivars), S,
4318                            info, n_value, cro.ivars);
4319   if (n_value != 0) {
4320     if (info->verbose && sym_name != nullptr)
4321       outs() << sym_name;
4322     else
4323       outs() << format("0x%" PRIx64, n_value);
4324     if (cro.ivars != 0)
4325       outs() << " + " << format("0x%" PRIx64, cro.ivars);
4326   } else
4327     outs() << format("0x%" PRIx64, cro.ivars);
4328   outs() << "\n";
4329   if (cro.ivars + n_value != 0)
4330     print_ivar_list64_t(cro.ivars + n_value, info);
4331
4332   outs() << "           weakIvarLayout ";
4333   sym_name =
4334       get_symbol_64(offset + offsetof(struct class_ro64_t, weakIvarLayout), S,
4335                     info, n_value, cro.weakIvarLayout);
4336   if (n_value != 0) {
4337     if (info->verbose && sym_name != nullptr)
4338       outs() << sym_name;
4339     else
4340       outs() << format("0x%" PRIx64, n_value);
4341     if (cro.weakIvarLayout != 0)
4342       outs() << " + " << format("0x%" PRIx64, cro.weakIvarLayout);
4343   } else
4344     outs() << format("0x%" PRIx64, cro.weakIvarLayout);
4345   outs() << "\n";
4346   print_layout_map64(cro.weakIvarLayout + n_value, info);
4347
4348   outs() << "           baseProperties ";
4349   sym_name =
4350       get_symbol_64(offset + offsetof(struct class_ro64_t, baseProperties), S,
4351                     info, n_value, cro.baseProperties);
4352   if (n_value != 0) {
4353     if (info->verbose && sym_name != nullptr)
4354       outs() << sym_name;
4355     else
4356       outs() << format("0x%" PRIx64, n_value);
4357     if (cro.baseProperties != 0)
4358       outs() << " + " << format("0x%" PRIx64, cro.baseProperties);
4359   } else
4360     outs() << format("0x%" PRIx64, cro.baseProperties);
4361   outs() << "\n";
4362   if (cro.baseProperties + n_value != 0)
4363     print_objc_property_list64(cro.baseProperties + n_value, info);
4364
4365   is_meta_class = (cro.flags & RO_META) != 0;
4366   return true;
4367 }
4368
4369 static bool print_class_ro32_t(uint32_t p, struct DisassembleInfo *info,
4370                                bool &is_meta_class) {
4371   struct class_ro32_t cro;
4372   const char *r;
4373   uint32_t offset, xoffset, left;
4374   SectionRef S, xS;
4375   const char *name;
4376
4377   r = get_pointer_32(p, offset, left, S, info);
4378   if (r == nullptr)
4379     return false;
4380   memset(&cro, '\0', sizeof(struct class_ro32_t));
4381   if (left < sizeof(struct class_ro32_t)) {
4382     memcpy(&cro, r, left);
4383     outs() << "   (class_ro_t entends past the end of the section)\n";
4384   } else
4385     memcpy(&cro, r, sizeof(struct class_ro32_t));
4386   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4387     swapStruct(cro);
4388   outs() << "                    flags " << format("0x%" PRIx32, cro.flags);
4389   if (cro.flags & RO_META)
4390     outs() << " RO_META";
4391   if (cro.flags & RO_ROOT)
4392     outs() << " RO_ROOT";
4393   if (cro.flags & RO_HAS_CXX_STRUCTORS)
4394     outs() << " RO_HAS_CXX_STRUCTORS";
4395   outs() << "\n";
4396   outs() << "            instanceStart " << cro.instanceStart << "\n";
4397   outs() << "             instanceSize " << cro.instanceSize << "\n";
4398   outs() << "               ivarLayout " << format("0x%" PRIx32, cro.ivarLayout)
4399          << "\n";
4400   print_layout_map32(cro.ivarLayout, info);
4401
4402   outs() << "                     name " << format("0x%" PRIx32, cro.name);
4403   name = get_pointer_32(cro.name, xoffset, left, xS, info);
4404   if (name != nullptr)
4405     outs() << format(" %.*s", left, name);
4406   outs() << "\n";
4407
4408   outs() << "              baseMethods "
4409          << format("0x%" PRIx32, cro.baseMethods)
4410          << " (struct method_list_t *)\n";
4411   if (cro.baseMethods != 0)
4412     print_method_list32_t(cro.baseMethods, info, "");
4413
4414   outs() << "            baseProtocols "
4415          << format("0x%" PRIx32, cro.baseProtocols) << "\n";
4416   if (cro.baseProtocols != 0)
4417     print_protocol_list32_t(cro.baseProtocols, info);
4418   outs() << "                    ivars " << format("0x%" PRIx32, cro.ivars)
4419          << "\n";
4420   if (cro.ivars != 0)
4421     print_ivar_list32_t(cro.ivars, info);
4422   outs() << "           weakIvarLayout "
4423          << format("0x%" PRIx32, cro.weakIvarLayout) << "\n";
4424   print_layout_map32(cro.weakIvarLayout, info);
4425   outs() << "           baseProperties "
4426          << format("0x%" PRIx32, cro.baseProperties) << "\n";
4427   if (cro.baseProperties != 0)
4428     print_objc_property_list32(cro.baseProperties, info);
4429   is_meta_class = (cro.flags & RO_META) != 0;
4430   return true;
4431 }
4432
4433 static void print_class64_t(uint64_t p, struct DisassembleInfo *info) {
4434   struct class64_t c;
4435   const char *r;
4436   uint32_t offset, left;
4437   SectionRef S;
4438   const char *name;
4439   uint64_t isa_n_value, n_value;
4440
4441   r = get_pointer_64(p, offset, left, S, info);
4442   if (r == nullptr || left < sizeof(struct class64_t))
4443     return;
4444   memset(&c, '\0', sizeof(struct class64_t));
4445   if (left < sizeof(struct class64_t)) {
4446     memcpy(&c, r, left);
4447     outs() << "   (class_t entends past the end of the section)\n";
4448   } else
4449     memcpy(&c, r, sizeof(struct class64_t));
4450   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4451     swapStruct(c);
4452
4453   outs() << "           isa " << format("0x%" PRIx64, c.isa);
4454   name = get_symbol_64(offset + offsetof(struct class64_t, isa), S, info,
4455                        isa_n_value, c.isa);
4456   if (name != nullptr)
4457     outs() << " " << name;
4458   outs() << "\n";
4459
4460   outs() << "    superclass " << format("0x%" PRIx64, c.superclass);
4461   name = get_symbol_64(offset + offsetof(struct class64_t, superclass), S, info,
4462                        n_value, c.superclass);
4463   if (name != nullptr)
4464     outs() << " " << name;
4465   outs() << "\n";
4466
4467   outs() << "         cache " << format("0x%" PRIx64, c.cache);
4468   name = get_symbol_64(offset + offsetof(struct class64_t, cache), S, info,
4469                        n_value, c.cache);
4470   if (name != nullptr)
4471     outs() << " " << name;
4472   outs() << "\n";
4473
4474   outs() << "        vtable " << format("0x%" PRIx64, c.vtable);
4475   name = get_symbol_64(offset + offsetof(struct class64_t, vtable), S, info,
4476                        n_value, c.vtable);
4477   if (name != nullptr)
4478     outs() << " " << name;
4479   outs() << "\n";
4480
4481   name = get_symbol_64(offset + offsetof(struct class64_t, data), S, info,
4482                        n_value, c.data);
4483   outs() << "          data ";
4484   if (n_value != 0) {
4485     if (info->verbose && name != nullptr)
4486       outs() << name;
4487     else
4488       outs() << format("0x%" PRIx64, n_value);
4489     if (c.data != 0)
4490       outs() << " + " << format("0x%" PRIx64, c.data);
4491   } else
4492     outs() << format("0x%" PRIx64, c.data);
4493   outs() << " (struct class_ro_t *)";
4494
4495   // This is a Swift class if some of the low bits of the pointer are set.
4496   if ((c.data + n_value) & 0x7)
4497     outs() << " Swift class";
4498   outs() << "\n";
4499   bool is_meta_class;
4500   if (!print_class_ro64_t((c.data + n_value) & ~0x7, info, is_meta_class))
4501     return;
4502
4503   if (!is_meta_class &&
4504       c.isa + isa_n_value != p &&
4505       c.isa + isa_n_value != 0 &&
4506       info->depth < 100) {
4507       info->depth++;
4508       outs() << "Meta Class\n";
4509       print_class64_t(c.isa + isa_n_value, info);
4510   }
4511 }
4512
4513 static void print_class32_t(uint32_t p, struct DisassembleInfo *info) {
4514   struct class32_t c;
4515   const char *r;
4516   uint32_t offset, left;
4517   SectionRef S;
4518   const char *name;
4519
4520   r = get_pointer_32(p, offset, left, S, info);
4521   if (r == nullptr)
4522     return;
4523   memset(&c, '\0', sizeof(struct class32_t));
4524   if (left < sizeof(struct class32_t)) {
4525     memcpy(&c, r, left);
4526     outs() << "   (class_t entends past the end of the section)\n";
4527   } else
4528     memcpy(&c, r, sizeof(struct class32_t));
4529   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4530     swapStruct(c);
4531
4532   outs() << "           isa " << format("0x%" PRIx32, c.isa);
4533   name =
4534       get_symbol_32(offset + offsetof(struct class32_t, isa), S, info, c.isa);
4535   if (name != nullptr)
4536     outs() << " " << name;
4537   outs() << "\n";
4538
4539   outs() << "    superclass " << format("0x%" PRIx32, c.superclass);
4540   name = get_symbol_32(offset + offsetof(struct class32_t, superclass), S, info,
4541                        c.superclass);
4542   if (name != nullptr)
4543     outs() << " " << name;
4544   outs() << "\n";
4545
4546   outs() << "         cache " << format("0x%" PRIx32, c.cache);
4547   name = get_symbol_32(offset + offsetof(struct class32_t, cache), S, info,
4548                        c.cache);
4549   if (name != nullptr)
4550     outs() << " " << name;
4551   outs() << "\n";
4552
4553   outs() << "        vtable " << format("0x%" PRIx32, c.vtable);
4554   name = get_symbol_32(offset + offsetof(struct class32_t, vtable), S, info,
4555                        c.vtable);
4556   if (name != nullptr)
4557     outs() << " " << name;
4558   outs() << "\n";
4559
4560   name =
4561       get_symbol_32(offset + offsetof(struct class32_t, data), S, info, c.data);
4562   outs() << "          data " << format("0x%" PRIx32, c.data)
4563          << " (struct class_ro_t *)";
4564
4565   // This is a Swift class if some of the low bits of the pointer are set.
4566   if (c.data & 0x3)
4567     outs() << " Swift class";
4568   outs() << "\n";
4569   bool is_meta_class;
4570   if (!print_class_ro32_t(c.data & ~0x3, info, is_meta_class))
4571     return;
4572
4573   if (!is_meta_class) {
4574     outs() << "Meta Class\n";
4575     print_class32_t(c.isa, info);
4576   }
4577 }
4578
4579 static void print_objc_class_t(struct objc_class_t *objc_class,
4580                                struct DisassembleInfo *info) {
4581   uint32_t offset, left, xleft;
4582   const char *name, *p, *ivar_list;
4583   SectionRef S;
4584   int32_t i;
4585   struct objc_ivar_list_t objc_ivar_list;
4586   struct objc_ivar_t ivar;
4587
4588   outs() << "\t\t      isa " << format("0x%08" PRIx32, objc_class->isa);
4589   if (info->verbose && CLS_GETINFO(objc_class, CLS_META)) {
4590     name = get_pointer_32(objc_class->isa, offset, left, S, info, true);
4591     if (name != nullptr)
4592       outs() << format(" %.*s", left, name);
4593     else
4594       outs() << " (not in an __OBJC section)";
4595   }
4596   outs() << "\n";
4597
4598   outs() << "\t      super_class "
4599          << format("0x%08" PRIx32, objc_class->super_class);
4600   if (info->verbose) {
4601     name = get_pointer_32(objc_class->super_class, offset, left, S, info, true);
4602     if (name != nullptr)
4603       outs() << format(" %.*s", left, name);
4604     else
4605       outs() << " (not in an __OBJC section)";
4606   }
4607   outs() << "\n";
4608
4609   outs() << "\t\t     name " << format("0x%08" PRIx32, objc_class->name);
4610   if (info->verbose) {
4611     name = get_pointer_32(objc_class->name, offset, left, S, info, true);
4612     if (name != nullptr)
4613       outs() << format(" %.*s", left, name);
4614     else
4615       outs() << " (not in an __OBJC section)";
4616   }
4617   outs() << "\n";
4618
4619   outs() << "\t\t  version " << format("0x%08" PRIx32, objc_class->version)
4620          << "\n";
4621
4622   outs() << "\t\t     info " << format("0x%08" PRIx32, objc_class->info);
4623   if (info->verbose) {
4624     if (CLS_GETINFO(objc_class, CLS_CLASS))
4625       outs() << " CLS_CLASS";
4626     else if (CLS_GETINFO(objc_class, CLS_META))
4627       outs() << " CLS_META";
4628   }
4629   outs() << "\n";
4630
4631   outs() << "\t    instance_size "
4632          << format("0x%08" PRIx32, objc_class->instance_size) << "\n";
4633
4634   p = get_pointer_32(objc_class->ivars, offset, left, S, info, true);
4635   outs() << "\t\t    ivars " << format("0x%08" PRIx32, objc_class->ivars);
4636   if (p != nullptr) {
4637     if (left > sizeof(struct objc_ivar_list_t)) {
4638       outs() << "\n";
4639       memcpy(&objc_ivar_list, p, sizeof(struct objc_ivar_list_t));
4640     } else {
4641       outs() << " (entends past the end of the section)\n";
4642       memset(&objc_ivar_list, '\0', sizeof(struct objc_ivar_list_t));
4643       memcpy(&objc_ivar_list, p, left);
4644     }
4645     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4646       swapStruct(objc_ivar_list);
4647     outs() << "\t\t       ivar_count " << objc_ivar_list.ivar_count << "\n";
4648     ivar_list = p + sizeof(struct objc_ivar_list_t);
4649     for (i = 0; i < objc_ivar_list.ivar_count; i++) {
4650       if ((i + 1) * sizeof(struct objc_ivar_t) > left) {
4651         outs() << "\t\t remaining ivar's extend past the of the section\n";
4652         break;
4653       }
4654       memcpy(&ivar, ivar_list + i * sizeof(struct objc_ivar_t),
4655              sizeof(struct objc_ivar_t));
4656       if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4657         swapStruct(ivar);
4658
4659       outs() << "\t\t\tivar_name " << format("0x%08" PRIx32, ivar.ivar_name);
4660       if (info->verbose) {
4661         name = get_pointer_32(ivar.ivar_name, offset, xleft, S, info, true);
4662         if (name != nullptr)
4663           outs() << format(" %.*s", xleft, name);
4664         else
4665           outs() << " (not in an __OBJC section)";
4666       }
4667       outs() << "\n";
4668
4669       outs() << "\t\t\tivar_type " << format("0x%08" PRIx32, ivar.ivar_type);
4670       if (info->verbose) {
4671         name = get_pointer_32(ivar.ivar_type, offset, xleft, S, info, true);
4672         if (name != nullptr)
4673           outs() << format(" %.*s", xleft, name);
4674         else
4675           outs() << " (not in an __OBJC section)";
4676       }
4677       outs() << "\n";
4678
4679       outs() << "\t\t      ivar_offset "
4680              << format("0x%08" PRIx32, ivar.ivar_offset) << "\n";
4681     }
4682   } else {
4683     outs() << " (not in an __OBJC section)\n";
4684   }
4685
4686   outs() << "\t\t  methods " << format("0x%08" PRIx32, objc_class->methodLists);
4687   if (print_method_list(objc_class->methodLists, info))
4688     outs() << " (not in an __OBJC section)\n";
4689
4690   outs() << "\t\t    cache " << format("0x%08" PRIx32, objc_class->cache)
4691          << "\n";
4692
4693   outs() << "\t\tprotocols " << format("0x%08" PRIx32, objc_class->protocols);
4694   if (print_protocol_list(objc_class->protocols, 16, info))
4695     outs() << " (not in an __OBJC section)\n";
4696 }
4697
4698 static void print_objc_objc_category_t(struct objc_category_t *objc_category,
4699                                        struct DisassembleInfo *info) {
4700   uint32_t offset, left;
4701   const char *name;
4702   SectionRef S;
4703
4704   outs() << "\t       category name "
4705          << format("0x%08" PRIx32, objc_category->category_name);
4706   if (info->verbose) {
4707     name = get_pointer_32(objc_category->category_name, offset, left, S, info,
4708                           true);
4709     if (name != nullptr)
4710       outs() << format(" %.*s", left, name);
4711     else
4712       outs() << " (not in an __OBJC section)";
4713   }
4714   outs() << "\n";
4715
4716   outs() << "\t\t  class name "
4717          << format("0x%08" PRIx32, objc_category->class_name);
4718   if (info->verbose) {
4719     name =
4720         get_pointer_32(objc_category->class_name, offset, left, S, info, true);
4721     if (name != nullptr)
4722       outs() << format(" %.*s", left, name);
4723     else
4724       outs() << " (not in an __OBJC section)";
4725   }
4726   outs() << "\n";
4727
4728   outs() << "\t    instance methods "
4729          << format("0x%08" PRIx32, objc_category->instance_methods);
4730   if (print_method_list(objc_category->instance_methods, info))
4731     outs() << " (not in an __OBJC section)\n";
4732
4733   outs() << "\t       class methods "
4734          << format("0x%08" PRIx32, objc_category->class_methods);
4735   if (print_method_list(objc_category->class_methods, info))
4736     outs() << " (not in an __OBJC section)\n";
4737 }
4738
4739 static void print_category64_t(uint64_t p, struct DisassembleInfo *info) {
4740   struct category64_t c;
4741   const char *r;
4742   uint32_t offset, xoffset, left;
4743   SectionRef S, xS;
4744   const char *name, *sym_name;
4745   uint64_t n_value;
4746
4747   r = get_pointer_64(p, offset, left, S, info);
4748   if (r == nullptr)
4749     return;
4750   memset(&c, '\0', sizeof(struct category64_t));
4751   if (left < sizeof(struct category64_t)) {
4752     memcpy(&c, r, left);
4753     outs() << "   (category_t entends past the end of the section)\n";
4754   } else
4755     memcpy(&c, r, sizeof(struct category64_t));
4756   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4757     swapStruct(c);
4758
4759   outs() << "              name ";
4760   sym_name = get_symbol_64(offset + offsetof(struct category64_t, name), S,
4761                            info, n_value, c.name);
4762   if (n_value != 0) {
4763     if (info->verbose && sym_name != nullptr)
4764       outs() << sym_name;
4765     else
4766       outs() << format("0x%" PRIx64, n_value);
4767     if (c.name != 0)
4768       outs() << " + " << format("0x%" PRIx64, c.name);
4769   } else
4770     outs() << format("0x%" PRIx64, c.name);
4771   name = get_pointer_64(c.name + n_value, xoffset, left, xS, info);
4772   if (name != nullptr)
4773     outs() << format(" %.*s", left, name);
4774   outs() << "\n";
4775
4776   outs() << "               cls ";
4777   sym_name = get_symbol_64(offset + offsetof(struct category64_t, cls), S, info,
4778                            n_value, c.cls);
4779   if (n_value != 0) {
4780     if (info->verbose && sym_name != nullptr)
4781       outs() << sym_name;
4782     else
4783       outs() << format("0x%" PRIx64, n_value);
4784     if (c.cls != 0)
4785       outs() << " + " << format("0x%" PRIx64, c.cls);
4786   } else
4787     outs() << format("0x%" PRIx64, c.cls);
4788   outs() << "\n";
4789   if (c.cls + n_value != 0)
4790     print_class64_t(c.cls + n_value, info);
4791
4792   outs() << "   instanceMethods ";
4793   sym_name =
4794       get_symbol_64(offset + offsetof(struct category64_t, instanceMethods), S,
4795                     info, n_value, c.instanceMethods);
4796   if (n_value != 0) {
4797     if (info->verbose && sym_name != nullptr)
4798       outs() << sym_name;
4799     else
4800       outs() << format("0x%" PRIx64, n_value);
4801     if (c.instanceMethods != 0)
4802       outs() << " + " << format("0x%" PRIx64, c.instanceMethods);
4803   } else
4804     outs() << format("0x%" PRIx64, c.instanceMethods);
4805   outs() << "\n";
4806   if (c.instanceMethods + n_value != 0)
4807     print_method_list64_t(c.instanceMethods + n_value, info, "");
4808
4809   outs() << "      classMethods ";
4810   sym_name = get_symbol_64(offset + offsetof(struct category64_t, classMethods),
4811                            S, info, n_value, c.classMethods);
4812   if (n_value != 0) {
4813     if (info->verbose && sym_name != nullptr)
4814       outs() << sym_name;
4815     else
4816       outs() << format("0x%" PRIx64, n_value);
4817     if (c.classMethods != 0)
4818       outs() << " + " << format("0x%" PRIx64, c.classMethods);
4819   } else
4820     outs() << format("0x%" PRIx64, c.classMethods);
4821   outs() << "\n";
4822   if (c.classMethods + n_value != 0)
4823     print_method_list64_t(c.classMethods + n_value, info, "");
4824
4825   outs() << "         protocols ";
4826   sym_name = get_symbol_64(offset + offsetof(struct category64_t, protocols), S,
4827                            info, n_value, c.protocols);
4828   if (n_value != 0) {
4829     if (info->verbose && sym_name != nullptr)
4830       outs() << sym_name;
4831     else
4832       outs() << format("0x%" PRIx64, n_value);
4833     if (c.protocols != 0)
4834       outs() << " + " << format("0x%" PRIx64, c.protocols);
4835   } else
4836     outs() << format("0x%" PRIx64, c.protocols);
4837   outs() << "\n";
4838   if (c.protocols + n_value != 0)
4839     print_protocol_list64_t(c.protocols + n_value, info);
4840
4841   outs() << "instanceProperties ";
4842   sym_name =
4843       get_symbol_64(offset + offsetof(struct category64_t, instanceProperties),
4844                     S, info, n_value, c.instanceProperties);
4845   if (n_value != 0) {
4846     if (info->verbose && sym_name != nullptr)
4847       outs() << sym_name;
4848     else
4849       outs() << format("0x%" PRIx64, n_value);
4850     if (c.instanceProperties != 0)
4851       outs() << " + " << format("0x%" PRIx64, c.instanceProperties);
4852   } else
4853     outs() << format("0x%" PRIx64, c.instanceProperties);
4854   outs() << "\n";
4855   if (c.instanceProperties + n_value != 0)
4856     print_objc_property_list64(c.instanceProperties + n_value, info);
4857 }
4858
4859 static void print_category32_t(uint32_t p, struct DisassembleInfo *info) {
4860   struct category32_t c;
4861   const char *r;
4862   uint32_t offset, left;
4863   SectionRef S, xS;
4864   const char *name;
4865
4866   r = get_pointer_32(p, offset, left, S, info);
4867   if (r == nullptr)
4868     return;
4869   memset(&c, '\0', sizeof(struct category32_t));
4870   if (left < sizeof(struct category32_t)) {
4871     memcpy(&c, r, left);
4872     outs() << "   (category_t entends past the end of the section)\n";
4873   } else
4874     memcpy(&c, r, sizeof(struct category32_t));
4875   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4876     swapStruct(c);
4877
4878   outs() << "              name " << format("0x%" PRIx32, c.name);
4879   name = get_symbol_32(offset + offsetof(struct category32_t, name), S, info,
4880                        c.name);
4881   if (name)
4882     outs() << " " << name;
4883   outs() << "\n";
4884
4885   outs() << "               cls " << format("0x%" PRIx32, c.cls) << "\n";
4886   if (c.cls != 0)
4887     print_class32_t(c.cls, info);
4888   outs() << "   instanceMethods " << format("0x%" PRIx32, c.instanceMethods)
4889          << "\n";
4890   if (c.instanceMethods != 0)
4891     print_method_list32_t(c.instanceMethods, info, "");
4892   outs() << "      classMethods " << format("0x%" PRIx32, c.classMethods)
4893          << "\n";
4894   if (c.classMethods != 0)
4895     print_method_list32_t(c.classMethods, info, "");
4896   outs() << "         protocols " << format("0x%" PRIx32, c.protocols) << "\n";
4897   if (c.protocols != 0)
4898     print_protocol_list32_t(c.protocols, info);
4899   outs() << "instanceProperties " << format("0x%" PRIx32, c.instanceProperties)
4900          << "\n";
4901   if (c.instanceProperties != 0)
4902     print_objc_property_list32(c.instanceProperties, info);
4903 }
4904
4905 static void print_message_refs64(SectionRef S, struct DisassembleInfo *info) {
4906   uint32_t i, left, offset, xoffset;
4907   uint64_t p, n_value;
4908   struct message_ref64 mr;
4909   const char *name, *sym_name;
4910   const char *r;
4911   SectionRef xS;
4912
4913   if (S == SectionRef())
4914     return;
4915
4916   StringRef SectName;
4917   S.getName(SectName);
4918   DataRefImpl Ref = S.getRawDataRefImpl();
4919   StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
4920   outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
4921   offset = 0;
4922   for (i = 0; i < S.getSize(); i += sizeof(struct message_ref64)) {
4923     p = S.getAddress() + i;
4924     r = get_pointer_64(p, offset, left, S, info);
4925     if (r == nullptr)
4926       return;
4927     memset(&mr, '\0', sizeof(struct message_ref64));
4928     if (left < sizeof(struct message_ref64)) {
4929       memcpy(&mr, r, left);
4930       outs() << "   (message_ref entends past the end of the section)\n";
4931     } else
4932       memcpy(&mr, r, sizeof(struct message_ref64));
4933     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4934       swapStruct(mr);
4935
4936     outs() << "  imp ";
4937     name = get_symbol_64(offset + offsetof(struct message_ref64, imp), S, info,
4938                          n_value, mr.imp);
4939     if (n_value != 0) {
4940       outs() << format("0x%" PRIx64, n_value) << " ";
4941       if (mr.imp != 0)
4942         outs() << "+ " << format("0x%" PRIx64, mr.imp) << " ";
4943     } else
4944       outs() << format("0x%" PRIx64, mr.imp) << " ";
4945     if (name != nullptr)
4946       outs() << " " << name;
4947     outs() << "\n";
4948
4949     outs() << "  sel ";
4950     sym_name = get_symbol_64(offset + offsetof(struct message_ref64, sel), S,
4951                              info, n_value, mr.sel);
4952     if (n_value != 0) {
4953       if (info->verbose && sym_name != nullptr)
4954         outs() << sym_name;
4955       else
4956         outs() << format("0x%" PRIx64, n_value);
4957       if (mr.sel != 0)
4958         outs() << " + " << format("0x%" PRIx64, mr.sel);
4959     } else
4960       outs() << format("0x%" PRIx64, mr.sel);
4961     name = get_pointer_64(mr.sel + n_value, xoffset, left, xS, info);
4962     if (name != nullptr)
4963       outs() << format(" %.*s", left, name);
4964     outs() << "\n";
4965
4966     offset += sizeof(struct message_ref64);
4967   }
4968 }
4969
4970 static void print_message_refs32(SectionRef S, struct DisassembleInfo *info) {
4971   uint32_t i, left, offset, xoffset, p;
4972   struct message_ref32 mr;
4973   const char *name, *r;
4974   SectionRef xS;
4975
4976   if (S == SectionRef())
4977     return;
4978
4979   StringRef SectName;
4980   S.getName(SectName);
4981   DataRefImpl Ref = S.getRawDataRefImpl();
4982   StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
4983   outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
4984   offset = 0;
4985   for (i = 0; i < S.getSize(); i += sizeof(struct message_ref64)) {
4986     p = S.getAddress() + i;
4987     r = get_pointer_32(p, offset, left, S, info);
4988     if (r == nullptr)
4989       return;
4990     memset(&mr, '\0', sizeof(struct message_ref32));
4991     if (left < sizeof(struct message_ref32)) {
4992       memcpy(&mr, r, left);
4993       outs() << "   (message_ref entends past the end of the section)\n";
4994     } else
4995       memcpy(&mr, r, sizeof(struct message_ref32));
4996     if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4997       swapStruct(mr);
4998
4999     outs() << "  imp " << format("0x%" PRIx32, mr.imp);
5000     name = get_symbol_32(offset + offsetof(struct message_ref32, imp), S, info,
5001                          mr.imp);
5002     if (name != nullptr)
5003       outs() << " " << name;
5004     outs() << "\n";
5005
5006     outs() << "  sel " << format("0x%" PRIx32, mr.sel);
5007     name = get_pointer_32(mr.sel, xoffset, left, xS, info);
5008     if (name != nullptr)
5009       outs() << " " << name;
5010     outs() << "\n";
5011
5012     offset += sizeof(struct message_ref32);
5013   }
5014 }
5015
5016 static void print_image_info64(SectionRef S, struct DisassembleInfo *info) {
5017   uint32_t left, offset, swift_version;
5018   uint64_t p;
5019   struct objc_image_info64 o;
5020   const char *r;
5021
5022   if (S == SectionRef())
5023     return;
5024
5025   StringRef SectName;
5026   S.getName(SectName);
5027   DataRefImpl Ref = S.getRawDataRefImpl();
5028   StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
5029   outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5030   p = S.getAddress();
5031   r = get_pointer_64(p, offset, left, S, info);
5032   if (r == nullptr)
5033     return;
5034   memset(&o, '\0', sizeof(struct objc_image_info64));
5035   if (left < sizeof(struct objc_image_info64)) {
5036     memcpy(&o, r, left);
5037     outs() << "   (objc_image_info entends past the end of the section)\n";
5038   } else
5039     memcpy(&o, r, sizeof(struct objc_image_info64));
5040   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
5041     swapStruct(o);
5042   outs() << "  version " << o.version << "\n";
5043   outs() << "    flags " << format("0x%" PRIx32, o.flags);
5044   if (o.flags & OBJC_IMAGE_IS_REPLACEMENT)
5045     outs() << " OBJC_IMAGE_IS_REPLACEMENT";
5046   if (o.flags & OBJC_IMAGE_SUPPORTS_GC)
5047     outs() << " OBJC_IMAGE_SUPPORTS_GC";
5048   swift_version = (o.flags >> 8) & 0xff;
5049   if (swift_version != 0) {
5050     if (swift_version == 1)
5051       outs() << " Swift 1.0";
5052     else if (swift_version == 2)
5053       outs() << " Swift 1.1";
5054     else
5055       outs() << " unknown future Swift version (" << swift_version << ")";
5056   }
5057   outs() << "\n";
5058 }
5059
5060 static void print_image_info32(SectionRef S, struct DisassembleInfo *info) {
5061   uint32_t left, offset, swift_version, p;
5062   struct objc_image_info32 o;
5063   const char *r;
5064
5065   StringRef SectName;
5066   S.getName(SectName);
5067   DataRefImpl Ref = S.getRawDataRefImpl();
5068   StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
5069   outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5070   p = S.getAddress();
5071   r = get_pointer_32(p, offset, left, S, info);
5072   if (r == nullptr)
5073     return;
5074   memset(&o, '\0', sizeof(struct objc_image_info32));
5075   if (left < sizeof(struct objc_image_info32)) {
5076     memcpy(&o, r, left);
5077     outs() << "   (objc_image_info entends past the end of the section)\n";
5078   } else
5079     memcpy(&o, r, sizeof(struct objc_image_info32));
5080   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
5081     swapStruct(o);
5082   outs() << "  version " << o.version << "\n";
5083   outs() << "    flags " << format("0x%" PRIx32, o.flags);
5084   if (o.flags & OBJC_IMAGE_IS_REPLACEMENT)
5085     outs() << " OBJC_IMAGE_IS_REPLACEMENT";
5086   if (o.flags & OBJC_IMAGE_SUPPORTS_GC)
5087     outs() << " OBJC_IMAGE_SUPPORTS_GC";
5088   swift_version = (o.flags >> 8) & 0xff;
5089   if (swift_version != 0) {
5090     if (swift_version == 1)
5091       outs() << " Swift 1.0";
5092     else if (swift_version == 2)
5093       outs() << " Swift 1.1";
5094     else
5095       outs() << " unknown future Swift version (" << swift_version << ")";
5096   }
5097   outs() << "\n";
5098 }
5099
5100 static void print_image_info(SectionRef S, struct DisassembleInfo *info) {
5101   uint32_t left, offset, p;
5102   struct imageInfo_t o;
5103   const char *r;
5104
5105   StringRef SectName;
5106   S.getName(SectName);
5107   DataRefImpl Ref = S.getRawDataRefImpl();
5108   StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
5109   outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5110   p = S.getAddress();
5111   r = get_pointer_32(p, offset, left, S, info);
5112   if (r == nullptr)
5113     return;
5114   memset(&o, '\0', sizeof(struct imageInfo_t));
5115   if (left < sizeof(struct imageInfo_t)) {
5116     memcpy(&o, r, left);
5117     outs() << " (imageInfo entends past the end of the section)\n";
5118   } else
5119     memcpy(&o, r, sizeof(struct imageInfo_t));
5120   if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
5121     swapStruct(o);
5122   outs() << "  version " << o.version << "\n";
5123   outs() << "    flags " << format("0x%" PRIx32, o.flags);
5124   if (o.flags & 0x1)
5125     outs() << "  F&C";
5126   if (o.flags & 0x2)
5127     outs() << " GC";
5128   if (o.flags & 0x4)
5129     outs() << " GC-only";
5130   else
5131     outs() << " RR";
5132   outs() << "\n";
5133 }
5134
5135 static void printObjc2_64bit_MetaData(MachOObjectFile *O, bool verbose) {
5136   SymbolAddressMap AddrMap;
5137   if (verbose)
5138     CreateSymbolAddressMap(O, &AddrMap);
5139
5140   std::vector<SectionRef> Sections;
5141   for (const SectionRef &Section : O->sections()) {
5142     StringRef SectName;
5143     Section.getName(SectName);
5144     Sections.push_back(Section);
5145   }
5146
5147   struct DisassembleInfo info;
5148   // Set up the block of info used by the Symbolizer call backs.
5149   info.verbose = verbose;
5150   info.O = O;
5151   info.AddrMap = &AddrMap;
5152   info.Sections = &Sections;
5153   info.class_name = nullptr;
5154   info.selector_name = nullptr;
5155   info.method = nullptr;
5156   info.demangled_name = nullptr;
5157   info.bindtable = nullptr;
5158   info.adrp_addr = 0;
5159   info.adrp_inst = 0;
5160
5161   info.depth = 0;
5162   SectionRef CL = get_section(O, "__OBJC2", "__class_list");
5163   if (CL == SectionRef())
5164     CL = get_section(O, "__DATA", "__objc_classlist");
5165   info.S = CL;
5166   walk_pointer_list_64("class", CL, O, &info, print_class64_t);
5167
5168   SectionRef CR = get_section(O, "__OBJC2", "__class_refs");
5169   if (CR == SectionRef())
5170     CR = get_section(O, "__DATA", "__objc_classrefs");
5171   info.S = CR;
5172   walk_pointer_list_64("class refs", CR, O, &info, nullptr);
5173
5174   SectionRef SR = get_section(O, "__OBJC2", "__super_refs");
5175   if (SR == SectionRef())
5176     SR = get_section(O, "__DATA", "__objc_superrefs");
5177   info.S = SR;
5178   walk_pointer_list_64("super refs", SR, O, &info, nullptr);
5179
5180   SectionRef CA = get_section(O, "__OBJC2", "__category_list");
5181   if (CA == SectionRef())
5182     CA = get_section(O, "__DATA", "__objc_catlist");
5183   info.S = CA;
5184   walk_pointer_list_64("category", CA, O, &info, print_category64_t);
5185
5186   SectionRef PL = get_section(O, "__OBJC2", "__protocol_list");
5187   if (PL == SectionRef())
5188     PL = get_section(O, "__DATA", "__objc_protolist");
5189   info.S = PL;
5190   walk_pointer_list_64("protocol", PL, O, &info, nullptr);
5191
5192   SectionRef MR = get_section(O, "__OBJC2", "__message_refs");
5193   if (MR == SectionRef())
5194     MR = get_section(O, "__DATA", "__objc_msgrefs");
5195   info.S = MR;
5196   print_message_refs64(MR, &info);
5197
5198   SectionRef II = get_section(O, "__OBJC2", "__image_info");
5199   if (II == SectionRef())
5200     II = get_section(O, "__DATA", "__objc_imageinfo");
5201   info.S = II;
5202   print_image_info64(II, &info);
5203
5204   if (info.bindtable != nullptr)
5205     delete info.bindtable;
5206 }
5207
5208 static void printObjc2_32bit_MetaData(MachOObjectFile *O, bool verbose) {
5209   SymbolAddressMap AddrMap;
5210   if (verbose)
5211     CreateSymbolAddressMap(O, &AddrMap);
5212
5213   std::vector<SectionRef> Sections;
5214   for (const SectionRef &Section : O->sections()) {
5215     StringRef SectName;
5216     Section.getName(SectName);
5217     Sections.push_back(Section);
5218   }
5219
5220   struct DisassembleInfo info;
5221   // Set up the block of info used by the Symbolizer call backs.
5222   info.verbose = verbose;
5223   info.O = O;
5224   info.AddrMap = &AddrMap;
5225   info.Sections = &Sections;
5226   info.class_name = nullptr;
5227   info.selector_name = nullptr;
5228   info.method = nullptr;
5229   info.demangled_name = nullptr;
5230   info.bindtable = nullptr;
5231   info.adrp_addr = 0;
5232   info.adrp_inst = 0;
5233
5234   const SectionRef CL = get_section(O, "__OBJC2", "__class_list");
5235   if (CL != SectionRef()) {
5236     info.S = CL;
5237     walk_pointer_list_32("class", CL, O, &info, print_class32_t);
5238   } else {
5239     const SectionRef CL = get_section(O, "__DATA", "__objc_classlist");
5240     info.S = CL;
5241     walk_pointer_list_32("class", CL, O, &info, print_class32_t);
5242   }
5243
5244   const SectionRef CR = get_section(O, "__OBJC2", "__class_refs");
5245   if (CR != SectionRef()) {
5246     info.S = CR;
5247     walk_pointer_list_32("class refs", CR, O, &info, nullptr);
5248   } else {
5249     const SectionRef CR = get_section(O, "__DATA", "__objc_classrefs");
5250     info.S = CR;
5251     walk_pointer_list_32("class refs", CR, O, &info, nullptr);
5252   }
5253
5254   const SectionRef SR = get_section(O, "__OBJC2", "__super_refs");
5255   if (SR != SectionRef()) {
5256     info.S = SR;
5257     walk_pointer_list_32("super refs", SR, O, &info, nullptr);
5258   } else {
5259     const SectionRef SR = get_section(O, "__DATA", "__objc_superrefs");
5260     info.S = SR;
5261     walk_pointer_list_32("super refs", SR, O, &info, nullptr);
5262   }
5263
5264   const SectionRef CA = get_section(O, "__OBJC2", "__category_list");
5265   if (CA != SectionRef()) {
5266     info.S = CA;
5267     walk_pointer_list_32("category", CA, O, &info, print_category32_t);
5268   } else {
5269     const SectionRef CA = get_section(O, "__DATA", "__objc_catlist");
5270     info.S = CA;
5271     walk_pointer_list_32("category", CA, O, &info, print_category32_t);
5272   }
5273
5274   const SectionRef PL = get_section(O, "__OBJC2", "__protocol_list");
5275   if (PL != SectionRef()) {
5276     info.S = PL;
5277     walk_pointer_list_32("protocol", PL, O, &info, nullptr);
5278   } else {
5279     const SectionRef PL = get_section(O, "__DATA", "__objc_protolist");
5280     info.S = PL;
5281     walk_pointer_list_32("protocol", PL, O, &info, nullptr);
5282   }
5283
5284   const SectionRef MR = get_section(O, "__OBJC2", "__message_refs");
5285   if (MR != SectionRef()) {
5286     info.S = MR;
5287     print_message_refs32(MR, &info);
5288   } else {
5289     const SectionRef MR = get_section(O, "__DATA", "__objc_msgrefs");
5290     info.S = MR;
5291     print_message_refs32(MR, &info);
5292   }
5293
5294   const SectionRef II = get_section(O, "__OBJC2", "__image_info");
5295   if (II != SectionRef()) {
5296     info.S = II;
5297     print_image_info32(II, &info);
5298   } else {
5299     const SectionRef II = get_section(O, "__DATA", "__objc_imageinfo");
5300     info.S = II;
5301     print_image_info32(II, &info);
5302   }
5303 }
5304
5305 static bool printObjc1_32bit_MetaData(MachOObjectFile *O, bool verbose) {
5306   uint32_t i, j, p, offset, xoffset, left, defs_left, def;
5307   const char *r, *name, *defs;
5308   struct objc_module_t module;
5309   SectionRef S, xS;
5310   struct objc_symtab_t symtab;
5311   struct objc_class_t objc_class;
5312   struct objc_category_t objc_category;
5313
5314   outs() << "Objective-C segment\n";
5315   S = get_section(O, "__OBJC", "__module_info");
5316   if (S == SectionRef())
5317     return false;
5318
5319   SymbolAddressMap AddrMap;
5320   if (verbose)
5321     CreateSymbolAddressMap(O, &AddrMap);
5322
5323   std::vector<SectionRef> Sections;
5324   for (const SectionRef &Section : O->sections()) {
5325     StringRef SectName;
5326     Section.getName(SectName);
5327     Sections.push_back(Section);
5328   }
5329
5330   struct DisassembleInfo info;
5331   // Set up the block of info used by the Symbolizer call backs.
5332   info.verbose = verbose;
5333   info.O = O;
5334   info.AddrMap = &AddrMap;
5335   info.Sections = &Sections;
5336   info.class_name = nullptr;
5337   info.selector_name = nullptr;
5338   info.method = nullptr;
5339   info.demangled_name = nullptr;
5340   info.bindtable = nullptr;
5341   info.adrp_addr = 0;
5342   info.adrp_inst = 0;
5343
5344   for (i = 0; i < S.getSize(); i += sizeof(struct objc_module_t)) {
5345     p = S.getAddress() + i;
5346     r = get_pointer_32(p, offset, left, S, &info, true);
5347     if (r == nullptr)
5348       return true;
5349     memset(&module, '\0', sizeof(struct objc_module_t));
5350     if (left < sizeof(struct objc_module_t)) {
5351       memcpy(&module, r, left);
5352       outs() << "   (module extends past end of __module_info section)\n";
5353     } else
5354       memcpy(&module, r, sizeof(struct objc_module_t));
5355     if (O->isLittleEndian() != sys::IsLittleEndianHost)
5356       swapStruct(module);
5357
5358     outs() << "Module " << format("0x%" PRIx32, p) << "\n";
5359     outs() << "    version " << module.version << "\n";
5360     outs() << "       size " << module.size << "\n";
5361     outs() << "       name ";
5362     name = get_pointer_32(module.name, xoffset, left, xS, &info, true);
5363     if (name != nullptr)
5364       outs() << format("%.*s", left, name);
5365     else
5366       outs() << format("0x%08" PRIx32, module.name)
5367              << "(not in an __OBJC section)";
5368     outs() << "\n";
5369
5370     r = get_pointer_32(module.symtab, xoffset, left, xS, &info, true);
5371     if (module.symtab == 0 || r == nullptr) {
5372       outs() << "     symtab " << format("0x%08" PRIx32, module.symtab)
5373              << " (not in an __OBJC section)\n";
5374       continue;
5375     }
5376     outs() << "     symtab " << format("0x%08" PRIx32, module.symtab) << "\n";
5377     memset(&symtab, '\0', sizeof(struct objc_symtab_t));
5378     defs_left = 0;
5379     defs = nullptr;
5380     if (left < sizeof(struct objc_symtab_t)) {
5381       memcpy(&symtab, r, left);
5382       outs() << "\tsymtab extends past end of an __OBJC section)\n";
5383     } else {
5384       memcpy(&symtab, r, sizeof(struct objc_symtab_t));
5385       if (left > sizeof(struct objc_symtab_t)) {
5386         defs_left = left - sizeof(struct objc_symtab_t);
5387         defs = r + sizeof(struct objc_symtab_t);
5388       }
5389     }
5390     if (O->isLittleEndian() != sys::IsLittleEndianHost)
5391       swapStruct(symtab);
5392
5393     outs() << "\tsel_ref_cnt " << symtab.sel_ref_cnt << "\n";
5394     r = get_pointer_32(symtab.refs, xoffset, left, xS, &info, true);
5395     outs() << "\trefs " << format("0x%08" PRIx32, symtab.refs);
5396     if (r == nullptr)
5397       outs() << " (not in an __OBJC section)";
5398     outs() << "\n";
5399     outs() << "\tcls_def_cnt " << symtab.cls_def_cnt << "\n";
5400     outs() << "\tcat_def_cnt " << symtab.cat_def_cnt << "\n";
5401     if (symtab.cls_def_cnt > 0)
5402       outs() << "\tClass Definitions\n";
5403     for (j = 0; j < symtab.cls_def_cnt; j++) {
5404       if ((j + 1) * sizeof(uint32_t) > defs_left) {
5405         outs() << "\t(remaining class defs entries entends past the end of the "
5406                << "section)\n";
5407         break;
5408       }
5409       memcpy(&def, defs + j * sizeof(uint32_t), sizeof(uint32_t));
5410       if (O->isLittleEndian() != sys::IsLittleEndianHost)
5411         sys::swapByteOrder(def);
5412
5413       r = get_pointer_32(def, xoffset, left, xS, &info, true);
5414       outs() << "\tdefs[" << j << "] " << format("0x%08" PRIx32, def);
5415       if (r != nullptr) {
5416         if (left > sizeof(struct objc_class_t)) {
5417           outs() << "\n";
5418           memcpy(&objc_class, r, sizeof(struct objc_class_t));
5419         } else {
5420           outs() << " (entends past the end of the section)\n";
5421           memset(&objc_class, '\0', sizeof(struct objc_class_t));
5422           memcpy(&objc_class, r, left);
5423         }
5424         if (O->isLittleEndian() != sys::IsLittleEndianHost)
5425           swapStruct(objc_class);
5426         print_objc_class_t(&objc_class, &info);
5427       } else {
5428         outs() << "(not in an __OBJC section)\n";
5429       }
5430
5431       if (CLS_GETINFO(&objc_class, CLS_CLASS)) {
5432         outs() << "\tMeta Class";
5433         r = get_pointer_32(objc_class.isa, xoffset, left, xS, &info, true);
5434         if (r != nullptr) {
5435           if (left > sizeof(struct objc_class_t)) {
5436             outs() << "\n";
5437             memcpy(&objc_class, r, sizeof(struct objc_class_t));
5438           } else {
5439             outs() << " (entends past the end of the section)\n";
5440             memset(&objc_class, '\0', sizeof(struct objc_class_t));
5441             memcpy(&objc_class, r, left);
5442           }
5443           if (O->isLittleEndian() != sys::IsLittleEndianHost)
5444             swapStruct(objc_class);
5445           print_objc_class_t(&objc_class, &info);
5446         } else {
5447           outs() << "(not in an __OBJC section)\n";
5448         }
5449       }
5450     }
5451     if (symtab.cat_def_cnt > 0)
5452       outs() << "\tCategory Definitions\n";
5453     for (j = 0; j < symtab.cat_def_cnt; j++) {
5454       if ((j + symtab.cls_def_cnt + 1) * sizeof(uint32_t) > defs_left) {
5455         outs() << "\t(remaining category defs entries entends past the end of "
5456                << "the section)\n";
5457         break;
5458       }
5459       memcpy(&def, defs + (j + symtab.cls_def_cnt) * sizeof(uint32_t),
5460              sizeof(uint32_t));
5461       if (O->isLittleEndian() != sys::IsLittleEndianHost)
5462         sys::swapByteOrder(def);
5463
5464       r = get_pointer_32(def, xoffset, left, xS, &info, true);
5465       outs() << "\tdefs[" << j + symtab.cls_def_cnt << "] "
5466              << format("0x%08" PRIx32, def);
5467       if (r != nullptr) {
5468         if (left > sizeof(struct objc_category_t)) {
5469           outs() << "\n";
5470           memcpy(&objc_category, r, sizeof(struct objc_category_t));
5471         } else {
5472           outs() << " (entends past the end of the section)\n";
5473           memset(&objc_category, '\0', sizeof(struct objc_category_t));
5474           memcpy(&objc_category, r, left);
5475         }
5476         if (O->isLittleEndian() != sys::IsLittleEndianHost)
5477           swapStruct(objc_category);
5478         print_objc_objc_category_t(&objc_category, &info);
5479       } else {
5480         outs() << "(not in an __OBJC section)\n";
5481       }
5482     }
5483   }
5484   const SectionRef II = get_section(O, "__OBJC", "__image_info");
5485   if (II != SectionRef())
5486     print_image_info(II, &info);
5487
5488   return true;
5489 }
5490
5491 static void DumpProtocolSection(MachOObjectFile *O, const char *sect,
5492                                 uint32_t size, uint32_t addr) {
5493   SymbolAddressMap AddrMap;
5494   CreateSymbolAddressMap(O, &AddrMap);
5495
5496   std::vector<SectionRef> Sections;
5497   for (const SectionRef &Section : O->sections()) {
5498     StringRef SectName;
5499     Section.getName(SectName);
5500     Sections.push_back(Section);
5501   }
5502
5503   struct DisassembleInfo info;
5504   // Set up the block of info used by the Symbolizer call backs.
5505   info.verbose = true;
5506   info.O = O;
5507   info.AddrMap = &AddrMap;
5508   info.Sections = &Sections;
5509   info.class_name = nullptr;
5510   info.selector_name = nullptr;
5511   info.method = nullptr;
5512   info.demangled_name = nullptr;
5513   info.bindtable = nullptr;
5514   info.adrp_addr = 0;
5515   info.adrp_inst = 0;
5516
5517   const char *p;
5518   struct objc_protocol_t protocol;
5519   uint32_t left, paddr;
5520   for (p = sect; p < sect + size; p += sizeof(struct objc_protocol_t)) {
5521     memset(&protocol, '\0', sizeof(struct objc_protocol_t));
5522     left = size - (p - sect);
5523     if (left < sizeof(struct objc_protocol_t)) {
5524       outs() << "Protocol extends past end of __protocol section\n";
5525       memcpy(&protocol, p, left);
5526     } else
5527       memcpy(&protocol, p, sizeof(struct objc_protocol_t));
5528     if (O->isLittleEndian() != sys::IsLittleEndianHost)
5529       swapStruct(protocol);
5530     paddr = addr + (p - sect);
5531     outs() << "Protocol " << format("0x%" PRIx32, paddr);
5532     if (print_protocol(paddr, 0, &info))
5533       outs() << "(not in an __OBJC section)\n";
5534   }
5535 }
5536
5537 static void printObjcMetaData(MachOObjectFile *O, bool verbose) {
5538   if (O->is64Bit())
5539     printObjc2_64bit_MetaData(O, verbose);
5540   else {
5541     MachO::mach_header H;
5542     H = O->getHeader();
5543     if (H.cputype == MachO::CPU_TYPE_ARM)
5544       printObjc2_32bit_MetaData(O, verbose);
5545     else {
5546       // This is the 32-bit non-arm cputype case.  Which is normally
5547       // the first Objective-C ABI.  But it may be the case of a
5548       // binary for the iOS simulator which is the second Objective-C
5549       // ABI.  In that case printObjc1_32bit_MetaData() will determine that
5550       // and return false.
5551       if (!printObjc1_32bit_MetaData(O, verbose))
5552         printObjc2_32bit_MetaData(O, verbose);
5553     }
5554   }
5555 }
5556
5557 // GuessLiteralPointer returns a string which for the item in the Mach-O file
5558 // for the address passed in as ReferenceValue for printing as a comment with
5559 // the instruction and also returns the corresponding type of that item
5560 // indirectly through ReferenceType.
5561 //
5562 // If ReferenceValue is an address of literal cstring then a pointer to the
5563 // cstring is returned and ReferenceType is set to
5564 // LLVMDisassembler_ReferenceType_Out_LitPool_CstrAddr .
5565 //
5566 // If ReferenceValue is an address of an Objective-C CFString, Selector ref or
5567 // Class ref that name is returned and the ReferenceType is set accordingly.
5568 //
5569 // Lastly, literals which are Symbol address in a literal pool are looked for
5570 // and if found the symbol name is returned and ReferenceType is set to
5571 // LLVMDisassembler_ReferenceType_Out_LitPool_SymAddr .
5572 //
5573 // If there is no item in the Mach-O file for the address passed in as
5574 // ReferenceValue nullptr is returned and ReferenceType is unchanged.
5575 static const char *GuessLiteralPointer(uint64_t ReferenceValue,
5576                                        uint64_t ReferencePC,
5577                                        uint64_t *ReferenceType,
5578                                        struct DisassembleInfo *info) {
5579   // First see if there is an external relocation entry at the ReferencePC.
5580   if (info->O->getHeader().filetype == MachO::MH_OBJECT) {
5581     uint64_t sect_addr = info->S.getAddress();
5582     uint64_t sect_offset = ReferencePC - sect_addr;
5583     bool reloc_found = false;
5584     DataRefImpl Rel;
5585     MachO::any_relocation_info RE;
5586     bool isExtern = false;
5587     SymbolRef Symbol;
5588     for (const RelocationRef &Reloc : info->S.relocations()) {
5589       uint64_t RelocOffset = Reloc.getOffset();
5590       if (RelocOffset == sect_offset) {
5591         Rel = Reloc.getRawDataRefImpl();
5592         RE = info->O->getRelocation(Rel);
5593         if (info->O->isRelocationScattered(RE))
5594           continue;
5595         isExtern = info->O->getPlainRelocationExternal(RE);
5596         if (isExtern) {
5597           symbol_iterator RelocSym = Reloc.getSymbol();
5598           Symbol = *RelocSym;
5599         }
5600         reloc_found = true;
5601         break;
5602       }
5603     }
5604     // If there is an external relocation entry for a symbol in a section
5605     // then used that symbol's value for the value of the reference.
5606     if (reloc_found && isExtern) {
5607       if (info->O->getAnyRelocationPCRel(RE)) {
5608         unsigned Type = info->O->getAnyRelocationType(RE);
5609         if (Type == MachO::X86_64_RELOC_SIGNED) {
5610           ReferenceValue = Symbol.getValue();
5611         }
5612       }
5613     }
5614   }
5615
5616   // Look for literals such as Objective-C CFStrings refs, Selector refs,
5617   // Message refs and Class refs.
5618   bool classref, selref, msgref, cfstring;
5619   uint64_t pointer_value = GuessPointerPointer(ReferenceValue, info, classref,
5620                                                selref, msgref, cfstring);
5621   if (classref && pointer_value == 0) {
5622     // Note the ReferenceValue is a pointer into the __objc_classrefs section.
5623     // And the pointer_value in that section is typically zero as it will be
5624     // set by dyld as part of the "bind information".
5625     const char *name = get_dyld_bind_info_symbolname(ReferenceValue, info);
5626     if (name != nullptr) {
5627       *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Class_Ref;
5628       const char *class_name = strrchr(name, '$');
5629       if (class_name != nullptr && class_name[1] == '_' &&
5630           class_name[2] != '\0') {
5631         info->class_name = class_name + 2;
5632         return name;
5633       }
5634     }
5635   }
5636
5637   if (classref) {
5638     *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Class_Ref;
5639     const char *name =
5640         get_objc2_64bit_class_name(pointer_value, ReferenceValue, info);
5641     if (name != nullptr)
5642       info->class_name = name;
5643     else
5644       name = "bad class ref";
5645     return name;
5646   }
5647
5648   if (cfstring) {
5649     *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_CFString_Ref;
5650     const char *name = get_objc2_64bit_cfstring_name(ReferenceValue, info);
5651     return name;
5652   }
5653
5654   if (selref && pointer_value == 0)
5655     pointer_value = get_objc2_64bit_selref(ReferenceValue, info);
5656
5657   if (pointer_value != 0)
5658     ReferenceValue = pointer_value;
5659
5660   const char *name = GuessCstringPointer(ReferenceValue, info);
5661   if (name) {
5662     if (pointer_value != 0 && selref) {
5663       *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Selector_Ref;
5664       info->selector_name = name;
5665     } else if (pointer_value != 0 && msgref) {
5666       info->class_name = nullptr;
5667       *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message_Ref;
5668       info->selector_name = name;
5669     } else
5670       *ReferenceType = LLVMDisassembler_ReferenceType_Out_LitPool_CstrAddr;
5671     return name;
5672   }
5673
5674   // Lastly look for an indirect symbol with this ReferenceValue which is in
5675   // a literal pool.  If found return that symbol name.
5676   name = GuessIndirectSymbol(ReferenceValue, info);
5677   if (name) {
5678     *ReferenceType = LLVMDisassembler_ReferenceType_Out_LitPool_SymAddr;
5679     return name;
5680   }
5681
5682   return nullptr;
5683 }
5684
5685 // SymbolizerSymbolLookUp is the symbol lookup function passed when creating
5686 // the Symbolizer.  It looks up the ReferenceValue using the info passed via the
5687 // pointer to the struct DisassembleInfo that was passed when MCSymbolizer
5688 // is created and returns the symbol name that matches the ReferenceValue or
5689 // nullptr if none.  The ReferenceType is passed in for the IN type of
5690 // reference the instruction is making from the values in defined in the header
5691 // "llvm-c/Disassembler.h".  On return the ReferenceType can set to a specific
5692 // Out type and the ReferenceName will also be set which is added as a comment
5693 // to the disassembled instruction.
5694 //
5695 #if HAVE_CXXABI_H
5696 // If the symbol name is a C++ mangled name then the demangled name is
5697 // returned through ReferenceName and ReferenceType is set to
5698 // LLVMDisassembler_ReferenceType_DeMangled_Name .
5699 #endif
5700 //
5701 // When this is called to get a symbol name for a branch target then the
5702 // ReferenceType will be LLVMDisassembler_ReferenceType_In_Branch and then
5703 // SymbolValue will be looked for in the indirect symbol table to determine if
5704 // it is an address for a symbol stub.  If so then the symbol name for that
5705 // stub is returned indirectly through ReferenceName and then ReferenceType is
5706 // set to LLVMDisassembler_ReferenceType_Out_SymbolStub.
5707 //
5708 // When this is called with an value loaded via a PC relative load then
5709 // ReferenceType will be LLVMDisassembler_ReferenceType_In_PCrel_Load then the
5710 // SymbolValue is checked to be an address of literal pointer, symbol pointer,
5711 // or an Objective-C meta data reference.  If so the output ReferenceType is
5712 // set to correspond to that as well as setting the ReferenceName.
5713 static const char *SymbolizerSymbolLookUp(void *DisInfo,
5714                                           uint64_t ReferenceValue,
5715                                           uint64_t *ReferenceType,
5716                                           uint64_t ReferencePC,
5717                                           const char **ReferenceName) {
5718   struct DisassembleInfo *info = (struct DisassembleInfo *)DisInfo;
5719   // If no verbose symbolic information is wanted then just return nullptr.
5720   if (!info->verbose) {
5721     *ReferenceName = nullptr;
5722     *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5723     return nullptr;
5724   }
5725
5726   const char *SymbolName = GuessSymbolName(ReferenceValue, info->AddrMap);
5727
5728   if (*ReferenceType == LLVMDisassembler_ReferenceType_In_Branch) {
5729     *ReferenceName = GuessIndirectSymbol(ReferenceValue, info);
5730     if (*ReferenceName != nullptr) {
5731       method_reference(info, ReferenceType, ReferenceName);
5732       if (*ReferenceType != LLVMDisassembler_ReferenceType_Out_Objc_Message)
5733         *ReferenceType = LLVMDisassembler_ReferenceType_Out_SymbolStub;
5734     } else
5735 #if HAVE_CXXABI_H
5736         if (SymbolName != nullptr && strncmp(SymbolName, "__Z", 3) == 0) {
5737       if (info->demangled_name != nullptr)
5738         free(info->demangled_name);
5739       int status;
5740       info->demangled_name =
5741           abi::__cxa_demangle(SymbolName + 1, nullptr, nullptr, &status);
5742       if (info->demangled_name != nullptr) {
5743         *ReferenceName = info->demangled_name;
5744         *ReferenceType = LLVMDisassembler_ReferenceType_DeMangled_Name;
5745       } else
5746         *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5747     } else
5748 #endif
5749       *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5750   } else if (*ReferenceType == LLVMDisassembler_ReferenceType_In_PCrel_Load) {
5751     *ReferenceName =
5752         GuessLiteralPointer(ReferenceValue, ReferencePC, ReferenceType, info);
5753     if (*ReferenceName)
5754       method_reference(info, ReferenceType, ReferenceName);
5755     else
5756       *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5757     // If this is arm64 and the reference is an adrp instruction save the
5758     // instruction, passed in ReferenceValue and the address of the instruction
5759     // for use later if we see and add immediate instruction.
5760   } else if (info->O->getArch() == Triple::aarch64 &&
5761              *ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_ADRP) {
5762     info->adrp_inst = ReferenceValue;
5763     info->adrp_addr = ReferencePC;
5764     SymbolName = nullptr;
5765     *ReferenceName = nullptr;
5766     *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5767     // If this is arm64 and reference is an add immediate instruction and we
5768     // have
5769     // seen an adrp instruction just before it and the adrp's Xd register
5770     // matches
5771     // this add's Xn register reconstruct the value being referenced and look to
5772     // see if it is a literal pointer.  Note the add immediate instruction is
5773     // passed in ReferenceValue.
5774   } else if (info->O->getArch() == Triple::aarch64 &&
5775              *ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_ADDXri &&
5776              ReferencePC - 4 == info->adrp_addr &&
5777              (info->adrp_inst & 0x9f000000) == 0x90000000 &&
5778              (info->adrp_inst & 0x1f) == ((ReferenceValue >> 5) & 0x1f)) {
5779     uint32_t addxri_inst;
5780     uint64_t adrp_imm, addxri_imm;
5781
5782     adrp_imm =
5783         ((info->adrp_inst & 0x00ffffe0) >> 3) | ((info->adrp_inst >> 29) & 0x3);
5784     if (info->adrp_inst & 0x0200000)
5785       adrp_imm |= 0xfffffffffc000000LL;
5786
5787     addxri_inst = ReferenceValue;
5788     addxri_imm = (addxri_inst >> 10) & 0xfff;
5789     if (((addxri_inst >> 22) & 0x3) == 1)
5790       addxri_imm <<= 12;
5791
5792     ReferenceValue = (info->adrp_addr & 0xfffffffffffff000LL) +
5793                      (adrp_imm << 12) + addxri_imm;
5794
5795     *ReferenceName =
5796         GuessLiteralPointer(ReferenceValue, ReferencePC, ReferenceType, info);
5797     if (*ReferenceName == nullptr)
5798       *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5799     // If this is arm64 and the reference is a load register instruction and we
5800     // have seen an adrp instruction just before it and the adrp's Xd register
5801     // matches this add's Xn register reconstruct the value being referenced and
5802     // look to see if it is a literal pointer.  Note the load register
5803     // instruction is passed in ReferenceValue.
5804   } else if (info->O->getArch() == Triple::aarch64 &&
5805              *ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_LDRXui &&
5806              ReferencePC - 4 == info->adrp_addr &&
5807              (info->adrp_inst & 0x9f000000) == 0x90000000 &&
5808              (info->adrp_inst & 0x1f) == ((ReferenceValue >> 5) & 0x1f)) {
5809     uint32_t ldrxui_inst;
5810     uint64_t adrp_imm, ldrxui_imm;
5811
5812     adrp_imm =
5813         ((info->adrp_inst & 0x00ffffe0) >> 3) | ((info->adrp_inst >> 29) & 0x3);
5814     if (info->adrp_inst & 0x0200000)
5815       adrp_imm |= 0xfffffffffc000000LL;
5816
5817     ldrxui_inst = ReferenceValue;
5818     ldrxui_imm = (ldrxui_inst >> 10) & 0xfff;
5819
5820     ReferenceValue = (info->adrp_addr & 0xfffffffffffff000LL) +
5821                      (adrp_imm << 12) + (ldrxui_imm << 3);
5822
5823     *ReferenceName =
5824         GuessLiteralPointer(ReferenceValue, ReferencePC, ReferenceType, info);
5825     if (*ReferenceName == nullptr)
5826       *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5827   }
5828   // If this arm64 and is an load register (PC-relative) instruction the
5829   // ReferenceValue is the PC plus the immediate value.
5830   else if (info->O->getArch() == Triple::aarch64 &&
5831            (*ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_LDRXl ||
5832             *ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_ADR)) {
5833     *ReferenceName =
5834         GuessLiteralPointer(ReferenceValue, ReferencePC, ReferenceType, info);
5835     if (*ReferenceName == nullptr)
5836       *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5837   }
5838 #if HAVE_CXXABI_H
5839   else if (SymbolName != nullptr && strncmp(SymbolName, "__Z", 3) == 0) {
5840     if (info->demangled_name != nullptr)
5841       free(info->demangled_name);
5842     int status;
5843     info->demangled_name =
5844         abi::__cxa_demangle(SymbolName + 1, nullptr, nullptr, &status);
5845     if (info->demangled_name != nullptr) {
5846       *ReferenceName = info->demangled_name;
5847       *ReferenceType = LLVMDisassembler_ReferenceType_DeMangled_Name;
5848     }
5849   }
5850 #endif
5851   else {
5852     *ReferenceName = nullptr;
5853     *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5854   }
5855
5856   return SymbolName;
5857 }
5858
5859 /// \brief Emits the comments that are stored in the CommentStream.
5860 /// Each comment in the CommentStream must end with a newline.
5861 static void emitComments(raw_svector_ostream &CommentStream,
5862                          SmallString<128> &CommentsToEmit,
5863                          formatted_raw_ostream &FormattedOS,
5864                          const MCAsmInfo &MAI) {
5865   // Flush the stream before taking its content.
5866   StringRef Comments = CommentsToEmit.str();
5867   // Get the default information for printing a comment.
5868   const char *CommentBegin = MAI.getCommentString();
5869   unsigned CommentColumn = MAI.getCommentColumn();
5870   bool IsFirst = true;
5871   while (!Comments.empty()) {
5872     if (!IsFirst)
5873       FormattedOS << '\n';
5874     // Emit a line of comments.
5875     FormattedOS.PadToColumn(CommentColumn);
5876     size_t Position = Comments.find('\n');
5877     FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position);
5878     // Move after the newline character.
5879     Comments = Comments.substr(Position + 1);
5880     IsFirst = false;
5881   }
5882   FormattedOS.flush();
5883
5884   // Tell the comment stream that the vector changed underneath it.
5885   CommentsToEmit.clear();
5886 }
5887
5888 static void DisassembleMachO(StringRef Filename, MachOObjectFile *MachOOF,
5889                              StringRef DisSegName, StringRef DisSectName) {
5890   const char *McpuDefault = nullptr;
5891   const Target *ThumbTarget = nullptr;
5892   const Target *TheTarget = GetTarget(MachOOF, &McpuDefault, &ThumbTarget);
5893   if (!TheTarget) {
5894     // GetTarget prints out stuff.
5895     return;
5896   }
5897   if (MCPU.empty() && McpuDefault)
5898     MCPU = McpuDefault;
5899
5900   std::unique_ptr<const MCInstrInfo> InstrInfo(TheTarget->createMCInstrInfo());
5901   std::unique_ptr<const MCInstrInfo> ThumbInstrInfo;
5902   if (ThumbTarget)
5903     ThumbInstrInfo.reset(ThumbTarget->createMCInstrInfo());
5904
5905   // Package up features to be passed to target/subtarget
5906   std::string FeaturesStr;
5907   if (MAttrs.size()) {
5908     SubtargetFeatures Features;
5909     for (unsigned i = 0; i != MAttrs.size(); ++i)
5910       Features.AddFeature(MAttrs[i]);
5911     FeaturesStr = Features.getString();
5912   }
5913
5914   // Set up disassembler.
5915   std::unique_ptr<const MCRegisterInfo> MRI(
5916       TheTarget->createMCRegInfo(TripleName));
5917   std::unique_ptr<const MCAsmInfo> AsmInfo(
5918       TheTarget->createMCAsmInfo(*MRI, TripleName));
5919   std::unique_ptr<const MCSubtargetInfo> STI(
5920       TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr));
5921   MCContext Ctx(AsmInfo.get(), MRI.get(), nullptr);
5922   std::unique_ptr<MCDisassembler> DisAsm(
5923       TheTarget->createMCDisassembler(*STI, Ctx));
5924   std::unique_ptr<MCSymbolizer> Symbolizer;
5925   struct DisassembleInfo SymbolizerInfo;
5926   std::unique_ptr<MCRelocationInfo> RelInfo(
5927       TheTarget->createMCRelocationInfo(TripleName, Ctx));
5928   if (RelInfo) {
5929     Symbolizer.reset(TheTarget->createMCSymbolizer(
5930         TripleName, SymbolizerGetOpInfo, SymbolizerSymbolLookUp,
5931         &SymbolizerInfo, &Ctx, std::move(RelInfo)));
5932     DisAsm->setSymbolizer(std::move(Symbolizer));
5933   }
5934   int AsmPrinterVariant = AsmInfo->getAssemblerDialect();
5935   std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter(
5936       Triple(TripleName), AsmPrinterVariant, *AsmInfo, *InstrInfo, *MRI));
5937   // Set the display preference for hex vs. decimal immediates.
5938   IP->setPrintImmHex(PrintImmHex);
5939   // Comment stream and backing vector.
5940   SmallString<128> CommentsToEmit;
5941   raw_svector_ostream CommentStream(CommentsToEmit);
5942   // FIXME: Setting the CommentStream in the InstPrinter is problematic in that
5943   // if it is done then arm64 comments for string literals don't get printed
5944   // and some constant get printed instead and not setting it causes intel
5945   // (32-bit and 64-bit) comments printed with different spacing before the
5946   // comment causing different diffs with the 'C' disassembler library API.
5947   // IP->setCommentStream(CommentStream);
5948
5949   if (!AsmInfo || !STI || !DisAsm || !IP) {
5950     errs() << "error: couldn't initialize disassembler for target "
5951            << TripleName << '\n';
5952     return;
5953   }
5954
5955   // Set up thumb disassembler.
5956   std::unique_ptr<const MCRegisterInfo> ThumbMRI;
5957   std::unique_ptr<const MCAsmInfo> ThumbAsmInfo;
5958   std::unique_ptr<const MCSubtargetInfo> ThumbSTI;
5959   std::unique_ptr<MCDisassembler> ThumbDisAsm;
5960   std::unique_ptr<MCInstPrinter> ThumbIP;
5961   std::unique_ptr<MCContext> ThumbCtx;
5962   std::unique_ptr<MCSymbolizer> ThumbSymbolizer;
5963   struct DisassembleInfo ThumbSymbolizerInfo;
5964   std::unique_ptr<MCRelocationInfo> ThumbRelInfo;
5965   if (ThumbTarget) {
5966     ThumbMRI.reset(ThumbTarget->createMCRegInfo(ThumbTripleName));
5967     ThumbAsmInfo.reset(
5968         ThumbTarget->createMCAsmInfo(*ThumbMRI, ThumbTripleName));
5969     ThumbSTI.reset(
5970         ThumbTarget->createMCSubtargetInfo(ThumbTripleName, MCPU, FeaturesStr));
5971     ThumbCtx.reset(new MCContext(ThumbAsmInfo.get(), ThumbMRI.get(), nullptr));
5972     ThumbDisAsm.reset(ThumbTarget->createMCDisassembler(*ThumbSTI, *ThumbCtx));
5973     MCContext *PtrThumbCtx = ThumbCtx.get();
5974     ThumbRelInfo.reset(
5975         ThumbTarget->createMCRelocationInfo(ThumbTripleName, *PtrThumbCtx));
5976     if (ThumbRelInfo) {
5977       ThumbSymbolizer.reset(ThumbTarget->createMCSymbolizer(
5978           ThumbTripleName, SymbolizerGetOpInfo, SymbolizerSymbolLookUp,
5979           &ThumbSymbolizerInfo, PtrThumbCtx, std::move(ThumbRelInfo)));
5980       ThumbDisAsm->setSymbolizer(std::move(ThumbSymbolizer));
5981     }
5982     int ThumbAsmPrinterVariant = ThumbAsmInfo->getAssemblerDialect();
5983     ThumbIP.reset(ThumbTarget->createMCInstPrinter(
5984         Triple(ThumbTripleName), ThumbAsmPrinterVariant, *ThumbAsmInfo,
5985         *ThumbInstrInfo, *ThumbMRI));
5986     // Set the display preference for hex vs. decimal immediates.
5987     ThumbIP->setPrintImmHex(PrintImmHex);
5988   }
5989
5990   if (ThumbTarget && (!ThumbAsmInfo || !ThumbSTI || !ThumbDisAsm || !ThumbIP)) {
5991     errs() << "error: couldn't initialize disassembler for target "
5992            << ThumbTripleName << '\n';
5993     return;
5994   }
5995
5996   MachO::mach_header Header = MachOOF->getHeader();
5997
5998   // FIXME: Using the -cfg command line option, this code used to be able to
5999   // annotate relocations with the referenced symbol's name, and if this was
6000   // inside a __[cf]string section, the data it points to. This is now replaced
6001   // by the upcoming MCSymbolizer, which needs the appropriate setup done above.
6002   std::vector<SectionRef> Sections;
6003   std::vector<SymbolRef> Symbols;
6004   SmallVector<uint64_t, 8> FoundFns;
6005   uint64_t BaseSegmentAddress;
6006
6007   getSectionsAndSymbols(MachOOF, Sections, Symbols, FoundFns,
6008                         BaseSegmentAddress);
6009
6010   // Sort the symbols by address, just in case they didn't come in that way.
6011   std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());
6012
6013   // Build a data in code table that is sorted on by the address of each entry.
6014   uint64_t BaseAddress = 0;
6015   if (Header.filetype == MachO::MH_OBJECT)
6016     BaseAddress = Sections[0].getAddress();
6017   else
6018     BaseAddress = BaseSegmentAddress;
6019   DiceTable Dices;
6020   for (dice_iterator DI = MachOOF->begin_dices(), DE = MachOOF->end_dices();
6021        DI != DE; ++DI) {
6022     uint32_t Offset;
6023     DI->getOffset(Offset);
6024     Dices.push_back(std::make_pair(BaseAddress + Offset, *DI));
6025   }
6026   array_pod_sort(Dices.begin(), Dices.end());
6027
6028 #ifndef NDEBUG
6029   raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls();
6030 #else
6031   raw_ostream &DebugOut = nulls();
6032 #endif
6033
6034   std::unique_ptr<DIContext> diContext;
6035   ObjectFile *DbgObj = MachOOF;
6036   // Try to find debug info and set up the DIContext for it.
6037   if (UseDbg) {
6038     // A separate DSym file path was specified, parse it as a macho file,
6039     // get the sections and supply it to the section name parsing machinery.
6040     if (!DSYMFile.empty()) {
6041       ErrorOr<std::unique_ptr<MemoryBuffer>> BufOrErr =
6042           MemoryBuffer::getFileOrSTDIN(DSYMFile);
6043       if (std::error_code EC = BufOrErr.getError()) {
6044         errs() << "llvm-objdump: " << Filename << ": " << EC.message() << '\n';
6045         return;
6046       }
6047       DbgObj =
6048           ObjectFile::createMachOObjectFile(BufOrErr.get()->getMemBufferRef())
6049               .get()
6050               .release();
6051     }
6052
6053     // Setup the DIContext
6054     diContext.reset(new DWARFContextInMemory(*DbgObj));
6055   }
6056
6057   if (FilterSections.size() == 0)
6058     outs() << "(" << DisSegName << "," << DisSectName << ") section\n";
6059
6060   for (unsigned SectIdx = 0; SectIdx != Sections.size(); SectIdx++) {
6061     StringRef SectName;
6062     if (Sections[SectIdx].getName(SectName) || SectName != DisSectName)
6063       continue;
6064
6065     DataRefImpl DR = Sections[SectIdx].getRawDataRefImpl();
6066
6067     StringRef SegmentName = MachOOF->getSectionFinalSegmentName(DR);
6068     if (SegmentName != DisSegName)
6069       continue;
6070
6071     StringRef BytesStr;
6072     Sections[SectIdx].getContents(BytesStr);
6073     ArrayRef<uint8_t> Bytes(reinterpret_cast<const uint8_t *>(BytesStr.data()),
6074                             BytesStr.size());
6075     uint64_t SectAddress = Sections[SectIdx].getAddress();
6076
6077     bool symbolTableWorked = false;
6078
6079     // Create a map of symbol addresses to symbol names for use by
6080     // the SymbolizerSymbolLookUp() routine.
6081     SymbolAddressMap AddrMap;
6082     bool DisSymNameFound = false;
6083     for (const SymbolRef &Symbol : MachOOF->symbols()) {
6084       SymbolRef::Type ST = Symbol.getType();
6085       if (ST == SymbolRef::ST_Function || ST == SymbolRef::ST_Data ||
6086           ST == SymbolRef::ST_Other) {
6087         uint64_t Address = Symbol.getValue();
6088         ErrorOr<StringRef> SymNameOrErr = Symbol.getName();
6089         if (std::error_code EC = SymNameOrErr.getError())
6090           report_fatal_error(EC.message());
6091         StringRef SymName = *SymNameOrErr;
6092         AddrMap[Address] = SymName;
6093         if (!DisSymName.empty() && DisSymName == SymName)
6094           DisSymNameFound = true;
6095       }
6096     }
6097     if (!DisSymName.empty() && !DisSymNameFound) {
6098       outs() << "Can't find -dis-symname: " << DisSymName << "\n";
6099       return;
6100     }
6101     // Set up the block of info used by the Symbolizer call backs.
6102     SymbolizerInfo.verbose = !NoSymbolicOperands;
6103     SymbolizerInfo.O = MachOOF;
6104     SymbolizerInfo.S = Sections[SectIdx];
6105     SymbolizerInfo.AddrMap = &AddrMap;
6106     SymbolizerInfo.Sections = &Sections;
6107     SymbolizerInfo.class_name = nullptr;
6108     SymbolizerInfo.selector_name = nullptr;
6109     SymbolizerInfo.method = nullptr;
6110     SymbolizerInfo.demangled_name = nullptr;
6111     SymbolizerInfo.bindtable = nullptr;
6112     SymbolizerInfo.adrp_addr = 0;
6113     SymbolizerInfo.adrp_inst = 0;
6114     // Same for the ThumbSymbolizer
6115     ThumbSymbolizerInfo.verbose = !NoSymbolicOperands;
6116     ThumbSymbolizerInfo.O = MachOOF;
6117     ThumbSymbolizerInfo.S = Sections[SectIdx];
6118     ThumbSymbolizerInfo.AddrMap = &AddrMap;
6119     ThumbSymbolizerInfo.Sections = &Sections;
6120     ThumbSymbolizerInfo.class_name = nullptr;
6121     ThumbSymbolizerInfo.selector_name = nullptr;
6122     ThumbSymbolizerInfo.method = nullptr;
6123     ThumbSymbolizerInfo.demangled_name = nullptr;
6124     ThumbSymbolizerInfo.bindtable = nullptr;
6125     ThumbSymbolizerInfo.adrp_addr = 0;
6126     ThumbSymbolizerInfo.adrp_inst = 0;
6127
6128     // Disassemble symbol by symbol.
6129     for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) {
6130       ErrorOr<StringRef> SymNameOrErr = Symbols[SymIdx].getName();
6131       if (std::error_code EC = SymNameOrErr.getError())
6132         report_fatal_error(EC.message());
6133       StringRef SymName = *SymNameOrErr;
6134
6135       SymbolRef::Type ST = Symbols[SymIdx].getType();
6136       if (ST != SymbolRef::ST_Function && ST != SymbolRef::ST_Data)
6137         continue;
6138
6139       // Make sure the symbol is defined in this section.
6140       bool containsSym = Sections[SectIdx].containsSymbol(Symbols[SymIdx]);
6141       if (!containsSym)
6142         continue;
6143
6144       // If we are only disassembling one symbol see if this is that symbol.
6145       if (!DisSymName.empty() && DisSymName != SymName)
6146         continue;
6147
6148       // Start at the address of the symbol relative to the section's address.
6149       uint64_t Start = Symbols[SymIdx].getValue();
6150       uint64_t SectionAddress = Sections[SectIdx].getAddress();
6151       Start -= SectionAddress;
6152
6153       // Stop disassembling either at the beginning of the next symbol or at
6154       // the end of the section.
6155       bool containsNextSym = false;
6156       uint64_t NextSym = 0;
6157       uint64_t NextSymIdx = SymIdx + 1;
6158       while (Symbols.size() > NextSymIdx) {
6159         SymbolRef::Type NextSymType = Symbols[NextSymIdx].getType();
6160         if (NextSymType == SymbolRef::ST_Function) {
6161           containsNextSym =
6162               Sections[SectIdx].containsSymbol(Symbols[NextSymIdx]);
6163           NextSym = Symbols[NextSymIdx].getValue();
6164           NextSym -= SectionAddress;
6165           break;
6166         }
6167         ++NextSymIdx;
6168       }
6169
6170       uint64_t SectSize = Sections[SectIdx].getSize();
6171       uint64_t End = containsNextSym ? NextSym : SectSize;
6172       uint64_t Size;
6173
6174       symbolTableWorked = true;
6175
6176       DataRefImpl Symb = Symbols[SymIdx].getRawDataRefImpl();
6177       bool isThumb =
6178           (MachOOF->getSymbolFlags(Symb) & SymbolRef::SF_Thumb) && ThumbTarget;
6179
6180       outs() << SymName << ":\n";
6181       DILineInfo lastLine;
6182       for (uint64_t Index = Start; Index < End; Index += Size) {
6183         MCInst Inst;
6184
6185         uint64_t PC = SectAddress + Index;
6186         if (!NoLeadingAddr) {
6187           if (FullLeadingAddr) {
6188             if (MachOOF->is64Bit())
6189               outs() << format("%016" PRIx64, PC);
6190             else
6191               outs() << format("%08" PRIx64, PC);
6192           } else {
6193             outs() << format("%8" PRIx64 ":", PC);
6194           }
6195         }
6196         if (!NoShowRawInsn)
6197           outs() << "\t";
6198
6199         // Check the data in code table here to see if this is data not an
6200         // instruction to be disassembled.
6201         DiceTable Dice;
6202         Dice.push_back(std::make_pair(PC, DiceRef()));
6203         dice_table_iterator DTI =
6204             std::search(Dices.begin(), Dices.end(), Dice.begin(), Dice.end(),
6205                         compareDiceTableEntries);
6206         if (DTI != Dices.end()) {
6207           uint16_t Length;
6208           DTI->second.getLength(Length);
6209           uint16_t Kind;
6210           DTI->second.getKind(Kind);
6211           Size = DumpDataInCode(Bytes.data() + Index, Length, Kind);
6212           if ((Kind == MachO::DICE_KIND_JUMP_TABLE8) &&
6213               (PC == (DTI->first + Length - 1)) && (Length & 1))
6214             Size++;
6215           continue;
6216         }
6217
6218         SmallVector<char, 64> AnnotationsBytes;
6219         raw_svector_ostream Annotations(AnnotationsBytes);
6220
6221         bool gotInst;
6222         if (isThumb)
6223           gotInst = ThumbDisAsm->getInstruction(Inst, Size, Bytes.slice(Index),
6224                                                 PC, DebugOut, Annotations);
6225         else
6226           gotInst = DisAsm->getInstruction(Inst, Size, Bytes.slice(Index), PC,
6227                                            DebugOut, Annotations);
6228         if (gotInst) {
6229           if (!NoShowRawInsn) {
6230             dumpBytes(makeArrayRef(Bytes.data() + Index, Size), outs());
6231           }
6232           formatted_raw_ostream FormattedOS(outs());
6233           StringRef AnnotationsStr = Annotations.str();
6234           if (isThumb)
6235             ThumbIP->printInst(&Inst, FormattedOS, AnnotationsStr, *ThumbSTI);
6236           else
6237             IP->printInst(&Inst, FormattedOS, AnnotationsStr, *STI);
6238           emitComments(CommentStream, CommentsToEmit, FormattedOS, *AsmInfo);
6239
6240           // Print debug info.
6241           if (diContext) {
6242             DILineInfo dli = diContext->getLineInfoForAddress(PC);
6243             // Print valid line info if it changed.
6244             if (dli != lastLine && dli.Line != 0)
6245               outs() << "\t## " << dli.FileName << ':' << dli.Line << ':'
6246                      << dli.Column;
6247             lastLine = dli;
6248           }
6249           outs() << "\n";
6250         } else {
6251           unsigned int Arch = MachOOF->getArch();
6252           if (Arch == Triple::x86_64 || Arch == Triple::x86) {
6253             outs() << format("\t.byte 0x%02x #bad opcode\n",
6254                              *(Bytes.data() + Index) & 0xff);
6255             Size = 1; // skip exactly one illegible byte and move on.
6256           } else if (Arch == Triple::aarch64) {
6257             uint32_t opcode = (*(Bytes.data() + Index) & 0xff) |
6258                               (*(Bytes.data() + Index + 1) & 0xff) << 8 |
6259                               (*(Bytes.data() + Index + 2) & 0xff) << 16 |
6260                               (*(Bytes.data() + Index + 3) & 0xff) << 24;
6261             outs() << format("\t.long\t0x%08x\n", opcode);
6262             Size = 4;
6263           } else {
6264             errs() << "llvm-objdump: warning: invalid instruction encoding\n";
6265             if (Size == 0)
6266               Size = 1; // skip illegible bytes
6267           }
6268         }
6269       }
6270     }
6271     if (!symbolTableWorked) {
6272       // Reading the symbol table didn't work, disassemble the whole section.
6273       uint64_t SectAddress = Sections[SectIdx].getAddress();
6274       uint64_t SectSize = Sections[SectIdx].getSize();
6275       uint64_t InstSize;
6276       for (uint64_t Index = 0; Index < SectSize; Index += InstSize) {
6277         MCInst Inst;
6278
6279         uint64_t PC = SectAddress + Index;
6280         if (DisAsm->getInstruction(Inst, InstSize, Bytes.slice(Index), PC,
6281                                    DebugOut, nulls())) {
6282           if (!NoLeadingAddr) {
6283             if (FullLeadingAddr) {
6284               if (MachOOF->is64Bit())
6285                 outs() << format("%016" PRIx64, PC);
6286               else
6287                 outs() << format("%08" PRIx64, PC);
6288             } else {
6289               outs() << format("%8" PRIx64 ":", PC);
6290             }
6291           }
6292           if (!NoShowRawInsn) {
6293             outs() << "\t";
6294             dumpBytes(makeArrayRef(Bytes.data() + Index, InstSize), outs());
6295           }
6296           IP->printInst(&Inst, outs(), "", *STI);
6297           outs() << "\n";
6298         } else {
6299           unsigned int Arch = MachOOF->getArch();
6300           if (Arch == Triple::x86_64 || Arch == Triple::x86) {
6301             outs() << format("\t.byte 0x%02x #bad opcode\n",
6302                              *(Bytes.data() + Index) & 0xff);
6303             InstSize = 1; // skip exactly one illegible byte and move on.
6304           } else {
6305             errs() << "llvm-objdump: warning: invalid instruction encoding\n";
6306             if (InstSize == 0)
6307               InstSize = 1; // skip illegible bytes
6308           }
6309         }
6310       }
6311     }
6312     // The TripleName's need to be reset if we are called again for a different
6313     // archtecture.
6314     TripleName = "";
6315     ThumbTripleName = "";
6316
6317     if (SymbolizerInfo.method != nullptr)
6318       free(SymbolizerInfo.method);
6319     if (SymbolizerInfo.demangled_name != nullptr)
6320       free(SymbolizerInfo.demangled_name);
6321     if (SymbolizerInfo.bindtable != nullptr)
6322       delete SymbolizerInfo.bindtable;
6323     if (ThumbSymbolizerInfo.method != nullptr)
6324       free(ThumbSymbolizerInfo.method);
6325     if (ThumbSymbolizerInfo.demangled_name != nullptr)
6326       free(ThumbSymbolizerInfo.demangled_name);
6327     if (ThumbSymbolizerInfo.bindtable != nullptr)
6328       delete ThumbSymbolizerInfo.bindtable;
6329   }
6330 }
6331
6332 //===----------------------------------------------------------------------===//
6333 // __compact_unwind section dumping
6334 //===----------------------------------------------------------------------===//
6335
6336 namespace {
6337
6338 template <typename T> static uint64_t readNext(const char *&Buf) {
6339   using llvm::support::little;
6340   using llvm::support::unaligned;
6341
6342   uint64_t Val = support::endian::read<T, little, unaligned>(Buf);
6343   Buf += sizeof(T);
6344   return Val;
6345 }
6346
6347 struct CompactUnwindEntry {
6348   uint32_t OffsetInSection;
6349
6350   uint64_t FunctionAddr;
6351   uint32_t Length;
6352   uint32_t CompactEncoding;
6353   uint64_t PersonalityAddr;
6354   uint64_t LSDAAddr;
6355
6356   RelocationRef FunctionReloc;
6357   RelocationRef PersonalityReloc;
6358   RelocationRef LSDAReloc;
6359
6360   CompactUnwindEntry(StringRef Contents, unsigned Offset, bool Is64)
6361       : OffsetInSection(Offset) {
6362     if (Is64)
6363       read<uint64_t>(Contents.data() + Offset);
6364     else
6365       read<uint32_t>(Contents.data() + Offset);
6366   }
6367
6368 private:
6369   template <typename UIntPtr> void read(const char *Buf) {
6370     FunctionAddr = readNext<UIntPtr>(Buf);
6371     Length = readNext<uint32_t>(Buf);
6372     CompactEncoding = readNext<uint32_t>(Buf);
6373     PersonalityAddr = readNext<UIntPtr>(Buf);
6374     LSDAAddr = readNext<UIntPtr>(Buf);
6375   }
6376 };
6377 }
6378
6379 /// Given a relocation from __compact_unwind, consisting of the RelocationRef
6380 /// and data being relocated, determine the best base Name and Addend to use for
6381 /// display purposes.
6382 ///
6383 /// 1. An Extern relocation will directly reference a symbol (and the data is
6384 ///    then already an addend), so use that.
6385 /// 2. Otherwise the data is an offset in the object file's layout; try to find
6386 //     a symbol before it in the same section, and use the offset from there.
6387 /// 3. Finally, if all that fails, fall back to an offset from the start of the
6388 ///    referenced section.
6389 static void findUnwindRelocNameAddend(const MachOObjectFile *Obj,
6390                                       std::map<uint64_t, SymbolRef> &Symbols,
6391                                       const RelocationRef &Reloc, uint64_t Addr,
6392                                       StringRef &Name, uint64_t &Addend) {
6393   if (Reloc.getSymbol() != Obj->symbol_end()) {
6394     ErrorOr<StringRef> NameOrErr = Reloc.getSymbol()->getName();
6395     if (std::error_code EC = NameOrErr.getError())
6396       report_fatal_error(EC.message());
6397     Name = *NameOrErr;
6398     Addend = Addr;
6399     return;
6400   }
6401
6402   auto RE = Obj->getRelocation(Reloc.getRawDataRefImpl());
6403   SectionRef RelocSection = Obj->getAnyRelocationSection(RE);
6404
6405   uint64_t SectionAddr = RelocSection.getAddress();
6406
6407   auto Sym = Symbols.upper_bound(Addr);
6408   if (Sym == Symbols.begin()) {
6409     // The first symbol in the object is after this reference, the best we can
6410     // do is section-relative notation.
6411     RelocSection.getName(Name);
6412     Addend = Addr - SectionAddr;
6413     return;
6414   }
6415
6416   // Go back one so that SymbolAddress <= Addr.
6417   --Sym;
6418
6419   section_iterator SymSection = *Sym->second.getSection();
6420   if (RelocSection == *SymSection) {
6421     // There's a valid symbol in the same section before this reference.
6422     ErrorOr<StringRef> NameOrErr = Sym->second.getName();
6423     if (std::error_code EC = NameOrErr.getError())
6424       report_fatal_error(EC.message());
6425     Name = *NameOrErr;
6426     Addend = Addr - Sym->first;
6427     return;
6428   }
6429
6430   // There is a symbol before this reference, but it's in a different
6431   // section. Probably not helpful to mention it, so use the section name.
6432   RelocSection.getName(Name);
6433   Addend = Addr - SectionAddr;
6434 }
6435
6436 static void printUnwindRelocDest(const MachOObjectFile *Obj,
6437                                  std::map<uint64_t, SymbolRef> &Symbols,
6438                                  const RelocationRef &Reloc, uint64_t Addr) {
6439   StringRef Name;
6440   uint64_t Addend;
6441
6442   if (!Reloc.getObject())
6443     return;
6444
6445   findUnwindRelocNameAddend(Obj, Symbols, Reloc, Addr, Name, Addend);
6446
6447   outs() << Name;
6448   if (Addend)
6449     outs() << " + " << format("0x%" PRIx64, Addend);
6450 }
6451
6452 static void
6453 printMachOCompactUnwindSection(const MachOObjectFile *Obj,
6454                                std::map<uint64_t, SymbolRef> &Symbols,
6455                                const SectionRef &CompactUnwind) {
6456
6457   assert(Obj->isLittleEndian() &&
6458          "There should not be a big-endian .o with __compact_unwind");
6459
6460   bool Is64 = Obj->is64Bit();
6461   uint32_t PointerSize = Is64 ? sizeof(uint64_t) : sizeof(uint32_t);
6462   uint32_t EntrySize = 3 * PointerSize + 2 * sizeof(uint32_t);
6463
6464   StringRef Contents;
6465   CompactUnwind.getContents(Contents);
6466
6467   SmallVector<CompactUnwindEntry, 4> CompactUnwinds;
6468
6469   // First populate the initial raw offsets, encodings and so on from the entry.
6470   for (unsigned Offset = 0; Offset < Contents.size(); Offset += EntrySize) {
6471     CompactUnwindEntry Entry(Contents.data(), Offset, Is64);
6472     CompactUnwinds.push_back(Entry);
6473   }
6474
6475   // Next we need to look at the relocations to find out what objects are
6476   // actually being referred to.
6477   for (const RelocationRef &Reloc : CompactUnwind.relocations()) {
6478     uint64_t RelocAddress = Reloc.getOffset();
6479
6480     uint32_t EntryIdx = RelocAddress / EntrySize;
6481     uint32_t OffsetInEntry = RelocAddress - EntryIdx * EntrySize;
6482     CompactUnwindEntry &Entry = CompactUnwinds[EntryIdx];
6483
6484     if (OffsetInEntry == 0)
6485       Entry.FunctionReloc = Reloc;
6486     else if (OffsetInEntry == PointerSize + 2 * sizeof(uint32_t))
6487       Entry.PersonalityReloc = Reloc;
6488     else if (OffsetInEntry == 2 * PointerSize + 2 * sizeof(uint32_t))
6489       Entry.LSDAReloc = Reloc;
6490     else
6491       llvm_unreachable("Unexpected relocation in __compact_unwind section");
6492   }
6493
6494   // Finally, we're ready to print the data we've gathered.
6495   outs() << "Contents of __compact_unwind section:\n";
6496   for (auto &Entry : CompactUnwinds) {
6497     outs() << "  Entry at offset "
6498            << format("0x%" PRIx32, Entry.OffsetInSection) << ":\n";
6499
6500     // 1. Start of the region this entry applies to.
6501     outs() << "    start:                " << format("0x%" PRIx64,
6502                                                      Entry.FunctionAddr) << ' ';
6503     printUnwindRelocDest(Obj, Symbols, Entry.FunctionReloc, Entry.FunctionAddr);
6504     outs() << '\n';
6505
6506     // 2. Length of the region this entry applies to.
6507     outs() << "    length:               " << format("0x%" PRIx32, Entry.Length)
6508            << '\n';
6509     // 3. The 32-bit compact encoding.
6510     outs() << "    compact encoding:     "
6511            << format("0x%08" PRIx32, Entry.CompactEncoding) << '\n';
6512
6513     // 4. The personality function, if present.
6514     if (Entry.PersonalityReloc.getObject()) {
6515       outs() << "    personality function: "
6516              << format("0x%" PRIx64, Entry.PersonalityAddr) << ' ';
6517       printUnwindRelocDest(Obj, Symbols, Entry.PersonalityReloc,
6518                            Entry.PersonalityAddr);
6519       outs() << '\n';
6520     }
6521
6522     // 5. This entry's language-specific data area.
6523     if (Entry.LSDAReloc.getObject()) {
6524       outs() << "    LSDA:                 " << format("0x%" PRIx64,
6525                                                        Entry.LSDAAddr) << ' ';
6526       printUnwindRelocDest(Obj, Symbols, Entry.LSDAReloc, Entry.LSDAAddr);
6527       outs() << '\n';
6528     }
6529   }
6530 }
6531
6532 //===----------------------------------------------------------------------===//
6533 // __unwind_info section dumping
6534 //===----------------------------------------------------------------------===//
6535
6536 static void printRegularSecondLevelUnwindPage(const char *PageStart) {
6537   const char *Pos = PageStart;
6538   uint32_t Kind = readNext<uint32_t>(Pos);
6539   (void)Kind;
6540   assert(Kind == 2 && "kind for a regular 2nd level index should be 2");
6541
6542   uint16_t EntriesStart = readNext<uint16_t>(Pos);
6543   uint16_t NumEntries = readNext<uint16_t>(Pos);
6544
6545   Pos = PageStart + EntriesStart;
6546   for (unsigned i = 0; i < NumEntries; ++i) {
6547     uint32_t FunctionOffset = readNext<uint32_t>(Pos);
6548     uint32_t Encoding = readNext<uint32_t>(Pos);
6549
6550     outs() << "      [" << i << "]: "
6551            << "function offset=" << format("0x%08" PRIx32, FunctionOffset)
6552            << ", "
6553            << "encoding=" << format("0x%08" PRIx32, Encoding) << '\n';
6554   }
6555 }
6556
6557 static void printCompressedSecondLevelUnwindPage(
6558     const char *PageStart, uint32_t FunctionBase,
6559     const SmallVectorImpl<uint32_t> &CommonEncodings) {
6560   const char *Pos = PageStart;
6561   uint32_t Kind = readNext<uint32_t>(Pos);
6562   (void)Kind;
6563   assert(Kind == 3 && "kind for a compressed 2nd level index should be 3");
6564
6565   uint16_t EntriesStart = readNext<uint16_t>(Pos);
6566   uint16_t NumEntries = readNext<uint16_t>(Pos);
6567
6568   uint16_t EncodingsStart = readNext<uint16_t>(Pos);
6569   readNext<uint16_t>(Pos);
6570   const auto *PageEncodings = reinterpret_cast<const support::ulittle32_t *>(
6571       PageStart + EncodingsStart);
6572
6573   Pos = PageStart + EntriesStart;
6574   for (unsigned i = 0; i < NumEntries; ++i) {
6575     uint32_t Entry = readNext<uint32_t>(Pos);
6576     uint32_t FunctionOffset = FunctionBase + (Entry & 0xffffff);
6577     uint32_t EncodingIdx = Entry >> 24;
6578
6579     uint32_t Encoding;
6580     if (EncodingIdx < CommonEncodings.size())
6581       Encoding = CommonEncodings[EncodingIdx];
6582     else
6583       Encoding = PageEncodings[EncodingIdx - CommonEncodings.size()];
6584
6585     outs() << "      [" << i << "]: "
6586            << "function offset=" << format("0x%08" PRIx32, FunctionOffset)
6587            << ", "
6588            << "encoding[" << EncodingIdx
6589            << "]=" << format("0x%08" PRIx32, Encoding) << '\n';
6590   }
6591 }
6592
6593 static void printMachOUnwindInfoSection(const MachOObjectFile *Obj,
6594                                         std::map<uint64_t, SymbolRef> &Symbols,
6595                                         const SectionRef &UnwindInfo) {
6596
6597   assert(Obj->isLittleEndian() &&
6598          "There should not be a big-endian .o with __unwind_info");
6599
6600   outs() << "Contents of __unwind_info section:\n";
6601
6602   StringRef Contents;
6603   UnwindInfo.getContents(Contents);
6604   const char *Pos = Contents.data();
6605
6606   //===----------------------------------
6607   // Section header
6608   //===----------------------------------
6609
6610   uint32_t Version = readNext<uint32_t>(Pos);
6611   outs() << "  Version:                                   "
6612          << format("0x%" PRIx32, Version) << '\n';
6613   assert(Version == 1 && "only understand version 1");
6614
6615   uint32_t CommonEncodingsStart = readNext<uint32_t>(Pos);
6616   outs() << "  Common encodings array section offset:     "
6617          << format("0x%" PRIx32, CommonEncodingsStart) << '\n';
6618   uint32_t NumCommonEncodings = readNext<uint32_t>(Pos);
6619   outs() << "  Number of common encodings in array:       "
6620          << format("0x%" PRIx32, NumCommonEncodings) << '\n';
6621
6622   uint32_t PersonalitiesStart = readNext<uint32_t>(Pos);
6623   outs() << "  Personality function array section offset: "
6624          << format("0x%" PRIx32, PersonalitiesStart) << '\n';
6625   uint32_t NumPersonalities = readNext<uint32_t>(Pos);
6626   outs() << "  Number of personality functions in array:  "
6627          << format("0x%" PRIx32, NumPersonalities) << '\n';
6628
6629   uint32_t IndicesStart = readNext<uint32_t>(Pos);
6630   outs() << "  Index array section offset:                "
6631          << format("0x%" PRIx32, IndicesStart) << '\n';
6632   uint32_t NumIndices = readNext<uint32_t>(Pos);
6633   outs() << "  Number of indices in array:                "
6634          << format("0x%" PRIx32, NumIndices) << '\n';
6635
6636   //===----------------------------------
6637   // A shared list of common encodings
6638   //===----------------------------------
6639
6640   // These occupy indices in the range [0, N] whenever an encoding is referenced
6641   // from a compressed 2nd level index table. In practice the linker only
6642   // creates ~128 of these, so that indices are available to embed encodings in
6643   // the 2nd level index.
6644
6645   SmallVector<uint32_t, 64> CommonEncodings;
6646   outs() << "  Common encodings: (count = " << NumCommonEncodings << ")\n";
6647   Pos = Contents.data() + CommonEncodingsStart;
6648   for (unsigned i = 0; i < NumCommonEncodings; ++i) {
6649     uint32_t Encoding = readNext<uint32_t>(Pos);
6650     CommonEncodings.push_back(Encoding);
6651
6652     outs() << "    encoding[" << i << "]: " << format("0x%08" PRIx32, Encoding)
6653            << '\n';
6654   }
6655
6656   //===----------------------------------
6657   // Personality functions used in this executable
6658   //===----------------------------------
6659
6660   // There should be only a handful of these (one per source language,
6661   // roughly). Particularly since they only get 2 bits in the compact encoding.
6662
6663   outs() << "  Personality functions: (count = " << NumPersonalities << ")\n";
6664   Pos = Contents.data() + PersonalitiesStart;
6665   for (unsigned i = 0; i < NumPersonalities; ++i) {
6666     uint32_t PersonalityFn = readNext<uint32_t>(Pos);
6667     outs() << "    personality[" << i + 1
6668            << "]: " << format("0x%08" PRIx32, PersonalityFn) << '\n';
6669   }
6670
6671   //===----------------------------------
6672   // The level 1 index entries
6673   //===----------------------------------
6674
6675   // These specify an approximate place to start searching for the more detailed
6676   // information, sorted by PC.
6677
6678   struct IndexEntry {
6679     uint32_t FunctionOffset;
6680     uint32_t SecondLevelPageStart;
6681     uint32_t LSDAStart;
6682   };
6683
6684   SmallVector<IndexEntry, 4> IndexEntries;
6685
6686   outs() << "  Top level indices: (count = " << NumIndices << ")\n";
6687   Pos = Contents.data() + IndicesStart;
6688   for (unsigned i = 0; i < NumIndices; ++i) {
6689     IndexEntry Entry;
6690
6691     Entry.FunctionOffset = readNext<uint32_t>(Pos);
6692     Entry.SecondLevelPageStart = readNext<uint32_t>(Pos);
6693     Entry.LSDAStart = readNext<uint32_t>(Pos);
6694     IndexEntries.push_back(Entry);
6695
6696     outs() << "    [" << i << "]: "
6697            << "function offset=" << format("0x%08" PRIx32, Entry.FunctionOffset)
6698            << ", "
6699            << "2nd level page offset="
6700            << format("0x%08" PRIx32, Entry.SecondLevelPageStart) << ", "
6701            << "LSDA offset=" << format("0x%08" PRIx32, Entry.LSDAStart) << '\n';
6702   }
6703
6704   //===----------------------------------
6705   // Next come the LSDA tables
6706   //===----------------------------------
6707
6708   // The LSDA layout is rather implicit: it's a contiguous array of entries from
6709   // the first top-level index's LSDAOffset to the last (sentinel).
6710
6711   outs() << "  LSDA descriptors:\n";
6712   Pos = Contents.data() + IndexEntries[0].LSDAStart;
6713   int NumLSDAs = (IndexEntries.back().LSDAStart - IndexEntries[0].LSDAStart) /
6714                  (2 * sizeof(uint32_t));
6715   for (int i = 0; i < NumLSDAs; ++i) {
6716     uint32_t FunctionOffset = readNext<uint32_t>(Pos);
6717     uint32_t LSDAOffset = readNext<uint32_t>(Pos);
6718     outs() << "    [" << i << "]: "
6719            << "function offset=" << format("0x%08" PRIx32, FunctionOffset)
6720            << ", "
6721            << "LSDA offset=" << format("0x%08" PRIx32, LSDAOffset) << '\n';
6722   }
6723
6724   //===----------------------------------
6725   // Finally, the 2nd level indices
6726   //===----------------------------------
6727
6728   // Generally these are 4K in size, and have 2 possible forms:
6729   //   + Regular stores up to 511 entries with disparate encodings
6730   //   + Compressed stores up to 1021 entries if few enough compact encoding
6731   //     values are used.
6732   outs() << "  Second level indices:\n";
6733   for (unsigned i = 0; i < IndexEntries.size() - 1; ++i) {
6734     // The final sentinel top-level index has no associated 2nd level page
6735     if (IndexEntries[i].SecondLevelPageStart == 0)
6736       break;
6737
6738     outs() << "    Second level index[" << i << "]: "
6739            << "offset in section="
6740            << format("0x%08" PRIx32, IndexEntries[i].SecondLevelPageStart)
6741            << ", "
6742            << "base function offset="
6743            << format("0x%08" PRIx32, IndexEntries[i].FunctionOffset) << '\n';
6744
6745     Pos = Contents.data() + IndexEntries[i].SecondLevelPageStart;
6746     uint32_t Kind = *reinterpret_cast<const support::ulittle32_t *>(Pos);
6747     if (Kind == 2)
6748       printRegularSecondLevelUnwindPage(Pos);
6749     else if (Kind == 3)
6750       printCompressedSecondLevelUnwindPage(Pos, IndexEntries[i].FunctionOffset,
6751                                            CommonEncodings);
6752     else
6753       llvm_unreachable("Do not know how to print this kind of 2nd level page");
6754   }
6755 }
6756
6757 void llvm::printMachOUnwindInfo(const MachOObjectFile *Obj) {
6758   std::map<uint64_t, SymbolRef> Symbols;
6759   for (const SymbolRef &SymRef : Obj->symbols()) {
6760     // Discard any undefined or absolute symbols. They're not going to take part
6761     // in the convenience lookup for unwind info and just take up resources.
6762     section_iterator Section = *SymRef.getSection();
6763     if (Section == Obj->section_end())
6764       continue;
6765
6766     uint64_t Addr = SymRef.getValue();
6767     Symbols.insert(std::make_pair(Addr, SymRef));
6768   }
6769
6770   for (const SectionRef &Section : Obj->sections()) {
6771     StringRef SectName;
6772     Section.getName(SectName);
6773     if (SectName == "__compact_unwind")
6774       printMachOCompactUnwindSection(Obj, Symbols, Section);
6775     else if (SectName == "__unwind_info")
6776       printMachOUnwindInfoSection(Obj, Symbols, Section);
6777     else if (SectName == "__eh_frame")
6778       outs() << "llvm-objdump: warning: unhandled __eh_frame section\n";
6779   }
6780 }
6781
6782 static void PrintMachHeader(uint32_t magic, uint32_t cputype,
6783                             uint32_t cpusubtype, uint32_t filetype,
6784                             uint32_t ncmds, uint32_t sizeofcmds, uint32_t flags,
6785                             bool verbose) {
6786   outs() << "Mach header\n";
6787   outs() << "      magic cputype cpusubtype  caps    filetype ncmds "
6788             "sizeofcmds      flags\n";
6789   if (verbose) {
6790     if (magic == MachO::MH_MAGIC)
6791       outs() << "   MH_MAGIC";
6792     else if (magic == MachO::MH_MAGIC_64)
6793       outs() << "MH_MAGIC_64";
6794     else
6795       outs() << format(" 0x%08" PRIx32, magic);
6796     switch (cputype) {
6797     case MachO::CPU_TYPE_I386:
6798       outs() << "    I386";
6799       switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6800       case MachO::CPU_SUBTYPE_I386_ALL:
6801         outs() << "        ALL";
6802         break;
6803       default:
6804         outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6805         break;
6806       }
6807       break;
6808     case MachO::CPU_TYPE_X86_64:
6809       outs() << "  X86_64";
6810       switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6811       case MachO::CPU_SUBTYPE_X86_64_ALL:
6812         outs() << "        ALL";
6813         break;
6814       case MachO::CPU_SUBTYPE_X86_64_H:
6815         outs() << "    Haswell";
6816         break;
6817       default:
6818         outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6819         break;
6820       }
6821       break;
6822     case MachO::CPU_TYPE_ARM:
6823       outs() << "     ARM";
6824       switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6825       case MachO::CPU_SUBTYPE_ARM_ALL:
6826         outs() << "        ALL";
6827         break;
6828       case MachO::CPU_SUBTYPE_ARM_V4T:
6829         outs() << "        V4T";
6830         break;
6831       case MachO::CPU_SUBTYPE_ARM_V5TEJ:
6832         outs() << "      V5TEJ";
6833         break;
6834       case MachO::CPU_SUBTYPE_ARM_XSCALE:
6835         outs() << "     XSCALE";
6836         break;
6837       case MachO::CPU_SUBTYPE_ARM_V6:
6838         outs() << "         V6";
6839         break;
6840       case MachO::CPU_SUBTYPE_ARM_V6M:
6841         outs() << "        V6M";
6842         break;
6843       case MachO::CPU_SUBTYPE_ARM_V7:
6844         outs() << "         V7";
6845         break;
6846       case MachO::CPU_SUBTYPE_ARM_V7EM:
6847         outs() << "       V7EM";
6848         break;
6849       case MachO::CPU_SUBTYPE_ARM_V7K:
6850         outs() << "        V7K";
6851         break;
6852       case MachO::CPU_SUBTYPE_ARM_V7M:
6853         outs() << "        V7M";
6854         break;
6855       case MachO::CPU_SUBTYPE_ARM_V7S:
6856         outs() << "        V7S";
6857         break;
6858       default:
6859         outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6860         break;
6861       }
6862       break;
6863     case MachO::CPU_TYPE_ARM64:
6864       outs() << "   ARM64";
6865       switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6866       case MachO::CPU_SUBTYPE_ARM64_ALL:
6867         outs() << "        ALL";
6868         break;
6869       default:
6870         outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6871         break;
6872       }
6873       break;
6874     case MachO::CPU_TYPE_POWERPC:
6875       outs() << "     PPC";
6876       switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6877       case MachO::CPU_SUBTYPE_POWERPC_ALL:
6878         outs() << "        ALL";
6879         break;
6880       default:
6881         outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6882         break;
6883       }
6884       break;
6885     case MachO::CPU_TYPE_POWERPC64:
6886       outs() << "   PPC64";
6887       switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6888       case MachO::CPU_SUBTYPE_POWERPC_ALL:
6889         outs() << "        ALL";
6890         break;
6891       default:
6892         outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6893         break;
6894       }
6895       break;
6896     }
6897     if ((cpusubtype & MachO::CPU_SUBTYPE_MASK) == MachO::CPU_SUBTYPE_LIB64) {
6898       outs() << " LIB64";
6899     } else {
6900       outs() << format("  0x%02" PRIx32,
6901                        (cpusubtype & MachO::CPU_SUBTYPE_MASK) >> 24);
6902     }
6903     switch (filetype) {
6904     case MachO::MH_OBJECT:
6905       outs() << "      OBJECT";
6906       break;
6907     case MachO::MH_EXECUTE:
6908       outs() << "     EXECUTE";
6909       break;
6910     case MachO::MH_FVMLIB:
6911       outs() << "      FVMLIB";
6912       break;
6913     case MachO::MH_CORE:
6914       outs() << "        CORE";
6915       break;
6916     case MachO::MH_PRELOAD:
6917       outs() << "     PRELOAD";
6918       break;
6919     case MachO::MH_DYLIB:
6920       outs() << "       DYLIB";
6921       break;
6922     case MachO::MH_DYLIB_STUB:
6923       outs() << "  DYLIB_STUB";
6924       break;
6925     case MachO::MH_DYLINKER:
6926       outs() << "    DYLINKER";
6927       break;
6928     case MachO::MH_BUNDLE:
6929       outs() << "      BUNDLE";
6930       break;
6931     case MachO::MH_DSYM:
6932       outs() << "        DSYM";
6933       break;
6934     case MachO::MH_KEXT_BUNDLE:
6935       outs() << "  KEXTBUNDLE";
6936       break;
6937     default:
6938       outs() << format("  %10u", filetype);
6939       break;
6940     }
6941     outs() << format(" %5u", ncmds);
6942     outs() << format(" %10u", sizeofcmds);
6943     uint32_t f = flags;
6944     if (f & MachO::MH_NOUNDEFS) {
6945       outs() << "   NOUNDEFS";
6946       f &= ~MachO::MH_NOUNDEFS;
6947     }
6948     if (f & MachO::MH_INCRLINK) {
6949       outs() << " INCRLINK";
6950       f &= ~MachO::MH_INCRLINK;
6951     }
6952     if (f & MachO::MH_DYLDLINK) {
6953       outs() << " DYLDLINK";
6954       f &= ~MachO::MH_DYLDLINK;
6955     }
6956     if (f & MachO::MH_BINDATLOAD) {
6957       outs() << " BINDATLOAD";
6958       f &= ~MachO::MH_BINDATLOAD;
6959     }
6960     if (f & MachO::MH_PREBOUND) {
6961       outs() << " PREBOUND";
6962       f &= ~MachO::MH_PREBOUND;
6963     }
6964     if (f & MachO::MH_SPLIT_SEGS) {
6965       outs() << " SPLIT_SEGS";
6966       f &= ~MachO::MH_SPLIT_SEGS;
6967     }
6968     if (f & MachO::MH_LAZY_INIT) {
6969       outs() << " LAZY_INIT";
6970       f &= ~MachO::MH_LAZY_INIT;
6971     }
6972     if (f & MachO::MH_TWOLEVEL) {
6973       outs() << " TWOLEVEL";
6974       f &= ~MachO::MH_TWOLEVEL;
6975     }
6976     if (f & MachO::MH_FORCE_FLAT) {
6977       outs() << " FORCE_FLAT";
6978       f &= ~MachO::MH_FORCE_FLAT;
6979     }
6980     if (f & MachO::MH_NOMULTIDEFS) {
6981       outs() << " NOMULTIDEFS";
6982       f &= ~MachO::MH_NOMULTIDEFS;
6983     }
6984     if (f & MachO::MH_NOFIXPREBINDING) {
6985       outs() << " NOFIXPREBINDING";
6986       f &= ~MachO::MH_NOFIXPREBINDING;
6987     }
6988     if (f & MachO::MH_PREBINDABLE) {
6989       outs() << " PREBINDABLE";
6990       f &= ~MachO::MH_PREBINDABLE;
6991     }
6992     if (f & MachO::MH_ALLMODSBOUND) {
6993       outs() << " ALLMODSBOUND";
6994       f &= ~MachO::MH_ALLMODSBOUND;
6995     }
6996     if (f & MachO::MH_SUBSECTIONS_VIA_SYMBOLS) {
6997       outs() << " SUBSECTIONS_VIA_SYMBOLS";
6998       f &= ~MachO::MH_SUBSECTIONS_VIA_SYMBOLS;
6999     }
7000     if (f & MachO::MH_CANONICAL) {
7001       outs() << " CANONICAL";
7002       f &= ~MachO::MH_CANONICAL;
7003     }
7004     if (f & MachO::MH_WEAK_DEFINES) {
7005       outs() << " WEAK_DEFINES";
7006       f &= ~MachO::MH_WEAK_DEFINES;
7007     }
7008     if (f & MachO::MH_BINDS_TO_WEAK) {
7009       outs() << " BINDS_TO_WEAK";
7010       f &= ~MachO::MH_BINDS_TO_WEAK;
7011     }
7012     if (f & MachO::MH_ALLOW_STACK_EXECUTION) {
7013       outs() << " ALLOW_STACK_EXECUTION";
7014       f &= ~MachO::MH_ALLOW_STACK_EXECUTION;
7015     }
7016     if (f & MachO::MH_DEAD_STRIPPABLE_DYLIB) {
7017       outs() << " DEAD_STRIPPABLE_DYLIB";
7018       f &= ~MachO::MH_DEAD_STRIPPABLE_DYLIB;
7019     }
7020     if (f & MachO::MH_PIE) {
7021       outs() << " PIE";
7022       f &= ~MachO::MH_PIE;
7023     }
7024     if (f & MachO::MH_NO_REEXPORTED_DYLIBS) {
7025       outs() << " NO_REEXPORTED_DYLIBS";
7026       f &= ~MachO::MH_NO_REEXPORTED_DYLIBS;
7027     }
7028     if (f & MachO::MH_HAS_TLV_DESCRIPTORS) {
7029       outs() << " MH_HAS_TLV_DESCRIPTORS";
7030       f &= ~MachO::MH_HAS_TLV_DESCRIPTORS;
7031     }
7032     if (f & MachO::MH_NO_HEAP_EXECUTION) {
7033       outs() << " MH_NO_HEAP_EXECUTION";
7034       f &= ~MachO::MH_NO_HEAP_EXECUTION;
7035     }
7036     if (f & MachO::MH_APP_EXTENSION_SAFE) {
7037       outs() << " APP_EXTENSION_SAFE";
7038       f &= ~MachO::MH_APP_EXTENSION_SAFE;
7039     }
7040     if (f != 0 || flags == 0)
7041       outs() << format(" 0x%08" PRIx32, f);
7042   } else {
7043     outs() << format(" 0x%08" PRIx32, magic);
7044     outs() << format(" %7d", cputype);
7045     outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
7046     outs() << format("  0x%02" PRIx32,
7047                      (cpusubtype & MachO::CPU_SUBTYPE_MASK) >> 24);
7048     outs() << format("  %10u", filetype);
7049     outs() << format(" %5u", ncmds);
7050     outs() << format(" %10u", sizeofcmds);
7051     outs() << format(" 0x%08" PRIx32, flags);
7052   }
7053   outs() << "\n";
7054 }
7055
7056 static void PrintSegmentCommand(uint32_t cmd, uint32_t cmdsize,
7057                                 StringRef SegName, uint64_t vmaddr,
7058                                 uint64_t vmsize, uint64_t fileoff,
7059                                 uint64_t filesize, uint32_t maxprot,
7060                                 uint32_t initprot, uint32_t nsects,
7061                                 uint32_t flags, uint32_t object_size,
7062                                 bool verbose) {
7063   uint64_t expected_cmdsize;
7064   if (cmd == MachO::LC_SEGMENT) {
7065     outs() << "      cmd LC_SEGMENT\n";
7066     expected_cmdsize = nsects;
7067     expected_cmdsize *= sizeof(struct MachO::section);
7068     expected_cmdsize += sizeof(struct MachO::segment_command);
7069   } else {
7070     outs() << "      cmd LC_SEGMENT_64\n";
7071     expected_cmdsize = nsects;
7072     expected_cmdsize *= sizeof(struct MachO::section_64);
7073     expected_cmdsize += sizeof(struct MachO::segment_command_64);
7074   }
7075   outs() << "  cmdsize " << cmdsize;
7076   if (cmdsize != expected_cmdsize)
7077     outs() << " Inconsistent size\n";
7078   else
7079     outs() << "\n";
7080   outs() << "  segname " << SegName << "\n";
7081   if (cmd == MachO::LC_SEGMENT_64) {
7082     outs() << "   vmaddr " << format("0x%016" PRIx64, vmaddr) << "\n";
7083     outs() << "   vmsize " << format("0x%016" PRIx64, vmsize) << "\n";
7084   } else {
7085     outs() << "   vmaddr " << format("0x%08" PRIx64, vmaddr) << "\n";
7086     outs() << "   vmsize " << format("0x%08" PRIx64, vmsize) << "\n";
7087   }
7088   outs() << "  fileoff " << fileoff;
7089   if (fileoff > object_size)
7090     outs() << " (past end of file)\n";
7091   else
7092     outs() << "\n";
7093   outs() << " filesize " << filesize;
7094   if (fileoff + filesize > object_size)
7095     outs() << " (past end of file)\n";
7096   else
7097     outs() << "\n";
7098   if (verbose) {
7099     if ((maxprot &
7100          ~(MachO::VM_PROT_READ | MachO::VM_PROT_WRITE |
7101            MachO::VM_PROT_EXECUTE)) != 0)
7102       outs() << "  maxprot ?" << format("0x%08" PRIx32, maxprot) << "\n";
7103     else {
7104       outs() << "  maxprot ";
7105       outs() << ((maxprot & MachO::VM_PROT_READ) ? "r" : "-");
7106       outs() << ((maxprot & MachO::VM_PROT_WRITE) ? "w" : "-");
7107       outs() << ((maxprot & MachO::VM_PROT_EXECUTE) ? "x\n" : "-\n");
7108     }
7109     if ((initprot &
7110          ~(MachO::VM_PROT_READ | MachO::VM_PROT_WRITE |
7111            MachO::VM_PROT_EXECUTE)) != 0)
7112       outs() << "  initprot ?" << format("0x%08" PRIx32, initprot) << "\n";
7113     else {
7114       outs() << "  initprot ";
7115       outs() << ((initprot & MachO::VM_PROT_READ) ? "r" : "-");
7116       outs() << ((initprot & MachO::VM_PROT_WRITE) ? "w" : "-");
7117       outs() << ((initprot & MachO::VM_PROT_EXECUTE) ? "x\n" : "-\n");
7118     }
7119   } else {
7120     outs() << "  maxprot " << format("0x%08" PRIx32, maxprot) << "\n";
7121     outs() << " initprot " << format("0x%08" PRIx32, initprot) << "\n";
7122   }
7123   outs() << "   nsects " << nsects << "\n";
7124   if (verbose) {
7125     outs() << "    flags";
7126     if (flags == 0)
7127       outs() << " (none)\n";
7128     else {
7129       if (flags & MachO::SG_HIGHVM) {
7130         outs() << " HIGHVM";
7131         flags &= ~MachO::SG_HIGHVM;
7132       }
7133       if (flags & MachO::SG_FVMLIB) {
7134         outs() << " FVMLIB";
7135         flags &= ~MachO::SG_FVMLIB;
7136       }
7137       if (flags & MachO::SG_NORELOC) {
7138         outs() << " NORELOC";
7139         flags &= ~MachO::SG_NORELOC;
7140       }
7141       if (flags & MachO::SG_PROTECTED_VERSION_1) {
7142         outs() << " PROTECTED_VERSION_1";
7143         flags &= ~MachO::SG_PROTECTED_VERSION_1;
7144       }
7145       if (flags)
7146         outs() << format(" 0x%08" PRIx32, flags) << " (unknown flags)\n";
7147       else
7148         outs() << "\n";
7149     }
7150   } else {
7151     outs() << "    flags " << format("0x%" PRIx32, flags) << "\n";
7152   }
7153 }
7154
7155 static void PrintSection(const char *sectname, const char *segname,
7156                          uint64_t addr, uint64_t size, uint32_t offset,
7157                          uint32_t align, uint32_t reloff, uint32_t nreloc,
7158                          uint32_t flags, uint32_t reserved1, uint32_t reserved2,
7159                          uint32_t cmd, const char *sg_segname,
7160                          uint32_t filetype, uint32_t object_size,
7161                          bool verbose) {
7162   outs() << "Section\n";
7163   outs() << "  sectname " << format("%.16s\n", sectname);
7164   outs() << "   segname " << format("%.16s", segname);
7165   if (filetype != MachO::MH_OBJECT && strncmp(sg_segname, segname, 16) != 0)
7166     outs() << " (does not match segment)\n";
7167   else
7168     outs() << "\n";
7169   if (cmd == MachO::LC_SEGMENT_64) {
7170     outs() << "      addr " << format("0x%016" PRIx64, addr) << "\n";
7171     outs() << "      size " << format("0x%016" PRIx64, size);
7172   } else {
7173     outs() << "      addr " << format("0x%08" PRIx64, addr) << "\n";
7174     outs() << "      size " << format("0x%08" PRIx64, size);
7175   }
7176   if ((flags & MachO::S_ZEROFILL) != 0 && offset + size > object_size)
7177     outs() << " (past end of file)\n";
7178   else
7179     outs() << "\n";
7180   outs() << "    offset " << offset;
7181   if (offset > object_size)
7182     outs() << " (past end of file)\n";
7183   else
7184     outs() << "\n";
7185   uint32_t align_shifted = 1 << align;
7186   outs() << "     align 2^" << align << " (" << align_shifted << ")\n";
7187   outs() << "    reloff " << reloff;
7188   if (reloff > object_size)
7189     outs() << " (past end of file)\n";
7190   else
7191     outs() << "\n";
7192   outs() << "    nreloc " << nreloc;
7193   if (reloff + nreloc * sizeof(struct MachO::relocation_info) > object_size)
7194     outs() << " (past end of file)\n";
7195   else
7196     outs() << "\n";
7197   uint32_t section_type = flags & MachO::SECTION_TYPE;
7198   if (verbose) {
7199     outs() << "      type";
7200     if (section_type == MachO::S_REGULAR)
7201       outs() << " S_REGULAR\n";
7202     else if (section_type == MachO::S_ZEROFILL)
7203       outs() << " S_ZEROFILL\n";
7204     else if (section_type == MachO::S_CSTRING_LITERALS)
7205       outs() << " S_CSTRING_LITERALS\n";
7206     else if (section_type == MachO::S_4BYTE_LITERALS)
7207       outs() << " S_4BYTE_LITERALS\n";
7208     else if (section_type == MachO::S_8BYTE_LITERALS)
7209       outs() << " S_8BYTE_LITERALS\n";
7210     else if (section_type == MachO::S_16BYTE_LITERALS)
7211       outs() << " S_16BYTE_LITERALS\n";
7212     else if (section_type == MachO::S_LITERAL_POINTERS)
7213       outs() << " S_LITERAL_POINTERS\n";
7214     else if (section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS)
7215       outs() << " S_NON_LAZY_SYMBOL_POINTERS\n";
7216     else if (section_type == MachO::S_LAZY_SYMBOL_POINTERS)
7217       outs() << " S_LAZY_SYMBOL_POINTERS\n";
7218     else if (section_type == MachO::S_SYMBOL_STUBS)
7219       outs() << " S_SYMBOL_STUBS\n";
7220     else if (section_type == MachO::S_MOD_INIT_FUNC_POINTERS)
7221       outs() << " S_MOD_INIT_FUNC_POINTERS\n";
7222     else if (section_type == MachO::S_MOD_TERM_FUNC_POINTERS)
7223       outs() << " S_MOD_TERM_FUNC_POINTERS\n";
7224     else if (section_type == MachO::S_COALESCED)
7225       outs() << " S_COALESCED\n";
7226     else if (section_type == MachO::S_INTERPOSING)
7227       outs() << " S_INTERPOSING\n";
7228     else if (section_type == MachO::S_DTRACE_DOF)
7229       outs() << " S_DTRACE_DOF\n";
7230     else if (section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS)
7231       outs() << " S_LAZY_DYLIB_SYMBOL_POINTERS\n";
7232     else if (section_type == MachO::S_THREAD_LOCAL_REGULAR)
7233       outs() << " S_THREAD_LOCAL_REGULAR\n";
7234     else if (section_type == MachO::S_THREAD_LOCAL_ZEROFILL)
7235       outs() << " S_THREAD_LOCAL_ZEROFILL\n";
7236     else if (section_type == MachO::S_THREAD_LOCAL_VARIABLES)
7237       outs() << " S_THREAD_LOCAL_VARIABLES\n";
7238     else if (section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS)
7239       outs() << " S_THREAD_LOCAL_VARIABLE_POINTERS\n";
7240     else if (section_type == MachO::S_THREAD_LOCAL_INIT_FUNCTION_POINTERS)
7241       outs() << " S_THREAD_LOCAL_INIT_FUNCTION_POINTERS\n";
7242     else
7243       outs() << format("0x%08" PRIx32, section_type) << "\n";
7244     outs() << "attributes";
7245     uint32_t section_attributes = flags & MachO::SECTION_ATTRIBUTES;
7246     if (section_attributes & MachO::S_ATTR_PURE_INSTRUCTIONS)
7247       outs() << " PURE_INSTRUCTIONS";
7248     if (section_attributes & MachO::S_ATTR_NO_TOC)
7249       outs() << " NO_TOC";
7250     if (section_attributes & MachO::S_ATTR_STRIP_STATIC_SYMS)
7251       outs() << " STRIP_STATIC_SYMS";
7252     if (section_attributes & MachO::S_ATTR_NO_DEAD_STRIP)
7253       outs() << " NO_DEAD_STRIP";
7254     if (section_attributes & MachO::S_ATTR_LIVE_SUPPORT)
7255       outs() << " LIVE_SUPPORT";
7256     if (section_attributes & MachO::S_ATTR_SELF_MODIFYING_CODE)
7257       outs() << " SELF_MODIFYING_CODE";
7258     if (section_attributes & MachO::S_ATTR_DEBUG)
7259       outs() << " DEBUG";
7260     if (section_attributes & MachO::S_ATTR_SOME_INSTRUCTIONS)
7261       outs() << " SOME_INSTRUCTIONS";
7262     if (section_attributes & MachO::S_ATTR_EXT_RELOC)
7263       outs() << " EXT_RELOC";
7264     if (section_attributes & MachO::S_ATTR_LOC_RELOC)
7265       outs() << " LOC_RELOC";
7266     if (section_attributes == 0)
7267       outs() << " (none)";
7268     outs() << "\n";
7269   } else
7270     outs() << "     flags " << format("0x%08" PRIx32, flags) << "\n";
7271   outs() << " reserved1 " << reserved1;
7272   if (section_type == MachO::S_SYMBOL_STUBS ||
7273       section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
7274       section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
7275       section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
7276       section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS)
7277     outs() << " (index into indirect symbol table)\n";
7278   else
7279     outs() << "\n";
7280   outs() << " reserved2 " << reserved2;
7281   if (section_type == MachO::S_SYMBOL_STUBS)
7282     outs() << " (size of stubs)\n";
7283   else
7284     outs() << "\n";
7285 }
7286
7287 static void PrintSymtabLoadCommand(MachO::symtab_command st, bool Is64Bit,
7288                                    uint32_t object_size) {
7289   outs() << "     cmd LC_SYMTAB\n";
7290   outs() << " cmdsize " << st.cmdsize;
7291   if (st.cmdsize != sizeof(struct MachO::symtab_command))
7292     outs() << " Incorrect size\n";
7293   else
7294     outs() << "\n";
7295   outs() << "  symoff " << st.symoff;
7296   if (st.symoff > object_size)
7297     outs() << " (past end of file)\n";
7298   else
7299     outs() << "\n";
7300   outs() << "   nsyms " << st.nsyms;
7301   uint64_t big_size;
7302   if (Is64Bit) {
7303     big_size = st.nsyms;
7304     big_size *= sizeof(struct MachO::nlist_64);
7305     big_size += st.symoff;
7306     if (big_size > object_size)
7307       outs() << " (past end of file)\n";
7308     else
7309       outs() << "\n";
7310   } else {
7311     big_size = st.nsyms;
7312     big_size *= sizeof(struct MachO::nlist);
7313     big_size += st.symoff;
7314     if (big_size > object_size)
7315       outs() << " (past end of file)\n";
7316     else
7317       outs() << "\n";
7318   }
7319   outs() << "  stroff " << st.stroff;
7320   if (st.stroff > object_size)
7321     outs() << " (past end of file)\n";
7322   else
7323     outs() << "\n";
7324   outs() << " strsize " << st.strsize;
7325   big_size = st.stroff;
7326   big_size += st.strsize;
7327   if (big_size > object_size)
7328     outs() << " (past end of file)\n";
7329   else
7330     outs() << "\n";
7331 }
7332
7333 static void PrintDysymtabLoadCommand(MachO::dysymtab_command dyst,
7334                                      uint32_t nsyms, uint32_t object_size,
7335                                      bool Is64Bit) {
7336   outs() << "            cmd LC_DYSYMTAB\n";
7337   outs() << "        cmdsize " << dyst.cmdsize;
7338   if (dyst.cmdsize != sizeof(struct MachO::dysymtab_command))
7339     outs() << " Incorrect size\n";
7340   else
7341     outs() << "\n";
7342   outs() << "      ilocalsym " << dyst.ilocalsym;
7343   if (dyst.ilocalsym > nsyms)
7344     outs() << " (greater than the number of symbols)\n";
7345   else
7346     outs() << "\n";
7347   outs() << "      nlocalsym " << dyst.nlocalsym;
7348   uint64_t big_size;
7349   big_size = dyst.ilocalsym;
7350   big_size += dyst.nlocalsym;
7351   if (big_size > nsyms)
7352     outs() << " (past the end of the symbol table)\n";
7353   else
7354     outs() << "\n";
7355   outs() << "     iextdefsym " << dyst.iextdefsym;
7356   if (dyst.iextdefsym > nsyms)
7357     outs() << " (greater than the number of symbols)\n";
7358   else
7359     outs() << "\n";
7360   outs() << "     nextdefsym " << dyst.nextdefsym;
7361   big_size = dyst.iextdefsym;
7362   big_size += dyst.nextdefsym;
7363   if (big_size > nsyms)
7364     outs() << " (past the end of the symbol table)\n";
7365   else
7366     outs() << "\n";
7367   outs() << "      iundefsym " << dyst.iundefsym;
7368   if (dyst.iundefsym > nsyms)
7369     outs() << " (greater than the number of symbols)\n";
7370   else
7371     outs() << "\n";
7372   outs() << "      nundefsym " << dyst.nundefsym;
7373   big_size = dyst.iundefsym;
7374   big_size += dyst.nundefsym;
7375   if (big_size > nsyms)
7376     outs() << " (past the end of the symbol table)\n";
7377   else
7378     outs() << "\n";
7379   outs() << "         tocoff " << dyst.tocoff;
7380   if (dyst.tocoff > object_size)
7381     outs() << " (past end of file)\n";
7382   else
7383     outs() << "\n";
7384   outs() << "           ntoc " << dyst.ntoc;
7385   big_size = dyst.ntoc;
7386   big_size *= sizeof(struct MachO::dylib_table_of_contents);
7387   big_size += dyst.tocoff;
7388   if (big_size > object_size)
7389     outs() << " (past end of file)\n";
7390   else
7391     outs() << "\n";
7392   outs() << "      modtaboff " << dyst.modtaboff;
7393   if (dyst.modtaboff > object_size)
7394     outs() << " (past end of file)\n";
7395   else
7396     outs() << "\n";
7397   outs() << "        nmodtab " << dyst.nmodtab;
7398   uint64_t modtabend;
7399   if (Is64Bit) {
7400     modtabend = dyst.nmodtab;
7401     modtabend *= sizeof(struct MachO::dylib_module_64);
7402     modtabend += dyst.modtaboff;
7403   } else {
7404     modtabend = dyst.nmodtab;
7405     modtabend *= sizeof(struct MachO::dylib_module);
7406     modtabend += dyst.modtaboff;
7407   }
7408   if (modtabend > object_size)
7409     outs() << " (past end of file)\n";
7410   else
7411     outs() << "\n";
7412   outs() << "   extrefsymoff " << dyst.extrefsymoff;
7413   if (dyst.extrefsymoff > object_size)
7414     outs() << " (past end of file)\n";
7415   else
7416     outs() << "\n";
7417   outs() << "    nextrefsyms " << dyst.nextrefsyms;
7418   big_size = dyst.nextrefsyms;
7419   big_size *= sizeof(struct MachO::dylib_reference);
7420   big_size += dyst.extrefsymoff;
7421   if (big_size > object_size)
7422     outs() << " (past end of file)\n";
7423   else
7424     outs() << "\n";
7425   outs() << " indirectsymoff " << dyst.indirectsymoff;
7426   if (dyst.indirectsymoff > object_size)
7427     outs() << " (past end of file)\n";
7428   else
7429     outs() << "\n";
7430   outs() << "  nindirectsyms " << dyst.nindirectsyms;
7431   big_size = dyst.nindirectsyms;
7432   big_size *= sizeof(uint32_t);
7433   big_size += dyst.indirectsymoff;
7434   if (big_size > object_size)
7435     outs() << " (past end of file)\n";
7436   else
7437     outs() << "\n";
7438   outs() << "      extreloff " << dyst.extreloff;
7439   if (dyst.extreloff > object_size)
7440     outs() << " (past end of file)\n";
7441   else
7442     outs() << "\n";
7443   outs() << "        nextrel " << dyst.nextrel;
7444   big_size = dyst.nextrel;
7445   big_size *= sizeof(struct MachO::relocation_info);
7446   big_size += dyst.extreloff;
7447   if (big_size > object_size)
7448     outs() << " (past end of file)\n";
7449   else
7450     outs() << "\n";
7451   outs() << "      locreloff " << dyst.locreloff;
7452   if (dyst.locreloff > object_size)
7453     outs() << " (past end of file)\n";
7454   else
7455     outs() << "\n";
7456   outs() << "        nlocrel " << dyst.nlocrel;
7457   big_size = dyst.nlocrel;
7458   big_size *= sizeof(struct MachO::relocation_info);
7459   big_size += dyst.locreloff;
7460   if (big_size > object_size)
7461     outs() << " (past end of file)\n";
7462   else
7463     outs() << "\n";
7464 }
7465
7466 static void PrintDyldInfoLoadCommand(MachO::dyld_info_command dc,
7467                                      uint32_t object_size) {
7468   if (dc.cmd == MachO::LC_DYLD_INFO)
7469     outs() << "            cmd LC_DYLD_INFO\n";
7470   else
7471     outs() << "            cmd LC_DYLD_INFO_ONLY\n";
7472   outs() << "        cmdsize " << dc.cmdsize;
7473   if (dc.cmdsize != sizeof(struct MachO::dyld_info_command))
7474     outs() << " Incorrect size\n";
7475   else
7476     outs() << "\n";
7477   outs() << "     rebase_off " << dc.rebase_off;
7478   if (dc.rebase_off > object_size)
7479     outs() << " (past end of file)\n";
7480   else
7481     outs() << "\n";
7482   outs() << "    rebase_size " << dc.rebase_size;
7483   uint64_t big_size;
7484   big_size = dc.rebase_off;
7485   big_size += dc.rebase_size;
7486   if (big_size > object_size)
7487     outs() << " (past end of file)\n";
7488   else
7489     outs() << "\n";
7490   outs() << "       bind_off " << dc.bind_off;
7491   if (dc.bind_off > object_size)
7492     outs() << " (past end of file)\n";
7493   else
7494     outs() << "\n";
7495   outs() << "      bind_size " << dc.bind_size;
7496   big_size = dc.bind_off;
7497   big_size += dc.bind_size;
7498   if (big_size > object_size)
7499     outs() << " (past end of file)\n";
7500   else
7501     outs() << "\n";
7502   outs() << "  weak_bind_off " << dc.weak_bind_off;
7503   if (dc.weak_bind_off > object_size)
7504     outs() << " (past end of file)\n";
7505   else
7506     outs() << "\n";
7507   outs() << " weak_bind_size " << dc.weak_bind_size;
7508   big_size = dc.weak_bind_off;
7509   big_size += dc.weak_bind_size;
7510   if (big_size > object_size)
7511     outs() << " (past end of file)\n";
7512   else
7513     outs() << "\n";
7514   outs() << "  lazy_bind_off " << dc.lazy_bind_off;
7515   if (dc.lazy_bind_off > object_size)
7516     outs() << " (past end of file)\n";
7517   else
7518     outs() << "\n";
7519   outs() << " lazy_bind_size " << dc.lazy_bind_size;
7520   big_size = dc.lazy_bind_off;
7521   big_size += dc.lazy_bind_size;
7522   if (big_size > object_size)
7523     outs() << " (past end of file)\n";
7524   else
7525     outs() << "\n";
7526   outs() << "     export_off " << dc.export_off;
7527   if (dc.export_off > object_size)
7528     outs() << " (past end of file)\n";
7529   else
7530     outs() << "\n";
7531   outs() << "    export_size " << dc.export_size;
7532   big_size = dc.export_off;
7533   big_size += dc.export_size;
7534   if (big_size > object_size)
7535     outs() << " (past end of file)\n";
7536   else
7537     outs() << "\n";
7538 }
7539
7540 static void PrintDyldLoadCommand(MachO::dylinker_command dyld,
7541                                  const char *Ptr) {
7542   if (dyld.cmd == MachO::LC_ID_DYLINKER)
7543     outs() << "          cmd LC_ID_DYLINKER\n";
7544   else if (dyld.cmd == MachO::LC_LOAD_DYLINKER)
7545     outs() << "          cmd LC_LOAD_DYLINKER\n";
7546   else if (dyld.cmd == MachO::LC_DYLD_ENVIRONMENT)
7547     outs() << "          cmd LC_DYLD_ENVIRONMENT\n";
7548   else
7549     outs() << "          cmd ?(" << dyld.cmd << ")\n";
7550   outs() << "      cmdsize " << dyld.cmdsize;
7551   if (dyld.cmdsize < sizeof(struct MachO::dylinker_command))
7552     outs() << " Incorrect size\n";
7553   else
7554     outs() << "\n";
7555   if (dyld.name >= dyld.cmdsize)
7556     outs() << "         name ?(bad offset " << dyld.name << ")\n";
7557   else {
7558     const char *P = (const char *)(Ptr) + dyld.name;
7559     outs() << "         name " << P << " (offset " << dyld.name << ")\n";
7560   }
7561 }
7562
7563 static void PrintUuidLoadCommand(MachO::uuid_command uuid) {
7564   outs() << "     cmd LC_UUID\n";
7565   outs() << " cmdsize " << uuid.cmdsize;
7566   if (uuid.cmdsize != sizeof(struct MachO::uuid_command))
7567     outs() << " Incorrect size\n";
7568   else
7569     outs() << "\n";
7570   outs() << "    uuid ";
7571   for (int i = 0; i < 16; ++i) {
7572     outs() << format("%02" PRIX32, uuid.uuid[i]);
7573     if (i == 3 || i == 5 || i == 7 || i == 9)
7574       outs() << "-";
7575   }
7576   outs() << "\n";
7577 }
7578
7579 static void PrintRpathLoadCommand(MachO::rpath_command rpath, const char *Ptr) {
7580   outs() << "          cmd LC_RPATH\n";
7581   outs() << "      cmdsize " << rpath.cmdsize;
7582   if (rpath.cmdsize < sizeof(struct MachO::rpath_command))
7583     outs() << " Incorrect size\n";
7584   else
7585     outs() << "\n";
7586   if (rpath.path >= rpath.cmdsize)
7587     outs() << "         path ?(bad offset " << rpath.path << ")\n";
7588   else {
7589     const char *P = (const char *)(Ptr) + rpath.path;
7590     outs() << "         path " << P << " (offset " << rpath.path << ")\n";
7591   }
7592 }
7593
7594 static void PrintVersionMinLoadCommand(MachO::version_min_command vd) {
7595   StringRef LoadCmdName;
7596   switch (vd.cmd) {
7597   case MachO::LC_VERSION_MIN_MACOSX:
7598     LoadCmdName = "LC_VERSION_MIN_MACOSX";
7599     break;
7600   case MachO::LC_VERSION_MIN_IPHONEOS:
7601     LoadCmdName = "LC_VERSION_MIN_IPHONEOS";
7602     break;
7603   case MachO::LC_VERSION_MIN_TVOS:
7604     LoadCmdName = "LC_VERSION_MIN_TVOS";
7605     break;
7606   case MachO::LC_VERSION_MIN_WATCHOS:
7607     LoadCmdName = "LC_VERSION_MIN_WATCHOS";
7608     break;
7609   default:
7610     llvm_unreachable("Unknown version min load command");
7611   }
7612
7613   outs() << "      cmd " << LoadCmdName << '\n';
7614   outs() << "  cmdsize " << vd.cmdsize;
7615   if (vd.cmdsize != sizeof(struct MachO::version_min_command))
7616     outs() << " Incorrect size\n";
7617   else
7618     outs() << "\n";
7619   outs() << "  version "
7620          << MachOObjectFile::getVersionMinMajor(vd, false) << "."
7621          << MachOObjectFile::getVersionMinMinor(vd, false);
7622   uint32_t Update = MachOObjectFile::getVersionMinUpdate(vd, false);
7623   if (Update != 0)
7624     outs() << "." << Update;
7625   outs() << "\n";
7626   if (vd.sdk == 0)
7627     outs() << "      sdk n/a";
7628   else {
7629     outs() << "      sdk "
7630            << MachOObjectFile::getVersionMinMajor(vd, true) << "."
7631            << MachOObjectFile::getVersionMinMinor(vd, true);
7632   }
7633   Update = MachOObjectFile::getVersionMinUpdate(vd, true);
7634   if (Update != 0)
7635     outs() << "." << Update;
7636   outs() << "\n";
7637 }
7638
7639 static void PrintSourceVersionCommand(MachO::source_version_command sd) {
7640   outs() << "      cmd LC_SOURCE_VERSION\n";
7641   outs() << "  cmdsize " << sd.cmdsize;
7642   if (sd.cmdsize != sizeof(struct MachO::source_version_command))
7643     outs() << " Incorrect size\n";
7644   else
7645     outs() << "\n";
7646   uint64_t a = (sd.version >> 40) & 0xffffff;
7647   uint64_t b = (sd.version >> 30) & 0x3ff;
7648   uint64_t c = (sd.version >> 20) & 0x3ff;
7649   uint64_t d = (sd.version >> 10) & 0x3ff;
7650   uint64_t e = sd.version & 0x3ff;
7651   outs() << "  version " << a << "." << b;
7652   if (e != 0)
7653     outs() << "." << c << "." << d << "." << e;
7654   else if (d != 0)
7655     outs() << "." << c << "." << d;
7656   else if (c != 0)
7657     outs() << "." << c;
7658   outs() << "\n";
7659 }
7660
7661 static void PrintEntryPointCommand(MachO::entry_point_command ep) {
7662   outs() << "       cmd LC_MAIN\n";
7663   outs() << "   cmdsize " << ep.cmdsize;
7664   if (ep.cmdsize != sizeof(struct MachO::entry_point_command))
7665     outs() << " Incorrect size\n";
7666   else
7667     outs() << "\n";
7668   outs() << "  entryoff " << ep.entryoff << "\n";
7669   outs() << " stacksize " << ep.stacksize << "\n";
7670 }
7671
7672 static void PrintEncryptionInfoCommand(MachO::encryption_info_command ec,
7673                                        uint32_t object_size) {
7674   outs() << "          cmd LC_ENCRYPTION_INFO\n";
7675   outs() << "      cmdsize " << ec.cmdsize;
7676   if (ec.cmdsize != sizeof(struct MachO::encryption_info_command))
7677     outs() << " Incorrect size\n";
7678   else
7679     outs() << "\n";
7680   outs() << "     cryptoff " << ec.cryptoff;
7681   if (ec.cryptoff > object_size)
7682     outs() << " (past end of file)\n";
7683   else
7684     outs() << "\n";
7685   outs() << "    cryptsize " << ec.cryptsize;
7686   if (ec.cryptsize > object_size)
7687     outs() << " (past end of file)\n";
7688   else
7689     outs() << "\n";
7690   outs() << "      cryptid " << ec.cryptid << "\n";
7691 }
7692
7693 static void PrintEncryptionInfoCommand64(MachO::encryption_info_command_64 ec,
7694                                          uint32_t object_size) {
7695   outs() << "          cmd LC_ENCRYPTION_INFO_64\n";
7696   outs() << "      cmdsize " << ec.cmdsize;
7697   if (ec.cmdsize != sizeof(struct MachO::encryption_info_command_64))
7698     outs() << " Incorrect size\n";
7699   else
7700     outs() << "\n";
7701   outs() << "     cryptoff " << ec.cryptoff;
7702   if (ec.cryptoff > object_size)
7703     outs() << " (past end of file)\n";
7704   else
7705     outs() << "\n";
7706   outs() << "    cryptsize " << ec.cryptsize;
7707   if (ec.cryptsize > object_size)
7708     outs() << " (past end of file)\n";
7709   else
7710     outs() << "\n";
7711   outs() << "      cryptid " << ec.cryptid << "\n";
7712   outs() << "          pad " << ec.pad << "\n";
7713 }
7714
7715 static void PrintLinkerOptionCommand(MachO::linker_option_command lo,
7716                                      const char *Ptr) {
7717   outs() << "     cmd LC_LINKER_OPTION\n";
7718   outs() << " cmdsize " << lo.cmdsize;
7719   if (lo.cmdsize < sizeof(struct MachO::linker_option_command))
7720     outs() << " Incorrect size\n";
7721   else
7722     outs() << "\n";
7723   outs() << "   count " << lo.count << "\n";
7724   const char *string = Ptr + sizeof(struct MachO::linker_option_command);
7725   uint32_t left = lo.cmdsize - sizeof(struct MachO::linker_option_command);
7726   uint32_t i = 0;
7727   while (left > 0) {
7728     while (*string == '\0' && left > 0) {
7729       string++;
7730       left--;
7731     }
7732     if (left > 0) {
7733       i++;
7734       outs() << "  string #" << i << " " << format("%.*s\n", left, string);
7735       uint32_t NullPos = StringRef(string, left).find('\0');
7736       uint32_t len = std::min(NullPos, left) + 1;
7737       string += len;
7738       left -= len;
7739     }
7740   }
7741   if (lo.count != i)
7742     outs() << "   count " << lo.count << " does not match number of strings "
7743            << i << "\n";
7744 }
7745
7746 static void PrintSubFrameworkCommand(MachO::sub_framework_command sub,
7747                                      const char *Ptr) {
7748   outs() << "          cmd LC_SUB_FRAMEWORK\n";
7749   outs() << "      cmdsize " << sub.cmdsize;
7750   if (sub.cmdsize < sizeof(struct MachO::sub_framework_command))
7751     outs() << " Incorrect size\n";
7752   else
7753     outs() << "\n";
7754   if (sub.umbrella < sub.cmdsize) {
7755     const char *P = Ptr + sub.umbrella;
7756     outs() << "     umbrella " << P << " (offset " << sub.umbrella << ")\n";
7757   } else {
7758     outs() << "     umbrella ?(bad offset " << sub.umbrella << ")\n";
7759   }
7760 }
7761
7762 static void PrintSubUmbrellaCommand(MachO::sub_umbrella_command sub,
7763                                     const char *Ptr) {
7764   outs() << "          cmd LC_SUB_UMBRELLA\n";
7765   outs() << "      cmdsize " << sub.cmdsize;
7766   if (sub.cmdsize < sizeof(struct MachO::sub_umbrella_command))
7767     outs() << " Incorrect size\n";
7768   else
7769     outs() << "\n";
7770   if (sub.sub_umbrella < sub.cmdsize) {
7771     const char *P = Ptr + sub.sub_umbrella;
7772     outs() << " sub_umbrella " << P << " (offset " << sub.sub_umbrella << ")\n";
7773   } else {
7774     outs() << " sub_umbrella ?(bad offset " << sub.sub_umbrella << ")\n";
7775   }
7776 }
7777
7778 static void PrintSubLibraryCommand(MachO::sub_library_command sub,
7779                                    const char *Ptr) {
7780   outs() << "          cmd LC_SUB_LIBRARY\n";
7781   outs() << "      cmdsize " << sub.cmdsize;
7782   if (sub.cmdsize < sizeof(struct MachO::sub_library_command))
7783     outs() << " Incorrect size\n";
7784   else
7785     outs() << "\n";
7786   if (sub.sub_library < sub.cmdsize) {
7787     const char *P = Ptr + sub.sub_library;
7788     outs() << "  sub_library " << P << " (offset " << sub.sub_library << ")\n";
7789   } else {
7790     outs() << "  sub_library ?(bad offset " << sub.sub_library << ")\n";
7791   }
7792 }
7793
7794 static void PrintSubClientCommand(MachO::sub_client_command sub,
7795                                   const char *Ptr) {
7796   outs() << "          cmd LC_SUB_CLIENT\n";
7797   outs() << "      cmdsize " << sub.cmdsize;
7798   if (sub.cmdsize < sizeof(struct MachO::sub_client_command))
7799     outs() << " Incorrect size\n";
7800   else
7801     outs() << "\n";
7802   if (sub.client < sub.cmdsize) {
7803     const char *P = Ptr + sub.client;
7804     outs() << "       client " << P << " (offset " << sub.client << ")\n";
7805   } else {
7806     outs() << "       client ?(bad offset " << sub.client << ")\n";
7807   }
7808 }
7809
7810 static void PrintRoutinesCommand(MachO::routines_command r) {
7811   outs() << "          cmd LC_ROUTINES\n";
7812   outs() << "      cmdsize " << r.cmdsize;
7813   if (r.cmdsize != sizeof(struct MachO::routines_command))
7814     outs() << " Incorrect size\n";
7815   else
7816     outs() << "\n";
7817   outs() << " init_address " << format("0x%08" PRIx32, r.init_address) << "\n";
7818   outs() << "  init_module " << r.init_module << "\n";
7819   outs() << "    reserved1 " << r.reserved1 << "\n";
7820   outs() << "    reserved2 " << r.reserved2 << "\n";
7821   outs() << "    reserved3 " << r.reserved3 << "\n";
7822   outs() << "    reserved4 " << r.reserved4 << "\n";
7823   outs() << "    reserved5 " << r.reserved5 << "\n";
7824   outs() << "    reserved6 " << r.reserved6 << "\n";
7825 }
7826
7827 static void PrintRoutinesCommand64(MachO::routines_command_64 r) {
7828   outs() << "          cmd LC_ROUTINES_64\n";
7829   outs() << "      cmdsize " << r.cmdsize;
7830   if (r.cmdsize != sizeof(struct MachO::routines_command_64))
7831     outs() << " Incorrect size\n";
7832   else
7833     outs() << "\n";
7834   outs() << " init_address " << format("0x%016" PRIx64, r.init_address) << "\n";
7835   outs() << "  init_module " << r.init_module << "\n";
7836   outs() << "    reserved1 " << r.reserved1 << "\n";
7837   outs() << "    reserved2 " << r.reserved2 << "\n";
7838   outs() << "    reserved3 " << r.reserved3 << "\n";
7839   outs() << "    reserved4 " << r.reserved4 << "\n";
7840   outs() << "    reserved5 " << r.reserved5 << "\n";
7841   outs() << "    reserved6 " << r.reserved6 << "\n";
7842 }
7843
7844 static void Print_x86_thread_state64_t(MachO::x86_thread_state64_t &cpu64) {
7845   outs() << "   rax  " << format("0x%016" PRIx64, cpu64.rax);
7846   outs() << " rbx " << format("0x%016" PRIx64, cpu64.rbx);
7847   outs() << " rcx  " << format("0x%016" PRIx64, cpu64.rcx) << "\n";
7848   outs() << "   rdx  " << format("0x%016" PRIx64, cpu64.rdx);
7849   outs() << " rdi " << format("0x%016" PRIx64, cpu64.rdi);
7850   outs() << " rsi  " << format("0x%016" PRIx64, cpu64.rsi) << "\n";
7851   outs() << "   rbp  " << format("0x%016" PRIx64, cpu64.rbp);
7852   outs() << " rsp " << format("0x%016" PRIx64, cpu64.rsp);
7853   outs() << " r8   " << format("0x%016" PRIx64, cpu64.r8) << "\n";
7854   outs() << "    r9  " << format("0x%016" PRIx64, cpu64.r9);
7855   outs() << " r10 " << format("0x%016" PRIx64, cpu64.r10);
7856   outs() << " r11  " << format("0x%016" PRIx64, cpu64.r11) << "\n";
7857   outs() << "   r12  " << format("0x%016" PRIx64, cpu64.r12);
7858   outs() << " r13 " << format("0x%016" PRIx64, cpu64.r13);
7859   outs() << " r14  " << format("0x%016" PRIx64, cpu64.r14) << "\n";
7860   outs() << "   r15  " << format("0x%016" PRIx64, cpu64.r15);
7861   outs() << " rip " << format("0x%016" PRIx64, cpu64.rip) << "\n";
7862   outs() << "rflags  " << format("0x%016" PRIx64, cpu64.rflags);
7863   outs() << " cs  " << format("0x%016" PRIx64, cpu64.cs);
7864   outs() << " fs   " << format("0x%016" PRIx64, cpu64.fs) << "\n";
7865   outs() << "    gs  " << format("0x%016" PRIx64, cpu64.gs) << "\n";
7866 }
7867
7868 static void Print_mmst_reg(MachO::mmst_reg_t &r) {
7869   uint32_t f;
7870   outs() << "\t      mmst_reg  ";
7871   for (f = 0; f < 10; f++)
7872     outs() << format("%02" PRIx32, (r.mmst_reg[f] & 0xff)) << " ";
7873   outs() << "\n";
7874   outs() << "\t      mmst_rsrv ";
7875   for (f = 0; f < 6; f++)
7876     outs() << format("%02" PRIx32, (r.mmst_rsrv[f] & 0xff)) << " ";
7877   outs() << "\n";
7878 }
7879
7880 static void Print_xmm_reg(MachO::xmm_reg_t &r) {
7881   uint32_t f;
7882   outs() << "\t      xmm_reg ";
7883   for (f = 0; f < 16; f++)
7884     outs() << format("%02" PRIx32, (r.xmm_reg[f] & 0xff)) << " ";
7885   outs() << "\n";
7886 }
7887
7888 static void Print_x86_float_state_t(MachO::x86_float_state64_t &fpu) {
7889   outs() << "\t    fpu_reserved[0] " << fpu.fpu_reserved[0];
7890   outs() << " fpu_reserved[1] " << fpu.fpu_reserved[1] << "\n";
7891   outs() << "\t    control: invalid " << fpu.fpu_fcw.invalid;
7892   outs() << " denorm " << fpu.fpu_fcw.denorm;
7893   outs() << " zdiv " << fpu.fpu_fcw.zdiv;
7894   outs() << " ovrfl " << fpu.fpu_fcw.ovrfl;
7895   outs() << " undfl " << fpu.fpu_fcw.undfl;
7896   outs() << " precis " << fpu.fpu_fcw.precis << "\n";
7897   outs() << "\t\t     pc ";
7898   if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_24B)
7899     outs() << "FP_PREC_24B ";
7900   else if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_53B)
7901     outs() << "FP_PREC_53B ";
7902   else if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_64B)
7903     outs() << "FP_PREC_64B ";
7904   else
7905     outs() << fpu.fpu_fcw.pc << " ";
7906   outs() << "rc ";
7907   if (fpu.fpu_fcw.rc == MachO::x86_FP_RND_NEAR)
7908     outs() << "FP_RND_NEAR ";
7909   else if (fpu.fpu_fcw.rc == MachO::x86_FP_RND_DOWN)
7910     outs() << "FP_RND_DOWN ";
7911   else if (fpu.fpu_fcw.rc == MachO::x86_FP_RND_UP)
7912     outs() << "FP_RND_UP ";
7913   else if (fpu.fpu_fcw.rc == MachO::x86_FP_CHOP)
7914     outs() << "FP_CHOP ";
7915   outs() << "\n";
7916   outs() << "\t    status: invalid " << fpu.fpu_fsw.invalid;
7917   outs() << " denorm " << fpu.fpu_fsw.denorm;
7918   outs() << " zdiv " << fpu.fpu_fsw.zdiv;
7919   outs() << " ovrfl " << fpu.fpu_fsw.ovrfl;
7920   outs() << " undfl " << fpu.fpu_fsw.undfl;
7921   outs() << " precis " << fpu.fpu_fsw.precis;
7922   outs() << " stkflt " << fpu.fpu_fsw.stkflt << "\n";
7923   outs() << "\t            errsumm " << fpu.fpu_fsw.errsumm;
7924   outs() << " c0 " << fpu.fpu_fsw.c0;
7925   outs() << " c1 " << fpu.fpu_fsw.c1;
7926   outs() << " c2 " << fpu.fpu_fsw.c2;
7927   outs() << " tos " << fpu.fpu_fsw.tos;
7928   outs() << " c3 " << fpu.fpu_fsw.c3;
7929   outs() << " busy " << fpu.fpu_fsw.busy << "\n";
7930   outs() << "\t    fpu_ftw " << format("0x%02" PRIx32, fpu.fpu_ftw);
7931   outs() << " fpu_rsrv1 " << format("0x%02" PRIx32, fpu.fpu_rsrv1);
7932   outs() << " fpu_fop " << format("0x%04" PRIx32, fpu.fpu_fop);
7933   outs() << " fpu_ip " << format("0x%08" PRIx32, fpu.fpu_ip) << "\n";
7934   outs() << "\t    fpu_cs " << format("0x%04" PRIx32, fpu.fpu_cs);
7935   outs() << " fpu_rsrv2 " << format("0x%04" PRIx32, fpu.fpu_rsrv2);
7936   outs() << " fpu_dp " << format("0x%08" PRIx32, fpu.fpu_dp);
7937   outs() << " fpu_ds " << format("0x%04" PRIx32, fpu.fpu_ds) << "\n";
7938   outs() << "\t    fpu_rsrv3 " << format("0x%04" PRIx32, fpu.fpu_rsrv3);
7939   outs() << " fpu_mxcsr " << format("0x%08" PRIx32, fpu.fpu_mxcsr);
7940   outs() << " fpu_mxcsrmask " << format("0x%08" PRIx32, fpu.fpu_mxcsrmask);
7941   outs() << "\n";
7942   outs() << "\t    fpu_stmm0:\n";
7943   Print_mmst_reg(fpu.fpu_stmm0);
7944   outs() << "\t    fpu_stmm1:\n";
7945   Print_mmst_reg(fpu.fpu_stmm1);
7946   outs() << "\t    fpu_stmm2:\n";
7947   Print_mmst_reg(fpu.fpu_stmm2);
7948   outs() << "\t    fpu_stmm3:\n";
7949   Print_mmst_reg(fpu.fpu_stmm3);
7950   outs() << "\t    fpu_stmm4:\n";
7951   Print_mmst_reg(fpu.fpu_stmm4);
7952   outs() << "\t    fpu_stmm5:\n";
7953   Print_mmst_reg(fpu.fpu_stmm5);
7954   outs() << "\t    fpu_stmm6:\n";
7955   Print_mmst_reg(fpu.fpu_stmm6);
7956   outs() << "\t    fpu_stmm7:\n";
7957   Print_mmst_reg(fpu.fpu_stmm7);
7958   outs() << "\t    fpu_xmm0:\n";
7959   Print_xmm_reg(fpu.fpu_xmm0);
7960   outs() << "\t    fpu_xmm1:\n";
7961   Print_xmm_reg(fpu.fpu_xmm1);
7962   outs() << "\t    fpu_xmm2:\n";
7963   Print_xmm_reg(fpu.fpu_xmm2);
7964   outs() << "\t    fpu_xmm3:\n";
7965   Print_xmm_reg(fpu.fpu_xmm3);
7966   outs() << "\t    fpu_xmm4:\n";
7967   Print_xmm_reg(fpu.fpu_xmm4);
7968   outs() << "\t    fpu_xmm5:\n";
7969   Print_xmm_reg(fpu.fpu_xmm5);
7970   outs() << "\t    fpu_xmm6:\n";
7971   Print_xmm_reg(fpu.fpu_xmm6);
7972   outs() << "\t    fpu_xmm7:\n";
7973   Print_xmm_reg(fpu.fpu_xmm7);
7974   outs() << "\t    fpu_xmm8:\n";
7975   Print_xmm_reg(fpu.fpu_xmm8);
7976   outs() << "\t    fpu_xmm9:\n";
7977   Print_xmm_reg(fpu.fpu_xmm9);
7978   outs() << "\t    fpu_xmm10:\n";
7979   Print_xmm_reg(fpu.fpu_xmm10);
7980   outs() << "\t    fpu_xmm11:\n";
7981   Print_xmm_reg(fpu.fpu_xmm11);
7982   outs() << "\t    fpu_xmm12:\n";
7983   Print_xmm_reg(fpu.fpu_xmm12);
7984   outs() << "\t    fpu_xmm13:\n";
7985   Print_xmm_reg(fpu.fpu_xmm13);
7986   outs() << "\t    fpu_xmm14:\n";
7987   Print_xmm_reg(fpu.fpu_xmm14);
7988   outs() << "\t    fpu_xmm15:\n";
7989   Print_xmm_reg(fpu.fpu_xmm15);
7990   outs() << "\t    fpu_rsrv4:\n";
7991   for (uint32_t f = 0; f < 6; f++) {
7992     outs() << "\t            ";
7993     for (uint32_t g = 0; g < 16; g++)
7994       outs() << format("%02" PRIx32, fpu.fpu_rsrv4[f * g]) << " ";
7995     outs() << "\n";
7996   }
7997   outs() << "\t    fpu_reserved1 " << format("0x%08" PRIx32, fpu.fpu_reserved1);
7998   outs() << "\n";
7999 }
8000
8001 static void Print_x86_exception_state_t(MachO::x86_exception_state64_t &exc64) {
8002   outs() << "\t    trapno " << format("0x%08" PRIx32, exc64.trapno);
8003   outs() << " err " << format("0x%08" PRIx32, exc64.err);
8004   outs() << " faultvaddr " << format("0x%016" PRIx64, exc64.faultvaddr) << "\n";
8005 }
8006
8007 static void PrintThreadCommand(MachO::thread_command t, const char *Ptr,
8008                                bool isLittleEndian, uint32_t cputype) {
8009   if (t.cmd == MachO::LC_THREAD)
8010     outs() << "        cmd LC_THREAD\n";
8011   else if (t.cmd == MachO::LC_UNIXTHREAD)
8012     outs() << "        cmd LC_UNIXTHREAD\n";
8013   else
8014     outs() << "        cmd " << t.cmd << " (unknown)\n";
8015   outs() << "    cmdsize " << t.cmdsize;
8016   if (t.cmdsize < sizeof(struct MachO::thread_command) + 2 * sizeof(uint32_t))
8017     outs() << " Incorrect size\n";
8018   else
8019     outs() << "\n";
8020
8021   const char *begin = Ptr + sizeof(struct MachO::thread_command);
8022   const char *end = Ptr + t.cmdsize;
8023   uint32_t flavor, count, left;
8024   if (cputype == MachO::CPU_TYPE_X86_64) {
8025     while (begin < end) {
8026       if (end - begin > (ptrdiff_t)sizeof(uint32_t)) {
8027         memcpy((char *)&flavor, begin, sizeof(uint32_t));
8028         begin += sizeof(uint32_t);
8029       } else {
8030         flavor = 0;
8031         begin = end;
8032       }
8033       if (isLittleEndian != sys::IsLittleEndianHost)
8034         sys::swapByteOrder(flavor);
8035       if (end - begin > (ptrdiff_t)sizeof(uint32_t)) {
8036         memcpy((char *)&count, begin, sizeof(uint32_t));
8037         begin += sizeof(uint32_t);
8038       } else {
8039         count = 0;
8040         begin = end;
8041       }
8042       if (isLittleEndian != sys::IsLittleEndianHost)
8043         sys::swapByteOrder(count);
8044       if (flavor == MachO::x86_THREAD_STATE64) {
8045         outs() << "     flavor x86_THREAD_STATE64\n";
8046         if (count == MachO::x86_THREAD_STATE64_COUNT)
8047           outs() << "      count x86_THREAD_STATE64_COUNT\n";
8048         else
8049           outs() << "      count " << count
8050                  << " (not x86_THREAD_STATE64_COUNT)\n";
8051         MachO::x86_thread_state64_t cpu64;
8052         left = end - begin;
8053         if (left >= sizeof(MachO::x86_thread_state64_t)) {
8054           memcpy(&cpu64, begin, sizeof(MachO::x86_thread_state64_t));
8055           begin += sizeof(MachO::x86_thread_state64_t);
8056         } else {
8057           memset(&cpu64, '\0', sizeof(MachO::x86_thread_state64_t));
8058           memcpy(&cpu64, begin, left);
8059           begin += left;
8060         }
8061         if (isLittleEndian != sys::IsLittleEndianHost)
8062           swapStruct(cpu64);
8063         Print_x86_thread_state64_t(cpu64);
8064       } else if (flavor == MachO::x86_THREAD_STATE) {
8065         outs() << "     flavor x86_THREAD_STATE\n";
8066         if (count == MachO::x86_THREAD_STATE_COUNT)
8067           outs() << "      count x86_THREAD_STATE_COUNT\n";
8068         else
8069           outs() << "      count " << count
8070                  << " (not x86_THREAD_STATE_COUNT)\n";
8071         struct MachO::x86_thread_state_t ts;
8072         left = end - begin;
8073         if (left >= sizeof(MachO::x86_thread_state_t)) {
8074           memcpy(&ts, begin, sizeof(MachO::x86_thread_state_t));
8075           begin += sizeof(MachO::x86_thread_state_t);
8076         } else {
8077           memset(&ts, '\0', sizeof(MachO::x86_thread_state_t));
8078           memcpy(&ts, begin, left);
8079           begin += left;
8080         }
8081         if (isLittleEndian != sys::IsLittleEndianHost)
8082           swapStruct(ts);
8083         if (ts.tsh.flavor == MachO::x86_THREAD_STATE64) {
8084           outs() << "\t    tsh.flavor x86_THREAD_STATE64 ";
8085           if (ts.tsh.count == MachO::x86_THREAD_STATE64_COUNT)
8086             outs() << "tsh.count x86_THREAD_STATE64_COUNT\n";
8087           else
8088             outs() << "tsh.count " << ts.tsh.count
8089                    << " (not x86_THREAD_STATE64_COUNT\n";
8090           Print_x86_thread_state64_t(ts.uts.ts64);
8091         } else {
8092           outs() << "\t    tsh.flavor " << ts.tsh.flavor << "  tsh.count "
8093                  << ts.tsh.count << "\n";
8094         }
8095       } else if (flavor == MachO::x86_FLOAT_STATE) {
8096         outs() << "     flavor x86_FLOAT_STATE\n";
8097         if (count == MachO::x86_FLOAT_STATE_COUNT)
8098           outs() << "      count x86_FLOAT_STATE_COUNT\n";
8099         else
8100           outs() << "      count " << count << " (not x86_FLOAT_STATE_COUNT)\n";
8101         struct MachO::x86_float_state_t fs;
8102         left = end - begin;
8103         if (left >= sizeof(MachO::x86_float_state_t)) {
8104           memcpy(&fs, begin, sizeof(MachO::x86_float_state_t));
8105           begin += sizeof(MachO::x86_float_state_t);
8106         } else {
8107           memset(&fs, '\0', sizeof(MachO::x86_float_state_t));
8108           memcpy(&fs, begin, left);
8109           begin += left;
8110         }
8111         if (isLittleEndian != sys::IsLittleEndianHost)
8112           swapStruct(fs);
8113         if (fs.fsh.flavor == MachO::x86_FLOAT_STATE64) {
8114           outs() << "\t    fsh.flavor x86_FLOAT_STATE64 ";
8115           if (fs.fsh.count == MachO::x86_FLOAT_STATE64_COUNT)
8116             outs() << "fsh.count x86_FLOAT_STATE64_COUNT\n";
8117           else
8118             outs() << "fsh.count " << fs.fsh.count
8119                    << " (not x86_FLOAT_STATE64_COUNT\n";
8120           Print_x86_float_state_t(fs.ufs.fs64);
8121         } else {
8122           outs() << "\t    fsh.flavor " << fs.fsh.flavor << "  fsh.count "
8123                  << fs.fsh.count << "\n";
8124         }
8125       } else if (flavor == MachO::x86_EXCEPTION_STATE) {
8126         outs() << "     flavor x86_EXCEPTION_STATE\n";
8127         if (count == MachO::x86_EXCEPTION_STATE_COUNT)
8128           outs() << "      count x86_EXCEPTION_STATE_COUNT\n";
8129         else
8130           outs() << "      count " << count
8131                  << " (not x86_EXCEPTION_STATE_COUNT)\n";
8132         struct MachO::x86_exception_state_t es;
8133         left = end - begin;
8134         if (left >= sizeof(MachO::x86_exception_state_t)) {
8135           memcpy(&es, begin, sizeof(MachO::x86_exception_state_t));
8136           begin += sizeof(MachO::x86_exception_state_t);
8137         } else {
8138           memset(&es, '\0', sizeof(MachO::x86_exception_state_t));
8139           memcpy(&es, begin, left);
8140           begin += left;
8141         }
8142         if (isLittleEndian != sys::IsLittleEndianHost)
8143           swapStruct(es);
8144         if (es.esh.flavor == MachO::x86_EXCEPTION_STATE64) {
8145           outs() << "\t    esh.flavor x86_EXCEPTION_STATE64\n";
8146           if (es.esh.count == MachO::x86_EXCEPTION_STATE64_COUNT)
8147             outs() << "\t    esh.count x86_EXCEPTION_STATE64_COUNT\n";
8148           else
8149             outs() << "\t    esh.count " << es.esh.count
8150                    << " (not x86_EXCEPTION_STATE64_COUNT\n";
8151           Print_x86_exception_state_t(es.ues.es64);
8152         } else {
8153           outs() << "\t    esh.flavor " << es.esh.flavor << "  esh.count "
8154                  << es.esh.count << "\n";
8155         }
8156       } else {
8157         outs() << "     flavor " << flavor << " (unknown)\n";
8158         outs() << "      count " << count << "\n";
8159         outs() << "      state (unknown)\n";
8160         begin += count * sizeof(uint32_t);
8161       }
8162     }
8163   } else {
8164     while (begin < end) {
8165       if (end - begin > (ptrdiff_t)sizeof(uint32_t)) {
8166         memcpy((char *)&flavor, begin, sizeof(uint32_t));
8167         begin += sizeof(uint32_t);
8168       } else {
8169         flavor = 0;
8170         begin = end;
8171       }
8172       if (isLittleEndian != sys::IsLittleEndianHost)
8173         sys::swapByteOrder(flavor);
8174       if (end - begin > (ptrdiff_t)sizeof(uint32_t)) {
8175         memcpy((char *)&count, begin, sizeof(uint32_t));
8176         begin += sizeof(uint32_t);
8177       } else {
8178         count = 0;
8179         begin = end;
8180       }
8181       if (isLittleEndian != sys::IsLittleEndianHost)
8182         sys::swapByteOrder(count);
8183       outs() << "     flavor " << flavor << "\n";
8184       outs() << "      count " << count << "\n";
8185       outs() << "      state (Unknown cputype/cpusubtype)\n";
8186       begin += count * sizeof(uint32_t);
8187     }
8188   }
8189 }
8190
8191 static void PrintDylibCommand(MachO::dylib_command dl, const char *Ptr) {
8192   if (dl.cmd == MachO::LC_ID_DYLIB)
8193     outs() << "          cmd LC_ID_DYLIB\n";
8194   else if (dl.cmd == MachO::LC_LOAD_DYLIB)
8195     outs() << "          cmd LC_LOAD_DYLIB\n";
8196   else if (dl.cmd == MachO::LC_LOAD_WEAK_DYLIB)
8197     outs() << "          cmd LC_LOAD_WEAK_DYLIB\n";
8198   else if (dl.cmd == MachO::LC_REEXPORT_DYLIB)
8199     outs() << "          cmd LC_REEXPORT_DYLIB\n";
8200   else if (dl.cmd == MachO::LC_LAZY_LOAD_DYLIB)
8201     outs() << "          cmd LC_LAZY_LOAD_DYLIB\n";
8202   else if (dl.cmd == MachO::LC_LOAD_UPWARD_DYLIB)
8203     outs() << "          cmd LC_LOAD_UPWARD_DYLIB\n";
8204   else
8205     outs() << "          cmd " << dl.cmd << " (unknown)\n";
8206   outs() << "      cmdsize " << dl.cmdsize;
8207   if (dl.cmdsize < sizeof(struct MachO::dylib_command))
8208     outs() << " Incorrect size\n";
8209   else
8210     outs() << "\n";
8211   if (dl.dylib.name < dl.cmdsize) {
8212     const char *P = (const char *)(Ptr) + dl.dylib.name;
8213     outs() << "         name " << P << " (offset " << dl.dylib.name << ")\n";
8214   } else {
8215     outs() << "         name ?(bad offset " << dl.dylib.name << ")\n";
8216   }
8217   outs() << "   time stamp " << dl.dylib.timestamp << " ";
8218   time_t t = dl.dylib.timestamp;
8219   outs() << ctime(&t);
8220   outs() << "      current version ";
8221   if (dl.dylib.current_version == 0xffffffff)
8222     outs() << "n/a\n";
8223   else
8224     outs() << ((dl.dylib.current_version >> 16) & 0xffff) << "."
8225            << ((dl.dylib.current_version >> 8) & 0xff) << "."
8226            << (dl.dylib.current_version & 0xff) << "\n";
8227   outs() << "compatibility version ";
8228   if (dl.dylib.compatibility_version == 0xffffffff)
8229     outs() << "n/a\n";
8230   else
8231     outs() << ((dl.dylib.compatibility_version >> 16) & 0xffff) << "."
8232            << ((dl.dylib.compatibility_version >> 8) & 0xff) << "."
8233            << (dl.dylib.compatibility_version & 0xff) << "\n";
8234 }
8235
8236 static void PrintLinkEditDataCommand(MachO::linkedit_data_command ld,
8237                                      uint32_t object_size) {
8238   if (ld.cmd == MachO::LC_CODE_SIGNATURE)
8239     outs() << "      cmd LC_FUNCTION_STARTS\n";
8240   else if (ld.cmd == MachO::LC_SEGMENT_SPLIT_INFO)
8241     outs() << "      cmd LC_SEGMENT_SPLIT_INFO\n";
8242   else if (ld.cmd == MachO::LC_FUNCTION_STARTS)
8243     outs() << "      cmd LC_FUNCTION_STARTS\n";
8244   else if (ld.cmd == MachO::LC_DATA_IN_CODE)
8245     outs() << "      cmd LC_DATA_IN_CODE\n";
8246   else if (ld.cmd == MachO::LC_DYLIB_CODE_SIGN_DRS)
8247     outs() << "      cmd LC_DYLIB_CODE_SIGN_DRS\n";
8248   else if (ld.cmd == MachO::LC_LINKER_OPTIMIZATION_HINT)
8249     outs() << "      cmd LC_LINKER_OPTIMIZATION_HINT\n";
8250   else
8251     outs() << "      cmd " << ld.cmd << " (?)\n";
8252   outs() << "  cmdsize " << ld.cmdsize;
8253   if (ld.cmdsize != sizeof(struct MachO::linkedit_data_command))
8254     outs() << " Incorrect size\n";
8255   else
8256     outs() << "\n";
8257   outs() << "  dataoff " << ld.dataoff;
8258   if (ld.dataoff > object_size)
8259     outs() << " (past end of file)\n";
8260   else
8261     outs() << "\n";
8262   outs() << " datasize " << ld.datasize;
8263   uint64_t big_size = ld.dataoff;
8264   big_size += ld.datasize;
8265   if (big_size > object_size)
8266     outs() << " (past end of file)\n";
8267   else
8268     outs() << "\n";
8269 }
8270
8271 static void PrintLoadCommands(const MachOObjectFile *Obj, uint32_t filetype,
8272                               uint32_t cputype, bool verbose) {
8273   StringRef Buf = Obj->getData();
8274   unsigned Index = 0;
8275   for (const auto &Command : Obj->load_commands()) {
8276     outs() << "Load command " << Index++ << "\n";
8277     if (Command.C.cmd == MachO::LC_SEGMENT) {
8278       MachO::segment_command SLC = Obj->getSegmentLoadCommand(Command);
8279       const char *sg_segname = SLC.segname;
8280       PrintSegmentCommand(SLC.cmd, SLC.cmdsize, SLC.segname, SLC.vmaddr,
8281                           SLC.vmsize, SLC.fileoff, SLC.filesize, SLC.maxprot,
8282                           SLC.initprot, SLC.nsects, SLC.flags, Buf.size(),
8283                           verbose);
8284       for (unsigned j = 0; j < SLC.nsects; j++) {
8285         MachO::section S = Obj->getSection(Command, j);
8286         PrintSection(S.sectname, S.segname, S.addr, S.size, S.offset, S.align,
8287                      S.reloff, S.nreloc, S.flags, S.reserved1, S.reserved2,
8288                      SLC.cmd, sg_segname, filetype, Buf.size(), verbose);
8289       }
8290     } else if (Command.C.cmd == MachO::LC_SEGMENT_64) {
8291       MachO::segment_command_64 SLC_64 = Obj->getSegment64LoadCommand(Command);
8292       const char *sg_segname = SLC_64.segname;
8293       PrintSegmentCommand(SLC_64.cmd, SLC_64.cmdsize, SLC_64.segname,
8294                           SLC_64.vmaddr, SLC_64.vmsize, SLC_64.fileoff,
8295                           SLC_64.filesize, SLC_64.maxprot, SLC_64.initprot,
8296                           SLC_64.nsects, SLC_64.flags, Buf.size(), verbose);
8297       for (unsigned j = 0; j < SLC_64.nsects; j++) {
8298         MachO::section_64 S_64 = Obj->getSection64(Command, j);
8299         PrintSection(S_64.sectname, S_64.segname, S_64.addr, S_64.size,
8300                      S_64.offset, S_64.align, S_64.reloff, S_64.nreloc,
8301                      S_64.flags, S_64.reserved1, S_64.reserved2, SLC_64.cmd,
8302                      sg_segname, filetype, Buf.size(), verbose);
8303       }
8304     } else if (Command.C.cmd == MachO::LC_SYMTAB) {
8305       MachO::symtab_command Symtab = Obj->getSymtabLoadCommand();
8306       PrintSymtabLoadCommand(Symtab, Obj->is64Bit(), Buf.size());
8307     } else if (Command.C.cmd == MachO::LC_DYSYMTAB) {
8308       MachO::dysymtab_command Dysymtab = Obj->getDysymtabLoadCommand();
8309       MachO::symtab_command Symtab = Obj->getSymtabLoadCommand();
8310       PrintDysymtabLoadCommand(Dysymtab, Symtab.nsyms, Buf.size(),
8311                                Obj->is64Bit());
8312     } else if (Command.C.cmd == MachO::LC_DYLD_INFO ||
8313                Command.C.cmd == MachO::LC_DYLD_INFO_ONLY) {
8314       MachO::dyld_info_command DyldInfo = Obj->getDyldInfoLoadCommand(Command);
8315       PrintDyldInfoLoadCommand(DyldInfo, Buf.size());
8316     } else if (Command.C.cmd == MachO::LC_LOAD_DYLINKER ||
8317                Command.C.cmd == MachO::LC_ID_DYLINKER ||
8318                Command.C.cmd == MachO::LC_DYLD_ENVIRONMENT) {
8319       MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command);
8320       PrintDyldLoadCommand(Dyld, Command.Ptr);
8321     } else if (Command.C.cmd == MachO::LC_UUID) {
8322       MachO::uuid_command Uuid = Obj->getUuidCommand(Command);
8323       PrintUuidLoadCommand(Uuid);
8324     } else if (Command.C.cmd == MachO::LC_RPATH) {
8325       MachO::rpath_command Rpath = Obj->getRpathCommand(Command);
8326       PrintRpathLoadCommand(Rpath, Command.Ptr);
8327     } else if (Command.C.cmd == MachO::LC_VERSION_MIN_MACOSX ||
8328                Command.C.cmd == MachO::LC_VERSION_MIN_IPHONEOS ||
8329                Command.C.cmd == MachO::LC_VERSION_MIN_TVOS ||
8330                Command.C.cmd == MachO::LC_VERSION_MIN_WATCHOS) {
8331       MachO::version_min_command Vd = Obj->getVersionMinLoadCommand(Command);
8332       PrintVersionMinLoadCommand(Vd);
8333     } else if (Command.C.cmd == MachO::LC_SOURCE_VERSION) {
8334       MachO::source_version_command Sd = Obj->getSourceVersionCommand(Command);
8335       PrintSourceVersionCommand(Sd);
8336     } else if (Command.C.cmd == MachO::LC_MAIN) {
8337       MachO::entry_point_command Ep = Obj->getEntryPointCommand(Command);
8338       PrintEntryPointCommand(Ep);
8339     } else if (Command.C.cmd == MachO::LC_ENCRYPTION_INFO) {
8340       MachO::encryption_info_command Ei =
8341           Obj->getEncryptionInfoCommand(Command);
8342       PrintEncryptionInfoCommand(Ei, Buf.size());
8343     } else if (Command.C.cmd == MachO::LC_ENCRYPTION_INFO_64) {
8344       MachO::encryption_info_command_64 Ei =
8345           Obj->getEncryptionInfoCommand64(Command);
8346       PrintEncryptionInfoCommand64(Ei, Buf.size());
8347     } else if (Command.C.cmd == MachO::LC_LINKER_OPTION) {
8348       MachO::linker_option_command Lo =
8349           Obj->getLinkerOptionLoadCommand(Command);
8350       PrintLinkerOptionCommand(Lo, Command.Ptr);
8351     } else if (Command.C.cmd == MachO::LC_SUB_FRAMEWORK) {
8352       MachO::sub_framework_command Sf = Obj->getSubFrameworkCommand(Command);
8353       PrintSubFrameworkCommand(Sf, Command.Ptr);
8354     } else if (Command.C.cmd == MachO::LC_SUB_UMBRELLA) {
8355       MachO::sub_umbrella_command Sf = Obj->getSubUmbrellaCommand(Command);
8356       PrintSubUmbrellaCommand(Sf, Command.Ptr);
8357     } else if (Command.C.cmd == MachO::LC_SUB_LIBRARY) {
8358       MachO::sub_library_command Sl = Obj->getSubLibraryCommand(Command);
8359       PrintSubLibraryCommand(Sl, Command.Ptr);
8360     } else if (Command.C.cmd == MachO::LC_SUB_CLIENT) {
8361       MachO::sub_client_command Sc = Obj->getSubClientCommand(Command);
8362       PrintSubClientCommand(Sc, Command.Ptr);
8363     } else if (Command.C.cmd == MachO::LC_ROUTINES) {
8364       MachO::routines_command Rc = Obj->getRoutinesCommand(Command);
8365       PrintRoutinesCommand(Rc);
8366     } else if (Command.C.cmd == MachO::LC_ROUTINES_64) {
8367       MachO::routines_command_64 Rc = Obj->getRoutinesCommand64(Command);
8368       PrintRoutinesCommand64(Rc);
8369     } else if (Command.C.cmd == MachO::LC_THREAD ||
8370                Command.C.cmd == MachO::LC_UNIXTHREAD) {
8371       MachO::thread_command Tc = Obj->getThreadCommand(Command);
8372       PrintThreadCommand(Tc, Command.Ptr, Obj->isLittleEndian(), cputype);
8373     } else if (Command.C.cmd == MachO::LC_LOAD_DYLIB ||
8374                Command.C.cmd == MachO::LC_ID_DYLIB ||
8375                Command.C.cmd == MachO::LC_LOAD_WEAK_DYLIB ||
8376                Command.C.cmd == MachO::LC_REEXPORT_DYLIB ||
8377                Command.C.cmd == MachO::LC_LAZY_LOAD_DYLIB ||
8378                Command.C.cmd == MachO::LC_LOAD_UPWARD_DYLIB) {
8379       MachO::dylib_command Dl = Obj->getDylibIDLoadCommand(Command);
8380       PrintDylibCommand(Dl, Command.Ptr);
8381     } else if (Command.C.cmd == MachO::LC_CODE_SIGNATURE ||
8382                Command.C.cmd == MachO::LC_SEGMENT_SPLIT_INFO ||
8383                Command.C.cmd == MachO::LC_FUNCTION_STARTS ||
8384                Command.C.cmd == MachO::LC_DATA_IN_CODE ||
8385                Command.C.cmd == MachO::LC_DYLIB_CODE_SIGN_DRS ||
8386                Command.C.cmd == MachO::LC_LINKER_OPTIMIZATION_HINT) {
8387       MachO::linkedit_data_command Ld =
8388           Obj->getLinkeditDataLoadCommand(Command);
8389       PrintLinkEditDataCommand(Ld, Buf.size());
8390     } else {
8391       outs() << "      cmd ?(" << format("0x%08" PRIx32, Command.C.cmd)
8392              << ")\n";
8393       outs() << "  cmdsize " << Command.C.cmdsize << "\n";
8394       // TODO: get and print the raw bytes of the load command.
8395     }
8396     // TODO: print all the other kinds of load commands.
8397   }
8398 }
8399
8400 static void getAndPrintMachHeader(const MachOObjectFile *Obj,
8401                                   uint32_t &filetype, uint32_t &cputype,
8402                                   bool verbose) {
8403   if (Obj->is64Bit()) {
8404     MachO::mach_header_64 H_64;
8405     H_64 = Obj->getHeader64();
8406     PrintMachHeader(H_64.magic, H_64.cputype, H_64.cpusubtype, H_64.filetype,
8407                     H_64.ncmds, H_64.sizeofcmds, H_64.flags, verbose);
8408     filetype = H_64.filetype;
8409     cputype = H_64.cputype;
8410   } else {
8411     MachO::mach_header H;
8412     H = Obj->getHeader();
8413     PrintMachHeader(H.magic, H.cputype, H.cpusubtype, H.filetype, H.ncmds,
8414                     H.sizeofcmds, H.flags, verbose);
8415     filetype = H.filetype;
8416     cputype = H.cputype;
8417   }
8418 }
8419
8420 void llvm::printMachOFileHeader(const object::ObjectFile *Obj) {
8421   const MachOObjectFile *file = dyn_cast<const MachOObjectFile>(Obj);
8422   uint32_t filetype = 0;
8423   uint32_t cputype = 0;
8424   getAndPrintMachHeader(file, filetype, cputype, !NonVerbose);
8425   PrintLoadCommands(file, filetype, cputype, !NonVerbose);
8426 }
8427
8428 //===----------------------------------------------------------------------===//
8429 // export trie dumping
8430 //===----------------------------------------------------------------------===//
8431
8432 void llvm::printMachOExportsTrie(const object::MachOObjectFile *Obj) {
8433   for (const llvm::object::ExportEntry &Entry : Obj->exports()) {
8434     uint64_t Flags = Entry.flags();
8435     bool ReExport = (Flags & MachO::EXPORT_SYMBOL_FLAGS_REEXPORT);
8436     bool WeakDef = (Flags & MachO::EXPORT_SYMBOL_FLAGS_WEAK_DEFINITION);
8437     bool ThreadLocal = ((Flags & MachO::EXPORT_SYMBOL_FLAGS_KIND_MASK) ==
8438                         MachO::EXPORT_SYMBOL_FLAGS_KIND_THREAD_LOCAL);
8439     bool Abs = ((Flags & MachO::EXPORT_SYMBOL_FLAGS_KIND_MASK) ==
8440                 MachO::EXPORT_SYMBOL_FLAGS_KIND_ABSOLUTE);
8441     bool Resolver = (Flags & MachO::EXPORT_SYMBOL_FLAGS_STUB_AND_RESOLVER);
8442     if (ReExport)
8443       outs() << "[re-export] ";
8444     else
8445       outs() << format("0x%08llX  ",
8446                        Entry.address()); // FIXME:add in base address
8447     outs() << Entry.name();
8448     if (WeakDef || ThreadLocal || Resolver || Abs) {
8449       bool NeedsComma = false;
8450       outs() << " [";
8451       if (WeakDef) {
8452         outs() << "weak_def";
8453         NeedsComma = true;
8454       }
8455       if (ThreadLocal) {
8456         if (NeedsComma)
8457           outs() << ", ";
8458         outs() << "per-thread";
8459         NeedsComma = true;
8460       }
8461       if (Abs) {
8462         if (NeedsComma)
8463           outs() << ", ";
8464         outs() << "absolute";
8465         NeedsComma = true;
8466       }
8467       if (Resolver) {
8468         if (NeedsComma)
8469           outs() << ", ";
8470         outs() << format("resolver=0x%08llX", Entry.other());
8471         NeedsComma = true;
8472       }
8473       outs() << "]";
8474     }
8475     if (ReExport) {
8476       StringRef DylibName = "unknown";
8477       int Ordinal = Entry.other() - 1;
8478       Obj->getLibraryShortNameByIndex(Ordinal, DylibName);
8479       if (Entry.otherName().empty())
8480         outs() << " (from " << DylibName << ")";
8481       else
8482         outs() << " (" << Entry.otherName() << " from " << DylibName << ")";
8483     }
8484     outs() << "\n";
8485   }
8486 }
8487
8488 //===----------------------------------------------------------------------===//
8489 // rebase table dumping
8490 //===----------------------------------------------------------------------===//
8491
8492 namespace {
8493 class SegInfo {
8494 public:
8495   SegInfo(const object::MachOObjectFile *Obj);
8496
8497   StringRef segmentName(uint32_t SegIndex);
8498   StringRef sectionName(uint32_t SegIndex, uint64_t SegOffset);
8499   uint64_t address(uint32_t SegIndex, uint64_t SegOffset);
8500   bool isValidSegIndexAndOffset(uint32_t SegIndex, uint64_t SegOffset);
8501
8502 private:
8503   struct SectionInfo {
8504     uint64_t Address;
8505     uint64_t Size;
8506     StringRef SectionName;
8507     StringRef SegmentName;
8508     uint64_t OffsetInSegment;
8509     uint64_t SegmentStartAddress;
8510     uint32_t SegmentIndex;
8511   };
8512   const SectionInfo &findSection(uint32_t SegIndex, uint64_t SegOffset);
8513   SmallVector<SectionInfo, 32> Sections;
8514 };
8515 }
8516
8517 SegInfo::SegInfo(const object::MachOObjectFile *Obj) {
8518   // Build table of sections so segIndex/offset pairs can be translated.
8519   uint32_t CurSegIndex = Obj->hasPageZeroSegment() ? 1 : 0;
8520   StringRef CurSegName;
8521   uint64_t CurSegAddress;
8522   for (const SectionRef &Section : Obj->sections()) {
8523     SectionInfo Info;
8524     error(Section.getName(Info.SectionName));
8525     Info.Address = Section.getAddress();
8526     Info.Size = Section.getSize();
8527     Info.SegmentName =
8528         Obj->getSectionFinalSegmentName(Section.getRawDataRefImpl());
8529     if (!Info.SegmentName.equals(CurSegName)) {
8530       ++CurSegIndex;
8531       CurSegName = Info.SegmentName;
8532       CurSegAddress = Info.Address;
8533     }
8534     Info.SegmentIndex = CurSegIndex - 1;
8535     Info.OffsetInSegment = Info.Address - CurSegAddress;
8536     Info.SegmentStartAddress = CurSegAddress;
8537     Sections.push_back(Info);
8538   }
8539 }
8540
8541 StringRef SegInfo::segmentName(uint32_t SegIndex) {
8542   for (const SectionInfo &SI : Sections) {
8543     if (SI.SegmentIndex == SegIndex)
8544       return SI.SegmentName;
8545   }
8546   llvm_unreachable("invalid segIndex");
8547 }
8548
8549 bool SegInfo::isValidSegIndexAndOffset(uint32_t SegIndex,
8550                                        uint64_t OffsetInSeg) {
8551   for (const SectionInfo &SI : Sections) {
8552     if (SI.SegmentIndex != SegIndex)
8553       continue;
8554     if (SI.OffsetInSegment > OffsetInSeg)
8555       continue;
8556     if (OffsetInSeg >= (SI.OffsetInSegment + SI.Size))
8557       continue;
8558     return true;
8559   }
8560   return false;
8561 }
8562
8563 const SegInfo::SectionInfo &SegInfo::findSection(uint32_t SegIndex,
8564                                                  uint64_t OffsetInSeg) {
8565   for (const SectionInfo &SI : Sections) {
8566     if (SI.SegmentIndex != SegIndex)
8567       continue;
8568     if (SI.OffsetInSegment > OffsetInSeg)
8569       continue;
8570     if (OffsetInSeg >= (SI.OffsetInSegment + SI.Size))
8571       continue;
8572     return SI;
8573   }
8574   llvm_unreachable("segIndex and offset not in any section");
8575 }
8576
8577 StringRef SegInfo::sectionName(uint32_t SegIndex, uint64_t OffsetInSeg) {
8578   return findSection(SegIndex, OffsetInSeg).SectionName;
8579 }
8580
8581 uint64_t SegInfo::address(uint32_t SegIndex, uint64_t OffsetInSeg) {
8582   const SectionInfo &SI = findSection(SegIndex, OffsetInSeg);
8583   return SI.SegmentStartAddress + OffsetInSeg;
8584 }
8585
8586 void llvm::printMachORebaseTable(const object::MachOObjectFile *Obj) {
8587   // Build table of sections so names can used in final output.
8588   SegInfo sectionTable(Obj);
8589
8590   outs() << "segment  section            address     type\n";
8591   for (const llvm::object::MachORebaseEntry &Entry : Obj->rebaseTable()) {
8592     uint32_t SegIndex = Entry.segmentIndex();
8593     uint64_t OffsetInSeg = Entry.segmentOffset();
8594     StringRef SegmentName = sectionTable.segmentName(SegIndex);
8595     StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg);
8596     uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8597
8598     // Table lines look like: __DATA  __nl_symbol_ptr  0x0000F00C  pointer
8599     outs() << format("%-8s %-18s 0x%08" PRIX64 "  %s\n",
8600                      SegmentName.str().c_str(), SectionName.str().c_str(),
8601                      Address, Entry.typeName().str().c_str());
8602   }
8603 }
8604
8605 static StringRef ordinalName(const object::MachOObjectFile *Obj, int Ordinal) {
8606   StringRef DylibName;
8607   switch (Ordinal) {
8608   case MachO::BIND_SPECIAL_DYLIB_SELF:
8609     return "this-image";
8610   case MachO::BIND_SPECIAL_DYLIB_MAIN_EXECUTABLE:
8611     return "main-executable";
8612   case MachO::BIND_SPECIAL_DYLIB_FLAT_LOOKUP:
8613     return "flat-namespace";
8614   default:
8615     if (Ordinal > 0) {
8616       std::error_code EC =
8617           Obj->getLibraryShortNameByIndex(Ordinal - 1, DylibName);
8618       if (EC)
8619         return "<<bad library ordinal>>";
8620       return DylibName;
8621     }
8622   }
8623   return "<<unknown special ordinal>>";
8624 }
8625
8626 //===----------------------------------------------------------------------===//
8627 // bind table dumping
8628 //===----------------------------------------------------------------------===//
8629
8630 void llvm::printMachOBindTable(const object::MachOObjectFile *Obj) {
8631   // Build table of sections so names can used in final output.
8632   SegInfo sectionTable(Obj);
8633
8634   outs() << "segment  section            address    type       "
8635             "addend dylib            symbol\n";
8636   for (const llvm::object::MachOBindEntry &Entry : Obj->bindTable()) {
8637     uint32_t SegIndex = Entry.segmentIndex();
8638     uint64_t OffsetInSeg = Entry.segmentOffset();
8639     StringRef SegmentName = sectionTable.segmentName(SegIndex);
8640     StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg);
8641     uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8642
8643     // Table lines look like:
8644     //  __DATA  __got  0x00012010    pointer   0 libSystem ___stack_chk_guard
8645     StringRef Attr;
8646     if (Entry.flags() & MachO::BIND_SYMBOL_FLAGS_WEAK_IMPORT)
8647       Attr = " (weak_import)";
8648     outs() << left_justify(SegmentName, 8) << " "
8649            << left_justify(SectionName, 18) << " "
8650            << format_hex(Address, 10, true) << " "
8651            << left_justify(Entry.typeName(), 8) << " "
8652            << format_decimal(Entry.addend(), 8) << " "
8653            << left_justify(ordinalName(Obj, Entry.ordinal()), 16) << " "
8654            << Entry.symbolName() << Attr << "\n";
8655   }
8656 }
8657
8658 //===----------------------------------------------------------------------===//
8659 // lazy bind table dumping
8660 //===----------------------------------------------------------------------===//
8661
8662 void llvm::printMachOLazyBindTable(const object::MachOObjectFile *Obj) {
8663   // Build table of sections so names can used in final output.
8664   SegInfo sectionTable(Obj);
8665
8666   outs() << "segment  section            address     "
8667             "dylib            symbol\n";
8668   for (const llvm::object::MachOBindEntry &Entry : Obj->lazyBindTable()) {
8669     uint32_t SegIndex = Entry.segmentIndex();
8670     uint64_t OffsetInSeg = Entry.segmentOffset();
8671     StringRef SegmentName = sectionTable.segmentName(SegIndex);
8672     StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg);
8673     uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8674
8675     // Table lines look like:
8676     //  __DATA  __got  0x00012010 libSystem ___stack_chk_guard
8677     outs() << left_justify(SegmentName, 8) << " "
8678            << left_justify(SectionName, 18) << " "
8679            << format_hex(Address, 10, true) << " "
8680            << left_justify(ordinalName(Obj, Entry.ordinal()), 16) << " "
8681            << Entry.symbolName() << "\n";
8682   }
8683 }
8684
8685 //===----------------------------------------------------------------------===//
8686 // weak bind table dumping
8687 //===----------------------------------------------------------------------===//
8688
8689 void llvm::printMachOWeakBindTable(const object::MachOObjectFile *Obj) {
8690   // Build table of sections so names can used in final output.
8691   SegInfo sectionTable(Obj);
8692
8693   outs() << "segment  section            address     "
8694             "type       addend   symbol\n";
8695   for (const llvm::object::MachOBindEntry &Entry : Obj->weakBindTable()) {
8696     // Strong symbols don't have a location to update.
8697     if (Entry.flags() & MachO::BIND_SYMBOL_FLAGS_NON_WEAK_DEFINITION) {
8698       outs() << "                                        strong              "
8699              << Entry.symbolName() << "\n";
8700       continue;
8701     }
8702     uint32_t SegIndex = Entry.segmentIndex();
8703     uint64_t OffsetInSeg = Entry.segmentOffset();
8704     StringRef SegmentName = sectionTable.segmentName(SegIndex);
8705     StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg);
8706     uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8707
8708     // Table lines look like:
8709     // __DATA  __data  0x00001000  pointer    0   _foo
8710     outs() << left_justify(SegmentName, 8) << " "
8711            << left_justify(SectionName, 18) << " "
8712            << format_hex(Address, 10, true) << " "
8713            << left_justify(Entry.typeName(), 8) << " "
8714            << format_decimal(Entry.addend(), 8) << "   " << Entry.symbolName()
8715            << "\n";
8716   }
8717 }
8718
8719 // get_dyld_bind_info_symbolname() is used for disassembly and passed an
8720 // address, ReferenceValue, in the Mach-O file and looks in the dyld bind
8721 // information for that address. If the address is found its binding symbol
8722 // name is returned.  If not nullptr is returned.
8723 static const char *get_dyld_bind_info_symbolname(uint64_t ReferenceValue,
8724                                                  struct DisassembleInfo *info) {
8725   if (info->bindtable == nullptr) {
8726     info->bindtable = new (BindTable);
8727     SegInfo sectionTable(info->O);
8728     for (const llvm::object::MachOBindEntry &Entry : info->O->bindTable()) {
8729       uint32_t SegIndex = Entry.segmentIndex();
8730       uint64_t OffsetInSeg = Entry.segmentOffset();
8731       if (!sectionTable.isValidSegIndexAndOffset(SegIndex, OffsetInSeg))
8732         continue;
8733       uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8734       const char *SymbolName = nullptr;
8735       StringRef name = Entry.symbolName();
8736       if (!name.empty())
8737         SymbolName = name.data();
8738       info->bindtable->push_back(std::make_pair(Address, SymbolName));
8739     }
8740   }
8741   for (bind_table_iterator BI = info->bindtable->begin(),
8742                            BE = info->bindtable->end();
8743        BI != BE; ++BI) {
8744     uint64_t Address = BI->first;
8745     if (ReferenceValue == Address) {
8746       const char *SymbolName = BI->second;
8747       return SymbolName;
8748     }
8749   }
8750   return nullptr;
8751 }