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