blob: c8835145611b9cf76d7ddb9325e496d19c144898 [file] [log] [blame]
Benjamin Kramer43a772e2011-09-19 17:56:04 +00001//===-- MachODump.cpp - Object file dumping utility for llvm --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the MachO-specific dumper for llvm-objdump.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm-objdump.h"
Kevin Enderby98c9acc2014-09-16 18:00:57 +000015#include "llvm-c/Disassembler.h"
Benjamin Kramer43a772e2011-09-19 17:56:04 +000016#include "llvm/ADT/STLExtras.h"
Ahmed Bougachaaa790682013-05-24 01:07:04 +000017#include "llvm/ADT/StringExtras.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000018#include "llvm/ADT/Triple.h"
Kevin Enderby04bf6932014-10-28 23:39:46 +000019#include "llvm/Config/config.h"
Zachary Turner6489d7b2015-04-23 17:37:47 +000020#include "llvm/DebugInfo/DIContext.h"
21#include "llvm/DebugInfo/DWARF/DWARFContext.h"
Benjamin Kramer43a772e2011-09-19 17:56:04 +000022#include "llvm/MC/MCAsmInfo.h"
Lang Hamesa1bc0f52014-04-15 04:40:56 +000023#include "llvm/MC/MCContext.h"
Benjamin Kramer43a772e2011-09-19 17:56:04 +000024#include "llvm/MC/MCDisassembler.h"
25#include "llvm/MC/MCInst.h"
26#include "llvm/MC/MCInstPrinter.h"
Benjamin Kramer43a772e2011-09-19 17:56:04 +000027#include "llvm/MC/MCInstrDesc.h"
28#include "llvm/MC/MCInstrInfo.h"
Jim Grosbachfd93a592012-03-05 19:33:20 +000029#include "llvm/MC/MCRegisterInfo.h"
Benjamin Kramer43a772e2011-09-19 17:56:04 +000030#include "llvm/MC/MCSubtargetInfo.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000031#include "llvm/Object/MachO.h"
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +000032#include "llvm/Object/MachOUniversal.h"
Rafael Espindola9b709252013-04-13 01:45:40 +000033#include "llvm/Support/Casting.h"
Benjamin Kramer43a772e2011-09-19 17:56:04 +000034#include "llvm/Support/CommandLine.h"
35#include "llvm/Support/Debug.h"
Tim Northover4bd286a2014-08-01 13:07:19 +000036#include "llvm/Support/Endian.h"
Benjamin Kramer43a772e2011-09-19 17:56:04 +000037#include "llvm/Support/Format.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000038#include "llvm/Support/FormattedStream.h"
Benjamin Kramer43a772e2011-09-19 17:56:04 +000039#include "llvm/Support/GraphWriter.h"
Kevin Enderby9a509442015-01-27 21:28:24 +000040#include "llvm/Support/LEB128.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000041#include "llvm/Support/MachO.h"
Benjamin Kramer43a772e2011-09-19 17:56:04 +000042#include "llvm/Support/MemoryBuffer.h"
43#include "llvm/Support/TargetRegistry.h"
44#include "llvm/Support/TargetSelect.h"
45#include "llvm/Support/raw_ostream.h"
Benjamin Kramer43a772e2011-09-19 17:56:04 +000046#include <algorithm>
47#include <cstring>
Rafael Espindolaa6e9c3e2014-06-12 17:38:55 +000048#include <system_error>
Kevin Enderby04bf6932014-10-28 23:39:46 +000049
50#if HAVE_CXXABI_H
51#include <cxxabi.h>
52#endif
53
Benjamin Kramer43a772e2011-09-19 17:56:04 +000054using namespace llvm;
55using namespace object;
56
57static cl::opt<bool>
Kevin Enderbyb28ed012014-10-29 21:28:24 +000058 UseDbg("g",
59 cl::desc("Print line information from debug info if available"));
Benjamin Kramer699128e2011-09-21 01:13:19 +000060
Kevin Enderbyb28ed012014-10-29 21:28:24 +000061static cl::opt<std::string> DSYMFile("dsym",
62 cl::desc("Use .dSYM file for debug info"));
Benjamin Kramer699128e2011-09-21 01:13:19 +000063
Kevin Enderbyb28ed012014-10-29 21:28:24 +000064static cl::opt<bool> FullLeadingAddr("full-leading-addr",
65 cl::desc("Print full leading address"));
Kevin Enderbybf246f52014-09-24 23:08:22 +000066
Kevin Enderbyab5e6c92015-03-17 21:07:39 +000067static cl::opt<bool> NoLeadingAddr("no-leading-addr",
68 cl::desc("Print no leading address"));
69
Kevin Enderby13023a12015-01-15 23:19:11 +000070cl::opt<bool> llvm::UniversalHeaders("universal-headers",
71 cl::desc("Print Mach-O universal headers "
72 "(requires -macho)"));
73
Kevin Enderby131d1772015-01-09 19:22:37 +000074cl::opt<bool>
Kevin Enderby13023a12015-01-15 23:19:11 +000075 llvm::ArchiveHeaders("archive-headers",
76 cl::desc("Print archive headers for Mach-O archives "
77 "(requires -macho)"));
Kevin Enderby131d1772015-01-09 19:22:37 +000078
Kevin Enderbya7bdc7e2015-01-22 18:55:27 +000079cl::opt<bool>
Kevin Enderby8972e482015-04-30 20:30:42 +000080 ArchiveMemberOffsets("archive-member-offsets",
81 cl::desc("Print the offset to each archive member for "
82 "Mach-O archives (requires -macho and "
83 "-archive-headers)"));
84
85cl::opt<bool>
Kevin Enderbya7bdc7e2015-01-22 18:55:27 +000086 llvm::IndirectSymbols("indirect-symbols",
87 cl::desc("Print indirect symbol table for Mach-O "
88 "objects (requires -macho)"));
89
Kevin Enderby69fe98d2015-01-23 18:52:17 +000090cl::opt<bool>
91 llvm::DataInCode("data-in-code",
92 cl::desc("Print the data in code table for Mach-O objects "
93 "(requires -macho)"));
94
Kevin Enderby9a509442015-01-27 21:28:24 +000095cl::opt<bool>
96 llvm::LinkOptHints("link-opt-hints",
97 cl::desc("Print the linker optimization hints for "
98 "Mach-O objects (requires -macho)"));
99
Kevin Enderbycd66be52015-03-11 22:06:32 +0000100cl::opt<bool>
101 llvm::InfoPlist("info-plist",
102 cl::desc("Print the info plist section as strings for "
103 "Mach-O objects (requires -macho)"));
104
Kevin Enderbyf0640752015-03-13 17:56:32 +0000105cl::opt<bool>
Kevin Enderbybc847fa2015-03-16 20:08:09 +0000106 llvm::DylibsUsed("dylibs-used",
107 cl::desc("Print the shared libraries used for linked "
108 "Mach-O files (requires -macho)"));
109
110cl::opt<bool>
111 llvm::DylibId("dylib-id",
112 cl::desc("Print the shared library's id for the dylib Mach-O "
113 "file (requires -macho)"));
114
115cl::opt<bool>
Kevin Enderbyf0640752015-03-13 17:56:32 +0000116 llvm::NonVerbose("non-verbose",
117 cl::desc("Print the info for Mach-O objects in "
118 "non-verbose or numeric form (requires -macho)"));
119
Kevin Enderby0fc11822015-04-01 20:57:01 +0000120cl::opt<bool>
121 llvm::ObjcMetaData("objc-meta-data",
122 cl::desc("Print the Objective-C runtime meta data for "
123 "Mach-O files (requires -macho)"));
124
Kevin Enderby6a221752015-03-17 17:10:57 +0000125cl::opt<std::string> llvm::DisSymName(
126 "dis-symname",
127 cl::desc("disassemble just this symbol's instructions (requires -macho"));
128
Kevin Enderby8e29ec92015-03-17 22:26:11 +0000129static cl::opt<bool> NoSymbolicOperands(
130 "no-symbolic-operands",
131 cl::desc("do not symbolic operands when disassembling (requires -macho)"));
132
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +0000133static cl::list<std::string>
134 ArchFlags("arch", cl::desc("architecture(s) from a Mach-O file to dump"),
135 cl::ZeroOrMore);
Hans Wennborgcc9deb42015-09-29 18:02:48 +0000136
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +0000137bool ArchAll = false;
138
Kevin Enderbyec5ca032014-08-18 20:21:02 +0000139static std::string ThumbTripleName;
140
141static const Target *GetTarget(const MachOObjectFile *MachOObj,
142 const char **McpuDefault,
143 const Target **ThumbTarget) {
Benjamin Kramer43a772e2011-09-19 17:56:04 +0000144 // Figure out the target triple.
Cameron Zwarich88cc16a2012-02-03 06:35:22 +0000145 if (TripleName.empty()) {
146 llvm::Triple TT("unknown-unknown-unknown");
Kevin Enderbyec5ca032014-08-18 20:21:02 +0000147 llvm::Triple ThumbTriple = Triple();
148 TT = MachOObj->getArch(McpuDefault, &ThumbTriple);
Cameron Zwarich88cc16a2012-02-03 06:35:22 +0000149 TripleName = TT.str();
Kevin Enderbyec5ca032014-08-18 20:21:02 +0000150 ThumbTripleName = ThumbTriple.str();
Benjamin Kramer43a772e2011-09-19 17:56:04 +0000151 }
152
Benjamin Kramer43a772e2011-09-19 17:56:04 +0000153 // Get the target specific parser.
154 std::string Error;
155 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
Kevin Enderbyec5ca032014-08-18 20:21:02 +0000156 if (TheTarget && ThumbTripleName.empty())
Benjamin Kramer43a772e2011-09-19 17:56:04 +0000157 return TheTarget;
158
Kevin Enderbyec5ca032014-08-18 20:21:02 +0000159 *ThumbTarget = TargetRegistry::lookupTarget(ThumbTripleName, Error);
160 if (*ThumbTarget)
161 return TheTarget;
162
163 errs() << "llvm-objdump: error: unable to get target for '";
164 if (!TheTarget)
165 errs() << TripleName;
166 else
167 errs() << ThumbTripleName;
168 errs() << "', see --version and --triple.\n";
Craig Toppere6cb63e2014-04-25 04:24:47 +0000169 return nullptr;
Benjamin Kramer43a772e2011-09-19 17:56:04 +0000170}
171
Owen Andersond9243c42011-10-17 21:37:35 +0000172struct SymbolSorter {
173 bool operator()(const SymbolRef &A, const SymbolRef &B) {
Rafael Espindoladea00162015-07-03 17:44:18 +0000174 uint64_t AAddr = (A.getType() != SymbolRef::ST_Function) ? 0 : A.getValue();
175 uint64_t BAddr = (B.getType() != SymbolRef::ST_Function) ? 0 : B.getValue();
Owen Andersond9243c42011-10-17 21:37:35 +0000176 return AAddr < BAddr;
177 }
Benjamin Kramer43a772e2011-09-19 17:56:04 +0000178};
179
Kevin Enderby273ae012013-06-06 17:20:50 +0000180// Types for the storted data in code table that is built before disassembly
181// and the predicate function to sort them.
182typedef std::pair<uint64_t, DiceRef> DiceTableEntry;
183typedef std::vector<DiceTableEntry> DiceTable;
184typedef DiceTable::iterator dice_table_iterator;
185
Kevin Enderby930fdc72014-11-06 19:00:13 +0000186// This is used to search for a data in code table entry for the PC being
187// disassembled. The j parameter has the PC in j.first. A single data in code
188// table entry can cover many bytes for each of its Kind's. So if the offset,
189// aka the i.first value, of the data in code table entry plus its Length
190// covers the PC being searched for this will return true. If not it will
191// return false.
David Majnemerea9b8ee2014-11-04 08:41:48 +0000192static bool compareDiceTableEntries(const DiceTableEntry &i,
193 const DiceTableEntry &j) {
Kevin Enderby930fdc72014-11-06 19:00:13 +0000194 uint16_t Length;
195 i.second.getLength(Length);
196
197 return j.first >= i.first && j.first < i.first + Length;
Kevin Enderby273ae012013-06-06 17:20:50 +0000198}
199
Colin LeMahieufc32b1b2015-03-18 19:27:31 +0000200static uint64_t DumpDataInCode(const uint8_t *bytes, uint64_t Length,
Kevin Enderby930fdc72014-11-06 19:00:13 +0000201 unsigned short Kind) {
202 uint32_t Value, Size = 1;
Kevin Enderby273ae012013-06-06 17:20:50 +0000203
204 switch (Kind) {
Kevin Enderby930fdc72014-11-06 19:00:13 +0000205 default:
Charles Davis8bdfafd2013-09-01 04:28:48 +0000206 case MachO::DICE_KIND_DATA:
Kevin Enderby930fdc72014-11-06 19:00:13 +0000207 if (Length >= 4) {
208 if (!NoShowRawInsn)
Craig Topper0013be12015-09-21 05:32:41 +0000209 dumpBytes(makeArrayRef(bytes, 4), outs());
Kevin Enderbyb28ed012014-10-29 21:28:24 +0000210 Value = bytes[3] << 24 | bytes[2] << 16 | bytes[1] << 8 | bytes[0];
Kevin Enderby273ae012013-06-06 17:20:50 +0000211 outs() << "\t.long " << Value;
Kevin Enderby930fdc72014-11-06 19:00:13 +0000212 Size = 4;
213 } else if (Length >= 2) {
214 if (!NoShowRawInsn)
Craig Topper0013be12015-09-21 05:32:41 +0000215 dumpBytes(makeArrayRef(bytes, 2), outs());
Kevin Enderbyb28ed012014-10-29 21:28:24 +0000216 Value = bytes[1] << 8 | bytes[0];
Kevin Enderby273ae012013-06-06 17:20:50 +0000217 outs() << "\t.short " << Value;
Kevin Enderby930fdc72014-11-06 19:00:13 +0000218 Size = 2;
219 } else {
220 if (!NoShowRawInsn)
Craig Topper0013be12015-09-21 05:32:41 +0000221 dumpBytes(makeArrayRef(bytes, 2), outs());
Kevin Enderby273ae012013-06-06 17:20:50 +0000222 Value = bytes[0];
223 outs() << "\t.byte " << Value;
Kevin Enderby930fdc72014-11-06 19:00:13 +0000224 Size = 1;
Kevin Enderby273ae012013-06-06 17:20:50 +0000225 }
Kevin Enderby930fdc72014-11-06 19:00:13 +0000226 if (Kind == MachO::DICE_KIND_DATA)
227 outs() << "\t@ KIND_DATA\n";
228 else
229 outs() << "\t@ data in code kind = " << Kind << "\n";
Kevin Enderby273ae012013-06-06 17:20:50 +0000230 break;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000231 case MachO::DICE_KIND_JUMP_TABLE8:
Kevin Enderby930fdc72014-11-06 19:00:13 +0000232 if (!NoShowRawInsn)
Craig Topper0013be12015-09-21 05:32:41 +0000233 dumpBytes(makeArrayRef(bytes, 1), outs());
Kevin Enderby273ae012013-06-06 17:20:50 +0000234 Value = bytes[0];
Kevin Enderby930fdc72014-11-06 19:00:13 +0000235 outs() << "\t.byte " << format("%3u", Value) << "\t@ KIND_JUMP_TABLE8\n";
236 Size = 1;
Kevin Enderby273ae012013-06-06 17:20:50 +0000237 break;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000238 case MachO::DICE_KIND_JUMP_TABLE16:
Kevin Enderby930fdc72014-11-06 19:00:13 +0000239 if (!NoShowRawInsn)
Craig Topper0013be12015-09-21 05:32:41 +0000240 dumpBytes(makeArrayRef(bytes, 2), outs());
Kevin Enderbyb28ed012014-10-29 21:28:24 +0000241 Value = bytes[1] << 8 | bytes[0];
Kevin Enderby930fdc72014-11-06 19:00:13 +0000242 outs() << "\t.short " << format("%5u", Value & 0xffff)
243 << "\t@ KIND_JUMP_TABLE16\n";
244 Size = 2;
Kevin Enderby273ae012013-06-06 17:20:50 +0000245 break;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000246 case MachO::DICE_KIND_JUMP_TABLE32:
Kevin Enderby930fdc72014-11-06 19:00:13 +0000247 case MachO::DICE_KIND_ABS_JUMP_TABLE32:
248 if (!NoShowRawInsn)
Craig Topper0013be12015-09-21 05:32:41 +0000249 dumpBytes(makeArrayRef(bytes, 4), outs());
Kevin Enderbyb28ed012014-10-29 21:28:24 +0000250 Value = bytes[3] << 24 | bytes[2] << 16 | bytes[1] << 8 | bytes[0];
Kevin Enderby930fdc72014-11-06 19:00:13 +0000251 outs() << "\t.long " << Value;
252 if (Kind == MachO::DICE_KIND_JUMP_TABLE32)
253 outs() << "\t@ KIND_JUMP_TABLE32\n";
254 else
255 outs() << "\t@ KIND_ABS_JUMP_TABLE32\n";
256 Size = 4;
Kevin Enderby273ae012013-06-06 17:20:50 +0000257 break;
258 }
Kevin Enderby930fdc72014-11-06 19:00:13 +0000259 return Size;
Kevin Enderby273ae012013-06-06 17:20:50 +0000260}
261
Alexey Samsonovd319c4f2015-06-03 22:19:36 +0000262static void getSectionsAndSymbols(MachOObjectFile *MachOObj,
Alexey Samsonov464d2e42014-03-17 07:28:19 +0000263 std::vector<SectionRef> &Sections,
264 std::vector<SymbolRef> &Symbols,
265 SmallVectorImpl<uint64_t> &FoundFns,
266 uint64_t &BaseSegmentAddress) {
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +0000267 for (const SymbolRef &Symbol : MachOObj->symbols()) {
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +0000268 ErrorOr<StringRef> SymName = Symbol.getName();
269 if (std::error_code EC = SymName.getError())
270 report_fatal_error(EC.message());
271 if (!SymName->startswith("ltmp"))
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +0000272 Symbols.push_back(Symbol);
273 }
Owen Andersond9243c42011-10-17 21:37:35 +0000274
Alexey Samsonov48803e52014-03-13 14:37:36 +0000275 for (const SectionRef &Section : MachOObj->sections()) {
Owen Andersond9243c42011-10-17 21:37:35 +0000276 StringRef SectName;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000277 Section.getName(SectName);
278 Sections.push_back(Section);
Owen Andersond9243c42011-10-17 21:37:35 +0000279 }
280
Kevin Enderby273ae012013-06-06 17:20:50 +0000281 bool BaseSegmentAddressSet = false;
Alexey Samsonovd319c4f2015-06-03 22:19:36 +0000282 for (const auto &Command : MachOObj->load_commands()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000283 if (Command.C.cmd == MachO::LC_FUNCTION_STARTS) {
Benjamin Kramer699128e2011-09-21 01:13:19 +0000284 // We found a function starts segment, parse the addresses for later
285 // consumption.
Charles Davis8bdfafd2013-09-01 04:28:48 +0000286 MachO::linkedit_data_command LLC =
Kevin Enderbyb28ed012014-10-29 21:28:24 +0000287 MachOObj->getLinkeditDataLoadCommand(Command);
Benjamin Kramer699128e2011-09-21 01:13:19 +0000288
Charles Davis8bdfafd2013-09-01 04:28:48 +0000289 MachOObj->ReadULEB128s(LLC.dataoff, FoundFns);
Kevin Enderbyb28ed012014-10-29 21:28:24 +0000290 } else if (Command.C.cmd == MachO::LC_SEGMENT) {
291 MachO::segment_command SLC = MachOObj->getSegmentLoadCommand(Command);
Charles Davis8bdfafd2013-09-01 04:28:48 +0000292 StringRef SegName = SLC.segname;
Kevin Enderbyb28ed012014-10-29 21:28:24 +0000293 if (!BaseSegmentAddressSet && SegName != "__PAGEZERO") {
Kevin Enderby273ae012013-06-06 17:20:50 +0000294 BaseSegmentAddressSet = true;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000295 BaseSegmentAddress = SLC.vmaddr;
Kevin Enderby273ae012013-06-06 17:20:50 +0000296 }
297 }
Benjamin Kramer8a529dc2011-09-21 22:16:43 +0000298 }
Benjamin Kramer699128e2011-09-21 01:13:19 +0000299}
300
Kevin Enderbya7bdc7e2015-01-22 18:55:27 +0000301static void PrintIndirectSymbolTable(MachOObjectFile *O, bool verbose,
302 uint32_t n, uint32_t count,
303 uint32_t stride, uint64_t addr) {
304 MachO::dysymtab_command Dysymtab = O->getDysymtabLoadCommand();
305 uint32_t nindirectsyms = Dysymtab.nindirectsyms;
306 if (n > nindirectsyms)
307 outs() << " (entries start past the end of the indirect symbol "
308 "table) (reserved1 field greater than the table size)";
309 else if (n + count > nindirectsyms)
310 outs() << " (entries extends past the end of the indirect symbol "
311 "table)";
312 outs() << "\n";
313 uint32_t cputype = O->getHeader().cputype;
314 if (cputype & MachO::CPU_ARCH_ABI64)
315 outs() << "address index";
316 else
317 outs() << "address index";
318 if (verbose)
319 outs() << " name\n";
320 else
321 outs() << "\n";
322 for (uint32_t j = 0; j < count && n + j < nindirectsyms; j++) {
323 if (cputype & MachO::CPU_ARCH_ABI64)
324 outs() << format("0x%016" PRIx64, addr + j * stride) << " ";
325 else
326 outs() << format("0x%08" PRIx32, addr + j * stride) << " ";
327 MachO::dysymtab_command Dysymtab = O->getDysymtabLoadCommand();
328 uint32_t indirect_symbol = O->getIndirectSymbolTableEntry(Dysymtab, n + j);
329 if (indirect_symbol == MachO::INDIRECT_SYMBOL_LOCAL) {
330 outs() << "LOCAL\n";
331 continue;
332 }
333 if (indirect_symbol ==
334 (MachO::INDIRECT_SYMBOL_LOCAL | MachO::INDIRECT_SYMBOL_ABS)) {
335 outs() << "LOCAL ABSOLUTE\n";
336 continue;
337 }
338 if (indirect_symbol == MachO::INDIRECT_SYMBOL_ABS) {
339 outs() << "ABSOLUTE\n";
340 continue;
341 }
342 outs() << format("%5u ", indirect_symbol);
Kevin Enderbyf0640752015-03-13 17:56:32 +0000343 if (verbose) {
344 MachO::symtab_command Symtab = O->getSymtabLoadCommand();
345 if (indirect_symbol < Symtab.nsyms) {
346 symbol_iterator Sym = O->getSymbolByIndex(indirect_symbol);
347 SymbolRef Symbol = *Sym;
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +0000348 ErrorOr<StringRef> SymName = Symbol.getName();
349 if (std::error_code EC = SymName.getError())
350 report_fatal_error(EC.message());
351 outs() << *SymName;
Kevin Enderbyf0640752015-03-13 17:56:32 +0000352 } else {
353 outs() << "?";
354 }
Kevin Enderbya7bdc7e2015-01-22 18:55:27 +0000355 }
356 outs() << "\n";
357 }
358}
359
360static void PrintIndirectSymbols(MachOObjectFile *O, bool verbose) {
Alexey Samsonovd319c4f2015-06-03 22:19:36 +0000361 for (const auto &Load : O->load_commands()) {
Kevin Enderbya7bdc7e2015-01-22 18:55:27 +0000362 if (Load.C.cmd == MachO::LC_SEGMENT_64) {
363 MachO::segment_command_64 Seg = O->getSegment64LoadCommand(Load);
364 for (unsigned J = 0; J < Seg.nsects; ++J) {
365 MachO::section_64 Sec = O->getSection64(Load, J);
366 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
367 if (section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
368 section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
369 section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
370 section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS ||
371 section_type == MachO::S_SYMBOL_STUBS) {
372 uint32_t stride;
373 if (section_type == MachO::S_SYMBOL_STUBS)
374 stride = Sec.reserved2;
375 else
376 stride = 8;
377 if (stride == 0) {
378 outs() << "Can't print indirect symbols for (" << Sec.segname << ","
379 << Sec.sectname << ") "
380 << "(size of stubs in reserved2 field is zero)\n";
381 continue;
382 }
383 uint32_t count = Sec.size / stride;
384 outs() << "Indirect symbols for (" << Sec.segname << ","
385 << Sec.sectname << ") " << count << " entries";
386 uint32_t n = Sec.reserved1;
387 PrintIndirectSymbolTable(O, verbose, n, count, stride, Sec.addr);
388 }
389 }
390 } else if (Load.C.cmd == MachO::LC_SEGMENT) {
391 MachO::segment_command Seg = O->getSegmentLoadCommand(Load);
392 for (unsigned J = 0; J < Seg.nsects; ++J) {
393 MachO::section Sec = O->getSection(Load, J);
394 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
395 if (section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
396 section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
397 section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
398 section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS ||
399 section_type == MachO::S_SYMBOL_STUBS) {
400 uint32_t stride;
401 if (section_type == MachO::S_SYMBOL_STUBS)
402 stride = Sec.reserved2;
403 else
404 stride = 4;
405 if (stride == 0) {
406 outs() << "Can't print indirect symbols for (" << Sec.segname << ","
407 << Sec.sectname << ") "
408 << "(size of stubs in reserved2 field is zero)\n";
409 continue;
410 }
411 uint32_t count = Sec.size / stride;
412 outs() << "Indirect symbols for (" << Sec.segname << ","
413 << Sec.sectname << ") " << count << " entries";
414 uint32_t n = Sec.reserved1;
415 PrintIndirectSymbolTable(O, verbose, n, count, stride, Sec.addr);
416 }
417 }
418 }
Kevin Enderbya7bdc7e2015-01-22 18:55:27 +0000419 }
420}
421
Kevin Enderby69fe98d2015-01-23 18:52:17 +0000422static void PrintDataInCodeTable(MachOObjectFile *O, bool verbose) {
423 MachO::linkedit_data_command DIC = O->getDataInCodeLoadCommand();
424 uint32_t nentries = DIC.datasize / sizeof(struct MachO::data_in_code_entry);
425 outs() << "Data in code table (" << nentries << " entries)\n";
426 outs() << "offset length kind\n";
427 for (dice_iterator DI = O->begin_dices(), DE = O->end_dices(); DI != DE;
428 ++DI) {
429 uint32_t Offset;
430 DI->getOffset(Offset);
431 outs() << format("0x%08" PRIx32, Offset) << " ";
432 uint16_t Length;
433 DI->getLength(Length);
434 outs() << format("%6u", Length) << " ";
435 uint16_t Kind;
436 DI->getKind(Kind);
437 if (verbose) {
438 switch (Kind) {
439 case MachO::DICE_KIND_DATA:
440 outs() << "DATA";
441 break;
442 case MachO::DICE_KIND_JUMP_TABLE8:
443 outs() << "JUMP_TABLE8";
444 break;
445 case MachO::DICE_KIND_JUMP_TABLE16:
446 outs() << "JUMP_TABLE16";
447 break;
448 case MachO::DICE_KIND_JUMP_TABLE32:
449 outs() << "JUMP_TABLE32";
450 break;
451 case MachO::DICE_KIND_ABS_JUMP_TABLE32:
452 outs() << "ABS_JUMP_TABLE32";
453 break;
454 default:
455 outs() << format("0x%04" PRIx32, Kind);
456 break;
457 }
458 } else
459 outs() << format("0x%04" PRIx32, Kind);
460 outs() << "\n";
461 }
462}
463
Kevin Enderby9a509442015-01-27 21:28:24 +0000464static void PrintLinkOptHints(MachOObjectFile *O) {
465 MachO::linkedit_data_command LohLC = O->getLinkOptHintsLoadCommand();
466 const char *loh = O->getData().substr(LohLC.dataoff, 1).data();
467 uint32_t nloh = LohLC.datasize;
468 outs() << "Linker optimiztion hints (" << nloh << " total bytes)\n";
469 for (uint32_t i = 0; i < nloh;) {
470 unsigned n;
471 uint64_t identifier = decodeULEB128((const uint8_t *)(loh + i), &n);
472 i += n;
473 outs() << " identifier " << identifier << " ";
474 if (i >= nloh)
475 return;
476 switch (identifier) {
477 case 1:
478 outs() << "AdrpAdrp\n";
479 break;
480 case 2:
481 outs() << "AdrpLdr\n";
482 break;
483 case 3:
484 outs() << "AdrpAddLdr\n";
485 break;
486 case 4:
487 outs() << "AdrpLdrGotLdr\n";
488 break;
489 case 5:
490 outs() << "AdrpAddStr\n";
491 break;
492 case 6:
493 outs() << "AdrpLdrGotStr\n";
494 break;
495 case 7:
496 outs() << "AdrpAdd\n";
497 break;
498 case 8:
499 outs() << "AdrpLdrGot\n";
500 break;
501 default:
502 outs() << "Unknown identifier value\n";
503 break;
504 }
505 uint64_t narguments = decodeULEB128((const uint8_t *)(loh + i), &n);
506 i += n;
507 outs() << " narguments " << narguments << "\n";
508 if (i >= nloh)
509 return;
510
511 for (uint32_t j = 0; j < narguments; j++) {
512 uint64_t value = decodeULEB128((const uint8_t *)(loh + i), &n);
513 i += n;
514 outs() << "\tvalue " << format("0x%" PRIx64, value) << "\n";
515 if (i >= nloh)
516 return;
517 }
518 }
519}
520
Kevin Enderbybc847fa2015-03-16 20:08:09 +0000521static void PrintDylibs(MachOObjectFile *O, bool JustId) {
Alexey Samsonovd319c4f2015-06-03 22:19:36 +0000522 unsigned Index = 0;
523 for (const auto &Load : O->load_commands()) {
Kevin Enderbybc847fa2015-03-16 20:08:09 +0000524 if ((JustId && Load.C.cmd == MachO::LC_ID_DYLIB) ||
525 (!JustId && (Load.C.cmd == MachO::LC_ID_DYLIB ||
526 Load.C.cmd == MachO::LC_LOAD_DYLIB ||
527 Load.C.cmd == MachO::LC_LOAD_WEAK_DYLIB ||
528 Load.C.cmd == MachO::LC_REEXPORT_DYLIB ||
529 Load.C.cmd == MachO::LC_LAZY_LOAD_DYLIB ||
530 Load.C.cmd == MachO::LC_LOAD_UPWARD_DYLIB))) {
531 MachO::dylib_command dl = O->getDylibIDLoadCommand(Load);
532 if (dl.dylib.name < dl.cmdsize) {
533 const char *p = (const char *)(Load.Ptr) + dl.dylib.name;
534 if (JustId)
535 outs() << p << "\n";
536 else {
537 outs() << "\t" << p;
538 outs() << " (compatibility version "
539 << ((dl.dylib.compatibility_version >> 16) & 0xffff) << "."
540 << ((dl.dylib.compatibility_version >> 8) & 0xff) << "."
541 << (dl.dylib.compatibility_version & 0xff) << ",";
542 outs() << " current version "
543 << ((dl.dylib.current_version >> 16) & 0xffff) << "."
544 << ((dl.dylib.current_version >> 8) & 0xff) << "."
545 << (dl.dylib.current_version & 0xff) << ")\n";
546 }
547 } else {
548 outs() << "\tBad offset (" << dl.dylib.name << ") for name of ";
549 if (Load.C.cmd == MachO::LC_ID_DYLIB)
550 outs() << "LC_ID_DYLIB ";
551 else if (Load.C.cmd == MachO::LC_LOAD_DYLIB)
552 outs() << "LC_LOAD_DYLIB ";
553 else if (Load.C.cmd == MachO::LC_LOAD_WEAK_DYLIB)
554 outs() << "LC_LOAD_WEAK_DYLIB ";
555 else if (Load.C.cmd == MachO::LC_LAZY_LOAD_DYLIB)
556 outs() << "LC_LAZY_LOAD_DYLIB ";
557 else if (Load.C.cmd == MachO::LC_REEXPORT_DYLIB)
558 outs() << "LC_REEXPORT_DYLIB ";
559 else if (Load.C.cmd == MachO::LC_LOAD_UPWARD_DYLIB)
560 outs() << "LC_LOAD_UPWARD_DYLIB ";
561 else
562 outs() << "LC_??? ";
Alexey Samsonovd319c4f2015-06-03 22:19:36 +0000563 outs() << "command " << Index++ << "\n";
Kevin Enderbybc847fa2015-03-16 20:08:09 +0000564 }
565 }
Kevin Enderbybc847fa2015-03-16 20:08:09 +0000566 }
567}
568
Kevin Enderbyf6d25852015-01-31 00:37:11 +0000569typedef DenseMap<uint64_t, StringRef> SymbolAddressMap;
570
571static void CreateSymbolAddressMap(MachOObjectFile *O,
572 SymbolAddressMap *AddrMap) {
573 // Create a map of symbol addresses to symbol names.
574 for (const SymbolRef &Symbol : O->symbols()) {
Rafael Espindola2fa80cc2015-06-26 12:18:49 +0000575 SymbolRef::Type ST = Symbol.getType();
Kevin Enderbyf6d25852015-01-31 00:37:11 +0000576 if (ST == SymbolRef::ST_Function || ST == SymbolRef::ST_Data ||
577 ST == SymbolRef::ST_Other) {
Rafael Espindoladea00162015-07-03 17:44:18 +0000578 uint64_t Address = Symbol.getValue();
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +0000579 ErrorOr<StringRef> SymNameOrErr = Symbol.getName();
580 if (std::error_code EC = SymNameOrErr.getError())
581 report_fatal_error(EC.message());
582 StringRef SymName = *SymNameOrErr;
Kevin Enderby846c0002015-04-16 17:19:59 +0000583 if (!SymName.startswith(".objc"))
584 (*AddrMap)[Address] = SymName;
Kevin Enderbyf6d25852015-01-31 00:37:11 +0000585 }
586 }
587}
588
589// GuessSymbolName is passed the address of what might be a symbol and a
590// pointer to the SymbolAddressMap. It returns the name of a symbol
591// with that address or nullptr if no symbol is found with that address.
592static const char *GuessSymbolName(uint64_t value, SymbolAddressMap *AddrMap) {
593 const char *SymbolName = nullptr;
594 // A DenseMap can't lookup up some values.
595 if (value != 0xffffffffffffffffULL && value != 0xfffffffffffffffeULL) {
596 StringRef name = AddrMap->lookup(value);
597 if (!name.empty())
598 SymbolName = name.data();
599 }
600 return SymbolName;
601}
602
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000603static void DumpCstringChar(const char c) {
604 char p[2];
605 p[0] = c;
606 p[1] = '\0';
607 outs().write_escaped(p);
608}
609
Kevin Enderby10ba0412015-02-04 21:38:42 +0000610static void DumpCstringSection(MachOObjectFile *O, const char *sect,
611 uint32_t sect_size, uint64_t sect_addr,
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000612 bool print_addresses) {
Kevin Enderby10ba0412015-02-04 21:38:42 +0000613 for (uint32_t i = 0; i < sect_size; i++) {
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000614 if (print_addresses) {
615 if (O->is64Bit())
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000616 outs() << format("%016" PRIx64, sect_addr + i) << " ";
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000617 else
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000618 outs() << format("%08" PRIx64, sect_addr + i) << " ";
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000619 }
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000620 for (; i < sect_size && sect[i] != '\0'; i++)
621 DumpCstringChar(sect[i]);
Kevin Enderby10ba0412015-02-04 21:38:42 +0000622 if (i < sect_size && sect[i] == '\0')
623 outs() << "\n";
624 }
625}
626
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000627static void DumpLiteral4(uint32_t l, float f) {
628 outs() << format("0x%08" PRIx32, l);
629 if ((l & 0x7f800000) != 0x7f800000)
630 outs() << format(" (%.16e)\n", f);
631 else {
632 if (l == 0x7f800000)
633 outs() << " (+Infinity)\n";
634 else if (l == 0xff800000)
635 outs() << " (-Infinity)\n";
636 else if ((l & 0x00400000) == 0x00400000)
637 outs() << " (non-signaling Not-a-Number)\n";
638 else
639 outs() << " (signaling Not-a-Number)\n";
640 }
641}
642
643static void DumpLiteral4Section(MachOObjectFile *O, const char *sect,
644 uint32_t sect_size, uint64_t sect_addr,
645 bool print_addresses) {
646 for (uint32_t i = 0; i < sect_size; i += sizeof(float)) {
647 if (print_addresses) {
648 if (O->is64Bit())
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000649 outs() << format("%016" PRIx64, sect_addr + i) << " ";
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000650 else
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000651 outs() << format("%08" PRIx64, sect_addr + i) << " ";
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000652 }
653 float f;
654 memcpy(&f, sect + i, sizeof(float));
655 if (O->isLittleEndian() != sys::IsLittleEndianHost)
656 sys::swapByteOrder(f);
657 uint32_t l;
658 memcpy(&l, sect + i, sizeof(uint32_t));
659 if (O->isLittleEndian() != sys::IsLittleEndianHost)
660 sys::swapByteOrder(l);
661 DumpLiteral4(l, f);
662 }
663}
664
665static void DumpLiteral8(MachOObjectFile *O, uint32_t l0, uint32_t l1,
666 double d) {
667 outs() << format("0x%08" PRIx32, l0) << " " << format("0x%08" PRIx32, l1);
668 uint32_t Hi, Lo;
Davide Italianob627d9f2015-12-12 21:50:11 +0000669 Hi = (O->isLittleEndian()) ? l1 : l0;
670 Lo = (O->isLittleEndian()) ? l0 : l1;
671
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000672 // Hi is the high word, so this is equivalent to if(isfinite(d))
673 if ((Hi & 0x7ff00000) != 0x7ff00000)
674 outs() << format(" (%.16e)\n", d);
675 else {
676 if (Hi == 0x7ff00000 && Lo == 0)
677 outs() << " (+Infinity)\n";
678 else if (Hi == 0xfff00000 && Lo == 0)
679 outs() << " (-Infinity)\n";
680 else if ((Hi & 0x00080000) == 0x00080000)
681 outs() << " (non-signaling Not-a-Number)\n";
682 else
683 outs() << " (signaling Not-a-Number)\n";
684 }
685}
686
687static void DumpLiteral8Section(MachOObjectFile *O, const char *sect,
688 uint32_t sect_size, uint64_t sect_addr,
689 bool print_addresses) {
690 for (uint32_t i = 0; i < sect_size; i += sizeof(double)) {
691 if (print_addresses) {
692 if (O->is64Bit())
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000693 outs() << format("%016" PRIx64, sect_addr + i) << " ";
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000694 else
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000695 outs() << format("%08" PRIx64, sect_addr + i) << " ";
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000696 }
697 double d;
698 memcpy(&d, sect + i, sizeof(double));
699 if (O->isLittleEndian() != sys::IsLittleEndianHost)
700 sys::swapByteOrder(d);
701 uint32_t l0, l1;
702 memcpy(&l0, sect + i, sizeof(uint32_t));
703 memcpy(&l1, sect + i + sizeof(uint32_t), sizeof(uint32_t));
704 if (O->isLittleEndian() != sys::IsLittleEndianHost) {
705 sys::swapByteOrder(l0);
706 sys::swapByteOrder(l1);
707 }
708 DumpLiteral8(O, l0, l1, d);
709 }
710}
711
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000712static void DumpLiteral16(uint32_t l0, uint32_t l1, uint32_t l2, uint32_t l3) {
713 outs() << format("0x%08" PRIx32, l0) << " ";
714 outs() << format("0x%08" PRIx32, l1) << " ";
715 outs() << format("0x%08" PRIx32, l2) << " ";
716 outs() << format("0x%08" PRIx32, l3) << "\n";
717}
718
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000719static void DumpLiteral16Section(MachOObjectFile *O, const char *sect,
720 uint32_t sect_size, uint64_t sect_addr,
721 bool print_addresses) {
722 for (uint32_t i = 0; i < sect_size; i += 16) {
723 if (print_addresses) {
724 if (O->is64Bit())
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000725 outs() << format("%016" PRIx64, sect_addr + i) << " ";
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000726 else
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000727 outs() << format("%08" PRIx64, sect_addr + i) << " ";
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000728 }
729 uint32_t l0, l1, l2, l3;
730 memcpy(&l0, sect + i, sizeof(uint32_t));
731 memcpy(&l1, sect + i + sizeof(uint32_t), sizeof(uint32_t));
732 memcpy(&l2, sect + i + 2 * sizeof(uint32_t), sizeof(uint32_t));
733 memcpy(&l3, sect + i + 3 * sizeof(uint32_t), sizeof(uint32_t));
734 if (O->isLittleEndian() != sys::IsLittleEndianHost) {
735 sys::swapByteOrder(l0);
736 sys::swapByteOrder(l1);
737 sys::swapByteOrder(l2);
738 sys::swapByteOrder(l3);
739 }
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000740 DumpLiteral16(l0, l1, l2, l3);
741 }
742}
743
744static void DumpLiteralPointerSection(MachOObjectFile *O,
745 const SectionRef &Section,
746 const char *sect, uint32_t sect_size,
747 uint64_t sect_addr,
748 bool print_addresses) {
749 // Collect the literal sections in this Mach-O file.
750 std::vector<SectionRef> LiteralSections;
751 for (const SectionRef &Section : O->sections()) {
752 DataRefImpl Ref = Section.getRawDataRefImpl();
753 uint32_t section_type;
754 if (O->is64Bit()) {
755 const MachO::section_64 Sec = O->getSection64(Ref);
756 section_type = Sec.flags & MachO::SECTION_TYPE;
757 } else {
758 const MachO::section Sec = O->getSection(Ref);
759 section_type = Sec.flags & MachO::SECTION_TYPE;
760 }
761 if (section_type == MachO::S_CSTRING_LITERALS ||
762 section_type == MachO::S_4BYTE_LITERALS ||
763 section_type == MachO::S_8BYTE_LITERALS ||
764 section_type == MachO::S_16BYTE_LITERALS)
765 LiteralSections.push_back(Section);
766 }
767
768 // Set the size of the literal pointer.
769 uint32_t lp_size = O->is64Bit() ? 8 : 4;
770
Eric Christopher572e03a2015-06-19 01:53:21 +0000771 // Collect the external relocation symbols for the literal pointers.
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000772 std::vector<std::pair<uint64_t, SymbolRef>> Relocs;
773 for (const RelocationRef &Reloc : Section.relocations()) {
774 DataRefImpl Rel;
775 MachO::any_relocation_info RE;
776 bool isExtern = false;
777 Rel = Reloc.getRawDataRefImpl();
778 RE = O->getRelocation(Rel);
779 isExtern = O->getPlainRelocationExternal(RE);
780 if (isExtern) {
Rafael Espindola96d071c2015-06-29 23:29:12 +0000781 uint64_t RelocOffset = Reloc.getOffset();
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000782 symbol_iterator RelocSym = Reloc.getSymbol();
783 Relocs.push_back(std::make_pair(RelocOffset, *RelocSym));
784 }
785 }
786 array_pod_sort(Relocs.begin(), Relocs.end());
787
788 // Dump each literal pointer.
789 for (uint32_t i = 0; i < sect_size; i += lp_size) {
790 if (print_addresses) {
791 if (O->is64Bit())
792 outs() << format("%016" PRIx64, sect_addr + i) << " ";
793 else
794 outs() << format("%08" PRIx64, sect_addr + i) << " ";
795 }
796 uint64_t lp;
797 if (O->is64Bit()) {
798 memcpy(&lp, sect + i, sizeof(uint64_t));
799 if (O->isLittleEndian() != sys::IsLittleEndianHost)
800 sys::swapByteOrder(lp);
801 } else {
802 uint32_t li;
803 memcpy(&li, sect + i, sizeof(uint32_t));
804 if (O->isLittleEndian() != sys::IsLittleEndianHost)
805 sys::swapByteOrder(li);
806 lp = li;
807 }
808
809 // First look for an external relocation entry for this literal pointer.
David Blaikie33dd45d02015-03-23 18:39:02 +0000810 auto Reloc = std::find_if(
811 Relocs.begin(), Relocs.end(),
812 [&](const std::pair<uint64_t, SymbolRef> &P) { return P.first == i; });
813 if (Reloc != Relocs.end()) {
814 symbol_iterator RelocSym = Reloc->second;
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +0000815 ErrorOr<StringRef> SymName = RelocSym->getName();
816 if (std::error_code EC = SymName.getError())
817 report_fatal_error(EC.message());
818 outs() << "external relocation entry for symbol:" << *SymName << "\n";
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000819 continue;
David Blaikie33dd45d02015-03-23 18:39:02 +0000820 }
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000821
822 // For local references see what the section the literal pointer points to.
David Blaikie33dd45d02015-03-23 18:39:02 +0000823 auto Sect = std::find_if(LiteralSections.begin(), LiteralSections.end(),
824 [&](const SectionRef &R) {
825 return lp >= R.getAddress() &&
826 lp < R.getAddress() + R.getSize();
827 });
828 if (Sect == LiteralSections.end()) {
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000829 outs() << format("0x%" PRIx64, lp) << " (not in a literal section)\n";
David Blaikie33dd45d02015-03-23 18:39:02 +0000830 continue;
831 }
832
833 uint64_t SectAddress = Sect->getAddress();
834 uint64_t SectSize = Sect->getSize();
835
836 StringRef SectName;
837 Sect->getName(SectName);
838 DataRefImpl Ref = Sect->getRawDataRefImpl();
839 StringRef SegmentName = O->getSectionFinalSegmentName(Ref);
840 outs() << SegmentName << ":" << SectName << ":";
841
842 uint32_t section_type;
843 if (O->is64Bit()) {
844 const MachO::section_64 Sec = O->getSection64(Ref);
845 section_type = Sec.flags & MachO::SECTION_TYPE;
846 } else {
847 const MachO::section Sec = O->getSection(Ref);
848 section_type = Sec.flags & MachO::SECTION_TYPE;
849 }
850
851 StringRef BytesStr;
852 Sect->getContents(BytesStr);
853 const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
854
855 switch (section_type) {
856 case MachO::S_CSTRING_LITERALS:
857 for (uint64_t i = lp - SectAddress; i < SectSize && Contents[i] != '\0';
858 i++) {
859 DumpCstringChar(Contents[i]);
860 }
861 outs() << "\n";
862 break;
863 case MachO::S_4BYTE_LITERALS:
864 float f;
865 memcpy(&f, Contents + (lp - SectAddress), sizeof(float));
866 uint32_t l;
867 memcpy(&l, Contents + (lp - SectAddress), sizeof(uint32_t));
868 if (O->isLittleEndian() != sys::IsLittleEndianHost) {
869 sys::swapByteOrder(f);
870 sys::swapByteOrder(l);
871 }
872 DumpLiteral4(l, f);
873 break;
874 case MachO::S_8BYTE_LITERALS: {
875 double d;
876 memcpy(&d, Contents + (lp - SectAddress), sizeof(double));
877 uint32_t l0, l1;
878 memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t));
879 memcpy(&l1, Contents + (lp - SectAddress) + sizeof(uint32_t),
880 sizeof(uint32_t));
881 if (O->isLittleEndian() != sys::IsLittleEndianHost) {
882 sys::swapByteOrder(f);
883 sys::swapByteOrder(l0);
884 sys::swapByteOrder(l1);
885 }
886 DumpLiteral8(O, l0, l1, d);
887 break;
888 }
889 case MachO::S_16BYTE_LITERALS: {
890 uint32_t l0, l1, l2, l3;
891 memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t));
892 memcpy(&l1, Contents + (lp - SectAddress) + sizeof(uint32_t),
893 sizeof(uint32_t));
894 memcpy(&l2, Contents + (lp - SectAddress) + 2 * sizeof(uint32_t),
895 sizeof(uint32_t));
896 memcpy(&l3, Contents + (lp - SectAddress) + 3 * sizeof(uint32_t),
897 sizeof(uint32_t));
898 if (O->isLittleEndian() != sys::IsLittleEndianHost) {
899 sys::swapByteOrder(l0);
900 sys::swapByteOrder(l1);
901 sys::swapByteOrder(l2);
902 sys::swapByteOrder(l3);
903 }
904 DumpLiteral16(l0, l1, l2, l3);
905 break;
906 }
907 }
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000908 }
909}
910
Kevin Enderbyf6d25852015-01-31 00:37:11 +0000911static void DumpInitTermPointerSection(MachOObjectFile *O, const char *sect,
912 uint32_t sect_size, uint64_t sect_addr,
913 SymbolAddressMap *AddrMap,
914 bool verbose) {
915 uint32_t stride;
916 if (O->is64Bit())
917 stride = sizeof(uint64_t);
918 else
919 stride = sizeof(uint32_t);
920 for (uint32_t i = 0; i < sect_size; i += stride) {
921 const char *SymbolName = nullptr;
922 if (O->is64Bit()) {
923 outs() << format("0x%016" PRIx64, sect_addr + i * stride) << " ";
924 uint64_t pointer_value;
925 memcpy(&pointer_value, sect + i, stride);
926 if (O->isLittleEndian() != sys::IsLittleEndianHost)
927 sys::swapByteOrder(pointer_value);
928 outs() << format("0x%016" PRIx64, pointer_value);
929 if (verbose)
930 SymbolName = GuessSymbolName(pointer_value, AddrMap);
931 } else {
932 outs() << format("0x%08" PRIx64, sect_addr + i * stride) << " ";
933 uint32_t pointer_value;
934 memcpy(&pointer_value, sect + i, stride);
935 if (O->isLittleEndian() != sys::IsLittleEndianHost)
936 sys::swapByteOrder(pointer_value);
937 outs() << format("0x%08" PRIx32, pointer_value);
938 if (verbose)
939 SymbolName = GuessSymbolName(pointer_value, AddrMap);
940 }
941 if (SymbolName)
942 outs() << " " << SymbolName;
943 outs() << "\n";
944 }
945}
946
947static void DumpRawSectionContents(MachOObjectFile *O, const char *sect,
948 uint32_t size, uint64_t addr) {
949 uint32_t cputype = O->getHeader().cputype;
950 if (cputype == MachO::CPU_TYPE_I386 || cputype == MachO::CPU_TYPE_X86_64) {
951 uint32_t j;
952 for (uint32_t i = 0; i < size; i += j, addr += j) {
953 if (O->is64Bit())
954 outs() << format("%016" PRIx64, addr) << "\t";
955 else
Kevin Enderbyf0640752015-03-13 17:56:32 +0000956 outs() << format("%08" PRIx64, addr) << "\t";
Kevin Enderbyf6d25852015-01-31 00:37:11 +0000957 for (j = 0; j < 16 && i + j < size; j++) {
958 uint8_t byte_word = *(sect + i + j);
959 outs() << format("%02" PRIx32, (uint32_t)byte_word) << " ";
960 }
961 outs() << "\n";
962 }
963 } else {
964 uint32_t j;
965 for (uint32_t i = 0; i < size; i += j, addr += j) {
966 if (O->is64Bit())
967 outs() << format("%016" PRIx64, addr) << "\t";
968 else
969 outs() << format("%08" PRIx64, sect) << "\t";
970 for (j = 0; j < 4 * sizeof(int32_t) && i + j < size;
971 j += sizeof(int32_t)) {
972 if (i + j + sizeof(int32_t) < size) {
973 uint32_t long_word;
974 memcpy(&long_word, sect + i + j, sizeof(int32_t));
975 if (O->isLittleEndian() != sys::IsLittleEndianHost)
976 sys::swapByteOrder(long_word);
977 outs() << format("%08" PRIx32, long_word) << " ";
978 } else {
979 for (uint32_t k = 0; i + j + k < size; k++) {
980 uint8_t byte_word = *(sect + i + j);
981 outs() << format("%02" PRIx32, (uint32_t)byte_word) << " ";
982 }
983 }
984 }
985 outs() << "\n";
986 }
987 }
988}
989
Kevin Enderby95df54c2015-02-04 01:01:38 +0000990static void DisassembleMachO(StringRef Filename, MachOObjectFile *MachOOF,
991 StringRef DisSegName, StringRef DisSectName);
Kevin Enderby4ad9bde2015-04-16 22:33:20 +0000992static void DumpProtocolSection(MachOObjectFile *O, const char *sect,
993 uint32_t size, uint32_t addr);
Kevin Enderby95df54c2015-02-04 01:01:38 +0000994
995static void DumpSectionContents(StringRef Filename, MachOObjectFile *O,
996 bool verbose) {
Kevin Enderbyf6d25852015-01-31 00:37:11 +0000997 SymbolAddressMap AddrMap;
998 if (verbose)
999 CreateSymbolAddressMap(O, &AddrMap);
1000
Colin LeMahieufcc32762015-07-29 19:08:10 +00001001 for (unsigned i = 0; i < FilterSections.size(); ++i) {
1002 StringRef DumpSection = FilterSections[i];
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001003 std::pair<StringRef, StringRef> DumpSegSectName;
1004 DumpSegSectName = DumpSection.split(',');
1005 StringRef DumpSegName, DumpSectName;
1006 if (DumpSegSectName.second.size()) {
1007 DumpSegName = DumpSegSectName.first;
1008 DumpSectName = DumpSegSectName.second;
1009 } else {
1010 DumpSegName = "";
1011 DumpSectName = DumpSegSectName.first;
1012 }
1013 for (const SectionRef &Section : O->sections()) {
1014 StringRef SectName;
1015 Section.getName(SectName);
1016 DataRefImpl Ref = Section.getRawDataRefImpl();
1017 StringRef SegName = O->getSectionFinalSegmentName(Ref);
1018 if ((DumpSegName.empty() || SegName == DumpSegName) &&
1019 (SectName == DumpSectName)) {
Adrian Prantlc2401dd2015-03-27 17:31:15 +00001020
Kevin Enderby95df54c2015-02-04 01:01:38 +00001021 uint32_t section_flags;
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001022 if (O->is64Bit()) {
1023 const MachO::section_64 Sec = O->getSection64(Ref);
Kevin Enderby95df54c2015-02-04 01:01:38 +00001024 section_flags = Sec.flags;
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001025
1026 } else {
1027 const MachO::section Sec = O->getSection(Ref);
Kevin Enderby95df54c2015-02-04 01:01:38 +00001028 section_flags = Sec.flags;
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001029 }
Kevin Enderby95df54c2015-02-04 01:01:38 +00001030 uint32_t section_type = section_flags & MachO::SECTION_TYPE;
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001031
1032 StringRef BytesStr;
1033 Section.getContents(BytesStr);
1034 const char *sect = reinterpret_cast<const char *>(BytesStr.data());
1035 uint32_t sect_size = BytesStr.size();
1036 uint64_t sect_addr = Section.getAddress();
1037
Adrian Prantlc2401dd2015-03-27 17:31:15 +00001038 outs() << "Contents of (" << SegName << "," << SectName
1039 << ") section\n";
1040
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001041 if (verbose) {
Kevin Enderby95df54c2015-02-04 01:01:38 +00001042 if ((section_flags & MachO::S_ATTR_PURE_INSTRUCTIONS) ||
1043 (section_flags & MachO::S_ATTR_SOME_INSTRUCTIONS)) {
1044 DisassembleMachO(Filename, O, SegName, SectName);
1045 continue;
1046 }
Kevin Enderbycd66be52015-03-11 22:06:32 +00001047 if (SegName == "__TEXT" && SectName == "__info_plist") {
1048 outs() << sect;
1049 continue;
1050 }
Kevin Enderby4ad9bde2015-04-16 22:33:20 +00001051 if (SegName == "__OBJC" && SectName == "__protocol") {
1052 DumpProtocolSection(O, sect, sect_size, sect_addr);
1053 continue;
1054 }
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001055 switch (section_type) {
1056 case MachO::S_REGULAR:
1057 DumpRawSectionContents(O, sect, sect_size, sect_addr);
1058 break;
1059 case MachO::S_ZEROFILL:
1060 outs() << "zerofill section and has no contents in the file\n";
1061 break;
Kevin Enderby10ba0412015-02-04 21:38:42 +00001062 case MachO::S_CSTRING_LITERALS:
Kevin Enderbyab5e6c92015-03-17 21:07:39 +00001063 DumpCstringSection(O, sect, sect_size, sect_addr, !NoLeadingAddr);
Kevin Enderby10ba0412015-02-04 21:38:42 +00001064 break;
Kevin Enderby74b43cb2015-02-06 23:25:38 +00001065 case MachO::S_4BYTE_LITERALS:
Kevin Enderbyab5e6c92015-03-17 21:07:39 +00001066 DumpLiteral4Section(O, sect, sect_size, sect_addr, !NoLeadingAddr);
Kevin Enderby74b43cb2015-02-06 23:25:38 +00001067 break;
1068 case MachO::S_8BYTE_LITERALS:
Kevin Enderbyab5e6c92015-03-17 21:07:39 +00001069 DumpLiteral8Section(O, sect, sect_size, sect_addr, !NoLeadingAddr);
Kevin Enderby74b43cb2015-02-06 23:25:38 +00001070 break;
1071 case MachO::S_16BYTE_LITERALS:
Kevin Enderby0fc11822015-04-01 20:57:01 +00001072 DumpLiteral16Section(O, sect, sect_size, sect_addr, !NoLeadingAddr);
1073 break;
Kevin Enderby578fe5a2015-02-17 21:35:48 +00001074 case MachO::S_LITERAL_POINTERS:
1075 DumpLiteralPointerSection(O, Section, sect, sect_size, sect_addr,
Kevin Enderbyab5e6c92015-03-17 21:07:39 +00001076 !NoLeadingAddr);
Kevin Enderby578fe5a2015-02-17 21:35:48 +00001077 break;
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001078 case MachO::S_MOD_INIT_FUNC_POINTERS:
1079 case MachO::S_MOD_TERM_FUNC_POINTERS:
1080 DumpInitTermPointerSection(O, sect, sect_size, sect_addr, &AddrMap,
1081 verbose);
1082 break;
1083 default:
1084 outs() << "Unknown section type ("
1085 << format("0x%08" PRIx32, section_type) << ")\n";
1086 DumpRawSectionContents(O, sect, sect_size, sect_addr);
1087 break;
1088 }
1089 } else {
1090 if (section_type == MachO::S_ZEROFILL)
1091 outs() << "zerofill section and has no contents in the file\n";
1092 else
1093 DumpRawSectionContents(O, sect, sect_size, sect_addr);
1094 }
1095 }
1096 }
1097 }
1098}
1099
Kevin Enderbycd66be52015-03-11 22:06:32 +00001100static void DumpInfoPlistSectionContents(StringRef Filename,
1101 MachOObjectFile *O) {
1102 for (const SectionRef &Section : O->sections()) {
1103 StringRef SectName;
1104 Section.getName(SectName);
1105 DataRefImpl Ref = Section.getRawDataRefImpl();
1106 StringRef SegName = O->getSectionFinalSegmentName(Ref);
1107 if (SegName == "__TEXT" && SectName == "__info_plist") {
1108 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
1109 StringRef BytesStr;
1110 Section.getContents(BytesStr);
1111 const char *sect = reinterpret_cast<const char *>(BytesStr.data());
1112 outs() << sect;
1113 return;
1114 }
1115 }
1116}
1117
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001118// checkMachOAndArchFlags() checks to see if the ObjectFile is a Mach-O file
1119// and if it is and there is a list of architecture flags is specified then
1120// check to make sure this Mach-O file is one of those architectures or all
1121// architectures were specified. If not then an error is generated and this
1122// routine returns false. Else it returns true.
1123static bool checkMachOAndArchFlags(ObjectFile *O, StringRef Filename) {
1124 if (isa<MachOObjectFile>(O) && !ArchAll && ArchFlags.size() != 0) {
1125 MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(O);
1126 bool ArchFound = false;
1127 MachO::mach_header H;
1128 MachO::mach_header_64 H_64;
1129 Triple T;
1130 if (MachO->is64Bit()) {
1131 H_64 = MachO->MachOObjectFile::getHeader64();
1132 T = MachOObjectFile::getArch(H_64.cputype, H_64.cpusubtype);
1133 } else {
1134 H = MachO->MachOObjectFile::getHeader();
1135 T = MachOObjectFile::getArch(H.cputype, H.cpusubtype);
1136 }
1137 unsigned i;
1138 for (i = 0; i < ArchFlags.size(); ++i) {
1139 if (ArchFlags[i] == T.getArchName())
1140 ArchFound = true;
1141 break;
1142 }
1143 if (!ArchFound) {
1144 errs() << "llvm-objdump: file: " + Filename + " does not contain "
1145 << "architecture: " + ArchFlags[i] + "\n";
1146 return false;
1147 }
1148 }
1149 return true;
1150}
1151
Kevin Enderby0fc11822015-04-01 20:57:01 +00001152static void printObjcMetaData(MachOObjectFile *O, bool verbose);
1153
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001154// ProcessMachO() is passed a single opened Mach-O file, which may be an
1155// archive member and or in a slice of a universal file. It prints the
1156// the file name and header info and then processes it according to the
1157// command line options.
1158static void ProcessMachO(StringRef Filename, MachOObjectFile *MachOOF,
1159 StringRef ArchiveMemberName = StringRef(),
1160 StringRef ArchitectureName = StringRef()) {
Kevin Enderby131d1772015-01-09 19:22:37 +00001161 // If we are doing some processing here on the Mach-O file print the header
1162 // info. And don't print it otherwise like in the case of printing the
Kevin Enderbya7bdc7e2015-01-22 18:55:27 +00001163 // UniversalHeaders or ArchiveHeaders.
Kevin Enderby131d1772015-01-09 19:22:37 +00001164 if (Disassemble || PrivateHeaders || ExportsTrie || Rebase || Bind ||
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001165 LazyBind || WeakBind || IndirectSymbols || DataInCode || LinkOptHints ||
Colin LeMahieufcc32762015-07-29 19:08:10 +00001166 DylibsUsed || DylibId || ObjcMetaData || (FilterSections.size() != 0)) {
Kevin Enderby131d1772015-01-09 19:22:37 +00001167 outs() << Filename;
1168 if (!ArchiveMemberName.empty())
1169 outs() << '(' << ArchiveMemberName << ')';
1170 if (!ArchitectureName.empty())
1171 outs() << " (architecture " << ArchitectureName << ")";
1172 outs() << ":\n";
1173 }
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001174
1175 if (Disassemble)
Kevin Enderby95df54c2015-02-04 01:01:38 +00001176 DisassembleMachO(Filename, MachOOF, "__TEXT", "__text");
Kevin Enderbya7bdc7e2015-01-22 18:55:27 +00001177 if (IndirectSymbols)
Kevin Enderbyf0640752015-03-13 17:56:32 +00001178 PrintIndirectSymbols(MachOOF, !NonVerbose);
Kevin Enderby69fe98d2015-01-23 18:52:17 +00001179 if (DataInCode)
Kevin Enderbyf0640752015-03-13 17:56:32 +00001180 PrintDataInCodeTable(MachOOF, !NonVerbose);
Kevin Enderby9a509442015-01-27 21:28:24 +00001181 if (LinkOptHints)
1182 PrintLinkOptHints(MachOOF);
Kevin Enderby98da6132015-01-20 21:47:46 +00001183 if (Relocations)
1184 PrintRelocations(MachOOF);
1185 if (SectionHeaders)
1186 PrintSectionHeaders(MachOOF);
1187 if (SectionContents)
1188 PrintSectionContents(MachOOF);
Colin LeMahieufcc32762015-07-29 19:08:10 +00001189 if (FilterSections.size() != 0)
Kevin Enderbyf0640752015-03-13 17:56:32 +00001190 DumpSectionContents(Filename, MachOOF, !NonVerbose);
Kevin Enderbycd66be52015-03-11 22:06:32 +00001191 if (InfoPlist)
1192 DumpInfoPlistSectionContents(Filename, MachOOF);
Kevin Enderbybc847fa2015-03-16 20:08:09 +00001193 if (DylibsUsed)
1194 PrintDylibs(MachOOF, false);
1195 if (DylibId)
1196 PrintDylibs(MachOOF, true);
Kevin Enderby98da6132015-01-20 21:47:46 +00001197 if (SymbolTable)
1198 PrintSymbolTable(MachOOF);
1199 if (UnwindInfo)
1200 printMachOUnwindInfo(MachOOF);
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001201 if (PrivateHeaders)
1202 printMachOFileHeader(MachOOF);
Kevin Enderby0fc11822015-04-01 20:57:01 +00001203 if (ObjcMetaData)
1204 printObjcMetaData(MachOOF, !NonVerbose);
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001205 if (ExportsTrie)
1206 printExportsTrie(MachOOF);
1207 if (Rebase)
1208 printRebaseTable(MachOOF);
1209 if (Bind)
1210 printBindTable(MachOOF);
1211 if (LazyBind)
1212 printLazyBindTable(MachOOF);
1213 if (WeakBind)
1214 printWeakBindTable(MachOOF);
1215}
1216
Kevin Enderby131d1772015-01-09 19:22:37 +00001217// printUnknownCPUType() helps print_fat_headers for unknown CPU's.
1218static void printUnknownCPUType(uint32_t cputype, uint32_t cpusubtype) {
1219 outs() << " cputype (" << cputype << ")\n";
1220 outs() << " cpusubtype (" << cpusubtype << ")\n";
1221}
1222
1223// printCPUType() helps print_fat_headers by printing the cputype and
1224// pusubtype (symbolically for the one's it knows about).
1225static void printCPUType(uint32_t cputype, uint32_t cpusubtype) {
1226 switch (cputype) {
1227 case MachO::CPU_TYPE_I386:
1228 switch (cpusubtype) {
1229 case MachO::CPU_SUBTYPE_I386_ALL:
1230 outs() << " cputype CPU_TYPE_I386\n";
1231 outs() << " cpusubtype CPU_SUBTYPE_I386_ALL\n";
1232 break;
1233 default:
1234 printUnknownCPUType(cputype, cpusubtype);
1235 break;
1236 }
1237 break;
1238 case MachO::CPU_TYPE_X86_64:
1239 switch (cpusubtype) {
1240 case MachO::CPU_SUBTYPE_X86_64_ALL:
1241 outs() << " cputype CPU_TYPE_X86_64\n";
1242 outs() << " cpusubtype CPU_SUBTYPE_X86_64_ALL\n";
1243 break;
1244 case MachO::CPU_SUBTYPE_X86_64_H:
1245 outs() << " cputype CPU_TYPE_X86_64\n";
1246 outs() << " cpusubtype CPU_SUBTYPE_X86_64_H\n";
1247 break;
1248 default:
1249 printUnknownCPUType(cputype, cpusubtype);
1250 break;
1251 }
1252 break;
1253 case MachO::CPU_TYPE_ARM:
1254 switch (cpusubtype) {
1255 case MachO::CPU_SUBTYPE_ARM_ALL:
1256 outs() << " cputype CPU_TYPE_ARM\n";
1257 outs() << " cpusubtype CPU_SUBTYPE_ARM_ALL\n";
1258 break;
1259 case MachO::CPU_SUBTYPE_ARM_V4T:
1260 outs() << " cputype CPU_TYPE_ARM\n";
1261 outs() << " cpusubtype CPU_SUBTYPE_ARM_V4T\n";
1262 break;
1263 case MachO::CPU_SUBTYPE_ARM_V5TEJ:
1264 outs() << " cputype CPU_TYPE_ARM\n";
1265 outs() << " cpusubtype CPU_SUBTYPE_ARM_V5TEJ\n";
1266 break;
1267 case MachO::CPU_SUBTYPE_ARM_XSCALE:
1268 outs() << " cputype CPU_TYPE_ARM\n";
1269 outs() << " cpusubtype CPU_SUBTYPE_ARM_XSCALE\n";
1270 break;
1271 case MachO::CPU_SUBTYPE_ARM_V6:
1272 outs() << " cputype CPU_TYPE_ARM\n";
1273 outs() << " cpusubtype CPU_SUBTYPE_ARM_V6\n";
1274 break;
1275 case MachO::CPU_SUBTYPE_ARM_V6M:
1276 outs() << " cputype CPU_TYPE_ARM\n";
1277 outs() << " cpusubtype CPU_SUBTYPE_ARM_V6M\n";
1278 break;
1279 case MachO::CPU_SUBTYPE_ARM_V7:
1280 outs() << " cputype CPU_TYPE_ARM\n";
1281 outs() << " cpusubtype CPU_SUBTYPE_ARM_V7\n";
1282 break;
1283 case MachO::CPU_SUBTYPE_ARM_V7EM:
1284 outs() << " cputype CPU_TYPE_ARM\n";
1285 outs() << " cpusubtype CPU_SUBTYPE_ARM_V7EM\n";
1286 break;
1287 case MachO::CPU_SUBTYPE_ARM_V7K:
1288 outs() << " cputype CPU_TYPE_ARM\n";
1289 outs() << " cpusubtype CPU_SUBTYPE_ARM_V7K\n";
1290 break;
1291 case MachO::CPU_SUBTYPE_ARM_V7M:
1292 outs() << " cputype CPU_TYPE_ARM\n";
1293 outs() << " cpusubtype CPU_SUBTYPE_ARM_V7M\n";
1294 break;
1295 case MachO::CPU_SUBTYPE_ARM_V7S:
1296 outs() << " cputype CPU_TYPE_ARM\n";
1297 outs() << " cpusubtype CPU_SUBTYPE_ARM_V7S\n";
1298 break;
1299 default:
1300 printUnknownCPUType(cputype, cpusubtype);
1301 break;
1302 }
1303 break;
1304 case MachO::CPU_TYPE_ARM64:
1305 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
1306 case MachO::CPU_SUBTYPE_ARM64_ALL:
1307 outs() << " cputype CPU_TYPE_ARM64\n";
1308 outs() << " cpusubtype CPU_SUBTYPE_ARM64_ALL\n";
1309 break;
1310 default:
1311 printUnknownCPUType(cputype, cpusubtype);
1312 break;
1313 }
1314 break;
1315 default:
1316 printUnknownCPUType(cputype, cpusubtype);
1317 break;
1318 }
1319}
1320
1321static void printMachOUniversalHeaders(const object::MachOUniversalBinary *UB,
1322 bool verbose) {
1323 outs() << "Fat headers\n";
1324 if (verbose)
1325 outs() << "fat_magic FAT_MAGIC\n";
1326 else
1327 outs() << "fat_magic " << format("0x%" PRIx32, MachO::FAT_MAGIC) << "\n";
1328
1329 uint32_t nfat_arch = UB->getNumberOfObjects();
1330 StringRef Buf = UB->getData();
1331 uint64_t size = Buf.size();
1332 uint64_t big_size = sizeof(struct MachO::fat_header) +
1333 nfat_arch * sizeof(struct MachO::fat_arch);
1334 outs() << "nfat_arch " << UB->getNumberOfObjects();
1335 if (nfat_arch == 0)
1336 outs() << " (malformed, contains zero architecture types)\n";
1337 else if (big_size > size)
1338 outs() << " (malformed, architectures past end of file)\n";
1339 else
1340 outs() << "\n";
1341
1342 for (uint32_t i = 0; i < nfat_arch; ++i) {
1343 MachOUniversalBinary::ObjectForArch OFA(UB, i);
1344 uint32_t cputype = OFA.getCPUType();
1345 uint32_t cpusubtype = OFA.getCPUSubType();
1346 outs() << "architecture ";
1347 for (uint32_t j = 0; i != 0 && j <= i - 1; j++) {
1348 MachOUniversalBinary::ObjectForArch other_OFA(UB, j);
1349 uint32_t other_cputype = other_OFA.getCPUType();
1350 uint32_t other_cpusubtype = other_OFA.getCPUSubType();
Kevin Enderby0512bd72015-01-09 21:55:03 +00001351 if (cputype != 0 && cpusubtype != 0 && cputype == other_cputype &&
Kevin Enderby131d1772015-01-09 19:22:37 +00001352 (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) ==
Kevin Enderby0512bd72015-01-09 21:55:03 +00001353 (other_cpusubtype & ~MachO::CPU_SUBTYPE_MASK)) {
Kevin Enderby131d1772015-01-09 19:22:37 +00001354 outs() << "(illegal duplicate architecture) ";
1355 break;
Kevin Enderby0512bd72015-01-09 21:55:03 +00001356 }
Kevin Enderby131d1772015-01-09 19:22:37 +00001357 }
1358 if (verbose) {
1359 outs() << OFA.getArchTypeName() << "\n";
1360 printCPUType(cputype, cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
1361 } else {
1362 outs() << i << "\n";
1363 outs() << " cputype " << cputype << "\n";
1364 outs() << " cpusubtype " << (cpusubtype & ~MachO::CPU_SUBTYPE_MASK)
1365 << "\n";
1366 }
1367 if (verbose &&
1368 (cpusubtype & MachO::CPU_SUBTYPE_MASK) == MachO::CPU_SUBTYPE_LIB64)
1369 outs() << " capabilities CPU_SUBTYPE_LIB64\n";
1370 else
1371 outs() << " capabilities "
1372 << format("0x%" PRIx32,
1373 (cpusubtype & MachO::CPU_SUBTYPE_MASK) >> 24) << "\n";
1374 outs() << " offset " << OFA.getOffset();
1375 if (OFA.getOffset() > size)
1376 outs() << " (past end of file)";
1377 if (OFA.getOffset() % (1 << OFA.getAlign()) != 0)
1378 outs() << " (not aligned on it's alignment (2^" << OFA.getAlign() << ")";
1379 outs() << "\n";
1380 outs() << " size " << OFA.getSize();
1381 big_size = OFA.getOffset() + OFA.getSize();
1382 if (big_size > size)
1383 outs() << " (past end of file)";
1384 outs() << "\n";
1385 outs() << " align 2^" << OFA.getAlign() << " (" << (1 << OFA.getAlign())
1386 << ")\n";
1387 }
1388}
1389
Rafael Espindola266b4fe2015-10-31 22:25:59 +00001390static void printArchiveChild(const Archive::Child &C, bool verbose,
Kevin Enderby13023a12015-01-15 23:19:11 +00001391 bool print_offset) {
1392 if (print_offset)
1393 outs() << C.getChildOffset() << "\t";
1394 sys::fs::perms Mode = C.getAccessMode();
1395 if (verbose) {
1396 // FIXME: this first dash, "-", is for (Mode & S_IFMT) == S_IFREG.
1397 // But there is nothing in sys::fs::perms for S_IFMT or S_IFREG.
1398 outs() << "-";
Davide Italianobb9a6cc2015-09-07 20:47:03 +00001399 outs() << ((Mode & sys::fs::owner_read) ? "r" : "-");
1400 outs() << ((Mode & sys::fs::owner_write) ? "w" : "-");
1401 outs() << ((Mode & sys::fs::owner_exe) ? "x" : "-");
1402 outs() << ((Mode & sys::fs::group_read) ? "r" : "-");
1403 outs() << ((Mode & sys::fs::group_write) ? "w" : "-");
1404 outs() << ((Mode & sys::fs::group_exe) ? "x" : "-");
1405 outs() << ((Mode & sys::fs::others_read) ? "r" : "-");
1406 outs() << ((Mode & sys::fs::others_write) ? "w" : "-");
1407 outs() << ((Mode & sys::fs::others_exe) ? "x" : "-");
Kevin Enderby13023a12015-01-15 23:19:11 +00001408 } else {
1409 outs() << format("0%o ", Mode);
1410 }
1411
1412 unsigned UID = C.getUID();
1413 outs() << format("%3d/", UID);
1414 unsigned GID = C.getGID();
1415 outs() << format("%-3d ", GID);
Kevin Enderby7a969422015-11-05 19:24:56 +00001416 ErrorOr<uint64_t> Size = C.getRawSize();
1417 if (std::error_code EC = Size.getError())
1418 report_fatal_error(EC.message());
1419 outs() << format("%5" PRId64, Size.get()) << " ";
Kevin Enderby13023a12015-01-15 23:19:11 +00001420
1421 StringRef RawLastModified = C.getRawLastModified();
1422 if (verbose) {
1423 unsigned Seconds;
1424 if (RawLastModified.getAsInteger(10, Seconds))
1425 outs() << "(date: \"%s\" contains non-decimal chars) " << RawLastModified;
1426 else {
1427 // Since cime(3) returns a 26 character string of the form:
1428 // "Sun Sep 16 01:03:52 1973\n\0"
1429 // just print 24 characters.
1430 time_t t = Seconds;
1431 outs() << format("%.24s ", ctime(&t));
1432 }
1433 } else {
1434 outs() << RawLastModified << " ";
1435 }
1436
1437 if (verbose) {
1438 ErrorOr<StringRef> NameOrErr = C.getName();
1439 if (NameOrErr.getError()) {
1440 StringRef RawName = C.getRawName();
1441 outs() << RawName << "\n";
1442 } else {
1443 StringRef Name = NameOrErr.get();
1444 outs() << Name << "\n";
1445 }
1446 } else {
1447 StringRef RawName = C.getRawName();
1448 outs() << RawName << "\n";
1449 }
1450}
1451
1452static void printArchiveHeaders(Archive *A, bool verbose, bool print_offset) {
Rafael Espindola4a782fb2015-10-31 21:03:29 +00001453 for (Archive::child_iterator I = A->child_begin(false), E = A->child_end();
1454 I != E; ++I) {
Kevin Enderby7a969422015-11-05 19:24:56 +00001455 if (std::error_code EC = I->getError())
1456 report_fatal_error(EC.message());
1457 const Archive::Child &C = **I;
Kevin Enderby13023a12015-01-15 23:19:11 +00001458 printArchiveChild(C, verbose, print_offset);
1459 }
1460}
1461
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001462// ParseInputMachO() parses the named Mach-O file in Filename and handles the
1463// -arch flags selecting just those slices as specified by them and also parses
1464// archive files. Then for each individual Mach-O file ProcessMachO() is
1465// called to process the file based on the command line options.
1466void llvm::ParseInputMachO(StringRef Filename) {
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001467 // Check for -arch all and verifiy the -arch flags are valid.
1468 for (unsigned i = 0; i < ArchFlags.size(); ++i) {
1469 if (ArchFlags[i] == "all") {
1470 ArchAll = true;
1471 } else {
1472 if (!MachOObjectFile::isValidArch(ArchFlags[i])) {
1473 errs() << "llvm-objdump: Unknown architecture named '" + ArchFlags[i] +
1474 "'for the -arch option\n";
1475 return;
1476 }
1477 }
1478 }
1479
1480 // Attempt to open the binary.
1481 ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(Filename);
1482 if (std::error_code EC = BinaryOrErr.getError()) {
1483 errs() << "llvm-objdump: '" << Filename << "': " << EC.message() << ".\n";
Rafael Espindolade882cd2014-12-03 23:29:34 +00001484 return;
Kevin Enderby3f0ffab2014-12-03 22:29:40 +00001485 }
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001486 Binary &Bin = *BinaryOrErr.get().getBinary();
Kevin Enderby3f0ffab2014-12-03 22:29:40 +00001487
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001488 if (Archive *A = dyn_cast<Archive>(&Bin)) {
1489 outs() << "Archive : " << Filename << "\n";
Kevin Enderby13023a12015-01-15 23:19:11 +00001490 if (ArchiveHeaders)
Kevin Enderby8972e482015-04-30 20:30:42 +00001491 printArchiveHeaders(A, !NonVerbose, ArchiveMemberOffsets);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001492 for (Archive::child_iterator I = A->child_begin(), E = A->child_end();
1493 I != E; ++I) {
Davide Italianob13edeb2015-12-08 02:45:59 +00001494 if (std::error_code EC = I->getError())
1495 report_error(Filename, EC);
Kevin Enderby7a969422015-11-05 19:24:56 +00001496 auto &C = I->get();
1497 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = C.getAsBinary();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001498 if (ChildOrErr.getError())
1499 continue;
1500 if (MachOObjectFile *O = dyn_cast<MachOObjectFile>(&*ChildOrErr.get())) {
1501 if (!checkMachOAndArchFlags(O, Filename))
1502 return;
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001503 ProcessMachO(Filename, O, O->getFileName());
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001504 }
1505 }
1506 return;
1507 }
Kevin Enderby131d1772015-01-09 19:22:37 +00001508 if (UniversalHeaders) {
1509 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin))
Kevin Enderbyf0640752015-03-13 17:56:32 +00001510 printMachOUniversalHeaders(UB, !NonVerbose);
Kevin Enderby131d1772015-01-09 19:22:37 +00001511 }
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001512 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin)) {
1513 // If we have a list of architecture flags specified dump only those.
1514 if (!ArchAll && ArchFlags.size() != 0) {
1515 // Look for a slice in the universal binary that matches each ArchFlag.
1516 bool ArchFound;
1517 for (unsigned i = 0; i < ArchFlags.size(); ++i) {
1518 ArchFound = false;
1519 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1520 E = UB->end_objects();
1521 I != E; ++I) {
1522 if (ArchFlags[i] == I->getArchTypeName()) {
1523 ArchFound = true;
1524 ErrorOr<std::unique_ptr<ObjectFile>> ObjOrErr =
1525 I->getAsObjectFile();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001526 std::string ArchitectureName = "";
1527 if (ArchFlags.size() > 1)
1528 ArchitectureName = I->getArchTypeName();
1529 if (ObjOrErr) {
1530 ObjectFile &O = *ObjOrErr.get();
1531 if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(&O))
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001532 ProcessMachO(Filename, MachOOF, "", ArchitectureName);
Rafael Espindola0bfe8282014-12-09 21:05:36 +00001533 } else if (ErrorOr<std::unique_ptr<Archive>> AOrErr =
1534 I->getAsArchive()) {
1535 std::unique_ptr<Archive> &A = *AOrErr;
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001536 outs() << "Archive : " << Filename;
1537 if (!ArchitectureName.empty())
1538 outs() << " (architecture " << ArchitectureName << ")";
1539 outs() << "\n";
Kevin Enderby13023a12015-01-15 23:19:11 +00001540 if (ArchiveHeaders)
Kevin Enderby8972e482015-04-30 20:30:42 +00001541 printArchiveHeaders(A.get(), !NonVerbose, ArchiveMemberOffsets);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001542 for (Archive::child_iterator AI = A->child_begin(),
1543 AE = A->child_end();
1544 AI != AE; ++AI) {
Davide Italianob13edeb2015-12-08 02:45:59 +00001545 if (std::error_code EC = AI->getError())
1546 report_error(Filename, EC);
Kevin Enderby7a969422015-11-05 19:24:56 +00001547 auto &C = AI->get();
1548 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = C.getAsBinary();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001549 if (ChildOrErr.getError())
1550 continue;
1551 if (MachOObjectFile *O =
1552 dyn_cast<MachOObjectFile>(&*ChildOrErr.get()))
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001553 ProcessMachO(Filename, O, O->getFileName(), ArchitectureName);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001554 }
1555 }
1556 }
1557 }
1558 if (!ArchFound) {
1559 errs() << "llvm-objdump: file: " + Filename + " does not contain "
1560 << "architecture: " + ArchFlags[i] + "\n";
1561 return;
1562 }
1563 }
1564 return;
1565 }
1566 // No architecture flags were specified so if this contains a slice that
1567 // matches the host architecture dump only that.
1568 if (!ArchAll) {
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001569 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1570 E = UB->end_objects();
1571 I != E; ++I) {
Kevin Enderby0512bd72015-01-09 21:55:03 +00001572 if (MachOObjectFile::getHostArch().getArchName() ==
1573 I->getArchTypeName()) {
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001574 ErrorOr<std::unique_ptr<ObjectFile>> ObjOrErr = I->getAsObjectFile();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001575 std::string ArchiveName;
1576 ArchiveName.clear();
1577 if (ObjOrErr) {
1578 ObjectFile &O = *ObjOrErr.get();
1579 if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(&O))
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001580 ProcessMachO(Filename, MachOOF);
Rafael Espindola0bfe8282014-12-09 21:05:36 +00001581 } else if (ErrorOr<std::unique_ptr<Archive>> AOrErr =
1582 I->getAsArchive()) {
1583 std::unique_ptr<Archive> &A = *AOrErr;
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001584 outs() << "Archive : " << Filename << "\n";
Kevin Enderby13023a12015-01-15 23:19:11 +00001585 if (ArchiveHeaders)
Kevin Enderby8972e482015-04-30 20:30:42 +00001586 printArchiveHeaders(A.get(), !NonVerbose, ArchiveMemberOffsets);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001587 for (Archive::child_iterator AI = A->child_begin(),
1588 AE = A->child_end();
1589 AI != AE; ++AI) {
Davide Italianob13edeb2015-12-08 02:45:59 +00001590 if (std::error_code EC = AI->getError())
1591 report_error(Filename, EC);
Kevin Enderby7a969422015-11-05 19:24:56 +00001592 auto &C = AI->get();
1593 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = C.getAsBinary();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001594 if (ChildOrErr.getError())
1595 continue;
1596 if (MachOObjectFile *O =
1597 dyn_cast<MachOObjectFile>(&*ChildOrErr.get()))
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001598 ProcessMachO(Filename, O, O->getFileName());
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001599 }
1600 }
1601 return;
1602 }
1603 }
1604 }
1605 // Either all architectures have been specified or none have been specified
1606 // and this does not contain the host architecture so dump all the slices.
1607 bool moreThanOneArch = UB->getNumberOfObjects() > 1;
1608 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1609 E = UB->end_objects();
1610 I != E; ++I) {
1611 ErrorOr<std::unique_ptr<ObjectFile>> ObjOrErr = I->getAsObjectFile();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001612 std::string ArchitectureName = "";
1613 if (moreThanOneArch)
1614 ArchitectureName = I->getArchTypeName();
1615 if (ObjOrErr) {
1616 ObjectFile &Obj = *ObjOrErr.get();
1617 if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(&Obj))
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001618 ProcessMachO(Filename, MachOOF, "", ArchitectureName);
Rafael Espindola0bfe8282014-12-09 21:05:36 +00001619 } else if (ErrorOr<std::unique_ptr<Archive>> AOrErr = I->getAsArchive()) {
1620 std::unique_ptr<Archive> &A = *AOrErr;
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001621 outs() << "Archive : " << Filename;
1622 if (!ArchitectureName.empty())
1623 outs() << " (architecture " << ArchitectureName << ")";
1624 outs() << "\n";
Kevin Enderby13023a12015-01-15 23:19:11 +00001625 if (ArchiveHeaders)
Kevin Enderby8972e482015-04-30 20:30:42 +00001626 printArchiveHeaders(A.get(), !NonVerbose, ArchiveMemberOffsets);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001627 for (Archive::child_iterator AI = A->child_begin(), AE = A->child_end();
1628 AI != AE; ++AI) {
Davide Italianob13edeb2015-12-08 02:45:59 +00001629 if (std::error_code EC = AI->getError())
1630 report_error(Filename, EC);
Kevin Enderby7a969422015-11-05 19:24:56 +00001631 auto &C = AI->get();
1632 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = C.getAsBinary();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001633 if (ChildOrErr.getError())
1634 continue;
1635 if (MachOObjectFile *O =
1636 dyn_cast<MachOObjectFile>(&*ChildOrErr.get())) {
1637 if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(O))
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001638 ProcessMachO(Filename, MachOOF, MachOOF->getFileName(),
1639 ArchitectureName);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001640 }
1641 }
1642 }
1643 }
1644 return;
1645 }
1646 if (ObjectFile *O = dyn_cast<ObjectFile>(&Bin)) {
1647 if (!checkMachOAndArchFlags(O, Filename))
1648 return;
1649 if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(&*O)) {
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001650 ProcessMachO(Filename, MachOOF);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001651 } else
1652 errs() << "llvm-objdump: '" << Filename << "': "
1653 << "Object is not a Mach-O file type.\n";
1654 } else
1655 errs() << "llvm-objdump: '" << Filename << "': "
1656 << "Unrecognized file type.\n";
Rafael Espindola9b709252013-04-13 01:45:40 +00001657}
1658
Kevin Enderby6f326ce2014-10-23 19:37:31 +00001659typedef std::pair<uint64_t, const char *> BindInfoEntry;
1660typedef std::vector<BindInfoEntry> BindTable;
1661typedef BindTable::iterator bind_table_iterator;
Kevin Enderbybf246f52014-09-24 23:08:22 +00001662
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001663// The block of info used by the Symbolizer call backs.
1664struct DisassembleInfo {
1665 bool verbose;
1666 MachOObjectFile *O;
1667 SectionRef S;
Kevin Enderbybf246f52014-09-24 23:08:22 +00001668 SymbolAddressMap *AddrMap;
Kevin Enderby6f326ce2014-10-23 19:37:31 +00001669 std::vector<SectionRef> *Sections;
1670 const char *class_name;
1671 const char *selector_name;
1672 char *method;
Kevin Enderby04bf6932014-10-28 23:39:46 +00001673 char *demangled_name;
Kevin Enderbyae3c1262014-11-14 21:52:18 +00001674 uint64_t adrp_addr;
1675 uint32_t adrp_inst;
Kevin Enderby078be602014-10-23 19:53:12 +00001676 BindTable *bindtable;
Kevin Enderbyaac75382015-10-08 16:56:35 +00001677 uint32_t depth;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001678};
1679
1680// SymbolizerGetOpInfo() is the operand information call back function.
1681// This is called to get the symbolic information for operand(s) of an
1682// instruction when it is being done. This routine does this from
1683// the relocation information, symbol table, etc. That block of information
1684// is a pointer to the struct DisassembleInfo that was passed when the
1685// disassembler context was created and passed to back to here when
1686// called back by the disassembler for instruction operands that could have
1687// relocation information. The address of the instruction containing operand is
1688// at the Pc parameter. The immediate value the operand has is passed in
1689// op_info->Value and is at Offset past the start of the instruction and has a
1690// byte Size of 1, 2 or 4. The symbolc information is returned in TagBuf is the
1691// LLVMOpInfo1 struct defined in the header "llvm-c/Disassembler.h" as symbol
1692// names and addends of the symbolic expression to add for the operand. The
1693// value of TagType is currently 1 (for the LLVMOpInfo1 struct). If symbolic
1694// information is returned then this function returns 1 else it returns 0.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00001695static int SymbolizerGetOpInfo(void *DisInfo, uint64_t Pc, uint64_t Offset,
1696 uint64_t Size, int TagType, void *TagBuf) {
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001697 struct DisassembleInfo *info = (struct DisassembleInfo *)DisInfo;
1698 struct LLVMOpInfo1 *op_info = (struct LLVMOpInfo1 *)TagBuf;
Kevin Enderbyae3c1262014-11-14 21:52:18 +00001699 uint64_t value = op_info->Value;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001700
1701 // Make sure all fields returned are zero if we don't set them.
1702 memset((void *)op_info, '\0', sizeof(struct LLVMOpInfo1));
1703 op_info->Value = value;
1704
1705 // If the TagType is not the value 1 which it code knows about or if no
1706 // verbose symbolic information is wanted then just return 0, indicating no
1707 // information is being returned.
David Blaikie33dd45d02015-03-23 18:39:02 +00001708 if (TagType != 1 || !info->verbose)
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001709 return 0;
1710
1711 unsigned int Arch = info->O->getArch();
1712 if (Arch == Triple::x86) {
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001713 if (Size != 1 && Size != 2 && Size != 4 && Size != 0)
1714 return 0;
Kevin Enderbyd90a4172015-10-10 00:05:01 +00001715 if (info->O->getHeader().filetype != MachO::MH_OBJECT) {
1716 // TODO:
1717 // Search the external relocation entries of a fully linked image
1718 // (if any) for an entry that matches this segment offset.
1719 // uint32_t seg_offset = (Pc + Offset);
1720 return 0;
1721 }
1722 // In MH_OBJECT filetypes search the section's relocation entries (if any)
1723 // for an entry for this section offset.
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001724 uint32_t sect_addr = info->S.getAddress();
1725 uint32_t sect_offset = (Pc + Offset) - sect_addr;
1726 bool reloc_found = false;
1727 DataRefImpl Rel;
1728 MachO::any_relocation_info RE;
1729 bool isExtern = false;
1730 SymbolRef Symbol;
1731 bool r_scattered = false;
1732 uint32_t r_value, pair_r_value, r_type;
1733 for (const RelocationRef &Reloc : info->S.relocations()) {
Rafael Espindola96d071c2015-06-29 23:29:12 +00001734 uint64_t RelocOffset = Reloc.getOffset();
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001735 if (RelocOffset == sect_offset) {
1736 Rel = Reloc.getRawDataRefImpl();
1737 RE = info->O->getRelocation(Rel);
Kevin Enderby3eb73e12014-11-11 19:16:45 +00001738 r_type = info->O->getAnyRelocationType(RE);
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001739 r_scattered = info->O->isRelocationScattered(RE);
1740 if (r_scattered) {
1741 r_value = info->O->getScatteredRelocationValue(RE);
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001742 if (r_type == MachO::GENERIC_RELOC_SECTDIFF ||
1743 r_type == MachO::GENERIC_RELOC_LOCAL_SECTDIFF) {
1744 DataRefImpl RelNext = Rel;
1745 info->O->moveRelocationNext(RelNext);
1746 MachO::any_relocation_info RENext;
1747 RENext = info->O->getRelocation(RelNext);
1748 if (info->O->isRelocationScattered(RENext))
Kevin Enderby930fdc72014-11-06 19:00:13 +00001749 pair_r_value = info->O->getScatteredRelocationValue(RENext);
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001750 else
1751 return 0;
1752 }
1753 } else {
1754 isExtern = info->O->getPlainRelocationExternal(RE);
1755 if (isExtern) {
1756 symbol_iterator RelocSym = Reloc.getSymbol();
1757 Symbol = *RelocSym;
1758 }
1759 }
1760 reloc_found = true;
1761 break;
1762 }
1763 }
1764 if (reloc_found && isExtern) {
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00001765 ErrorOr<StringRef> SymName = Symbol.getName();
1766 if (std::error_code EC = SymName.getError())
1767 report_fatal_error(EC.message());
1768 const char *name = SymName->data();
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001769 op_info->AddSymbol.Present = 1;
1770 op_info->AddSymbol.Name = name;
1771 // For i386 extern relocation entries the value in the instruction is
1772 // the offset from the symbol, and value is already set in op_info->Value.
1773 return 1;
1774 }
1775 if (reloc_found && (r_type == MachO::GENERIC_RELOC_SECTDIFF ||
1776 r_type == MachO::GENERIC_RELOC_LOCAL_SECTDIFF)) {
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001777 const char *add = GuessSymbolName(r_value, info->AddrMap);
1778 const char *sub = GuessSymbolName(pair_r_value, info->AddrMap);
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001779 uint32_t offset = value - (r_value - pair_r_value);
1780 op_info->AddSymbol.Present = 1;
1781 if (add != nullptr)
1782 op_info->AddSymbol.Name = add;
1783 else
1784 op_info->AddSymbol.Value = r_value;
1785 op_info->SubtractSymbol.Present = 1;
1786 if (sub != nullptr)
1787 op_info->SubtractSymbol.Name = sub;
1788 else
1789 op_info->SubtractSymbol.Value = pair_r_value;
1790 op_info->Value = offset;
1791 return 1;
1792 }
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001793 return 0;
David Blaikie33dd45d02015-03-23 18:39:02 +00001794 }
1795 if (Arch == Triple::x86_64) {
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001796 if (Size != 1 && Size != 2 && Size != 4 && Size != 0)
1797 return 0;
Kevin Enderbyd90a4172015-10-10 00:05:01 +00001798 if (info->O->getHeader().filetype != MachO::MH_OBJECT) {
1799 // TODO:
1800 // Search the external relocation entries of a fully linked image
1801 // (if any) for an entry that matches this segment offset.
1802 // uint64_t seg_offset = (Pc + Offset);
1803 return 0;
1804 }
1805 // In MH_OBJECT filetypes search the section's relocation entries (if any)
1806 // for an entry for this section offset.
Rafael Espindola80291272014-10-08 15:28:58 +00001807 uint64_t sect_addr = info->S.getAddress();
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001808 uint64_t sect_offset = (Pc + Offset) - sect_addr;
1809 bool reloc_found = false;
1810 DataRefImpl Rel;
1811 MachO::any_relocation_info RE;
1812 bool isExtern = false;
1813 SymbolRef Symbol;
1814 for (const RelocationRef &Reloc : info->S.relocations()) {
Rafael Espindola96d071c2015-06-29 23:29:12 +00001815 uint64_t RelocOffset = Reloc.getOffset();
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001816 if (RelocOffset == sect_offset) {
1817 Rel = Reloc.getRawDataRefImpl();
1818 RE = info->O->getRelocation(Rel);
1819 // NOTE: Scattered relocations don't exist on x86_64.
1820 isExtern = info->O->getPlainRelocationExternal(RE);
1821 if (isExtern) {
1822 symbol_iterator RelocSym = Reloc.getSymbol();
1823 Symbol = *RelocSym;
1824 }
1825 reloc_found = true;
1826 break;
1827 }
1828 }
1829 if (reloc_found && isExtern) {
1830 // The Value passed in will be adjusted by the Pc if the instruction
1831 // adds the Pc. But for x86_64 external relocation entries the Value
1832 // is the offset from the external symbol.
1833 if (info->O->getAnyRelocationPCRel(RE))
1834 op_info->Value -= Pc + Offset + Size;
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00001835 ErrorOr<StringRef> SymName = Symbol.getName();
1836 if (std::error_code EC = SymName.getError())
1837 report_fatal_error(EC.message());
1838 const char *name = SymName->data();
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001839 unsigned Type = info->O->getAnyRelocationType(RE);
1840 if (Type == MachO::X86_64_RELOC_SUBTRACTOR) {
1841 DataRefImpl RelNext = Rel;
1842 info->O->moveRelocationNext(RelNext);
1843 MachO::any_relocation_info RENext = info->O->getRelocation(RelNext);
1844 unsigned TypeNext = info->O->getAnyRelocationType(RENext);
1845 bool isExternNext = info->O->getPlainRelocationExternal(RENext);
1846 unsigned SymbolNum = info->O->getPlainRelocationSymbolNum(RENext);
1847 if (TypeNext == MachO::X86_64_RELOC_UNSIGNED && isExternNext) {
1848 op_info->SubtractSymbol.Present = 1;
1849 op_info->SubtractSymbol.Name = name;
1850 symbol_iterator RelocSymNext = info->O->getSymbolByIndex(SymbolNum);
1851 Symbol = *RelocSymNext;
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00001852 ErrorOr<StringRef> SymNameNext = Symbol.getName();
1853 if (std::error_code EC = SymNameNext.getError())
1854 report_fatal_error(EC.message());
1855 name = SymNameNext->data();
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001856 }
1857 }
1858 // TODO: add the VariantKinds to op_info->VariantKind for relocation types
1859 // like: X86_64_RELOC_TLV, X86_64_RELOC_GOT_LOAD and X86_64_RELOC_GOT.
1860 op_info->AddSymbol.Present = 1;
1861 op_info->AddSymbol.Name = name;
1862 return 1;
1863 }
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001864 return 0;
David Blaikie33dd45d02015-03-23 18:39:02 +00001865 }
1866 if (Arch == Triple::arm) {
Kevin Enderby930fdc72014-11-06 19:00:13 +00001867 if (Offset != 0 || (Size != 4 && Size != 2))
1868 return 0;
Kevin Enderbyd90a4172015-10-10 00:05:01 +00001869 if (info->O->getHeader().filetype != MachO::MH_OBJECT) {
1870 // TODO:
1871 // Search the external relocation entries of a fully linked image
1872 // (if any) for an entry that matches this segment offset.
1873 // uint32_t seg_offset = (Pc + Offset);
1874 return 0;
1875 }
1876 // In MH_OBJECT filetypes search the section's relocation entries (if any)
1877 // for an entry for this section offset.
Kevin Enderby930fdc72014-11-06 19:00:13 +00001878 uint32_t sect_addr = info->S.getAddress();
1879 uint32_t sect_offset = (Pc + Offset) - sect_addr;
Kevin Enderby930fdc72014-11-06 19:00:13 +00001880 DataRefImpl Rel;
1881 MachO::any_relocation_info RE;
1882 bool isExtern = false;
1883 SymbolRef Symbol;
1884 bool r_scattered = false;
1885 uint32_t r_value, pair_r_value, r_type, r_length, other_half;
David Blaikie33dd45d02015-03-23 18:39:02 +00001886 auto Reloc =
1887 std::find_if(info->S.relocations().begin(), info->S.relocations().end(),
1888 [&](const RelocationRef &Reloc) {
Rafael Espindola96d071c2015-06-29 23:29:12 +00001889 uint64_t RelocOffset = Reloc.getOffset();
David Blaikie33dd45d02015-03-23 18:39:02 +00001890 return RelocOffset == sect_offset;
1891 });
1892
1893 if (Reloc == info->S.relocations().end())
1894 return 0;
1895
1896 Rel = Reloc->getRawDataRefImpl();
1897 RE = info->O->getRelocation(Rel);
1898 r_length = info->O->getAnyRelocationLength(RE);
1899 r_scattered = info->O->isRelocationScattered(RE);
1900 if (r_scattered) {
1901 r_value = info->O->getScatteredRelocationValue(RE);
1902 r_type = info->O->getScatteredRelocationType(RE);
1903 } else {
1904 r_type = info->O->getAnyRelocationType(RE);
1905 isExtern = info->O->getPlainRelocationExternal(RE);
1906 if (isExtern) {
1907 symbol_iterator RelocSym = Reloc->getSymbol();
1908 Symbol = *RelocSym;
Kevin Enderby930fdc72014-11-06 19:00:13 +00001909 }
1910 }
David Blaikie33dd45d02015-03-23 18:39:02 +00001911 if (r_type == MachO::ARM_RELOC_HALF ||
1912 r_type == MachO::ARM_RELOC_SECTDIFF ||
1913 r_type == MachO::ARM_RELOC_LOCAL_SECTDIFF ||
1914 r_type == MachO::ARM_RELOC_HALF_SECTDIFF) {
1915 DataRefImpl RelNext = Rel;
1916 info->O->moveRelocationNext(RelNext);
1917 MachO::any_relocation_info RENext;
1918 RENext = info->O->getRelocation(RelNext);
1919 other_half = info->O->getAnyRelocationAddress(RENext) & 0xffff;
1920 if (info->O->isRelocationScattered(RENext))
1921 pair_r_value = info->O->getScatteredRelocationValue(RENext);
1922 }
1923
1924 if (isExtern) {
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00001925 ErrorOr<StringRef> SymName = Symbol.getName();
1926 if (std::error_code EC = SymName.getError())
1927 report_fatal_error(EC.message());
1928 const char *name = SymName->data();
Kevin Enderby930fdc72014-11-06 19:00:13 +00001929 op_info->AddSymbol.Present = 1;
1930 op_info->AddSymbol.Name = name;
Sylvestre Ledru648cced2015-02-05 17:00:23 +00001931 switch (r_type) {
1932 case MachO::ARM_RELOC_HALF:
1933 if ((r_length & 0x1) == 1) {
1934 op_info->Value = value << 16 | other_half;
1935 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_HI16;
1936 } else {
1937 op_info->Value = other_half << 16 | value;
1938 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_LO16;
Sylvestre Ledrufe0c7ad2015-02-05 16:35:44 +00001939 }
Sylvestre Ledru648cced2015-02-05 17:00:23 +00001940 break;
1941 default:
1942 break;
Kevin Enderby930fdc72014-11-06 19:00:13 +00001943 }
1944 return 1;
1945 }
1946 // If we have a branch that is not an external relocation entry then
1947 // return 0 so the code in tryAddingSymbolicOperand() can use the
1948 // SymbolLookUp call back with the branch target address to look up the
1949 // symbol and possiblity add an annotation for a symbol stub.
David Blaikie33dd45d02015-03-23 18:39:02 +00001950 if (isExtern == 0 && (r_type == MachO::ARM_RELOC_BR24 ||
1951 r_type == MachO::ARM_THUMB_RELOC_BR22))
Kevin Enderby930fdc72014-11-06 19:00:13 +00001952 return 0;
1953
1954 uint32_t offset = 0;
David Blaikie33dd45d02015-03-23 18:39:02 +00001955 if (r_type == MachO::ARM_RELOC_HALF ||
1956 r_type == MachO::ARM_RELOC_HALF_SECTDIFF) {
1957 if ((r_length & 0x1) == 1)
1958 value = value << 16 | other_half;
1959 else
1960 value = other_half << 16 | value;
1961 }
1962 if (r_scattered && (r_type != MachO::ARM_RELOC_HALF &&
1963 r_type != MachO::ARM_RELOC_HALF_SECTDIFF)) {
1964 offset = value - r_value;
1965 value = r_value;
Kevin Enderby930fdc72014-11-06 19:00:13 +00001966 }
1967
David Blaikie33dd45d02015-03-23 18:39:02 +00001968 if (r_type == MachO::ARM_RELOC_HALF_SECTDIFF) {
Kevin Enderby930fdc72014-11-06 19:00:13 +00001969 if ((r_length & 0x1) == 1)
1970 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_HI16;
1971 else
1972 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_LO16;
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001973 const char *add = GuessSymbolName(r_value, info->AddrMap);
1974 const char *sub = GuessSymbolName(pair_r_value, info->AddrMap);
Kevin Enderby930fdc72014-11-06 19:00:13 +00001975 int32_t offset = value - (r_value - pair_r_value);
1976 op_info->AddSymbol.Present = 1;
1977 if (add != nullptr)
1978 op_info->AddSymbol.Name = add;
1979 else
1980 op_info->AddSymbol.Value = r_value;
1981 op_info->SubtractSymbol.Present = 1;
1982 if (sub != nullptr)
1983 op_info->SubtractSymbol.Name = sub;
1984 else
1985 op_info->SubtractSymbol.Value = pair_r_value;
1986 op_info->Value = offset;
1987 return 1;
1988 }
1989
Kevin Enderby930fdc72014-11-06 19:00:13 +00001990 op_info->AddSymbol.Present = 1;
1991 op_info->Value = offset;
David Blaikie33dd45d02015-03-23 18:39:02 +00001992 if (r_type == MachO::ARM_RELOC_HALF) {
1993 if ((r_length & 0x1) == 1)
1994 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_HI16;
1995 else
1996 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_LO16;
Kevin Enderby930fdc72014-11-06 19:00:13 +00001997 }
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001998 const char *add = GuessSymbolName(value, info->AddrMap);
Kevin Enderby930fdc72014-11-06 19:00:13 +00001999 if (add != nullptr) {
2000 op_info->AddSymbol.Name = add;
2001 return 1;
2002 }
2003 op_info->AddSymbol.Value = value;
2004 return 1;
David Blaikie33dd45d02015-03-23 18:39:02 +00002005 }
2006 if (Arch == Triple::aarch64) {
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002007 if (Offset != 0 || Size != 4)
2008 return 0;
Kevin Enderbyd90a4172015-10-10 00:05:01 +00002009 if (info->O->getHeader().filetype != MachO::MH_OBJECT) {
2010 // TODO:
2011 // Search the external relocation entries of a fully linked image
2012 // (if any) for an entry that matches this segment offset.
2013 // uint64_t seg_offset = (Pc + Offset);
2014 return 0;
2015 }
2016 // In MH_OBJECT filetypes search the section's relocation entries (if any)
2017 // for an entry for this section offset.
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002018 uint64_t sect_addr = info->S.getAddress();
2019 uint64_t sect_offset = (Pc + Offset) - sect_addr;
David Blaikie33dd45d02015-03-23 18:39:02 +00002020 auto Reloc =
2021 std::find_if(info->S.relocations().begin(), info->S.relocations().end(),
2022 [&](const RelocationRef &Reloc) {
Rafael Espindola96d071c2015-06-29 23:29:12 +00002023 uint64_t RelocOffset = Reloc.getOffset();
David Blaikie33dd45d02015-03-23 18:39:02 +00002024 return RelocOffset == sect_offset;
2025 });
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002026
David Blaikie33dd45d02015-03-23 18:39:02 +00002027 if (Reloc == info->S.relocations().end())
2028 return 0;
2029
2030 DataRefImpl Rel = Reloc->getRawDataRefImpl();
2031 MachO::any_relocation_info RE = info->O->getRelocation(Rel);
2032 uint32_t r_type = info->O->getAnyRelocationType(RE);
2033 if (r_type == MachO::ARM64_RELOC_ADDEND) {
2034 DataRefImpl RelNext = Rel;
2035 info->O->moveRelocationNext(RelNext);
2036 MachO::any_relocation_info RENext = info->O->getRelocation(RelNext);
2037 if (value == 0) {
2038 value = info->O->getPlainRelocationSymbolNum(RENext);
2039 op_info->Value = value;
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002040 }
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002041 }
David Blaikie33dd45d02015-03-23 18:39:02 +00002042 // NOTE: Scattered relocations don't exist on arm64.
2043 if (!info->O->getPlainRelocationExternal(RE))
2044 return 0;
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00002045 ErrorOr<StringRef> SymName = Reloc->getSymbol()->getName();
2046 if (std::error_code EC = SymName.getError())
2047 report_fatal_error(EC.message());
2048 const char *name = SymName->data();
David Blaikie33dd45d02015-03-23 18:39:02 +00002049 op_info->AddSymbol.Present = 1;
2050 op_info->AddSymbol.Name = name;
2051
2052 switch (r_type) {
2053 case MachO::ARM64_RELOC_PAGE21:
2054 /* @page */
2055 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_PAGE;
2056 break;
2057 case MachO::ARM64_RELOC_PAGEOFF12:
2058 /* @pageoff */
2059 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_PAGEOFF;
2060 break;
2061 case MachO::ARM64_RELOC_GOT_LOAD_PAGE21:
2062 /* @gotpage */
2063 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_GOTPAGE;
2064 break;
2065 case MachO::ARM64_RELOC_GOT_LOAD_PAGEOFF12:
2066 /* @gotpageoff */
2067 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_GOTPAGEOFF;
2068 break;
2069 case MachO::ARM64_RELOC_TLVP_LOAD_PAGE21:
2070 /* @tvlppage is not implemented in llvm-mc */
2071 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_TLVP;
2072 break;
2073 case MachO::ARM64_RELOC_TLVP_LOAD_PAGEOFF12:
2074 /* @tvlppageoff is not implemented in llvm-mc */
2075 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_TLVOFF;
2076 break;
2077 default:
2078 case MachO::ARM64_RELOC_BRANCH26:
2079 op_info->VariantKind = LLVMDisassembler_VariantKind_None;
2080 break;
2081 }
2082 return 1;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00002083 }
David Blaikie33dd45d02015-03-23 18:39:02 +00002084 return 0;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00002085}
2086
Kevin Enderbybf246f52014-09-24 23:08:22 +00002087// GuessCstringPointer is passed the address of what might be a pointer to a
2088// literal string in a cstring section. If that address is in a cstring section
2089// it returns a pointer to that string. Else it returns nullptr.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00002090static const char *GuessCstringPointer(uint64_t ReferenceValue,
2091 struct DisassembleInfo *info) {
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00002092 for (const auto &Load : info->O->load_commands()) {
Kevin Enderbybf246f52014-09-24 23:08:22 +00002093 if (Load.C.cmd == MachO::LC_SEGMENT_64) {
2094 MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load);
2095 for (unsigned J = 0; J < Seg.nsects; ++J) {
2096 MachO::section_64 Sec = info->O->getSection64(Load, J);
2097 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2098 if (section_type == MachO::S_CSTRING_LITERALS &&
2099 ReferenceValue >= Sec.addr &&
2100 ReferenceValue < Sec.addr + Sec.size) {
2101 uint64_t sect_offset = ReferenceValue - Sec.addr;
2102 uint64_t object_offset = Sec.offset + sect_offset;
2103 StringRef MachOContents = info->O->getData();
2104 uint64_t object_size = MachOContents.size();
2105 const char *object_addr = (const char *)MachOContents.data();
2106 if (object_offset < object_size) {
2107 const char *name = object_addr + object_offset;
2108 return name;
2109 } else {
2110 return nullptr;
2111 }
2112 }
2113 }
2114 } else if (Load.C.cmd == MachO::LC_SEGMENT) {
2115 MachO::segment_command Seg = info->O->getSegmentLoadCommand(Load);
2116 for (unsigned J = 0; J < Seg.nsects; ++J) {
2117 MachO::section Sec = info->O->getSection(Load, J);
2118 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2119 if (section_type == MachO::S_CSTRING_LITERALS &&
2120 ReferenceValue >= Sec.addr &&
2121 ReferenceValue < Sec.addr + Sec.size) {
2122 uint64_t sect_offset = ReferenceValue - Sec.addr;
2123 uint64_t object_offset = Sec.offset + sect_offset;
2124 StringRef MachOContents = info->O->getData();
2125 uint64_t object_size = MachOContents.size();
2126 const char *object_addr = (const char *)MachOContents.data();
2127 if (object_offset < object_size) {
2128 const char *name = object_addr + object_offset;
2129 return name;
2130 } else {
2131 return nullptr;
2132 }
2133 }
2134 }
2135 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00002136 }
2137 return nullptr;
2138}
2139
Kevin Enderby85974882014-09-26 22:20:44 +00002140// GuessIndirectSymbol returns the name of the indirect symbol for the
2141// ReferenceValue passed in or nullptr. This is used when ReferenceValue maybe
2142// an address of a symbol stub or a lazy or non-lazy pointer to associate the
2143// symbol name being referenced by the stub or pointer.
2144static const char *GuessIndirectSymbol(uint64_t ReferenceValue,
2145 struct DisassembleInfo *info) {
Kevin Enderby85974882014-09-26 22:20:44 +00002146 MachO::dysymtab_command Dysymtab = info->O->getDysymtabLoadCommand();
2147 MachO::symtab_command Symtab = info->O->getSymtabLoadCommand();
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00002148 for (const auto &Load : info->O->load_commands()) {
Kevin Enderby85974882014-09-26 22:20:44 +00002149 if (Load.C.cmd == MachO::LC_SEGMENT_64) {
2150 MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load);
2151 for (unsigned J = 0; J < Seg.nsects; ++J) {
2152 MachO::section_64 Sec = info->O->getSection64(Load, J);
2153 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2154 if ((section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
2155 section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
2156 section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
2157 section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS ||
2158 section_type == MachO::S_SYMBOL_STUBS) &&
2159 ReferenceValue >= Sec.addr &&
2160 ReferenceValue < Sec.addr + Sec.size) {
2161 uint32_t stride;
2162 if (section_type == MachO::S_SYMBOL_STUBS)
2163 stride = Sec.reserved2;
2164 else
2165 stride = 8;
2166 if (stride == 0)
2167 return nullptr;
2168 uint32_t index = Sec.reserved1 + (ReferenceValue - Sec.addr) / stride;
2169 if (index < Dysymtab.nindirectsyms) {
2170 uint32_t indirect_symbol =
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002171 info->O->getIndirectSymbolTableEntry(Dysymtab, index);
Kevin Enderby85974882014-09-26 22:20:44 +00002172 if (indirect_symbol < Symtab.nsyms) {
2173 symbol_iterator Sym = info->O->getSymbolByIndex(indirect_symbol);
2174 SymbolRef Symbol = *Sym;
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00002175 ErrorOr<StringRef> SymName = Symbol.getName();
2176 if (std::error_code EC = SymName.getError())
2177 report_fatal_error(EC.message());
2178 const char *name = SymName->data();
Kevin Enderby85974882014-09-26 22:20:44 +00002179 return name;
2180 }
2181 }
2182 }
2183 }
2184 } else if (Load.C.cmd == MachO::LC_SEGMENT) {
2185 MachO::segment_command Seg = info->O->getSegmentLoadCommand(Load);
2186 for (unsigned J = 0; J < Seg.nsects; ++J) {
2187 MachO::section Sec = info->O->getSection(Load, J);
2188 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2189 if ((section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
2190 section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
2191 section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
2192 section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS ||
2193 section_type == MachO::S_SYMBOL_STUBS) &&
2194 ReferenceValue >= Sec.addr &&
2195 ReferenceValue < Sec.addr + Sec.size) {
2196 uint32_t stride;
2197 if (section_type == MachO::S_SYMBOL_STUBS)
2198 stride = Sec.reserved2;
2199 else
2200 stride = 4;
2201 if (stride == 0)
2202 return nullptr;
2203 uint32_t index = Sec.reserved1 + (ReferenceValue - Sec.addr) / stride;
2204 if (index < Dysymtab.nindirectsyms) {
2205 uint32_t indirect_symbol =
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002206 info->O->getIndirectSymbolTableEntry(Dysymtab, index);
Kevin Enderby85974882014-09-26 22:20:44 +00002207 if (indirect_symbol < Symtab.nsyms) {
2208 symbol_iterator Sym = info->O->getSymbolByIndex(indirect_symbol);
2209 SymbolRef Symbol = *Sym;
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00002210 ErrorOr<StringRef> SymName = Symbol.getName();
2211 if (std::error_code EC = SymName.getError())
2212 report_fatal_error(EC.message());
2213 const char *name = SymName->data();
Kevin Enderby85974882014-09-26 22:20:44 +00002214 return name;
2215 }
2216 }
2217 }
2218 }
2219 }
Kevin Enderby85974882014-09-26 22:20:44 +00002220 }
2221 return nullptr;
2222}
2223
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002224// method_reference() is called passing it the ReferenceName that might be
2225// a reference it to an Objective-C method call. If so then it allocates and
2226// assembles a method call string with the values last seen and saved in
2227// the DisassembleInfo's class_name and selector_name fields. This is saved
2228// into the method field of the info and any previous string is free'ed.
2229// Then the class_name field in the info is set to nullptr. The method call
2230// string is set into ReferenceName and ReferenceType is set to
2231// LLVMDisassembler_ReferenceType_Out_Objc_Message. If this not a method call
2232// then both ReferenceType and ReferenceName are left unchanged.
2233static void method_reference(struct DisassembleInfo *info,
2234 uint64_t *ReferenceType,
2235 const char **ReferenceName) {
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002236 unsigned int Arch = info->O->getArch();
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002237 if (*ReferenceName != nullptr) {
2238 if (strcmp(*ReferenceName, "_objc_msgSend") == 0) {
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002239 if (info->selector_name != nullptr) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002240 if (info->method != nullptr)
2241 free(info->method);
2242 if (info->class_name != nullptr) {
2243 info->method = (char *)malloc(5 + strlen(info->class_name) +
2244 strlen(info->selector_name));
2245 if (info->method != nullptr) {
2246 strcpy(info->method, "+[");
2247 strcat(info->method, info->class_name);
2248 strcat(info->method, " ");
2249 strcat(info->method, info->selector_name);
2250 strcat(info->method, "]");
2251 *ReferenceName = info->method;
2252 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message;
2253 }
2254 } else {
2255 info->method = (char *)malloc(9 + strlen(info->selector_name));
2256 if (info->method != nullptr) {
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002257 if (Arch == Triple::x86_64)
2258 strcpy(info->method, "-[%rdi ");
2259 else if (Arch == Triple::aarch64)
2260 strcpy(info->method, "-[x0 ");
2261 else
2262 strcpy(info->method, "-[r? ");
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002263 strcat(info->method, info->selector_name);
2264 strcat(info->method, "]");
2265 *ReferenceName = info->method;
2266 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message;
2267 }
2268 }
2269 info->class_name = nullptr;
2270 }
2271 } else if (strcmp(*ReferenceName, "_objc_msgSendSuper2") == 0) {
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002272 if (info->selector_name != nullptr) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002273 if (info->method != nullptr)
2274 free(info->method);
2275 info->method = (char *)malloc(17 + strlen(info->selector_name));
2276 if (info->method != nullptr) {
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002277 if (Arch == Triple::x86_64)
2278 strcpy(info->method, "-[[%rdi super] ");
2279 else if (Arch == Triple::aarch64)
2280 strcpy(info->method, "-[[x0 super] ");
2281 else
2282 strcpy(info->method, "-[[r? super] ");
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002283 strcat(info->method, info->selector_name);
2284 strcat(info->method, "]");
2285 *ReferenceName = info->method;
2286 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message;
2287 }
2288 info->class_name = nullptr;
2289 }
2290 }
2291 }
2292}
2293
2294// GuessPointerPointer() is passed the address of what might be a pointer to
2295// a reference to an Objective-C class, selector, message ref or cfstring.
2296// If so the value of the pointer is returned and one of the booleans are set
2297// to true. If not zero is returned and all the booleans are set to false.
2298static uint64_t GuessPointerPointer(uint64_t ReferenceValue,
2299 struct DisassembleInfo *info,
2300 bool &classref, bool &selref, bool &msgref,
2301 bool &cfstring) {
2302 classref = false;
2303 selref = false;
2304 msgref = false;
2305 cfstring = false;
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00002306 for (const auto &Load : info->O->load_commands()) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002307 if (Load.C.cmd == MachO::LC_SEGMENT_64) {
2308 MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load);
2309 for (unsigned J = 0; J < Seg.nsects; ++J) {
2310 MachO::section_64 Sec = info->O->getSection64(Load, J);
2311 if ((strncmp(Sec.sectname, "__objc_selrefs", 16) == 0 ||
2312 strncmp(Sec.sectname, "__objc_classrefs", 16) == 0 ||
2313 strncmp(Sec.sectname, "__objc_superrefs", 16) == 0 ||
2314 strncmp(Sec.sectname, "__objc_msgrefs", 16) == 0 ||
2315 strncmp(Sec.sectname, "__cfstring", 16) == 0) &&
2316 ReferenceValue >= Sec.addr &&
2317 ReferenceValue < Sec.addr + Sec.size) {
2318 uint64_t sect_offset = ReferenceValue - Sec.addr;
2319 uint64_t object_offset = Sec.offset + sect_offset;
2320 StringRef MachOContents = info->O->getData();
2321 uint64_t object_size = MachOContents.size();
2322 const char *object_addr = (const char *)MachOContents.data();
2323 if (object_offset < object_size) {
2324 uint64_t pointer_value;
2325 memcpy(&pointer_value, object_addr + object_offset,
2326 sizeof(uint64_t));
2327 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
2328 sys::swapByteOrder(pointer_value);
2329 if (strncmp(Sec.sectname, "__objc_selrefs", 16) == 0)
2330 selref = true;
2331 else if (strncmp(Sec.sectname, "__objc_classrefs", 16) == 0 ||
2332 strncmp(Sec.sectname, "__objc_superrefs", 16) == 0)
2333 classref = true;
2334 else if (strncmp(Sec.sectname, "__objc_msgrefs", 16) == 0 &&
2335 ReferenceValue + 8 < Sec.addr + Sec.size) {
2336 msgref = true;
2337 memcpy(&pointer_value, object_addr + object_offset + 8,
2338 sizeof(uint64_t));
2339 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
2340 sys::swapByteOrder(pointer_value);
2341 } else if (strncmp(Sec.sectname, "__cfstring", 16) == 0)
2342 cfstring = true;
2343 return pointer_value;
2344 } else {
2345 return 0;
2346 }
2347 }
2348 }
2349 }
2350 // TODO: Look for LC_SEGMENT for 32-bit Mach-O files.
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002351 }
2352 return 0;
2353}
2354
2355// get_pointer_64 returns a pointer to the bytes in the object file at the
2356// Address from a section in the Mach-O file. And indirectly returns the
2357// offset into the section, number of bytes left in the section past the offset
2358// and which section is was being referenced. If the Address is not in a
2359// section nullptr is returned.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00002360static const char *get_pointer_64(uint64_t Address, uint32_t &offset,
2361 uint32_t &left, SectionRef &S,
Kevin Enderby846c0002015-04-16 17:19:59 +00002362 DisassembleInfo *info,
2363 bool objc_only = false) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002364 offset = 0;
2365 left = 0;
2366 S = SectionRef();
2367 for (unsigned SectIdx = 0; SectIdx != info->Sections->size(); SectIdx++) {
2368 uint64_t SectAddress = ((*(info->Sections))[SectIdx]).getAddress();
2369 uint64_t SectSize = ((*(info->Sections))[SectIdx]).getSize();
Kevin Enderby46e642f2015-10-08 22:50:55 +00002370 if (SectSize == 0)
2371 continue;
Kevin Enderby846c0002015-04-16 17:19:59 +00002372 if (objc_only) {
2373 StringRef SectName;
2374 ((*(info->Sections))[SectIdx]).getName(SectName);
2375 DataRefImpl Ref = ((*(info->Sections))[SectIdx]).getRawDataRefImpl();
2376 StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
2377 if (SegName != "__OBJC" && SectName != "__cstring")
2378 continue;
2379 }
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002380 if (Address >= SectAddress && Address < SectAddress + SectSize) {
2381 S = (*(info->Sections))[SectIdx];
2382 offset = Address - SectAddress;
2383 left = SectSize - offset;
2384 StringRef SectContents;
2385 ((*(info->Sections))[SectIdx]).getContents(SectContents);
2386 return SectContents.data() + offset;
2387 }
2388 }
2389 return nullptr;
2390}
2391
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002392static const char *get_pointer_32(uint32_t Address, uint32_t &offset,
2393 uint32_t &left, SectionRef &S,
Kevin Enderby846c0002015-04-16 17:19:59 +00002394 DisassembleInfo *info,
2395 bool objc_only = false) {
2396 return get_pointer_64(Address, offset, left, S, info, objc_only);
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002397}
2398
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002399// get_symbol_64() returns the name of a symbol (or nullptr) and the address of
2400// the symbol indirectly through n_value. Based on the relocation information
2401// for the specified section offset in the specified section reference.
Kevin Enderby0fc11822015-04-01 20:57:01 +00002402// If no relocation information is found and a non-zero ReferenceValue for the
2403// symbol is passed, look up that address in the info's AddrMap.
Rafael Espindolad7a32ea2015-06-24 10:20:30 +00002404static const char *get_symbol_64(uint32_t sect_offset, SectionRef S,
2405 DisassembleInfo *info, uint64_t &n_value,
Rafael Espindolabe8b0ea2015-07-07 17:12:59 +00002406 uint64_t ReferenceValue = 0) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002407 n_value = 0;
David Blaikie33dd45d02015-03-23 18:39:02 +00002408 if (!info->verbose)
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002409 return nullptr;
2410
2411 // See if there is an external relocation entry at the sect_offset.
2412 bool reloc_found = false;
2413 DataRefImpl Rel;
2414 MachO::any_relocation_info RE;
2415 bool isExtern = false;
2416 SymbolRef Symbol;
2417 for (const RelocationRef &Reloc : S.relocations()) {
Rafael Espindola96d071c2015-06-29 23:29:12 +00002418 uint64_t RelocOffset = Reloc.getOffset();
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002419 if (RelocOffset == sect_offset) {
2420 Rel = Reloc.getRawDataRefImpl();
2421 RE = info->O->getRelocation(Rel);
2422 if (info->O->isRelocationScattered(RE))
2423 continue;
2424 isExtern = info->O->getPlainRelocationExternal(RE);
2425 if (isExtern) {
2426 symbol_iterator RelocSym = Reloc.getSymbol();
2427 Symbol = *RelocSym;
2428 }
2429 reloc_found = true;
2430 break;
2431 }
2432 }
2433 // If there is an external relocation entry for a symbol in this section
2434 // at this section_offset then use that symbol's value for the n_value
2435 // and return its name.
2436 const char *SymbolName = nullptr;
2437 if (reloc_found && isExtern) {
Rafael Espindoladea00162015-07-03 17:44:18 +00002438 n_value = Symbol.getValue();
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00002439 ErrorOr<StringRef> NameOrError = Symbol.getName();
2440 if (std::error_code EC = NameOrError.getError())
2441 report_fatal_error(EC.message());
2442 StringRef Name = *NameOrError;
2443 if (!Name.empty()) {
2444 SymbolName = Name.data();
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002445 return SymbolName;
2446 }
2447 }
2448
2449 // TODO: For fully linked images, look through the external relocation
2450 // entries off the dynamic symtab command. For these the r_offset is from the
2451 // start of the first writeable segment in the Mach-O file. So the offset
2452 // to this section from that segment is passed to this routine by the caller,
2453 // as the database_offset. Which is the difference of the section's starting
2454 // address and the first writable segment.
2455 //
2456 // NOTE: need add passing the database_offset to this routine.
2457
Kevin Enderby0fc11822015-04-01 20:57:01 +00002458 // We did not find an external relocation entry so look up the ReferenceValue
2459 // as an address of a symbol and if found return that symbol's name.
Rafael Espindolabe8b0ea2015-07-07 17:12:59 +00002460 SymbolName = GuessSymbolName(ReferenceValue, info->AddrMap);
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002461
2462 return SymbolName;
2463}
2464
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002465static const char *get_symbol_32(uint32_t sect_offset, SectionRef S,
2466 DisassembleInfo *info,
2467 uint32_t ReferenceValue) {
2468 uint64_t n_value64;
2469 return get_symbol_64(sect_offset, S, info, n_value64, ReferenceValue);
2470}
2471
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002472// These are structs in the Objective-C meta data and read to produce the
2473// comments for disassembly. While these are part of the ABI they are no
2474// public defintions. So the are here not in include/llvm/Support/MachO.h .
2475
2476// The cfstring object in a 64-bit Mach-O file.
2477struct cfstring64_t {
2478 uint64_t isa; // class64_t * (64-bit pointer)
2479 uint64_t flags; // flag bits
2480 uint64_t characters; // char * (64-bit pointer)
2481 uint64_t length; // number of non-NULL characters in above
2482};
2483
2484// The class object in a 64-bit Mach-O file.
2485struct class64_t {
2486 uint64_t isa; // class64_t * (64-bit pointer)
2487 uint64_t superclass; // class64_t * (64-bit pointer)
2488 uint64_t cache; // Cache (64-bit pointer)
2489 uint64_t vtable; // IMP * (64-bit pointer)
2490 uint64_t data; // class_ro64_t * (64-bit pointer)
2491};
2492
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002493struct class32_t {
2494 uint32_t isa; /* class32_t * (32-bit pointer) */
2495 uint32_t superclass; /* class32_t * (32-bit pointer) */
2496 uint32_t cache; /* Cache (32-bit pointer) */
2497 uint32_t vtable; /* IMP * (32-bit pointer) */
2498 uint32_t data; /* class_ro32_t * (32-bit pointer) */
2499};
2500
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002501struct class_ro64_t {
2502 uint32_t flags;
2503 uint32_t instanceStart;
2504 uint32_t instanceSize;
2505 uint32_t reserved;
2506 uint64_t ivarLayout; // const uint8_t * (64-bit pointer)
2507 uint64_t name; // const char * (64-bit pointer)
2508 uint64_t baseMethods; // const method_list_t * (64-bit pointer)
2509 uint64_t baseProtocols; // const protocol_list_t * (64-bit pointer)
2510 uint64_t ivars; // const ivar_list_t * (64-bit pointer)
2511 uint64_t weakIvarLayout; // const uint8_t * (64-bit pointer)
2512 uint64_t baseProperties; // const struct objc_property_list (64-bit pointer)
2513};
2514
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002515struct class_ro32_t {
2516 uint32_t flags;
2517 uint32_t instanceStart;
2518 uint32_t instanceSize;
2519 uint32_t ivarLayout; /* const uint8_t * (32-bit pointer) */
2520 uint32_t name; /* const char * (32-bit pointer) */
2521 uint32_t baseMethods; /* const method_list_t * (32-bit pointer) */
2522 uint32_t baseProtocols; /* const protocol_list_t * (32-bit pointer) */
2523 uint32_t ivars; /* const ivar_list_t * (32-bit pointer) */
2524 uint32_t weakIvarLayout; /* const uint8_t * (32-bit pointer) */
2525 uint32_t baseProperties; /* const struct objc_property_list *
2526 (32-bit pointer) */
2527};
2528
2529/* Values for class_ro{64,32}_t->flags */
Kevin Enderby0fc11822015-04-01 20:57:01 +00002530#define RO_META (1 << 0)
2531#define RO_ROOT (1 << 1)
2532#define RO_HAS_CXX_STRUCTORS (1 << 2)
2533
2534struct method_list64_t {
2535 uint32_t entsize;
2536 uint32_t count;
2537 /* struct method64_t first; These structures follow inline */
2538};
2539
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002540struct method_list32_t {
2541 uint32_t entsize;
2542 uint32_t count;
2543 /* struct method32_t first; These structures follow inline */
2544};
2545
Kevin Enderby0fc11822015-04-01 20:57:01 +00002546struct method64_t {
2547 uint64_t name; /* SEL (64-bit pointer) */
2548 uint64_t types; /* const char * (64-bit pointer) */
2549 uint64_t imp; /* IMP (64-bit pointer) */
2550};
2551
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002552struct method32_t {
2553 uint32_t name; /* SEL (32-bit pointer) */
2554 uint32_t types; /* const char * (32-bit pointer) */
2555 uint32_t imp; /* IMP (32-bit pointer) */
2556};
2557
Kevin Enderby0fc11822015-04-01 20:57:01 +00002558struct protocol_list64_t {
2559 uint64_t count; /* uintptr_t (a 64-bit value) */
2560 /* struct protocol64_t * list[0]; These pointers follow inline */
2561};
2562
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002563struct protocol_list32_t {
2564 uint32_t count; /* uintptr_t (a 32-bit value) */
2565 /* struct protocol32_t * list[0]; These pointers follow inline */
2566};
2567
Kevin Enderby0fc11822015-04-01 20:57:01 +00002568struct protocol64_t {
2569 uint64_t isa; /* id * (64-bit pointer) */
2570 uint64_t name; /* const char * (64-bit pointer) */
2571 uint64_t protocols; /* struct protocol_list64_t *
2572 (64-bit pointer) */
2573 uint64_t instanceMethods; /* method_list_t * (64-bit pointer) */
2574 uint64_t classMethods; /* method_list_t * (64-bit pointer) */
2575 uint64_t optionalInstanceMethods; /* method_list_t * (64-bit pointer) */
2576 uint64_t optionalClassMethods; /* method_list_t * (64-bit pointer) */
2577 uint64_t instanceProperties; /* struct objc_property_list *
2578 (64-bit pointer) */
2579};
2580
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002581struct protocol32_t {
2582 uint32_t isa; /* id * (32-bit pointer) */
2583 uint32_t name; /* const char * (32-bit pointer) */
2584 uint32_t protocols; /* struct protocol_list_t *
2585 (32-bit pointer) */
2586 uint32_t instanceMethods; /* method_list_t * (32-bit pointer) */
2587 uint32_t classMethods; /* method_list_t * (32-bit pointer) */
2588 uint32_t optionalInstanceMethods; /* method_list_t * (32-bit pointer) */
2589 uint32_t optionalClassMethods; /* method_list_t * (32-bit pointer) */
2590 uint32_t instanceProperties; /* struct objc_property_list *
2591 (32-bit pointer) */
2592};
2593
Kevin Enderby0fc11822015-04-01 20:57:01 +00002594struct ivar_list64_t {
2595 uint32_t entsize;
2596 uint32_t count;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002597 /* struct ivar64_t first; These structures follow inline */
2598};
2599
2600struct ivar_list32_t {
2601 uint32_t entsize;
2602 uint32_t count;
2603 /* struct ivar32_t first; These structures follow inline */
Kevin Enderby0fc11822015-04-01 20:57:01 +00002604};
2605
2606struct ivar64_t {
2607 uint64_t offset; /* uintptr_t * (64-bit pointer) */
2608 uint64_t name; /* const char * (64-bit pointer) */
2609 uint64_t type; /* const char * (64-bit pointer) */
2610 uint32_t alignment;
2611 uint32_t size;
2612};
2613
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002614struct ivar32_t {
2615 uint32_t offset; /* uintptr_t * (32-bit pointer) */
2616 uint32_t name; /* const char * (32-bit pointer) */
2617 uint32_t type; /* const char * (32-bit pointer) */
2618 uint32_t alignment;
2619 uint32_t size;
2620};
2621
Kevin Enderby0fc11822015-04-01 20:57:01 +00002622struct objc_property_list64 {
2623 uint32_t entsize;
2624 uint32_t count;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002625 /* struct objc_property64 first; These structures follow inline */
2626};
2627
2628struct objc_property_list32 {
2629 uint32_t entsize;
2630 uint32_t count;
2631 /* struct objc_property32 first; These structures follow inline */
Kevin Enderby0fc11822015-04-01 20:57:01 +00002632};
2633
2634struct objc_property64 {
2635 uint64_t name; /* const char * (64-bit pointer) */
2636 uint64_t attributes; /* const char * (64-bit pointer) */
2637};
2638
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002639struct objc_property32 {
2640 uint32_t name; /* const char * (32-bit pointer) */
2641 uint32_t attributes; /* const char * (32-bit pointer) */
2642};
2643
Kevin Enderby0fc11822015-04-01 20:57:01 +00002644struct category64_t {
2645 uint64_t name; /* const char * (64-bit pointer) */
2646 uint64_t cls; /* struct class_t * (64-bit pointer) */
2647 uint64_t instanceMethods; /* struct method_list_t * (64-bit pointer) */
2648 uint64_t classMethods; /* struct method_list_t * (64-bit pointer) */
2649 uint64_t protocols; /* struct protocol_list_t * (64-bit pointer) */
2650 uint64_t instanceProperties; /* struct objc_property_list *
2651 (64-bit pointer) */
2652};
2653
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002654struct category32_t {
2655 uint32_t name; /* const char * (32-bit pointer) */
2656 uint32_t cls; /* struct class_t * (32-bit pointer) */
2657 uint32_t instanceMethods; /* struct method_list_t * (32-bit pointer) */
2658 uint32_t classMethods; /* struct method_list_t * (32-bit pointer) */
2659 uint32_t protocols; /* struct protocol_list_t * (32-bit pointer) */
2660 uint32_t instanceProperties; /* struct objc_property_list *
2661 (32-bit pointer) */
2662};
2663
Kevin Enderby0fc11822015-04-01 20:57:01 +00002664struct objc_image_info64 {
2665 uint32_t version;
2666 uint32_t flags;
2667};
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002668struct objc_image_info32 {
2669 uint32_t version;
2670 uint32_t flags;
2671};
Kevin Enderby846c0002015-04-16 17:19:59 +00002672struct imageInfo_t {
2673 uint32_t version;
2674 uint32_t flags;
2675};
Kevin Enderby0fc11822015-04-01 20:57:01 +00002676/* masks for objc_image_info.flags */
2677#define OBJC_IMAGE_IS_REPLACEMENT (1 << 0)
2678#define OBJC_IMAGE_SUPPORTS_GC (1 << 1)
2679
2680struct message_ref64 {
2681 uint64_t imp; /* IMP (64-bit pointer) */
2682 uint64_t sel; /* SEL (64-bit pointer) */
2683};
2684
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002685struct message_ref32 {
2686 uint32_t imp; /* IMP (32-bit pointer) */
2687 uint32_t sel; /* SEL (32-bit pointer) */
2688};
2689
Kevin Enderby846c0002015-04-16 17:19:59 +00002690// Objective-C 1 (32-bit only) meta data structs.
2691
2692struct objc_module_t {
2693 uint32_t version;
2694 uint32_t size;
2695 uint32_t name; /* char * (32-bit pointer) */
2696 uint32_t symtab; /* struct objc_symtab * (32-bit pointer) */
2697};
2698
2699struct objc_symtab_t {
2700 uint32_t sel_ref_cnt;
2701 uint32_t refs; /* SEL * (32-bit pointer) */
2702 uint16_t cls_def_cnt;
2703 uint16_t cat_def_cnt;
2704 // uint32_t defs[1]; /* void * (32-bit pointer) variable size */
2705};
2706
2707struct objc_class_t {
2708 uint32_t isa; /* struct objc_class * (32-bit pointer) */
2709 uint32_t super_class; /* struct objc_class * (32-bit pointer) */
2710 uint32_t name; /* const char * (32-bit pointer) */
2711 int32_t version;
2712 int32_t info;
2713 int32_t instance_size;
2714 uint32_t ivars; /* struct objc_ivar_list * (32-bit pointer) */
2715 uint32_t methodLists; /* struct objc_method_list ** (32-bit pointer) */
2716 uint32_t cache; /* struct objc_cache * (32-bit pointer) */
2717 uint32_t protocols; /* struct objc_protocol_list * (32-bit pointer) */
2718};
2719
2720#define CLS_GETINFO(cls, infomask) ((cls)->info & (infomask))
2721// class is not a metaclass
2722#define CLS_CLASS 0x1
2723// class is a metaclass
2724#define CLS_META 0x2
2725
2726struct objc_category_t {
2727 uint32_t category_name; /* char * (32-bit pointer) */
2728 uint32_t class_name; /* char * (32-bit pointer) */
2729 uint32_t instance_methods; /* struct objc_method_list * (32-bit pointer) */
2730 uint32_t class_methods; /* struct objc_method_list * (32-bit pointer) */
2731 uint32_t protocols; /* struct objc_protocol_list * (32-bit ptr) */
2732};
2733
2734struct objc_ivar_t {
2735 uint32_t ivar_name; /* char * (32-bit pointer) */
2736 uint32_t ivar_type; /* char * (32-bit pointer) */
2737 int32_t ivar_offset;
2738};
2739
2740struct objc_ivar_list_t {
2741 int32_t ivar_count;
2742 // struct objc_ivar_t ivar_list[1]; /* variable length structure */
2743};
2744
2745struct objc_method_list_t {
2746 uint32_t obsolete; /* struct objc_method_list * (32-bit pointer) */
2747 int32_t method_count;
2748 // struct objc_method_t method_list[1]; /* variable length structure */
2749};
2750
2751struct objc_method_t {
2752 uint32_t method_name; /* SEL, aka struct objc_selector * (32-bit pointer) */
2753 uint32_t method_types; /* char * (32-bit pointer) */
2754 uint32_t method_imp; /* IMP, aka function pointer, (*IMP)(id, SEL, ...)
2755 (32-bit pointer) */
2756};
2757
2758struct objc_protocol_list_t {
2759 uint32_t next; /* struct objc_protocol_list * (32-bit pointer) */
2760 int32_t count;
2761 // uint32_t list[1]; /* Protocol *, aka struct objc_protocol_t *
2762 // (32-bit pointer) */
2763};
2764
2765struct objc_protocol_t {
2766 uint32_t isa; /* struct objc_class * (32-bit pointer) */
2767 uint32_t protocol_name; /* char * (32-bit pointer) */
2768 uint32_t protocol_list; /* struct objc_protocol_list * (32-bit pointer) */
2769 uint32_t instance_methods; /* struct objc_method_description_list *
2770 (32-bit pointer) */
2771 uint32_t class_methods; /* struct objc_method_description_list *
2772 (32-bit pointer) */
2773};
2774
2775struct objc_method_description_list_t {
2776 int32_t count;
2777 // struct objc_method_description_t list[1];
2778};
2779
2780struct objc_method_description_t {
2781 uint32_t name; /* SEL, aka struct objc_selector * (32-bit pointer) */
2782 uint32_t types; /* char * (32-bit pointer) */
2783};
2784
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002785inline void swapStruct(struct cfstring64_t &cfs) {
2786 sys::swapByteOrder(cfs.isa);
2787 sys::swapByteOrder(cfs.flags);
2788 sys::swapByteOrder(cfs.characters);
2789 sys::swapByteOrder(cfs.length);
2790}
2791
2792inline void swapStruct(struct class64_t &c) {
2793 sys::swapByteOrder(c.isa);
2794 sys::swapByteOrder(c.superclass);
2795 sys::swapByteOrder(c.cache);
2796 sys::swapByteOrder(c.vtable);
2797 sys::swapByteOrder(c.data);
2798}
2799
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002800inline void swapStruct(struct class32_t &c) {
2801 sys::swapByteOrder(c.isa);
2802 sys::swapByteOrder(c.superclass);
2803 sys::swapByteOrder(c.cache);
2804 sys::swapByteOrder(c.vtable);
2805 sys::swapByteOrder(c.data);
2806}
2807
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002808inline void swapStruct(struct class_ro64_t &cro) {
2809 sys::swapByteOrder(cro.flags);
2810 sys::swapByteOrder(cro.instanceStart);
2811 sys::swapByteOrder(cro.instanceSize);
2812 sys::swapByteOrder(cro.reserved);
2813 sys::swapByteOrder(cro.ivarLayout);
2814 sys::swapByteOrder(cro.name);
2815 sys::swapByteOrder(cro.baseMethods);
2816 sys::swapByteOrder(cro.baseProtocols);
2817 sys::swapByteOrder(cro.ivars);
2818 sys::swapByteOrder(cro.weakIvarLayout);
2819 sys::swapByteOrder(cro.baseProperties);
2820}
2821
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002822inline void swapStruct(struct class_ro32_t &cro) {
2823 sys::swapByteOrder(cro.flags);
2824 sys::swapByteOrder(cro.instanceStart);
2825 sys::swapByteOrder(cro.instanceSize);
2826 sys::swapByteOrder(cro.ivarLayout);
2827 sys::swapByteOrder(cro.name);
2828 sys::swapByteOrder(cro.baseMethods);
2829 sys::swapByteOrder(cro.baseProtocols);
2830 sys::swapByteOrder(cro.ivars);
2831 sys::swapByteOrder(cro.weakIvarLayout);
2832 sys::swapByteOrder(cro.baseProperties);
2833}
2834
Kevin Enderby0fc11822015-04-01 20:57:01 +00002835inline void swapStruct(struct method_list64_t &ml) {
2836 sys::swapByteOrder(ml.entsize);
2837 sys::swapByteOrder(ml.count);
2838}
2839
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002840inline void swapStruct(struct method_list32_t &ml) {
2841 sys::swapByteOrder(ml.entsize);
2842 sys::swapByteOrder(ml.count);
2843}
2844
Kevin Enderby0fc11822015-04-01 20:57:01 +00002845inline void swapStruct(struct method64_t &m) {
2846 sys::swapByteOrder(m.name);
2847 sys::swapByteOrder(m.types);
2848 sys::swapByteOrder(m.imp);
2849}
2850
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002851inline void swapStruct(struct method32_t &m) {
2852 sys::swapByteOrder(m.name);
2853 sys::swapByteOrder(m.types);
2854 sys::swapByteOrder(m.imp);
2855}
2856
Kevin Enderby0fc11822015-04-01 20:57:01 +00002857inline void swapStruct(struct protocol_list64_t &pl) {
2858 sys::swapByteOrder(pl.count);
2859}
2860
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002861inline void swapStruct(struct protocol_list32_t &pl) {
2862 sys::swapByteOrder(pl.count);
2863}
2864
Kevin Enderby0fc11822015-04-01 20:57:01 +00002865inline void swapStruct(struct protocol64_t &p) {
2866 sys::swapByteOrder(p.isa);
2867 sys::swapByteOrder(p.name);
2868 sys::swapByteOrder(p.protocols);
2869 sys::swapByteOrder(p.instanceMethods);
2870 sys::swapByteOrder(p.classMethods);
2871 sys::swapByteOrder(p.optionalInstanceMethods);
2872 sys::swapByteOrder(p.optionalClassMethods);
2873 sys::swapByteOrder(p.instanceProperties);
2874}
2875
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002876inline void swapStruct(struct protocol32_t &p) {
2877 sys::swapByteOrder(p.isa);
2878 sys::swapByteOrder(p.name);
2879 sys::swapByteOrder(p.protocols);
2880 sys::swapByteOrder(p.instanceMethods);
2881 sys::swapByteOrder(p.classMethods);
2882 sys::swapByteOrder(p.optionalInstanceMethods);
2883 sys::swapByteOrder(p.optionalClassMethods);
2884 sys::swapByteOrder(p.instanceProperties);
2885}
2886
Kevin Enderby0fc11822015-04-01 20:57:01 +00002887inline void swapStruct(struct ivar_list64_t &il) {
2888 sys::swapByteOrder(il.entsize);
2889 sys::swapByteOrder(il.count);
2890}
2891
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002892inline void swapStruct(struct ivar_list32_t &il) {
2893 sys::swapByteOrder(il.entsize);
2894 sys::swapByteOrder(il.count);
2895}
2896
Kevin Enderby0fc11822015-04-01 20:57:01 +00002897inline void swapStruct(struct ivar64_t &i) {
2898 sys::swapByteOrder(i.offset);
2899 sys::swapByteOrder(i.name);
2900 sys::swapByteOrder(i.type);
2901 sys::swapByteOrder(i.alignment);
2902 sys::swapByteOrder(i.size);
2903}
2904
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002905inline void swapStruct(struct ivar32_t &i) {
2906 sys::swapByteOrder(i.offset);
2907 sys::swapByteOrder(i.name);
2908 sys::swapByteOrder(i.type);
2909 sys::swapByteOrder(i.alignment);
2910 sys::swapByteOrder(i.size);
2911}
2912
Kevin Enderby0fc11822015-04-01 20:57:01 +00002913inline void swapStruct(struct objc_property_list64 &pl) {
2914 sys::swapByteOrder(pl.entsize);
2915 sys::swapByteOrder(pl.count);
2916}
2917
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002918inline void swapStruct(struct objc_property_list32 &pl) {
2919 sys::swapByteOrder(pl.entsize);
2920 sys::swapByteOrder(pl.count);
2921}
2922
Kevin Enderby0fc11822015-04-01 20:57:01 +00002923inline void swapStruct(struct objc_property64 &op) {
2924 sys::swapByteOrder(op.name);
2925 sys::swapByteOrder(op.attributes);
2926}
2927
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002928inline void swapStruct(struct objc_property32 &op) {
2929 sys::swapByteOrder(op.name);
2930 sys::swapByteOrder(op.attributes);
2931}
2932
Kevin Enderby0fc11822015-04-01 20:57:01 +00002933inline void swapStruct(struct category64_t &c) {
2934 sys::swapByteOrder(c.name);
2935 sys::swapByteOrder(c.cls);
2936 sys::swapByteOrder(c.instanceMethods);
2937 sys::swapByteOrder(c.classMethods);
2938 sys::swapByteOrder(c.protocols);
2939 sys::swapByteOrder(c.instanceProperties);
2940}
2941
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002942inline void swapStruct(struct category32_t &c) {
2943 sys::swapByteOrder(c.name);
2944 sys::swapByteOrder(c.cls);
2945 sys::swapByteOrder(c.instanceMethods);
2946 sys::swapByteOrder(c.classMethods);
2947 sys::swapByteOrder(c.protocols);
2948 sys::swapByteOrder(c.instanceProperties);
2949}
2950
Kevin Enderby0fc11822015-04-01 20:57:01 +00002951inline void swapStruct(struct objc_image_info64 &o) {
2952 sys::swapByteOrder(o.version);
2953 sys::swapByteOrder(o.flags);
2954}
2955
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002956inline void swapStruct(struct objc_image_info32 &o) {
2957 sys::swapByteOrder(o.version);
2958 sys::swapByteOrder(o.flags);
2959}
2960
Kevin Enderby846c0002015-04-16 17:19:59 +00002961inline void swapStruct(struct imageInfo_t &o) {
2962 sys::swapByteOrder(o.version);
2963 sys::swapByteOrder(o.flags);
2964}
2965
Kevin Enderby0fc11822015-04-01 20:57:01 +00002966inline void swapStruct(struct message_ref64 &mr) {
2967 sys::swapByteOrder(mr.imp);
2968 sys::swapByteOrder(mr.sel);
2969}
2970
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002971inline void swapStruct(struct message_ref32 &mr) {
2972 sys::swapByteOrder(mr.imp);
2973 sys::swapByteOrder(mr.sel);
2974}
2975
Kevin Enderby846c0002015-04-16 17:19:59 +00002976inline void swapStruct(struct objc_module_t &module) {
2977 sys::swapByteOrder(module.version);
2978 sys::swapByteOrder(module.size);
2979 sys::swapByteOrder(module.name);
2980 sys::swapByteOrder(module.symtab);
Jingyue Wufedecc42015-04-16 18:43:44 +00002981}
Kevin Enderby846c0002015-04-16 17:19:59 +00002982
2983inline void swapStruct(struct objc_symtab_t &symtab) {
2984 sys::swapByteOrder(symtab.sel_ref_cnt);
2985 sys::swapByteOrder(symtab.refs);
2986 sys::swapByteOrder(symtab.cls_def_cnt);
2987 sys::swapByteOrder(symtab.cat_def_cnt);
Jingyue Wufedecc42015-04-16 18:43:44 +00002988}
Kevin Enderby846c0002015-04-16 17:19:59 +00002989
2990inline void swapStruct(struct objc_class_t &objc_class) {
2991 sys::swapByteOrder(objc_class.isa);
2992 sys::swapByteOrder(objc_class.super_class);
2993 sys::swapByteOrder(objc_class.name);
2994 sys::swapByteOrder(objc_class.version);
2995 sys::swapByteOrder(objc_class.info);
2996 sys::swapByteOrder(objc_class.instance_size);
2997 sys::swapByteOrder(objc_class.ivars);
2998 sys::swapByteOrder(objc_class.methodLists);
2999 sys::swapByteOrder(objc_class.cache);
3000 sys::swapByteOrder(objc_class.protocols);
Jingyue Wufedecc42015-04-16 18:43:44 +00003001}
Kevin Enderby846c0002015-04-16 17:19:59 +00003002
3003inline void swapStruct(struct objc_category_t &objc_category) {
3004 sys::swapByteOrder(objc_category.category_name);
3005 sys::swapByteOrder(objc_category.class_name);
3006 sys::swapByteOrder(objc_category.instance_methods);
3007 sys::swapByteOrder(objc_category.class_methods);
3008 sys::swapByteOrder(objc_category.protocols);
3009}
3010
3011inline void swapStruct(struct objc_ivar_list_t &objc_ivar_list) {
3012 sys::swapByteOrder(objc_ivar_list.ivar_count);
3013}
3014
3015inline void swapStruct(struct objc_ivar_t &objc_ivar) {
3016 sys::swapByteOrder(objc_ivar.ivar_name);
3017 sys::swapByteOrder(objc_ivar.ivar_type);
3018 sys::swapByteOrder(objc_ivar.ivar_offset);
Jingyue Wufedecc42015-04-16 18:43:44 +00003019}
Kevin Enderby846c0002015-04-16 17:19:59 +00003020
3021inline void swapStruct(struct objc_method_list_t &method_list) {
3022 sys::swapByteOrder(method_list.obsolete);
3023 sys::swapByteOrder(method_list.method_count);
3024}
3025
3026inline void swapStruct(struct objc_method_t &method) {
3027 sys::swapByteOrder(method.method_name);
3028 sys::swapByteOrder(method.method_types);
3029 sys::swapByteOrder(method.method_imp);
3030}
3031
3032inline void swapStruct(struct objc_protocol_list_t &protocol_list) {
3033 sys::swapByteOrder(protocol_list.next);
3034 sys::swapByteOrder(protocol_list.count);
3035}
3036
3037inline void swapStruct(struct objc_protocol_t &protocol) {
3038 sys::swapByteOrder(protocol.isa);
3039 sys::swapByteOrder(protocol.protocol_name);
3040 sys::swapByteOrder(protocol.protocol_list);
3041 sys::swapByteOrder(protocol.instance_methods);
3042 sys::swapByteOrder(protocol.class_methods);
3043}
3044
3045inline void swapStruct(struct objc_method_description_list_t &mdl) {
3046 sys::swapByteOrder(mdl.count);
3047}
3048
3049inline void swapStruct(struct objc_method_description_t &md) {
3050 sys::swapByteOrder(md.name);
3051 sys::swapByteOrder(md.types);
3052}
3053
Kevin Enderby6f326ce2014-10-23 19:37:31 +00003054static const char *get_dyld_bind_info_symbolname(uint64_t ReferenceValue,
3055 struct DisassembleInfo *info);
3056
3057// get_objc2_64bit_class_name() is used for disassembly and is passed a pointer
3058// to an Objective-C class and returns the class name. It is also passed the
3059// address of the pointer, so when the pointer is zero as it can be in an .o
3060// file, that is used to look for an external relocation entry with a symbol
3061// name.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00003062static const char *get_objc2_64bit_class_name(uint64_t pointer_value,
3063 uint64_t ReferenceValue,
3064 struct DisassembleInfo *info) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00003065 const char *r;
3066 uint32_t offset, left;
3067 SectionRef S;
3068
3069 // The pointer_value can be 0 in an object file and have a relocation
3070 // entry for the class symbol at the ReferenceValue (the address of the
3071 // pointer).
3072 if (pointer_value == 0) {
3073 r = get_pointer_64(ReferenceValue, offset, left, S, info);
3074 if (r == nullptr || left < sizeof(uint64_t))
3075 return nullptr;
3076 uint64_t n_value;
3077 const char *symbol_name = get_symbol_64(offset, S, info, n_value);
3078 if (symbol_name == nullptr)
3079 return nullptr;
Hans Wennborgdb53e302014-10-23 21:59:17 +00003080 const char *class_name = strrchr(symbol_name, '$');
Kevin Enderby6f326ce2014-10-23 19:37:31 +00003081 if (class_name != nullptr && class_name[1] == '_' && class_name[2] != '\0')
3082 return class_name + 2;
3083 else
3084 return nullptr;
3085 }
3086
3087 // The case were the pointer_value is non-zero and points to a class defined
3088 // in this Mach-O file.
3089 r = get_pointer_64(pointer_value, offset, left, S, info);
3090 if (r == nullptr || left < sizeof(struct class64_t))
3091 return nullptr;
3092 struct class64_t c;
3093 memcpy(&c, r, sizeof(struct class64_t));
3094 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3095 swapStruct(c);
3096 if (c.data == 0)
3097 return nullptr;
3098 r = get_pointer_64(c.data, offset, left, S, info);
3099 if (r == nullptr || left < sizeof(struct class_ro64_t))
3100 return nullptr;
3101 struct class_ro64_t cro;
3102 memcpy(&cro, r, sizeof(struct class_ro64_t));
3103 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3104 swapStruct(cro);
3105 if (cro.name == 0)
3106 return nullptr;
3107 const char *name = get_pointer_64(cro.name, offset, left, S, info);
3108 return name;
3109}
3110
3111// get_objc2_64bit_cfstring_name is used for disassembly and is passed a
3112// pointer to a cfstring and returns its name or nullptr.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00003113static const char *get_objc2_64bit_cfstring_name(uint64_t ReferenceValue,
3114 struct DisassembleInfo *info) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00003115 const char *r, *name;
3116 uint32_t offset, left;
3117 SectionRef S;
3118 struct cfstring64_t cfs;
3119 uint64_t cfs_characters;
3120
3121 r = get_pointer_64(ReferenceValue, offset, left, S, info);
3122 if (r == nullptr || left < sizeof(struct cfstring64_t))
3123 return nullptr;
3124 memcpy(&cfs, r, sizeof(struct cfstring64_t));
3125 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3126 swapStruct(cfs);
3127 if (cfs.characters == 0) {
3128 uint64_t n_value;
3129 const char *symbol_name = get_symbol_64(
3130 offset + offsetof(struct cfstring64_t, characters), S, info, n_value);
3131 if (symbol_name == nullptr)
3132 return nullptr;
3133 cfs_characters = n_value;
3134 } else
3135 cfs_characters = cfs.characters;
3136 name = get_pointer_64(cfs_characters, offset, left, S, info);
3137
3138 return name;
3139}
3140
3141// get_objc2_64bit_selref() is used for disassembly and is passed a the address
3142// of a pointer to an Objective-C selector reference when the pointer value is
3143// zero as in a .o file and is likely to have a external relocation entry with
3144// who's symbol's n_value is the real pointer to the selector name. If that is
3145// the case the real pointer to the selector name is returned else 0 is
3146// returned
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00003147static uint64_t get_objc2_64bit_selref(uint64_t ReferenceValue,
3148 struct DisassembleInfo *info) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00003149 uint32_t offset, left;
3150 SectionRef S;
3151
3152 const char *r = get_pointer_64(ReferenceValue, offset, left, S, info);
3153 if (r == nullptr || left < sizeof(uint64_t))
3154 return 0;
3155 uint64_t n_value;
3156 const char *symbol_name = get_symbol_64(offset, S, info, n_value);
3157 if (symbol_name == nullptr)
3158 return 0;
3159 return n_value;
3160}
3161
Kevin Enderby0fc11822015-04-01 20:57:01 +00003162static const SectionRef get_section(MachOObjectFile *O, const char *segname,
3163 const char *sectname) {
3164 for (const SectionRef &Section : O->sections()) {
3165 StringRef SectName;
3166 Section.getName(SectName);
3167 DataRefImpl Ref = Section.getRawDataRefImpl();
3168 StringRef SegName = O->getSectionFinalSegmentName(Ref);
3169 if (SegName == segname && SectName == sectname)
3170 return Section;
3171 }
3172 return SectionRef();
3173}
3174
3175static void
3176walk_pointer_list_64(const char *listname, const SectionRef S,
3177 MachOObjectFile *O, struct DisassembleInfo *info,
3178 void (*func)(uint64_t, struct DisassembleInfo *info)) {
3179 if (S == SectionRef())
3180 return;
3181
3182 StringRef SectName;
3183 S.getName(SectName);
3184 DataRefImpl Ref = S.getRawDataRefImpl();
3185 StringRef SegName = O->getSectionFinalSegmentName(Ref);
3186 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
3187
3188 StringRef BytesStr;
3189 S.getContents(BytesStr);
3190 const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
3191
3192 for (uint32_t i = 0; i < S.getSize(); i += sizeof(uint64_t)) {
3193 uint32_t left = S.getSize() - i;
3194 uint32_t size = left < sizeof(uint64_t) ? left : sizeof(uint64_t);
3195 uint64_t p = 0;
3196 memcpy(&p, Contents + i, size);
3197 if (i + sizeof(uint64_t) > S.getSize())
3198 outs() << listname << " list pointer extends past end of (" << SegName
3199 << "," << SectName << ") section\n";
3200 outs() << format("%016" PRIx64, S.getAddress() + i) << " ";
3201
3202 if (O->isLittleEndian() != sys::IsLittleEndianHost)
3203 sys::swapByteOrder(p);
3204
3205 uint64_t n_value = 0;
3206 const char *name = get_symbol_64(i, S, info, n_value, p);
3207 if (name == nullptr)
3208 name = get_dyld_bind_info_symbolname(S.getAddress() + i, info);
3209
3210 if (n_value != 0) {
3211 outs() << format("0x%" PRIx64, n_value);
3212 if (p != 0)
3213 outs() << " + " << format("0x%" PRIx64, p);
3214 } else
3215 outs() << format("0x%" PRIx64, p);
3216 if (name != nullptr)
3217 outs() << " " << name;
3218 outs() << "\n";
3219
3220 p += n_value;
3221 if (func)
3222 func(p, info);
3223 }
3224}
3225
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003226static void
3227walk_pointer_list_32(const char *listname, const SectionRef S,
3228 MachOObjectFile *O, struct DisassembleInfo *info,
3229 void (*func)(uint32_t, struct DisassembleInfo *info)) {
3230 if (S == SectionRef())
3231 return;
3232
3233 StringRef SectName;
3234 S.getName(SectName);
3235 DataRefImpl Ref = S.getRawDataRefImpl();
3236 StringRef SegName = O->getSectionFinalSegmentName(Ref);
3237 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
3238
3239 StringRef BytesStr;
3240 S.getContents(BytesStr);
3241 const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
3242
3243 for (uint32_t i = 0; i < S.getSize(); i += sizeof(uint32_t)) {
3244 uint32_t left = S.getSize() - i;
3245 uint32_t size = left < sizeof(uint32_t) ? left : sizeof(uint32_t);
3246 uint32_t p = 0;
3247 memcpy(&p, Contents + i, size);
3248 if (i + sizeof(uint32_t) > S.getSize())
3249 outs() << listname << " list pointer extends past end of (" << SegName
3250 << "," << SectName << ") section\n";
Kevin Enderbycf261312015-04-06 22:33:43 +00003251 uint32_t Address = S.getAddress() + i;
3252 outs() << format("%08" PRIx32, Address) << " ";
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003253
3254 if (O->isLittleEndian() != sys::IsLittleEndianHost)
3255 sys::swapByteOrder(p);
3256 outs() << format("0x%" PRIx32, p);
3257
3258 const char *name = get_symbol_32(i, S, info, p);
3259 if (name != nullptr)
3260 outs() << " " << name;
3261 outs() << "\n";
3262
3263 if (func)
3264 func(p, info);
3265 }
3266}
3267
3268static void print_layout_map(const char *layout_map, uint32_t left) {
Kevin Enderbya59824a2015-10-06 22:27:08 +00003269 if (layout_map == nullptr)
3270 return;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003271 outs() << " layout map: ";
3272 do {
3273 outs() << format("0x%02" PRIx32, (*layout_map) & 0xff) << " ";
3274 left--;
3275 layout_map++;
3276 } while (*layout_map != '\0' && left != 0);
3277 outs() << "\n";
3278}
3279
Kevin Enderby0fc11822015-04-01 20:57:01 +00003280static void print_layout_map64(uint64_t p, struct DisassembleInfo *info) {
3281 uint32_t offset, left;
3282 SectionRef S;
3283 const char *layout_map;
3284
3285 if (p == 0)
3286 return;
3287 layout_map = get_pointer_64(p, offset, left, S, info);
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003288 print_layout_map(layout_map, left);
3289}
3290
3291static void print_layout_map32(uint32_t p, struct DisassembleInfo *info) {
3292 uint32_t offset, left;
3293 SectionRef S;
3294 const char *layout_map;
3295
3296 if (p == 0)
3297 return;
3298 layout_map = get_pointer_32(p, offset, left, S, info);
3299 print_layout_map(layout_map, left);
Kevin Enderby0fc11822015-04-01 20:57:01 +00003300}
3301
3302static void print_method_list64_t(uint64_t p, struct DisassembleInfo *info,
3303 const char *indent) {
3304 struct method_list64_t ml;
3305 struct method64_t m;
3306 const char *r;
3307 uint32_t offset, xoffset, left, i;
3308 SectionRef S, xS;
3309 const char *name, *sym_name;
3310 uint64_t n_value;
3311
3312 r = get_pointer_64(p, offset, left, S, info);
3313 if (r == nullptr)
3314 return;
3315 memset(&ml, '\0', sizeof(struct method_list64_t));
3316 if (left < sizeof(struct method_list64_t)) {
3317 memcpy(&ml, r, left);
3318 outs() << " (method_list_t entends past the end of the section)\n";
3319 } else
3320 memcpy(&ml, r, sizeof(struct method_list64_t));
3321 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3322 swapStruct(ml);
3323 outs() << indent << "\t\t entsize " << ml.entsize << "\n";
3324 outs() << indent << "\t\t count " << ml.count << "\n";
3325
3326 p += sizeof(struct method_list64_t);
3327 offset += sizeof(struct method_list64_t);
3328 for (i = 0; i < ml.count; i++) {
3329 r = get_pointer_64(p, offset, left, S, info);
3330 if (r == nullptr)
3331 return;
3332 memset(&m, '\0', sizeof(struct method64_t));
3333 if (left < sizeof(struct method64_t)) {
Kevin Enderbya59824a2015-10-06 22:27:08 +00003334 memcpy(&m, r, left);
3335 outs() << indent << " (method_t extends past the end of the section)\n";
Kevin Enderby0fc11822015-04-01 20:57:01 +00003336 } else
3337 memcpy(&m, r, sizeof(struct method64_t));
3338 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3339 swapStruct(m);
3340
3341 outs() << indent << "\t\t name ";
3342 sym_name = get_symbol_64(offset + offsetof(struct method64_t, name), S,
3343 info, n_value, m.name);
3344 if (n_value != 0) {
3345 if (info->verbose && sym_name != nullptr)
3346 outs() << sym_name;
3347 else
3348 outs() << format("0x%" PRIx64, n_value);
3349 if (m.name != 0)
3350 outs() << " + " << format("0x%" PRIx64, m.name);
3351 } else
3352 outs() << format("0x%" PRIx64, m.name);
3353 name = get_pointer_64(m.name + n_value, xoffset, left, xS, info);
3354 if (name != nullptr)
3355 outs() << format(" %.*s", left, name);
3356 outs() << "\n";
3357
3358 outs() << indent << "\t\t types ";
3359 sym_name = get_symbol_64(offset + offsetof(struct method64_t, types), S,
3360 info, n_value, m.types);
3361 if (n_value != 0) {
3362 if (info->verbose && sym_name != nullptr)
3363 outs() << sym_name;
3364 else
3365 outs() << format("0x%" PRIx64, n_value);
3366 if (m.types != 0)
3367 outs() << " + " << format("0x%" PRIx64, m.types);
3368 } else
3369 outs() << format("0x%" PRIx64, m.types);
3370 name = get_pointer_64(m.types + n_value, xoffset, left, xS, info);
3371 if (name != nullptr)
3372 outs() << format(" %.*s", left, name);
3373 outs() << "\n";
3374
3375 outs() << indent << "\t\t imp ";
3376 name = get_symbol_64(offset + offsetof(struct method64_t, imp), S, info,
3377 n_value, m.imp);
3378 if (info->verbose && name == nullptr) {
3379 if (n_value != 0) {
3380 outs() << format("0x%" PRIx64, n_value) << " ";
3381 if (m.imp != 0)
3382 outs() << "+ " << format("0x%" PRIx64, m.imp) << " ";
3383 } else
3384 outs() << format("0x%" PRIx64, m.imp) << " ";
3385 }
3386 if (name != nullptr)
3387 outs() << name;
3388 outs() << "\n";
3389
3390 p += sizeof(struct method64_t);
3391 offset += sizeof(struct method64_t);
3392 }
3393}
3394
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003395static void print_method_list32_t(uint64_t p, struct DisassembleInfo *info,
3396 const char *indent) {
3397 struct method_list32_t ml;
3398 struct method32_t m;
Kevin Enderby846c0002015-04-16 17:19:59 +00003399 const char *r, *name;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003400 uint32_t offset, xoffset, left, i;
3401 SectionRef S, xS;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003402
3403 r = get_pointer_32(p, offset, left, S, info);
3404 if (r == nullptr)
3405 return;
3406 memset(&ml, '\0', sizeof(struct method_list32_t));
3407 if (left < sizeof(struct method_list32_t)) {
3408 memcpy(&ml, r, left);
3409 outs() << " (method_list_t entends past the end of the section)\n";
3410 } else
3411 memcpy(&ml, r, sizeof(struct method_list32_t));
3412 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3413 swapStruct(ml);
3414 outs() << indent << "\t\t entsize " << ml.entsize << "\n";
3415 outs() << indent << "\t\t count " << ml.count << "\n";
3416
3417 p += sizeof(struct method_list32_t);
3418 offset += sizeof(struct method_list32_t);
3419 for (i = 0; i < ml.count; i++) {
3420 r = get_pointer_32(p, offset, left, S, info);
3421 if (r == nullptr)
3422 return;
3423 memset(&m, '\0', sizeof(struct method32_t));
3424 if (left < sizeof(struct method32_t)) {
3425 memcpy(&ml, r, left);
3426 outs() << indent << " (method_t entends past the end of the section)\n";
3427 } else
3428 memcpy(&m, r, sizeof(struct method32_t));
3429 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3430 swapStruct(m);
3431
3432 outs() << indent << "\t\t name " << format("0x%" PRIx32, m.name);
3433 name = get_pointer_32(m.name, xoffset, left, xS, info);
3434 if (name != nullptr)
3435 outs() << format(" %.*s", left, name);
3436 outs() << "\n";
3437
3438 outs() << indent << "\t\t types " << format("0x%" PRIx32, m.types);
3439 name = get_pointer_32(m.types, xoffset, left, xS, info);
3440 if (name != nullptr)
3441 outs() << format(" %.*s", left, name);
3442 outs() << "\n";
3443
3444 outs() << indent << "\t\t imp " << format("0x%" PRIx32, m.imp);
3445 name = get_symbol_32(offset + offsetof(struct method32_t, imp), S, info,
3446 m.imp);
3447 if (name != nullptr)
3448 outs() << " " << name;
3449 outs() << "\n";
3450
3451 p += sizeof(struct method32_t);
3452 offset += sizeof(struct method32_t);
3453 }
3454}
3455
Kevin Enderby846c0002015-04-16 17:19:59 +00003456static bool print_method_list(uint32_t p, struct DisassembleInfo *info) {
3457 uint32_t offset, left, xleft;
3458 SectionRef S;
3459 struct objc_method_list_t method_list;
3460 struct objc_method_t method;
3461 const char *r, *methods, *name, *SymbolName;
3462 int32_t i;
3463
3464 r = get_pointer_32(p, offset, left, S, info, true);
3465 if (r == nullptr)
3466 return true;
3467
3468 outs() << "\n";
3469 if (left > sizeof(struct objc_method_list_t)) {
3470 memcpy(&method_list, r, sizeof(struct objc_method_list_t));
3471 } else {
3472 outs() << "\t\t objc_method_list extends past end of the section\n";
3473 memset(&method_list, '\0', sizeof(struct objc_method_list_t));
3474 memcpy(&method_list, r, left);
3475 }
3476 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3477 swapStruct(method_list);
3478
3479 outs() << "\t\t obsolete "
3480 << format("0x%08" PRIx32, method_list.obsolete) << "\n";
3481 outs() << "\t\t method_count " << method_list.method_count << "\n";
3482
3483 methods = r + sizeof(struct objc_method_list_t);
3484 for (i = 0; i < method_list.method_count; i++) {
3485 if ((i + 1) * sizeof(struct objc_method_t) > left) {
3486 outs() << "\t\t remaining method's extend past the of the section\n";
3487 break;
3488 }
3489 memcpy(&method, methods + i * sizeof(struct objc_method_t),
3490 sizeof(struct objc_method_t));
3491 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3492 swapStruct(method);
3493
3494 outs() << "\t\t method_name "
3495 << format("0x%08" PRIx32, method.method_name);
3496 if (info->verbose) {
3497 name = get_pointer_32(method.method_name, offset, xleft, S, info, true);
3498 if (name != nullptr)
3499 outs() << format(" %.*s", xleft, name);
3500 else
3501 outs() << " (not in an __OBJC section)";
3502 }
3503 outs() << "\n";
3504
3505 outs() << "\t\t method_types "
3506 << format("0x%08" PRIx32, method.method_types);
3507 if (info->verbose) {
3508 name = get_pointer_32(method.method_types, offset, xleft, S, info, true);
3509 if (name != nullptr)
3510 outs() << format(" %.*s", xleft, name);
3511 else
3512 outs() << " (not in an __OBJC section)";
3513 }
3514 outs() << "\n";
3515
3516 outs() << "\t\t method_imp "
3517 << format("0x%08" PRIx32, method.method_imp) << " ";
3518 if (info->verbose) {
3519 SymbolName = GuessSymbolName(method.method_imp, info->AddrMap);
3520 if (SymbolName != nullptr)
3521 outs() << SymbolName;
3522 }
3523 outs() << "\n";
3524 }
3525 return false;
3526}
3527
Kevin Enderby0fc11822015-04-01 20:57:01 +00003528static void print_protocol_list64_t(uint64_t p, struct DisassembleInfo *info) {
3529 struct protocol_list64_t pl;
3530 uint64_t q, n_value;
3531 struct protocol64_t pc;
3532 const char *r;
3533 uint32_t offset, xoffset, left, i;
3534 SectionRef S, xS;
3535 const char *name, *sym_name;
3536
3537 r = get_pointer_64(p, offset, left, S, info);
3538 if (r == nullptr)
3539 return;
3540 memset(&pl, '\0', sizeof(struct protocol_list64_t));
3541 if (left < sizeof(struct protocol_list64_t)) {
3542 memcpy(&pl, r, left);
3543 outs() << " (protocol_list_t entends past the end of the section)\n";
3544 } else
3545 memcpy(&pl, r, sizeof(struct protocol_list64_t));
3546 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3547 swapStruct(pl);
3548 outs() << " count " << pl.count << "\n";
3549
3550 p += sizeof(struct protocol_list64_t);
3551 offset += sizeof(struct protocol_list64_t);
3552 for (i = 0; i < pl.count; i++) {
3553 r = get_pointer_64(p, offset, left, S, info);
3554 if (r == nullptr)
3555 return;
3556 q = 0;
3557 if (left < sizeof(uint64_t)) {
3558 memcpy(&q, r, left);
3559 outs() << " (protocol_t * entends past the end of the section)\n";
3560 } else
3561 memcpy(&q, r, sizeof(uint64_t));
3562 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3563 sys::swapByteOrder(q);
3564
3565 outs() << "\t\t list[" << i << "] ";
3566 sym_name = get_symbol_64(offset, S, info, n_value, q);
3567 if (n_value != 0) {
3568 if (info->verbose && sym_name != nullptr)
3569 outs() << sym_name;
3570 else
3571 outs() << format("0x%" PRIx64, n_value);
3572 if (q != 0)
3573 outs() << " + " << format("0x%" PRIx64, q);
3574 } else
3575 outs() << format("0x%" PRIx64, q);
3576 outs() << " (struct protocol_t *)\n";
3577
3578 r = get_pointer_64(q + n_value, offset, left, S, info);
3579 if (r == nullptr)
3580 return;
3581 memset(&pc, '\0', sizeof(struct protocol64_t));
3582 if (left < sizeof(struct protocol64_t)) {
3583 memcpy(&pc, r, left);
3584 outs() << " (protocol_t entends past the end of the section)\n";
3585 } else
3586 memcpy(&pc, r, sizeof(struct protocol64_t));
3587 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3588 swapStruct(pc);
3589
3590 outs() << "\t\t\t isa " << format("0x%" PRIx64, pc.isa) << "\n";
3591
3592 outs() << "\t\t\t name ";
3593 sym_name = get_symbol_64(offset + offsetof(struct protocol64_t, name), S,
3594 info, n_value, pc.name);
3595 if (n_value != 0) {
3596 if (info->verbose && sym_name != nullptr)
3597 outs() << sym_name;
3598 else
3599 outs() << format("0x%" PRIx64, n_value);
3600 if (pc.name != 0)
3601 outs() << " + " << format("0x%" PRIx64, pc.name);
3602 } else
3603 outs() << format("0x%" PRIx64, pc.name);
3604 name = get_pointer_64(pc.name + n_value, xoffset, left, xS, info);
3605 if (name != nullptr)
3606 outs() << format(" %.*s", left, name);
3607 outs() << "\n";
3608
3609 outs() << "\t\t\tprotocols " << format("0x%" PRIx64, pc.protocols) << "\n";
3610
3611 outs() << "\t\t instanceMethods ";
3612 sym_name =
3613 get_symbol_64(offset + offsetof(struct protocol64_t, instanceMethods),
3614 S, info, n_value, pc.instanceMethods);
3615 if (n_value != 0) {
3616 if (info->verbose && sym_name != nullptr)
3617 outs() << sym_name;
3618 else
3619 outs() << format("0x%" PRIx64, n_value);
3620 if (pc.instanceMethods != 0)
3621 outs() << " + " << format("0x%" PRIx64, pc.instanceMethods);
3622 } else
3623 outs() << format("0x%" PRIx64, pc.instanceMethods);
3624 outs() << " (struct method_list_t *)\n";
3625 if (pc.instanceMethods + n_value != 0)
3626 print_method_list64_t(pc.instanceMethods + n_value, info, "\t");
3627
3628 outs() << "\t\t classMethods ";
3629 sym_name =
3630 get_symbol_64(offset + offsetof(struct protocol64_t, classMethods), S,
3631 info, n_value, pc.classMethods);
3632 if (n_value != 0) {
3633 if (info->verbose && sym_name != nullptr)
3634 outs() << sym_name;
3635 else
3636 outs() << format("0x%" PRIx64, n_value);
3637 if (pc.classMethods != 0)
3638 outs() << " + " << format("0x%" PRIx64, pc.classMethods);
3639 } else
3640 outs() << format("0x%" PRIx64, pc.classMethods);
3641 outs() << " (struct method_list_t *)\n";
3642 if (pc.classMethods + n_value != 0)
3643 print_method_list64_t(pc.classMethods + n_value, info, "\t");
3644
3645 outs() << "\t optionalInstanceMethods "
3646 << format("0x%" PRIx64, pc.optionalInstanceMethods) << "\n";
3647 outs() << "\t optionalClassMethods "
3648 << format("0x%" PRIx64, pc.optionalClassMethods) << "\n";
3649 outs() << "\t instanceProperties "
3650 << format("0x%" PRIx64, pc.instanceProperties) << "\n";
3651
3652 p += sizeof(uint64_t);
3653 offset += sizeof(uint64_t);
3654 }
3655}
3656
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003657static void print_protocol_list32_t(uint32_t p, struct DisassembleInfo *info) {
3658 struct protocol_list32_t pl;
3659 uint32_t q;
3660 struct protocol32_t pc;
3661 const char *r;
3662 uint32_t offset, xoffset, left, i;
3663 SectionRef S, xS;
3664 const char *name;
3665
3666 r = get_pointer_32(p, offset, left, S, info);
3667 if (r == nullptr)
3668 return;
3669 memset(&pl, '\0', sizeof(struct protocol_list32_t));
3670 if (left < sizeof(struct protocol_list32_t)) {
3671 memcpy(&pl, r, left);
3672 outs() << " (protocol_list_t entends past the end of the section)\n";
3673 } else
3674 memcpy(&pl, r, sizeof(struct protocol_list32_t));
3675 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3676 swapStruct(pl);
3677 outs() << " count " << pl.count << "\n";
3678
3679 p += sizeof(struct protocol_list32_t);
3680 offset += sizeof(struct protocol_list32_t);
3681 for (i = 0; i < pl.count; i++) {
3682 r = get_pointer_32(p, offset, left, S, info);
3683 if (r == nullptr)
3684 return;
3685 q = 0;
3686 if (left < sizeof(uint32_t)) {
3687 memcpy(&q, r, left);
3688 outs() << " (protocol_t * entends past the end of the section)\n";
3689 } else
3690 memcpy(&q, r, sizeof(uint32_t));
3691 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3692 sys::swapByteOrder(q);
3693 outs() << "\t\t list[" << i << "] " << format("0x%" PRIx32, q)
3694 << " (struct protocol_t *)\n";
3695 r = get_pointer_32(q, offset, left, S, info);
3696 if (r == nullptr)
3697 return;
3698 memset(&pc, '\0', sizeof(struct protocol32_t));
3699 if (left < sizeof(struct protocol32_t)) {
3700 memcpy(&pc, r, left);
3701 outs() << " (protocol_t entends past the end of the section)\n";
3702 } else
3703 memcpy(&pc, r, sizeof(struct protocol32_t));
3704 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3705 swapStruct(pc);
3706 outs() << "\t\t\t isa " << format("0x%" PRIx32, pc.isa) << "\n";
3707 outs() << "\t\t\t name " << format("0x%" PRIx32, pc.name);
3708 name = get_pointer_32(pc.name, xoffset, left, xS, info);
3709 if (name != nullptr)
3710 outs() << format(" %.*s", left, name);
3711 outs() << "\n";
3712 outs() << "\t\t\tprotocols " << format("0x%" PRIx32, pc.protocols) << "\n";
3713 outs() << "\t\t instanceMethods "
3714 << format("0x%" PRIx32, pc.instanceMethods)
3715 << " (struct method_list_t *)\n";
3716 if (pc.instanceMethods != 0)
3717 print_method_list32_t(pc.instanceMethods, info, "\t");
3718 outs() << "\t\t classMethods " << format("0x%" PRIx32, pc.classMethods)
3719 << " (struct method_list_t *)\n";
3720 if (pc.classMethods != 0)
3721 print_method_list32_t(pc.classMethods, info, "\t");
3722 outs() << "\t optionalInstanceMethods "
3723 << format("0x%" PRIx32, pc.optionalInstanceMethods) << "\n";
3724 outs() << "\t optionalClassMethods "
3725 << format("0x%" PRIx32, pc.optionalClassMethods) << "\n";
3726 outs() << "\t instanceProperties "
3727 << format("0x%" PRIx32, pc.instanceProperties) << "\n";
3728 p += sizeof(uint32_t);
3729 offset += sizeof(uint32_t);
3730 }
3731}
3732
Kevin Enderby846c0002015-04-16 17:19:59 +00003733static void print_indent(uint32_t indent) {
3734 for (uint32_t i = 0; i < indent;) {
3735 if (indent - i >= 8) {
3736 outs() << "\t";
3737 i += 8;
3738 } else {
3739 for (uint32_t j = i; j < indent; j++)
3740 outs() << " ";
3741 return;
3742 }
3743 }
3744}
3745
3746static bool print_method_description_list(uint32_t p, uint32_t indent,
3747 struct DisassembleInfo *info) {
3748 uint32_t offset, left, xleft;
3749 SectionRef S;
3750 struct objc_method_description_list_t mdl;
3751 struct objc_method_description_t md;
3752 const char *r, *list, *name;
3753 int32_t i;
3754
3755 r = get_pointer_32(p, offset, left, S, info, true);
3756 if (r == nullptr)
3757 return true;
3758
3759 outs() << "\n";
3760 if (left > sizeof(struct objc_method_description_list_t)) {
3761 memcpy(&mdl, r, sizeof(struct objc_method_description_list_t));
3762 } else {
3763 print_indent(indent);
3764 outs() << " objc_method_description_list extends past end of the section\n";
3765 memset(&mdl, '\0', sizeof(struct objc_method_description_list_t));
3766 memcpy(&mdl, r, left);
3767 }
3768 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3769 swapStruct(mdl);
3770
3771 print_indent(indent);
3772 outs() << " count " << mdl.count << "\n";
3773
3774 list = r + sizeof(struct objc_method_description_list_t);
3775 for (i = 0; i < mdl.count; i++) {
3776 if ((i + 1) * sizeof(struct objc_method_description_t) > left) {
3777 print_indent(indent);
3778 outs() << " remaining list entries extend past the of the section\n";
3779 break;
3780 }
3781 print_indent(indent);
3782 outs() << " list[" << i << "]\n";
3783 memcpy(&md, list + i * sizeof(struct objc_method_description_t),
3784 sizeof(struct objc_method_description_t));
3785 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3786 swapStruct(md);
3787
3788 print_indent(indent);
3789 outs() << " name " << format("0x%08" PRIx32, md.name);
3790 if (info->verbose) {
3791 name = get_pointer_32(md.name, offset, xleft, S, info, true);
3792 if (name != nullptr)
3793 outs() << format(" %.*s", xleft, name);
3794 else
3795 outs() << " (not in an __OBJC section)";
3796 }
3797 outs() << "\n";
3798
3799 print_indent(indent);
3800 outs() << " types " << format("0x%08" PRIx32, md.types);
3801 if (info->verbose) {
3802 name = get_pointer_32(md.types, offset, xleft, S, info, true);
3803 if (name != nullptr)
3804 outs() << format(" %.*s", xleft, name);
3805 else
3806 outs() << " (not in an __OBJC section)";
3807 }
3808 outs() << "\n";
3809 }
3810 return false;
3811}
3812
3813static bool print_protocol_list(uint32_t p, uint32_t indent,
3814 struct DisassembleInfo *info);
3815
3816static bool print_protocol(uint32_t p, uint32_t indent,
3817 struct DisassembleInfo *info) {
3818 uint32_t offset, left;
3819 SectionRef S;
3820 struct objc_protocol_t protocol;
3821 const char *r, *name;
3822
3823 r = get_pointer_32(p, offset, left, S, info, true);
3824 if (r == nullptr)
3825 return true;
3826
3827 outs() << "\n";
3828 if (left >= sizeof(struct objc_protocol_t)) {
3829 memcpy(&protocol, r, sizeof(struct objc_protocol_t));
3830 } else {
3831 print_indent(indent);
3832 outs() << " Protocol extends past end of the section\n";
3833 memset(&protocol, '\0', sizeof(struct objc_protocol_t));
3834 memcpy(&protocol, r, left);
3835 }
3836 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3837 swapStruct(protocol);
3838
3839 print_indent(indent);
3840 outs() << " isa " << format("0x%08" PRIx32, protocol.isa)
3841 << "\n";
3842
3843 print_indent(indent);
3844 outs() << " protocol_name "
3845 << format("0x%08" PRIx32, protocol.protocol_name);
3846 if (info->verbose) {
3847 name = get_pointer_32(protocol.protocol_name, offset, left, S, info, true);
3848 if (name != nullptr)
3849 outs() << format(" %.*s", left, name);
3850 else
3851 outs() << " (not in an __OBJC section)";
3852 }
3853 outs() << "\n";
3854
3855 print_indent(indent);
3856 outs() << " protocol_list "
3857 << format("0x%08" PRIx32, protocol.protocol_list);
3858 if (print_protocol_list(protocol.protocol_list, indent + 4, info))
3859 outs() << " (not in an __OBJC section)\n";
3860
3861 print_indent(indent);
3862 outs() << " instance_methods "
3863 << format("0x%08" PRIx32, protocol.instance_methods);
3864 if (print_method_description_list(protocol.instance_methods, indent, info))
3865 outs() << " (not in an __OBJC section)\n";
3866
3867 print_indent(indent);
3868 outs() << " class_methods "
3869 << format("0x%08" PRIx32, protocol.class_methods);
3870 if (print_method_description_list(protocol.class_methods, indent, info))
3871 outs() << " (not in an __OBJC section)\n";
3872
3873 return false;
3874}
3875
3876static bool print_protocol_list(uint32_t p, uint32_t indent,
3877 struct DisassembleInfo *info) {
3878 uint32_t offset, left, l;
3879 SectionRef S;
3880 struct objc_protocol_list_t protocol_list;
3881 const char *r, *list;
3882 int32_t i;
3883
3884 r = get_pointer_32(p, offset, left, S, info, true);
3885 if (r == nullptr)
3886 return true;
3887
3888 outs() << "\n";
3889 if (left > sizeof(struct objc_protocol_list_t)) {
3890 memcpy(&protocol_list, r, sizeof(struct objc_protocol_list_t));
3891 } else {
3892 outs() << "\t\t objc_protocol_list_t extends past end of the section\n";
3893 memset(&protocol_list, '\0', sizeof(struct objc_protocol_list_t));
3894 memcpy(&protocol_list, r, left);
3895 }
3896 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3897 swapStruct(protocol_list);
3898
3899 print_indent(indent);
3900 outs() << " next " << format("0x%08" PRIx32, protocol_list.next)
3901 << "\n";
3902 print_indent(indent);
3903 outs() << " count " << protocol_list.count << "\n";
3904
3905 list = r + sizeof(struct objc_protocol_list_t);
3906 for (i = 0; i < protocol_list.count; i++) {
3907 if ((i + 1) * sizeof(uint32_t) > left) {
3908 outs() << "\t\t remaining list entries extend past the of the section\n";
3909 break;
3910 }
3911 memcpy(&l, list + i * sizeof(uint32_t), sizeof(uint32_t));
3912 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3913 sys::swapByteOrder(l);
3914
3915 print_indent(indent);
3916 outs() << " list[" << i << "] " << format("0x%08" PRIx32, l);
3917 if (print_protocol(l, indent, info))
3918 outs() << "(not in an __OBJC section)\n";
3919 }
3920 return false;
3921}
3922
Kevin Enderby0fc11822015-04-01 20:57:01 +00003923static void print_ivar_list64_t(uint64_t p, struct DisassembleInfo *info) {
3924 struct ivar_list64_t il;
3925 struct ivar64_t i;
3926 const char *r;
3927 uint32_t offset, xoffset, left, j;
3928 SectionRef S, xS;
3929 const char *name, *sym_name, *ivar_offset_p;
3930 uint64_t ivar_offset, n_value;
3931
3932 r = get_pointer_64(p, offset, left, S, info);
3933 if (r == nullptr)
3934 return;
3935 memset(&il, '\0', sizeof(struct ivar_list64_t));
3936 if (left < sizeof(struct ivar_list64_t)) {
3937 memcpy(&il, r, left);
3938 outs() << " (ivar_list_t entends past the end of the section)\n";
3939 } else
3940 memcpy(&il, r, sizeof(struct ivar_list64_t));
3941 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3942 swapStruct(il);
3943 outs() << " entsize " << il.entsize << "\n";
3944 outs() << " count " << il.count << "\n";
3945
3946 p += sizeof(struct ivar_list64_t);
3947 offset += sizeof(struct ivar_list64_t);
3948 for (j = 0; j < il.count; j++) {
3949 r = get_pointer_64(p, offset, left, S, info);
3950 if (r == nullptr)
3951 return;
3952 memset(&i, '\0', sizeof(struct ivar64_t));
3953 if (left < sizeof(struct ivar64_t)) {
3954 memcpy(&i, r, left);
3955 outs() << " (ivar_t entends past the end of the section)\n";
3956 } else
3957 memcpy(&i, r, sizeof(struct ivar64_t));
3958 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3959 swapStruct(i);
3960
3961 outs() << "\t\t\t offset ";
3962 sym_name = get_symbol_64(offset + offsetof(struct ivar64_t, offset), S,
3963 info, n_value, i.offset);
3964 if (n_value != 0) {
3965 if (info->verbose && sym_name != nullptr)
3966 outs() << sym_name;
3967 else
3968 outs() << format("0x%" PRIx64, n_value);
3969 if (i.offset != 0)
3970 outs() << " + " << format("0x%" PRIx64, i.offset);
3971 } else
3972 outs() << format("0x%" PRIx64, i.offset);
3973 ivar_offset_p = get_pointer_64(i.offset + n_value, xoffset, left, xS, info);
3974 if (ivar_offset_p != nullptr && left >= sizeof(*ivar_offset_p)) {
3975 memcpy(&ivar_offset, ivar_offset_p, sizeof(ivar_offset));
3976 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3977 sys::swapByteOrder(ivar_offset);
3978 outs() << " " << ivar_offset << "\n";
3979 } else
3980 outs() << "\n";
3981
3982 outs() << "\t\t\t name ";
3983 sym_name = get_symbol_64(offset + offsetof(struct ivar64_t, name), S, info,
3984 n_value, i.name);
3985 if (n_value != 0) {
3986 if (info->verbose && sym_name != nullptr)
3987 outs() << sym_name;
3988 else
3989 outs() << format("0x%" PRIx64, n_value);
3990 if (i.name != 0)
3991 outs() << " + " << format("0x%" PRIx64, i.name);
3992 } else
3993 outs() << format("0x%" PRIx64, i.name);
3994 name = get_pointer_64(i.name + n_value, xoffset, left, xS, info);
3995 if (name != nullptr)
3996 outs() << format(" %.*s", left, name);
3997 outs() << "\n";
3998
3999 outs() << "\t\t\t type ";
4000 sym_name = get_symbol_64(offset + offsetof(struct ivar64_t, type), S, info,
4001 n_value, i.name);
4002 name = get_pointer_64(i.type + n_value, xoffset, left, xS, info);
4003 if (n_value != 0) {
4004 if (info->verbose && sym_name != nullptr)
4005 outs() << sym_name;
4006 else
4007 outs() << format("0x%" PRIx64, n_value);
4008 if (i.type != 0)
4009 outs() << " + " << format("0x%" PRIx64, i.type);
4010 } else
4011 outs() << format("0x%" PRIx64, i.type);
4012 if (name != nullptr)
4013 outs() << format(" %.*s", left, name);
4014 outs() << "\n";
4015
4016 outs() << "\t\t\talignment " << i.alignment << "\n";
4017 outs() << "\t\t\t size " << i.size << "\n";
4018
4019 p += sizeof(struct ivar64_t);
4020 offset += sizeof(struct ivar64_t);
4021 }
4022}
4023
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004024static void print_ivar_list32_t(uint32_t p, struct DisassembleInfo *info) {
4025 struct ivar_list32_t il;
4026 struct ivar32_t i;
4027 const char *r;
4028 uint32_t offset, xoffset, left, j;
4029 SectionRef S, xS;
4030 const char *name, *ivar_offset_p;
4031 uint32_t ivar_offset;
4032
4033 r = get_pointer_32(p, offset, left, S, info);
4034 if (r == nullptr)
4035 return;
4036 memset(&il, '\0', sizeof(struct ivar_list32_t));
4037 if (left < sizeof(struct ivar_list32_t)) {
4038 memcpy(&il, r, left);
4039 outs() << " (ivar_list_t entends past the end of the section)\n";
4040 } else
4041 memcpy(&il, r, sizeof(struct ivar_list32_t));
4042 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4043 swapStruct(il);
4044 outs() << " entsize " << il.entsize << "\n";
4045 outs() << " count " << il.count << "\n";
4046
4047 p += sizeof(struct ivar_list32_t);
4048 offset += sizeof(struct ivar_list32_t);
4049 for (j = 0; j < il.count; j++) {
4050 r = get_pointer_32(p, offset, left, S, info);
4051 if (r == nullptr)
4052 return;
4053 memset(&i, '\0', sizeof(struct ivar32_t));
4054 if (left < sizeof(struct ivar32_t)) {
4055 memcpy(&i, r, left);
4056 outs() << " (ivar_t entends past the end of the section)\n";
4057 } else
4058 memcpy(&i, r, sizeof(struct ivar32_t));
4059 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4060 swapStruct(i);
4061
4062 outs() << "\t\t\t offset " << format("0x%" PRIx32, i.offset);
4063 ivar_offset_p = get_pointer_32(i.offset, xoffset, left, xS, info);
4064 if (ivar_offset_p != nullptr && left >= sizeof(*ivar_offset_p)) {
4065 memcpy(&ivar_offset, ivar_offset_p, sizeof(ivar_offset));
4066 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4067 sys::swapByteOrder(ivar_offset);
4068 outs() << " " << ivar_offset << "\n";
4069 } else
4070 outs() << "\n";
4071
4072 outs() << "\t\t\t name " << format("0x%" PRIx32, i.name);
4073 name = get_pointer_32(i.name, xoffset, left, xS, info);
4074 if (name != nullptr)
4075 outs() << format(" %.*s", left, name);
4076 outs() << "\n";
4077
4078 outs() << "\t\t\t type " << format("0x%" PRIx32, i.type);
4079 name = get_pointer_32(i.type, xoffset, left, xS, info);
4080 if (name != nullptr)
4081 outs() << format(" %.*s", left, name);
4082 outs() << "\n";
4083
4084 outs() << "\t\t\talignment " << i.alignment << "\n";
4085 outs() << "\t\t\t size " << i.size << "\n";
4086
4087 p += sizeof(struct ivar32_t);
4088 offset += sizeof(struct ivar32_t);
4089 }
4090}
4091
Kevin Enderby0fc11822015-04-01 20:57:01 +00004092static void print_objc_property_list64(uint64_t p,
4093 struct DisassembleInfo *info) {
4094 struct objc_property_list64 opl;
4095 struct objc_property64 op;
4096 const char *r;
4097 uint32_t offset, xoffset, left, j;
4098 SectionRef S, xS;
4099 const char *name, *sym_name;
4100 uint64_t n_value;
4101
4102 r = get_pointer_64(p, offset, left, S, info);
4103 if (r == nullptr)
4104 return;
4105 memset(&opl, '\0', sizeof(struct objc_property_list64));
4106 if (left < sizeof(struct objc_property_list64)) {
4107 memcpy(&opl, r, left);
4108 outs() << " (objc_property_list entends past the end of the section)\n";
4109 } else
4110 memcpy(&opl, r, sizeof(struct objc_property_list64));
4111 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4112 swapStruct(opl);
4113 outs() << " entsize " << opl.entsize << "\n";
4114 outs() << " count " << opl.count << "\n";
4115
4116 p += sizeof(struct objc_property_list64);
4117 offset += sizeof(struct objc_property_list64);
4118 for (j = 0; j < opl.count; j++) {
4119 r = get_pointer_64(p, offset, left, S, info);
4120 if (r == nullptr)
4121 return;
4122 memset(&op, '\0', sizeof(struct objc_property64));
4123 if (left < sizeof(struct objc_property64)) {
4124 memcpy(&op, r, left);
4125 outs() << " (objc_property entends past the end of the section)\n";
4126 } else
4127 memcpy(&op, r, sizeof(struct objc_property64));
4128 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4129 swapStruct(op);
4130
4131 outs() << "\t\t\t name ";
4132 sym_name = get_symbol_64(offset + offsetof(struct objc_property64, name), S,
4133 info, n_value, op.name);
4134 if (n_value != 0) {
4135 if (info->verbose && sym_name != nullptr)
4136 outs() << sym_name;
4137 else
4138 outs() << format("0x%" PRIx64, n_value);
4139 if (op.name != 0)
4140 outs() << " + " << format("0x%" PRIx64, op.name);
4141 } else
4142 outs() << format("0x%" PRIx64, op.name);
4143 name = get_pointer_64(op.name + n_value, xoffset, left, xS, info);
4144 if (name != nullptr)
4145 outs() << format(" %.*s", left, name);
4146 outs() << "\n";
4147
4148 outs() << "\t\t\tattributes ";
4149 sym_name =
4150 get_symbol_64(offset + offsetof(struct objc_property64, attributes), S,
4151 info, n_value, op.attributes);
4152 if (n_value != 0) {
4153 if (info->verbose && sym_name != nullptr)
4154 outs() << sym_name;
4155 else
4156 outs() << format("0x%" PRIx64, n_value);
4157 if (op.attributes != 0)
4158 outs() << " + " << format("0x%" PRIx64, op.attributes);
4159 } else
4160 outs() << format("0x%" PRIx64, op.attributes);
4161 name = get_pointer_64(op.attributes + n_value, xoffset, left, xS, info);
4162 if (name != nullptr)
4163 outs() << format(" %.*s", left, name);
4164 outs() << "\n";
4165
4166 p += sizeof(struct objc_property64);
4167 offset += sizeof(struct objc_property64);
4168 }
4169}
4170
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004171static void print_objc_property_list32(uint32_t p,
4172 struct DisassembleInfo *info) {
4173 struct objc_property_list32 opl;
4174 struct objc_property32 op;
4175 const char *r;
4176 uint32_t offset, xoffset, left, j;
4177 SectionRef S, xS;
4178 const char *name;
4179
4180 r = get_pointer_32(p, offset, left, S, info);
4181 if (r == nullptr)
4182 return;
4183 memset(&opl, '\0', sizeof(struct objc_property_list32));
4184 if (left < sizeof(struct objc_property_list32)) {
4185 memcpy(&opl, r, left);
4186 outs() << " (objc_property_list entends past the end of the section)\n";
4187 } else
4188 memcpy(&opl, r, sizeof(struct objc_property_list32));
4189 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4190 swapStruct(opl);
4191 outs() << " entsize " << opl.entsize << "\n";
4192 outs() << " count " << opl.count << "\n";
4193
4194 p += sizeof(struct objc_property_list32);
4195 offset += sizeof(struct objc_property_list32);
4196 for (j = 0; j < opl.count; j++) {
4197 r = get_pointer_32(p, offset, left, S, info);
4198 if (r == nullptr)
4199 return;
4200 memset(&op, '\0', sizeof(struct objc_property32));
4201 if (left < sizeof(struct objc_property32)) {
4202 memcpy(&op, r, left);
4203 outs() << " (objc_property entends past the end of the section)\n";
4204 } else
4205 memcpy(&op, r, sizeof(struct objc_property32));
4206 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4207 swapStruct(op);
4208
4209 outs() << "\t\t\t name " << format("0x%" PRIx32, op.name);
4210 name = get_pointer_32(op.name, xoffset, left, xS, info);
4211 if (name != nullptr)
4212 outs() << format(" %.*s", left, name);
4213 outs() << "\n";
4214
4215 outs() << "\t\t\tattributes " << format("0x%" PRIx32, op.attributes);
4216 name = get_pointer_32(op.attributes, xoffset, left, xS, info);
4217 if (name != nullptr)
4218 outs() << format(" %.*s", left, name);
4219 outs() << "\n";
4220
4221 p += sizeof(struct objc_property32);
4222 offset += sizeof(struct objc_property32);
4223 }
4224}
4225
Richard Smith81ff44d2015-10-09 22:09:56 +00004226static bool print_class_ro64_t(uint64_t p, struct DisassembleInfo *info,
Kevin Enderby0fc11822015-04-01 20:57:01 +00004227 bool &is_meta_class) {
4228 struct class_ro64_t cro;
4229 const char *r;
4230 uint32_t offset, xoffset, left;
4231 SectionRef S, xS;
4232 const char *name, *sym_name;
4233 uint64_t n_value;
4234
4235 r = get_pointer_64(p, offset, left, S, info);
4236 if (r == nullptr || left < sizeof(struct class_ro64_t))
Richard Smith81ff44d2015-10-09 22:09:56 +00004237 return false;
Kevin Enderby0fc11822015-04-01 20:57:01 +00004238 memset(&cro, '\0', sizeof(struct class_ro64_t));
4239 if (left < sizeof(struct class_ro64_t)) {
4240 memcpy(&cro, r, left);
4241 outs() << " (class_ro_t entends past the end of the section)\n";
4242 } else
4243 memcpy(&cro, r, sizeof(struct class_ro64_t));
4244 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4245 swapStruct(cro);
4246 outs() << " flags " << format("0x%" PRIx32, cro.flags);
4247 if (cro.flags & RO_META)
4248 outs() << " RO_META";
4249 if (cro.flags & RO_ROOT)
4250 outs() << " RO_ROOT";
4251 if (cro.flags & RO_HAS_CXX_STRUCTORS)
4252 outs() << " RO_HAS_CXX_STRUCTORS";
4253 outs() << "\n";
4254 outs() << " instanceStart " << cro.instanceStart << "\n";
4255 outs() << " instanceSize " << cro.instanceSize << "\n";
4256 outs() << " reserved " << format("0x%" PRIx32, cro.reserved)
4257 << "\n";
4258 outs() << " ivarLayout " << format("0x%" PRIx64, cro.ivarLayout)
4259 << "\n";
4260 print_layout_map64(cro.ivarLayout, info);
4261
4262 outs() << " name ";
4263 sym_name = get_symbol_64(offset + offsetof(struct class_ro64_t, name), S,
4264 info, n_value, cro.name);
4265 if (n_value != 0) {
4266 if (info->verbose && sym_name != nullptr)
4267 outs() << sym_name;
4268 else
4269 outs() << format("0x%" PRIx64, n_value);
4270 if (cro.name != 0)
4271 outs() << " + " << format("0x%" PRIx64, cro.name);
4272 } else
4273 outs() << format("0x%" PRIx64, cro.name);
4274 name = get_pointer_64(cro.name + n_value, xoffset, left, xS, info);
4275 if (name != nullptr)
4276 outs() << format(" %.*s", left, name);
4277 outs() << "\n";
4278
4279 outs() << " baseMethods ";
4280 sym_name = get_symbol_64(offset + offsetof(struct class_ro64_t, baseMethods),
4281 S, info, n_value, cro.baseMethods);
4282 if (n_value != 0) {
4283 if (info->verbose && sym_name != nullptr)
4284 outs() << sym_name;
4285 else
4286 outs() << format("0x%" PRIx64, n_value);
4287 if (cro.baseMethods != 0)
4288 outs() << " + " << format("0x%" PRIx64, cro.baseMethods);
4289 } else
4290 outs() << format("0x%" PRIx64, cro.baseMethods);
4291 outs() << " (struct method_list_t *)\n";
4292 if (cro.baseMethods + n_value != 0)
4293 print_method_list64_t(cro.baseMethods + n_value, info, "");
4294
4295 outs() << " baseProtocols ";
4296 sym_name =
4297 get_symbol_64(offset + offsetof(struct class_ro64_t, baseProtocols), S,
4298 info, n_value, cro.baseProtocols);
4299 if (n_value != 0) {
4300 if (info->verbose && sym_name != nullptr)
4301 outs() << sym_name;
4302 else
4303 outs() << format("0x%" PRIx64, n_value);
4304 if (cro.baseProtocols != 0)
4305 outs() << " + " << format("0x%" PRIx64, cro.baseProtocols);
4306 } else
4307 outs() << format("0x%" PRIx64, cro.baseProtocols);
4308 outs() << "\n";
4309 if (cro.baseProtocols + n_value != 0)
4310 print_protocol_list64_t(cro.baseProtocols + n_value, info);
4311
4312 outs() << " ivars ";
4313 sym_name = get_symbol_64(offset + offsetof(struct class_ro64_t, ivars), S,
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004314 info, n_value, cro.ivars);
Kevin Enderby0fc11822015-04-01 20:57:01 +00004315 if (n_value != 0) {
4316 if (info->verbose && sym_name != nullptr)
4317 outs() << sym_name;
4318 else
4319 outs() << format("0x%" PRIx64, n_value);
4320 if (cro.ivars != 0)
4321 outs() << " + " << format("0x%" PRIx64, cro.ivars);
4322 } else
4323 outs() << format("0x%" PRIx64, cro.ivars);
4324 outs() << "\n";
4325 if (cro.ivars + n_value != 0)
4326 print_ivar_list64_t(cro.ivars + n_value, info);
4327
4328 outs() << " weakIvarLayout ";
4329 sym_name =
4330 get_symbol_64(offset + offsetof(struct class_ro64_t, weakIvarLayout), S,
4331 info, n_value, cro.weakIvarLayout);
4332 if (n_value != 0) {
4333 if (info->verbose && sym_name != nullptr)
4334 outs() << sym_name;
4335 else
4336 outs() << format("0x%" PRIx64, n_value);
4337 if (cro.weakIvarLayout != 0)
4338 outs() << " + " << format("0x%" PRIx64, cro.weakIvarLayout);
4339 } else
4340 outs() << format("0x%" PRIx64, cro.weakIvarLayout);
4341 outs() << "\n";
4342 print_layout_map64(cro.weakIvarLayout + n_value, info);
4343
4344 outs() << " baseProperties ";
4345 sym_name =
4346 get_symbol_64(offset + offsetof(struct class_ro64_t, baseProperties), S,
4347 info, n_value, cro.baseProperties);
4348 if (n_value != 0) {
4349 if (info->verbose && sym_name != nullptr)
4350 outs() << sym_name;
4351 else
4352 outs() << format("0x%" PRIx64, n_value);
4353 if (cro.baseProperties != 0)
4354 outs() << " + " << format("0x%" PRIx64, cro.baseProperties);
4355 } else
4356 outs() << format("0x%" PRIx64, cro.baseProperties);
4357 outs() << "\n";
4358 if (cro.baseProperties + n_value != 0)
4359 print_objc_property_list64(cro.baseProperties + n_value, info);
4360
Rafael Espindolab9091322015-10-24 23:19:10 +00004361 is_meta_class = (cro.flags & RO_META) != 0;
Richard Smith81ff44d2015-10-09 22:09:56 +00004362 return true;
Kevin Enderby0fc11822015-04-01 20:57:01 +00004363}
4364
Richard Smith81ff44d2015-10-09 22:09:56 +00004365static bool print_class_ro32_t(uint32_t p, struct DisassembleInfo *info,
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004366 bool &is_meta_class) {
4367 struct class_ro32_t cro;
4368 const char *r;
4369 uint32_t offset, xoffset, left;
4370 SectionRef S, xS;
4371 const char *name;
4372
4373 r = get_pointer_32(p, offset, left, S, info);
4374 if (r == nullptr)
Richard Smith81ff44d2015-10-09 22:09:56 +00004375 return false;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004376 memset(&cro, '\0', sizeof(struct class_ro32_t));
4377 if (left < sizeof(struct class_ro32_t)) {
4378 memcpy(&cro, r, left);
4379 outs() << " (class_ro_t entends past the end of the section)\n";
4380 } else
4381 memcpy(&cro, r, sizeof(struct class_ro32_t));
4382 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4383 swapStruct(cro);
4384 outs() << " flags " << format("0x%" PRIx32, cro.flags);
4385 if (cro.flags & RO_META)
4386 outs() << " RO_META";
4387 if (cro.flags & RO_ROOT)
4388 outs() << " RO_ROOT";
4389 if (cro.flags & RO_HAS_CXX_STRUCTORS)
4390 outs() << " RO_HAS_CXX_STRUCTORS";
4391 outs() << "\n";
4392 outs() << " instanceStart " << cro.instanceStart << "\n";
4393 outs() << " instanceSize " << cro.instanceSize << "\n";
4394 outs() << " ivarLayout " << format("0x%" PRIx32, cro.ivarLayout)
4395 << "\n";
4396 print_layout_map32(cro.ivarLayout, info);
4397
4398 outs() << " name " << format("0x%" PRIx32, cro.name);
4399 name = get_pointer_32(cro.name, xoffset, left, xS, info);
4400 if (name != nullptr)
4401 outs() << format(" %.*s", left, name);
4402 outs() << "\n";
4403
4404 outs() << " baseMethods "
4405 << format("0x%" PRIx32, cro.baseMethods)
4406 << " (struct method_list_t *)\n";
4407 if (cro.baseMethods != 0)
4408 print_method_list32_t(cro.baseMethods, info, "");
4409
4410 outs() << " baseProtocols "
4411 << format("0x%" PRIx32, cro.baseProtocols) << "\n";
4412 if (cro.baseProtocols != 0)
4413 print_protocol_list32_t(cro.baseProtocols, info);
4414 outs() << " ivars " << format("0x%" PRIx32, cro.ivars)
4415 << "\n";
4416 if (cro.ivars != 0)
4417 print_ivar_list32_t(cro.ivars, info);
4418 outs() << " weakIvarLayout "
4419 << format("0x%" PRIx32, cro.weakIvarLayout) << "\n";
4420 print_layout_map32(cro.weakIvarLayout, info);
4421 outs() << " baseProperties "
4422 << format("0x%" PRIx32, cro.baseProperties) << "\n";
4423 if (cro.baseProperties != 0)
4424 print_objc_property_list32(cro.baseProperties, info);
Rafael Espindolab9091322015-10-24 23:19:10 +00004425 is_meta_class = (cro.flags & RO_META) != 0;
Richard Smith81ff44d2015-10-09 22:09:56 +00004426 return true;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004427}
4428
Kevin Enderby0fc11822015-04-01 20:57:01 +00004429static void print_class64_t(uint64_t p, struct DisassembleInfo *info) {
4430 struct class64_t c;
4431 const char *r;
4432 uint32_t offset, left;
4433 SectionRef S;
4434 const char *name;
4435 uint64_t isa_n_value, n_value;
4436
4437 r = get_pointer_64(p, offset, left, S, info);
4438 if (r == nullptr || left < sizeof(struct class64_t))
4439 return;
4440 memset(&c, '\0', sizeof(struct class64_t));
4441 if (left < sizeof(struct class64_t)) {
4442 memcpy(&c, r, left);
4443 outs() << " (class_t entends past the end of the section)\n";
4444 } else
4445 memcpy(&c, r, sizeof(struct class64_t));
4446 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4447 swapStruct(c);
4448
4449 outs() << " isa " << format("0x%" PRIx64, c.isa);
4450 name = get_symbol_64(offset + offsetof(struct class64_t, isa), S, info,
4451 isa_n_value, c.isa);
4452 if (name != nullptr)
4453 outs() << " " << name;
4454 outs() << "\n";
4455
4456 outs() << " superclass " << format("0x%" PRIx64, c.superclass);
4457 name = get_symbol_64(offset + offsetof(struct class64_t, superclass), S, info,
4458 n_value, c.superclass);
4459 if (name != nullptr)
4460 outs() << " " << name;
4461 outs() << "\n";
4462
4463 outs() << " cache " << format("0x%" PRIx64, c.cache);
4464 name = get_symbol_64(offset + offsetof(struct class64_t, cache), S, info,
4465 n_value, c.cache);
4466 if (name != nullptr)
4467 outs() << " " << name;
4468 outs() << "\n";
4469
4470 outs() << " vtable " << format("0x%" PRIx64, c.vtable);
4471 name = get_symbol_64(offset + offsetof(struct class64_t, vtable), S, info,
4472 n_value, c.vtable);
4473 if (name != nullptr)
4474 outs() << " " << name;
4475 outs() << "\n";
4476
4477 name = get_symbol_64(offset + offsetof(struct class64_t, data), S, info,
4478 n_value, c.data);
4479 outs() << " data ";
4480 if (n_value != 0) {
4481 if (info->verbose && name != nullptr)
4482 outs() << name;
4483 else
4484 outs() << format("0x%" PRIx64, n_value);
4485 if (c.data != 0)
4486 outs() << " + " << format("0x%" PRIx64, c.data);
4487 } else
4488 outs() << format("0x%" PRIx64, c.data);
4489 outs() << " (struct class_ro_t *)";
4490
4491 // This is a Swift class if some of the low bits of the pointer are set.
4492 if ((c.data + n_value) & 0x7)
4493 outs() << " Swift class";
4494 outs() << "\n";
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004495 bool is_meta_class;
Richard Smith81ff44d2015-10-09 22:09:56 +00004496 if (!print_class_ro64_t((c.data + n_value) & ~0x7, info, is_meta_class))
4497 return;
Kevin Enderby0fc11822015-04-01 20:57:01 +00004498
Kevin Enderbyaac75382015-10-08 16:56:35 +00004499 if (!is_meta_class &&
4500 c.isa + isa_n_value != p &&
4501 c.isa + isa_n_value != 0 &&
4502 info->depth < 100) {
4503 info->depth++;
4504 outs() << "Meta Class\n";
4505 print_class64_t(c.isa + isa_n_value, info);
Kevin Enderby0fc11822015-04-01 20:57:01 +00004506 }
4507}
4508
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004509static void print_class32_t(uint32_t p, struct DisassembleInfo *info) {
4510 struct class32_t c;
4511 const char *r;
4512 uint32_t offset, left;
4513 SectionRef S;
4514 const char *name;
4515
4516 r = get_pointer_32(p, offset, left, S, info);
4517 if (r == nullptr)
4518 return;
4519 memset(&c, '\0', sizeof(struct class32_t));
4520 if (left < sizeof(struct class32_t)) {
4521 memcpy(&c, r, left);
4522 outs() << " (class_t entends past the end of the section)\n";
4523 } else
4524 memcpy(&c, r, sizeof(struct class32_t));
4525 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4526 swapStruct(c);
4527
4528 outs() << " isa " << format("0x%" PRIx32, c.isa);
4529 name =
4530 get_symbol_32(offset + offsetof(struct class32_t, isa), S, info, c.isa);
4531 if (name != nullptr)
4532 outs() << " " << name;
4533 outs() << "\n";
4534
4535 outs() << " superclass " << format("0x%" PRIx32, c.superclass);
4536 name = get_symbol_32(offset + offsetof(struct class32_t, superclass), S, info,
4537 c.superclass);
4538 if (name != nullptr)
4539 outs() << " " << name;
4540 outs() << "\n";
4541
4542 outs() << " cache " << format("0x%" PRIx32, c.cache);
4543 name = get_symbol_32(offset + offsetof(struct class32_t, cache), S, info,
4544 c.cache);
4545 if (name != nullptr)
4546 outs() << " " << name;
4547 outs() << "\n";
4548
4549 outs() << " vtable " << format("0x%" PRIx32, c.vtable);
4550 name = get_symbol_32(offset + offsetof(struct class32_t, vtable), S, info,
4551 c.vtable);
4552 if (name != nullptr)
4553 outs() << " " << name;
4554 outs() << "\n";
4555
4556 name =
4557 get_symbol_32(offset + offsetof(struct class32_t, data), S, info, c.data);
4558 outs() << " data " << format("0x%" PRIx32, c.data)
4559 << " (struct class_ro_t *)";
4560
4561 // This is a Swift class if some of the low bits of the pointer are set.
4562 if (c.data & 0x3)
4563 outs() << " Swift class";
4564 outs() << "\n";
4565 bool is_meta_class;
Richard Smith81ff44d2015-10-09 22:09:56 +00004566 if (!print_class_ro32_t(c.data & ~0x3, info, is_meta_class))
4567 return;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004568
Hans Wennborgcc9deb42015-09-29 18:02:48 +00004569 if (!is_meta_class) {
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004570 outs() << "Meta Class\n";
4571 print_class32_t(c.isa, info);
4572 }
4573}
4574
Kevin Enderby846c0002015-04-16 17:19:59 +00004575static void print_objc_class_t(struct objc_class_t *objc_class,
4576 struct DisassembleInfo *info) {
4577 uint32_t offset, left, xleft;
4578 const char *name, *p, *ivar_list;
4579 SectionRef S;
4580 int32_t i;
4581 struct objc_ivar_list_t objc_ivar_list;
4582 struct objc_ivar_t ivar;
4583
4584 outs() << "\t\t isa " << format("0x%08" PRIx32, objc_class->isa);
4585 if (info->verbose && CLS_GETINFO(objc_class, CLS_META)) {
4586 name = get_pointer_32(objc_class->isa, offset, left, S, info, true);
4587 if (name != nullptr)
4588 outs() << format(" %.*s", left, name);
4589 else
4590 outs() << " (not in an __OBJC section)";
4591 }
4592 outs() << "\n";
4593
4594 outs() << "\t super_class "
4595 << format("0x%08" PRIx32, objc_class->super_class);
4596 if (info->verbose) {
4597 name = get_pointer_32(objc_class->super_class, offset, left, S, info, true);
4598 if (name != nullptr)
4599 outs() << format(" %.*s", left, name);
4600 else
4601 outs() << " (not in an __OBJC section)";
4602 }
4603 outs() << "\n";
4604
4605 outs() << "\t\t name " << format("0x%08" PRIx32, objc_class->name);
4606 if (info->verbose) {
4607 name = get_pointer_32(objc_class->name, offset, left, S, info, true);
4608 if (name != nullptr)
4609 outs() << format(" %.*s", left, name);
4610 else
4611 outs() << " (not in an __OBJC section)";
4612 }
4613 outs() << "\n";
4614
4615 outs() << "\t\t version " << format("0x%08" PRIx32, objc_class->version)
4616 << "\n";
4617
4618 outs() << "\t\t info " << format("0x%08" PRIx32, objc_class->info);
4619 if (info->verbose) {
4620 if (CLS_GETINFO(objc_class, CLS_CLASS))
4621 outs() << " CLS_CLASS";
4622 else if (CLS_GETINFO(objc_class, CLS_META))
4623 outs() << " CLS_META";
4624 }
4625 outs() << "\n";
4626
4627 outs() << "\t instance_size "
4628 << format("0x%08" PRIx32, objc_class->instance_size) << "\n";
4629
4630 p = get_pointer_32(objc_class->ivars, offset, left, S, info, true);
4631 outs() << "\t\t ivars " << format("0x%08" PRIx32, objc_class->ivars);
4632 if (p != nullptr) {
4633 if (left > sizeof(struct objc_ivar_list_t)) {
4634 outs() << "\n";
4635 memcpy(&objc_ivar_list, p, sizeof(struct objc_ivar_list_t));
4636 } else {
4637 outs() << " (entends past the end of the section)\n";
4638 memset(&objc_ivar_list, '\0', sizeof(struct objc_ivar_list_t));
4639 memcpy(&objc_ivar_list, p, left);
4640 }
4641 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4642 swapStruct(objc_ivar_list);
4643 outs() << "\t\t ivar_count " << objc_ivar_list.ivar_count << "\n";
4644 ivar_list = p + sizeof(struct objc_ivar_list_t);
4645 for (i = 0; i < objc_ivar_list.ivar_count; i++) {
4646 if ((i + 1) * sizeof(struct objc_ivar_t) > left) {
4647 outs() << "\t\t remaining ivar's extend past the of the section\n";
4648 break;
4649 }
4650 memcpy(&ivar, ivar_list + i * sizeof(struct objc_ivar_t),
4651 sizeof(struct objc_ivar_t));
4652 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4653 swapStruct(ivar);
4654
4655 outs() << "\t\t\tivar_name " << format("0x%08" PRIx32, ivar.ivar_name);
4656 if (info->verbose) {
4657 name = get_pointer_32(ivar.ivar_name, offset, xleft, S, info, true);
4658 if (name != nullptr)
4659 outs() << format(" %.*s", xleft, name);
4660 else
4661 outs() << " (not in an __OBJC section)";
4662 }
4663 outs() << "\n";
4664
4665 outs() << "\t\t\tivar_type " << format("0x%08" PRIx32, ivar.ivar_type);
4666 if (info->verbose) {
4667 name = get_pointer_32(ivar.ivar_type, offset, xleft, S, info, true);
4668 if (name != nullptr)
4669 outs() << format(" %.*s", xleft, name);
4670 else
4671 outs() << " (not in an __OBJC section)";
4672 }
4673 outs() << "\n";
4674
4675 outs() << "\t\t ivar_offset "
4676 << format("0x%08" PRIx32, ivar.ivar_offset) << "\n";
4677 }
4678 } else {
4679 outs() << " (not in an __OBJC section)\n";
4680 }
4681
4682 outs() << "\t\t methods " << format("0x%08" PRIx32, objc_class->methodLists);
4683 if (print_method_list(objc_class->methodLists, info))
4684 outs() << " (not in an __OBJC section)\n";
4685
4686 outs() << "\t\t cache " << format("0x%08" PRIx32, objc_class->cache)
4687 << "\n";
4688
4689 outs() << "\t\tprotocols " << format("0x%08" PRIx32, objc_class->protocols);
4690 if (print_protocol_list(objc_class->protocols, 16, info))
4691 outs() << " (not in an __OBJC section)\n";
4692}
4693
4694static void print_objc_objc_category_t(struct objc_category_t *objc_category,
4695 struct DisassembleInfo *info) {
4696 uint32_t offset, left;
4697 const char *name;
4698 SectionRef S;
4699
4700 outs() << "\t category name "
4701 << format("0x%08" PRIx32, objc_category->category_name);
4702 if (info->verbose) {
4703 name = get_pointer_32(objc_category->category_name, offset, left, S, info,
4704 true);
4705 if (name != nullptr)
4706 outs() << format(" %.*s", left, name);
4707 else
4708 outs() << " (not in an __OBJC section)";
4709 }
4710 outs() << "\n";
4711
4712 outs() << "\t\t class name "
4713 << format("0x%08" PRIx32, objc_category->class_name);
4714 if (info->verbose) {
4715 name =
4716 get_pointer_32(objc_category->class_name, offset, left, S, info, true);
4717 if (name != nullptr)
4718 outs() << format(" %.*s", left, name);
4719 else
4720 outs() << " (not in an __OBJC section)";
4721 }
4722 outs() << "\n";
4723
4724 outs() << "\t instance methods "
4725 << format("0x%08" PRIx32, objc_category->instance_methods);
4726 if (print_method_list(objc_category->instance_methods, info))
4727 outs() << " (not in an __OBJC section)\n";
4728
4729 outs() << "\t class methods "
4730 << format("0x%08" PRIx32, objc_category->class_methods);
4731 if (print_method_list(objc_category->class_methods, info))
4732 outs() << " (not in an __OBJC section)\n";
4733}
4734
Kevin Enderby0fc11822015-04-01 20:57:01 +00004735static void print_category64_t(uint64_t p, struct DisassembleInfo *info) {
4736 struct category64_t c;
4737 const char *r;
4738 uint32_t offset, xoffset, left;
4739 SectionRef S, xS;
4740 const char *name, *sym_name;
4741 uint64_t n_value;
4742
4743 r = get_pointer_64(p, offset, left, S, info);
4744 if (r == nullptr)
4745 return;
4746 memset(&c, '\0', sizeof(struct category64_t));
4747 if (left < sizeof(struct category64_t)) {
4748 memcpy(&c, r, left);
4749 outs() << " (category_t entends past the end of the section)\n";
4750 } else
4751 memcpy(&c, r, sizeof(struct category64_t));
4752 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4753 swapStruct(c);
4754
4755 outs() << " name ";
4756 sym_name = get_symbol_64(offset + offsetof(struct category64_t, name), S,
4757 info, n_value, c.name);
4758 if (n_value != 0) {
4759 if (info->verbose && sym_name != nullptr)
4760 outs() << sym_name;
4761 else
4762 outs() << format("0x%" PRIx64, n_value);
4763 if (c.name != 0)
4764 outs() << " + " << format("0x%" PRIx64, c.name);
4765 } else
4766 outs() << format("0x%" PRIx64, c.name);
4767 name = get_pointer_64(c.name + n_value, xoffset, left, xS, info);
4768 if (name != nullptr)
4769 outs() << format(" %.*s", left, name);
4770 outs() << "\n";
4771
4772 outs() << " cls ";
4773 sym_name = get_symbol_64(offset + offsetof(struct category64_t, cls), S, info,
4774 n_value, c.cls);
4775 if (n_value != 0) {
4776 if (info->verbose && sym_name != nullptr)
4777 outs() << sym_name;
4778 else
4779 outs() << format("0x%" PRIx64, n_value);
4780 if (c.cls != 0)
4781 outs() << " + " << format("0x%" PRIx64, c.cls);
4782 } else
4783 outs() << format("0x%" PRIx64, c.cls);
4784 outs() << "\n";
4785 if (c.cls + n_value != 0)
4786 print_class64_t(c.cls + n_value, info);
4787
4788 outs() << " instanceMethods ";
4789 sym_name =
4790 get_symbol_64(offset + offsetof(struct category64_t, instanceMethods), S,
4791 info, n_value, c.instanceMethods);
4792 if (n_value != 0) {
4793 if (info->verbose && sym_name != nullptr)
4794 outs() << sym_name;
4795 else
4796 outs() << format("0x%" PRIx64, n_value);
4797 if (c.instanceMethods != 0)
4798 outs() << " + " << format("0x%" PRIx64, c.instanceMethods);
4799 } else
4800 outs() << format("0x%" PRIx64, c.instanceMethods);
4801 outs() << "\n";
4802 if (c.instanceMethods + n_value != 0)
4803 print_method_list64_t(c.instanceMethods + n_value, info, "");
4804
4805 outs() << " classMethods ";
4806 sym_name = get_symbol_64(offset + offsetof(struct category64_t, classMethods),
4807 S, info, n_value, c.classMethods);
4808 if (n_value != 0) {
4809 if (info->verbose && sym_name != nullptr)
4810 outs() << sym_name;
4811 else
4812 outs() << format("0x%" PRIx64, n_value);
4813 if (c.classMethods != 0)
4814 outs() << " + " << format("0x%" PRIx64, c.classMethods);
4815 } else
4816 outs() << format("0x%" PRIx64, c.classMethods);
4817 outs() << "\n";
4818 if (c.classMethods + n_value != 0)
4819 print_method_list64_t(c.classMethods + n_value, info, "");
4820
4821 outs() << " protocols ";
4822 sym_name = get_symbol_64(offset + offsetof(struct category64_t, protocols), S,
4823 info, n_value, c.protocols);
4824 if (n_value != 0) {
4825 if (info->verbose && sym_name != nullptr)
4826 outs() << sym_name;
4827 else
4828 outs() << format("0x%" PRIx64, n_value);
4829 if (c.protocols != 0)
4830 outs() << " + " << format("0x%" PRIx64, c.protocols);
4831 } else
4832 outs() << format("0x%" PRIx64, c.protocols);
4833 outs() << "\n";
4834 if (c.protocols + n_value != 0)
4835 print_protocol_list64_t(c.protocols + n_value, info);
4836
4837 outs() << "instanceProperties ";
4838 sym_name =
4839 get_symbol_64(offset + offsetof(struct category64_t, instanceProperties),
4840 S, info, n_value, c.instanceProperties);
4841 if (n_value != 0) {
4842 if (info->verbose && sym_name != nullptr)
4843 outs() << sym_name;
4844 else
4845 outs() << format("0x%" PRIx64, n_value);
4846 if (c.instanceProperties != 0)
4847 outs() << " + " << format("0x%" PRIx64, c.instanceProperties);
4848 } else
4849 outs() << format("0x%" PRIx64, c.instanceProperties);
4850 outs() << "\n";
4851 if (c.instanceProperties + n_value != 0)
4852 print_objc_property_list64(c.instanceProperties + n_value, info);
4853}
4854
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004855static void print_category32_t(uint32_t p, struct DisassembleInfo *info) {
4856 struct category32_t c;
4857 const char *r;
4858 uint32_t offset, left;
4859 SectionRef S, xS;
4860 const char *name;
4861
4862 r = get_pointer_32(p, offset, left, S, info);
4863 if (r == nullptr)
4864 return;
4865 memset(&c, '\0', sizeof(struct category32_t));
4866 if (left < sizeof(struct category32_t)) {
4867 memcpy(&c, r, left);
4868 outs() << " (category_t entends past the end of the section)\n";
4869 } else
4870 memcpy(&c, r, sizeof(struct category32_t));
4871 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4872 swapStruct(c);
4873
4874 outs() << " name " << format("0x%" PRIx32, c.name);
4875 name = get_symbol_32(offset + offsetof(struct category32_t, name), S, info,
4876 c.name);
Hans Wennborgcc9deb42015-09-29 18:02:48 +00004877 if (name)
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004878 outs() << " " << name;
4879 outs() << "\n";
4880
4881 outs() << " cls " << format("0x%" PRIx32, c.cls) << "\n";
4882 if (c.cls != 0)
4883 print_class32_t(c.cls, info);
4884 outs() << " instanceMethods " << format("0x%" PRIx32, c.instanceMethods)
4885 << "\n";
4886 if (c.instanceMethods != 0)
4887 print_method_list32_t(c.instanceMethods, info, "");
4888 outs() << " classMethods " << format("0x%" PRIx32, c.classMethods)
4889 << "\n";
4890 if (c.classMethods != 0)
4891 print_method_list32_t(c.classMethods, info, "");
4892 outs() << " protocols " << format("0x%" PRIx32, c.protocols) << "\n";
4893 if (c.protocols != 0)
4894 print_protocol_list32_t(c.protocols, info);
4895 outs() << "instanceProperties " << format("0x%" PRIx32, c.instanceProperties)
4896 << "\n";
4897 if (c.instanceProperties != 0)
4898 print_objc_property_list32(c.instanceProperties, info);
4899}
4900
Kevin Enderby0fc11822015-04-01 20:57:01 +00004901static void print_message_refs64(SectionRef S, struct DisassembleInfo *info) {
4902 uint32_t i, left, offset, xoffset;
4903 uint64_t p, n_value;
4904 struct message_ref64 mr;
4905 const char *name, *sym_name;
4906 const char *r;
4907 SectionRef xS;
4908
4909 if (S == SectionRef())
4910 return;
4911
4912 StringRef SectName;
4913 S.getName(SectName);
4914 DataRefImpl Ref = S.getRawDataRefImpl();
4915 StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
4916 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
4917 offset = 0;
4918 for (i = 0; i < S.getSize(); i += sizeof(struct message_ref64)) {
4919 p = S.getAddress() + i;
4920 r = get_pointer_64(p, offset, left, S, info);
4921 if (r == nullptr)
4922 return;
4923 memset(&mr, '\0', sizeof(struct message_ref64));
4924 if (left < sizeof(struct message_ref64)) {
4925 memcpy(&mr, r, left);
4926 outs() << " (message_ref entends past the end of the section)\n";
4927 } else
4928 memcpy(&mr, r, sizeof(struct message_ref64));
4929 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4930 swapStruct(mr);
4931
4932 outs() << " imp ";
4933 name = get_symbol_64(offset + offsetof(struct message_ref64, imp), S, info,
4934 n_value, mr.imp);
4935 if (n_value != 0) {
4936 outs() << format("0x%" PRIx64, n_value) << " ";
4937 if (mr.imp != 0)
4938 outs() << "+ " << format("0x%" PRIx64, mr.imp) << " ";
4939 } else
4940 outs() << format("0x%" PRIx64, mr.imp) << " ";
4941 if (name != nullptr)
4942 outs() << " " << name;
4943 outs() << "\n";
4944
4945 outs() << " sel ";
4946 sym_name = get_symbol_64(offset + offsetof(struct message_ref64, sel), S,
4947 info, n_value, mr.sel);
4948 if (n_value != 0) {
4949 if (info->verbose && sym_name != nullptr)
4950 outs() << sym_name;
4951 else
4952 outs() << format("0x%" PRIx64, n_value);
4953 if (mr.sel != 0)
4954 outs() << " + " << format("0x%" PRIx64, mr.sel);
4955 } else
4956 outs() << format("0x%" PRIx64, mr.sel);
4957 name = get_pointer_64(mr.sel + n_value, xoffset, left, xS, info);
4958 if (name != nullptr)
4959 outs() << format(" %.*s", left, name);
4960 outs() << "\n";
4961
4962 offset += sizeof(struct message_ref64);
4963 }
4964}
4965
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004966static void print_message_refs32(SectionRef S, struct DisassembleInfo *info) {
4967 uint32_t i, left, offset, xoffset, p;
4968 struct message_ref32 mr;
4969 const char *name, *r;
4970 SectionRef xS;
4971
4972 if (S == SectionRef())
4973 return;
4974
4975 StringRef SectName;
4976 S.getName(SectName);
4977 DataRefImpl Ref = S.getRawDataRefImpl();
4978 StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
4979 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
4980 offset = 0;
4981 for (i = 0; i < S.getSize(); i += sizeof(struct message_ref64)) {
4982 p = S.getAddress() + i;
4983 r = get_pointer_32(p, offset, left, S, info);
4984 if (r == nullptr)
4985 return;
4986 memset(&mr, '\0', sizeof(struct message_ref32));
4987 if (left < sizeof(struct message_ref32)) {
4988 memcpy(&mr, r, left);
4989 outs() << " (message_ref entends past the end of the section)\n";
4990 } else
4991 memcpy(&mr, r, sizeof(struct message_ref32));
4992 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4993 swapStruct(mr);
4994
4995 outs() << " imp " << format("0x%" PRIx32, mr.imp);
4996 name = get_symbol_32(offset + offsetof(struct message_ref32, imp), S, info,
4997 mr.imp);
4998 if (name != nullptr)
4999 outs() << " " << name;
5000 outs() << "\n";
5001
5002 outs() << " sel " << format("0x%" PRIx32, mr.sel);
5003 name = get_pointer_32(mr.sel, xoffset, left, xS, info);
5004 if (name != nullptr)
5005 outs() << " " << name;
5006 outs() << "\n";
5007
5008 offset += sizeof(struct message_ref32);
5009 }
5010}
5011
Kevin Enderby0fc11822015-04-01 20:57:01 +00005012static void print_image_info64(SectionRef S, struct DisassembleInfo *info) {
5013 uint32_t left, offset, swift_version;
5014 uint64_t p;
5015 struct objc_image_info64 o;
5016 const char *r;
5017
Kevin Enderbyaf7c9d02015-10-09 16:48:44 +00005018 if (S == SectionRef())
5019 return;
5020
Kevin Enderby0fc11822015-04-01 20:57:01 +00005021 StringRef SectName;
5022 S.getName(SectName);
5023 DataRefImpl Ref = S.getRawDataRefImpl();
5024 StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
5025 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5026 p = S.getAddress();
5027 r = get_pointer_64(p, offset, left, S, info);
5028 if (r == nullptr)
5029 return;
5030 memset(&o, '\0', sizeof(struct objc_image_info64));
5031 if (left < sizeof(struct objc_image_info64)) {
5032 memcpy(&o, r, left);
5033 outs() << " (objc_image_info entends past the end of the section)\n";
5034 } else
5035 memcpy(&o, r, sizeof(struct objc_image_info64));
5036 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
5037 swapStruct(o);
5038 outs() << " version " << o.version << "\n";
5039 outs() << " flags " << format("0x%" PRIx32, o.flags);
5040 if (o.flags & OBJC_IMAGE_IS_REPLACEMENT)
5041 outs() << " OBJC_IMAGE_IS_REPLACEMENT";
5042 if (o.flags & OBJC_IMAGE_SUPPORTS_GC)
5043 outs() << " OBJC_IMAGE_SUPPORTS_GC";
5044 swift_version = (o.flags >> 8) & 0xff;
5045 if (swift_version != 0) {
5046 if (swift_version == 1)
5047 outs() << " Swift 1.0";
5048 else if (swift_version == 2)
5049 outs() << " Swift 1.1";
5050 else
5051 outs() << " unknown future Swift version (" << swift_version << ")";
5052 }
5053 outs() << "\n";
5054}
5055
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00005056static void print_image_info32(SectionRef S, struct DisassembleInfo *info) {
5057 uint32_t left, offset, swift_version, p;
5058 struct objc_image_info32 o;
5059 const char *r;
5060
5061 StringRef SectName;
5062 S.getName(SectName);
5063 DataRefImpl Ref = S.getRawDataRefImpl();
5064 StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
5065 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5066 p = S.getAddress();
5067 r = get_pointer_32(p, offset, left, S, info);
5068 if (r == nullptr)
5069 return;
5070 memset(&o, '\0', sizeof(struct objc_image_info32));
5071 if (left < sizeof(struct objc_image_info32)) {
5072 memcpy(&o, r, left);
5073 outs() << " (objc_image_info entends past the end of the section)\n";
5074 } else
5075 memcpy(&o, r, sizeof(struct objc_image_info32));
5076 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
5077 swapStruct(o);
5078 outs() << " version " << o.version << "\n";
5079 outs() << " flags " << format("0x%" PRIx32, o.flags);
5080 if (o.flags & OBJC_IMAGE_IS_REPLACEMENT)
5081 outs() << " OBJC_IMAGE_IS_REPLACEMENT";
5082 if (o.flags & OBJC_IMAGE_SUPPORTS_GC)
5083 outs() << " OBJC_IMAGE_SUPPORTS_GC";
5084 swift_version = (o.flags >> 8) & 0xff;
5085 if (swift_version != 0) {
5086 if (swift_version == 1)
5087 outs() << " Swift 1.0";
5088 else if (swift_version == 2)
5089 outs() << " Swift 1.1";
5090 else
5091 outs() << " unknown future Swift version (" << swift_version << ")";
5092 }
5093 outs() << "\n";
5094}
5095
Kevin Enderby846c0002015-04-16 17:19:59 +00005096static void print_image_info(SectionRef S, struct DisassembleInfo *info) {
5097 uint32_t left, offset, p;
5098 struct imageInfo_t o;
5099 const char *r;
5100
5101 StringRef SectName;
5102 S.getName(SectName);
5103 DataRefImpl Ref = S.getRawDataRefImpl();
5104 StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
5105 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5106 p = S.getAddress();
5107 r = get_pointer_32(p, offset, left, S, info);
5108 if (r == nullptr)
5109 return;
5110 memset(&o, '\0', sizeof(struct imageInfo_t));
5111 if (left < sizeof(struct imageInfo_t)) {
5112 memcpy(&o, r, left);
5113 outs() << " (imageInfo entends past the end of the section)\n";
5114 } else
5115 memcpy(&o, r, sizeof(struct imageInfo_t));
5116 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
5117 swapStruct(o);
5118 outs() << " version " << o.version << "\n";
5119 outs() << " flags " << format("0x%" PRIx32, o.flags);
5120 if (o.flags & 0x1)
5121 outs() << " F&C";
5122 if (o.flags & 0x2)
5123 outs() << " GC";
5124 if (o.flags & 0x4)
5125 outs() << " GC-only";
5126 else
5127 outs() << " RR";
5128 outs() << "\n";
5129}
5130
Kevin Enderby0fc11822015-04-01 20:57:01 +00005131static void printObjc2_64bit_MetaData(MachOObjectFile *O, bool verbose) {
5132 SymbolAddressMap AddrMap;
5133 if (verbose)
5134 CreateSymbolAddressMap(O, &AddrMap);
5135
5136 std::vector<SectionRef> Sections;
5137 for (const SectionRef &Section : O->sections()) {
5138 StringRef SectName;
5139 Section.getName(SectName);
5140 Sections.push_back(Section);
5141 }
5142
5143 struct DisassembleInfo info;
5144 // Set up the block of info used by the Symbolizer call backs.
5145 info.verbose = verbose;
5146 info.O = O;
5147 info.AddrMap = &AddrMap;
5148 info.Sections = &Sections;
5149 info.class_name = nullptr;
5150 info.selector_name = nullptr;
5151 info.method = nullptr;
5152 info.demangled_name = nullptr;
5153 info.bindtable = nullptr;
5154 info.adrp_addr = 0;
5155 info.adrp_inst = 0;
5156
Kevin Enderbyaac75382015-10-08 16:56:35 +00005157 info.depth = 0;
Davide Italiano62507042015-12-11 22:27:59 +00005158 SectionRef CL = get_section(O, "__OBJC2", "__class_list");
5159 if (CL == SectionRef())
5160 CL = get_section(O, "__DATA", "__objc_classlist");
5161 info.S = CL;
5162 walk_pointer_list_64("class", CL, O, &info, print_class64_t);
Kevin Enderby0fc11822015-04-01 20:57:01 +00005163
Davide Italiano62507042015-12-11 22:27:59 +00005164 SectionRef CR = get_section(O, "__OBJC2", "__class_refs");
5165 if (CR == SectionRef())
5166 CR = get_section(O, "__DATA", "__objc_classrefs");
5167 info.S = CR;
5168 walk_pointer_list_64("class refs", CR, O, &info, nullptr);
Kevin Enderby0fc11822015-04-01 20:57:01 +00005169
Davide Italiano62507042015-12-11 22:27:59 +00005170 SectionRef SR = get_section(O, "__OBJC2", "__super_refs");
5171 if (SR == SectionRef())
5172 SR = get_section(O, "__DATA", "__objc_superrefs");
5173 info.S = SR;
5174 walk_pointer_list_64("super refs", SR, O, &info, nullptr);
Kevin Enderby0fc11822015-04-01 20:57:01 +00005175
Davide Italiano62507042015-12-11 22:27:59 +00005176 SectionRef CA = get_section(O, "__OBJC2", "__category_list");
5177 if (CA == SectionRef())
5178 CA = get_section(O, "__DATA", "__objc_catlist");
5179 info.S = CA;
5180 walk_pointer_list_64("category", CA, O, &info, print_category64_t);
Kevin Enderby0fc11822015-04-01 20:57:01 +00005181
Davide Italiano62507042015-12-11 22:27:59 +00005182 SectionRef PL = get_section(O, "__OBJC2", "__protocol_list");
5183 if (PL == SectionRef())
5184 PL = get_section(O, "__DATA", "__objc_protolist");
5185 info.S = PL;
5186 walk_pointer_list_64("protocol", PL, O, &info, nullptr);
Kevin Enderby0fc11822015-04-01 20:57:01 +00005187
Davide Italiano62507042015-12-11 22:27:59 +00005188 SectionRef MR = get_section(O, "__OBJC2", "__message_refs");
5189 if (MR == SectionRef())
5190 MR = get_section(O, "__DATA", "__objc_msgrefs");
5191 info.S = MR;
5192 print_message_refs64(MR, &info);
Kevin Enderby0fc11822015-04-01 20:57:01 +00005193
Davide Italiano62507042015-12-11 22:27:59 +00005194 SectionRef II = get_section(O, "__OBJC2", "__image_info");
5195 if (II == SectionRef())
5196 II = get_section(O, "__DATA", "__objc_imageinfo");
5197 info.S = II;
5198 print_image_info64(II, &info);
Kevin Enderby0bc6ed42015-04-01 21:50:45 +00005199
5200 if (info.bindtable != nullptr)
5201 delete info.bindtable;
Kevin Enderby0fc11822015-04-01 20:57:01 +00005202}
5203
5204static void printObjc2_32bit_MetaData(MachOObjectFile *O, bool verbose) {
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00005205 SymbolAddressMap AddrMap;
5206 if (verbose)
5207 CreateSymbolAddressMap(O, &AddrMap);
5208
5209 std::vector<SectionRef> Sections;
5210 for (const SectionRef &Section : O->sections()) {
5211 StringRef SectName;
5212 Section.getName(SectName);
5213 Sections.push_back(Section);
5214 }
5215
5216 struct DisassembleInfo info;
5217 // Set up the block of info used by the Symbolizer call backs.
5218 info.verbose = verbose;
5219 info.O = O;
5220 info.AddrMap = &AddrMap;
5221 info.Sections = &Sections;
5222 info.class_name = nullptr;
5223 info.selector_name = nullptr;
5224 info.method = nullptr;
5225 info.demangled_name = nullptr;
5226 info.bindtable = nullptr;
5227 info.adrp_addr = 0;
5228 info.adrp_inst = 0;
5229
5230 const SectionRef CL = get_section(O, "__OBJC2", "__class_list");
5231 if (CL != SectionRef()) {
5232 info.S = CL;
5233 walk_pointer_list_32("class", CL, O, &info, print_class32_t);
5234 } else {
5235 const SectionRef CL = get_section(O, "__DATA", "__objc_classlist");
5236 info.S = CL;
5237 walk_pointer_list_32("class", CL, O, &info, print_class32_t);
5238 }
5239
5240 const SectionRef CR = get_section(O, "__OBJC2", "__class_refs");
5241 if (CR != SectionRef()) {
5242 info.S = CR;
5243 walk_pointer_list_32("class refs", CR, O, &info, nullptr);
5244 } else {
5245 const SectionRef CR = get_section(O, "__DATA", "__objc_classrefs");
5246 info.S = CR;
5247 walk_pointer_list_32("class refs", CR, O, &info, nullptr);
5248 }
5249
5250 const SectionRef SR = get_section(O, "__OBJC2", "__super_refs");
5251 if (SR != SectionRef()) {
5252 info.S = SR;
5253 walk_pointer_list_32("super refs", SR, O, &info, nullptr);
5254 } else {
5255 const SectionRef SR = get_section(O, "__DATA", "__objc_superrefs");
5256 info.S = SR;
5257 walk_pointer_list_32("super refs", SR, O, &info, nullptr);
5258 }
5259
5260 const SectionRef CA = get_section(O, "__OBJC2", "__category_list");
5261 if (CA != SectionRef()) {
5262 info.S = CA;
5263 walk_pointer_list_32("category", CA, O, &info, print_category32_t);
5264 } else {
5265 const SectionRef CA = get_section(O, "__DATA", "__objc_catlist");
5266 info.S = CA;
5267 walk_pointer_list_32("category", CA, O, &info, print_category32_t);
5268 }
5269
5270 const SectionRef PL = get_section(O, "__OBJC2", "__protocol_list");
5271 if (PL != SectionRef()) {
5272 info.S = PL;
5273 walk_pointer_list_32("protocol", PL, O, &info, nullptr);
5274 } else {
5275 const SectionRef PL = get_section(O, "__DATA", "__objc_protolist");
5276 info.S = PL;
5277 walk_pointer_list_32("protocol", PL, O, &info, nullptr);
5278 }
5279
5280 const SectionRef MR = get_section(O, "__OBJC2", "__message_refs");
5281 if (MR != SectionRef()) {
5282 info.S = MR;
5283 print_message_refs32(MR, &info);
5284 } else {
5285 const SectionRef MR = get_section(O, "__DATA", "__objc_msgrefs");
5286 info.S = MR;
5287 print_message_refs32(MR, &info);
5288 }
5289
5290 const SectionRef II = get_section(O, "__OBJC2", "__image_info");
5291 if (II != SectionRef()) {
5292 info.S = II;
5293 print_image_info32(II, &info);
5294 } else {
5295 const SectionRef II = get_section(O, "__DATA", "__objc_imageinfo");
5296 info.S = II;
5297 print_image_info32(II, &info);
5298 }
Kevin Enderby0fc11822015-04-01 20:57:01 +00005299}
5300
5301static bool printObjc1_32bit_MetaData(MachOObjectFile *O, bool verbose) {
Kevin Enderby846c0002015-04-16 17:19:59 +00005302 uint32_t i, j, p, offset, xoffset, left, defs_left, def;
5303 const char *r, *name, *defs;
5304 struct objc_module_t module;
5305 SectionRef S, xS;
5306 struct objc_symtab_t symtab;
5307 struct objc_class_t objc_class;
5308 struct objc_category_t objc_category;
5309
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00005310 outs() << "Objective-C segment\n";
Kevin Enderby846c0002015-04-16 17:19:59 +00005311 S = get_section(O, "__OBJC", "__module_info");
5312 if (S == SectionRef())
5313 return false;
5314
5315 SymbolAddressMap AddrMap;
5316 if (verbose)
5317 CreateSymbolAddressMap(O, &AddrMap);
5318
5319 std::vector<SectionRef> Sections;
5320 for (const SectionRef &Section : O->sections()) {
5321 StringRef SectName;
5322 Section.getName(SectName);
5323 Sections.push_back(Section);
Kevin Enderby0fc11822015-04-01 20:57:01 +00005324 }
Kevin Enderby846c0002015-04-16 17:19:59 +00005325
5326 struct DisassembleInfo info;
5327 // Set up the block of info used by the Symbolizer call backs.
5328 info.verbose = verbose;
5329 info.O = O;
5330 info.AddrMap = &AddrMap;
5331 info.Sections = &Sections;
5332 info.class_name = nullptr;
5333 info.selector_name = nullptr;
5334 info.method = nullptr;
5335 info.demangled_name = nullptr;
5336 info.bindtable = nullptr;
5337 info.adrp_addr = 0;
5338 info.adrp_inst = 0;
5339
5340 for (i = 0; i < S.getSize(); i += sizeof(struct objc_module_t)) {
5341 p = S.getAddress() + i;
5342 r = get_pointer_32(p, offset, left, S, &info, true);
5343 if (r == nullptr)
5344 return true;
5345 memset(&module, '\0', sizeof(struct objc_module_t));
5346 if (left < sizeof(struct objc_module_t)) {
5347 memcpy(&module, r, left);
5348 outs() << " (module extends past end of __module_info section)\n";
5349 } else
5350 memcpy(&module, r, sizeof(struct objc_module_t));
5351 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5352 swapStruct(module);
5353
5354 outs() << "Module " << format("0x%" PRIx32, p) << "\n";
5355 outs() << " version " << module.version << "\n";
5356 outs() << " size " << module.size << "\n";
5357 outs() << " name ";
5358 name = get_pointer_32(module.name, xoffset, left, xS, &info, true);
5359 if (name != nullptr)
5360 outs() << format("%.*s", left, name);
5361 else
5362 outs() << format("0x%08" PRIx32, module.name)
5363 << "(not in an __OBJC section)";
5364 outs() << "\n";
5365
5366 r = get_pointer_32(module.symtab, xoffset, left, xS, &info, true);
5367 if (module.symtab == 0 || r == nullptr) {
5368 outs() << " symtab " << format("0x%08" PRIx32, module.symtab)
5369 << " (not in an __OBJC section)\n";
5370 continue;
5371 }
5372 outs() << " symtab " << format("0x%08" PRIx32, module.symtab) << "\n";
5373 memset(&symtab, '\0', sizeof(struct objc_symtab_t));
5374 defs_left = 0;
5375 defs = nullptr;
5376 if (left < sizeof(struct objc_symtab_t)) {
5377 memcpy(&symtab, r, left);
5378 outs() << "\tsymtab extends past end of an __OBJC section)\n";
5379 } else {
5380 memcpy(&symtab, r, sizeof(struct objc_symtab_t));
5381 if (left > sizeof(struct objc_symtab_t)) {
5382 defs_left = left - sizeof(struct objc_symtab_t);
5383 defs = r + sizeof(struct objc_symtab_t);
5384 }
5385 }
5386 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5387 swapStruct(symtab);
5388
5389 outs() << "\tsel_ref_cnt " << symtab.sel_ref_cnt << "\n";
5390 r = get_pointer_32(symtab.refs, xoffset, left, xS, &info, true);
5391 outs() << "\trefs " << format("0x%08" PRIx32, symtab.refs);
5392 if (r == nullptr)
5393 outs() << " (not in an __OBJC section)";
5394 outs() << "\n";
5395 outs() << "\tcls_def_cnt " << symtab.cls_def_cnt << "\n";
5396 outs() << "\tcat_def_cnt " << symtab.cat_def_cnt << "\n";
5397 if (symtab.cls_def_cnt > 0)
5398 outs() << "\tClass Definitions\n";
5399 for (j = 0; j < symtab.cls_def_cnt; j++) {
5400 if ((j + 1) * sizeof(uint32_t) > defs_left) {
5401 outs() << "\t(remaining class defs entries entends past the end of the "
5402 << "section)\n";
5403 break;
5404 }
5405 memcpy(&def, defs + j * sizeof(uint32_t), sizeof(uint32_t));
5406 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5407 sys::swapByteOrder(def);
5408
5409 r = get_pointer_32(def, xoffset, left, xS, &info, true);
5410 outs() << "\tdefs[" << j << "] " << format("0x%08" PRIx32, def);
5411 if (r != nullptr) {
5412 if (left > sizeof(struct objc_class_t)) {
5413 outs() << "\n";
5414 memcpy(&objc_class, r, sizeof(struct objc_class_t));
5415 } else {
5416 outs() << " (entends past the end of the section)\n";
5417 memset(&objc_class, '\0', sizeof(struct objc_class_t));
5418 memcpy(&objc_class, r, left);
5419 }
5420 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5421 swapStruct(objc_class);
5422 print_objc_class_t(&objc_class, &info);
5423 } else {
5424 outs() << "(not in an __OBJC section)\n";
5425 }
5426
5427 if (CLS_GETINFO(&objc_class, CLS_CLASS)) {
5428 outs() << "\tMeta Class";
5429 r = get_pointer_32(objc_class.isa, xoffset, left, xS, &info, true);
5430 if (r != nullptr) {
5431 if (left > sizeof(struct objc_class_t)) {
5432 outs() << "\n";
5433 memcpy(&objc_class, r, sizeof(struct objc_class_t));
5434 } else {
5435 outs() << " (entends past the end of the section)\n";
5436 memset(&objc_class, '\0', sizeof(struct objc_class_t));
5437 memcpy(&objc_class, r, left);
5438 }
5439 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5440 swapStruct(objc_class);
5441 print_objc_class_t(&objc_class, &info);
5442 } else {
5443 outs() << "(not in an __OBJC section)\n";
5444 }
5445 }
5446 }
5447 if (symtab.cat_def_cnt > 0)
5448 outs() << "\tCategory Definitions\n";
5449 for (j = 0; j < symtab.cat_def_cnt; j++) {
5450 if ((j + symtab.cls_def_cnt + 1) * sizeof(uint32_t) > defs_left) {
5451 outs() << "\t(remaining category defs entries entends past the end of "
5452 << "the section)\n";
5453 break;
5454 }
5455 memcpy(&def, defs + (j + symtab.cls_def_cnt) * sizeof(uint32_t),
5456 sizeof(uint32_t));
5457 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5458 sys::swapByteOrder(def);
5459
5460 r = get_pointer_32(def, xoffset, left, xS, &info, true);
5461 outs() << "\tdefs[" << j + symtab.cls_def_cnt << "] "
5462 << format("0x%08" PRIx32, def);
5463 if (r != nullptr) {
5464 if (left > sizeof(struct objc_category_t)) {
5465 outs() << "\n";
5466 memcpy(&objc_category, r, sizeof(struct objc_category_t));
5467 } else {
5468 outs() << " (entends past the end of the section)\n";
5469 memset(&objc_category, '\0', sizeof(struct objc_category_t));
5470 memcpy(&objc_category, r, left);
5471 }
5472 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5473 swapStruct(objc_category);
5474 print_objc_objc_category_t(&objc_category, &info);
5475 } else {
5476 outs() << "(not in an __OBJC section)\n";
5477 }
5478 }
5479 }
5480 const SectionRef II = get_section(O, "__OBJC", "__image_info");
5481 if (II != SectionRef())
5482 print_image_info(II, &info);
5483
5484 return true;
Kevin Enderby0fc11822015-04-01 20:57:01 +00005485}
5486
Kevin Enderby4ad9bde2015-04-16 22:33:20 +00005487static void DumpProtocolSection(MachOObjectFile *O, const char *sect,
5488 uint32_t size, uint32_t addr) {
5489 SymbolAddressMap AddrMap;
5490 CreateSymbolAddressMap(O, &AddrMap);
5491
5492 std::vector<SectionRef> Sections;
5493 for (const SectionRef &Section : O->sections()) {
5494 StringRef SectName;
5495 Section.getName(SectName);
5496 Sections.push_back(Section);
5497 }
5498
5499 struct DisassembleInfo info;
5500 // Set up the block of info used by the Symbolizer call backs.
5501 info.verbose = true;
5502 info.O = O;
5503 info.AddrMap = &AddrMap;
5504 info.Sections = &Sections;
5505 info.class_name = nullptr;
5506 info.selector_name = nullptr;
5507 info.method = nullptr;
5508 info.demangled_name = nullptr;
5509 info.bindtable = nullptr;
5510 info.adrp_addr = 0;
5511 info.adrp_inst = 0;
5512
5513 const char *p;
5514 struct objc_protocol_t protocol;
5515 uint32_t left, paddr;
5516 for (p = sect; p < sect + size; p += sizeof(struct objc_protocol_t)) {
5517 memset(&protocol, '\0', sizeof(struct objc_protocol_t));
5518 left = size - (p - sect);
5519 if (left < sizeof(struct objc_protocol_t)) {
5520 outs() << "Protocol extends past end of __protocol section\n";
5521 memcpy(&protocol, p, left);
5522 } else
5523 memcpy(&protocol, p, sizeof(struct objc_protocol_t));
5524 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5525 swapStruct(protocol);
5526 paddr = addr + (p - sect);
5527 outs() << "Protocol " << format("0x%" PRIx32, paddr);
5528 if (print_protocol(paddr, 0, &info))
5529 outs() << "(not in an __OBJC section)\n";
5530 }
5531}
5532
Kevin Enderby0fc11822015-04-01 20:57:01 +00005533static void printObjcMetaData(MachOObjectFile *O, bool verbose) {
5534 if (O->is64Bit())
5535 printObjc2_64bit_MetaData(O, verbose);
5536 else {
5537 MachO::mach_header H;
5538 H = O->getHeader();
5539 if (H.cputype == MachO::CPU_TYPE_ARM)
5540 printObjc2_32bit_MetaData(O, verbose);
5541 else {
5542 // This is the 32-bit non-arm cputype case. Which is normally
5543 // the first Objective-C ABI. But it may be the case of a
5544 // binary for the iOS simulator which is the second Objective-C
5545 // ABI. In that case printObjc1_32bit_MetaData() will determine that
5546 // and return false.
Hans Wennborgcc9deb42015-09-29 18:02:48 +00005547 if (!printObjc1_32bit_MetaData(O, verbose))
Kevin Enderby0fc11822015-04-01 20:57:01 +00005548 printObjc2_32bit_MetaData(O, verbose);
5549 }
5550 }
5551}
5552
Kevin Enderbybf246f52014-09-24 23:08:22 +00005553// GuessLiteralPointer returns a string which for the item in the Mach-O file
5554// for the address passed in as ReferenceValue for printing as a comment with
5555// the instruction and also returns the corresponding type of that item
5556// indirectly through ReferenceType.
5557//
5558// If ReferenceValue is an address of literal cstring then a pointer to the
5559// cstring is returned and ReferenceType is set to
5560// LLVMDisassembler_ReferenceType_Out_LitPool_CstrAddr .
5561//
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005562// If ReferenceValue is an address of an Objective-C CFString, Selector ref or
5563// Class ref that name is returned and the ReferenceType is set accordingly.
5564//
5565// Lastly, literals which are Symbol address in a literal pool are looked for
5566// and if found the symbol name is returned and ReferenceType is set to
5567// LLVMDisassembler_ReferenceType_Out_LitPool_SymAddr .
5568//
5569// If there is no item in the Mach-O file for the address passed in as
5570// ReferenceValue nullptr is returned and ReferenceType is unchanged.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00005571static const char *GuessLiteralPointer(uint64_t ReferenceValue,
5572 uint64_t ReferencePC,
5573 uint64_t *ReferenceType,
5574 struct DisassembleInfo *info) {
Kevin Enderbybf246f52014-09-24 23:08:22 +00005575 // First see if there is an external relocation entry at the ReferencePC.
Kevin Enderbyd90a4172015-10-10 00:05:01 +00005576 if (info->O->getHeader().filetype == MachO::MH_OBJECT) {
5577 uint64_t sect_addr = info->S.getAddress();
5578 uint64_t sect_offset = ReferencePC - sect_addr;
5579 bool reloc_found = false;
5580 DataRefImpl Rel;
5581 MachO::any_relocation_info RE;
5582 bool isExtern = false;
5583 SymbolRef Symbol;
5584 for (const RelocationRef &Reloc : info->S.relocations()) {
5585 uint64_t RelocOffset = Reloc.getOffset();
5586 if (RelocOffset == sect_offset) {
5587 Rel = Reloc.getRawDataRefImpl();
5588 RE = info->O->getRelocation(Rel);
5589 if (info->O->isRelocationScattered(RE))
5590 continue;
5591 isExtern = info->O->getPlainRelocationExternal(RE);
5592 if (isExtern) {
5593 symbol_iterator RelocSym = Reloc.getSymbol();
5594 Symbol = *RelocSym;
5595 }
5596 reloc_found = true;
5597 break;
Kevin Enderbybf246f52014-09-24 23:08:22 +00005598 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00005599 }
Kevin Enderbyd90a4172015-10-10 00:05:01 +00005600 // If there is an external relocation entry for a symbol in a section
5601 // then used that symbol's value for the value of the reference.
5602 if (reloc_found && isExtern) {
5603 if (info->O->getAnyRelocationPCRel(RE)) {
5604 unsigned Type = info->O->getAnyRelocationType(RE);
5605 if (Type == MachO::X86_64_RELOC_SIGNED) {
5606 ReferenceValue = Symbol.getValue();
5607 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00005608 }
5609 }
5610 }
5611
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005612 // Look for literals such as Objective-C CFStrings refs, Selector refs,
5613 // Message refs and Class refs.
5614 bool classref, selref, msgref, cfstring;
5615 uint64_t pointer_value = GuessPointerPointer(ReferenceValue, info, classref,
5616 selref, msgref, cfstring);
David Blaikie33dd45d02015-03-23 18:39:02 +00005617 if (classref && pointer_value == 0) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005618 // Note the ReferenceValue is a pointer into the __objc_classrefs section.
5619 // And the pointer_value in that section is typically zero as it will be
5620 // set by dyld as part of the "bind information".
5621 const char *name = get_dyld_bind_info_symbolname(ReferenceValue, info);
5622 if (name != nullptr) {
5623 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Class_Ref;
Hans Wennborgdb53e302014-10-23 21:59:17 +00005624 const char *class_name = strrchr(name, '$');
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005625 if (class_name != nullptr && class_name[1] == '_' &&
5626 class_name[2] != '\0') {
5627 info->class_name = class_name + 2;
5628 return name;
5629 }
5630 }
5631 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00005632
David Blaikie33dd45d02015-03-23 18:39:02 +00005633 if (classref) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005634 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Class_Ref;
5635 const char *name =
5636 get_objc2_64bit_class_name(pointer_value, ReferenceValue, info);
5637 if (name != nullptr)
5638 info->class_name = name;
5639 else
5640 name = "bad class ref";
Kevin Enderbybf246f52014-09-24 23:08:22 +00005641 return name;
5642 }
5643
David Blaikie33dd45d02015-03-23 18:39:02 +00005644 if (cfstring) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005645 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_CFString_Ref;
5646 const char *name = get_objc2_64bit_cfstring_name(ReferenceValue, info);
5647 return name;
5648 }
5649
David Blaikie33dd45d02015-03-23 18:39:02 +00005650 if (selref && pointer_value == 0)
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005651 pointer_value = get_objc2_64bit_selref(ReferenceValue, info);
5652
5653 if (pointer_value != 0)
5654 ReferenceValue = pointer_value;
5655
5656 const char *name = GuessCstringPointer(ReferenceValue, info);
5657 if (name) {
David Blaikie33dd45d02015-03-23 18:39:02 +00005658 if (pointer_value != 0 && selref) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005659 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Selector_Ref;
5660 info->selector_name = name;
David Blaikie33dd45d02015-03-23 18:39:02 +00005661 } else if (pointer_value != 0 && msgref) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005662 info->class_name = nullptr;
5663 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message_Ref;
5664 info->selector_name = name;
5665 } else
5666 *ReferenceType = LLVMDisassembler_ReferenceType_Out_LitPool_CstrAddr;
5667 return name;
5668 }
5669
5670 // Lastly look for an indirect symbol with this ReferenceValue which is in
5671 // a literal pool. If found return that symbol name.
5672 name = GuessIndirectSymbol(ReferenceValue, info);
5673 if (name) {
5674 *ReferenceType = LLVMDisassembler_ReferenceType_Out_LitPool_SymAddr;
5675 return name;
5676 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00005677
5678 return nullptr;
5679}
5680
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005681// SymbolizerSymbolLookUp is the symbol lookup function passed when creating
Kevin Enderbybf246f52014-09-24 23:08:22 +00005682// the Symbolizer. It looks up the ReferenceValue using the info passed via the
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005683// pointer to the struct DisassembleInfo that was passed when MCSymbolizer
5684// is created and returns the symbol name that matches the ReferenceValue or
5685// nullptr if none. The ReferenceType is passed in for the IN type of
5686// reference the instruction is making from the values in defined in the header
5687// "llvm-c/Disassembler.h". On return the ReferenceType can set to a specific
5688// Out type and the ReferenceName will also be set which is added as a comment
5689// to the disassembled instruction.
5690//
Kevin Enderby04bf6932014-10-28 23:39:46 +00005691#if HAVE_CXXABI_H
5692// If the symbol name is a C++ mangled name then the demangled name is
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005693// returned through ReferenceName and ReferenceType is set to
5694// LLVMDisassembler_ReferenceType_DeMangled_Name .
Kevin Enderby04bf6932014-10-28 23:39:46 +00005695#endif
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005696//
5697// When this is called to get a symbol name for a branch target then the
5698// ReferenceType will be LLVMDisassembler_ReferenceType_In_Branch and then
5699// SymbolValue will be looked for in the indirect symbol table to determine if
5700// it is an address for a symbol stub. If so then the symbol name for that
5701// stub is returned indirectly through ReferenceName and then ReferenceType is
5702// set to LLVMDisassembler_ReferenceType_Out_SymbolStub.
5703//
Kevin Enderbybf246f52014-09-24 23:08:22 +00005704// When this is called with an value loaded via a PC relative load then
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005705// ReferenceType will be LLVMDisassembler_ReferenceType_In_PCrel_Load then the
5706// SymbolValue is checked to be an address of literal pointer, symbol pointer,
5707// or an Objective-C meta data reference. If so the output ReferenceType is
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005708// set to correspond to that as well as setting the ReferenceName.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00005709static const char *SymbolizerSymbolLookUp(void *DisInfo,
5710 uint64_t ReferenceValue,
5711 uint64_t *ReferenceType,
5712 uint64_t ReferencePC,
5713 const char **ReferenceName) {
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005714 struct DisassembleInfo *info = (struct DisassembleInfo *)DisInfo;
Kevin Enderbybf246f52014-09-24 23:08:22 +00005715 // If no verbose symbolic information is wanted then just return nullptr.
David Blaikie33dd45d02015-03-23 18:39:02 +00005716 if (!info->verbose) {
Kevin Enderbybf246f52014-09-24 23:08:22 +00005717 *ReferenceName = nullptr;
5718 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005719 return nullptr;
5720 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00005721
Kevin Enderbyf6d25852015-01-31 00:37:11 +00005722 const char *SymbolName = GuessSymbolName(ReferenceValue, info->AddrMap);
Kevin Enderbybf246f52014-09-24 23:08:22 +00005723
Kevin Enderby85974882014-09-26 22:20:44 +00005724 if (*ReferenceType == LLVMDisassembler_ReferenceType_In_Branch) {
5725 *ReferenceName = GuessIndirectSymbol(ReferenceValue, info);
Kevin Enderby04bf6932014-10-28 23:39:46 +00005726 if (*ReferenceName != nullptr) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005727 method_reference(info, ReferenceType, ReferenceName);
5728 if (*ReferenceType != LLVMDisassembler_ReferenceType_Out_Objc_Message)
5729 *ReferenceType = LLVMDisassembler_ReferenceType_Out_SymbolStub;
5730 } else
Kevin Enderby04bf6932014-10-28 23:39:46 +00005731#if HAVE_CXXABI_H
Kevin Enderbyb28ed012014-10-29 21:28:24 +00005732 if (SymbolName != nullptr && strncmp(SymbolName, "__Z", 3) == 0) {
Kevin Enderby04bf6932014-10-28 23:39:46 +00005733 if (info->demangled_name != nullptr)
5734 free(info->demangled_name);
5735 int status;
Kevin Enderbyb28ed012014-10-29 21:28:24 +00005736 info->demangled_name =
5737 abi::__cxa_demangle(SymbolName + 1, nullptr, nullptr, &status);
Kevin Enderby04bf6932014-10-28 23:39:46 +00005738 if (info->demangled_name != nullptr) {
5739 *ReferenceName = info->demangled_name;
5740 *ReferenceType = LLVMDisassembler_ReferenceType_DeMangled_Name;
5741 } else
5742 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5743 } else
5744#endif
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005745 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5746 } else if (*ReferenceType == LLVMDisassembler_ReferenceType_In_PCrel_Load) {
5747 *ReferenceName =
5748 GuessLiteralPointer(ReferenceValue, ReferencePC, ReferenceType, info);
Kevin Enderby85974882014-09-26 22:20:44 +00005749 if (*ReferenceName)
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005750 method_reference(info, ReferenceType, ReferenceName);
Kevin Enderby85974882014-09-26 22:20:44 +00005751 else
5752 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
Kevin Enderbyae3c1262014-11-14 21:52:18 +00005753 // If this is arm64 and the reference is an adrp instruction save the
5754 // instruction, passed in ReferenceValue and the address of the instruction
5755 // for use later if we see and add immediate instruction.
5756 } else if (info->O->getArch() == Triple::aarch64 &&
5757 *ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_ADRP) {
5758 info->adrp_inst = ReferenceValue;
5759 info->adrp_addr = ReferencePC;
5760 SymbolName = nullptr;
5761 *ReferenceName = nullptr;
5762 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5763 // If this is arm64 and reference is an add immediate instruction and we
5764 // have
5765 // seen an adrp instruction just before it and the adrp's Xd register
5766 // matches
5767 // this add's Xn register reconstruct the value being referenced and look to
5768 // see if it is a literal pointer. Note the add immediate instruction is
5769 // passed in ReferenceValue.
5770 } else if (info->O->getArch() == Triple::aarch64 &&
5771 *ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_ADDXri &&
5772 ReferencePC - 4 == info->adrp_addr &&
5773 (info->adrp_inst & 0x9f000000) == 0x90000000 &&
5774 (info->adrp_inst & 0x1f) == ((ReferenceValue >> 5) & 0x1f)) {
5775 uint32_t addxri_inst;
5776 uint64_t adrp_imm, addxri_imm;
5777
5778 adrp_imm =
5779 ((info->adrp_inst & 0x00ffffe0) >> 3) | ((info->adrp_inst >> 29) & 0x3);
5780 if (info->adrp_inst & 0x0200000)
5781 adrp_imm |= 0xfffffffffc000000LL;
5782
5783 addxri_inst = ReferenceValue;
5784 addxri_imm = (addxri_inst >> 10) & 0xfff;
5785 if (((addxri_inst >> 22) & 0x3) == 1)
5786 addxri_imm <<= 12;
5787
5788 ReferenceValue = (info->adrp_addr & 0xfffffffffffff000LL) +
5789 (adrp_imm << 12) + addxri_imm;
5790
5791 *ReferenceName =
5792 GuessLiteralPointer(ReferenceValue, ReferencePC, ReferenceType, info);
5793 if (*ReferenceName == nullptr)
5794 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5795 // If this is arm64 and the reference is a load register instruction and we
5796 // have seen an adrp instruction just before it and the adrp's Xd register
5797 // matches this add's Xn register reconstruct the value being referenced and
5798 // look to see if it is a literal pointer. Note the load register
5799 // instruction is passed in ReferenceValue.
5800 } else if (info->O->getArch() == Triple::aarch64 &&
5801 *ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_LDRXui &&
5802 ReferencePC - 4 == info->adrp_addr &&
5803 (info->adrp_inst & 0x9f000000) == 0x90000000 &&
5804 (info->adrp_inst & 0x1f) == ((ReferenceValue >> 5) & 0x1f)) {
5805 uint32_t ldrxui_inst;
5806 uint64_t adrp_imm, ldrxui_imm;
5807
5808 adrp_imm =
5809 ((info->adrp_inst & 0x00ffffe0) >> 3) | ((info->adrp_inst >> 29) & 0x3);
5810 if (info->adrp_inst & 0x0200000)
5811 adrp_imm |= 0xfffffffffc000000LL;
5812
5813 ldrxui_inst = ReferenceValue;
5814 ldrxui_imm = (ldrxui_inst >> 10) & 0xfff;
5815
5816 ReferenceValue = (info->adrp_addr & 0xfffffffffffff000LL) +
5817 (adrp_imm << 12) + (ldrxui_imm << 3);
5818
5819 *ReferenceName =
5820 GuessLiteralPointer(ReferenceValue, ReferencePC, ReferenceType, info);
5821 if (*ReferenceName == nullptr)
5822 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5823 }
5824 // If this arm64 and is an load register (PC-relative) instruction the
5825 // ReferenceValue is the PC plus the immediate value.
5826 else if (info->O->getArch() == Triple::aarch64 &&
5827 (*ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_LDRXl ||
5828 *ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_ADR)) {
5829 *ReferenceName =
5830 GuessLiteralPointer(ReferenceValue, ReferencePC, ReferenceType, info);
5831 if (*ReferenceName == nullptr)
5832 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
Kevin Enderby85974882014-09-26 22:20:44 +00005833 }
Kevin Enderby04bf6932014-10-28 23:39:46 +00005834#if HAVE_CXXABI_H
5835 else if (SymbolName != nullptr && strncmp(SymbolName, "__Z", 3) == 0) {
5836 if (info->demangled_name != nullptr)
5837 free(info->demangled_name);
5838 int status;
Kevin Enderbyb28ed012014-10-29 21:28:24 +00005839 info->demangled_name =
5840 abi::__cxa_demangle(SymbolName + 1, nullptr, nullptr, &status);
Kevin Enderby04bf6932014-10-28 23:39:46 +00005841 if (info->demangled_name != nullptr) {
5842 *ReferenceName = info->demangled_name;
5843 *ReferenceType = LLVMDisassembler_ReferenceType_DeMangled_Name;
5844 }
5845 }
5846#endif
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005847 else {
Kevin Enderbybf246f52014-09-24 23:08:22 +00005848 *ReferenceName = nullptr;
5849 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5850 }
5851
5852 return SymbolName;
5853}
5854
Kevin Enderbybf246f52014-09-24 23:08:22 +00005855/// \brief Emits the comments that are stored in the CommentStream.
5856/// Each comment in the CommentStream must end with a newline.
5857static void emitComments(raw_svector_ostream &CommentStream,
5858 SmallString<128> &CommentsToEmit,
5859 formatted_raw_ostream &FormattedOS,
5860 const MCAsmInfo &MAI) {
5861 // Flush the stream before taking its content.
Kevin Enderbybf246f52014-09-24 23:08:22 +00005862 StringRef Comments = CommentsToEmit.str();
5863 // Get the default information for printing a comment.
5864 const char *CommentBegin = MAI.getCommentString();
5865 unsigned CommentColumn = MAI.getCommentColumn();
5866 bool IsFirst = true;
5867 while (!Comments.empty()) {
5868 if (!IsFirst)
5869 FormattedOS << '\n';
5870 // Emit a line of comments.
5871 FormattedOS.PadToColumn(CommentColumn);
5872 size_t Position = Comments.find('\n');
5873 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position);
5874 // Move after the newline character.
5875 Comments = Comments.substr(Position + 1);
5876 IsFirst = false;
5877 }
5878 FormattedOS.flush();
5879
5880 // Tell the comment stream that the vector changed underneath it.
5881 CommentsToEmit.clear();
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005882}
5883
Kevin Enderby95df54c2015-02-04 01:01:38 +00005884static void DisassembleMachO(StringRef Filename, MachOObjectFile *MachOOF,
5885 StringRef DisSegName, StringRef DisSectName) {
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005886 const char *McpuDefault = nullptr;
5887 const Target *ThumbTarget = nullptr;
5888 const Target *TheTarget = GetTarget(MachOOF, &McpuDefault, &ThumbTarget);
Benjamin Kramer43a772e2011-09-19 17:56:04 +00005889 if (!TheTarget) {
5890 // GetTarget prints out stuff.
5891 return;
5892 }
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005893 if (MCPU.empty() && McpuDefault)
5894 MCPU = McpuDefault;
5895
Ahmed Charles56440fd2014-03-06 05:51:42 +00005896 std::unique_ptr<const MCInstrInfo> InstrInfo(TheTarget->createMCInstrInfo());
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005897 std::unique_ptr<const MCInstrInfo> ThumbInstrInfo;
Kevin Enderbyae3c1262014-11-14 21:52:18 +00005898 if (ThumbTarget)
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005899 ThumbInstrInfo.reset(ThumbTarget->createMCInstrInfo());
Benjamin Kramer43a772e2011-09-19 17:56:04 +00005900
Kevin Enderbyc9595622014-08-06 23:24:41 +00005901 // Package up features to be passed to target/subtarget
5902 std::string FeaturesStr;
5903 if (MAttrs.size()) {
5904 SubtargetFeatures Features;
5905 for (unsigned i = 0; i != MAttrs.size(); ++i)
5906 Features.AddFeature(MAttrs[i]);
5907 FeaturesStr = Features.getString();
5908 }
5909
Benjamin Kramer43a772e2011-09-19 17:56:04 +00005910 // Set up disassembler.
Ahmed Charles56440fd2014-03-06 05:51:42 +00005911 std::unique_ptr<const MCRegisterInfo> MRI(
5912 TheTarget->createMCRegInfo(TripleName));
5913 std::unique_ptr<const MCAsmInfo> AsmInfo(
Rafael Espindola227144c2013-05-13 01:16:13 +00005914 TheTarget->createMCAsmInfo(*MRI, TripleName));
Ahmed Charles56440fd2014-03-06 05:51:42 +00005915 std::unique_ptr<const MCSubtargetInfo> STI(
Kevin Enderbyc9595622014-08-06 23:24:41 +00005916 TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr));
Craig Toppere6cb63e2014-04-25 04:24:47 +00005917 MCContext Ctx(AsmInfo.get(), MRI.get(), nullptr);
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005918 std::unique_ptr<MCDisassembler> DisAsm(
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005919 TheTarget->createMCDisassembler(*STI, Ctx));
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005920 std::unique_ptr<MCSymbolizer> Symbolizer;
5921 struct DisassembleInfo SymbolizerInfo;
5922 std::unique_ptr<MCRelocationInfo> RelInfo(
5923 TheTarget->createMCRelocationInfo(TripleName, Ctx));
5924 if (RelInfo) {
5925 Symbolizer.reset(TheTarget->createMCSymbolizer(
5926 TripleName, SymbolizerGetOpInfo, SymbolizerSymbolLookUp,
David Blaikie186db432015-01-18 20:45:48 +00005927 &SymbolizerInfo, &Ctx, std::move(RelInfo)));
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005928 DisAsm->setSymbolizer(std::move(Symbolizer));
5929 }
Benjamin Kramer43a772e2011-09-19 17:56:04 +00005930 int AsmPrinterVariant = AsmInfo->getAssemblerDialect();
Ahmed Charles56440fd2014-03-06 05:51:42 +00005931 std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter(
Daniel Sanders50f17232015-09-15 16:17:27 +00005932 Triple(TripleName), AsmPrinterVariant, *AsmInfo, *InstrInfo, *MRI));
Kevin Enderbybf246f52014-09-24 23:08:22 +00005933 // Set the display preference for hex vs. decimal immediates.
5934 IP->setPrintImmHex(PrintImmHex);
5935 // Comment stream and backing vector.
5936 SmallString<128> CommentsToEmit;
5937 raw_svector_ostream CommentStream(CommentsToEmit);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00005938 // FIXME: Setting the CommentStream in the InstPrinter is problematic in that
5939 // if it is done then arm64 comments for string literals don't get printed
5940 // and some constant get printed instead and not setting it causes intel
5941 // (32-bit and 64-bit) comments printed with different spacing before the
5942 // comment causing different diffs with the 'C' disassembler library API.
5943 // IP->setCommentStream(CommentStream);
Benjamin Kramer2ad2eb52011-09-20 17:53:01 +00005944
Kevin Enderbyae3c1262014-11-14 21:52:18 +00005945 if (!AsmInfo || !STI || !DisAsm || !IP) {
Michael J. Spencerc1363cf2011-10-07 19:25:47 +00005946 errs() << "error: couldn't initialize disassembler for target "
Benjamin Kramer2ad2eb52011-09-20 17:53:01 +00005947 << TripleName << '\n';
Benjamin Kramer43a772e2011-09-19 17:56:04 +00005948 return;
5949 }
5950
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005951 // Set up thumb disassembler.
5952 std::unique_ptr<const MCRegisterInfo> ThumbMRI;
5953 std::unique_ptr<const MCAsmInfo> ThumbAsmInfo;
5954 std::unique_ptr<const MCSubtargetInfo> ThumbSTI;
Kevin Enderby930fdc72014-11-06 19:00:13 +00005955 std::unique_ptr<MCDisassembler> ThumbDisAsm;
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005956 std::unique_ptr<MCInstPrinter> ThumbIP;
5957 std::unique_ptr<MCContext> ThumbCtx;
Kevin Enderby930fdc72014-11-06 19:00:13 +00005958 std::unique_ptr<MCSymbolizer> ThumbSymbolizer;
5959 struct DisassembleInfo ThumbSymbolizerInfo;
5960 std::unique_ptr<MCRelocationInfo> ThumbRelInfo;
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005961 if (ThumbTarget) {
5962 ThumbMRI.reset(ThumbTarget->createMCRegInfo(ThumbTripleName));
5963 ThumbAsmInfo.reset(
5964 ThumbTarget->createMCAsmInfo(*ThumbMRI, ThumbTripleName));
5965 ThumbSTI.reset(
5966 ThumbTarget->createMCSubtargetInfo(ThumbTripleName, MCPU, FeaturesStr));
5967 ThumbCtx.reset(new MCContext(ThumbAsmInfo.get(), ThumbMRI.get(), nullptr));
5968 ThumbDisAsm.reset(ThumbTarget->createMCDisassembler(*ThumbSTI, *ThumbCtx));
Kevin Enderby930fdc72014-11-06 19:00:13 +00005969 MCContext *PtrThumbCtx = ThumbCtx.get();
5970 ThumbRelInfo.reset(
5971 ThumbTarget->createMCRelocationInfo(ThumbTripleName, *PtrThumbCtx));
5972 if (ThumbRelInfo) {
5973 ThumbSymbolizer.reset(ThumbTarget->createMCSymbolizer(
5974 ThumbTripleName, SymbolizerGetOpInfo, SymbolizerSymbolLookUp,
David Blaikie186db432015-01-18 20:45:48 +00005975 &ThumbSymbolizerInfo, PtrThumbCtx, std::move(ThumbRelInfo)));
Kevin Enderby930fdc72014-11-06 19:00:13 +00005976 ThumbDisAsm->setSymbolizer(std::move(ThumbSymbolizer));
5977 }
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005978 int ThumbAsmPrinterVariant = ThumbAsmInfo->getAssemblerDialect();
5979 ThumbIP.reset(ThumbTarget->createMCInstPrinter(
Daniel Sanders50f17232015-09-15 16:17:27 +00005980 Triple(ThumbTripleName), ThumbAsmPrinterVariant, *ThumbAsmInfo,
5981 *ThumbInstrInfo, *ThumbMRI));
Kevin Enderbybf246f52014-09-24 23:08:22 +00005982 // Set the display preference for hex vs. decimal immediates.
5983 ThumbIP->setPrintImmHex(PrintImmHex);
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005984 }
5985
Kevin Enderbyae3c1262014-11-14 21:52:18 +00005986 if (ThumbTarget && (!ThumbAsmInfo || !ThumbSTI || !ThumbDisAsm || !ThumbIP)) {
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005987 errs() << "error: couldn't initialize disassembler for target "
5988 << ThumbTripleName << '\n';
5989 return;
5990 }
5991
Charles Davis8bdfafd2013-09-01 04:28:48 +00005992 MachO::mach_header Header = MachOOF->getHeader();
Benjamin Kramer43a772e2011-09-19 17:56:04 +00005993
Ahmed Bougachaaa790682013-05-24 01:07:04 +00005994 // FIXME: Using the -cfg command line option, this code used to be able to
5995 // annotate relocations with the referenced symbol's name, and if this was
5996 // inside a __[cf]string section, the data it points to. This is now replaced
5997 // by the upcoming MCSymbolizer, which needs the appropriate setup done above.
Owen Andersond9243c42011-10-17 21:37:35 +00005998 std::vector<SectionRef> Sections;
5999 std::vector<SymbolRef> Symbols;
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006000 SmallVector<uint64_t, 8> FoundFns;
Kevin Enderby273ae012013-06-06 17:20:50 +00006001 uint64_t BaseSegmentAddress;
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006002
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00006003 getSectionsAndSymbols(MachOOF, Sections, Symbols, FoundFns,
Kevin Enderby273ae012013-06-06 17:20:50 +00006004 BaseSegmentAddress);
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006005
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006006 // Sort the symbols by address, just in case they didn't come in that way.
Owen Andersond9243c42011-10-17 21:37:35 +00006007 std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006008
Kevin Enderby273ae012013-06-06 17:20:50 +00006009 // Build a data in code table that is sorted on by the address of each entry.
6010 uint64_t BaseAddress = 0;
Charles Davis8bdfafd2013-09-01 04:28:48 +00006011 if (Header.filetype == MachO::MH_OBJECT)
Rafael Espindola80291272014-10-08 15:28:58 +00006012 BaseAddress = Sections[0].getAddress();
Kevin Enderby273ae012013-06-06 17:20:50 +00006013 else
6014 BaseAddress = BaseSegmentAddress;
6015 DiceTable Dices;
Kevin Enderby273ae012013-06-06 17:20:50 +00006016 for (dice_iterator DI = MachOOF->begin_dices(), DE = MachOOF->end_dices();
Rafael Espindola5e812af2014-01-30 02:49:50 +00006017 DI != DE; ++DI) {
Kevin Enderby273ae012013-06-06 17:20:50 +00006018 uint32_t Offset;
6019 DI->getOffset(Offset);
6020 Dices.push_back(std::make_pair(BaseAddress + Offset, *DI));
6021 }
6022 array_pod_sort(Dices.begin(), Dices.end());
6023
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006024#ifndef NDEBUG
6025 raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls();
6026#else
6027 raw_ostream &DebugOut = nulls();
6028#endif
6029
Ahmed Charles56440fd2014-03-06 05:51:42 +00006030 std::unique_ptr<DIContext> diContext;
Rafael Espindola9b709252013-04-13 01:45:40 +00006031 ObjectFile *DbgObj = MachOOF;
Benjamin Kramer699128e2011-09-21 01:13:19 +00006032 // Try to find debug info and set up the DIContext for it.
6033 if (UseDbg) {
Benjamin Kramer699128e2011-09-21 01:13:19 +00006034 // A separate DSym file path was specified, parse it as a macho file,
6035 // get the sections and supply it to the section name parsing machinery.
6036 if (!DSYMFile.empty()) {
Rafael Espindola48af1c22014-08-19 18:44:46 +00006037 ErrorOr<std::unique_ptr<MemoryBuffer>> BufOrErr =
Rafael Espindolaadf21f22014-07-06 17:43:13 +00006038 MemoryBuffer::getFileOrSTDIN(DSYMFile);
Rafael Espindola48af1c22014-08-19 18:44:46 +00006039 if (std::error_code EC = BufOrErr.getError()) {
Rafael Espindolaadf21f22014-07-06 17:43:13 +00006040 errs() << "llvm-objdump: " << Filename << ": " << EC.message() << '\n';
Benjamin Kramer699128e2011-09-21 01:13:19 +00006041 return;
6042 }
Rafael Espindola48af1c22014-08-19 18:44:46 +00006043 DbgObj =
6044 ObjectFile::createMachOObjectFile(BufOrErr.get()->getMemBufferRef())
6045 .get()
6046 .release();
Benjamin Kramer699128e2011-09-21 01:13:19 +00006047 }
6048
Eric Christopher7370b552012-11-12 21:40:38 +00006049 // Setup the DIContext
Zachary Turner6489d7b2015-04-23 17:37:47 +00006050 diContext.reset(new DWARFContextInMemory(*DbgObj));
Benjamin Kramer699128e2011-09-21 01:13:19 +00006051 }
6052
Colin LeMahieufcc32762015-07-29 19:08:10 +00006053 if (FilterSections.size() == 0)
Kevin Enderby95df54c2015-02-04 01:01:38 +00006054 outs() << "(" << DisSegName << "," << DisSectName << ") section\n";
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00006055
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006056 for (unsigned SectIdx = 0; SectIdx != Sections.size(); SectIdx++) {
Owen Andersond9243c42011-10-17 21:37:35 +00006057 StringRef SectName;
Kevin Enderby95df54c2015-02-04 01:01:38 +00006058 if (Sections[SectIdx].getName(SectName) || SectName != DisSectName)
6059 continue;
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006060
Rafael Espindolaa9f810b2012-12-21 03:47:03 +00006061 DataRefImpl DR = Sections[SectIdx].getRawDataRefImpl();
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006062
Rafael Espindolab0f76a42013-04-05 15:15:22 +00006063 StringRef SegmentName = MachOOF->getSectionFinalSegmentName(DR);
Kevin Enderby95df54c2015-02-04 01:01:38 +00006064 if (SegmentName != DisSegName)
Rafael Espindolaa9f810b2012-12-21 03:47:03 +00006065 continue;
6066
Rafael Espindola7fc5b872014-11-12 02:04:27 +00006067 StringRef BytesStr;
6068 Sections[SectIdx].getContents(BytesStr);
Aaron Ballman106fd7b2014-11-12 14:01:17 +00006069 ArrayRef<uint8_t> Bytes(reinterpret_cast<const uint8_t *>(BytesStr.data()),
6070 BytesStr.size());
Rafael Espindola80291272014-10-08 15:28:58 +00006071 uint64_t SectAddress = Sections[SectIdx].getAddress();
Rafael Espindolabd604f22014-11-07 00:52:15 +00006072
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006073 bool symbolTableWorked = false;
6074
Kevin Enderbybf246f52014-09-24 23:08:22 +00006075 // Create a map of symbol addresses to symbol names for use by
6076 // the SymbolizerSymbolLookUp() routine.
6077 SymbolAddressMap AddrMap;
Kevin Enderby6a221752015-03-17 17:10:57 +00006078 bool DisSymNameFound = false;
Kevin Enderbybf246f52014-09-24 23:08:22 +00006079 for (const SymbolRef &Symbol : MachOOF->symbols()) {
Rafael Espindola2fa80cc2015-06-26 12:18:49 +00006080 SymbolRef::Type ST = Symbol.getType();
Kevin Enderbybf246f52014-09-24 23:08:22 +00006081 if (ST == SymbolRef::ST_Function || ST == SymbolRef::ST_Data ||
6082 ST == SymbolRef::ST_Other) {
Rafael Espindoladea00162015-07-03 17:44:18 +00006083 uint64_t Address = Symbol.getValue();
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00006084 ErrorOr<StringRef> SymNameOrErr = Symbol.getName();
6085 if (std::error_code EC = SymNameOrErr.getError())
6086 report_fatal_error(EC.message());
6087 StringRef SymName = *SymNameOrErr;
Kevin Enderbybf246f52014-09-24 23:08:22 +00006088 AddrMap[Address] = SymName;
Kevin Enderby6a221752015-03-17 17:10:57 +00006089 if (!DisSymName.empty() && DisSymName == SymName)
6090 DisSymNameFound = true;
Kevin Enderbybf246f52014-09-24 23:08:22 +00006091 }
6092 }
David Blaikie33dd45d02015-03-23 18:39:02 +00006093 if (!DisSymName.empty() && !DisSymNameFound) {
Kevin Enderby6a221752015-03-17 17:10:57 +00006094 outs() << "Can't find -dis-symname: " << DisSymName << "\n";
6095 return;
6096 }
Kevin Enderby98c9acc2014-09-16 18:00:57 +00006097 // Set up the block of info used by the Symbolizer call backs.
Kevin Enderby8e29ec92015-03-17 22:26:11 +00006098 SymbolizerInfo.verbose = !NoSymbolicOperands;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00006099 SymbolizerInfo.O = MachOOF;
6100 SymbolizerInfo.S = Sections[SectIdx];
Kevin Enderbybf246f52014-09-24 23:08:22 +00006101 SymbolizerInfo.AddrMap = &AddrMap;
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006102 SymbolizerInfo.Sections = &Sections;
6103 SymbolizerInfo.class_name = nullptr;
6104 SymbolizerInfo.selector_name = nullptr;
6105 SymbolizerInfo.method = nullptr;
Kevin Enderby04bf6932014-10-28 23:39:46 +00006106 SymbolizerInfo.demangled_name = nullptr;
Kevin Enderby078be602014-10-23 19:53:12 +00006107 SymbolizerInfo.bindtable = nullptr;
Kevin Enderby10738222014-11-19 20:20:16 +00006108 SymbolizerInfo.adrp_addr = 0;
6109 SymbolizerInfo.adrp_inst = 0;
Kevin Enderby930fdc72014-11-06 19:00:13 +00006110 // Same for the ThumbSymbolizer
Kevin Enderby8e29ec92015-03-17 22:26:11 +00006111 ThumbSymbolizerInfo.verbose = !NoSymbolicOperands;
Kevin Enderby930fdc72014-11-06 19:00:13 +00006112 ThumbSymbolizerInfo.O = MachOOF;
6113 ThumbSymbolizerInfo.S = Sections[SectIdx];
6114 ThumbSymbolizerInfo.AddrMap = &AddrMap;
6115 ThumbSymbolizerInfo.Sections = &Sections;
6116 ThumbSymbolizerInfo.class_name = nullptr;
6117 ThumbSymbolizerInfo.selector_name = nullptr;
6118 ThumbSymbolizerInfo.method = nullptr;
6119 ThumbSymbolizerInfo.demangled_name = nullptr;
6120 ThumbSymbolizerInfo.bindtable = nullptr;
Kevin Enderby10738222014-11-19 20:20:16 +00006121 ThumbSymbolizerInfo.adrp_addr = 0;
6122 ThumbSymbolizerInfo.adrp_inst = 0;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00006123
Benjamin Kramer2ad2eb52011-09-20 17:53:01 +00006124 // Disassemble symbol by symbol.
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006125 for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) {
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00006126 ErrorOr<StringRef> SymNameOrErr = Symbols[SymIdx].getName();
6127 if (std::error_code EC = SymNameOrErr.getError())
6128 report_fatal_error(EC.message());
6129 StringRef SymName = *SymNameOrErr;
Owen Andersond9243c42011-10-17 21:37:35 +00006130
Rafael Espindola2fa80cc2015-06-26 12:18:49 +00006131 SymbolRef::Type ST = Symbols[SymIdx].getType();
Kuba Breckade833222015-11-12 09:40:29 +00006132 if (ST != SymbolRef::ST_Function && ST != SymbolRef::ST_Data)
Owen Andersond9243c42011-10-17 21:37:35 +00006133 continue;
6134
Benjamin Kramer2ad2eb52011-09-20 17:53:01 +00006135 // Make sure the symbol is defined in this section.
Rafael Espindola80291272014-10-08 15:28:58 +00006136 bool containsSym = Sections[SectIdx].containsSymbol(Symbols[SymIdx]);
Owen Andersond9243c42011-10-17 21:37:35 +00006137 if (!containsSym)
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006138 continue;
6139
Kevin Enderby6a221752015-03-17 17:10:57 +00006140 // If we are only disassembling one symbol see if this is that symbol.
6141 if (!DisSymName.empty() && DisSymName != SymName)
6142 continue;
6143
Benjamin Kramer2ad2eb52011-09-20 17:53:01 +00006144 // Start at the address of the symbol relative to the section's address.
Rafael Espindoladea00162015-07-03 17:44:18 +00006145 uint64_t Start = Symbols[SymIdx].getValue();
Rafael Espindola80291272014-10-08 15:28:58 +00006146 uint64_t SectionAddress = Sections[SectIdx].getAddress();
Cameron Zwarich54478a52012-02-03 05:42:17 +00006147 Start -= SectionAddress;
Owen Andersond9243c42011-10-17 21:37:35 +00006148
Benjamin Kramer2ad2eb52011-09-20 17:53:01 +00006149 // Stop disassembling either at the beginning of the next symbol or at
6150 // the end of the section.
Kevin Enderbyedd58722012-05-15 18:57:14 +00006151 bool containsNextSym = false;
Owen Andersond9243c42011-10-17 21:37:35 +00006152 uint64_t NextSym = 0;
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006153 uint64_t NextSymIdx = SymIdx + 1;
Owen Andersond9243c42011-10-17 21:37:35 +00006154 while (Symbols.size() > NextSymIdx) {
Rafael Espindola2fa80cc2015-06-26 12:18:49 +00006155 SymbolRef::Type NextSymType = Symbols[NextSymIdx].getType();
Owen Andersond9243c42011-10-17 21:37:35 +00006156 if (NextSymType == SymbolRef::ST_Function) {
Rafael Espindola80291272014-10-08 15:28:58 +00006157 containsNextSym =
6158 Sections[SectIdx].containsSymbol(Symbols[NextSymIdx]);
Rafael Espindoladea00162015-07-03 17:44:18 +00006159 NextSym = Symbols[NextSymIdx].getValue();
Cameron Zwarich54478a52012-02-03 05:42:17 +00006160 NextSym -= SectionAddress;
Owen Andersond9243c42011-10-17 21:37:35 +00006161 break;
6162 }
6163 ++NextSymIdx;
6164 }
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006165
Rafael Espindola80291272014-10-08 15:28:58 +00006166 uint64_t SectSize = Sections[SectIdx].getSize();
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006167 uint64_t End = containsNextSym ? NextSym : SectSize;
Owen Andersond9243c42011-10-17 21:37:35 +00006168 uint64_t Size;
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006169
6170 symbolTableWorked = true;
Rafael Espindolabd604f22014-11-07 00:52:15 +00006171
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006172 DataRefImpl Symb = Symbols[SymIdx].getRawDataRefImpl();
6173 bool isThumb =
6174 (MachOOF->getSymbolFlags(Symb) & SymbolRef::SF_Thumb) && ThumbTarget;
6175
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006176 outs() << SymName << ":\n";
6177 DILineInfo lastLine;
6178 for (uint64_t Index = Start; Index < End; Index += Size) {
6179 MCInst Inst;
Owen Andersond9243c42011-10-17 21:37:35 +00006180
Kevin Enderbybf246f52014-09-24 23:08:22 +00006181 uint64_t PC = SectAddress + Index;
Kevin Enderbyab5e6c92015-03-17 21:07:39 +00006182 if (!NoLeadingAddr) {
6183 if (FullLeadingAddr) {
6184 if (MachOOF->is64Bit())
6185 outs() << format("%016" PRIx64, PC);
6186 else
6187 outs() << format("%08" PRIx64, PC);
6188 } else {
6189 outs() << format("%8" PRIx64 ":", PC);
6190 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00006191 }
6192 if (!NoShowRawInsn)
6193 outs() << "\t";
Kevin Enderby273ae012013-06-06 17:20:50 +00006194
6195 // Check the data in code table here to see if this is data not an
6196 // instruction to be disassembled.
6197 DiceTable Dice;
Kevin Enderbybf246f52014-09-24 23:08:22 +00006198 Dice.push_back(std::make_pair(PC, DiceRef()));
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006199 dice_table_iterator DTI =
6200 std::search(Dices.begin(), Dices.end(), Dice.begin(), Dice.end(),
6201 compareDiceTableEntries);
6202 if (DTI != Dices.end()) {
Kevin Enderby273ae012013-06-06 17:20:50 +00006203 uint16_t Length;
6204 DTI->second.getLength(Length);
Kevin Enderby273ae012013-06-06 17:20:50 +00006205 uint16_t Kind;
6206 DTI->second.getKind(Kind);
Colin LeMahieufc32b1b2015-03-18 19:27:31 +00006207 Size = DumpDataInCode(Bytes.data() + Index, Length, Kind);
Kevin Enderby930fdc72014-11-06 19:00:13 +00006208 if ((Kind == MachO::DICE_KIND_JUMP_TABLE8) &&
6209 (PC == (DTI->first + Length - 1)) && (Length & 1))
6210 Size++;
Kevin Enderby273ae012013-06-06 17:20:50 +00006211 continue;
6212 }
6213
Kevin Enderbybf246f52014-09-24 23:08:22 +00006214 SmallVector<char, 64> AnnotationsBytes;
6215 raw_svector_ostream Annotations(AnnotationsBytes);
6216
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006217 bool gotInst;
6218 if (isThumb)
Rafael Espindola7fc5b872014-11-12 02:04:27 +00006219 gotInst = ThumbDisAsm->getInstruction(Inst, Size, Bytes.slice(Index),
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006220 PC, DebugOut, Annotations);
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006221 else
Rafael Espindola7fc5b872014-11-12 02:04:27 +00006222 gotInst = DisAsm->getInstruction(Inst, Size, Bytes.slice(Index), PC,
Kevin Enderbybf246f52014-09-24 23:08:22 +00006223 DebugOut, Annotations);
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006224 if (gotInst) {
Kevin Enderbybf246f52014-09-24 23:08:22 +00006225 if (!NoShowRawInsn) {
Craig Topper0013be12015-09-21 05:32:41 +00006226 dumpBytes(makeArrayRef(Bytes.data() + Index, Size), outs());
Kevin Enderbybf246f52014-09-24 23:08:22 +00006227 }
6228 formatted_raw_ostream FormattedOS(outs());
Kevin Enderbybf246f52014-09-24 23:08:22 +00006229 StringRef AnnotationsStr = Annotations.str();
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006230 if (isThumb)
Akira Hatanakab46d0232015-03-27 20:36:02 +00006231 ThumbIP->printInst(&Inst, FormattedOS, AnnotationsStr, *ThumbSTI);
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006232 else
Akira Hatanaka1d079942015-03-28 20:44:05 +00006233 IP->printInst(&Inst, FormattedOS, AnnotationsStr, *STI);
Kevin Enderbybf246f52014-09-24 23:08:22 +00006234 emitComments(CommentStream, CommentsToEmit, FormattedOS, *AsmInfo);
Owen Andersond9243c42011-10-17 21:37:35 +00006235
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006236 // Print debug info.
6237 if (diContext) {
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006238 DILineInfo dli = diContext->getLineInfoForAddress(PC);
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006239 // Print valid line info if it changed.
Alexey Samsonovd0109992014-04-18 21:36:39 +00006240 if (dli != lastLine && dli.Line != 0)
6241 outs() << "\t## " << dli.FileName << ':' << dli.Line << ':'
6242 << dli.Column;
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006243 lastLine = dli;
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006244 }
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006245 outs() << "\n";
6246 } else {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006247 unsigned int Arch = MachOOF->getArch();
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006248 if (Arch == Triple::x86_64 || Arch == Triple::x86) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006249 outs() << format("\t.byte 0x%02x #bad opcode\n",
6250 *(Bytes.data() + Index) & 0xff);
6251 Size = 1; // skip exactly one illegible byte and move on.
Kevin Enderbyae3c1262014-11-14 21:52:18 +00006252 } else if (Arch == Triple::aarch64) {
6253 uint32_t opcode = (*(Bytes.data() + Index) & 0xff) |
6254 (*(Bytes.data() + Index + 1) & 0xff) << 8 |
6255 (*(Bytes.data() + Index + 2) & 0xff) << 16 |
6256 (*(Bytes.data() + Index + 3) & 0xff) << 24;
6257 outs() << format("\t.long\t0x%08x\n", opcode);
6258 Size = 4;
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006259 } else {
6260 errs() << "llvm-objdump: warning: invalid instruction encoding\n";
6261 if (Size == 0)
6262 Size = 1; // skip illegible bytes
6263 }
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006264 }
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006265 }
6266 }
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006267 if (!symbolTableWorked) {
Rafael Espindola80291272014-10-08 15:28:58 +00006268 // Reading the symbol table didn't work, disassemble the whole section.
6269 uint64_t SectAddress = Sections[SectIdx].getAddress();
6270 uint64_t SectSize = Sections[SectIdx].getSize();
Kevin Enderbybadd1002012-05-18 00:13:56 +00006271 uint64_t InstSize;
6272 for (uint64_t Index = 0; Index < SectSize; Index += InstSize) {
Bill Wendling4e68e062012-07-19 00:17:40 +00006273 MCInst Inst;
Kevin Enderbybadd1002012-05-18 00:13:56 +00006274
Kevin Enderbybf246f52014-09-24 23:08:22 +00006275 uint64_t PC = SectAddress + Index;
Rafael Espindola7fc5b872014-11-12 02:04:27 +00006276 if (DisAsm->getInstruction(Inst, InstSize, Bytes.slice(Index), PC,
6277 DebugOut, nulls())) {
Kevin Enderbyab5e6c92015-03-17 21:07:39 +00006278 if (!NoLeadingAddr) {
6279 if (FullLeadingAddr) {
6280 if (MachOOF->is64Bit())
6281 outs() << format("%016" PRIx64, PC);
6282 else
6283 outs() << format("%08" PRIx64, PC);
6284 } else {
6285 outs() << format("%8" PRIx64 ":", PC);
6286 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00006287 }
6288 if (!NoShowRawInsn) {
6289 outs() << "\t";
Craig Topper0013be12015-09-21 05:32:41 +00006290 dumpBytes(makeArrayRef(Bytes.data() + Index, InstSize), outs());
Kevin Enderbybf246f52014-09-24 23:08:22 +00006291 }
Akira Hatanaka1d079942015-03-28 20:44:05 +00006292 IP->printInst(&Inst, outs(), "", *STI);
Bill Wendling4e68e062012-07-19 00:17:40 +00006293 outs() << "\n";
6294 } else {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006295 unsigned int Arch = MachOOF->getArch();
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006296 if (Arch == Triple::x86_64 || Arch == Triple::x86) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006297 outs() << format("\t.byte 0x%02x #bad opcode\n",
6298 *(Bytes.data() + Index) & 0xff);
6299 InstSize = 1; // skip exactly one illegible byte and move on.
6300 } else {
6301 errs() << "llvm-objdump: warning: invalid instruction encoding\n";
6302 if (InstSize == 0)
6303 InstSize = 1; // skip illegible bytes
6304 }
Bill Wendling4e68e062012-07-19 00:17:40 +00006305 }
Kevin Enderbybadd1002012-05-18 00:13:56 +00006306 }
6307 }
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00006308 // The TripleName's need to be reset if we are called again for a different
6309 // archtecture.
6310 TripleName = "";
6311 ThumbTripleName = "";
6312
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006313 if (SymbolizerInfo.method != nullptr)
6314 free(SymbolizerInfo.method);
Kevin Enderby04bf6932014-10-28 23:39:46 +00006315 if (SymbolizerInfo.demangled_name != nullptr)
6316 free(SymbolizerInfo.demangled_name);
Kevin Enderby078be602014-10-23 19:53:12 +00006317 if (SymbolizerInfo.bindtable != nullptr)
6318 delete SymbolizerInfo.bindtable;
Kevin Enderby930fdc72014-11-06 19:00:13 +00006319 if (ThumbSymbolizerInfo.method != nullptr)
6320 free(ThumbSymbolizerInfo.method);
6321 if (ThumbSymbolizerInfo.demangled_name != nullptr)
6322 free(ThumbSymbolizerInfo.demangled_name);
6323 if (ThumbSymbolizerInfo.bindtable != nullptr)
6324 delete ThumbSymbolizerInfo.bindtable;
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006325 }
6326}
Tim Northover4bd286a2014-08-01 13:07:19 +00006327
Tim Northover39c70bb2014-08-12 11:52:59 +00006328//===----------------------------------------------------------------------===//
6329// __compact_unwind section dumping
6330//===----------------------------------------------------------------------===//
6331
Tim Northover4bd286a2014-08-01 13:07:19 +00006332namespace {
Tim Northover39c70bb2014-08-12 11:52:59 +00006333
6334template <typename T> static uint64_t readNext(const char *&Buf) {
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006335 using llvm::support::little;
6336 using llvm::support::unaligned;
Tim Northover39c70bb2014-08-12 11:52:59 +00006337
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006338 uint64_t Val = support::endian::read<T, little, unaligned>(Buf);
6339 Buf += sizeof(T);
6340 return Val;
6341}
Tim Northover39c70bb2014-08-12 11:52:59 +00006342
Tim Northover4bd286a2014-08-01 13:07:19 +00006343struct CompactUnwindEntry {
6344 uint32_t OffsetInSection;
6345
6346 uint64_t FunctionAddr;
6347 uint32_t Length;
6348 uint32_t CompactEncoding;
6349 uint64_t PersonalityAddr;
6350 uint64_t LSDAAddr;
6351
6352 RelocationRef FunctionReloc;
6353 RelocationRef PersonalityReloc;
6354 RelocationRef LSDAReloc;
6355
6356 CompactUnwindEntry(StringRef Contents, unsigned Offset, bool Is64)
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006357 : OffsetInSection(Offset) {
Tim Northover4bd286a2014-08-01 13:07:19 +00006358 if (Is64)
6359 read<uint64_t>(Contents.data() + Offset);
6360 else
6361 read<uint32_t>(Contents.data() + Offset);
6362 }
6363
6364private:
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006365 template <typename UIntPtr> void read(const char *Buf) {
Tim Northover4bd286a2014-08-01 13:07:19 +00006366 FunctionAddr = readNext<UIntPtr>(Buf);
6367 Length = readNext<uint32_t>(Buf);
6368 CompactEncoding = readNext<uint32_t>(Buf);
6369 PersonalityAddr = readNext<UIntPtr>(Buf);
6370 LSDAAddr = readNext<UIntPtr>(Buf);
6371 }
6372};
6373}
6374
6375/// Given a relocation from __compact_unwind, consisting of the RelocationRef
6376/// and data being relocated, determine the best base Name and Addend to use for
6377/// display purposes.
6378///
6379/// 1. An Extern relocation will directly reference a symbol (and the data is
6380/// then already an addend), so use that.
6381/// 2. Otherwise the data is an offset in the object file's layout; try to find
6382// a symbol before it in the same section, and use the offset from there.
6383/// 3. Finally, if all that fails, fall back to an offset from the start of the
6384/// referenced section.
6385static void findUnwindRelocNameAddend(const MachOObjectFile *Obj,
6386 std::map<uint64_t, SymbolRef> &Symbols,
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006387 const RelocationRef &Reloc, uint64_t Addr,
Tim Northover4bd286a2014-08-01 13:07:19 +00006388 StringRef &Name, uint64_t &Addend) {
6389 if (Reloc.getSymbol() != Obj->symbol_end()) {
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00006390 ErrorOr<StringRef> NameOrErr = Reloc.getSymbol()->getName();
6391 if (std::error_code EC = NameOrErr.getError())
6392 report_fatal_error(EC.message());
6393 Name = *NameOrErr;
Tim Northover4bd286a2014-08-01 13:07:19 +00006394 Addend = Addr;
6395 return;
6396 }
6397
6398 auto RE = Obj->getRelocation(Reloc.getRawDataRefImpl());
Keno Fischerc780e8e2015-05-21 21:24:32 +00006399 SectionRef RelocSection = Obj->getAnyRelocationSection(RE);
Tim Northover4bd286a2014-08-01 13:07:19 +00006400
Rafael Espindola80291272014-10-08 15:28:58 +00006401 uint64_t SectionAddr = RelocSection.getAddress();
Tim Northover4bd286a2014-08-01 13:07:19 +00006402
6403 auto Sym = Symbols.upper_bound(Addr);
6404 if (Sym == Symbols.begin()) {
6405 // The first symbol in the object is after this reference, the best we can
6406 // do is section-relative notation.
6407 RelocSection.getName(Name);
6408 Addend = Addr - SectionAddr;
6409 return;
6410 }
6411
6412 // Go back one so that SymbolAddress <= Addr.
6413 --Sym;
6414
Rafael Espindola8bab8892015-08-07 23:27:14 +00006415 section_iterator SymSection = *Sym->second.getSection();
Tim Northover4bd286a2014-08-01 13:07:19 +00006416 if (RelocSection == *SymSection) {
6417 // There's a valid symbol in the same section before this reference.
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00006418 ErrorOr<StringRef> NameOrErr = Sym->second.getName();
6419 if (std::error_code EC = NameOrErr.getError())
6420 report_fatal_error(EC.message());
6421 Name = *NameOrErr;
Tim Northover4bd286a2014-08-01 13:07:19 +00006422 Addend = Addr - Sym->first;
6423 return;
6424 }
6425
6426 // There is a symbol before this reference, but it's in a different
6427 // section. Probably not helpful to mention it, so use the section name.
6428 RelocSection.getName(Name);
6429 Addend = Addr - SectionAddr;
6430}
6431
6432static void printUnwindRelocDest(const MachOObjectFile *Obj,
6433 std::map<uint64_t, SymbolRef> &Symbols,
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006434 const RelocationRef &Reloc, uint64_t Addr) {
Tim Northover4bd286a2014-08-01 13:07:19 +00006435 StringRef Name;
6436 uint64_t Addend;
6437
Rafael Espindola854038e2015-06-26 14:51:16 +00006438 if (!Reloc.getObject())
Tim Northover0b0add52014-09-09 10:45:06 +00006439 return;
6440
Tim Northover4bd286a2014-08-01 13:07:19 +00006441 findUnwindRelocNameAddend(Obj, Symbols, Reloc, Addr, Name, Addend);
6442
6443 outs() << Name;
6444 if (Addend)
Tim Northover63a25622014-08-11 09:14:06 +00006445 outs() << " + " << format("0x%" PRIx64, Addend);
Tim Northover4bd286a2014-08-01 13:07:19 +00006446}
6447
6448static void
6449printMachOCompactUnwindSection(const MachOObjectFile *Obj,
6450 std::map<uint64_t, SymbolRef> &Symbols,
6451 const SectionRef &CompactUnwind) {
6452
6453 assert(Obj->isLittleEndian() &&
6454 "There should not be a big-endian .o with __compact_unwind");
6455
6456 bool Is64 = Obj->is64Bit();
6457 uint32_t PointerSize = Is64 ? sizeof(uint64_t) : sizeof(uint32_t);
6458 uint32_t EntrySize = 3 * PointerSize + 2 * sizeof(uint32_t);
6459
6460 StringRef Contents;
6461 CompactUnwind.getContents(Contents);
6462
6463 SmallVector<CompactUnwindEntry, 4> CompactUnwinds;
6464
6465 // First populate the initial raw offsets, encodings and so on from the entry.
6466 for (unsigned Offset = 0; Offset < Contents.size(); Offset += EntrySize) {
6467 CompactUnwindEntry Entry(Contents.data(), Offset, Is64);
6468 CompactUnwinds.push_back(Entry);
6469 }
6470
6471 // Next we need to look at the relocations to find out what objects are
6472 // actually being referred to.
6473 for (const RelocationRef &Reloc : CompactUnwind.relocations()) {
Rafael Espindola96d071c2015-06-29 23:29:12 +00006474 uint64_t RelocAddress = Reloc.getOffset();
Tim Northover4bd286a2014-08-01 13:07:19 +00006475
6476 uint32_t EntryIdx = RelocAddress / EntrySize;
6477 uint32_t OffsetInEntry = RelocAddress - EntryIdx * EntrySize;
6478 CompactUnwindEntry &Entry = CompactUnwinds[EntryIdx];
6479
6480 if (OffsetInEntry == 0)
6481 Entry.FunctionReloc = Reloc;
6482 else if (OffsetInEntry == PointerSize + 2 * sizeof(uint32_t))
6483 Entry.PersonalityReloc = Reloc;
6484 else if (OffsetInEntry == 2 * PointerSize + 2 * sizeof(uint32_t))
6485 Entry.LSDAReloc = Reloc;
6486 else
6487 llvm_unreachable("Unexpected relocation in __compact_unwind section");
6488 }
6489
6490 // Finally, we're ready to print the data we've gathered.
6491 outs() << "Contents of __compact_unwind section:\n";
6492 for (auto &Entry : CompactUnwinds) {
Tim Northover06af2602014-08-08 12:08:51 +00006493 outs() << " Entry at offset "
6494 << format("0x%" PRIx32, Entry.OffsetInSection) << ":\n";
Tim Northover4bd286a2014-08-01 13:07:19 +00006495
6496 // 1. Start of the region this entry applies to.
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006497 outs() << " start: " << format("0x%" PRIx64,
6498 Entry.FunctionAddr) << ' ';
6499 printUnwindRelocDest(Obj, Symbols, Entry.FunctionReloc, Entry.FunctionAddr);
Tim Northover4bd286a2014-08-01 13:07:19 +00006500 outs() << '\n';
6501
6502 // 2. Length of the region this entry applies to.
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006503 outs() << " length: " << format("0x%" PRIx32, Entry.Length)
6504 << '\n';
Tim Northover4bd286a2014-08-01 13:07:19 +00006505 // 3. The 32-bit compact encoding.
6506 outs() << " compact encoding: "
Tim Northoverb911bf82014-08-08 12:00:09 +00006507 << format("0x%08" PRIx32, Entry.CompactEncoding) << '\n';
Tim Northover4bd286a2014-08-01 13:07:19 +00006508
6509 // 4. The personality function, if present.
Rafael Espindola854038e2015-06-26 14:51:16 +00006510 if (Entry.PersonalityReloc.getObject()) {
Tim Northover4bd286a2014-08-01 13:07:19 +00006511 outs() << " personality function: "
Tim Northoverb911bf82014-08-08 12:00:09 +00006512 << format("0x%" PRIx64, Entry.PersonalityAddr) << ' ';
Tim Northover4bd286a2014-08-01 13:07:19 +00006513 printUnwindRelocDest(Obj, Symbols, Entry.PersonalityReloc,
6514 Entry.PersonalityAddr);
6515 outs() << '\n';
6516 }
6517
6518 // 5. This entry's language-specific data area.
Rafael Espindola854038e2015-06-26 14:51:16 +00006519 if (Entry.LSDAReloc.getObject()) {
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006520 outs() << " LSDA: " << format("0x%" PRIx64,
6521 Entry.LSDAAddr) << ' ';
Tim Northover4bd286a2014-08-01 13:07:19 +00006522 printUnwindRelocDest(Obj, Symbols, Entry.LSDAReloc, Entry.LSDAAddr);
6523 outs() << '\n';
6524 }
6525 }
6526}
6527
Tim Northover39c70bb2014-08-12 11:52:59 +00006528//===----------------------------------------------------------------------===//
6529// __unwind_info section dumping
6530//===----------------------------------------------------------------------===//
6531
6532static void printRegularSecondLevelUnwindPage(const char *PageStart) {
6533 const char *Pos = PageStart;
6534 uint32_t Kind = readNext<uint32_t>(Pos);
6535 (void)Kind;
6536 assert(Kind == 2 && "kind for a regular 2nd level index should be 2");
6537
6538 uint16_t EntriesStart = readNext<uint16_t>(Pos);
6539 uint16_t NumEntries = readNext<uint16_t>(Pos);
6540
6541 Pos = PageStart + EntriesStart;
6542 for (unsigned i = 0; i < NumEntries; ++i) {
6543 uint32_t FunctionOffset = readNext<uint32_t>(Pos);
6544 uint32_t Encoding = readNext<uint32_t>(Pos);
6545
6546 outs() << " [" << i << "]: "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006547 << "function offset=" << format("0x%08" PRIx32, FunctionOffset)
6548 << ", "
6549 << "encoding=" << format("0x%08" PRIx32, Encoding) << '\n';
Tim Northover39c70bb2014-08-12 11:52:59 +00006550 }
6551}
6552
6553static void printCompressedSecondLevelUnwindPage(
6554 const char *PageStart, uint32_t FunctionBase,
6555 const SmallVectorImpl<uint32_t> &CommonEncodings) {
6556 const char *Pos = PageStart;
6557 uint32_t Kind = readNext<uint32_t>(Pos);
6558 (void)Kind;
6559 assert(Kind == 3 && "kind for a compressed 2nd level index should be 3");
6560
6561 uint16_t EntriesStart = readNext<uint16_t>(Pos);
6562 uint16_t NumEntries = readNext<uint16_t>(Pos);
6563
6564 uint16_t EncodingsStart = readNext<uint16_t>(Pos);
6565 readNext<uint16_t>(Pos);
Aaron Ballman80930af2014-08-14 13:53:19 +00006566 const auto *PageEncodings = reinterpret_cast<const support::ulittle32_t *>(
6567 PageStart + EncodingsStart);
Tim Northover39c70bb2014-08-12 11:52:59 +00006568
6569 Pos = PageStart + EntriesStart;
6570 for (unsigned i = 0; i < NumEntries; ++i) {
6571 uint32_t Entry = readNext<uint32_t>(Pos);
6572 uint32_t FunctionOffset = FunctionBase + (Entry & 0xffffff);
6573 uint32_t EncodingIdx = Entry >> 24;
6574
6575 uint32_t Encoding;
6576 if (EncodingIdx < CommonEncodings.size())
6577 Encoding = CommonEncodings[EncodingIdx];
6578 else
6579 Encoding = PageEncodings[EncodingIdx - CommonEncodings.size()];
6580
6581 outs() << " [" << i << "]: "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006582 << "function offset=" << format("0x%08" PRIx32, FunctionOffset)
6583 << ", "
6584 << "encoding[" << EncodingIdx
6585 << "]=" << format("0x%08" PRIx32, Encoding) << '\n';
Tim Northover39c70bb2014-08-12 11:52:59 +00006586 }
6587}
6588
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006589static void printMachOUnwindInfoSection(const MachOObjectFile *Obj,
6590 std::map<uint64_t, SymbolRef> &Symbols,
6591 const SectionRef &UnwindInfo) {
Tim Northover39c70bb2014-08-12 11:52:59 +00006592
6593 assert(Obj->isLittleEndian() &&
6594 "There should not be a big-endian .o with __unwind_info");
6595
6596 outs() << "Contents of __unwind_info section:\n";
6597
6598 StringRef Contents;
6599 UnwindInfo.getContents(Contents);
6600 const char *Pos = Contents.data();
6601
6602 //===----------------------------------
6603 // Section header
6604 //===----------------------------------
6605
6606 uint32_t Version = readNext<uint32_t>(Pos);
6607 outs() << " Version: "
6608 << format("0x%" PRIx32, Version) << '\n';
6609 assert(Version == 1 && "only understand version 1");
6610
6611 uint32_t CommonEncodingsStart = readNext<uint32_t>(Pos);
6612 outs() << " Common encodings array section offset: "
6613 << format("0x%" PRIx32, CommonEncodingsStart) << '\n';
6614 uint32_t NumCommonEncodings = readNext<uint32_t>(Pos);
6615 outs() << " Number of common encodings in array: "
6616 << format("0x%" PRIx32, NumCommonEncodings) << '\n';
6617
6618 uint32_t PersonalitiesStart = readNext<uint32_t>(Pos);
6619 outs() << " Personality function array section offset: "
6620 << format("0x%" PRIx32, PersonalitiesStart) << '\n';
6621 uint32_t NumPersonalities = readNext<uint32_t>(Pos);
6622 outs() << " Number of personality functions in array: "
6623 << format("0x%" PRIx32, NumPersonalities) << '\n';
6624
6625 uint32_t IndicesStart = readNext<uint32_t>(Pos);
6626 outs() << " Index array section offset: "
6627 << format("0x%" PRIx32, IndicesStart) << '\n';
6628 uint32_t NumIndices = readNext<uint32_t>(Pos);
6629 outs() << " Number of indices in array: "
6630 << format("0x%" PRIx32, NumIndices) << '\n';
6631
6632 //===----------------------------------
6633 // A shared list of common encodings
6634 //===----------------------------------
6635
6636 // These occupy indices in the range [0, N] whenever an encoding is referenced
6637 // from a compressed 2nd level index table. In practice the linker only
6638 // creates ~128 of these, so that indices are available to embed encodings in
6639 // the 2nd level index.
6640
6641 SmallVector<uint32_t, 64> CommonEncodings;
6642 outs() << " Common encodings: (count = " << NumCommonEncodings << ")\n";
6643 Pos = Contents.data() + CommonEncodingsStart;
6644 for (unsigned i = 0; i < NumCommonEncodings; ++i) {
6645 uint32_t Encoding = readNext<uint32_t>(Pos);
6646 CommonEncodings.push_back(Encoding);
6647
6648 outs() << " encoding[" << i << "]: " << format("0x%08" PRIx32, Encoding)
6649 << '\n';
6650 }
6651
Tim Northover39c70bb2014-08-12 11:52:59 +00006652 //===----------------------------------
6653 // Personality functions used in this executable
6654 //===----------------------------------
6655
6656 // There should be only a handful of these (one per source language,
6657 // roughly). Particularly since they only get 2 bits in the compact encoding.
6658
6659 outs() << " Personality functions: (count = " << NumPersonalities << ")\n";
6660 Pos = Contents.data() + PersonalitiesStart;
6661 for (unsigned i = 0; i < NumPersonalities; ++i) {
6662 uint32_t PersonalityFn = readNext<uint32_t>(Pos);
6663 outs() << " personality[" << i + 1
6664 << "]: " << format("0x%08" PRIx32, PersonalityFn) << '\n';
6665 }
6666
6667 //===----------------------------------
6668 // The level 1 index entries
6669 //===----------------------------------
6670
6671 // These specify an approximate place to start searching for the more detailed
6672 // information, sorted by PC.
6673
6674 struct IndexEntry {
6675 uint32_t FunctionOffset;
6676 uint32_t SecondLevelPageStart;
6677 uint32_t LSDAStart;
6678 };
6679
6680 SmallVector<IndexEntry, 4> IndexEntries;
6681
6682 outs() << " Top level indices: (count = " << NumIndices << ")\n";
6683 Pos = Contents.data() + IndicesStart;
6684 for (unsigned i = 0; i < NumIndices; ++i) {
6685 IndexEntry Entry;
6686
6687 Entry.FunctionOffset = readNext<uint32_t>(Pos);
6688 Entry.SecondLevelPageStart = readNext<uint32_t>(Pos);
6689 Entry.LSDAStart = readNext<uint32_t>(Pos);
6690 IndexEntries.push_back(Entry);
6691
6692 outs() << " [" << i << "]: "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006693 << "function offset=" << format("0x%08" PRIx32, Entry.FunctionOffset)
6694 << ", "
Tim Northover39c70bb2014-08-12 11:52:59 +00006695 << "2nd level page offset="
6696 << format("0x%08" PRIx32, Entry.SecondLevelPageStart) << ", "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006697 << "LSDA offset=" << format("0x%08" PRIx32, Entry.LSDAStart) << '\n';
Tim Northover39c70bb2014-08-12 11:52:59 +00006698 }
6699
Tim Northover39c70bb2014-08-12 11:52:59 +00006700 //===----------------------------------
6701 // Next come the LSDA tables
6702 //===----------------------------------
6703
6704 // The LSDA layout is rather implicit: it's a contiguous array of entries from
6705 // the first top-level index's LSDAOffset to the last (sentinel).
6706
6707 outs() << " LSDA descriptors:\n";
6708 Pos = Contents.data() + IndexEntries[0].LSDAStart;
6709 int NumLSDAs = (IndexEntries.back().LSDAStart - IndexEntries[0].LSDAStart) /
6710 (2 * sizeof(uint32_t));
6711 for (int i = 0; i < NumLSDAs; ++i) {
6712 uint32_t FunctionOffset = readNext<uint32_t>(Pos);
6713 uint32_t LSDAOffset = readNext<uint32_t>(Pos);
6714 outs() << " [" << i << "]: "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006715 << "function offset=" << format("0x%08" PRIx32, FunctionOffset)
6716 << ", "
6717 << "LSDA offset=" << format("0x%08" PRIx32, LSDAOffset) << '\n';
Tim Northover39c70bb2014-08-12 11:52:59 +00006718 }
6719
6720 //===----------------------------------
6721 // Finally, the 2nd level indices
6722 //===----------------------------------
6723
6724 // Generally these are 4K in size, and have 2 possible forms:
6725 // + Regular stores up to 511 entries with disparate encodings
6726 // + Compressed stores up to 1021 entries if few enough compact encoding
6727 // values are used.
6728 outs() << " Second level indices:\n";
6729 for (unsigned i = 0; i < IndexEntries.size() - 1; ++i) {
6730 // The final sentinel top-level index has no associated 2nd level page
6731 if (IndexEntries[i].SecondLevelPageStart == 0)
6732 break;
6733
6734 outs() << " Second level index[" << i << "]: "
6735 << "offset in section="
6736 << format("0x%08" PRIx32, IndexEntries[i].SecondLevelPageStart)
6737 << ", "
6738 << "base function offset="
6739 << format("0x%08" PRIx32, IndexEntries[i].FunctionOffset) << '\n';
6740
6741 Pos = Contents.data() + IndexEntries[i].SecondLevelPageStart;
Aaron Ballman80930af2014-08-14 13:53:19 +00006742 uint32_t Kind = *reinterpret_cast<const support::ulittle32_t *>(Pos);
Tim Northover39c70bb2014-08-12 11:52:59 +00006743 if (Kind == 2)
6744 printRegularSecondLevelUnwindPage(Pos);
6745 else if (Kind == 3)
6746 printCompressedSecondLevelUnwindPage(Pos, IndexEntries[i].FunctionOffset,
6747 CommonEncodings);
6748 else
6749 llvm_unreachable("Do not know how to print this kind of 2nd level page");
Tim Northover39c70bb2014-08-12 11:52:59 +00006750 }
6751}
6752
Tim Northover4bd286a2014-08-01 13:07:19 +00006753void llvm::printMachOUnwindInfo(const MachOObjectFile *Obj) {
6754 std::map<uint64_t, SymbolRef> Symbols;
6755 for (const SymbolRef &SymRef : Obj->symbols()) {
6756 // Discard any undefined or absolute symbols. They're not going to take part
6757 // in the convenience lookup for unwind info and just take up resources.
Rafael Espindola8bab8892015-08-07 23:27:14 +00006758 section_iterator Section = *SymRef.getSection();
Tim Northover4bd286a2014-08-01 13:07:19 +00006759 if (Section == Obj->section_end())
6760 continue;
6761
Rafael Espindoladea00162015-07-03 17:44:18 +00006762 uint64_t Addr = SymRef.getValue();
Tim Northover4bd286a2014-08-01 13:07:19 +00006763 Symbols.insert(std::make_pair(Addr, SymRef));
6764 }
6765
6766 for (const SectionRef &Section : Obj->sections()) {
6767 StringRef SectName;
6768 Section.getName(SectName);
6769 if (SectName == "__compact_unwind")
6770 printMachOCompactUnwindSection(Obj, Symbols, Section);
6771 else if (SectName == "__unwind_info")
Tim Northover39c70bb2014-08-12 11:52:59 +00006772 printMachOUnwindInfoSection(Obj, Symbols, Section);
Tim Northover4bd286a2014-08-01 13:07:19 +00006773 else if (SectName == "__eh_frame")
6774 outs() << "llvm-objdump: warning: unhandled __eh_frame section\n";
Tim Northover4bd286a2014-08-01 13:07:19 +00006775 }
6776}
Kevin Enderbyb76d3862014-08-22 20:35:18 +00006777
6778static void PrintMachHeader(uint32_t magic, uint32_t cputype,
6779 uint32_t cpusubtype, uint32_t filetype,
6780 uint32_t ncmds, uint32_t sizeofcmds, uint32_t flags,
6781 bool verbose) {
6782 outs() << "Mach header\n";
6783 outs() << " magic cputype cpusubtype caps filetype ncmds "
6784 "sizeofcmds flags\n";
6785 if (verbose) {
6786 if (magic == MachO::MH_MAGIC)
6787 outs() << " MH_MAGIC";
6788 else if (magic == MachO::MH_MAGIC_64)
6789 outs() << "MH_MAGIC_64";
6790 else
6791 outs() << format(" 0x%08" PRIx32, magic);
6792 switch (cputype) {
6793 case MachO::CPU_TYPE_I386:
6794 outs() << " I386";
6795 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6796 case MachO::CPU_SUBTYPE_I386_ALL:
6797 outs() << " ALL";
6798 break;
6799 default:
6800 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6801 break;
6802 }
6803 break;
6804 case MachO::CPU_TYPE_X86_64:
6805 outs() << " X86_64";
Kevin Enderby131d1772015-01-09 19:22:37 +00006806 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6807 case MachO::CPU_SUBTYPE_X86_64_ALL:
6808 outs() << " ALL";
6809 break;
6810 case MachO::CPU_SUBTYPE_X86_64_H:
6811 outs() << " Haswell";
6812 break;
6813 default:
6814 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6815 break;
6816 }
Kevin Enderbyb76d3862014-08-22 20:35:18 +00006817 break;
6818 case MachO::CPU_TYPE_ARM:
6819 outs() << " ARM";
6820 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6821 case MachO::CPU_SUBTYPE_ARM_ALL:
6822 outs() << " ALL";
6823 break;
6824 case MachO::CPU_SUBTYPE_ARM_V4T:
6825 outs() << " V4T";
6826 break;
6827 case MachO::CPU_SUBTYPE_ARM_V5TEJ:
6828 outs() << " V5TEJ";
6829 break;
6830 case MachO::CPU_SUBTYPE_ARM_XSCALE:
6831 outs() << " XSCALE";
6832 break;
6833 case MachO::CPU_SUBTYPE_ARM_V6:
6834 outs() << " V6";
6835 break;
6836 case MachO::CPU_SUBTYPE_ARM_V6M:
6837 outs() << " V6M";
6838 break;
6839 case MachO::CPU_SUBTYPE_ARM_V7:
6840 outs() << " V7";
6841 break;
6842 case MachO::CPU_SUBTYPE_ARM_V7EM:
6843 outs() << " V7EM";
6844 break;
6845 case MachO::CPU_SUBTYPE_ARM_V7K:
6846 outs() << " V7K";
6847 break;
6848 case MachO::CPU_SUBTYPE_ARM_V7M:
6849 outs() << " V7M";
6850 break;
6851 case MachO::CPU_SUBTYPE_ARM_V7S:
6852 outs() << " V7S";
6853 break;
6854 default:
6855 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6856 break;
6857 }
6858 break;
6859 case MachO::CPU_TYPE_ARM64:
6860 outs() << " ARM64";
6861 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6862 case MachO::CPU_SUBTYPE_ARM64_ALL:
6863 outs() << " ALL";
6864 break;
6865 default:
6866 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6867 break;
6868 }
6869 break;
6870 case MachO::CPU_TYPE_POWERPC:
6871 outs() << " PPC";
6872 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6873 case MachO::CPU_SUBTYPE_POWERPC_ALL:
6874 outs() << " ALL";
6875 break;
6876 default:
6877 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6878 break;
6879 }
6880 break;
6881 case MachO::CPU_TYPE_POWERPC64:
6882 outs() << " PPC64";
6883 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6884 case MachO::CPU_SUBTYPE_POWERPC_ALL:
6885 outs() << " ALL";
6886 break;
6887 default:
6888 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6889 break;
6890 }
6891 break;
6892 }
6893 if ((cpusubtype & MachO::CPU_SUBTYPE_MASK) == MachO::CPU_SUBTYPE_LIB64) {
Kevin Enderby8ae63c12014-09-04 16:54:47 +00006894 outs() << " LIB64";
Kevin Enderbyb76d3862014-08-22 20:35:18 +00006895 } else {
6896 outs() << format(" 0x%02" PRIx32,
6897 (cpusubtype & MachO::CPU_SUBTYPE_MASK) >> 24);
6898 }
6899 switch (filetype) {
6900 case MachO::MH_OBJECT:
6901 outs() << " OBJECT";
6902 break;
6903 case MachO::MH_EXECUTE:
6904 outs() << " EXECUTE";
6905 break;
6906 case MachO::MH_FVMLIB:
6907 outs() << " FVMLIB";
6908 break;
6909 case MachO::MH_CORE:
6910 outs() << " CORE";
6911 break;
6912 case MachO::MH_PRELOAD:
6913 outs() << " PRELOAD";
6914 break;
6915 case MachO::MH_DYLIB:
6916 outs() << " DYLIB";
6917 break;
6918 case MachO::MH_DYLIB_STUB:
6919 outs() << " DYLIB_STUB";
6920 break;
6921 case MachO::MH_DYLINKER:
6922 outs() << " DYLINKER";
6923 break;
6924 case MachO::MH_BUNDLE:
6925 outs() << " BUNDLE";
6926 break;
6927 case MachO::MH_DSYM:
6928 outs() << " DSYM";
6929 break;
6930 case MachO::MH_KEXT_BUNDLE:
6931 outs() << " KEXTBUNDLE";
6932 break;
6933 default:
6934 outs() << format(" %10u", filetype);
6935 break;
6936 }
6937 outs() << format(" %5u", ncmds);
6938 outs() << format(" %10u", sizeofcmds);
6939 uint32_t f = flags;
6940 if (f & MachO::MH_NOUNDEFS) {
6941 outs() << " NOUNDEFS";
6942 f &= ~MachO::MH_NOUNDEFS;
6943 }
6944 if (f & MachO::MH_INCRLINK) {
6945 outs() << " INCRLINK";
6946 f &= ~MachO::MH_INCRLINK;
6947 }
6948 if (f & MachO::MH_DYLDLINK) {
6949 outs() << " DYLDLINK";
6950 f &= ~MachO::MH_DYLDLINK;
6951 }
6952 if (f & MachO::MH_BINDATLOAD) {
6953 outs() << " BINDATLOAD";
6954 f &= ~MachO::MH_BINDATLOAD;
6955 }
6956 if (f & MachO::MH_PREBOUND) {
6957 outs() << " PREBOUND";
6958 f &= ~MachO::MH_PREBOUND;
6959 }
6960 if (f & MachO::MH_SPLIT_SEGS) {
6961 outs() << " SPLIT_SEGS";
6962 f &= ~MachO::MH_SPLIT_SEGS;
6963 }
6964 if (f & MachO::MH_LAZY_INIT) {
6965 outs() << " LAZY_INIT";
6966 f &= ~MachO::MH_LAZY_INIT;
6967 }
6968 if (f & MachO::MH_TWOLEVEL) {
6969 outs() << " TWOLEVEL";
6970 f &= ~MachO::MH_TWOLEVEL;
6971 }
6972 if (f & MachO::MH_FORCE_FLAT) {
6973 outs() << " FORCE_FLAT";
6974 f &= ~MachO::MH_FORCE_FLAT;
6975 }
6976 if (f & MachO::MH_NOMULTIDEFS) {
6977 outs() << " NOMULTIDEFS";
6978 f &= ~MachO::MH_NOMULTIDEFS;
6979 }
6980 if (f & MachO::MH_NOFIXPREBINDING) {
6981 outs() << " NOFIXPREBINDING";
6982 f &= ~MachO::MH_NOFIXPREBINDING;
6983 }
6984 if (f & MachO::MH_PREBINDABLE) {
6985 outs() << " PREBINDABLE";
6986 f &= ~MachO::MH_PREBINDABLE;
6987 }
6988 if (f & MachO::MH_ALLMODSBOUND) {
6989 outs() << " ALLMODSBOUND";
6990 f &= ~MachO::MH_ALLMODSBOUND;
6991 }
6992 if (f & MachO::MH_SUBSECTIONS_VIA_SYMBOLS) {
6993 outs() << " SUBSECTIONS_VIA_SYMBOLS";
6994 f &= ~MachO::MH_SUBSECTIONS_VIA_SYMBOLS;
6995 }
6996 if (f & MachO::MH_CANONICAL) {
6997 outs() << " CANONICAL";
6998 f &= ~MachO::MH_CANONICAL;
6999 }
7000 if (f & MachO::MH_WEAK_DEFINES) {
7001 outs() << " WEAK_DEFINES";
7002 f &= ~MachO::MH_WEAK_DEFINES;
7003 }
7004 if (f & MachO::MH_BINDS_TO_WEAK) {
7005 outs() << " BINDS_TO_WEAK";
7006 f &= ~MachO::MH_BINDS_TO_WEAK;
7007 }
7008 if (f & MachO::MH_ALLOW_STACK_EXECUTION) {
7009 outs() << " ALLOW_STACK_EXECUTION";
7010 f &= ~MachO::MH_ALLOW_STACK_EXECUTION;
7011 }
7012 if (f & MachO::MH_DEAD_STRIPPABLE_DYLIB) {
7013 outs() << " DEAD_STRIPPABLE_DYLIB";
7014 f &= ~MachO::MH_DEAD_STRIPPABLE_DYLIB;
7015 }
7016 if (f & MachO::MH_PIE) {
7017 outs() << " PIE";
7018 f &= ~MachO::MH_PIE;
7019 }
7020 if (f & MachO::MH_NO_REEXPORTED_DYLIBS) {
7021 outs() << " NO_REEXPORTED_DYLIBS";
7022 f &= ~MachO::MH_NO_REEXPORTED_DYLIBS;
7023 }
7024 if (f & MachO::MH_HAS_TLV_DESCRIPTORS) {
7025 outs() << " MH_HAS_TLV_DESCRIPTORS";
7026 f &= ~MachO::MH_HAS_TLV_DESCRIPTORS;
7027 }
7028 if (f & MachO::MH_NO_HEAP_EXECUTION) {
7029 outs() << " MH_NO_HEAP_EXECUTION";
7030 f &= ~MachO::MH_NO_HEAP_EXECUTION;
7031 }
7032 if (f & MachO::MH_APP_EXTENSION_SAFE) {
7033 outs() << " APP_EXTENSION_SAFE";
7034 f &= ~MachO::MH_APP_EXTENSION_SAFE;
7035 }
7036 if (f != 0 || flags == 0)
7037 outs() << format(" 0x%08" PRIx32, f);
7038 } else {
7039 outs() << format(" 0x%08" PRIx32, magic);
7040 outs() << format(" %7d", cputype);
7041 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
7042 outs() << format(" 0x%02" PRIx32,
7043 (cpusubtype & MachO::CPU_SUBTYPE_MASK) >> 24);
7044 outs() << format(" %10u", filetype);
7045 outs() << format(" %5u", ncmds);
7046 outs() << format(" %10u", sizeofcmds);
7047 outs() << format(" 0x%08" PRIx32, flags);
7048 }
7049 outs() << "\n";
7050}
7051
Kevin Enderby956366c2014-08-29 22:30:52 +00007052static void PrintSegmentCommand(uint32_t cmd, uint32_t cmdsize,
7053 StringRef SegName, uint64_t vmaddr,
7054 uint64_t vmsize, uint64_t fileoff,
7055 uint64_t filesize, uint32_t maxprot,
7056 uint32_t initprot, uint32_t nsects,
7057 uint32_t flags, uint32_t object_size,
7058 bool verbose) {
7059 uint64_t expected_cmdsize;
7060 if (cmd == MachO::LC_SEGMENT) {
7061 outs() << " cmd LC_SEGMENT\n";
7062 expected_cmdsize = nsects;
7063 expected_cmdsize *= sizeof(struct MachO::section);
7064 expected_cmdsize += sizeof(struct MachO::segment_command);
7065 } else {
7066 outs() << " cmd LC_SEGMENT_64\n";
7067 expected_cmdsize = nsects;
7068 expected_cmdsize *= sizeof(struct MachO::section_64);
7069 expected_cmdsize += sizeof(struct MachO::segment_command_64);
7070 }
7071 outs() << " cmdsize " << cmdsize;
7072 if (cmdsize != expected_cmdsize)
7073 outs() << " Inconsistent size\n";
7074 else
7075 outs() << "\n";
7076 outs() << " segname " << SegName << "\n";
7077 if (cmd == MachO::LC_SEGMENT_64) {
7078 outs() << " vmaddr " << format("0x%016" PRIx64, vmaddr) << "\n";
7079 outs() << " vmsize " << format("0x%016" PRIx64, vmsize) << "\n";
7080 } else {
Kevin Enderbyadb7c432014-12-16 18:58:11 +00007081 outs() << " vmaddr " << format("0x%08" PRIx64, vmaddr) << "\n";
7082 outs() << " vmsize " << format("0x%08" PRIx64, vmsize) << "\n";
Kevin Enderby956366c2014-08-29 22:30:52 +00007083 }
7084 outs() << " fileoff " << fileoff;
7085 if (fileoff > object_size)
7086 outs() << " (past end of file)\n";
7087 else
7088 outs() << "\n";
7089 outs() << " filesize " << filesize;
7090 if (fileoff + filesize > object_size)
7091 outs() << " (past end of file)\n";
7092 else
7093 outs() << "\n";
7094 if (verbose) {
7095 if ((maxprot &
7096 ~(MachO::VM_PROT_READ | MachO::VM_PROT_WRITE |
7097 MachO::VM_PROT_EXECUTE)) != 0)
7098 outs() << " maxprot ?" << format("0x%08" PRIx32, maxprot) << "\n";
7099 else {
Davide Italiano37ff06a2015-09-02 16:53:25 +00007100 outs() << " maxprot ";
7101 outs() << ((maxprot & MachO::VM_PROT_READ) ? "r" : "-");
7102 outs() << ((maxprot & MachO::VM_PROT_WRITE) ? "w" : "-");
7103 outs() << ((maxprot & MachO::VM_PROT_EXECUTE) ? "x\n" : "-\n");
Kevin Enderby956366c2014-08-29 22:30:52 +00007104 }
7105 if ((initprot &
7106 ~(MachO::VM_PROT_READ | MachO::VM_PROT_WRITE |
7107 MachO::VM_PROT_EXECUTE)) != 0)
7108 outs() << " initprot ?" << format("0x%08" PRIx32, initprot) << "\n";
7109 else {
Davide Italiano37ff06a2015-09-02 16:53:25 +00007110 outs() << " initprot ";
7111 outs() << ((initprot & MachO::VM_PROT_READ) ? "r" : "-");
7112 outs() << ((initprot & MachO::VM_PROT_WRITE) ? "w" : "-");
7113 outs() << ((initprot & MachO::VM_PROT_EXECUTE) ? "x\n" : "-\n");
Kevin Enderby956366c2014-08-29 22:30:52 +00007114 }
7115 } else {
7116 outs() << " maxprot " << format("0x%08" PRIx32, maxprot) << "\n";
7117 outs() << " initprot " << format("0x%08" PRIx32, initprot) << "\n";
7118 }
7119 outs() << " nsects " << nsects << "\n";
7120 if (verbose) {
7121 outs() << " flags";
7122 if (flags == 0)
7123 outs() << " (none)\n";
7124 else {
7125 if (flags & MachO::SG_HIGHVM) {
7126 outs() << " HIGHVM";
7127 flags &= ~MachO::SG_HIGHVM;
7128 }
7129 if (flags & MachO::SG_FVMLIB) {
7130 outs() << " FVMLIB";
7131 flags &= ~MachO::SG_FVMLIB;
7132 }
7133 if (flags & MachO::SG_NORELOC) {
7134 outs() << " NORELOC";
7135 flags &= ~MachO::SG_NORELOC;
7136 }
7137 if (flags & MachO::SG_PROTECTED_VERSION_1) {
7138 outs() << " PROTECTED_VERSION_1";
7139 flags &= ~MachO::SG_PROTECTED_VERSION_1;
7140 }
7141 if (flags)
7142 outs() << format(" 0x%08" PRIx32, flags) << " (unknown flags)\n";
7143 else
7144 outs() << "\n";
7145 }
7146 } else {
7147 outs() << " flags " << format("0x%" PRIx32, flags) << "\n";
7148 }
7149}
7150
7151static void PrintSection(const char *sectname, const char *segname,
7152 uint64_t addr, uint64_t size, uint32_t offset,
7153 uint32_t align, uint32_t reloff, uint32_t nreloc,
7154 uint32_t flags, uint32_t reserved1, uint32_t reserved2,
7155 uint32_t cmd, const char *sg_segname,
7156 uint32_t filetype, uint32_t object_size,
7157 bool verbose) {
7158 outs() << "Section\n";
7159 outs() << " sectname " << format("%.16s\n", sectname);
7160 outs() << " segname " << format("%.16s", segname);
7161 if (filetype != MachO::MH_OBJECT && strncmp(sg_segname, segname, 16) != 0)
7162 outs() << " (does not match segment)\n";
7163 else
7164 outs() << "\n";
7165 if (cmd == MachO::LC_SEGMENT_64) {
7166 outs() << " addr " << format("0x%016" PRIx64, addr) << "\n";
7167 outs() << " size " << format("0x%016" PRIx64, size);
7168 } else {
Kevin Enderby75594b62014-12-16 21:00:25 +00007169 outs() << " addr " << format("0x%08" PRIx64, addr) << "\n";
7170 outs() << " size " << format("0x%08" PRIx64, size);
Kevin Enderby956366c2014-08-29 22:30:52 +00007171 }
7172 if ((flags & MachO::S_ZEROFILL) != 0 && offset + size > object_size)
7173 outs() << " (past end of file)\n";
7174 else
7175 outs() << "\n";
7176 outs() << " offset " << offset;
7177 if (offset > object_size)
7178 outs() << " (past end of file)\n";
7179 else
7180 outs() << "\n";
7181 uint32_t align_shifted = 1 << align;
7182 outs() << " align 2^" << align << " (" << align_shifted << ")\n";
7183 outs() << " reloff " << reloff;
7184 if (reloff > object_size)
7185 outs() << " (past end of file)\n";
7186 else
7187 outs() << "\n";
7188 outs() << " nreloc " << nreloc;
7189 if (reloff + nreloc * sizeof(struct MachO::relocation_info) > object_size)
7190 outs() << " (past end of file)\n";
7191 else
7192 outs() << "\n";
7193 uint32_t section_type = flags & MachO::SECTION_TYPE;
7194 if (verbose) {
7195 outs() << " type";
7196 if (section_type == MachO::S_REGULAR)
7197 outs() << " S_REGULAR\n";
7198 else if (section_type == MachO::S_ZEROFILL)
7199 outs() << " S_ZEROFILL\n";
7200 else if (section_type == MachO::S_CSTRING_LITERALS)
7201 outs() << " S_CSTRING_LITERALS\n";
7202 else if (section_type == MachO::S_4BYTE_LITERALS)
7203 outs() << " S_4BYTE_LITERALS\n";
7204 else if (section_type == MachO::S_8BYTE_LITERALS)
7205 outs() << " S_8BYTE_LITERALS\n";
7206 else if (section_type == MachO::S_16BYTE_LITERALS)
7207 outs() << " S_16BYTE_LITERALS\n";
7208 else if (section_type == MachO::S_LITERAL_POINTERS)
7209 outs() << " S_LITERAL_POINTERS\n";
7210 else if (section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS)
7211 outs() << " S_NON_LAZY_SYMBOL_POINTERS\n";
7212 else if (section_type == MachO::S_LAZY_SYMBOL_POINTERS)
7213 outs() << " S_LAZY_SYMBOL_POINTERS\n";
7214 else if (section_type == MachO::S_SYMBOL_STUBS)
7215 outs() << " S_SYMBOL_STUBS\n";
7216 else if (section_type == MachO::S_MOD_INIT_FUNC_POINTERS)
7217 outs() << " S_MOD_INIT_FUNC_POINTERS\n";
7218 else if (section_type == MachO::S_MOD_TERM_FUNC_POINTERS)
7219 outs() << " S_MOD_TERM_FUNC_POINTERS\n";
7220 else if (section_type == MachO::S_COALESCED)
7221 outs() << " S_COALESCED\n";
7222 else if (section_type == MachO::S_INTERPOSING)
7223 outs() << " S_INTERPOSING\n";
7224 else if (section_type == MachO::S_DTRACE_DOF)
7225 outs() << " S_DTRACE_DOF\n";
7226 else if (section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS)
7227 outs() << " S_LAZY_DYLIB_SYMBOL_POINTERS\n";
7228 else if (section_type == MachO::S_THREAD_LOCAL_REGULAR)
7229 outs() << " S_THREAD_LOCAL_REGULAR\n";
7230 else if (section_type == MachO::S_THREAD_LOCAL_ZEROFILL)
7231 outs() << " S_THREAD_LOCAL_ZEROFILL\n";
7232 else if (section_type == MachO::S_THREAD_LOCAL_VARIABLES)
7233 outs() << " S_THREAD_LOCAL_VARIABLES\n";
7234 else if (section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS)
7235 outs() << " S_THREAD_LOCAL_VARIABLE_POINTERS\n";
7236 else if (section_type == MachO::S_THREAD_LOCAL_INIT_FUNCTION_POINTERS)
7237 outs() << " S_THREAD_LOCAL_INIT_FUNCTION_POINTERS\n";
7238 else
7239 outs() << format("0x%08" PRIx32, section_type) << "\n";
7240 outs() << "attributes";
7241 uint32_t section_attributes = flags & MachO::SECTION_ATTRIBUTES;
7242 if (section_attributes & MachO::S_ATTR_PURE_INSTRUCTIONS)
7243 outs() << " PURE_INSTRUCTIONS";
7244 if (section_attributes & MachO::S_ATTR_NO_TOC)
7245 outs() << " NO_TOC";
7246 if (section_attributes & MachO::S_ATTR_STRIP_STATIC_SYMS)
7247 outs() << " STRIP_STATIC_SYMS";
7248 if (section_attributes & MachO::S_ATTR_NO_DEAD_STRIP)
7249 outs() << " NO_DEAD_STRIP";
7250 if (section_attributes & MachO::S_ATTR_LIVE_SUPPORT)
7251 outs() << " LIVE_SUPPORT";
7252 if (section_attributes & MachO::S_ATTR_SELF_MODIFYING_CODE)
7253 outs() << " SELF_MODIFYING_CODE";
7254 if (section_attributes & MachO::S_ATTR_DEBUG)
7255 outs() << " DEBUG";
7256 if (section_attributes & MachO::S_ATTR_SOME_INSTRUCTIONS)
7257 outs() << " SOME_INSTRUCTIONS";
7258 if (section_attributes & MachO::S_ATTR_EXT_RELOC)
7259 outs() << " EXT_RELOC";
7260 if (section_attributes & MachO::S_ATTR_LOC_RELOC)
7261 outs() << " LOC_RELOC";
7262 if (section_attributes == 0)
7263 outs() << " (none)";
7264 outs() << "\n";
7265 } else
7266 outs() << " flags " << format("0x%08" PRIx32, flags) << "\n";
7267 outs() << " reserved1 " << reserved1;
7268 if (section_type == MachO::S_SYMBOL_STUBS ||
7269 section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
7270 section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
7271 section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
7272 section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS)
7273 outs() << " (index into indirect symbol table)\n";
7274 else
7275 outs() << "\n";
7276 outs() << " reserved2 " << reserved2;
7277 if (section_type == MachO::S_SYMBOL_STUBS)
7278 outs() << " (size of stubs)\n";
7279 else
7280 outs() << "\n";
7281}
7282
David Majnemer73cc6ff2014-11-13 19:48:56 +00007283static void PrintSymtabLoadCommand(MachO::symtab_command st, bool Is64Bit,
Kevin Enderby956366c2014-08-29 22:30:52 +00007284 uint32_t object_size) {
7285 outs() << " cmd LC_SYMTAB\n";
7286 outs() << " cmdsize " << st.cmdsize;
7287 if (st.cmdsize != sizeof(struct MachO::symtab_command))
7288 outs() << " Incorrect size\n";
7289 else
7290 outs() << "\n";
7291 outs() << " symoff " << st.symoff;
7292 if (st.symoff > object_size)
7293 outs() << " (past end of file)\n";
7294 else
7295 outs() << "\n";
7296 outs() << " nsyms " << st.nsyms;
7297 uint64_t big_size;
David Majnemer73cc6ff2014-11-13 19:48:56 +00007298 if (Is64Bit) {
Kevin Enderby956366c2014-08-29 22:30:52 +00007299 big_size = st.nsyms;
7300 big_size *= sizeof(struct MachO::nlist_64);
7301 big_size += st.symoff;
7302 if (big_size > object_size)
7303 outs() << " (past end of file)\n";
7304 else
7305 outs() << "\n";
7306 } else {
7307 big_size = st.nsyms;
7308 big_size *= sizeof(struct MachO::nlist);
7309 big_size += st.symoff;
7310 if (big_size > object_size)
7311 outs() << " (past end of file)\n";
7312 else
7313 outs() << "\n";
7314 }
7315 outs() << " stroff " << st.stroff;
7316 if (st.stroff > object_size)
7317 outs() << " (past end of file)\n";
7318 else
7319 outs() << "\n";
7320 outs() << " strsize " << st.strsize;
7321 big_size = st.stroff;
7322 big_size += st.strsize;
7323 if (big_size > object_size)
7324 outs() << " (past end of file)\n";
7325 else
7326 outs() << "\n";
7327}
7328
7329static void PrintDysymtabLoadCommand(MachO::dysymtab_command dyst,
7330 uint32_t nsyms, uint32_t object_size,
David Majnemer73cc6ff2014-11-13 19:48:56 +00007331 bool Is64Bit) {
Kevin Enderby956366c2014-08-29 22:30:52 +00007332 outs() << " cmd LC_DYSYMTAB\n";
7333 outs() << " cmdsize " << dyst.cmdsize;
7334 if (dyst.cmdsize != sizeof(struct MachO::dysymtab_command))
7335 outs() << " Incorrect size\n";
7336 else
7337 outs() << "\n";
7338 outs() << " ilocalsym " << dyst.ilocalsym;
7339 if (dyst.ilocalsym > nsyms)
7340 outs() << " (greater than the number of symbols)\n";
7341 else
7342 outs() << "\n";
7343 outs() << " nlocalsym " << dyst.nlocalsym;
7344 uint64_t big_size;
7345 big_size = dyst.ilocalsym;
7346 big_size += dyst.nlocalsym;
7347 if (big_size > nsyms)
7348 outs() << " (past the end of the symbol table)\n";
7349 else
7350 outs() << "\n";
7351 outs() << " iextdefsym " << dyst.iextdefsym;
7352 if (dyst.iextdefsym > nsyms)
7353 outs() << " (greater than the number of symbols)\n";
7354 else
7355 outs() << "\n";
7356 outs() << " nextdefsym " << dyst.nextdefsym;
7357 big_size = dyst.iextdefsym;
7358 big_size += dyst.nextdefsym;
7359 if (big_size > nsyms)
7360 outs() << " (past the end of the symbol table)\n";
7361 else
7362 outs() << "\n";
7363 outs() << " iundefsym " << dyst.iundefsym;
7364 if (dyst.iundefsym > nsyms)
7365 outs() << " (greater than the number of symbols)\n";
7366 else
7367 outs() << "\n";
7368 outs() << " nundefsym " << dyst.nundefsym;
7369 big_size = dyst.iundefsym;
7370 big_size += dyst.nundefsym;
7371 if (big_size > nsyms)
7372 outs() << " (past the end of the symbol table)\n";
7373 else
7374 outs() << "\n";
7375 outs() << " tocoff " << dyst.tocoff;
7376 if (dyst.tocoff > object_size)
7377 outs() << " (past end of file)\n";
7378 else
7379 outs() << "\n";
7380 outs() << " ntoc " << dyst.ntoc;
7381 big_size = dyst.ntoc;
7382 big_size *= sizeof(struct MachO::dylib_table_of_contents);
7383 big_size += dyst.tocoff;
7384 if (big_size > object_size)
7385 outs() << " (past end of file)\n";
7386 else
7387 outs() << "\n";
7388 outs() << " modtaboff " << dyst.modtaboff;
7389 if (dyst.modtaboff > object_size)
7390 outs() << " (past end of file)\n";
7391 else
7392 outs() << "\n";
7393 outs() << " nmodtab " << dyst.nmodtab;
7394 uint64_t modtabend;
David Majnemer73cc6ff2014-11-13 19:48:56 +00007395 if (Is64Bit) {
Kevin Enderby956366c2014-08-29 22:30:52 +00007396 modtabend = dyst.nmodtab;
7397 modtabend *= sizeof(struct MachO::dylib_module_64);
7398 modtabend += dyst.modtaboff;
7399 } else {
7400 modtabend = dyst.nmodtab;
7401 modtabend *= sizeof(struct MachO::dylib_module);
7402 modtabend += dyst.modtaboff;
7403 }
7404 if (modtabend > object_size)
7405 outs() << " (past end of file)\n";
7406 else
7407 outs() << "\n";
7408 outs() << " extrefsymoff " << dyst.extrefsymoff;
7409 if (dyst.extrefsymoff > object_size)
7410 outs() << " (past end of file)\n";
7411 else
7412 outs() << "\n";
7413 outs() << " nextrefsyms " << dyst.nextrefsyms;
7414 big_size = dyst.nextrefsyms;
7415 big_size *= sizeof(struct MachO::dylib_reference);
7416 big_size += dyst.extrefsymoff;
7417 if (big_size > object_size)
7418 outs() << " (past end of file)\n";
7419 else
7420 outs() << "\n";
7421 outs() << " indirectsymoff " << dyst.indirectsymoff;
7422 if (dyst.indirectsymoff > object_size)
7423 outs() << " (past end of file)\n";
7424 else
7425 outs() << "\n";
7426 outs() << " nindirectsyms " << dyst.nindirectsyms;
7427 big_size = dyst.nindirectsyms;
7428 big_size *= sizeof(uint32_t);
7429 big_size += dyst.indirectsymoff;
7430 if (big_size > object_size)
7431 outs() << " (past end of file)\n";
7432 else
7433 outs() << "\n";
7434 outs() << " extreloff " << dyst.extreloff;
7435 if (dyst.extreloff > object_size)
7436 outs() << " (past end of file)\n";
7437 else
7438 outs() << "\n";
7439 outs() << " nextrel " << dyst.nextrel;
7440 big_size = dyst.nextrel;
7441 big_size *= sizeof(struct MachO::relocation_info);
7442 big_size += dyst.extreloff;
7443 if (big_size > object_size)
7444 outs() << " (past end of file)\n";
7445 else
7446 outs() << "\n";
7447 outs() << " locreloff " << dyst.locreloff;
7448 if (dyst.locreloff > object_size)
7449 outs() << " (past end of file)\n";
7450 else
7451 outs() << "\n";
7452 outs() << " nlocrel " << dyst.nlocrel;
7453 big_size = dyst.nlocrel;
7454 big_size *= sizeof(struct MachO::relocation_info);
7455 big_size += dyst.locreloff;
7456 if (big_size > object_size)
7457 outs() << " (past end of file)\n";
7458 else
7459 outs() << "\n";
7460}
7461
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007462static void PrintDyldInfoLoadCommand(MachO::dyld_info_command dc,
7463 uint32_t object_size) {
7464 if (dc.cmd == MachO::LC_DYLD_INFO)
7465 outs() << " cmd LC_DYLD_INFO\n";
7466 else
7467 outs() << " cmd LC_DYLD_INFO_ONLY\n";
7468 outs() << " cmdsize " << dc.cmdsize;
7469 if (dc.cmdsize != sizeof(struct MachO::dyld_info_command))
7470 outs() << " Incorrect size\n";
7471 else
7472 outs() << "\n";
7473 outs() << " rebase_off " << dc.rebase_off;
7474 if (dc.rebase_off > object_size)
7475 outs() << " (past end of file)\n";
7476 else
7477 outs() << "\n";
7478 outs() << " rebase_size " << dc.rebase_size;
7479 uint64_t big_size;
7480 big_size = dc.rebase_off;
7481 big_size += dc.rebase_size;
7482 if (big_size > object_size)
7483 outs() << " (past end of file)\n";
7484 else
7485 outs() << "\n";
7486 outs() << " bind_off " << dc.bind_off;
7487 if (dc.bind_off > object_size)
7488 outs() << " (past end of file)\n";
7489 else
7490 outs() << "\n";
7491 outs() << " bind_size " << dc.bind_size;
7492 big_size = dc.bind_off;
7493 big_size += dc.bind_size;
7494 if (big_size > object_size)
7495 outs() << " (past end of file)\n";
7496 else
7497 outs() << "\n";
7498 outs() << " weak_bind_off " << dc.weak_bind_off;
7499 if (dc.weak_bind_off > object_size)
7500 outs() << " (past end of file)\n";
7501 else
7502 outs() << "\n";
7503 outs() << " weak_bind_size " << dc.weak_bind_size;
7504 big_size = dc.weak_bind_off;
7505 big_size += dc.weak_bind_size;
7506 if (big_size > object_size)
7507 outs() << " (past end of file)\n";
7508 else
7509 outs() << "\n";
7510 outs() << " lazy_bind_off " << dc.lazy_bind_off;
7511 if (dc.lazy_bind_off > object_size)
7512 outs() << " (past end of file)\n";
7513 else
7514 outs() << "\n";
7515 outs() << " lazy_bind_size " << dc.lazy_bind_size;
7516 big_size = dc.lazy_bind_off;
7517 big_size += dc.lazy_bind_size;
7518 if (big_size > object_size)
7519 outs() << " (past end of file)\n";
7520 else
7521 outs() << "\n";
7522 outs() << " export_off " << dc.export_off;
7523 if (dc.export_off > object_size)
7524 outs() << " (past end of file)\n";
7525 else
7526 outs() << "\n";
7527 outs() << " export_size " << dc.export_size;
7528 big_size = dc.export_off;
7529 big_size += dc.export_size;
7530 if (big_size > object_size)
7531 outs() << " (past end of file)\n";
7532 else
7533 outs() << "\n";
7534}
7535
7536static void PrintDyldLoadCommand(MachO::dylinker_command dyld,
7537 const char *Ptr) {
7538 if (dyld.cmd == MachO::LC_ID_DYLINKER)
7539 outs() << " cmd LC_ID_DYLINKER\n";
7540 else if (dyld.cmd == MachO::LC_LOAD_DYLINKER)
7541 outs() << " cmd LC_LOAD_DYLINKER\n";
7542 else if (dyld.cmd == MachO::LC_DYLD_ENVIRONMENT)
7543 outs() << " cmd LC_DYLD_ENVIRONMENT\n";
7544 else
7545 outs() << " cmd ?(" << dyld.cmd << ")\n";
7546 outs() << " cmdsize " << dyld.cmdsize;
7547 if (dyld.cmdsize < sizeof(struct MachO::dylinker_command))
7548 outs() << " Incorrect size\n";
7549 else
7550 outs() << "\n";
7551 if (dyld.name >= dyld.cmdsize)
7552 outs() << " name ?(bad offset " << dyld.name << ")\n";
7553 else {
Kevin Enderbyb28ed012014-10-29 21:28:24 +00007554 const char *P = (const char *)(Ptr) + dyld.name;
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007555 outs() << " name " << P << " (offset " << dyld.name << ")\n";
7556 }
7557}
7558
7559static void PrintUuidLoadCommand(MachO::uuid_command uuid) {
7560 outs() << " cmd LC_UUID\n";
7561 outs() << " cmdsize " << uuid.cmdsize;
7562 if (uuid.cmdsize != sizeof(struct MachO::uuid_command))
7563 outs() << " Incorrect size\n";
7564 else
7565 outs() << "\n";
7566 outs() << " uuid ";
Davide Italianoc74277a2015-12-07 00:03:28 +00007567 for (int i = 0; i < 16; ++i) {
7568 outs() << format("%02" PRIX32, uuid.uuid[i]);
7569 if (i == 3 || i == 5 || i == 7 || i == 9)
7570 outs() << "-";
7571 }
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007572 outs() << "\n";
7573}
7574
Kevin Enderby66d51fc2015-01-08 00:25:24 +00007575static void PrintRpathLoadCommand(MachO::rpath_command rpath, const char *Ptr) {
Jean-Daniel Dupas00cc1f52014-12-04 07:37:02 +00007576 outs() << " cmd LC_RPATH\n";
7577 outs() << " cmdsize " << rpath.cmdsize;
7578 if (rpath.cmdsize < sizeof(struct MachO::rpath_command))
7579 outs() << " Incorrect size\n";
7580 else
7581 outs() << "\n";
7582 if (rpath.path >= rpath.cmdsize)
7583 outs() << " path ?(bad offset " << rpath.path << ")\n";
7584 else {
7585 const char *P = (const char *)(Ptr) + rpath.path;
7586 outs() << " path " << P << " (offset " << rpath.path << ")\n";
7587 }
7588}
7589
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007590static void PrintVersionMinLoadCommand(MachO::version_min_command vd) {
Tim Northoverbfbfb122015-11-02 21:26:58 +00007591 StringRef LoadCmdName;
7592 switch (vd.cmd) {
7593 case MachO::LC_VERSION_MIN_MACOSX:
7594 LoadCmdName = "LC_VERSION_MIN_MACOSX";
7595 break;
7596 case MachO::LC_VERSION_MIN_IPHONEOS:
7597 LoadCmdName = "LC_VERSION_MIN_IPHONEOS";
7598 break;
7599 case MachO::LC_VERSION_MIN_TVOS:
7600 LoadCmdName = "LC_VERSION_MIN_TVOS";
7601 break;
7602 case MachO::LC_VERSION_MIN_WATCHOS:
7603 LoadCmdName = "LC_VERSION_MIN_WATCHOS";
7604 break;
7605 default:
7606 llvm_unreachable("Unknown version min load command");
7607 }
7608
7609 outs() << " cmd " << LoadCmdName << '\n';
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007610 outs() << " cmdsize " << vd.cmdsize;
7611 if (vd.cmdsize != sizeof(struct MachO::version_min_command))
7612 outs() << " Incorrect size\n";
7613 else
7614 outs() << "\n";
Davide Italiano56baef32015-08-26 12:26:11 +00007615 outs() << " version "
7616 << MachOObjectFile::getVersionMinMajor(vd, false) << "."
7617 << MachOObjectFile::getVersionMinMinor(vd, false);
7618 uint32_t Update = MachOObjectFile::getVersionMinUpdate(vd, false);
7619 if (Update != 0)
7620 outs() << "." << Update;
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007621 outs() << "\n";
7622 if (vd.sdk == 0)
Kevin Enderby57538292014-12-17 01:01:30 +00007623 outs() << " sdk n/a";
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007624 else {
Davide Italiano56baef32015-08-26 12:26:11 +00007625 outs() << " sdk "
7626 << MachOObjectFile::getVersionMinMajor(vd, true) << "."
7627 << MachOObjectFile::getVersionMinMinor(vd, true);
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007628 }
Davide Italiano56baef32015-08-26 12:26:11 +00007629 Update = MachOObjectFile::getVersionMinUpdate(vd, true);
7630 if (Update != 0)
7631 outs() << "." << Update;
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007632 outs() << "\n";
7633}
7634
7635static void PrintSourceVersionCommand(MachO::source_version_command sd) {
7636 outs() << " cmd LC_SOURCE_VERSION\n";
7637 outs() << " cmdsize " << sd.cmdsize;
7638 if (sd.cmdsize != sizeof(struct MachO::source_version_command))
7639 outs() << " Incorrect size\n";
7640 else
7641 outs() << "\n";
7642 uint64_t a = (sd.version >> 40) & 0xffffff;
7643 uint64_t b = (sd.version >> 30) & 0x3ff;
7644 uint64_t c = (sd.version >> 20) & 0x3ff;
7645 uint64_t d = (sd.version >> 10) & 0x3ff;
7646 uint64_t e = sd.version & 0x3ff;
7647 outs() << " version " << a << "." << b;
7648 if (e != 0)
7649 outs() << "." << c << "." << d << "." << e;
7650 else if (d != 0)
7651 outs() << "." << c << "." << d;
7652 else if (c != 0)
7653 outs() << "." << c;
7654 outs() << "\n";
7655}
7656
7657static void PrintEntryPointCommand(MachO::entry_point_command ep) {
7658 outs() << " cmd LC_MAIN\n";
7659 outs() << " cmdsize " << ep.cmdsize;
7660 if (ep.cmdsize != sizeof(struct MachO::entry_point_command))
7661 outs() << " Incorrect size\n";
7662 else
7663 outs() << "\n";
7664 outs() << " entryoff " << ep.entryoff << "\n";
7665 outs() << " stacksize " << ep.stacksize << "\n";
7666}
7667
Kevin Enderby0804f4672014-12-16 23:25:52 +00007668static void PrintEncryptionInfoCommand(MachO::encryption_info_command ec,
7669 uint32_t object_size) {
7670 outs() << " cmd LC_ENCRYPTION_INFO\n";
7671 outs() << " cmdsize " << ec.cmdsize;
7672 if (ec.cmdsize != sizeof(struct MachO::encryption_info_command))
7673 outs() << " Incorrect size\n";
7674 else
7675 outs() << "\n";
7676 outs() << " cryptoff " << ec.cryptoff;
7677 if (ec.cryptoff > object_size)
7678 outs() << " (past end of file)\n";
7679 else
7680 outs() << "\n";
7681 outs() << " cryptsize " << ec.cryptsize;
7682 if (ec.cryptsize > object_size)
7683 outs() << " (past end of file)\n";
7684 else
7685 outs() << "\n";
7686 outs() << " cryptid " << ec.cryptid << "\n";
7687}
7688
Kevin Enderby57538292014-12-17 01:01:30 +00007689static void PrintEncryptionInfoCommand64(MachO::encryption_info_command_64 ec,
Kevin Enderby66d51fc2015-01-08 00:25:24 +00007690 uint32_t object_size) {
Kevin Enderby57538292014-12-17 01:01:30 +00007691 outs() << " cmd LC_ENCRYPTION_INFO_64\n";
7692 outs() << " cmdsize " << ec.cmdsize;
7693 if (ec.cmdsize != sizeof(struct MachO::encryption_info_command_64))
7694 outs() << " Incorrect size\n";
7695 else
7696 outs() << "\n";
7697 outs() << " cryptoff " << ec.cryptoff;
7698 if (ec.cryptoff > object_size)
7699 outs() << " (past end of file)\n";
7700 else
7701 outs() << "\n";
7702 outs() << " cryptsize " << ec.cryptsize;
7703 if (ec.cryptsize > object_size)
7704 outs() << " (past end of file)\n";
7705 else
7706 outs() << "\n";
7707 outs() << " cryptid " << ec.cryptid << "\n";
7708 outs() << " pad " << ec.pad << "\n";
7709}
7710
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +00007711static void PrintLinkerOptionCommand(MachO::linker_option_command lo,
7712 const char *Ptr) {
7713 outs() << " cmd LC_LINKER_OPTION\n";
7714 outs() << " cmdsize " << lo.cmdsize;
7715 if (lo.cmdsize < sizeof(struct MachO::linker_option_command))
7716 outs() << " Incorrect size\n";
7717 else
7718 outs() << "\n";
7719 outs() << " count " << lo.count << "\n";
7720 const char *string = Ptr + sizeof(struct MachO::linker_option_command);
7721 uint32_t left = lo.cmdsize - sizeof(struct MachO::linker_option_command);
7722 uint32_t i = 0;
7723 while (left > 0) {
7724 while (*string == '\0' && left > 0) {
7725 string++;
7726 left--;
7727 }
7728 if (left > 0) {
7729 i++;
7730 outs() << " string #" << i << " " << format("%.*s\n", left, string);
David Majnemerd4449ed2014-12-20 08:24:43 +00007731 uint32_t NullPos = StringRef(string, left).find('\0');
7732 uint32_t len = std::min(NullPos, left) + 1;
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +00007733 string += len;
7734 left -= len;
7735 }
7736 }
7737 if (lo.count != i)
Kevin Enderby66d51fc2015-01-08 00:25:24 +00007738 outs() << " count " << lo.count << " does not match number of strings "
7739 << i << "\n";
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +00007740}
7741
Kevin Enderbyb4b79312014-12-18 19:24:35 +00007742static void PrintSubFrameworkCommand(MachO::sub_framework_command sub,
7743 const char *Ptr) {
7744 outs() << " cmd LC_SUB_FRAMEWORK\n";
7745 outs() << " cmdsize " << sub.cmdsize;
7746 if (sub.cmdsize < sizeof(struct MachO::sub_framework_command))
7747 outs() << " Incorrect size\n";
7748 else
7749 outs() << "\n";
7750 if (sub.umbrella < sub.cmdsize) {
7751 const char *P = Ptr + sub.umbrella;
7752 outs() << " umbrella " << P << " (offset " << sub.umbrella << ")\n";
7753 } else {
7754 outs() << " umbrella ?(bad offset " << sub.umbrella << ")\n";
7755 }
7756}
7757
Kevin Enderbya2bd8d92014-12-18 23:13:26 +00007758static void PrintSubUmbrellaCommand(MachO::sub_umbrella_command sub,
7759 const char *Ptr) {
7760 outs() << " cmd LC_SUB_UMBRELLA\n";
7761 outs() << " cmdsize " << sub.cmdsize;
7762 if (sub.cmdsize < sizeof(struct MachO::sub_umbrella_command))
7763 outs() << " Incorrect size\n";
7764 else
7765 outs() << "\n";
7766 if (sub.sub_umbrella < sub.cmdsize) {
7767 const char *P = Ptr + sub.sub_umbrella;
7768 outs() << " sub_umbrella " << P << " (offset " << sub.sub_umbrella << ")\n";
7769 } else {
7770 outs() << " sub_umbrella ?(bad offset " << sub.sub_umbrella << ")\n";
7771 }
7772}
7773
Kevin Enderby36c8d3a2014-12-19 19:48:16 +00007774static void PrintSubLibraryCommand(MachO::sub_library_command sub,
Kevin Enderby66d51fc2015-01-08 00:25:24 +00007775 const char *Ptr) {
Kevin Enderby36c8d3a2014-12-19 19:48:16 +00007776 outs() << " cmd LC_SUB_LIBRARY\n";
7777 outs() << " cmdsize " << sub.cmdsize;
7778 if (sub.cmdsize < sizeof(struct MachO::sub_library_command))
7779 outs() << " Incorrect size\n";
7780 else
7781 outs() << "\n";
7782 if (sub.sub_library < sub.cmdsize) {
7783 const char *P = Ptr + sub.sub_library;
7784 outs() << " sub_library " << P << " (offset " << sub.sub_library << ")\n";
7785 } else {
7786 outs() << " sub_library ?(bad offset " << sub.sub_library << ")\n";
7787 }
7788}
7789
Kevin Enderby186eac32014-12-19 21:06:24 +00007790static void PrintSubClientCommand(MachO::sub_client_command sub,
7791 const char *Ptr) {
7792 outs() << " cmd LC_SUB_CLIENT\n";
7793 outs() << " cmdsize " << sub.cmdsize;
7794 if (sub.cmdsize < sizeof(struct MachO::sub_client_command))
7795 outs() << " Incorrect size\n";
7796 else
7797 outs() << "\n";
7798 if (sub.client < sub.cmdsize) {
7799 const char *P = Ptr + sub.client;
7800 outs() << " client " << P << " (offset " << sub.client << ")\n";
7801 } else {
7802 outs() << " client ?(bad offset " << sub.client << ")\n";
7803 }
7804}
Kevin Enderby36c8d3a2014-12-19 19:48:16 +00007805
Kevin Enderby52e4ce42014-12-19 22:25:22 +00007806static void PrintRoutinesCommand(MachO::routines_command r) {
7807 outs() << " cmd LC_ROUTINES\n";
7808 outs() << " cmdsize " << r.cmdsize;
7809 if (r.cmdsize != sizeof(struct MachO::routines_command))
7810 outs() << " Incorrect size\n";
7811 else
7812 outs() << "\n";
7813 outs() << " init_address " << format("0x%08" PRIx32, r.init_address) << "\n";
7814 outs() << " init_module " << r.init_module << "\n";
7815 outs() << " reserved1 " << r.reserved1 << "\n";
7816 outs() << " reserved2 " << r.reserved2 << "\n";
7817 outs() << " reserved3 " << r.reserved3 << "\n";
7818 outs() << " reserved4 " << r.reserved4 << "\n";
7819 outs() << " reserved5 " << r.reserved5 << "\n";
7820 outs() << " reserved6 " << r.reserved6 << "\n";
7821}
7822
7823static void PrintRoutinesCommand64(MachO::routines_command_64 r) {
7824 outs() << " cmd LC_ROUTINES_64\n";
7825 outs() << " cmdsize " << r.cmdsize;
7826 if (r.cmdsize != sizeof(struct MachO::routines_command_64))
7827 outs() << " Incorrect size\n";
7828 else
7829 outs() << "\n";
7830 outs() << " init_address " << format("0x%016" PRIx64, r.init_address) << "\n";
7831 outs() << " init_module " << r.init_module << "\n";
7832 outs() << " reserved1 " << r.reserved1 << "\n";
7833 outs() << " reserved2 " << r.reserved2 << "\n";
7834 outs() << " reserved3 " << r.reserved3 << "\n";
7835 outs() << " reserved4 " << r.reserved4 << "\n";
7836 outs() << " reserved5 " << r.reserved5 << "\n";
7837 outs() << " reserved6 " << r.reserved6 << "\n";
7838}
7839
Kevin Enderby48ef5342014-12-23 22:56:39 +00007840static void Print_x86_thread_state64_t(MachO::x86_thread_state64_t &cpu64) {
7841 outs() << " rax " << format("0x%016" PRIx64, cpu64.rax);
7842 outs() << " rbx " << format("0x%016" PRIx64, cpu64.rbx);
7843 outs() << " rcx " << format("0x%016" PRIx64, cpu64.rcx) << "\n";
7844 outs() << " rdx " << format("0x%016" PRIx64, cpu64.rdx);
7845 outs() << " rdi " << format("0x%016" PRIx64, cpu64.rdi);
7846 outs() << " rsi " << format("0x%016" PRIx64, cpu64.rsi) << "\n";
7847 outs() << " rbp " << format("0x%016" PRIx64, cpu64.rbp);
7848 outs() << " rsp " << format("0x%016" PRIx64, cpu64.rsp);
7849 outs() << " r8 " << format("0x%016" PRIx64, cpu64.r8) << "\n";
7850 outs() << " r9 " << format("0x%016" PRIx64, cpu64.r9);
7851 outs() << " r10 " << format("0x%016" PRIx64, cpu64.r10);
7852 outs() << " r11 " << format("0x%016" PRIx64, cpu64.r11) << "\n";
7853 outs() << " r12 " << format("0x%016" PRIx64, cpu64.r12);
7854 outs() << " r13 " << format("0x%016" PRIx64, cpu64.r13);
7855 outs() << " r14 " << format("0x%016" PRIx64, cpu64.r14) << "\n";
7856 outs() << " r15 " << format("0x%016" PRIx64, cpu64.r15);
7857 outs() << " rip " << format("0x%016" PRIx64, cpu64.rip) << "\n";
7858 outs() << "rflags " << format("0x%016" PRIx64, cpu64.rflags);
7859 outs() << " cs " << format("0x%016" PRIx64, cpu64.cs);
7860 outs() << " fs " << format("0x%016" PRIx64, cpu64.fs) << "\n";
7861 outs() << " gs " << format("0x%016" PRIx64, cpu64.gs) << "\n";
7862}
7863
Kevin Enderby227df342014-12-23 23:43:59 +00007864static void Print_mmst_reg(MachO::mmst_reg_t &r) {
Kevin Enderby48ef5342014-12-23 22:56:39 +00007865 uint32_t f;
7866 outs() << "\t mmst_reg ";
7867 for (f = 0; f < 10; f++)
7868 outs() << format("%02" PRIx32, (r.mmst_reg[f] & 0xff)) << " ";
7869 outs() << "\n";
7870 outs() << "\t mmst_rsrv ";
7871 for (f = 0; f < 6; f++)
7872 outs() << format("%02" PRIx32, (r.mmst_rsrv[f] & 0xff)) << " ";
7873 outs() << "\n";
7874}
7875
Kevin Enderbyaefb0032014-12-24 00:16:51 +00007876static void Print_xmm_reg(MachO::xmm_reg_t &r) {
Kevin Enderby48ef5342014-12-23 22:56:39 +00007877 uint32_t f;
7878 outs() << "\t xmm_reg ";
7879 for (f = 0; f < 16; f++)
7880 outs() << format("%02" PRIx32, (r.xmm_reg[f] & 0xff)) << " ";
7881 outs() << "\n";
7882}
7883
7884static void Print_x86_float_state_t(MachO::x86_float_state64_t &fpu) {
7885 outs() << "\t fpu_reserved[0] " << fpu.fpu_reserved[0];
7886 outs() << " fpu_reserved[1] " << fpu.fpu_reserved[1] << "\n";
7887 outs() << "\t control: invalid " << fpu.fpu_fcw.invalid;
7888 outs() << " denorm " << fpu.fpu_fcw.denorm;
7889 outs() << " zdiv " << fpu.fpu_fcw.zdiv;
7890 outs() << " ovrfl " << fpu.fpu_fcw.ovrfl;
7891 outs() << " undfl " << fpu.fpu_fcw.undfl;
7892 outs() << " precis " << fpu.fpu_fcw.precis << "\n";
7893 outs() << "\t\t pc ";
7894 if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_24B)
7895 outs() << "FP_PREC_24B ";
7896 else if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_53B)
7897 outs() << "FP_PREC_53B ";
7898 else if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_64B)
7899 outs() << "FP_PREC_64B ";
7900 else
7901 outs() << fpu.fpu_fcw.pc << " ";
7902 outs() << "rc ";
7903 if (fpu.fpu_fcw.rc == MachO::x86_FP_RND_NEAR)
7904 outs() << "FP_RND_NEAR ";
7905 else if (fpu.fpu_fcw.rc == MachO::x86_FP_RND_DOWN)
7906 outs() << "FP_RND_DOWN ";
7907 else if (fpu.fpu_fcw.rc == MachO::x86_FP_RND_UP)
7908 outs() << "FP_RND_UP ";
7909 else if (fpu.fpu_fcw.rc == MachO::x86_FP_CHOP)
Kevin Enderby66d51fc2015-01-08 00:25:24 +00007910 outs() << "FP_CHOP ";
Kevin Enderby48ef5342014-12-23 22:56:39 +00007911 outs() << "\n";
7912 outs() << "\t status: invalid " << fpu.fpu_fsw.invalid;
7913 outs() << " denorm " << fpu.fpu_fsw.denorm;
7914 outs() << " zdiv " << fpu.fpu_fsw.zdiv;
7915 outs() << " ovrfl " << fpu.fpu_fsw.ovrfl;
7916 outs() << " undfl " << fpu.fpu_fsw.undfl;
7917 outs() << " precis " << fpu.fpu_fsw.precis;
7918 outs() << " stkflt " << fpu.fpu_fsw.stkflt << "\n";
7919 outs() << "\t errsumm " << fpu.fpu_fsw.errsumm;
7920 outs() << " c0 " << fpu.fpu_fsw.c0;
7921 outs() << " c1 " << fpu.fpu_fsw.c1;
7922 outs() << " c2 " << fpu.fpu_fsw.c2;
7923 outs() << " tos " << fpu.fpu_fsw.tos;
7924 outs() << " c3 " << fpu.fpu_fsw.c3;
7925 outs() << " busy " << fpu.fpu_fsw.busy << "\n";
7926 outs() << "\t fpu_ftw " << format("0x%02" PRIx32, fpu.fpu_ftw);
7927 outs() << " fpu_rsrv1 " << format("0x%02" PRIx32, fpu.fpu_rsrv1);
7928 outs() << " fpu_fop " << format("0x%04" PRIx32, fpu.fpu_fop);
7929 outs() << " fpu_ip " << format("0x%08" PRIx32, fpu.fpu_ip) << "\n";
7930 outs() << "\t fpu_cs " << format("0x%04" PRIx32, fpu.fpu_cs);
7931 outs() << " fpu_rsrv2 " << format("0x%04" PRIx32, fpu.fpu_rsrv2);
7932 outs() << " fpu_dp " << format("0x%08" PRIx32, fpu.fpu_dp);
7933 outs() << " fpu_ds " << format("0x%04" PRIx32, fpu.fpu_ds) << "\n";
7934 outs() << "\t fpu_rsrv3 " << format("0x%04" PRIx32, fpu.fpu_rsrv3);
7935 outs() << " fpu_mxcsr " << format("0x%08" PRIx32, fpu.fpu_mxcsr);
7936 outs() << " fpu_mxcsrmask " << format("0x%08" PRIx32, fpu.fpu_mxcsrmask);
7937 outs() << "\n";
7938 outs() << "\t fpu_stmm0:\n";
7939 Print_mmst_reg(fpu.fpu_stmm0);
7940 outs() << "\t fpu_stmm1:\n";
7941 Print_mmst_reg(fpu.fpu_stmm1);
7942 outs() << "\t fpu_stmm2:\n";
7943 Print_mmst_reg(fpu.fpu_stmm2);
7944 outs() << "\t fpu_stmm3:\n";
7945 Print_mmst_reg(fpu.fpu_stmm3);
7946 outs() << "\t fpu_stmm4:\n";
7947 Print_mmst_reg(fpu.fpu_stmm4);
7948 outs() << "\t fpu_stmm5:\n";
7949 Print_mmst_reg(fpu.fpu_stmm5);
7950 outs() << "\t fpu_stmm6:\n";
7951 Print_mmst_reg(fpu.fpu_stmm6);
7952 outs() << "\t fpu_stmm7:\n";
7953 Print_mmst_reg(fpu.fpu_stmm7);
7954 outs() << "\t fpu_xmm0:\n";
7955 Print_xmm_reg(fpu.fpu_xmm0);
7956 outs() << "\t fpu_xmm1:\n";
7957 Print_xmm_reg(fpu.fpu_xmm1);
7958 outs() << "\t fpu_xmm2:\n";
7959 Print_xmm_reg(fpu.fpu_xmm2);
7960 outs() << "\t fpu_xmm3:\n";
7961 Print_xmm_reg(fpu.fpu_xmm3);
7962 outs() << "\t fpu_xmm4:\n";
7963 Print_xmm_reg(fpu.fpu_xmm4);
7964 outs() << "\t fpu_xmm5:\n";
7965 Print_xmm_reg(fpu.fpu_xmm5);
7966 outs() << "\t fpu_xmm6:\n";
7967 Print_xmm_reg(fpu.fpu_xmm6);
7968 outs() << "\t fpu_xmm7:\n";
7969 Print_xmm_reg(fpu.fpu_xmm7);
7970 outs() << "\t fpu_xmm8:\n";
7971 Print_xmm_reg(fpu.fpu_xmm8);
7972 outs() << "\t fpu_xmm9:\n";
7973 Print_xmm_reg(fpu.fpu_xmm9);
7974 outs() << "\t fpu_xmm10:\n";
7975 Print_xmm_reg(fpu.fpu_xmm10);
7976 outs() << "\t fpu_xmm11:\n";
7977 Print_xmm_reg(fpu.fpu_xmm11);
7978 outs() << "\t fpu_xmm12:\n";
7979 Print_xmm_reg(fpu.fpu_xmm12);
7980 outs() << "\t fpu_xmm13:\n";
7981 Print_xmm_reg(fpu.fpu_xmm13);
7982 outs() << "\t fpu_xmm14:\n";
7983 Print_xmm_reg(fpu.fpu_xmm14);
7984 outs() << "\t fpu_xmm15:\n";
7985 Print_xmm_reg(fpu.fpu_xmm15);
7986 outs() << "\t fpu_rsrv4:\n";
7987 for (uint32_t f = 0; f < 6; f++) {
7988 outs() << "\t ";
7989 for (uint32_t g = 0; g < 16; g++)
Kevin Enderby66d51fc2015-01-08 00:25:24 +00007990 outs() << format("%02" PRIx32, fpu.fpu_rsrv4[f * g]) << " ";
Kevin Enderby48ef5342014-12-23 22:56:39 +00007991 outs() << "\n";
7992 }
7993 outs() << "\t fpu_reserved1 " << format("0x%08" PRIx32, fpu.fpu_reserved1);
7994 outs() << "\n";
7995}
7996
7997static void Print_x86_exception_state_t(MachO::x86_exception_state64_t &exc64) {
7998 outs() << "\t trapno " << format("0x%08" PRIx32, exc64.trapno);
7999 outs() << " err " << format("0x%08" PRIx32, exc64.err);
8000 outs() << " faultvaddr " << format("0x%016" PRIx64, exc64.faultvaddr) << "\n";
8001}
8002
8003static void PrintThreadCommand(MachO::thread_command t, const char *Ptr,
8004 bool isLittleEndian, uint32_t cputype) {
8005 if (t.cmd == MachO::LC_THREAD)
8006 outs() << " cmd LC_THREAD\n";
8007 else if (t.cmd == MachO::LC_UNIXTHREAD)
8008 outs() << " cmd LC_UNIXTHREAD\n";
8009 else
8010 outs() << " cmd " << t.cmd << " (unknown)\n";
8011 outs() << " cmdsize " << t.cmdsize;
8012 if (t.cmdsize < sizeof(struct MachO::thread_command) + 2 * sizeof(uint32_t))
8013 outs() << " Incorrect size\n";
8014 else
8015 outs() << "\n";
8016
8017 const char *begin = Ptr + sizeof(struct MachO::thread_command);
8018 const char *end = Ptr + t.cmdsize;
8019 uint32_t flavor, count, left;
8020 if (cputype == MachO::CPU_TYPE_X86_64) {
8021 while (begin < end) {
8022 if (end - begin > (ptrdiff_t)sizeof(uint32_t)) {
8023 memcpy((char *)&flavor, begin, sizeof(uint32_t));
8024 begin += sizeof(uint32_t);
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008025 } else {
Kevin Enderby48ef5342014-12-23 22:56:39 +00008026 flavor = 0;
8027 begin = end;
8028 }
8029 if (isLittleEndian != sys::IsLittleEndianHost)
8030 sys::swapByteOrder(flavor);
8031 if (end - begin > (ptrdiff_t)sizeof(uint32_t)) {
8032 memcpy((char *)&count, begin, sizeof(uint32_t));
8033 begin += sizeof(uint32_t);
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008034 } else {
Kevin Enderby48ef5342014-12-23 22:56:39 +00008035 count = 0;
8036 begin = end;
8037 }
8038 if (isLittleEndian != sys::IsLittleEndianHost)
8039 sys::swapByteOrder(count);
8040 if (flavor == MachO::x86_THREAD_STATE64) {
8041 outs() << " flavor x86_THREAD_STATE64\n";
8042 if (count == MachO::x86_THREAD_STATE64_COUNT)
8043 outs() << " count x86_THREAD_STATE64_COUNT\n";
8044 else
8045 outs() << " count " << count
8046 << " (not x86_THREAD_STATE64_COUNT)\n";
8047 MachO::x86_thread_state64_t cpu64;
8048 left = end - begin;
8049 if (left >= sizeof(MachO::x86_thread_state64_t)) {
8050 memcpy(&cpu64, begin, sizeof(MachO::x86_thread_state64_t));
8051 begin += sizeof(MachO::x86_thread_state64_t);
8052 } else {
8053 memset(&cpu64, '\0', sizeof(MachO::x86_thread_state64_t));
8054 memcpy(&cpu64, begin, left);
8055 begin += left;
8056 }
8057 if (isLittleEndian != sys::IsLittleEndianHost)
8058 swapStruct(cpu64);
8059 Print_x86_thread_state64_t(cpu64);
8060 } else if (flavor == MachO::x86_THREAD_STATE) {
8061 outs() << " flavor x86_THREAD_STATE\n";
8062 if (count == MachO::x86_THREAD_STATE_COUNT)
8063 outs() << " count x86_THREAD_STATE_COUNT\n";
8064 else
8065 outs() << " count " << count
8066 << " (not x86_THREAD_STATE_COUNT)\n";
8067 struct MachO::x86_thread_state_t ts;
8068 left = end - begin;
8069 if (left >= sizeof(MachO::x86_thread_state_t)) {
8070 memcpy(&ts, begin, sizeof(MachO::x86_thread_state_t));
8071 begin += sizeof(MachO::x86_thread_state_t);
8072 } else {
8073 memset(&ts, '\0', sizeof(MachO::x86_thread_state_t));
8074 memcpy(&ts, begin, left);
8075 begin += left;
8076 }
8077 if (isLittleEndian != sys::IsLittleEndianHost)
8078 swapStruct(ts);
8079 if (ts.tsh.flavor == MachO::x86_THREAD_STATE64) {
8080 outs() << "\t tsh.flavor x86_THREAD_STATE64 ";
8081 if (ts.tsh.count == MachO::x86_THREAD_STATE64_COUNT)
8082 outs() << "tsh.count x86_THREAD_STATE64_COUNT\n";
8083 else
8084 outs() << "tsh.count " << ts.tsh.count
8085 << " (not x86_THREAD_STATE64_COUNT\n";
8086 Print_x86_thread_state64_t(ts.uts.ts64);
8087 } else {
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008088 outs() << "\t tsh.flavor " << ts.tsh.flavor << " tsh.count "
8089 << ts.tsh.count << "\n";
Kevin Enderby48ef5342014-12-23 22:56:39 +00008090 }
8091 } else if (flavor == MachO::x86_FLOAT_STATE) {
8092 outs() << " flavor x86_FLOAT_STATE\n";
8093 if (count == MachO::x86_FLOAT_STATE_COUNT)
8094 outs() << " count x86_FLOAT_STATE_COUNT\n";
8095 else
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008096 outs() << " count " << count << " (not x86_FLOAT_STATE_COUNT)\n";
Kevin Enderby48ef5342014-12-23 22:56:39 +00008097 struct MachO::x86_float_state_t fs;
8098 left = end - begin;
8099 if (left >= sizeof(MachO::x86_float_state_t)) {
8100 memcpy(&fs, begin, sizeof(MachO::x86_float_state_t));
8101 begin += sizeof(MachO::x86_float_state_t);
8102 } else {
8103 memset(&fs, '\0', sizeof(MachO::x86_float_state_t));
8104 memcpy(&fs, begin, left);
8105 begin += left;
8106 }
8107 if (isLittleEndian != sys::IsLittleEndianHost)
8108 swapStruct(fs);
8109 if (fs.fsh.flavor == MachO::x86_FLOAT_STATE64) {
8110 outs() << "\t fsh.flavor x86_FLOAT_STATE64 ";
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008111 if (fs.fsh.count == MachO::x86_FLOAT_STATE64_COUNT)
Kevin Enderby48ef5342014-12-23 22:56:39 +00008112 outs() << "fsh.count x86_FLOAT_STATE64_COUNT\n";
8113 else
8114 outs() << "fsh.count " << fs.fsh.count
8115 << " (not x86_FLOAT_STATE64_COUNT\n";
8116 Print_x86_float_state_t(fs.ufs.fs64);
8117 } else {
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008118 outs() << "\t fsh.flavor " << fs.fsh.flavor << " fsh.count "
8119 << fs.fsh.count << "\n";
Kevin Enderby48ef5342014-12-23 22:56:39 +00008120 }
8121 } else if (flavor == MachO::x86_EXCEPTION_STATE) {
8122 outs() << " flavor x86_EXCEPTION_STATE\n";
8123 if (count == MachO::x86_EXCEPTION_STATE_COUNT)
8124 outs() << " count x86_EXCEPTION_STATE_COUNT\n";
8125 else
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008126 outs() << " count " << count
Kevin Enderby48ef5342014-12-23 22:56:39 +00008127 << " (not x86_EXCEPTION_STATE_COUNT)\n";
8128 struct MachO::x86_exception_state_t es;
8129 left = end - begin;
8130 if (left >= sizeof(MachO::x86_exception_state_t)) {
8131 memcpy(&es, begin, sizeof(MachO::x86_exception_state_t));
8132 begin += sizeof(MachO::x86_exception_state_t);
8133 } else {
8134 memset(&es, '\0', sizeof(MachO::x86_exception_state_t));
8135 memcpy(&es, begin, left);
8136 begin += left;
8137 }
8138 if (isLittleEndian != sys::IsLittleEndianHost)
8139 swapStruct(es);
8140 if (es.esh.flavor == MachO::x86_EXCEPTION_STATE64) {
8141 outs() << "\t esh.flavor x86_EXCEPTION_STATE64\n";
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008142 if (es.esh.count == MachO::x86_EXCEPTION_STATE64_COUNT)
Kevin Enderby48ef5342014-12-23 22:56:39 +00008143 outs() << "\t esh.count x86_EXCEPTION_STATE64_COUNT\n";
8144 else
8145 outs() << "\t esh.count " << es.esh.count
8146 << " (not x86_EXCEPTION_STATE64_COUNT\n";
8147 Print_x86_exception_state_t(es.ues.es64);
8148 } else {
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008149 outs() << "\t esh.flavor " << es.esh.flavor << " esh.count "
8150 << es.esh.count << "\n";
Kevin Enderby48ef5342014-12-23 22:56:39 +00008151 }
8152 } else {
8153 outs() << " flavor " << flavor << " (unknown)\n";
8154 outs() << " count " << count << "\n";
8155 outs() << " state (unknown)\n";
8156 begin += count * sizeof(uint32_t);
8157 }
8158 }
8159 } else {
8160 while (begin < end) {
8161 if (end - begin > (ptrdiff_t)sizeof(uint32_t)) {
8162 memcpy((char *)&flavor, begin, sizeof(uint32_t));
8163 begin += sizeof(uint32_t);
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008164 } else {
Kevin Enderby48ef5342014-12-23 22:56:39 +00008165 flavor = 0;
8166 begin = end;
8167 }
8168 if (isLittleEndian != sys::IsLittleEndianHost)
8169 sys::swapByteOrder(flavor);
8170 if (end - begin > (ptrdiff_t)sizeof(uint32_t)) {
8171 memcpy((char *)&count, begin, sizeof(uint32_t));
8172 begin += sizeof(uint32_t);
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008173 } else {
Kevin Enderby48ef5342014-12-23 22:56:39 +00008174 count = 0;
8175 begin = end;
8176 }
8177 if (isLittleEndian != sys::IsLittleEndianHost)
8178 sys::swapByteOrder(count);
8179 outs() << " flavor " << flavor << "\n";
8180 outs() << " count " << count << "\n";
8181 outs() << " state (Unknown cputype/cpusubtype)\n";
8182 begin += count * sizeof(uint32_t);
8183 }
8184 }
8185}
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008186
Kevin Enderby8ae63c12014-09-04 16:54:47 +00008187static void PrintDylibCommand(MachO::dylib_command dl, const char *Ptr) {
8188 if (dl.cmd == MachO::LC_ID_DYLIB)
8189 outs() << " cmd LC_ID_DYLIB\n";
8190 else if (dl.cmd == MachO::LC_LOAD_DYLIB)
8191 outs() << " cmd LC_LOAD_DYLIB\n";
8192 else if (dl.cmd == MachO::LC_LOAD_WEAK_DYLIB)
8193 outs() << " cmd LC_LOAD_WEAK_DYLIB\n";
8194 else if (dl.cmd == MachO::LC_REEXPORT_DYLIB)
8195 outs() << " cmd LC_REEXPORT_DYLIB\n";
8196 else if (dl.cmd == MachO::LC_LAZY_LOAD_DYLIB)
8197 outs() << " cmd LC_LAZY_LOAD_DYLIB\n";
8198 else if (dl.cmd == MachO::LC_LOAD_UPWARD_DYLIB)
8199 outs() << " cmd LC_LOAD_UPWARD_DYLIB\n";
8200 else
8201 outs() << " cmd " << dl.cmd << " (unknown)\n";
8202 outs() << " cmdsize " << dl.cmdsize;
8203 if (dl.cmdsize < sizeof(struct MachO::dylib_command))
8204 outs() << " Incorrect size\n";
8205 else
8206 outs() << "\n";
8207 if (dl.dylib.name < dl.cmdsize) {
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008208 const char *P = (const char *)(Ptr) + dl.dylib.name;
Kevin Enderby8ae63c12014-09-04 16:54:47 +00008209 outs() << " name " << P << " (offset " << dl.dylib.name << ")\n";
8210 } else {
8211 outs() << " name ?(bad offset " << dl.dylib.name << ")\n";
8212 }
8213 outs() << " time stamp " << dl.dylib.timestamp << " ";
8214 time_t t = dl.dylib.timestamp;
8215 outs() << ctime(&t);
8216 outs() << " current version ";
8217 if (dl.dylib.current_version == 0xffffffff)
8218 outs() << "n/a\n";
8219 else
8220 outs() << ((dl.dylib.current_version >> 16) & 0xffff) << "."
8221 << ((dl.dylib.current_version >> 8) & 0xff) << "."
8222 << (dl.dylib.current_version & 0xff) << "\n";
8223 outs() << "compatibility version ";
8224 if (dl.dylib.compatibility_version == 0xffffffff)
8225 outs() << "n/a\n";
8226 else
8227 outs() << ((dl.dylib.compatibility_version >> 16) & 0xffff) << "."
8228 << ((dl.dylib.compatibility_version >> 8) & 0xff) << "."
8229 << (dl.dylib.compatibility_version & 0xff) << "\n";
8230}
8231
8232static void PrintLinkEditDataCommand(MachO::linkedit_data_command ld,
8233 uint32_t object_size) {
8234 if (ld.cmd == MachO::LC_CODE_SIGNATURE)
8235 outs() << " cmd LC_FUNCTION_STARTS\n";
8236 else if (ld.cmd == MachO::LC_SEGMENT_SPLIT_INFO)
8237 outs() << " cmd LC_SEGMENT_SPLIT_INFO\n";
8238 else if (ld.cmd == MachO::LC_FUNCTION_STARTS)
8239 outs() << " cmd LC_FUNCTION_STARTS\n";
8240 else if (ld.cmd == MachO::LC_DATA_IN_CODE)
8241 outs() << " cmd LC_DATA_IN_CODE\n";
8242 else if (ld.cmd == MachO::LC_DYLIB_CODE_SIGN_DRS)
8243 outs() << " cmd LC_DYLIB_CODE_SIGN_DRS\n";
8244 else if (ld.cmd == MachO::LC_LINKER_OPTIMIZATION_HINT)
8245 outs() << " cmd LC_LINKER_OPTIMIZATION_HINT\n";
8246 else
8247 outs() << " cmd " << ld.cmd << " (?)\n";
8248 outs() << " cmdsize " << ld.cmdsize;
8249 if (ld.cmdsize != sizeof(struct MachO::linkedit_data_command))
8250 outs() << " Incorrect size\n";
8251 else
8252 outs() << "\n";
8253 outs() << " dataoff " << ld.dataoff;
8254 if (ld.dataoff > object_size)
8255 outs() << " (past end of file)\n";
8256 else
8257 outs() << "\n";
8258 outs() << " datasize " << ld.datasize;
8259 uint64_t big_size = ld.dataoff;
8260 big_size += ld.datasize;
8261 if (big_size > object_size)
8262 outs() << " (past end of file)\n";
8263 else
8264 outs() << "\n";
8265}
8266
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00008267static void PrintLoadCommands(const MachOObjectFile *Obj, uint32_t filetype,
8268 uint32_t cputype, bool verbose) {
Kevin Enderby956366c2014-08-29 22:30:52 +00008269 StringRef Buf = Obj->getData();
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00008270 unsigned Index = 0;
8271 for (const auto &Command : Obj->load_commands()) {
8272 outs() << "Load command " << Index++ << "\n";
Kevin Enderby956366c2014-08-29 22:30:52 +00008273 if (Command.C.cmd == MachO::LC_SEGMENT) {
8274 MachO::segment_command SLC = Obj->getSegmentLoadCommand(Command);
8275 const char *sg_segname = SLC.segname;
8276 PrintSegmentCommand(SLC.cmd, SLC.cmdsize, SLC.segname, SLC.vmaddr,
8277 SLC.vmsize, SLC.fileoff, SLC.filesize, SLC.maxprot,
8278 SLC.initprot, SLC.nsects, SLC.flags, Buf.size(),
8279 verbose);
8280 for (unsigned j = 0; j < SLC.nsects; j++) {
Kevin Enderbyc9713382014-12-16 01:14:45 +00008281 MachO::section S = Obj->getSection(Command, j);
Kevin Enderby956366c2014-08-29 22:30:52 +00008282 PrintSection(S.sectname, S.segname, S.addr, S.size, S.offset, S.align,
8283 S.reloff, S.nreloc, S.flags, S.reserved1, S.reserved2,
8284 SLC.cmd, sg_segname, filetype, Buf.size(), verbose);
8285 }
8286 } else if (Command.C.cmd == MachO::LC_SEGMENT_64) {
8287 MachO::segment_command_64 SLC_64 = Obj->getSegment64LoadCommand(Command);
8288 const char *sg_segname = SLC_64.segname;
8289 PrintSegmentCommand(SLC_64.cmd, SLC_64.cmdsize, SLC_64.segname,
8290 SLC_64.vmaddr, SLC_64.vmsize, SLC_64.fileoff,
8291 SLC_64.filesize, SLC_64.maxprot, SLC_64.initprot,
8292 SLC_64.nsects, SLC_64.flags, Buf.size(), verbose);
8293 for (unsigned j = 0; j < SLC_64.nsects; j++) {
8294 MachO::section_64 S_64 = Obj->getSection64(Command, j);
8295 PrintSection(S_64.sectname, S_64.segname, S_64.addr, S_64.size,
8296 S_64.offset, S_64.align, S_64.reloff, S_64.nreloc,
8297 S_64.flags, S_64.reserved1, S_64.reserved2, SLC_64.cmd,
8298 sg_segname, filetype, Buf.size(), verbose);
8299 }
8300 } else if (Command.C.cmd == MachO::LC_SYMTAB) {
8301 MachO::symtab_command Symtab = Obj->getSymtabLoadCommand();
David Majnemer73cc6ff2014-11-13 19:48:56 +00008302 PrintSymtabLoadCommand(Symtab, Obj->is64Bit(), Buf.size());
Kevin Enderby956366c2014-08-29 22:30:52 +00008303 } else if (Command.C.cmd == MachO::LC_DYSYMTAB) {
8304 MachO::dysymtab_command Dysymtab = Obj->getDysymtabLoadCommand();
8305 MachO::symtab_command Symtab = Obj->getSymtabLoadCommand();
David Majnemer73cc6ff2014-11-13 19:48:56 +00008306 PrintDysymtabLoadCommand(Dysymtab, Symtab.nsyms, Buf.size(),
8307 Obj->is64Bit());
Kevin Enderby8ae63c12014-09-04 16:54:47 +00008308 } else if (Command.C.cmd == MachO::LC_DYLD_INFO ||
8309 Command.C.cmd == MachO::LC_DYLD_INFO_ONLY) {
8310 MachO::dyld_info_command DyldInfo = Obj->getDyldInfoLoadCommand(Command);
8311 PrintDyldInfoLoadCommand(DyldInfo, Buf.size());
8312 } else if (Command.C.cmd == MachO::LC_LOAD_DYLINKER ||
8313 Command.C.cmd == MachO::LC_ID_DYLINKER ||
8314 Command.C.cmd == MachO::LC_DYLD_ENVIRONMENT) {
8315 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command);
8316 PrintDyldLoadCommand(Dyld, Command.Ptr);
8317 } else if (Command.C.cmd == MachO::LC_UUID) {
8318 MachO::uuid_command Uuid = Obj->getUuidCommand(Command);
8319 PrintUuidLoadCommand(Uuid);
Jean-Daniel Dupas00cc1f52014-12-04 07:37:02 +00008320 } else if (Command.C.cmd == MachO::LC_RPATH) {
8321 MachO::rpath_command Rpath = Obj->getRpathCommand(Command);
8322 PrintRpathLoadCommand(Rpath, Command.Ptr);
Kevin Enderby1ff0ecc2014-12-16 21:48:27 +00008323 } else if (Command.C.cmd == MachO::LC_VERSION_MIN_MACOSX ||
Tim Northoverbfbfb122015-11-02 21:26:58 +00008324 Command.C.cmd == MachO::LC_VERSION_MIN_IPHONEOS ||
8325 Command.C.cmd == MachO::LC_VERSION_MIN_TVOS ||
8326 Command.C.cmd == MachO::LC_VERSION_MIN_WATCHOS) {
Kevin Enderby8ae63c12014-09-04 16:54:47 +00008327 MachO::version_min_command Vd = Obj->getVersionMinLoadCommand(Command);
8328 PrintVersionMinLoadCommand(Vd);
8329 } else if (Command.C.cmd == MachO::LC_SOURCE_VERSION) {
8330 MachO::source_version_command Sd = Obj->getSourceVersionCommand(Command);
8331 PrintSourceVersionCommand(Sd);
8332 } else if (Command.C.cmd == MachO::LC_MAIN) {
8333 MachO::entry_point_command Ep = Obj->getEntryPointCommand(Command);
8334 PrintEntryPointCommand(Ep);
Kevin Enderby0804f4672014-12-16 23:25:52 +00008335 } else if (Command.C.cmd == MachO::LC_ENCRYPTION_INFO) {
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008336 MachO::encryption_info_command Ei =
8337 Obj->getEncryptionInfoCommand(Command);
Kevin Enderby0804f4672014-12-16 23:25:52 +00008338 PrintEncryptionInfoCommand(Ei, Buf.size());
Kevin Enderby57538292014-12-17 01:01:30 +00008339 } else if (Command.C.cmd == MachO::LC_ENCRYPTION_INFO_64) {
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008340 MachO::encryption_info_command_64 Ei =
8341 Obj->getEncryptionInfoCommand64(Command);
Kevin Enderby57538292014-12-17 01:01:30 +00008342 PrintEncryptionInfoCommand64(Ei, Buf.size());
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +00008343 } else if (Command.C.cmd == MachO::LC_LINKER_OPTION) {
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008344 MachO::linker_option_command Lo =
8345 Obj->getLinkerOptionLoadCommand(Command);
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +00008346 PrintLinkerOptionCommand(Lo, Command.Ptr);
Kevin Enderbyb4b79312014-12-18 19:24:35 +00008347 } else if (Command.C.cmd == MachO::LC_SUB_FRAMEWORK) {
8348 MachO::sub_framework_command Sf = Obj->getSubFrameworkCommand(Command);
8349 PrintSubFrameworkCommand(Sf, Command.Ptr);
Kevin Enderbya2bd8d92014-12-18 23:13:26 +00008350 } else if (Command.C.cmd == MachO::LC_SUB_UMBRELLA) {
8351 MachO::sub_umbrella_command Sf = Obj->getSubUmbrellaCommand(Command);
8352 PrintSubUmbrellaCommand(Sf, Command.Ptr);
Kevin Enderby36c8d3a2014-12-19 19:48:16 +00008353 } else if (Command.C.cmd == MachO::LC_SUB_LIBRARY) {
8354 MachO::sub_library_command Sl = Obj->getSubLibraryCommand(Command);
8355 PrintSubLibraryCommand(Sl, Command.Ptr);
Kevin Enderby186eac32014-12-19 21:06:24 +00008356 } else if (Command.C.cmd == MachO::LC_SUB_CLIENT) {
8357 MachO::sub_client_command Sc = Obj->getSubClientCommand(Command);
8358 PrintSubClientCommand(Sc, Command.Ptr);
Kevin Enderby52e4ce42014-12-19 22:25:22 +00008359 } else if (Command.C.cmd == MachO::LC_ROUTINES) {
8360 MachO::routines_command Rc = Obj->getRoutinesCommand(Command);
8361 PrintRoutinesCommand(Rc);
8362 } else if (Command.C.cmd == MachO::LC_ROUTINES_64) {
8363 MachO::routines_command_64 Rc = Obj->getRoutinesCommand64(Command);
8364 PrintRoutinesCommand64(Rc);
Kevin Enderby48ef5342014-12-23 22:56:39 +00008365 } else if (Command.C.cmd == MachO::LC_THREAD ||
8366 Command.C.cmd == MachO::LC_UNIXTHREAD) {
8367 MachO::thread_command Tc = Obj->getThreadCommand(Command);
8368 PrintThreadCommand(Tc, Command.Ptr, Obj->isLittleEndian(), cputype);
Nick Kledzik15558912014-10-16 18:58:20 +00008369 } else if (Command.C.cmd == MachO::LC_LOAD_DYLIB ||
8370 Command.C.cmd == MachO::LC_ID_DYLIB ||
8371 Command.C.cmd == MachO::LC_LOAD_WEAK_DYLIB ||
8372 Command.C.cmd == MachO::LC_REEXPORT_DYLIB ||
8373 Command.C.cmd == MachO::LC_LAZY_LOAD_DYLIB ||
8374 Command.C.cmd == MachO::LC_LOAD_UPWARD_DYLIB) {
Kevin Enderby8ae63c12014-09-04 16:54:47 +00008375 MachO::dylib_command Dl = Obj->getDylibIDLoadCommand(Command);
8376 PrintDylibCommand(Dl, Command.Ptr);
8377 } else if (Command.C.cmd == MachO::LC_CODE_SIGNATURE ||
8378 Command.C.cmd == MachO::LC_SEGMENT_SPLIT_INFO ||
8379 Command.C.cmd == MachO::LC_FUNCTION_STARTS ||
8380 Command.C.cmd == MachO::LC_DATA_IN_CODE ||
8381 Command.C.cmd == MachO::LC_DYLIB_CODE_SIGN_DRS ||
8382 Command.C.cmd == MachO::LC_LINKER_OPTIMIZATION_HINT) {
8383 MachO::linkedit_data_command Ld =
8384 Obj->getLinkeditDataLoadCommand(Command);
8385 PrintLinkEditDataCommand(Ld, Buf.size());
Kevin Enderby956366c2014-08-29 22:30:52 +00008386 } else {
8387 outs() << " cmd ?(" << format("0x%08" PRIx32, Command.C.cmd)
8388 << ")\n";
8389 outs() << " cmdsize " << Command.C.cmdsize << "\n";
8390 // TODO: get and print the raw bytes of the load command.
8391 }
8392 // TODO: print all the other kinds of load commands.
Kevin Enderby956366c2014-08-29 22:30:52 +00008393 }
8394}
8395
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00008396static void getAndPrintMachHeader(const MachOObjectFile *Obj,
Kevin Enderby956366c2014-08-29 22:30:52 +00008397 uint32_t &filetype, uint32_t &cputype,
8398 bool verbose) {
Kevin Enderbyb76d3862014-08-22 20:35:18 +00008399 if (Obj->is64Bit()) {
8400 MachO::mach_header_64 H_64;
8401 H_64 = Obj->getHeader64();
8402 PrintMachHeader(H_64.magic, H_64.cputype, H_64.cpusubtype, H_64.filetype,
8403 H_64.ncmds, H_64.sizeofcmds, H_64.flags, verbose);
Kevin Enderby956366c2014-08-29 22:30:52 +00008404 filetype = H_64.filetype;
8405 cputype = H_64.cputype;
Kevin Enderbyb76d3862014-08-22 20:35:18 +00008406 } else {
8407 MachO::mach_header H;
8408 H = Obj->getHeader();
8409 PrintMachHeader(H.magic, H.cputype, H.cpusubtype, H.filetype, H.ncmds,
8410 H.sizeofcmds, H.flags, verbose);
Kevin Enderby956366c2014-08-29 22:30:52 +00008411 filetype = H.filetype;
8412 cputype = H.cputype;
Kevin Enderbyb76d3862014-08-22 20:35:18 +00008413 }
8414}
8415
8416void llvm::printMachOFileHeader(const object::ObjectFile *Obj) {
8417 const MachOObjectFile *file = dyn_cast<const MachOObjectFile>(Obj);
Kevin Enderby956366c2014-08-29 22:30:52 +00008418 uint32_t filetype = 0;
8419 uint32_t cputype = 0;
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00008420 getAndPrintMachHeader(file, filetype, cputype, !NonVerbose);
8421 PrintLoadCommands(file, filetype, cputype, !NonVerbose);
Kevin Enderbyb76d3862014-08-22 20:35:18 +00008422}
Nick Kledzikd04bc352014-08-30 00:20:14 +00008423
8424//===----------------------------------------------------------------------===//
8425// export trie dumping
8426//===----------------------------------------------------------------------===//
8427
8428void llvm::printMachOExportsTrie(const object::MachOObjectFile *Obj) {
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008429 for (const llvm::object::ExportEntry &Entry : Obj->exports()) {
8430 uint64_t Flags = Entry.flags();
Nick Kledzikd04bc352014-08-30 00:20:14 +00008431 bool ReExport = (Flags & MachO::EXPORT_SYMBOL_FLAGS_REEXPORT);
8432 bool WeakDef = (Flags & MachO::EXPORT_SYMBOL_FLAGS_WEAK_DEFINITION);
8433 bool ThreadLocal = ((Flags & MachO::EXPORT_SYMBOL_FLAGS_KIND_MASK) ==
8434 MachO::EXPORT_SYMBOL_FLAGS_KIND_THREAD_LOCAL);
8435 bool Abs = ((Flags & MachO::EXPORT_SYMBOL_FLAGS_KIND_MASK) ==
8436 MachO::EXPORT_SYMBOL_FLAGS_KIND_ABSOLUTE);
8437 bool Resolver = (Flags & MachO::EXPORT_SYMBOL_FLAGS_STUB_AND_RESOLVER);
8438 if (ReExport)
8439 outs() << "[re-export] ";
8440 else
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008441 outs() << format("0x%08llX ",
8442 Entry.address()); // FIXME:add in base address
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008443 outs() << Entry.name();
Nick Kledzikd04bc352014-08-30 00:20:14 +00008444 if (WeakDef || ThreadLocal || Resolver || Abs) {
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008445 bool NeedsComma = false;
Nick Kledzik1d1ac4b2014-09-03 01:12:52 +00008446 outs() << " [";
Nick Kledzikd04bc352014-08-30 00:20:14 +00008447 if (WeakDef) {
8448 outs() << "weak_def";
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008449 NeedsComma = true;
Nick Kledzikd04bc352014-08-30 00:20:14 +00008450 }
8451 if (ThreadLocal) {
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008452 if (NeedsComma)
Nick Kledzikd04bc352014-08-30 00:20:14 +00008453 outs() << ", ";
8454 outs() << "per-thread";
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008455 NeedsComma = true;
Nick Kledzikd04bc352014-08-30 00:20:14 +00008456 }
8457 if (Abs) {
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008458 if (NeedsComma)
Nick Kledzikd04bc352014-08-30 00:20:14 +00008459 outs() << ", ";
8460 outs() << "absolute";
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008461 NeedsComma = true;
Nick Kledzikd04bc352014-08-30 00:20:14 +00008462 }
8463 if (Resolver) {
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008464 if (NeedsComma)
Nick Kledzikd04bc352014-08-30 00:20:14 +00008465 outs() << ", ";
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008466 outs() << format("resolver=0x%08llX", Entry.other());
8467 NeedsComma = true;
Nick Kledzikd04bc352014-08-30 00:20:14 +00008468 }
8469 outs() << "]";
8470 }
8471 if (ReExport) {
8472 StringRef DylibName = "unknown";
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008473 int Ordinal = Entry.other() - 1;
8474 Obj->getLibraryShortNameByIndex(Ordinal, DylibName);
8475 if (Entry.otherName().empty())
Nick Kledzikd04bc352014-08-30 00:20:14 +00008476 outs() << " (from " << DylibName << ")";
8477 else
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008478 outs() << " (" << Entry.otherName() << " from " << DylibName << ")";
Nick Kledzikd04bc352014-08-30 00:20:14 +00008479 }
8480 outs() << "\n";
8481 }
8482}
Nick Kledzikac431442014-09-12 21:34:15 +00008483
Nick Kledzikac431442014-09-12 21:34:15 +00008484//===----------------------------------------------------------------------===//
8485// rebase table dumping
8486//===----------------------------------------------------------------------===//
8487
8488namespace {
8489class SegInfo {
8490public:
8491 SegInfo(const object::MachOObjectFile *Obj);
8492
8493 StringRef segmentName(uint32_t SegIndex);
8494 StringRef sectionName(uint32_t SegIndex, uint64_t SegOffset);
8495 uint64_t address(uint32_t SegIndex, uint64_t SegOffset);
Kevin Enderbyaf7c9d02015-10-09 16:48:44 +00008496 bool isValidSegIndexAndOffset(uint32_t SegIndex, uint64_t SegOffset);
Nick Kledzikac431442014-09-12 21:34:15 +00008497
8498private:
8499 struct SectionInfo {
8500 uint64_t Address;
8501 uint64_t Size;
8502 StringRef SectionName;
8503 StringRef SegmentName;
8504 uint64_t OffsetInSegment;
8505 uint64_t SegmentStartAddress;
8506 uint32_t SegmentIndex;
8507 };
8508 const SectionInfo &findSection(uint32_t SegIndex, uint64_t SegOffset);
8509 SmallVector<SectionInfo, 32> Sections;
8510};
8511}
8512
8513SegInfo::SegInfo(const object::MachOObjectFile *Obj) {
8514 // Build table of sections so segIndex/offset pairs can be translated.
Nick Kledzik56ebef42014-09-16 01:41:51 +00008515 uint32_t CurSegIndex = Obj->hasPageZeroSegment() ? 1 : 0;
Nick Kledzikac431442014-09-12 21:34:15 +00008516 StringRef CurSegName;
8517 uint64_t CurSegAddress;
8518 for (const SectionRef &Section : Obj->sections()) {
8519 SectionInfo Info;
Davide Italianoccd53fe2015-08-05 07:18:31 +00008520 error(Section.getName(Info.SectionName));
Rafael Espindola80291272014-10-08 15:28:58 +00008521 Info.Address = Section.getAddress();
8522 Info.Size = Section.getSize();
Nick Kledzikac431442014-09-12 21:34:15 +00008523 Info.SegmentName =
8524 Obj->getSectionFinalSegmentName(Section.getRawDataRefImpl());
8525 if (!Info.SegmentName.equals(CurSegName)) {
8526 ++CurSegIndex;
8527 CurSegName = Info.SegmentName;
8528 CurSegAddress = Info.Address;
8529 }
8530 Info.SegmentIndex = CurSegIndex - 1;
8531 Info.OffsetInSegment = Info.Address - CurSegAddress;
8532 Info.SegmentStartAddress = CurSegAddress;
8533 Sections.push_back(Info);
8534 }
8535}
8536
8537StringRef SegInfo::segmentName(uint32_t SegIndex) {
8538 for (const SectionInfo &SI : Sections) {
8539 if (SI.SegmentIndex == SegIndex)
8540 return SI.SegmentName;
8541 }
8542 llvm_unreachable("invalid segIndex");
8543}
8544
Kevin Enderbyaf7c9d02015-10-09 16:48:44 +00008545bool SegInfo::isValidSegIndexAndOffset(uint32_t SegIndex,
8546 uint64_t OffsetInSeg) {
8547 for (const SectionInfo &SI : Sections) {
8548 if (SI.SegmentIndex != SegIndex)
8549 continue;
8550 if (SI.OffsetInSegment > OffsetInSeg)
8551 continue;
8552 if (OffsetInSeg >= (SI.OffsetInSegment + SI.Size))
8553 continue;
8554 return true;
8555 }
8556 return false;
8557}
8558
Nick Kledzikac431442014-09-12 21:34:15 +00008559const SegInfo::SectionInfo &SegInfo::findSection(uint32_t SegIndex,
8560 uint64_t OffsetInSeg) {
8561 for (const SectionInfo &SI : Sections) {
8562 if (SI.SegmentIndex != SegIndex)
8563 continue;
8564 if (SI.OffsetInSegment > OffsetInSeg)
8565 continue;
8566 if (OffsetInSeg >= (SI.OffsetInSegment + SI.Size))
8567 continue;
8568 return SI;
8569 }
8570 llvm_unreachable("segIndex and offset not in any section");
8571}
8572
8573StringRef SegInfo::sectionName(uint32_t SegIndex, uint64_t OffsetInSeg) {
8574 return findSection(SegIndex, OffsetInSeg).SectionName;
8575}
8576
8577uint64_t SegInfo::address(uint32_t SegIndex, uint64_t OffsetInSeg) {
8578 const SectionInfo &SI = findSection(SegIndex, OffsetInSeg);
8579 return SI.SegmentStartAddress + OffsetInSeg;
8580}
8581
8582void llvm::printMachORebaseTable(const object::MachOObjectFile *Obj) {
8583 // Build table of sections so names can used in final output.
8584 SegInfo sectionTable(Obj);
8585
8586 outs() << "segment section address type\n";
8587 for (const llvm::object::MachORebaseEntry &Entry : Obj->rebaseTable()) {
8588 uint32_t SegIndex = Entry.segmentIndex();
8589 uint64_t OffsetInSeg = Entry.segmentOffset();
8590 StringRef SegmentName = sectionTable.segmentName(SegIndex);
8591 StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg);
8592 uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8593
8594 // Table lines look like: __DATA __nl_symbol_ptr 0x0000F00C pointer
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008595 outs() << format("%-8s %-18s 0x%08" PRIX64 " %s\n",
8596 SegmentName.str().c_str(), SectionName.str().c_str(),
8597 Address, Entry.typeName().str().c_str());
Nick Kledzikac431442014-09-12 21:34:15 +00008598 }
8599}
Nick Kledzik56ebef42014-09-16 01:41:51 +00008600
8601static StringRef ordinalName(const object::MachOObjectFile *Obj, int Ordinal) {
8602 StringRef DylibName;
8603 switch (Ordinal) {
8604 case MachO::BIND_SPECIAL_DYLIB_SELF:
8605 return "this-image";
8606 case MachO::BIND_SPECIAL_DYLIB_MAIN_EXECUTABLE:
8607 return "main-executable";
8608 case MachO::BIND_SPECIAL_DYLIB_FLAT_LOOKUP:
8609 return "flat-namespace";
8610 default:
Nick Kledzikabd29872014-09-16 22:03:13 +00008611 if (Ordinal > 0) {
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008612 std::error_code EC =
8613 Obj->getLibraryShortNameByIndex(Ordinal - 1, DylibName);
Nick Kledzikabd29872014-09-16 22:03:13 +00008614 if (EC)
Nick Kledzik51d2c2b2014-10-14 23:29:38 +00008615 return "<<bad library ordinal>>";
Nick Kledzikabd29872014-09-16 22:03:13 +00008616 return DylibName;
8617 }
Nick Kledzik56ebef42014-09-16 01:41:51 +00008618 }
Nick Kledzikabd29872014-09-16 22:03:13 +00008619 return "<<unknown special ordinal>>";
Nick Kledzik56ebef42014-09-16 01:41:51 +00008620}
8621
8622//===----------------------------------------------------------------------===//
8623// bind table dumping
8624//===----------------------------------------------------------------------===//
8625
8626void llvm::printMachOBindTable(const object::MachOObjectFile *Obj) {
8627 // Build table of sections so names can used in final output.
8628 SegInfo sectionTable(Obj);
8629
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008630 outs() << "segment section address type "
8631 "addend dylib symbol\n";
Nick Kledzik56ebef42014-09-16 01:41:51 +00008632 for (const llvm::object::MachOBindEntry &Entry : Obj->bindTable()) {
8633 uint32_t SegIndex = Entry.segmentIndex();
8634 uint64_t OffsetInSeg = Entry.segmentOffset();
8635 StringRef SegmentName = sectionTable.segmentName(SegIndex);
8636 StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg);
8637 uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8638
8639 // Table lines look like:
8640 // __DATA __got 0x00012010 pointer 0 libSystem ___stack_chk_guard
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008641 StringRef Attr;
Nick Kledzik56ebef42014-09-16 01:41:51 +00008642 if (Entry.flags() & MachO::BIND_SYMBOL_FLAGS_WEAK_IMPORT)
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008643 Attr = " (weak_import)";
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008644 outs() << left_justify(SegmentName, 8) << " "
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008645 << left_justify(SectionName, 18) << " "
8646 << format_hex(Address, 10, true) << " "
8647 << left_justify(Entry.typeName(), 8) << " "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008648 << format_decimal(Entry.addend(), 8) << " "
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008649 << left_justify(ordinalName(Obj, Entry.ordinal()), 16) << " "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008650 << Entry.symbolName() << Attr << "\n";
Nick Kledzik56ebef42014-09-16 01:41:51 +00008651 }
8652}
8653
8654//===----------------------------------------------------------------------===//
8655// lazy bind table dumping
8656//===----------------------------------------------------------------------===//
8657
8658void llvm::printMachOLazyBindTable(const object::MachOObjectFile *Obj) {
8659 // Build table of sections so names can used in final output.
8660 SegInfo sectionTable(Obj);
8661
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008662 outs() << "segment section address "
8663 "dylib symbol\n";
Nick Kledzik56ebef42014-09-16 01:41:51 +00008664 for (const llvm::object::MachOBindEntry &Entry : Obj->lazyBindTable()) {
8665 uint32_t SegIndex = Entry.segmentIndex();
8666 uint64_t OffsetInSeg = Entry.segmentOffset();
8667 StringRef SegmentName = sectionTable.segmentName(SegIndex);
8668 StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg);
8669 uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8670
8671 // Table lines look like:
8672 // __DATA __got 0x00012010 libSystem ___stack_chk_guard
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008673 outs() << left_justify(SegmentName, 8) << " "
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008674 << left_justify(SectionName, 18) << " "
8675 << format_hex(Address, 10, true) << " "
8676 << left_justify(ordinalName(Obj, Entry.ordinal()), 16) << " "
Nick Kledzik56ebef42014-09-16 01:41:51 +00008677 << Entry.symbolName() << "\n";
8678 }
8679}
8680
Nick Kledzik56ebef42014-09-16 01:41:51 +00008681//===----------------------------------------------------------------------===//
8682// weak bind table dumping
8683//===----------------------------------------------------------------------===//
8684
8685void llvm::printMachOWeakBindTable(const object::MachOObjectFile *Obj) {
8686 // Build table of sections so names can used in final output.
8687 SegInfo sectionTable(Obj);
8688
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008689 outs() << "segment section address "
8690 "type addend symbol\n";
Nick Kledzik56ebef42014-09-16 01:41:51 +00008691 for (const llvm::object::MachOBindEntry &Entry : Obj->weakBindTable()) {
8692 // Strong symbols don't have a location to update.
8693 if (Entry.flags() & MachO::BIND_SYMBOL_FLAGS_NON_WEAK_DEFINITION) {
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008694 outs() << " strong "
Nick Kledzik56ebef42014-09-16 01:41:51 +00008695 << Entry.symbolName() << "\n";
8696 continue;
8697 }
8698 uint32_t SegIndex = Entry.segmentIndex();
8699 uint64_t OffsetInSeg = Entry.segmentOffset();
8700 StringRef SegmentName = sectionTable.segmentName(SegIndex);
8701 StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg);
8702 uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8703
8704 // Table lines look like:
8705 // __DATA __data 0x00001000 pointer 0 _foo
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008706 outs() << left_justify(SegmentName, 8) << " "
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008707 << left_justify(SectionName, 18) << " "
8708 << format_hex(Address, 10, true) << " "
8709 << left_justify(Entry.typeName(), 8) << " "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008710 << format_decimal(Entry.addend(), 8) << " " << Entry.symbolName()
8711 << "\n";
Nick Kledzik56ebef42014-09-16 01:41:51 +00008712 }
8713}
8714
Kevin Enderby6f326ce2014-10-23 19:37:31 +00008715// get_dyld_bind_info_symbolname() is used for disassembly and passed an
8716// address, ReferenceValue, in the Mach-O file and looks in the dyld bind
8717// information for that address. If the address is found its binding symbol
8718// name is returned. If not nullptr is returned.
8719static const char *get_dyld_bind_info_symbolname(uint64_t ReferenceValue,
8720 struct DisassembleInfo *info) {
Kevin Enderby078be602014-10-23 19:53:12 +00008721 if (info->bindtable == nullptr) {
8722 info->bindtable = new (BindTable);
Kevin Enderby6f326ce2014-10-23 19:37:31 +00008723 SegInfo sectionTable(info->O);
8724 for (const llvm::object::MachOBindEntry &Entry : info->O->bindTable()) {
8725 uint32_t SegIndex = Entry.segmentIndex();
8726 uint64_t OffsetInSeg = Entry.segmentOffset();
Kevin Enderbyaf7c9d02015-10-09 16:48:44 +00008727 if (!sectionTable.isValidSegIndexAndOffset(SegIndex, OffsetInSeg))
8728 continue;
Kevin Enderby6f326ce2014-10-23 19:37:31 +00008729 uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8730 const char *SymbolName = nullptr;
8731 StringRef name = Entry.symbolName();
8732 if (!name.empty())
8733 SymbolName = name.data();
Kevin Enderby078be602014-10-23 19:53:12 +00008734 info->bindtable->push_back(std::make_pair(Address, SymbolName));
Kevin Enderby6f326ce2014-10-23 19:37:31 +00008735 }
8736 }
Kevin Enderby078be602014-10-23 19:53:12 +00008737 for (bind_table_iterator BI = info->bindtable->begin(),
8738 BE = info->bindtable->end();
Kevin Enderby6f326ce2014-10-23 19:37:31 +00008739 BI != BE; ++BI) {
8740 uint64_t Address = BI->first;
8741 if (ReferenceValue == Address) {
8742 const char *SymbolName = BI->second;
8743 return SymbolName;
8744 }
8745 }
8746 return nullptr;
8747}