blob: 61567436a1cc7664a9afb9f08e378e5c6ed9082c [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;
669 if (O->isLittleEndian()) {
670 Hi = l1;
671 Lo = l0;
672 } else {
673 Hi = l0;
674 Lo = l1;
675 }
676 // Hi is the high word, so this is equivalent to if(isfinite(d))
677 if ((Hi & 0x7ff00000) != 0x7ff00000)
678 outs() << format(" (%.16e)\n", d);
679 else {
680 if (Hi == 0x7ff00000 && Lo == 0)
681 outs() << " (+Infinity)\n";
682 else if (Hi == 0xfff00000 && Lo == 0)
683 outs() << " (-Infinity)\n";
684 else if ((Hi & 0x00080000) == 0x00080000)
685 outs() << " (non-signaling Not-a-Number)\n";
686 else
687 outs() << " (signaling Not-a-Number)\n";
688 }
689}
690
691static void DumpLiteral8Section(MachOObjectFile *O, const char *sect,
692 uint32_t sect_size, uint64_t sect_addr,
693 bool print_addresses) {
694 for (uint32_t i = 0; i < sect_size; i += sizeof(double)) {
695 if (print_addresses) {
696 if (O->is64Bit())
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000697 outs() << format("%016" PRIx64, sect_addr + i) << " ";
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000698 else
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000699 outs() << format("%08" PRIx64, sect_addr + i) << " ";
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000700 }
701 double d;
702 memcpy(&d, sect + i, sizeof(double));
703 if (O->isLittleEndian() != sys::IsLittleEndianHost)
704 sys::swapByteOrder(d);
705 uint32_t l0, l1;
706 memcpy(&l0, sect + i, sizeof(uint32_t));
707 memcpy(&l1, sect + i + sizeof(uint32_t), sizeof(uint32_t));
708 if (O->isLittleEndian() != sys::IsLittleEndianHost) {
709 sys::swapByteOrder(l0);
710 sys::swapByteOrder(l1);
711 }
712 DumpLiteral8(O, l0, l1, d);
713 }
714}
715
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000716static void DumpLiteral16(uint32_t l0, uint32_t l1, uint32_t l2, uint32_t l3) {
717 outs() << format("0x%08" PRIx32, l0) << " ";
718 outs() << format("0x%08" PRIx32, l1) << " ";
719 outs() << format("0x%08" PRIx32, l2) << " ";
720 outs() << format("0x%08" PRIx32, l3) << "\n";
721}
722
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000723static void DumpLiteral16Section(MachOObjectFile *O, const char *sect,
724 uint32_t sect_size, uint64_t sect_addr,
725 bool print_addresses) {
726 for (uint32_t i = 0; i < sect_size; i += 16) {
727 if (print_addresses) {
728 if (O->is64Bit())
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000729 outs() << format("%016" PRIx64, sect_addr + i) << " ";
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000730 else
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000731 outs() << format("%08" PRIx64, sect_addr + i) << " ";
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000732 }
733 uint32_t l0, l1, l2, l3;
734 memcpy(&l0, sect + i, sizeof(uint32_t));
735 memcpy(&l1, sect + i + sizeof(uint32_t), sizeof(uint32_t));
736 memcpy(&l2, sect + i + 2 * sizeof(uint32_t), sizeof(uint32_t));
737 memcpy(&l3, sect + i + 3 * sizeof(uint32_t), sizeof(uint32_t));
738 if (O->isLittleEndian() != sys::IsLittleEndianHost) {
739 sys::swapByteOrder(l0);
740 sys::swapByteOrder(l1);
741 sys::swapByteOrder(l2);
742 sys::swapByteOrder(l3);
743 }
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000744 DumpLiteral16(l0, l1, l2, l3);
745 }
746}
747
748static void DumpLiteralPointerSection(MachOObjectFile *O,
749 const SectionRef &Section,
750 const char *sect, uint32_t sect_size,
751 uint64_t sect_addr,
752 bool print_addresses) {
753 // Collect the literal sections in this Mach-O file.
754 std::vector<SectionRef> LiteralSections;
755 for (const SectionRef &Section : O->sections()) {
756 DataRefImpl Ref = Section.getRawDataRefImpl();
757 uint32_t section_type;
758 if (O->is64Bit()) {
759 const MachO::section_64 Sec = O->getSection64(Ref);
760 section_type = Sec.flags & MachO::SECTION_TYPE;
761 } else {
762 const MachO::section Sec = O->getSection(Ref);
763 section_type = Sec.flags & MachO::SECTION_TYPE;
764 }
765 if (section_type == MachO::S_CSTRING_LITERALS ||
766 section_type == MachO::S_4BYTE_LITERALS ||
767 section_type == MachO::S_8BYTE_LITERALS ||
768 section_type == MachO::S_16BYTE_LITERALS)
769 LiteralSections.push_back(Section);
770 }
771
772 // Set the size of the literal pointer.
773 uint32_t lp_size = O->is64Bit() ? 8 : 4;
774
Eric Christopher572e03a2015-06-19 01:53:21 +0000775 // Collect the external relocation symbols for the literal pointers.
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000776 std::vector<std::pair<uint64_t, SymbolRef>> Relocs;
777 for (const RelocationRef &Reloc : Section.relocations()) {
778 DataRefImpl Rel;
779 MachO::any_relocation_info RE;
780 bool isExtern = false;
781 Rel = Reloc.getRawDataRefImpl();
782 RE = O->getRelocation(Rel);
783 isExtern = O->getPlainRelocationExternal(RE);
784 if (isExtern) {
Rafael Espindola96d071c2015-06-29 23:29:12 +0000785 uint64_t RelocOffset = Reloc.getOffset();
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000786 symbol_iterator RelocSym = Reloc.getSymbol();
787 Relocs.push_back(std::make_pair(RelocOffset, *RelocSym));
788 }
789 }
790 array_pod_sort(Relocs.begin(), Relocs.end());
791
792 // Dump each literal pointer.
793 for (uint32_t i = 0; i < sect_size; i += lp_size) {
794 if (print_addresses) {
795 if (O->is64Bit())
796 outs() << format("%016" PRIx64, sect_addr + i) << " ";
797 else
798 outs() << format("%08" PRIx64, sect_addr + i) << " ";
799 }
800 uint64_t lp;
801 if (O->is64Bit()) {
802 memcpy(&lp, sect + i, sizeof(uint64_t));
803 if (O->isLittleEndian() != sys::IsLittleEndianHost)
804 sys::swapByteOrder(lp);
805 } else {
806 uint32_t li;
807 memcpy(&li, sect + i, sizeof(uint32_t));
808 if (O->isLittleEndian() != sys::IsLittleEndianHost)
809 sys::swapByteOrder(li);
810 lp = li;
811 }
812
813 // First look for an external relocation entry for this literal pointer.
David Blaikie33dd45d02015-03-23 18:39:02 +0000814 auto Reloc = std::find_if(
815 Relocs.begin(), Relocs.end(),
816 [&](const std::pair<uint64_t, SymbolRef> &P) { return P.first == i; });
817 if (Reloc != Relocs.end()) {
818 symbol_iterator RelocSym = Reloc->second;
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +0000819 ErrorOr<StringRef> SymName = RelocSym->getName();
820 if (std::error_code EC = SymName.getError())
821 report_fatal_error(EC.message());
822 outs() << "external relocation entry for symbol:" << *SymName << "\n";
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000823 continue;
David Blaikie33dd45d02015-03-23 18:39:02 +0000824 }
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000825
826 // For local references see what the section the literal pointer points to.
David Blaikie33dd45d02015-03-23 18:39:02 +0000827 auto Sect = std::find_if(LiteralSections.begin(), LiteralSections.end(),
828 [&](const SectionRef &R) {
829 return lp >= R.getAddress() &&
830 lp < R.getAddress() + R.getSize();
831 });
832 if (Sect == LiteralSections.end()) {
Kevin Enderby578fe5a2015-02-17 21:35:48 +0000833 outs() << format("0x%" PRIx64, lp) << " (not in a literal section)\n";
David Blaikie33dd45d02015-03-23 18:39:02 +0000834 continue;
835 }
836
837 uint64_t SectAddress = Sect->getAddress();
838 uint64_t SectSize = Sect->getSize();
839
840 StringRef SectName;
841 Sect->getName(SectName);
842 DataRefImpl Ref = Sect->getRawDataRefImpl();
843 StringRef SegmentName = O->getSectionFinalSegmentName(Ref);
844 outs() << SegmentName << ":" << SectName << ":";
845
846 uint32_t section_type;
847 if (O->is64Bit()) {
848 const MachO::section_64 Sec = O->getSection64(Ref);
849 section_type = Sec.flags & MachO::SECTION_TYPE;
850 } else {
851 const MachO::section Sec = O->getSection(Ref);
852 section_type = Sec.flags & MachO::SECTION_TYPE;
853 }
854
855 StringRef BytesStr;
856 Sect->getContents(BytesStr);
857 const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
858
859 switch (section_type) {
860 case MachO::S_CSTRING_LITERALS:
861 for (uint64_t i = lp - SectAddress; i < SectSize && Contents[i] != '\0';
862 i++) {
863 DumpCstringChar(Contents[i]);
864 }
865 outs() << "\n";
866 break;
867 case MachO::S_4BYTE_LITERALS:
868 float f;
869 memcpy(&f, Contents + (lp - SectAddress), sizeof(float));
870 uint32_t l;
871 memcpy(&l, Contents + (lp - SectAddress), sizeof(uint32_t));
872 if (O->isLittleEndian() != sys::IsLittleEndianHost) {
873 sys::swapByteOrder(f);
874 sys::swapByteOrder(l);
875 }
876 DumpLiteral4(l, f);
877 break;
878 case MachO::S_8BYTE_LITERALS: {
879 double d;
880 memcpy(&d, Contents + (lp - SectAddress), sizeof(double));
881 uint32_t l0, l1;
882 memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t));
883 memcpy(&l1, Contents + (lp - SectAddress) + sizeof(uint32_t),
884 sizeof(uint32_t));
885 if (O->isLittleEndian() != sys::IsLittleEndianHost) {
886 sys::swapByteOrder(f);
887 sys::swapByteOrder(l0);
888 sys::swapByteOrder(l1);
889 }
890 DumpLiteral8(O, l0, l1, d);
891 break;
892 }
893 case MachO::S_16BYTE_LITERALS: {
894 uint32_t l0, l1, l2, l3;
895 memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t));
896 memcpy(&l1, Contents + (lp - SectAddress) + sizeof(uint32_t),
897 sizeof(uint32_t));
898 memcpy(&l2, Contents + (lp - SectAddress) + 2 * sizeof(uint32_t),
899 sizeof(uint32_t));
900 memcpy(&l3, Contents + (lp - SectAddress) + 3 * sizeof(uint32_t),
901 sizeof(uint32_t));
902 if (O->isLittleEndian() != sys::IsLittleEndianHost) {
903 sys::swapByteOrder(l0);
904 sys::swapByteOrder(l1);
905 sys::swapByteOrder(l2);
906 sys::swapByteOrder(l3);
907 }
908 DumpLiteral16(l0, l1, l2, l3);
909 break;
910 }
911 }
Kevin Enderby74b43cb2015-02-06 23:25:38 +0000912 }
913}
914
Kevin Enderbyf6d25852015-01-31 00:37:11 +0000915static void DumpInitTermPointerSection(MachOObjectFile *O, const char *sect,
916 uint32_t sect_size, uint64_t sect_addr,
917 SymbolAddressMap *AddrMap,
918 bool verbose) {
919 uint32_t stride;
920 if (O->is64Bit())
921 stride = sizeof(uint64_t);
922 else
923 stride = sizeof(uint32_t);
924 for (uint32_t i = 0; i < sect_size; i += stride) {
925 const char *SymbolName = nullptr;
926 if (O->is64Bit()) {
927 outs() << format("0x%016" PRIx64, sect_addr + i * stride) << " ";
928 uint64_t pointer_value;
929 memcpy(&pointer_value, sect + i, stride);
930 if (O->isLittleEndian() != sys::IsLittleEndianHost)
931 sys::swapByteOrder(pointer_value);
932 outs() << format("0x%016" PRIx64, pointer_value);
933 if (verbose)
934 SymbolName = GuessSymbolName(pointer_value, AddrMap);
935 } else {
936 outs() << format("0x%08" PRIx64, sect_addr + i * stride) << " ";
937 uint32_t pointer_value;
938 memcpy(&pointer_value, sect + i, stride);
939 if (O->isLittleEndian() != sys::IsLittleEndianHost)
940 sys::swapByteOrder(pointer_value);
941 outs() << format("0x%08" PRIx32, pointer_value);
942 if (verbose)
943 SymbolName = GuessSymbolName(pointer_value, AddrMap);
944 }
945 if (SymbolName)
946 outs() << " " << SymbolName;
947 outs() << "\n";
948 }
949}
950
951static void DumpRawSectionContents(MachOObjectFile *O, const char *sect,
952 uint32_t size, uint64_t addr) {
953 uint32_t cputype = O->getHeader().cputype;
954 if (cputype == MachO::CPU_TYPE_I386 || cputype == MachO::CPU_TYPE_X86_64) {
955 uint32_t j;
956 for (uint32_t i = 0; i < size; i += j, addr += j) {
957 if (O->is64Bit())
958 outs() << format("%016" PRIx64, addr) << "\t";
959 else
Kevin Enderbyf0640752015-03-13 17:56:32 +0000960 outs() << format("%08" PRIx64, addr) << "\t";
Kevin Enderbyf6d25852015-01-31 00:37:11 +0000961 for (j = 0; j < 16 && i + j < size; j++) {
962 uint8_t byte_word = *(sect + i + j);
963 outs() << format("%02" PRIx32, (uint32_t)byte_word) << " ";
964 }
965 outs() << "\n";
966 }
967 } else {
968 uint32_t j;
969 for (uint32_t i = 0; i < size; i += j, addr += j) {
970 if (O->is64Bit())
971 outs() << format("%016" PRIx64, addr) << "\t";
972 else
973 outs() << format("%08" PRIx64, sect) << "\t";
974 for (j = 0; j < 4 * sizeof(int32_t) && i + j < size;
975 j += sizeof(int32_t)) {
976 if (i + j + sizeof(int32_t) < size) {
977 uint32_t long_word;
978 memcpy(&long_word, sect + i + j, sizeof(int32_t));
979 if (O->isLittleEndian() != sys::IsLittleEndianHost)
980 sys::swapByteOrder(long_word);
981 outs() << format("%08" PRIx32, long_word) << " ";
982 } else {
983 for (uint32_t k = 0; i + j + k < size; k++) {
984 uint8_t byte_word = *(sect + i + j);
985 outs() << format("%02" PRIx32, (uint32_t)byte_word) << " ";
986 }
987 }
988 }
989 outs() << "\n";
990 }
991 }
992}
993
Kevin Enderby95df54c2015-02-04 01:01:38 +0000994static void DisassembleMachO(StringRef Filename, MachOObjectFile *MachOOF,
995 StringRef DisSegName, StringRef DisSectName);
Kevin Enderby4ad9bde2015-04-16 22:33:20 +0000996static void DumpProtocolSection(MachOObjectFile *O, const char *sect,
997 uint32_t size, uint32_t addr);
Kevin Enderby95df54c2015-02-04 01:01:38 +0000998
999static void DumpSectionContents(StringRef Filename, MachOObjectFile *O,
1000 bool verbose) {
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001001 SymbolAddressMap AddrMap;
1002 if (verbose)
1003 CreateSymbolAddressMap(O, &AddrMap);
1004
Colin LeMahieufcc32762015-07-29 19:08:10 +00001005 for (unsigned i = 0; i < FilterSections.size(); ++i) {
1006 StringRef DumpSection = FilterSections[i];
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001007 std::pair<StringRef, StringRef> DumpSegSectName;
1008 DumpSegSectName = DumpSection.split(',');
1009 StringRef DumpSegName, DumpSectName;
1010 if (DumpSegSectName.second.size()) {
1011 DumpSegName = DumpSegSectName.first;
1012 DumpSectName = DumpSegSectName.second;
1013 } else {
1014 DumpSegName = "";
1015 DumpSectName = DumpSegSectName.first;
1016 }
1017 for (const SectionRef &Section : O->sections()) {
1018 StringRef SectName;
1019 Section.getName(SectName);
1020 DataRefImpl Ref = Section.getRawDataRefImpl();
1021 StringRef SegName = O->getSectionFinalSegmentName(Ref);
1022 if ((DumpSegName.empty() || SegName == DumpSegName) &&
1023 (SectName == DumpSectName)) {
Adrian Prantlc2401dd2015-03-27 17:31:15 +00001024
Kevin Enderby95df54c2015-02-04 01:01:38 +00001025 uint32_t section_flags;
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001026 if (O->is64Bit()) {
1027 const MachO::section_64 Sec = O->getSection64(Ref);
Kevin Enderby95df54c2015-02-04 01:01:38 +00001028 section_flags = Sec.flags;
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001029
1030 } else {
1031 const MachO::section Sec = O->getSection(Ref);
Kevin Enderby95df54c2015-02-04 01:01:38 +00001032 section_flags = Sec.flags;
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001033 }
Kevin Enderby95df54c2015-02-04 01:01:38 +00001034 uint32_t section_type = section_flags & MachO::SECTION_TYPE;
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001035
1036 StringRef BytesStr;
1037 Section.getContents(BytesStr);
1038 const char *sect = reinterpret_cast<const char *>(BytesStr.data());
1039 uint32_t sect_size = BytesStr.size();
1040 uint64_t sect_addr = Section.getAddress();
1041
Adrian Prantlc2401dd2015-03-27 17:31:15 +00001042 outs() << "Contents of (" << SegName << "," << SectName
1043 << ") section\n";
1044
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001045 if (verbose) {
Kevin Enderby95df54c2015-02-04 01:01:38 +00001046 if ((section_flags & MachO::S_ATTR_PURE_INSTRUCTIONS) ||
1047 (section_flags & MachO::S_ATTR_SOME_INSTRUCTIONS)) {
1048 DisassembleMachO(Filename, O, SegName, SectName);
1049 continue;
1050 }
Kevin Enderbycd66be52015-03-11 22:06:32 +00001051 if (SegName == "__TEXT" && SectName == "__info_plist") {
1052 outs() << sect;
1053 continue;
1054 }
Kevin Enderby4ad9bde2015-04-16 22:33:20 +00001055 if (SegName == "__OBJC" && SectName == "__protocol") {
1056 DumpProtocolSection(O, sect, sect_size, sect_addr);
1057 continue;
1058 }
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001059 switch (section_type) {
1060 case MachO::S_REGULAR:
1061 DumpRawSectionContents(O, sect, sect_size, sect_addr);
1062 break;
1063 case MachO::S_ZEROFILL:
1064 outs() << "zerofill section and has no contents in the file\n";
1065 break;
Kevin Enderby10ba0412015-02-04 21:38:42 +00001066 case MachO::S_CSTRING_LITERALS:
Kevin Enderbyab5e6c92015-03-17 21:07:39 +00001067 DumpCstringSection(O, sect, sect_size, sect_addr, !NoLeadingAddr);
Kevin Enderby10ba0412015-02-04 21:38:42 +00001068 break;
Kevin Enderby74b43cb2015-02-06 23:25:38 +00001069 case MachO::S_4BYTE_LITERALS:
Kevin Enderbyab5e6c92015-03-17 21:07:39 +00001070 DumpLiteral4Section(O, sect, sect_size, sect_addr, !NoLeadingAddr);
Kevin Enderby74b43cb2015-02-06 23:25:38 +00001071 break;
1072 case MachO::S_8BYTE_LITERALS:
Kevin Enderbyab5e6c92015-03-17 21:07:39 +00001073 DumpLiteral8Section(O, sect, sect_size, sect_addr, !NoLeadingAddr);
Kevin Enderby74b43cb2015-02-06 23:25:38 +00001074 break;
1075 case MachO::S_16BYTE_LITERALS:
Kevin Enderby0fc11822015-04-01 20:57:01 +00001076 DumpLiteral16Section(O, sect, sect_size, sect_addr, !NoLeadingAddr);
1077 break;
Kevin Enderby578fe5a2015-02-17 21:35:48 +00001078 case MachO::S_LITERAL_POINTERS:
1079 DumpLiteralPointerSection(O, Section, sect, sect_size, sect_addr,
Kevin Enderbyab5e6c92015-03-17 21:07:39 +00001080 !NoLeadingAddr);
Kevin Enderby578fe5a2015-02-17 21:35:48 +00001081 break;
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001082 case MachO::S_MOD_INIT_FUNC_POINTERS:
1083 case MachO::S_MOD_TERM_FUNC_POINTERS:
1084 DumpInitTermPointerSection(O, sect, sect_size, sect_addr, &AddrMap,
1085 verbose);
1086 break;
1087 default:
1088 outs() << "Unknown section type ("
1089 << format("0x%08" PRIx32, section_type) << ")\n";
1090 DumpRawSectionContents(O, sect, sect_size, sect_addr);
1091 break;
1092 }
1093 } else {
1094 if (section_type == MachO::S_ZEROFILL)
1095 outs() << "zerofill section and has no contents in the file\n";
1096 else
1097 DumpRawSectionContents(O, sect, sect_size, sect_addr);
1098 }
1099 }
1100 }
1101 }
1102}
1103
Kevin Enderbycd66be52015-03-11 22:06:32 +00001104static void DumpInfoPlistSectionContents(StringRef Filename,
1105 MachOObjectFile *O) {
1106 for (const SectionRef &Section : O->sections()) {
1107 StringRef SectName;
1108 Section.getName(SectName);
1109 DataRefImpl Ref = Section.getRawDataRefImpl();
1110 StringRef SegName = O->getSectionFinalSegmentName(Ref);
1111 if (SegName == "__TEXT" && SectName == "__info_plist") {
1112 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
1113 StringRef BytesStr;
1114 Section.getContents(BytesStr);
1115 const char *sect = reinterpret_cast<const char *>(BytesStr.data());
1116 outs() << sect;
1117 return;
1118 }
1119 }
1120}
1121
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001122// checkMachOAndArchFlags() checks to see if the ObjectFile is a Mach-O file
1123// and if it is and there is a list of architecture flags is specified then
1124// check to make sure this Mach-O file is one of those architectures or all
1125// architectures were specified. If not then an error is generated and this
1126// routine returns false. Else it returns true.
1127static bool checkMachOAndArchFlags(ObjectFile *O, StringRef Filename) {
1128 if (isa<MachOObjectFile>(O) && !ArchAll && ArchFlags.size() != 0) {
1129 MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(O);
1130 bool ArchFound = false;
1131 MachO::mach_header H;
1132 MachO::mach_header_64 H_64;
1133 Triple T;
1134 if (MachO->is64Bit()) {
1135 H_64 = MachO->MachOObjectFile::getHeader64();
1136 T = MachOObjectFile::getArch(H_64.cputype, H_64.cpusubtype);
1137 } else {
1138 H = MachO->MachOObjectFile::getHeader();
1139 T = MachOObjectFile::getArch(H.cputype, H.cpusubtype);
1140 }
1141 unsigned i;
1142 for (i = 0; i < ArchFlags.size(); ++i) {
1143 if (ArchFlags[i] == T.getArchName())
1144 ArchFound = true;
1145 break;
1146 }
1147 if (!ArchFound) {
1148 errs() << "llvm-objdump: file: " + Filename + " does not contain "
1149 << "architecture: " + ArchFlags[i] + "\n";
1150 return false;
1151 }
1152 }
1153 return true;
1154}
1155
Kevin Enderby0fc11822015-04-01 20:57:01 +00001156static void printObjcMetaData(MachOObjectFile *O, bool verbose);
1157
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001158// ProcessMachO() is passed a single opened Mach-O file, which may be an
1159// archive member and or in a slice of a universal file. It prints the
1160// the file name and header info and then processes it according to the
1161// command line options.
1162static void ProcessMachO(StringRef Filename, MachOObjectFile *MachOOF,
1163 StringRef ArchiveMemberName = StringRef(),
1164 StringRef ArchitectureName = StringRef()) {
Kevin Enderby131d1772015-01-09 19:22:37 +00001165 // If we are doing some processing here on the Mach-O file print the header
1166 // info. And don't print it otherwise like in the case of printing the
Kevin Enderbya7bdc7e2015-01-22 18:55:27 +00001167 // UniversalHeaders or ArchiveHeaders.
Kevin Enderby131d1772015-01-09 19:22:37 +00001168 if (Disassemble || PrivateHeaders || ExportsTrie || Rebase || Bind ||
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001169 LazyBind || WeakBind || IndirectSymbols || DataInCode || LinkOptHints ||
Colin LeMahieufcc32762015-07-29 19:08:10 +00001170 DylibsUsed || DylibId || ObjcMetaData || (FilterSections.size() != 0)) {
Kevin Enderby131d1772015-01-09 19:22:37 +00001171 outs() << Filename;
1172 if (!ArchiveMemberName.empty())
1173 outs() << '(' << ArchiveMemberName << ')';
1174 if (!ArchitectureName.empty())
1175 outs() << " (architecture " << ArchitectureName << ")";
1176 outs() << ":\n";
1177 }
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001178
1179 if (Disassemble)
Kevin Enderby95df54c2015-02-04 01:01:38 +00001180 DisassembleMachO(Filename, MachOOF, "__TEXT", "__text");
Kevin Enderbya7bdc7e2015-01-22 18:55:27 +00001181 if (IndirectSymbols)
Kevin Enderbyf0640752015-03-13 17:56:32 +00001182 PrintIndirectSymbols(MachOOF, !NonVerbose);
Kevin Enderby69fe98d2015-01-23 18:52:17 +00001183 if (DataInCode)
Kevin Enderbyf0640752015-03-13 17:56:32 +00001184 PrintDataInCodeTable(MachOOF, !NonVerbose);
Kevin Enderby9a509442015-01-27 21:28:24 +00001185 if (LinkOptHints)
1186 PrintLinkOptHints(MachOOF);
Kevin Enderby98da6132015-01-20 21:47:46 +00001187 if (Relocations)
1188 PrintRelocations(MachOOF);
1189 if (SectionHeaders)
1190 PrintSectionHeaders(MachOOF);
1191 if (SectionContents)
1192 PrintSectionContents(MachOOF);
Colin LeMahieufcc32762015-07-29 19:08:10 +00001193 if (FilterSections.size() != 0)
Kevin Enderbyf0640752015-03-13 17:56:32 +00001194 DumpSectionContents(Filename, MachOOF, !NonVerbose);
Kevin Enderbycd66be52015-03-11 22:06:32 +00001195 if (InfoPlist)
1196 DumpInfoPlistSectionContents(Filename, MachOOF);
Kevin Enderbybc847fa2015-03-16 20:08:09 +00001197 if (DylibsUsed)
1198 PrintDylibs(MachOOF, false);
1199 if (DylibId)
1200 PrintDylibs(MachOOF, true);
Kevin Enderby98da6132015-01-20 21:47:46 +00001201 if (SymbolTable)
1202 PrintSymbolTable(MachOOF);
1203 if (UnwindInfo)
1204 printMachOUnwindInfo(MachOOF);
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001205 if (PrivateHeaders)
1206 printMachOFileHeader(MachOOF);
Kevin Enderby0fc11822015-04-01 20:57:01 +00001207 if (ObjcMetaData)
1208 printObjcMetaData(MachOOF, !NonVerbose);
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001209 if (ExportsTrie)
1210 printExportsTrie(MachOOF);
1211 if (Rebase)
1212 printRebaseTable(MachOOF);
1213 if (Bind)
1214 printBindTable(MachOOF);
1215 if (LazyBind)
1216 printLazyBindTable(MachOOF);
1217 if (WeakBind)
1218 printWeakBindTable(MachOOF);
1219}
1220
Kevin Enderby131d1772015-01-09 19:22:37 +00001221// printUnknownCPUType() helps print_fat_headers for unknown CPU's.
1222static void printUnknownCPUType(uint32_t cputype, uint32_t cpusubtype) {
1223 outs() << " cputype (" << cputype << ")\n";
1224 outs() << " cpusubtype (" << cpusubtype << ")\n";
1225}
1226
1227// printCPUType() helps print_fat_headers by printing the cputype and
1228// pusubtype (symbolically for the one's it knows about).
1229static void printCPUType(uint32_t cputype, uint32_t cpusubtype) {
1230 switch (cputype) {
1231 case MachO::CPU_TYPE_I386:
1232 switch (cpusubtype) {
1233 case MachO::CPU_SUBTYPE_I386_ALL:
1234 outs() << " cputype CPU_TYPE_I386\n";
1235 outs() << " cpusubtype CPU_SUBTYPE_I386_ALL\n";
1236 break;
1237 default:
1238 printUnknownCPUType(cputype, cpusubtype);
1239 break;
1240 }
1241 break;
1242 case MachO::CPU_TYPE_X86_64:
1243 switch (cpusubtype) {
1244 case MachO::CPU_SUBTYPE_X86_64_ALL:
1245 outs() << " cputype CPU_TYPE_X86_64\n";
1246 outs() << " cpusubtype CPU_SUBTYPE_X86_64_ALL\n";
1247 break;
1248 case MachO::CPU_SUBTYPE_X86_64_H:
1249 outs() << " cputype CPU_TYPE_X86_64\n";
1250 outs() << " cpusubtype CPU_SUBTYPE_X86_64_H\n";
1251 break;
1252 default:
1253 printUnknownCPUType(cputype, cpusubtype);
1254 break;
1255 }
1256 break;
1257 case MachO::CPU_TYPE_ARM:
1258 switch (cpusubtype) {
1259 case MachO::CPU_SUBTYPE_ARM_ALL:
1260 outs() << " cputype CPU_TYPE_ARM\n";
1261 outs() << " cpusubtype CPU_SUBTYPE_ARM_ALL\n";
1262 break;
1263 case MachO::CPU_SUBTYPE_ARM_V4T:
1264 outs() << " cputype CPU_TYPE_ARM\n";
1265 outs() << " cpusubtype CPU_SUBTYPE_ARM_V4T\n";
1266 break;
1267 case MachO::CPU_SUBTYPE_ARM_V5TEJ:
1268 outs() << " cputype CPU_TYPE_ARM\n";
1269 outs() << " cpusubtype CPU_SUBTYPE_ARM_V5TEJ\n";
1270 break;
1271 case MachO::CPU_SUBTYPE_ARM_XSCALE:
1272 outs() << " cputype CPU_TYPE_ARM\n";
1273 outs() << " cpusubtype CPU_SUBTYPE_ARM_XSCALE\n";
1274 break;
1275 case MachO::CPU_SUBTYPE_ARM_V6:
1276 outs() << " cputype CPU_TYPE_ARM\n";
1277 outs() << " cpusubtype CPU_SUBTYPE_ARM_V6\n";
1278 break;
1279 case MachO::CPU_SUBTYPE_ARM_V6M:
1280 outs() << " cputype CPU_TYPE_ARM\n";
1281 outs() << " cpusubtype CPU_SUBTYPE_ARM_V6M\n";
1282 break;
1283 case MachO::CPU_SUBTYPE_ARM_V7:
1284 outs() << " cputype CPU_TYPE_ARM\n";
1285 outs() << " cpusubtype CPU_SUBTYPE_ARM_V7\n";
1286 break;
1287 case MachO::CPU_SUBTYPE_ARM_V7EM:
1288 outs() << " cputype CPU_TYPE_ARM\n";
1289 outs() << " cpusubtype CPU_SUBTYPE_ARM_V7EM\n";
1290 break;
1291 case MachO::CPU_SUBTYPE_ARM_V7K:
1292 outs() << " cputype CPU_TYPE_ARM\n";
1293 outs() << " cpusubtype CPU_SUBTYPE_ARM_V7K\n";
1294 break;
1295 case MachO::CPU_SUBTYPE_ARM_V7M:
1296 outs() << " cputype CPU_TYPE_ARM\n";
1297 outs() << " cpusubtype CPU_SUBTYPE_ARM_V7M\n";
1298 break;
1299 case MachO::CPU_SUBTYPE_ARM_V7S:
1300 outs() << " cputype CPU_TYPE_ARM\n";
1301 outs() << " cpusubtype CPU_SUBTYPE_ARM_V7S\n";
1302 break;
1303 default:
1304 printUnknownCPUType(cputype, cpusubtype);
1305 break;
1306 }
1307 break;
1308 case MachO::CPU_TYPE_ARM64:
1309 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
1310 case MachO::CPU_SUBTYPE_ARM64_ALL:
1311 outs() << " cputype CPU_TYPE_ARM64\n";
1312 outs() << " cpusubtype CPU_SUBTYPE_ARM64_ALL\n";
1313 break;
1314 default:
1315 printUnknownCPUType(cputype, cpusubtype);
1316 break;
1317 }
1318 break;
1319 default:
1320 printUnknownCPUType(cputype, cpusubtype);
1321 break;
1322 }
1323}
1324
1325static void printMachOUniversalHeaders(const object::MachOUniversalBinary *UB,
1326 bool verbose) {
1327 outs() << "Fat headers\n";
1328 if (verbose)
1329 outs() << "fat_magic FAT_MAGIC\n";
1330 else
1331 outs() << "fat_magic " << format("0x%" PRIx32, MachO::FAT_MAGIC) << "\n";
1332
1333 uint32_t nfat_arch = UB->getNumberOfObjects();
1334 StringRef Buf = UB->getData();
1335 uint64_t size = Buf.size();
1336 uint64_t big_size = sizeof(struct MachO::fat_header) +
1337 nfat_arch * sizeof(struct MachO::fat_arch);
1338 outs() << "nfat_arch " << UB->getNumberOfObjects();
1339 if (nfat_arch == 0)
1340 outs() << " (malformed, contains zero architecture types)\n";
1341 else if (big_size > size)
1342 outs() << " (malformed, architectures past end of file)\n";
1343 else
1344 outs() << "\n";
1345
1346 for (uint32_t i = 0; i < nfat_arch; ++i) {
1347 MachOUniversalBinary::ObjectForArch OFA(UB, i);
1348 uint32_t cputype = OFA.getCPUType();
1349 uint32_t cpusubtype = OFA.getCPUSubType();
1350 outs() << "architecture ";
1351 for (uint32_t j = 0; i != 0 && j <= i - 1; j++) {
1352 MachOUniversalBinary::ObjectForArch other_OFA(UB, j);
1353 uint32_t other_cputype = other_OFA.getCPUType();
1354 uint32_t other_cpusubtype = other_OFA.getCPUSubType();
Kevin Enderby0512bd72015-01-09 21:55:03 +00001355 if (cputype != 0 && cpusubtype != 0 && cputype == other_cputype &&
Kevin Enderby131d1772015-01-09 19:22:37 +00001356 (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) ==
Kevin Enderby0512bd72015-01-09 21:55:03 +00001357 (other_cpusubtype & ~MachO::CPU_SUBTYPE_MASK)) {
Kevin Enderby131d1772015-01-09 19:22:37 +00001358 outs() << "(illegal duplicate architecture) ";
1359 break;
Kevin Enderby0512bd72015-01-09 21:55:03 +00001360 }
Kevin Enderby131d1772015-01-09 19:22:37 +00001361 }
1362 if (verbose) {
1363 outs() << OFA.getArchTypeName() << "\n";
1364 printCPUType(cputype, cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
1365 } else {
1366 outs() << i << "\n";
1367 outs() << " cputype " << cputype << "\n";
1368 outs() << " cpusubtype " << (cpusubtype & ~MachO::CPU_SUBTYPE_MASK)
1369 << "\n";
1370 }
1371 if (verbose &&
1372 (cpusubtype & MachO::CPU_SUBTYPE_MASK) == MachO::CPU_SUBTYPE_LIB64)
1373 outs() << " capabilities CPU_SUBTYPE_LIB64\n";
1374 else
1375 outs() << " capabilities "
1376 << format("0x%" PRIx32,
1377 (cpusubtype & MachO::CPU_SUBTYPE_MASK) >> 24) << "\n";
1378 outs() << " offset " << OFA.getOffset();
1379 if (OFA.getOffset() > size)
1380 outs() << " (past end of file)";
1381 if (OFA.getOffset() % (1 << OFA.getAlign()) != 0)
1382 outs() << " (not aligned on it's alignment (2^" << OFA.getAlign() << ")";
1383 outs() << "\n";
1384 outs() << " size " << OFA.getSize();
1385 big_size = OFA.getOffset() + OFA.getSize();
1386 if (big_size > size)
1387 outs() << " (past end of file)";
1388 outs() << "\n";
1389 outs() << " align 2^" << OFA.getAlign() << " (" << (1 << OFA.getAlign())
1390 << ")\n";
1391 }
1392}
1393
Rafael Espindola266b4fe2015-10-31 22:25:59 +00001394static void printArchiveChild(const Archive::Child &C, bool verbose,
Kevin Enderby13023a12015-01-15 23:19:11 +00001395 bool print_offset) {
1396 if (print_offset)
1397 outs() << C.getChildOffset() << "\t";
1398 sys::fs::perms Mode = C.getAccessMode();
1399 if (verbose) {
1400 // FIXME: this first dash, "-", is for (Mode & S_IFMT) == S_IFREG.
1401 // But there is nothing in sys::fs::perms for S_IFMT or S_IFREG.
1402 outs() << "-";
Davide Italianobb9a6cc2015-09-07 20:47:03 +00001403 outs() << ((Mode & sys::fs::owner_read) ? "r" : "-");
1404 outs() << ((Mode & sys::fs::owner_write) ? "w" : "-");
1405 outs() << ((Mode & sys::fs::owner_exe) ? "x" : "-");
1406 outs() << ((Mode & sys::fs::group_read) ? "r" : "-");
1407 outs() << ((Mode & sys::fs::group_write) ? "w" : "-");
1408 outs() << ((Mode & sys::fs::group_exe) ? "x" : "-");
1409 outs() << ((Mode & sys::fs::others_read) ? "r" : "-");
1410 outs() << ((Mode & sys::fs::others_write) ? "w" : "-");
1411 outs() << ((Mode & sys::fs::others_exe) ? "x" : "-");
Kevin Enderby13023a12015-01-15 23:19:11 +00001412 } else {
1413 outs() << format("0%o ", Mode);
1414 }
1415
1416 unsigned UID = C.getUID();
1417 outs() << format("%3d/", UID);
1418 unsigned GID = C.getGID();
1419 outs() << format("%-3d ", GID);
Kevin Enderby7a969422015-11-05 19:24:56 +00001420 ErrorOr<uint64_t> Size = C.getRawSize();
1421 if (std::error_code EC = Size.getError())
1422 report_fatal_error(EC.message());
1423 outs() << format("%5" PRId64, Size.get()) << " ";
Kevin Enderby13023a12015-01-15 23:19:11 +00001424
1425 StringRef RawLastModified = C.getRawLastModified();
1426 if (verbose) {
1427 unsigned Seconds;
1428 if (RawLastModified.getAsInteger(10, Seconds))
1429 outs() << "(date: \"%s\" contains non-decimal chars) " << RawLastModified;
1430 else {
1431 // Since cime(3) returns a 26 character string of the form:
1432 // "Sun Sep 16 01:03:52 1973\n\0"
1433 // just print 24 characters.
1434 time_t t = Seconds;
1435 outs() << format("%.24s ", ctime(&t));
1436 }
1437 } else {
1438 outs() << RawLastModified << " ";
1439 }
1440
1441 if (verbose) {
1442 ErrorOr<StringRef> NameOrErr = C.getName();
1443 if (NameOrErr.getError()) {
1444 StringRef RawName = C.getRawName();
1445 outs() << RawName << "\n";
1446 } else {
1447 StringRef Name = NameOrErr.get();
1448 outs() << Name << "\n";
1449 }
1450 } else {
1451 StringRef RawName = C.getRawName();
1452 outs() << RawName << "\n";
1453 }
1454}
1455
1456static void printArchiveHeaders(Archive *A, bool verbose, bool print_offset) {
Rafael Espindola4a782fb2015-10-31 21:03:29 +00001457 for (Archive::child_iterator I = A->child_begin(false), E = A->child_end();
1458 I != E; ++I) {
Kevin Enderby7a969422015-11-05 19:24:56 +00001459 if (std::error_code EC = I->getError())
1460 report_fatal_error(EC.message());
1461 const Archive::Child &C = **I;
Kevin Enderby13023a12015-01-15 23:19:11 +00001462 printArchiveChild(C, verbose, print_offset);
1463 }
1464}
1465
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001466// ParseInputMachO() parses the named Mach-O file in Filename and handles the
1467// -arch flags selecting just those slices as specified by them and also parses
1468// archive files. Then for each individual Mach-O file ProcessMachO() is
1469// called to process the file based on the command line options.
1470void llvm::ParseInputMachO(StringRef Filename) {
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001471 // Check for -arch all and verifiy the -arch flags are valid.
1472 for (unsigned i = 0; i < ArchFlags.size(); ++i) {
1473 if (ArchFlags[i] == "all") {
1474 ArchAll = true;
1475 } else {
1476 if (!MachOObjectFile::isValidArch(ArchFlags[i])) {
1477 errs() << "llvm-objdump: Unknown architecture named '" + ArchFlags[i] +
1478 "'for the -arch option\n";
1479 return;
1480 }
1481 }
1482 }
1483
1484 // Attempt to open the binary.
1485 ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(Filename);
1486 if (std::error_code EC = BinaryOrErr.getError()) {
1487 errs() << "llvm-objdump: '" << Filename << "': " << EC.message() << ".\n";
Rafael Espindolade882cd2014-12-03 23:29:34 +00001488 return;
Kevin Enderby3f0ffab2014-12-03 22:29:40 +00001489 }
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001490 Binary &Bin = *BinaryOrErr.get().getBinary();
Kevin Enderby3f0ffab2014-12-03 22:29:40 +00001491
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001492 if (Archive *A = dyn_cast<Archive>(&Bin)) {
1493 outs() << "Archive : " << Filename << "\n";
Kevin Enderby13023a12015-01-15 23:19:11 +00001494 if (ArchiveHeaders)
Kevin Enderby8972e482015-04-30 20:30:42 +00001495 printArchiveHeaders(A, !NonVerbose, ArchiveMemberOffsets);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001496 for (Archive::child_iterator I = A->child_begin(), E = A->child_end();
1497 I != E; ++I) {
Davide Italianob13edeb2015-12-08 02:45:59 +00001498 if (std::error_code EC = I->getError())
1499 report_error(Filename, EC);
Kevin Enderby7a969422015-11-05 19:24:56 +00001500 auto &C = I->get();
1501 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = C.getAsBinary();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001502 if (ChildOrErr.getError())
1503 continue;
1504 if (MachOObjectFile *O = dyn_cast<MachOObjectFile>(&*ChildOrErr.get())) {
1505 if (!checkMachOAndArchFlags(O, Filename))
1506 return;
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001507 ProcessMachO(Filename, O, O->getFileName());
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001508 }
1509 }
1510 return;
1511 }
Kevin Enderby131d1772015-01-09 19:22:37 +00001512 if (UniversalHeaders) {
1513 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin))
Kevin Enderbyf0640752015-03-13 17:56:32 +00001514 printMachOUniversalHeaders(UB, !NonVerbose);
Kevin Enderby131d1772015-01-09 19:22:37 +00001515 }
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001516 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin)) {
1517 // If we have a list of architecture flags specified dump only those.
1518 if (!ArchAll && ArchFlags.size() != 0) {
1519 // Look for a slice in the universal binary that matches each ArchFlag.
1520 bool ArchFound;
1521 for (unsigned i = 0; i < ArchFlags.size(); ++i) {
1522 ArchFound = false;
1523 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1524 E = UB->end_objects();
1525 I != E; ++I) {
1526 if (ArchFlags[i] == I->getArchTypeName()) {
1527 ArchFound = true;
1528 ErrorOr<std::unique_ptr<ObjectFile>> ObjOrErr =
1529 I->getAsObjectFile();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001530 std::string ArchitectureName = "";
1531 if (ArchFlags.size() > 1)
1532 ArchitectureName = I->getArchTypeName();
1533 if (ObjOrErr) {
1534 ObjectFile &O = *ObjOrErr.get();
1535 if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(&O))
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001536 ProcessMachO(Filename, MachOOF, "", ArchitectureName);
Rafael Espindola0bfe8282014-12-09 21:05:36 +00001537 } else if (ErrorOr<std::unique_ptr<Archive>> AOrErr =
1538 I->getAsArchive()) {
1539 std::unique_ptr<Archive> &A = *AOrErr;
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001540 outs() << "Archive : " << Filename;
1541 if (!ArchitectureName.empty())
1542 outs() << " (architecture " << ArchitectureName << ")";
1543 outs() << "\n";
Kevin Enderby13023a12015-01-15 23:19:11 +00001544 if (ArchiveHeaders)
Kevin Enderby8972e482015-04-30 20:30:42 +00001545 printArchiveHeaders(A.get(), !NonVerbose, ArchiveMemberOffsets);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001546 for (Archive::child_iterator AI = A->child_begin(),
1547 AE = A->child_end();
1548 AI != AE; ++AI) {
Davide Italianob13edeb2015-12-08 02:45:59 +00001549 if (std::error_code EC = AI->getError())
1550 report_error(Filename, EC);
Kevin Enderby7a969422015-11-05 19:24:56 +00001551 auto &C = AI->get();
1552 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = C.getAsBinary();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001553 if (ChildOrErr.getError())
1554 continue;
1555 if (MachOObjectFile *O =
1556 dyn_cast<MachOObjectFile>(&*ChildOrErr.get()))
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001557 ProcessMachO(Filename, O, O->getFileName(), ArchitectureName);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001558 }
1559 }
1560 }
1561 }
1562 if (!ArchFound) {
1563 errs() << "llvm-objdump: file: " + Filename + " does not contain "
1564 << "architecture: " + ArchFlags[i] + "\n";
1565 return;
1566 }
1567 }
1568 return;
1569 }
1570 // No architecture flags were specified so if this contains a slice that
1571 // matches the host architecture dump only that.
1572 if (!ArchAll) {
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001573 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1574 E = UB->end_objects();
1575 I != E; ++I) {
Kevin Enderby0512bd72015-01-09 21:55:03 +00001576 if (MachOObjectFile::getHostArch().getArchName() ==
1577 I->getArchTypeName()) {
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001578 ErrorOr<std::unique_ptr<ObjectFile>> ObjOrErr = I->getAsObjectFile();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001579 std::string ArchiveName;
1580 ArchiveName.clear();
1581 if (ObjOrErr) {
1582 ObjectFile &O = *ObjOrErr.get();
1583 if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(&O))
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001584 ProcessMachO(Filename, MachOOF);
Rafael Espindola0bfe8282014-12-09 21:05:36 +00001585 } else if (ErrorOr<std::unique_ptr<Archive>> AOrErr =
1586 I->getAsArchive()) {
1587 std::unique_ptr<Archive> &A = *AOrErr;
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001588 outs() << "Archive : " << Filename << "\n";
Kevin Enderby13023a12015-01-15 23:19:11 +00001589 if (ArchiveHeaders)
Kevin Enderby8972e482015-04-30 20:30:42 +00001590 printArchiveHeaders(A.get(), !NonVerbose, ArchiveMemberOffsets);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001591 for (Archive::child_iterator AI = A->child_begin(),
1592 AE = A->child_end();
1593 AI != AE; ++AI) {
Davide Italianob13edeb2015-12-08 02:45:59 +00001594 if (std::error_code EC = AI->getError())
1595 report_error(Filename, EC);
Kevin Enderby7a969422015-11-05 19:24:56 +00001596 auto &C = AI->get();
1597 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = C.getAsBinary();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001598 if (ChildOrErr.getError())
1599 continue;
1600 if (MachOObjectFile *O =
1601 dyn_cast<MachOObjectFile>(&*ChildOrErr.get()))
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001602 ProcessMachO(Filename, O, O->getFileName());
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001603 }
1604 }
1605 return;
1606 }
1607 }
1608 }
1609 // Either all architectures have been specified or none have been specified
1610 // and this does not contain the host architecture so dump all the slices.
1611 bool moreThanOneArch = UB->getNumberOfObjects() > 1;
1612 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1613 E = UB->end_objects();
1614 I != E; ++I) {
1615 ErrorOr<std::unique_ptr<ObjectFile>> ObjOrErr = I->getAsObjectFile();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001616 std::string ArchitectureName = "";
1617 if (moreThanOneArch)
1618 ArchitectureName = I->getArchTypeName();
1619 if (ObjOrErr) {
1620 ObjectFile &Obj = *ObjOrErr.get();
1621 if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(&Obj))
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001622 ProcessMachO(Filename, MachOOF, "", ArchitectureName);
Rafael Espindola0bfe8282014-12-09 21:05:36 +00001623 } else if (ErrorOr<std::unique_ptr<Archive>> AOrErr = I->getAsArchive()) {
1624 std::unique_ptr<Archive> &A = *AOrErr;
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001625 outs() << "Archive : " << Filename;
1626 if (!ArchitectureName.empty())
1627 outs() << " (architecture " << ArchitectureName << ")";
1628 outs() << "\n";
Kevin Enderby13023a12015-01-15 23:19:11 +00001629 if (ArchiveHeaders)
Kevin Enderby8972e482015-04-30 20:30:42 +00001630 printArchiveHeaders(A.get(), !NonVerbose, ArchiveMemberOffsets);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001631 for (Archive::child_iterator AI = A->child_begin(), AE = A->child_end();
1632 AI != AE; ++AI) {
Davide Italianob13edeb2015-12-08 02:45:59 +00001633 if (std::error_code EC = AI->getError())
1634 report_error(Filename, EC);
Kevin Enderby7a969422015-11-05 19:24:56 +00001635 auto &C = AI->get();
1636 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = C.getAsBinary();
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001637 if (ChildOrErr.getError())
1638 continue;
1639 if (MachOObjectFile *O =
1640 dyn_cast<MachOObjectFile>(&*ChildOrErr.get())) {
1641 if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(O))
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001642 ProcessMachO(Filename, MachOOF, MachOOF->getFileName(),
1643 ArchitectureName);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001644 }
1645 }
1646 }
1647 }
1648 return;
1649 }
1650 if (ObjectFile *O = dyn_cast<ObjectFile>(&Bin)) {
1651 if (!checkMachOAndArchFlags(O, Filename))
1652 return;
1653 if (MachOObjectFile *MachOOF = dyn_cast<MachOObjectFile>(&*O)) {
Kevin Enderbye2297dd2015-01-07 21:02:18 +00001654 ProcessMachO(Filename, MachOOF);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00001655 } else
1656 errs() << "llvm-objdump: '" << Filename << "': "
1657 << "Object is not a Mach-O file type.\n";
1658 } else
1659 errs() << "llvm-objdump: '" << Filename << "': "
1660 << "Unrecognized file type.\n";
Rafael Espindola9b709252013-04-13 01:45:40 +00001661}
1662
Kevin Enderby6f326ce2014-10-23 19:37:31 +00001663typedef std::pair<uint64_t, const char *> BindInfoEntry;
1664typedef std::vector<BindInfoEntry> BindTable;
1665typedef BindTable::iterator bind_table_iterator;
Kevin Enderbybf246f52014-09-24 23:08:22 +00001666
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001667// The block of info used by the Symbolizer call backs.
1668struct DisassembleInfo {
1669 bool verbose;
1670 MachOObjectFile *O;
1671 SectionRef S;
Kevin Enderbybf246f52014-09-24 23:08:22 +00001672 SymbolAddressMap *AddrMap;
Kevin Enderby6f326ce2014-10-23 19:37:31 +00001673 std::vector<SectionRef> *Sections;
1674 const char *class_name;
1675 const char *selector_name;
1676 char *method;
Kevin Enderby04bf6932014-10-28 23:39:46 +00001677 char *demangled_name;
Kevin Enderbyae3c1262014-11-14 21:52:18 +00001678 uint64_t adrp_addr;
1679 uint32_t adrp_inst;
Kevin Enderby078be602014-10-23 19:53:12 +00001680 BindTable *bindtable;
Kevin Enderbyaac75382015-10-08 16:56:35 +00001681 uint32_t depth;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001682};
1683
1684// SymbolizerGetOpInfo() is the operand information call back function.
1685// This is called to get the symbolic information for operand(s) of an
1686// instruction when it is being done. This routine does this from
1687// the relocation information, symbol table, etc. That block of information
1688// is a pointer to the struct DisassembleInfo that was passed when the
1689// disassembler context was created and passed to back to here when
1690// called back by the disassembler for instruction operands that could have
1691// relocation information. The address of the instruction containing operand is
1692// at the Pc parameter. The immediate value the operand has is passed in
1693// op_info->Value and is at Offset past the start of the instruction and has a
1694// byte Size of 1, 2 or 4. The symbolc information is returned in TagBuf is the
1695// LLVMOpInfo1 struct defined in the header "llvm-c/Disassembler.h" as symbol
1696// names and addends of the symbolic expression to add for the operand. The
1697// value of TagType is currently 1 (for the LLVMOpInfo1 struct). If symbolic
1698// information is returned then this function returns 1 else it returns 0.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00001699static int SymbolizerGetOpInfo(void *DisInfo, uint64_t Pc, uint64_t Offset,
1700 uint64_t Size, int TagType, void *TagBuf) {
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001701 struct DisassembleInfo *info = (struct DisassembleInfo *)DisInfo;
1702 struct LLVMOpInfo1 *op_info = (struct LLVMOpInfo1 *)TagBuf;
Kevin Enderbyae3c1262014-11-14 21:52:18 +00001703 uint64_t value = op_info->Value;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001704
1705 // Make sure all fields returned are zero if we don't set them.
1706 memset((void *)op_info, '\0', sizeof(struct LLVMOpInfo1));
1707 op_info->Value = value;
1708
1709 // If the TagType is not the value 1 which it code knows about or if no
1710 // verbose symbolic information is wanted then just return 0, indicating no
1711 // information is being returned.
David Blaikie33dd45d02015-03-23 18:39:02 +00001712 if (TagType != 1 || !info->verbose)
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001713 return 0;
1714
1715 unsigned int Arch = info->O->getArch();
1716 if (Arch == Triple::x86) {
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001717 if (Size != 1 && Size != 2 && Size != 4 && Size != 0)
1718 return 0;
Kevin Enderbyd90a4172015-10-10 00:05:01 +00001719 if (info->O->getHeader().filetype != MachO::MH_OBJECT) {
1720 // TODO:
1721 // Search the external relocation entries of a fully linked image
1722 // (if any) for an entry that matches this segment offset.
1723 // uint32_t seg_offset = (Pc + Offset);
1724 return 0;
1725 }
1726 // In MH_OBJECT filetypes search the section's relocation entries (if any)
1727 // for an entry for this section offset.
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001728 uint32_t sect_addr = info->S.getAddress();
1729 uint32_t sect_offset = (Pc + Offset) - sect_addr;
1730 bool reloc_found = false;
1731 DataRefImpl Rel;
1732 MachO::any_relocation_info RE;
1733 bool isExtern = false;
1734 SymbolRef Symbol;
1735 bool r_scattered = false;
1736 uint32_t r_value, pair_r_value, r_type;
1737 for (const RelocationRef &Reloc : info->S.relocations()) {
Rafael Espindola96d071c2015-06-29 23:29:12 +00001738 uint64_t RelocOffset = Reloc.getOffset();
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001739 if (RelocOffset == sect_offset) {
1740 Rel = Reloc.getRawDataRefImpl();
1741 RE = info->O->getRelocation(Rel);
Kevin Enderby3eb73e12014-11-11 19:16:45 +00001742 r_type = info->O->getAnyRelocationType(RE);
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001743 r_scattered = info->O->isRelocationScattered(RE);
1744 if (r_scattered) {
1745 r_value = info->O->getScatteredRelocationValue(RE);
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001746 if (r_type == MachO::GENERIC_RELOC_SECTDIFF ||
1747 r_type == MachO::GENERIC_RELOC_LOCAL_SECTDIFF) {
1748 DataRefImpl RelNext = Rel;
1749 info->O->moveRelocationNext(RelNext);
1750 MachO::any_relocation_info RENext;
1751 RENext = info->O->getRelocation(RelNext);
1752 if (info->O->isRelocationScattered(RENext))
Kevin Enderby930fdc72014-11-06 19:00:13 +00001753 pair_r_value = info->O->getScatteredRelocationValue(RENext);
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001754 else
1755 return 0;
1756 }
1757 } else {
1758 isExtern = info->O->getPlainRelocationExternal(RE);
1759 if (isExtern) {
1760 symbol_iterator RelocSym = Reloc.getSymbol();
1761 Symbol = *RelocSym;
1762 }
1763 }
1764 reloc_found = true;
1765 break;
1766 }
1767 }
1768 if (reloc_found && isExtern) {
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00001769 ErrorOr<StringRef> SymName = Symbol.getName();
1770 if (std::error_code EC = SymName.getError())
1771 report_fatal_error(EC.message());
1772 const char *name = SymName->data();
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001773 op_info->AddSymbol.Present = 1;
1774 op_info->AddSymbol.Name = name;
1775 // For i386 extern relocation entries the value in the instruction is
1776 // the offset from the symbol, and value is already set in op_info->Value.
1777 return 1;
1778 }
1779 if (reloc_found && (r_type == MachO::GENERIC_RELOC_SECTDIFF ||
1780 r_type == MachO::GENERIC_RELOC_LOCAL_SECTDIFF)) {
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001781 const char *add = GuessSymbolName(r_value, info->AddrMap);
1782 const char *sub = GuessSymbolName(pair_r_value, info->AddrMap);
Kevin Enderby9907d0a2014-11-04 00:43:16 +00001783 uint32_t offset = value - (r_value - pair_r_value);
1784 op_info->AddSymbol.Present = 1;
1785 if (add != nullptr)
1786 op_info->AddSymbol.Name = add;
1787 else
1788 op_info->AddSymbol.Value = r_value;
1789 op_info->SubtractSymbol.Present = 1;
1790 if (sub != nullptr)
1791 op_info->SubtractSymbol.Name = sub;
1792 else
1793 op_info->SubtractSymbol.Value = pair_r_value;
1794 op_info->Value = offset;
1795 return 1;
1796 }
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001797 return 0;
David Blaikie33dd45d02015-03-23 18:39:02 +00001798 }
1799 if (Arch == Triple::x86_64) {
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001800 if (Size != 1 && Size != 2 && Size != 4 && Size != 0)
1801 return 0;
Kevin Enderbyd90a4172015-10-10 00:05:01 +00001802 if (info->O->getHeader().filetype != MachO::MH_OBJECT) {
1803 // TODO:
1804 // Search the external relocation entries of a fully linked image
1805 // (if any) for an entry that matches this segment offset.
1806 // uint64_t seg_offset = (Pc + Offset);
1807 return 0;
1808 }
1809 // In MH_OBJECT filetypes search the section's relocation entries (if any)
1810 // for an entry for this section offset.
Rafael Espindola80291272014-10-08 15:28:58 +00001811 uint64_t sect_addr = info->S.getAddress();
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001812 uint64_t sect_offset = (Pc + Offset) - sect_addr;
1813 bool reloc_found = false;
1814 DataRefImpl Rel;
1815 MachO::any_relocation_info RE;
1816 bool isExtern = false;
1817 SymbolRef Symbol;
1818 for (const RelocationRef &Reloc : info->S.relocations()) {
Rafael Espindola96d071c2015-06-29 23:29:12 +00001819 uint64_t RelocOffset = Reloc.getOffset();
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001820 if (RelocOffset == sect_offset) {
1821 Rel = Reloc.getRawDataRefImpl();
1822 RE = info->O->getRelocation(Rel);
1823 // NOTE: Scattered relocations don't exist on x86_64.
1824 isExtern = info->O->getPlainRelocationExternal(RE);
1825 if (isExtern) {
1826 symbol_iterator RelocSym = Reloc.getSymbol();
1827 Symbol = *RelocSym;
1828 }
1829 reloc_found = true;
1830 break;
1831 }
1832 }
1833 if (reloc_found && isExtern) {
1834 // The Value passed in will be adjusted by the Pc if the instruction
1835 // adds the Pc. But for x86_64 external relocation entries the Value
1836 // is the offset from the external symbol.
1837 if (info->O->getAnyRelocationPCRel(RE))
1838 op_info->Value -= Pc + Offset + Size;
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00001839 ErrorOr<StringRef> SymName = Symbol.getName();
1840 if (std::error_code EC = SymName.getError())
1841 report_fatal_error(EC.message());
1842 const char *name = SymName->data();
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001843 unsigned Type = info->O->getAnyRelocationType(RE);
1844 if (Type == MachO::X86_64_RELOC_SUBTRACTOR) {
1845 DataRefImpl RelNext = Rel;
1846 info->O->moveRelocationNext(RelNext);
1847 MachO::any_relocation_info RENext = info->O->getRelocation(RelNext);
1848 unsigned TypeNext = info->O->getAnyRelocationType(RENext);
1849 bool isExternNext = info->O->getPlainRelocationExternal(RENext);
1850 unsigned SymbolNum = info->O->getPlainRelocationSymbolNum(RENext);
1851 if (TypeNext == MachO::X86_64_RELOC_UNSIGNED && isExternNext) {
1852 op_info->SubtractSymbol.Present = 1;
1853 op_info->SubtractSymbol.Name = name;
1854 symbol_iterator RelocSymNext = info->O->getSymbolByIndex(SymbolNum);
1855 Symbol = *RelocSymNext;
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00001856 ErrorOr<StringRef> SymNameNext = Symbol.getName();
1857 if (std::error_code EC = SymNameNext.getError())
1858 report_fatal_error(EC.message());
1859 name = SymNameNext->data();
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001860 }
1861 }
1862 // TODO: add the VariantKinds to op_info->VariantKind for relocation types
1863 // like: X86_64_RELOC_TLV, X86_64_RELOC_GOT_LOAD and X86_64_RELOC_GOT.
1864 op_info->AddSymbol.Present = 1;
1865 op_info->AddSymbol.Name = name;
1866 return 1;
1867 }
Kevin Enderby98c9acc2014-09-16 18:00:57 +00001868 return 0;
David Blaikie33dd45d02015-03-23 18:39:02 +00001869 }
1870 if (Arch == Triple::arm) {
Kevin Enderby930fdc72014-11-06 19:00:13 +00001871 if (Offset != 0 || (Size != 4 && Size != 2))
1872 return 0;
Kevin Enderbyd90a4172015-10-10 00:05:01 +00001873 if (info->O->getHeader().filetype != MachO::MH_OBJECT) {
1874 // TODO:
1875 // Search the external relocation entries of a fully linked image
1876 // (if any) for an entry that matches this segment offset.
1877 // uint32_t seg_offset = (Pc + Offset);
1878 return 0;
1879 }
1880 // In MH_OBJECT filetypes search the section's relocation entries (if any)
1881 // for an entry for this section offset.
Kevin Enderby930fdc72014-11-06 19:00:13 +00001882 uint32_t sect_addr = info->S.getAddress();
1883 uint32_t sect_offset = (Pc + Offset) - sect_addr;
Kevin Enderby930fdc72014-11-06 19:00:13 +00001884 DataRefImpl Rel;
1885 MachO::any_relocation_info RE;
1886 bool isExtern = false;
1887 SymbolRef Symbol;
1888 bool r_scattered = false;
1889 uint32_t r_value, pair_r_value, r_type, r_length, other_half;
David Blaikie33dd45d02015-03-23 18:39:02 +00001890 auto Reloc =
1891 std::find_if(info->S.relocations().begin(), info->S.relocations().end(),
1892 [&](const RelocationRef &Reloc) {
Rafael Espindola96d071c2015-06-29 23:29:12 +00001893 uint64_t RelocOffset = Reloc.getOffset();
David Blaikie33dd45d02015-03-23 18:39:02 +00001894 return RelocOffset == sect_offset;
1895 });
1896
1897 if (Reloc == info->S.relocations().end())
1898 return 0;
1899
1900 Rel = Reloc->getRawDataRefImpl();
1901 RE = info->O->getRelocation(Rel);
1902 r_length = info->O->getAnyRelocationLength(RE);
1903 r_scattered = info->O->isRelocationScattered(RE);
1904 if (r_scattered) {
1905 r_value = info->O->getScatteredRelocationValue(RE);
1906 r_type = info->O->getScatteredRelocationType(RE);
1907 } else {
1908 r_type = info->O->getAnyRelocationType(RE);
1909 isExtern = info->O->getPlainRelocationExternal(RE);
1910 if (isExtern) {
1911 symbol_iterator RelocSym = Reloc->getSymbol();
1912 Symbol = *RelocSym;
Kevin Enderby930fdc72014-11-06 19:00:13 +00001913 }
1914 }
David Blaikie33dd45d02015-03-23 18:39:02 +00001915 if (r_type == MachO::ARM_RELOC_HALF ||
1916 r_type == MachO::ARM_RELOC_SECTDIFF ||
1917 r_type == MachO::ARM_RELOC_LOCAL_SECTDIFF ||
1918 r_type == MachO::ARM_RELOC_HALF_SECTDIFF) {
1919 DataRefImpl RelNext = Rel;
1920 info->O->moveRelocationNext(RelNext);
1921 MachO::any_relocation_info RENext;
1922 RENext = info->O->getRelocation(RelNext);
1923 other_half = info->O->getAnyRelocationAddress(RENext) & 0xffff;
1924 if (info->O->isRelocationScattered(RENext))
1925 pair_r_value = info->O->getScatteredRelocationValue(RENext);
1926 }
1927
1928 if (isExtern) {
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00001929 ErrorOr<StringRef> SymName = Symbol.getName();
1930 if (std::error_code EC = SymName.getError())
1931 report_fatal_error(EC.message());
1932 const char *name = SymName->data();
Kevin Enderby930fdc72014-11-06 19:00:13 +00001933 op_info->AddSymbol.Present = 1;
1934 op_info->AddSymbol.Name = name;
Sylvestre Ledru648cced2015-02-05 17:00:23 +00001935 switch (r_type) {
1936 case MachO::ARM_RELOC_HALF:
1937 if ((r_length & 0x1) == 1) {
1938 op_info->Value = value << 16 | other_half;
1939 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_HI16;
1940 } else {
1941 op_info->Value = other_half << 16 | value;
1942 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_LO16;
Sylvestre Ledrufe0c7ad2015-02-05 16:35:44 +00001943 }
Sylvestre Ledru648cced2015-02-05 17:00:23 +00001944 break;
1945 default:
1946 break;
Kevin Enderby930fdc72014-11-06 19:00:13 +00001947 }
1948 return 1;
1949 }
1950 // If we have a branch that is not an external relocation entry then
1951 // return 0 so the code in tryAddingSymbolicOperand() can use the
1952 // SymbolLookUp call back with the branch target address to look up the
1953 // symbol and possiblity add an annotation for a symbol stub.
David Blaikie33dd45d02015-03-23 18:39:02 +00001954 if (isExtern == 0 && (r_type == MachO::ARM_RELOC_BR24 ||
1955 r_type == MachO::ARM_THUMB_RELOC_BR22))
Kevin Enderby930fdc72014-11-06 19:00:13 +00001956 return 0;
1957
1958 uint32_t offset = 0;
David Blaikie33dd45d02015-03-23 18:39:02 +00001959 if (r_type == MachO::ARM_RELOC_HALF ||
1960 r_type == MachO::ARM_RELOC_HALF_SECTDIFF) {
1961 if ((r_length & 0x1) == 1)
1962 value = value << 16 | other_half;
1963 else
1964 value = other_half << 16 | value;
1965 }
1966 if (r_scattered && (r_type != MachO::ARM_RELOC_HALF &&
1967 r_type != MachO::ARM_RELOC_HALF_SECTDIFF)) {
1968 offset = value - r_value;
1969 value = r_value;
Kevin Enderby930fdc72014-11-06 19:00:13 +00001970 }
1971
David Blaikie33dd45d02015-03-23 18:39:02 +00001972 if (r_type == MachO::ARM_RELOC_HALF_SECTDIFF) {
Kevin Enderby930fdc72014-11-06 19:00:13 +00001973 if ((r_length & 0x1) == 1)
1974 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_HI16;
1975 else
1976 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_LO16;
Kevin Enderbyf6d25852015-01-31 00:37:11 +00001977 const char *add = GuessSymbolName(r_value, info->AddrMap);
1978 const char *sub = GuessSymbolName(pair_r_value, info->AddrMap);
Kevin Enderby930fdc72014-11-06 19:00:13 +00001979 int32_t offset = value - (r_value - pair_r_value);
1980 op_info->AddSymbol.Present = 1;
1981 if (add != nullptr)
1982 op_info->AddSymbol.Name = add;
1983 else
1984 op_info->AddSymbol.Value = r_value;
1985 op_info->SubtractSymbol.Present = 1;
1986 if (sub != nullptr)
1987 op_info->SubtractSymbol.Name = sub;
1988 else
1989 op_info->SubtractSymbol.Value = pair_r_value;
1990 op_info->Value = offset;
1991 return 1;
1992 }
1993
Kevin Enderby930fdc72014-11-06 19:00:13 +00001994 op_info->AddSymbol.Present = 1;
1995 op_info->Value = offset;
David Blaikie33dd45d02015-03-23 18:39:02 +00001996 if (r_type == MachO::ARM_RELOC_HALF) {
1997 if ((r_length & 0x1) == 1)
1998 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_HI16;
1999 else
2000 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM_LO16;
Kevin Enderby930fdc72014-11-06 19:00:13 +00002001 }
Kevin Enderbyf6d25852015-01-31 00:37:11 +00002002 const char *add = GuessSymbolName(value, info->AddrMap);
Kevin Enderby930fdc72014-11-06 19:00:13 +00002003 if (add != nullptr) {
2004 op_info->AddSymbol.Name = add;
2005 return 1;
2006 }
2007 op_info->AddSymbol.Value = value;
2008 return 1;
David Blaikie33dd45d02015-03-23 18:39:02 +00002009 }
2010 if (Arch == Triple::aarch64) {
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002011 if (Offset != 0 || Size != 4)
2012 return 0;
Kevin Enderbyd90a4172015-10-10 00:05:01 +00002013 if (info->O->getHeader().filetype != MachO::MH_OBJECT) {
2014 // TODO:
2015 // Search the external relocation entries of a fully linked image
2016 // (if any) for an entry that matches this segment offset.
2017 // uint64_t seg_offset = (Pc + Offset);
2018 return 0;
2019 }
2020 // In MH_OBJECT filetypes search the section's relocation entries (if any)
2021 // for an entry for this section offset.
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002022 uint64_t sect_addr = info->S.getAddress();
2023 uint64_t sect_offset = (Pc + Offset) - sect_addr;
David Blaikie33dd45d02015-03-23 18:39:02 +00002024 auto Reloc =
2025 std::find_if(info->S.relocations().begin(), info->S.relocations().end(),
2026 [&](const RelocationRef &Reloc) {
Rafael Espindola96d071c2015-06-29 23:29:12 +00002027 uint64_t RelocOffset = Reloc.getOffset();
David Blaikie33dd45d02015-03-23 18:39:02 +00002028 return RelocOffset == sect_offset;
2029 });
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002030
David Blaikie33dd45d02015-03-23 18:39:02 +00002031 if (Reloc == info->S.relocations().end())
2032 return 0;
2033
2034 DataRefImpl Rel = Reloc->getRawDataRefImpl();
2035 MachO::any_relocation_info RE = info->O->getRelocation(Rel);
2036 uint32_t r_type = info->O->getAnyRelocationType(RE);
2037 if (r_type == MachO::ARM64_RELOC_ADDEND) {
2038 DataRefImpl RelNext = Rel;
2039 info->O->moveRelocationNext(RelNext);
2040 MachO::any_relocation_info RENext = info->O->getRelocation(RelNext);
2041 if (value == 0) {
2042 value = info->O->getPlainRelocationSymbolNum(RENext);
2043 op_info->Value = value;
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002044 }
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002045 }
David Blaikie33dd45d02015-03-23 18:39:02 +00002046 // NOTE: Scattered relocations don't exist on arm64.
2047 if (!info->O->getPlainRelocationExternal(RE))
2048 return 0;
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00002049 ErrorOr<StringRef> SymName = Reloc->getSymbol()->getName();
2050 if (std::error_code EC = SymName.getError())
2051 report_fatal_error(EC.message());
2052 const char *name = SymName->data();
David Blaikie33dd45d02015-03-23 18:39:02 +00002053 op_info->AddSymbol.Present = 1;
2054 op_info->AddSymbol.Name = name;
2055
2056 switch (r_type) {
2057 case MachO::ARM64_RELOC_PAGE21:
2058 /* @page */
2059 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_PAGE;
2060 break;
2061 case MachO::ARM64_RELOC_PAGEOFF12:
2062 /* @pageoff */
2063 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_PAGEOFF;
2064 break;
2065 case MachO::ARM64_RELOC_GOT_LOAD_PAGE21:
2066 /* @gotpage */
2067 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_GOTPAGE;
2068 break;
2069 case MachO::ARM64_RELOC_GOT_LOAD_PAGEOFF12:
2070 /* @gotpageoff */
2071 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_GOTPAGEOFF;
2072 break;
2073 case MachO::ARM64_RELOC_TLVP_LOAD_PAGE21:
2074 /* @tvlppage is not implemented in llvm-mc */
2075 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_TLVP;
2076 break;
2077 case MachO::ARM64_RELOC_TLVP_LOAD_PAGEOFF12:
2078 /* @tvlppageoff is not implemented in llvm-mc */
2079 op_info->VariantKind = LLVMDisassembler_VariantKind_ARM64_TLVOFF;
2080 break;
2081 default:
2082 case MachO::ARM64_RELOC_BRANCH26:
2083 op_info->VariantKind = LLVMDisassembler_VariantKind_None;
2084 break;
2085 }
2086 return 1;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00002087 }
David Blaikie33dd45d02015-03-23 18:39:02 +00002088 return 0;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00002089}
2090
Kevin Enderbybf246f52014-09-24 23:08:22 +00002091// GuessCstringPointer is passed the address of what might be a pointer to a
2092// literal string in a cstring section. If that address is in a cstring section
2093// it returns a pointer to that string. Else it returns nullptr.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00002094static const char *GuessCstringPointer(uint64_t ReferenceValue,
2095 struct DisassembleInfo *info) {
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00002096 for (const auto &Load : info->O->load_commands()) {
Kevin Enderbybf246f52014-09-24 23:08:22 +00002097 if (Load.C.cmd == MachO::LC_SEGMENT_64) {
2098 MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load);
2099 for (unsigned J = 0; J < Seg.nsects; ++J) {
2100 MachO::section_64 Sec = info->O->getSection64(Load, J);
2101 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2102 if (section_type == MachO::S_CSTRING_LITERALS &&
2103 ReferenceValue >= Sec.addr &&
2104 ReferenceValue < Sec.addr + Sec.size) {
2105 uint64_t sect_offset = ReferenceValue - Sec.addr;
2106 uint64_t object_offset = Sec.offset + sect_offset;
2107 StringRef MachOContents = info->O->getData();
2108 uint64_t object_size = MachOContents.size();
2109 const char *object_addr = (const char *)MachOContents.data();
2110 if (object_offset < object_size) {
2111 const char *name = object_addr + object_offset;
2112 return name;
2113 } else {
2114 return nullptr;
2115 }
2116 }
2117 }
2118 } else if (Load.C.cmd == MachO::LC_SEGMENT) {
2119 MachO::segment_command Seg = info->O->getSegmentLoadCommand(Load);
2120 for (unsigned J = 0; J < Seg.nsects; ++J) {
2121 MachO::section Sec = info->O->getSection(Load, J);
2122 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2123 if (section_type == MachO::S_CSTRING_LITERALS &&
2124 ReferenceValue >= Sec.addr &&
2125 ReferenceValue < Sec.addr + Sec.size) {
2126 uint64_t sect_offset = ReferenceValue - Sec.addr;
2127 uint64_t object_offset = Sec.offset + sect_offset;
2128 StringRef MachOContents = info->O->getData();
2129 uint64_t object_size = MachOContents.size();
2130 const char *object_addr = (const char *)MachOContents.data();
2131 if (object_offset < object_size) {
2132 const char *name = object_addr + object_offset;
2133 return name;
2134 } else {
2135 return nullptr;
2136 }
2137 }
2138 }
2139 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00002140 }
2141 return nullptr;
2142}
2143
Kevin Enderby85974882014-09-26 22:20:44 +00002144// GuessIndirectSymbol returns the name of the indirect symbol for the
2145// ReferenceValue passed in or nullptr. This is used when ReferenceValue maybe
2146// an address of a symbol stub or a lazy or non-lazy pointer to associate the
2147// symbol name being referenced by the stub or pointer.
2148static const char *GuessIndirectSymbol(uint64_t ReferenceValue,
2149 struct DisassembleInfo *info) {
Kevin Enderby85974882014-09-26 22:20:44 +00002150 MachO::dysymtab_command Dysymtab = info->O->getDysymtabLoadCommand();
2151 MachO::symtab_command Symtab = info->O->getSymtabLoadCommand();
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00002152 for (const auto &Load : info->O->load_commands()) {
Kevin Enderby85974882014-09-26 22:20:44 +00002153 if (Load.C.cmd == MachO::LC_SEGMENT_64) {
2154 MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load);
2155 for (unsigned J = 0; J < Seg.nsects; ++J) {
2156 MachO::section_64 Sec = info->O->getSection64(Load, J);
2157 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2158 if ((section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
2159 section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
2160 section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
2161 section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS ||
2162 section_type == MachO::S_SYMBOL_STUBS) &&
2163 ReferenceValue >= Sec.addr &&
2164 ReferenceValue < Sec.addr + Sec.size) {
2165 uint32_t stride;
2166 if (section_type == MachO::S_SYMBOL_STUBS)
2167 stride = Sec.reserved2;
2168 else
2169 stride = 8;
2170 if (stride == 0)
2171 return nullptr;
2172 uint32_t index = Sec.reserved1 + (ReferenceValue - Sec.addr) / stride;
2173 if (index < Dysymtab.nindirectsyms) {
2174 uint32_t indirect_symbol =
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002175 info->O->getIndirectSymbolTableEntry(Dysymtab, index);
Kevin Enderby85974882014-09-26 22:20:44 +00002176 if (indirect_symbol < Symtab.nsyms) {
2177 symbol_iterator Sym = info->O->getSymbolByIndex(indirect_symbol);
2178 SymbolRef Symbol = *Sym;
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00002179 ErrorOr<StringRef> SymName = Symbol.getName();
2180 if (std::error_code EC = SymName.getError())
2181 report_fatal_error(EC.message());
2182 const char *name = SymName->data();
Kevin Enderby85974882014-09-26 22:20:44 +00002183 return name;
2184 }
2185 }
2186 }
2187 }
2188 } else if (Load.C.cmd == MachO::LC_SEGMENT) {
2189 MachO::segment_command Seg = info->O->getSegmentLoadCommand(Load);
2190 for (unsigned J = 0; J < Seg.nsects; ++J) {
2191 MachO::section Sec = info->O->getSection(Load, J);
2192 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2193 if ((section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
2194 section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
2195 section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
2196 section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS ||
2197 section_type == MachO::S_SYMBOL_STUBS) &&
2198 ReferenceValue >= Sec.addr &&
2199 ReferenceValue < Sec.addr + Sec.size) {
2200 uint32_t stride;
2201 if (section_type == MachO::S_SYMBOL_STUBS)
2202 stride = Sec.reserved2;
2203 else
2204 stride = 4;
2205 if (stride == 0)
2206 return nullptr;
2207 uint32_t index = Sec.reserved1 + (ReferenceValue - Sec.addr) / stride;
2208 if (index < Dysymtab.nindirectsyms) {
2209 uint32_t indirect_symbol =
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002210 info->O->getIndirectSymbolTableEntry(Dysymtab, index);
Kevin Enderby85974882014-09-26 22:20:44 +00002211 if (indirect_symbol < Symtab.nsyms) {
2212 symbol_iterator Sym = info->O->getSymbolByIndex(indirect_symbol);
2213 SymbolRef Symbol = *Sym;
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00002214 ErrorOr<StringRef> SymName = Symbol.getName();
2215 if (std::error_code EC = SymName.getError())
2216 report_fatal_error(EC.message());
2217 const char *name = SymName->data();
Kevin Enderby85974882014-09-26 22:20:44 +00002218 return name;
2219 }
2220 }
2221 }
2222 }
2223 }
Kevin Enderby85974882014-09-26 22:20:44 +00002224 }
2225 return nullptr;
2226}
2227
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002228// method_reference() is called passing it the ReferenceName that might be
2229// a reference it to an Objective-C method call. If so then it allocates and
2230// assembles a method call string with the values last seen and saved in
2231// the DisassembleInfo's class_name and selector_name fields. This is saved
2232// into the method field of the info and any previous string is free'ed.
2233// Then the class_name field in the info is set to nullptr. The method call
2234// string is set into ReferenceName and ReferenceType is set to
2235// LLVMDisassembler_ReferenceType_Out_Objc_Message. If this not a method call
2236// then both ReferenceType and ReferenceName are left unchanged.
2237static void method_reference(struct DisassembleInfo *info,
2238 uint64_t *ReferenceType,
2239 const char **ReferenceName) {
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002240 unsigned int Arch = info->O->getArch();
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002241 if (*ReferenceName != nullptr) {
2242 if (strcmp(*ReferenceName, "_objc_msgSend") == 0) {
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002243 if (info->selector_name != nullptr) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002244 if (info->method != nullptr)
2245 free(info->method);
2246 if (info->class_name != nullptr) {
2247 info->method = (char *)malloc(5 + strlen(info->class_name) +
2248 strlen(info->selector_name));
2249 if (info->method != nullptr) {
2250 strcpy(info->method, "+[");
2251 strcat(info->method, info->class_name);
2252 strcat(info->method, " ");
2253 strcat(info->method, info->selector_name);
2254 strcat(info->method, "]");
2255 *ReferenceName = info->method;
2256 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message;
2257 }
2258 } else {
2259 info->method = (char *)malloc(9 + strlen(info->selector_name));
2260 if (info->method != nullptr) {
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002261 if (Arch == Triple::x86_64)
2262 strcpy(info->method, "-[%rdi ");
2263 else if (Arch == Triple::aarch64)
2264 strcpy(info->method, "-[x0 ");
2265 else
2266 strcpy(info->method, "-[r? ");
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002267 strcat(info->method, info->selector_name);
2268 strcat(info->method, "]");
2269 *ReferenceName = info->method;
2270 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message;
2271 }
2272 }
2273 info->class_name = nullptr;
2274 }
2275 } else if (strcmp(*ReferenceName, "_objc_msgSendSuper2") == 0) {
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002276 if (info->selector_name != nullptr) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002277 if (info->method != nullptr)
2278 free(info->method);
2279 info->method = (char *)malloc(17 + strlen(info->selector_name));
2280 if (info->method != nullptr) {
Kevin Enderbyae3c1262014-11-14 21:52:18 +00002281 if (Arch == Triple::x86_64)
2282 strcpy(info->method, "-[[%rdi super] ");
2283 else if (Arch == Triple::aarch64)
2284 strcpy(info->method, "-[[x0 super] ");
2285 else
2286 strcpy(info->method, "-[[r? super] ");
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002287 strcat(info->method, info->selector_name);
2288 strcat(info->method, "]");
2289 *ReferenceName = info->method;
2290 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message;
2291 }
2292 info->class_name = nullptr;
2293 }
2294 }
2295 }
2296}
2297
2298// GuessPointerPointer() is passed the address of what might be a pointer to
2299// a reference to an Objective-C class, selector, message ref or cfstring.
2300// If so the value of the pointer is returned and one of the booleans are set
2301// to true. If not zero is returned and all the booleans are set to false.
2302static uint64_t GuessPointerPointer(uint64_t ReferenceValue,
2303 struct DisassembleInfo *info,
2304 bool &classref, bool &selref, bool &msgref,
2305 bool &cfstring) {
2306 classref = false;
2307 selref = false;
2308 msgref = false;
2309 cfstring = false;
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00002310 for (const auto &Load : info->O->load_commands()) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002311 if (Load.C.cmd == MachO::LC_SEGMENT_64) {
2312 MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load);
2313 for (unsigned J = 0; J < Seg.nsects; ++J) {
2314 MachO::section_64 Sec = info->O->getSection64(Load, J);
2315 if ((strncmp(Sec.sectname, "__objc_selrefs", 16) == 0 ||
2316 strncmp(Sec.sectname, "__objc_classrefs", 16) == 0 ||
2317 strncmp(Sec.sectname, "__objc_superrefs", 16) == 0 ||
2318 strncmp(Sec.sectname, "__objc_msgrefs", 16) == 0 ||
2319 strncmp(Sec.sectname, "__cfstring", 16) == 0) &&
2320 ReferenceValue >= Sec.addr &&
2321 ReferenceValue < Sec.addr + Sec.size) {
2322 uint64_t sect_offset = ReferenceValue - Sec.addr;
2323 uint64_t object_offset = Sec.offset + sect_offset;
2324 StringRef MachOContents = info->O->getData();
2325 uint64_t object_size = MachOContents.size();
2326 const char *object_addr = (const char *)MachOContents.data();
2327 if (object_offset < object_size) {
2328 uint64_t pointer_value;
2329 memcpy(&pointer_value, object_addr + object_offset,
2330 sizeof(uint64_t));
2331 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
2332 sys::swapByteOrder(pointer_value);
2333 if (strncmp(Sec.sectname, "__objc_selrefs", 16) == 0)
2334 selref = true;
2335 else if (strncmp(Sec.sectname, "__objc_classrefs", 16) == 0 ||
2336 strncmp(Sec.sectname, "__objc_superrefs", 16) == 0)
2337 classref = true;
2338 else if (strncmp(Sec.sectname, "__objc_msgrefs", 16) == 0 &&
2339 ReferenceValue + 8 < Sec.addr + Sec.size) {
2340 msgref = true;
2341 memcpy(&pointer_value, object_addr + object_offset + 8,
2342 sizeof(uint64_t));
2343 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
2344 sys::swapByteOrder(pointer_value);
2345 } else if (strncmp(Sec.sectname, "__cfstring", 16) == 0)
2346 cfstring = true;
2347 return pointer_value;
2348 } else {
2349 return 0;
2350 }
2351 }
2352 }
2353 }
2354 // TODO: Look for LC_SEGMENT for 32-bit Mach-O files.
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002355 }
2356 return 0;
2357}
2358
2359// get_pointer_64 returns a pointer to the bytes in the object file at the
2360// Address from a section in the Mach-O file. And indirectly returns the
2361// offset into the section, number of bytes left in the section past the offset
2362// and which section is was being referenced. If the Address is not in a
2363// section nullptr is returned.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00002364static const char *get_pointer_64(uint64_t Address, uint32_t &offset,
2365 uint32_t &left, SectionRef &S,
Kevin Enderby846c0002015-04-16 17:19:59 +00002366 DisassembleInfo *info,
2367 bool objc_only = false) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002368 offset = 0;
2369 left = 0;
2370 S = SectionRef();
2371 for (unsigned SectIdx = 0; SectIdx != info->Sections->size(); SectIdx++) {
2372 uint64_t SectAddress = ((*(info->Sections))[SectIdx]).getAddress();
2373 uint64_t SectSize = ((*(info->Sections))[SectIdx]).getSize();
Kevin Enderby46e642f2015-10-08 22:50:55 +00002374 if (SectSize == 0)
2375 continue;
Kevin Enderby846c0002015-04-16 17:19:59 +00002376 if (objc_only) {
2377 StringRef SectName;
2378 ((*(info->Sections))[SectIdx]).getName(SectName);
2379 DataRefImpl Ref = ((*(info->Sections))[SectIdx]).getRawDataRefImpl();
2380 StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
2381 if (SegName != "__OBJC" && SectName != "__cstring")
2382 continue;
2383 }
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002384 if (Address >= SectAddress && Address < SectAddress + SectSize) {
2385 S = (*(info->Sections))[SectIdx];
2386 offset = Address - SectAddress;
2387 left = SectSize - offset;
2388 StringRef SectContents;
2389 ((*(info->Sections))[SectIdx]).getContents(SectContents);
2390 return SectContents.data() + offset;
2391 }
2392 }
2393 return nullptr;
2394}
2395
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002396static const char *get_pointer_32(uint32_t Address, uint32_t &offset,
2397 uint32_t &left, SectionRef &S,
Kevin Enderby846c0002015-04-16 17:19:59 +00002398 DisassembleInfo *info,
2399 bool objc_only = false) {
2400 return get_pointer_64(Address, offset, left, S, info, objc_only);
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002401}
2402
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002403// get_symbol_64() returns the name of a symbol (or nullptr) and the address of
2404// the symbol indirectly through n_value. Based on the relocation information
2405// for the specified section offset in the specified section reference.
Kevin Enderby0fc11822015-04-01 20:57:01 +00002406// If no relocation information is found and a non-zero ReferenceValue for the
2407// symbol is passed, look up that address in the info's AddrMap.
Rafael Espindolad7a32ea2015-06-24 10:20:30 +00002408static const char *get_symbol_64(uint32_t sect_offset, SectionRef S,
2409 DisassembleInfo *info, uint64_t &n_value,
Rafael Espindolabe8b0ea2015-07-07 17:12:59 +00002410 uint64_t ReferenceValue = 0) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002411 n_value = 0;
David Blaikie33dd45d02015-03-23 18:39:02 +00002412 if (!info->verbose)
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002413 return nullptr;
2414
2415 // See if there is an external relocation entry at the sect_offset.
2416 bool reloc_found = false;
2417 DataRefImpl Rel;
2418 MachO::any_relocation_info RE;
2419 bool isExtern = false;
2420 SymbolRef Symbol;
2421 for (const RelocationRef &Reloc : S.relocations()) {
Rafael Espindola96d071c2015-06-29 23:29:12 +00002422 uint64_t RelocOffset = Reloc.getOffset();
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002423 if (RelocOffset == sect_offset) {
2424 Rel = Reloc.getRawDataRefImpl();
2425 RE = info->O->getRelocation(Rel);
2426 if (info->O->isRelocationScattered(RE))
2427 continue;
2428 isExtern = info->O->getPlainRelocationExternal(RE);
2429 if (isExtern) {
2430 symbol_iterator RelocSym = Reloc.getSymbol();
2431 Symbol = *RelocSym;
2432 }
2433 reloc_found = true;
2434 break;
2435 }
2436 }
2437 // If there is an external relocation entry for a symbol in this section
2438 // at this section_offset then use that symbol's value for the n_value
2439 // and return its name.
2440 const char *SymbolName = nullptr;
2441 if (reloc_found && isExtern) {
Rafael Espindoladea00162015-07-03 17:44:18 +00002442 n_value = Symbol.getValue();
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00002443 ErrorOr<StringRef> NameOrError = Symbol.getName();
2444 if (std::error_code EC = NameOrError.getError())
2445 report_fatal_error(EC.message());
2446 StringRef Name = *NameOrError;
2447 if (!Name.empty()) {
2448 SymbolName = Name.data();
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002449 return SymbolName;
2450 }
2451 }
2452
2453 // TODO: For fully linked images, look through the external relocation
2454 // entries off the dynamic symtab command. For these the r_offset is from the
2455 // start of the first writeable segment in the Mach-O file. So the offset
2456 // to this section from that segment is passed to this routine by the caller,
2457 // as the database_offset. Which is the difference of the section's starting
2458 // address and the first writable segment.
2459 //
2460 // NOTE: need add passing the database_offset to this routine.
2461
Kevin Enderby0fc11822015-04-01 20:57:01 +00002462 // We did not find an external relocation entry so look up the ReferenceValue
2463 // as an address of a symbol and if found return that symbol's name.
Rafael Espindolabe8b0ea2015-07-07 17:12:59 +00002464 SymbolName = GuessSymbolName(ReferenceValue, info->AddrMap);
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002465
2466 return SymbolName;
2467}
2468
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002469static const char *get_symbol_32(uint32_t sect_offset, SectionRef S,
2470 DisassembleInfo *info,
2471 uint32_t ReferenceValue) {
2472 uint64_t n_value64;
2473 return get_symbol_64(sect_offset, S, info, n_value64, ReferenceValue);
2474}
2475
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002476// These are structs in the Objective-C meta data and read to produce the
2477// comments for disassembly. While these are part of the ABI they are no
2478// public defintions. So the are here not in include/llvm/Support/MachO.h .
2479
2480// The cfstring object in a 64-bit Mach-O file.
2481struct cfstring64_t {
2482 uint64_t isa; // class64_t * (64-bit pointer)
2483 uint64_t flags; // flag bits
2484 uint64_t characters; // char * (64-bit pointer)
2485 uint64_t length; // number of non-NULL characters in above
2486};
2487
2488// The class object in a 64-bit Mach-O file.
2489struct class64_t {
2490 uint64_t isa; // class64_t * (64-bit pointer)
2491 uint64_t superclass; // class64_t * (64-bit pointer)
2492 uint64_t cache; // Cache (64-bit pointer)
2493 uint64_t vtable; // IMP * (64-bit pointer)
2494 uint64_t data; // class_ro64_t * (64-bit pointer)
2495};
2496
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002497struct class32_t {
2498 uint32_t isa; /* class32_t * (32-bit pointer) */
2499 uint32_t superclass; /* class32_t * (32-bit pointer) */
2500 uint32_t cache; /* Cache (32-bit pointer) */
2501 uint32_t vtable; /* IMP * (32-bit pointer) */
2502 uint32_t data; /* class_ro32_t * (32-bit pointer) */
2503};
2504
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002505struct class_ro64_t {
2506 uint32_t flags;
2507 uint32_t instanceStart;
2508 uint32_t instanceSize;
2509 uint32_t reserved;
2510 uint64_t ivarLayout; // const uint8_t * (64-bit pointer)
2511 uint64_t name; // const char * (64-bit pointer)
2512 uint64_t baseMethods; // const method_list_t * (64-bit pointer)
2513 uint64_t baseProtocols; // const protocol_list_t * (64-bit pointer)
2514 uint64_t ivars; // const ivar_list_t * (64-bit pointer)
2515 uint64_t weakIvarLayout; // const uint8_t * (64-bit pointer)
2516 uint64_t baseProperties; // const struct objc_property_list (64-bit pointer)
2517};
2518
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002519struct class_ro32_t {
2520 uint32_t flags;
2521 uint32_t instanceStart;
2522 uint32_t instanceSize;
2523 uint32_t ivarLayout; /* const uint8_t * (32-bit pointer) */
2524 uint32_t name; /* const char * (32-bit pointer) */
2525 uint32_t baseMethods; /* const method_list_t * (32-bit pointer) */
2526 uint32_t baseProtocols; /* const protocol_list_t * (32-bit pointer) */
2527 uint32_t ivars; /* const ivar_list_t * (32-bit pointer) */
2528 uint32_t weakIvarLayout; /* const uint8_t * (32-bit pointer) */
2529 uint32_t baseProperties; /* const struct objc_property_list *
2530 (32-bit pointer) */
2531};
2532
2533/* Values for class_ro{64,32}_t->flags */
Kevin Enderby0fc11822015-04-01 20:57:01 +00002534#define RO_META (1 << 0)
2535#define RO_ROOT (1 << 1)
2536#define RO_HAS_CXX_STRUCTORS (1 << 2)
2537
2538struct method_list64_t {
2539 uint32_t entsize;
2540 uint32_t count;
2541 /* struct method64_t first; These structures follow inline */
2542};
2543
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002544struct method_list32_t {
2545 uint32_t entsize;
2546 uint32_t count;
2547 /* struct method32_t first; These structures follow inline */
2548};
2549
Kevin Enderby0fc11822015-04-01 20:57:01 +00002550struct method64_t {
2551 uint64_t name; /* SEL (64-bit pointer) */
2552 uint64_t types; /* const char * (64-bit pointer) */
2553 uint64_t imp; /* IMP (64-bit pointer) */
2554};
2555
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002556struct method32_t {
2557 uint32_t name; /* SEL (32-bit pointer) */
2558 uint32_t types; /* const char * (32-bit pointer) */
2559 uint32_t imp; /* IMP (32-bit pointer) */
2560};
2561
Kevin Enderby0fc11822015-04-01 20:57:01 +00002562struct protocol_list64_t {
2563 uint64_t count; /* uintptr_t (a 64-bit value) */
2564 /* struct protocol64_t * list[0]; These pointers follow inline */
2565};
2566
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002567struct protocol_list32_t {
2568 uint32_t count; /* uintptr_t (a 32-bit value) */
2569 /* struct protocol32_t * list[0]; These pointers follow inline */
2570};
2571
Kevin Enderby0fc11822015-04-01 20:57:01 +00002572struct protocol64_t {
2573 uint64_t isa; /* id * (64-bit pointer) */
2574 uint64_t name; /* const char * (64-bit pointer) */
2575 uint64_t protocols; /* struct protocol_list64_t *
2576 (64-bit pointer) */
2577 uint64_t instanceMethods; /* method_list_t * (64-bit pointer) */
2578 uint64_t classMethods; /* method_list_t * (64-bit pointer) */
2579 uint64_t optionalInstanceMethods; /* method_list_t * (64-bit pointer) */
2580 uint64_t optionalClassMethods; /* method_list_t * (64-bit pointer) */
2581 uint64_t instanceProperties; /* struct objc_property_list *
2582 (64-bit pointer) */
2583};
2584
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002585struct protocol32_t {
2586 uint32_t isa; /* id * (32-bit pointer) */
2587 uint32_t name; /* const char * (32-bit pointer) */
2588 uint32_t protocols; /* struct protocol_list_t *
2589 (32-bit pointer) */
2590 uint32_t instanceMethods; /* method_list_t * (32-bit pointer) */
2591 uint32_t classMethods; /* method_list_t * (32-bit pointer) */
2592 uint32_t optionalInstanceMethods; /* method_list_t * (32-bit pointer) */
2593 uint32_t optionalClassMethods; /* method_list_t * (32-bit pointer) */
2594 uint32_t instanceProperties; /* struct objc_property_list *
2595 (32-bit pointer) */
2596};
2597
Kevin Enderby0fc11822015-04-01 20:57:01 +00002598struct ivar_list64_t {
2599 uint32_t entsize;
2600 uint32_t count;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002601 /* struct ivar64_t first; These structures follow inline */
2602};
2603
2604struct ivar_list32_t {
2605 uint32_t entsize;
2606 uint32_t count;
2607 /* struct ivar32_t first; These structures follow inline */
Kevin Enderby0fc11822015-04-01 20:57:01 +00002608};
2609
2610struct ivar64_t {
2611 uint64_t offset; /* uintptr_t * (64-bit pointer) */
2612 uint64_t name; /* const char * (64-bit pointer) */
2613 uint64_t type; /* const char * (64-bit pointer) */
2614 uint32_t alignment;
2615 uint32_t size;
2616};
2617
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002618struct ivar32_t {
2619 uint32_t offset; /* uintptr_t * (32-bit pointer) */
2620 uint32_t name; /* const char * (32-bit pointer) */
2621 uint32_t type; /* const char * (32-bit pointer) */
2622 uint32_t alignment;
2623 uint32_t size;
2624};
2625
Kevin Enderby0fc11822015-04-01 20:57:01 +00002626struct objc_property_list64 {
2627 uint32_t entsize;
2628 uint32_t count;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002629 /* struct objc_property64 first; These structures follow inline */
2630};
2631
2632struct objc_property_list32 {
2633 uint32_t entsize;
2634 uint32_t count;
2635 /* struct objc_property32 first; These structures follow inline */
Kevin Enderby0fc11822015-04-01 20:57:01 +00002636};
2637
2638struct objc_property64 {
2639 uint64_t name; /* const char * (64-bit pointer) */
2640 uint64_t attributes; /* const char * (64-bit pointer) */
2641};
2642
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002643struct objc_property32 {
2644 uint32_t name; /* const char * (32-bit pointer) */
2645 uint32_t attributes; /* const char * (32-bit pointer) */
2646};
2647
Kevin Enderby0fc11822015-04-01 20:57:01 +00002648struct category64_t {
2649 uint64_t name; /* const char * (64-bit pointer) */
2650 uint64_t cls; /* struct class_t * (64-bit pointer) */
2651 uint64_t instanceMethods; /* struct method_list_t * (64-bit pointer) */
2652 uint64_t classMethods; /* struct method_list_t * (64-bit pointer) */
2653 uint64_t protocols; /* struct protocol_list_t * (64-bit pointer) */
2654 uint64_t instanceProperties; /* struct objc_property_list *
2655 (64-bit pointer) */
2656};
2657
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002658struct category32_t {
2659 uint32_t name; /* const char * (32-bit pointer) */
2660 uint32_t cls; /* struct class_t * (32-bit pointer) */
2661 uint32_t instanceMethods; /* struct method_list_t * (32-bit pointer) */
2662 uint32_t classMethods; /* struct method_list_t * (32-bit pointer) */
2663 uint32_t protocols; /* struct protocol_list_t * (32-bit pointer) */
2664 uint32_t instanceProperties; /* struct objc_property_list *
2665 (32-bit pointer) */
2666};
2667
Kevin Enderby0fc11822015-04-01 20:57:01 +00002668struct objc_image_info64 {
2669 uint32_t version;
2670 uint32_t flags;
2671};
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002672struct objc_image_info32 {
2673 uint32_t version;
2674 uint32_t flags;
2675};
Kevin Enderby846c0002015-04-16 17:19:59 +00002676struct imageInfo_t {
2677 uint32_t version;
2678 uint32_t flags;
2679};
Kevin Enderby0fc11822015-04-01 20:57:01 +00002680/* masks for objc_image_info.flags */
2681#define OBJC_IMAGE_IS_REPLACEMENT (1 << 0)
2682#define OBJC_IMAGE_SUPPORTS_GC (1 << 1)
2683
2684struct message_ref64 {
2685 uint64_t imp; /* IMP (64-bit pointer) */
2686 uint64_t sel; /* SEL (64-bit pointer) */
2687};
2688
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002689struct message_ref32 {
2690 uint32_t imp; /* IMP (32-bit pointer) */
2691 uint32_t sel; /* SEL (32-bit pointer) */
2692};
2693
Kevin Enderby846c0002015-04-16 17:19:59 +00002694// Objective-C 1 (32-bit only) meta data structs.
2695
2696struct objc_module_t {
2697 uint32_t version;
2698 uint32_t size;
2699 uint32_t name; /* char * (32-bit pointer) */
2700 uint32_t symtab; /* struct objc_symtab * (32-bit pointer) */
2701};
2702
2703struct objc_symtab_t {
2704 uint32_t sel_ref_cnt;
2705 uint32_t refs; /* SEL * (32-bit pointer) */
2706 uint16_t cls_def_cnt;
2707 uint16_t cat_def_cnt;
2708 // uint32_t defs[1]; /* void * (32-bit pointer) variable size */
2709};
2710
2711struct objc_class_t {
2712 uint32_t isa; /* struct objc_class * (32-bit pointer) */
2713 uint32_t super_class; /* struct objc_class * (32-bit pointer) */
2714 uint32_t name; /* const char * (32-bit pointer) */
2715 int32_t version;
2716 int32_t info;
2717 int32_t instance_size;
2718 uint32_t ivars; /* struct objc_ivar_list * (32-bit pointer) */
2719 uint32_t methodLists; /* struct objc_method_list ** (32-bit pointer) */
2720 uint32_t cache; /* struct objc_cache * (32-bit pointer) */
2721 uint32_t protocols; /* struct objc_protocol_list * (32-bit pointer) */
2722};
2723
2724#define CLS_GETINFO(cls, infomask) ((cls)->info & (infomask))
2725// class is not a metaclass
2726#define CLS_CLASS 0x1
2727// class is a metaclass
2728#define CLS_META 0x2
2729
2730struct objc_category_t {
2731 uint32_t category_name; /* char * (32-bit pointer) */
2732 uint32_t class_name; /* char * (32-bit pointer) */
2733 uint32_t instance_methods; /* struct objc_method_list * (32-bit pointer) */
2734 uint32_t class_methods; /* struct objc_method_list * (32-bit pointer) */
2735 uint32_t protocols; /* struct objc_protocol_list * (32-bit ptr) */
2736};
2737
2738struct objc_ivar_t {
2739 uint32_t ivar_name; /* char * (32-bit pointer) */
2740 uint32_t ivar_type; /* char * (32-bit pointer) */
2741 int32_t ivar_offset;
2742};
2743
2744struct objc_ivar_list_t {
2745 int32_t ivar_count;
2746 // struct objc_ivar_t ivar_list[1]; /* variable length structure */
2747};
2748
2749struct objc_method_list_t {
2750 uint32_t obsolete; /* struct objc_method_list * (32-bit pointer) */
2751 int32_t method_count;
2752 // struct objc_method_t method_list[1]; /* variable length structure */
2753};
2754
2755struct objc_method_t {
2756 uint32_t method_name; /* SEL, aka struct objc_selector * (32-bit pointer) */
2757 uint32_t method_types; /* char * (32-bit pointer) */
2758 uint32_t method_imp; /* IMP, aka function pointer, (*IMP)(id, SEL, ...)
2759 (32-bit pointer) */
2760};
2761
2762struct objc_protocol_list_t {
2763 uint32_t next; /* struct objc_protocol_list * (32-bit pointer) */
2764 int32_t count;
2765 // uint32_t list[1]; /* Protocol *, aka struct objc_protocol_t *
2766 // (32-bit pointer) */
2767};
2768
2769struct objc_protocol_t {
2770 uint32_t isa; /* struct objc_class * (32-bit pointer) */
2771 uint32_t protocol_name; /* char * (32-bit pointer) */
2772 uint32_t protocol_list; /* struct objc_protocol_list * (32-bit pointer) */
2773 uint32_t instance_methods; /* struct objc_method_description_list *
2774 (32-bit pointer) */
2775 uint32_t class_methods; /* struct objc_method_description_list *
2776 (32-bit pointer) */
2777};
2778
2779struct objc_method_description_list_t {
2780 int32_t count;
2781 // struct objc_method_description_t list[1];
2782};
2783
2784struct objc_method_description_t {
2785 uint32_t name; /* SEL, aka struct objc_selector * (32-bit pointer) */
2786 uint32_t types; /* char * (32-bit pointer) */
2787};
2788
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002789inline void swapStruct(struct cfstring64_t &cfs) {
2790 sys::swapByteOrder(cfs.isa);
2791 sys::swapByteOrder(cfs.flags);
2792 sys::swapByteOrder(cfs.characters);
2793 sys::swapByteOrder(cfs.length);
2794}
2795
2796inline void swapStruct(struct class64_t &c) {
2797 sys::swapByteOrder(c.isa);
2798 sys::swapByteOrder(c.superclass);
2799 sys::swapByteOrder(c.cache);
2800 sys::swapByteOrder(c.vtable);
2801 sys::swapByteOrder(c.data);
2802}
2803
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002804inline void swapStruct(struct class32_t &c) {
2805 sys::swapByteOrder(c.isa);
2806 sys::swapByteOrder(c.superclass);
2807 sys::swapByteOrder(c.cache);
2808 sys::swapByteOrder(c.vtable);
2809 sys::swapByteOrder(c.data);
2810}
2811
Kevin Enderby6f326ce2014-10-23 19:37:31 +00002812inline void swapStruct(struct class_ro64_t &cro) {
2813 sys::swapByteOrder(cro.flags);
2814 sys::swapByteOrder(cro.instanceStart);
2815 sys::swapByteOrder(cro.instanceSize);
2816 sys::swapByteOrder(cro.reserved);
2817 sys::swapByteOrder(cro.ivarLayout);
2818 sys::swapByteOrder(cro.name);
2819 sys::swapByteOrder(cro.baseMethods);
2820 sys::swapByteOrder(cro.baseProtocols);
2821 sys::swapByteOrder(cro.ivars);
2822 sys::swapByteOrder(cro.weakIvarLayout);
2823 sys::swapByteOrder(cro.baseProperties);
2824}
2825
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002826inline void swapStruct(struct class_ro32_t &cro) {
2827 sys::swapByteOrder(cro.flags);
2828 sys::swapByteOrder(cro.instanceStart);
2829 sys::swapByteOrder(cro.instanceSize);
2830 sys::swapByteOrder(cro.ivarLayout);
2831 sys::swapByteOrder(cro.name);
2832 sys::swapByteOrder(cro.baseMethods);
2833 sys::swapByteOrder(cro.baseProtocols);
2834 sys::swapByteOrder(cro.ivars);
2835 sys::swapByteOrder(cro.weakIvarLayout);
2836 sys::swapByteOrder(cro.baseProperties);
2837}
2838
Kevin Enderby0fc11822015-04-01 20:57:01 +00002839inline void swapStruct(struct method_list64_t &ml) {
2840 sys::swapByteOrder(ml.entsize);
2841 sys::swapByteOrder(ml.count);
2842}
2843
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002844inline void swapStruct(struct method_list32_t &ml) {
2845 sys::swapByteOrder(ml.entsize);
2846 sys::swapByteOrder(ml.count);
2847}
2848
Kevin Enderby0fc11822015-04-01 20:57:01 +00002849inline void swapStruct(struct method64_t &m) {
2850 sys::swapByteOrder(m.name);
2851 sys::swapByteOrder(m.types);
2852 sys::swapByteOrder(m.imp);
2853}
2854
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002855inline void swapStruct(struct method32_t &m) {
2856 sys::swapByteOrder(m.name);
2857 sys::swapByteOrder(m.types);
2858 sys::swapByteOrder(m.imp);
2859}
2860
Kevin Enderby0fc11822015-04-01 20:57:01 +00002861inline void swapStruct(struct protocol_list64_t &pl) {
2862 sys::swapByteOrder(pl.count);
2863}
2864
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002865inline void swapStruct(struct protocol_list32_t &pl) {
2866 sys::swapByteOrder(pl.count);
2867}
2868
Kevin Enderby0fc11822015-04-01 20:57:01 +00002869inline void swapStruct(struct protocol64_t &p) {
2870 sys::swapByteOrder(p.isa);
2871 sys::swapByteOrder(p.name);
2872 sys::swapByteOrder(p.protocols);
2873 sys::swapByteOrder(p.instanceMethods);
2874 sys::swapByteOrder(p.classMethods);
2875 sys::swapByteOrder(p.optionalInstanceMethods);
2876 sys::swapByteOrder(p.optionalClassMethods);
2877 sys::swapByteOrder(p.instanceProperties);
2878}
2879
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002880inline void swapStruct(struct protocol32_t &p) {
2881 sys::swapByteOrder(p.isa);
2882 sys::swapByteOrder(p.name);
2883 sys::swapByteOrder(p.protocols);
2884 sys::swapByteOrder(p.instanceMethods);
2885 sys::swapByteOrder(p.classMethods);
2886 sys::swapByteOrder(p.optionalInstanceMethods);
2887 sys::swapByteOrder(p.optionalClassMethods);
2888 sys::swapByteOrder(p.instanceProperties);
2889}
2890
Kevin Enderby0fc11822015-04-01 20:57:01 +00002891inline void swapStruct(struct ivar_list64_t &il) {
2892 sys::swapByteOrder(il.entsize);
2893 sys::swapByteOrder(il.count);
2894}
2895
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002896inline void swapStruct(struct ivar_list32_t &il) {
2897 sys::swapByteOrder(il.entsize);
2898 sys::swapByteOrder(il.count);
2899}
2900
Kevin Enderby0fc11822015-04-01 20:57:01 +00002901inline void swapStruct(struct ivar64_t &i) {
2902 sys::swapByteOrder(i.offset);
2903 sys::swapByteOrder(i.name);
2904 sys::swapByteOrder(i.type);
2905 sys::swapByteOrder(i.alignment);
2906 sys::swapByteOrder(i.size);
2907}
2908
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002909inline void swapStruct(struct ivar32_t &i) {
2910 sys::swapByteOrder(i.offset);
2911 sys::swapByteOrder(i.name);
2912 sys::swapByteOrder(i.type);
2913 sys::swapByteOrder(i.alignment);
2914 sys::swapByteOrder(i.size);
2915}
2916
Kevin Enderby0fc11822015-04-01 20:57:01 +00002917inline void swapStruct(struct objc_property_list64 &pl) {
2918 sys::swapByteOrder(pl.entsize);
2919 sys::swapByteOrder(pl.count);
2920}
2921
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002922inline void swapStruct(struct objc_property_list32 &pl) {
2923 sys::swapByteOrder(pl.entsize);
2924 sys::swapByteOrder(pl.count);
2925}
2926
Kevin Enderby0fc11822015-04-01 20:57:01 +00002927inline void swapStruct(struct objc_property64 &op) {
2928 sys::swapByteOrder(op.name);
2929 sys::swapByteOrder(op.attributes);
2930}
2931
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002932inline void swapStruct(struct objc_property32 &op) {
2933 sys::swapByteOrder(op.name);
2934 sys::swapByteOrder(op.attributes);
2935}
2936
Kevin Enderby0fc11822015-04-01 20:57:01 +00002937inline void swapStruct(struct category64_t &c) {
2938 sys::swapByteOrder(c.name);
2939 sys::swapByteOrder(c.cls);
2940 sys::swapByteOrder(c.instanceMethods);
2941 sys::swapByteOrder(c.classMethods);
2942 sys::swapByteOrder(c.protocols);
2943 sys::swapByteOrder(c.instanceProperties);
2944}
2945
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002946inline void swapStruct(struct category32_t &c) {
2947 sys::swapByteOrder(c.name);
2948 sys::swapByteOrder(c.cls);
2949 sys::swapByteOrder(c.instanceMethods);
2950 sys::swapByteOrder(c.classMethods);
2951 sys::swapByteOrder(c.protocols);
2952 sys::swapByteOrder(c.instanceProperties);
2953}
2954
Kevin Enderby0fc11822015-04-01 20:57:01 +00002955inline void swapStruct(struct objc_image_info64 &o) {
2956 sys::swapByteOrder(o.version);
2957 sys::swapByteOrder(o.flags);
2958}
2959
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002960inline void swapStruct(struct objc_image_info32 &o) {
2961 sys::swapByteOrder(o.version);
2962 sys::swapByteOrder(o.flags);
2963}
2964
Kevin Enderby846c0002015-04-16 17:19:59 +00002965inline void swapStruct(struct imageInfo_t &o) {
2966 sys::swapByteOrder(o.version);
2967 sys::swapByteOrder(o.flags);
2968}
2969
Kevin Enderby0fc11822015-04-01 20:57:01 +00002970inline void swapStruct(struct message_ref64 &mr) {
2971 sys::swapByteOrder(mr.imp);
2972 sys::swapByteOrder(mr.sel);
2973}
2974
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00002975inline void swapStruct(struct message_ref32 &mr) {
2976 sys::swapByteOrder(mr.imp);
2977 sys::swapByteOrder(mr.sel);
2978}
2979
Kevin Enderby846c0002015-04-16 17:19:59 +00002980inline void swapStruct(struct objc_module_t &module) {
2981 sys::swapByteOrder(module.version);
2982 sys::swapByteOrder(module.size);
2983 sys::swapByteOrder(module.name);
2984 sys::swapByteOrder(module.symtab);
Jingyue Wufedecc42015-04-16 18:43:44 +00002985}
Kevin Enderby846c0002015-04-16 17:19:59 +00002986
2987inline void swapStruct(struct objc_symtab_t &symtab) {
2988 sys::swapByteOrder(symtab.sel_ref_cnt);
2989 sys::swapByteOrder(symtab.refs);
2990 sys::swapByteOrder(symtab.cls_def_cnt);
2991 sys::swapByteOrder(symtab.cat_def_cnt);
Jingyue Wufedecc42015-04-16 18:43:44 +00002992}
Kevin Enderby846c0002015-04-16 17:19:59 +00002993
2994inline void swapStruct(struct objc_class_t &objc_class) {
2995 sys::swapByteOrder(objc_class.isa);
2996 sys::swapByteOrder(objc_class.super_class);
2997 sys::swapByteOrder(objc_class.name);
2998 sys::swapByteOrder(objc_class.version);
2999 sys::swapByteOrder(objc_class.info);
3000 sys::swapByteOrder(objc_class.instance_size);
3001 sys::swapByteOrder(objc_class.ivars);
3002 sys::swapByteOrder(objc_class.methodLists);
3003 sys::swapByteOrder(objc_class.cache);
3004 sys::swapByteOrder(objc_class.protocols);
Jingyue Wufedecc42015-04-16 18:43:44 +00003005}
Kevin Enderby846c0002015-04-16 17:19:59 +00003006
3007inline void swapStruct(struct objc_category_t &objc_category) {
3008 sys::swapByteOrder(objc_category.category_name);
3009 sys::swapByteOrder(objc_category.class_name);
3010 sys::swapByteOrder(objc_category.instance_methods);
3011 sys::swapByteOrder(objc_category.class_methods);
3012 sys::swapByteOrder(objc_category.protocols);
3013}
3014
3015inline void swapStruct(struct objc_ivar_list_t &objc_ivar_list) {
3016 sys::swapByteOrder(objc_ivar_list.ivar_count);
3017}
3018
3019inline void swapStruct(struct objc_ivar_t &objc_ivar) {
3020 sys::swapByteOrder(objc_ivar.ivar_name);
3021 sys::swapByteOrder(objc_ivar.ivar_type);
3022 sys::swapByteOrder(objc_ivar.ivar_offset);
Jingyue Wufedecc42015-04-16 18:43:44 +00003023}
Kevin Enderby846c0002015-04-16 17:19:59 +00003024
3025inline void swapStruct(struct objc_method_list_t &method_list) {
3026 sys::swapByteOrder(method_list.obsolete);
3027 sys::swapByteOrder(method_list.method_count);
3028}
3029
3030inline void swapStruct(struct objc_method_t &method) {
3031 sys::swapByteOrder(method.method_name);
3032 sys::swapByteOrder(method.method_types);
3033 sys::swapByteOrder(method.method_imp);
3034}
3035
3036inline void swapStruct(struct objc_protocol_list_t &protocol_list) {
3037 sys::swapByteOrder(protocol_list.next);
3038 sys::swapByteOrder(protocol_list.count);
3039}
3040
3041inline void swapStruct(struct objc_protocol_t &protocol) {
3042 sys::swapByteOrder(protocol.isa);
3043 sys::swapByteOrder(protocol.protocol_name);
3044 sys::swapByteOrder(protocol.protocol_list);
3045 sys::swapByteOrder(protocol.instance_methods);
3046 sys::swapByteOrder(protocol.class_methods);
3047}
3048
3049inline void swapStruct(struct objc_method_description_list_t &mdl) {
3050 sys::swapByteOrder(mdl.count);
3051}
3052
3053inline void swapStruct(struct objc_method_description_t &md) {
3054 sys::swapByteOrder(md.name);
3055 sys::swapByteOrder(md.types);
3056}
3057
Kevin Enderby6f326ce2014-10-23 19:37:31 +00003058static const char *get_dyld_bind_info_symbolname(uint64_t ReferenceValue,
3059 struct DisassembleInfo *info);
3060
3061// get_objc2_64bit_class_name() is used for disassembly and is passed a pointer
3062// to an Objective-C class and returns the class name. It is also passed the
3063// address of the pointer, so when the pointer is zero as it can be in an .o
3064// file, that is used to look for an external relocation entry with a symbol
3065// name.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00003066static const char *get_objc2_64bit_class_name(uint64_t pointer_value,
3067 uint64_t ReferenceValue,
3068 struct DisassembleInfo *info) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00003069 const char *r;
3070 uint32_t offset, left;
3071 SectionRef S;
3072
3073 // The pointer_value can be 0 in an object file and have a relocation
3074 // entry for the class symbol at the ReferenceValue (the address of the
3075 // pointer).
3076 if (pointer_value == 0) {
3077 r = get_pointer_64(ReferenceValue, offset, left, S, info);
3078 if (r == nullptr || left < sizeof(uint64_t))
3079 return nullptr;
3080 uint64_t n_value;
3081 const char *symbol_name = get_symbol_64(offset, S, info, n_value);
3082 if (symbol_name == nullptr)
3083 return nullptr;
Hans Wennborgdb53e302014-10-23 21:59:17 +00003084 const char *class_name = strrchr(symbol_name, '$');
Kevin Enderby6f326ce2014-10-23 19:37:31 +00003085 if (class_name != nullptr && class_name[1] == '_' && class_name[2] != '\0')
3086 return class_name + 2;
3087 else
3088 return nullptr;
3089 }
3090
3091 // The case were the pointer_value is non-zero and points to a class defined
3092 // in this Mach-O file.
3093 r = get_pointer_64(pointer_value, offset, left, S, info);
3094 if (r == nullptr || left < sizeof(struct class64_t))
3095 return nullptr;
3096 struct class64_t c;
3097 memcpy(&c, r, sizeof(struct class64_t));
3098 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3099 swapStruct(c);
3100 if (c.data == 0)
3101 return nullptr;
3102 r = get_pointer_64(c.data, offset, left, S, info);
3103 if (r == nullptr || left < sizeof(struct class_ro64_t))
3104 return nullptr;
3105 struct class_ro64_t cro;
3106 memcpy(&cro, r, sizeof(struct class_ro64_t));
3107 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3108 swapStruct(cro);
3109 if (cro.name == 0)
3110 return nullptr;
3111 const char *name = get_pointer_64(cro.name, offset, left, S, info);
3112 return name;
3113}
3114
3115// get_objc2_64bit_cfstring_name is used for disassembly and is passed a
3116// pointer to a cfstring and returns its name or nullptr.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00003117static const char *get_objc2_64bit_cfstring_name(uint64_t ReferenceValue,
3118 struct DisassembleInfo *info) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00003119 const char *r, *name;
3120 uint32_t offset, left;
3121 SectionRef S;
3122 struct cfstring64_t cfs;
3123 uint64_t cfs_characters;
3124
3125 r = get_pointer_64(ReferenceValue, offset, left, S, info);
3126 if (r == nullptr || left < sizeof(struct cfstring64_t))
3127 return nullptr;
3128 memcpy(&cfs, r, sizeof(struct cfstring64_t));
3129 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3130 swapStruct(cfs);
3131 if (cfs.characters == 0) {
3132 uint64_t n_value;
3133 const char *symbol_name = get_symbol_64(
3134 offset + offsetof(struct cfstring64_t, characters), S, info, n_value);
3135 if (symbol_name == nullptr)
3136 return nullptr;
3137 cfs_characters = n_value;
3138 } else
3139 cfs_characters = cfs.characters;
3140 name = get_pointer_64(cfs_characters, offset, left, S, info);
3141
3142 return name;
3143}
3144
3145// get_objc2_64bit_selref() is used for disassembly and is passed a the address
3146// of a pointer to an Objective-C selector reference when the pointer value is
3147// zero as in a .o file and is likely to have a external relocation entry with
3148// who's symbol's n_value is the real pointer to the selector name. If that is
3149// the case the real pointer to the selector name is returned else 0 is
3150// returned
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00003151static uint64_t get_objc2_64bit_selref(uint64_t ReferenceValue,
3152 struct DisassembleInfo *info) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00003153 uint32_t offset, left;
3154 SectionRef S;
3155
3156 const char *r = get_pointer_64(ReferenceValue, offset, left, S, info);
3157 if (r == nullptr || left < sizeof(uint64_t))
3158 return 0;
3159 uint64_t n_value;
3160 const char *symbol_name = get_symbol_64(offset, S, info, n_value);
3161 if (symbol_name == nullptr)
3162 return 0;
3163 return n_value;
3164}
3165
Kevin Enderby0fc11822015-04-01 20:57:01 +00003166static const SectionRef get_section(MachOObjectFile *O, const char *segname,
3167 const char *sectname) {
3168 for (const SectionRef &Section : O->sections()) {
3169 StringRef SectName;
3170 Section.getName(SectName);
3171 DataRefImpl Ref = Section.getRawDataRefImpl();
3172 StringRef SegName = O->getSectionFinalSegmentName(Ref);
3173 if (SegName == segname && SectName == sectname)
3174 return Section;
3175 }
3176 return SectionRef();
3177}
3178
3179static void
3180walk_pointer_list_64(const char *listname, const SectionRef S,
3181 MachOObjectFile *O, struct DisassembleInfo *info,
3182 void (*func)(uint64_t, struct DisassembleInfo *info)) {
3183 if (S == SectionRef())
3184 return;
3185
3186 StringRef SectName;
3187 S.getName(SectName);
3188 DataRefImpl Ref = S.getRawDataRefImpl();
3189 StringRef SegName = O->getSectionFinalSegmentName(Ref);
3190 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
3191
3192 StringRef BytesStr;
3193 S.getContents(BytesStr);
3194 const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
3195
3196 for (uint32_t i = 0; i < S.getSize(); i += sizeof(uint64_t)) {
3197 uint32_t left = S.getSize() - i;
3198 uint32_t size = left < sizeof(uint64_t) ? left : sizeof(uint64_t);
3199 uint64_t p = 0;
3200 memcpy(&p, Contents + i, size);
3201 if (i + sizeof(uint64_t) > S.getSize())
3202 outs() << listname << " list pointer extends past end of (" << SegName
3203 << "," << SectName << ") section\n";
3204 outs() << format("%016" PRIx64, S.getAddress() + i) << " ";
3205
3206 if (O->isLittleEndian() != sys::IsLittleEndianHost)
3207 sys::swapByteOrder(p);
3208
3209 uint64_t n_value = 0;
3210 const char *name = get_symbol_64(i, S, info, n_value, p);
3211 if (name == nullptr)
3212 name = get_dyld_bind_info_symbolname(S.getAddress() + i, info);
3213
3214 if (n_value != 0) {
3215 outs() << format("0x%" PRIx64, n_value);
3216 if (p != 0)
3217 outs() << " + " << format("0x%" PRIx64, p);
3218 } else
3219 outs() << format("0x%" PRIx64, p);
3220 if (name != nullptr)
3221 outs() << " " << name;
3222 outs() << "\n";
3223
3224 p += n_value;
3225 if (func)
3226 func(p, info);
3227 }
3228}
3229
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003230static void
3231walk_pointer_list_32(const char *listname, const SectionRef S,
3232 MachOObjectFile *O, struct DisassembleInfo *info,
3233 void (*func)(uint32_t, struct DisassembleInfo *info)) {
3234 if (S == SectionRef())
3235 return;
3236
3237 StringRef SectName;
3238 S.getName(SectName);
3239 DataRefImpl Ref = S.getRawDataRefImpl();
3240 StringRef SegName = O->getSectionFinalSegmentName(Ref);
3241 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
3242
3243 StringRef BytesStr;
3244 S.getContents(BytesStr);
3245 const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
3246
3247 for (uint32_t i = 0; i < S.getSize(); i += sizeof(uint32_t)) {
3248 uint32_t left = S.getSize() - i;
3249 uint32_t size = left < sizeof(uint32_t) ? left : sizeof(uint32_t);
3250 uint32_t p = 0;
3251 memcpy(&p, Contents + i, size);
3252 if (i + sizeof(uint32_t) > S.getSize())
3253 outs() << listname << " list pointer extends past end of (" << SegName
3254 << "," << SectName << ") section\n";
Kevin Enderbycf261312015-04-06 22:33:43 +00003255 uint32_t Address = S.getAddress() + i;
3256 outs() << format("%08" PRIx32, Address) << " ";
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003257
3258 if (O->isLittleEndian() != sys::IsLittleEndianHost)
3259 sys::swapByteOrder(p);
3260 outs() << format("0x%" PRIx32, p);
3261
3262 const char *name = get_symbol_32(i, S, info, p);
3263 if (name != nullptr)
3264 outs() << " " << name;
3265 outs() << "\n";
3266
3267 if (func)
3268 func(p, info);
3269 }
3270}
3271
3272static void print_layout_map(const char *layout_map, uint32_t left) {
Kevin Enderbya59824a2015-10-06 22:27:08 +00003273 if (layout_map == nullptr)
3274 return;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003275 outs() << " layout map: ";
3276 do {
3277 outs() << format("0x%02" PRIx32, (*layout_map) & 0xff) << " ";
3278 left--;
3279 layout_map++;
3280 } while (*layout_map != '\0' && left != 0);
3281 outs() << "\n";
3282}
3283
Kevin Enderby0fc11822015-04-01 20:57:01 +00003284static void print_layout_map64(uint64_t p, struct DisassembleInfo *info) {
3285 uint32_t offset, left;
3286 SectionRef S;
3287 const char *layout_map;
3288
3289 if (p == 0)
3290 return;
3291 layout_map = get_pointer_64(p, offset, left, S, info);
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003292 print_layout_map(layout_map, left);
3293}
3294
3295static void print_layout_map32(uint32_t p, struct DisassembleInfo *info) {
3296 uint32_t offset, left;
3297 SectionRef S;
3298 const char *layout_map;
3299
3300 if (p == 0)
3301 return;
3302 layout_map = get_pointer_32(p, offset, left, S, info);
3303 print_layout_map(layout_map, left);
Kevin Enderby0fc11822015-04-01 20:57:01 +00003304}
3305
3306static void print_method_list64_t(uint64_t p, struct DisassembleInfo *info,
3307 const char *indent) {
3308 struct method_list64_t ml;
3309 struct method64_t m;
3310 const char *r;
3311 uint32_t offset, xoffset, left, i;
3312 SectionRef S, xS;
3313 const char *name, *sym_name;
3314 uint64_t n_value;
3315
3316 r = get_pointer_64(p, offset, left, S, info);
3317 if (r == nullptr)
3318 return;
3319 memset(&ml, '\0', sizeof(struct method_list64_t));
3320 if (left < sizeof(struct method_list64_t)) {
3321 memcpy(&ml, r, left);
3322 outs() << " (method_list_t entends past the end of the section)\n";
3323 } else
3324 memcpy(&ml, r, sizeof(struct method_list64_t));
3325 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3326 swapStruct(ml);
3327 outs() << indent << "\t\t entsize " << ml.entsize << "\n";
3328 outs() << indent << "\t\t count " << ml.count << "\n";
3329
3330 p += sizeof(struct method_list64_t);
3331 offset += sizeof(struct method_list64_t);
3332 for (i = 0; i < ml.count; i++) {
3333 r = get_pointer_64(p, offset, left, S, info);
3334 if (r == nullptr)
3335 return;
3336 memset(&m, '\0', sizeof(struct method64_t));
3337 if (left < sizeof(struct method64_t)) {
Kevin Enderbya59824a2015-10-06 22:27:08 +00003338 memcpy(&m, r, left);
3339 outs() << indent << " (method_t extends past the end of the section)\n";
Kevin Enderby0fc11822015-04-01 20:57:01 +00003340 } else
3341 memcpy(&m, r, sizeof(struct method64_t));
3342 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3343 swapStruct(m);
3344
3345 outs() << indent << "\t\t name ";
3346 sym_name = get_symbol_64(offset + offsetof(struct method64_t, name), S,
3347 info, n_value, m.name);
3348 if (n_value != 0) {
3349 if (info->verbose && sym_name != nullptr)
3350 outs() << sym_name;
3351 else
3352 outs() << format("0x%" PRIx64, n_value);
3353 if (m.name != 0)
3354 outs() << " + " << format("0x%" PRIx64, m.name);
3355 } else
3356 outs() << format("0x%" PRIx64, m.name);
3357 name = get_pointer_64(m.name + n_value, xoffset, left, xS, info);
3358 if (name != nullptr)
3359 outs() << format(" %.*s", left, name);
3360 outs() << "\n";
3361
3362 outs() << indent << "\t\t types ";
3363 sym_name = get_symbol_64(offset + offsetof(struct method64_t, types), S,
3364 info, n_value, m.types);
3365 if (n_value != 0) {
3366 if (info->verbose && sym_name != nullptr)
3367 outs() << sym_name;
3368 else
3369 outs() << format("0x%" PRIx64, n_value);
3370 if (m.types != 0)
3371 outs() << " + " << format("0x%" PRIx64, m.types);
3372 } else
3373 outs() << format("0x%" PRIx64, m.types);
3374 name = get_pointer_64(m.types + n_value, xoffset, left, xS, info);
3375 if (name != nullptr)
3376 outs() << format(" %.*s", left, name);
3377 outs() << "\n";
3378
3379 outs() << indent << "\t\t imp ";
3380 name = get_symbol_64(offset + offsetof(struct method64_t, imp), S, info,
3381 n_value, m.imp);
3382 if (info->verbose && name == nullptr) {
3383 if (n_value != 0) {
3384 outs() << format("0x%" PRIx64, n_value) << " ";
3385 if (m.imp != 0)
3386 outs() << "+ " << format("0x%" PRIx64, m.imp) << " ";
3387 } else
3388 outs() << format("0x%" PRIx64, m.imp) << " ";
3389 }
3390 if (name != nullptr)
3391 outs() << name;
3392 outs() << "\n";
3393
3394 p += sizeof(struct method64_t);
3395 offset += sizeof(struct method64_t);
3396 }
3397}
3398
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003399static void print_method_list32_t(uint64_t p, struct DisassembleInfo *info,
3400 const char *indent) {
3401 struct method_list32_t ml;
3402 struct method32_t m;
Kevin Enderby846c0002015-04-16 17:19:59 +00003403 const char *r, *name;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003404 uint32_t offset, xoffset, left, i;
3405 SectionRef S, xS;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003406
3407 r = get_pointer_32(p, offset, left, S, info);
3408 if (r == nullptr)
3409 return;
3410 memset(&ml, '\0', sizeof(struct method_list32_t));
3411 if (left < sizeof(struct method_list32_t)) {
3412 memcpy(&ml, r, left);
3413 outs() << " (method_list_t entends past the end of the section)\n";
3414 } else
3415 memcpy(&ml, r, sizeof(struct method_list32_t));
3416 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3417 swapStruct(ml);
3418 outs() << indent << "\t\t entsize " << ml.entsize << "\n";
3419 outs() << indent << "\t\t count " << ml.count << "\n";
3420
3421 p += sizeof(struct method_list32_t);
3422 offset += sizeof(struct method_list32_t);
3423 for (i = 0; i < ml.count; i++) {
3424 r = get_pointer_32(p, offset, left, S, info);
3425 if (r == nullptr)
3426 return;
3427 memset(&m, '\0', sizeof(struct method32_t));
3428 if (left < sizeof(struct method32_t)) {
3429 memcpy(&ml, r, left);
3430 outs() << indent << " (method_t entends past the end of the section)\n";
3431 } else
3432 memcpy(&m, r, sizeof(struct method32_t));
3433 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3434 swapStruct(m);
3435
3436 outs() << indent << "\t\t name " << format("0x%" PRIx32, m.name);
3437 name = get_pointer_32(m.name, xoffset, left, xS, info);
3438 if (name != nullptr)
3439 outs() << format(" %.*s", left, name);
3440 outs() << "\n";
3441
3442 outs() << indent << "\t\t types " << format("0x%" PRIx32, m.types);
3443 name = get_pointer_32(m.types, xoffset, left, xS, info);
3444 if (name != nullptr)
3445 outs() << format(" %.*s", left, name);
3446 outs() << "\n";
3447
3448 outs() << indent << "\t\t imp " << format("0x%" PRIx32, m.imp);
3449 name = get_symbol_32(offset + offsetof(struct method32_t, imp), S, info,
3450 m.imp);
3451 if (name != nullptr)
3452 outs() << " " << name;
3453 outs() << "\n";
3454
3455 p += sizeof(struct method32_t);
3456 offset += sizeof(struct method32_t);
3457 }
3458}
3459
Kevin Enderby846c0002015-04-16 17:19:59 +00003460static bool print_method_list(uint32_t p, struct DisassembleInfo *info) {
3461 uint32_t offset, left, xleft;
3462 SectionRef S;
3463 struct objc_method_list_t method_list;
3464 struct objc_method_t method;
3465 const char *r, *methods, *name, *SymbolName;
3466 int32_t i;
3467
3468 r = get_pointer_32(p, offset, left, S, info, true);
3469 if (r == nullptr)
3470 return true;
3471
3472 outs() << "\n";
3473 if (left > sizeof(struct objc_method_list_t)) {
3474 memcpy(&method_list, r, sizeof(struct objc_method_list_t));
3475 } else {
3476 outs() << "\t\t objc_method_list extends past end of the section\n";
3477 memset(&method_list, '\0', sizeof(struct objc_method_list_t));
3478 memcpy(&method_list, r, left);
3479 }
3480 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3481 swapStruct(method_list);
3482
3483 outs() << "\t\t obsolete "
3484 << format("0x%08" PRIx32, method_list.obsolete) << "\n";
3485 outs() << "\t\t method_count " << method_list.method_count << "\n";
3486
3487 methods = r + sizeof(struct objc_method_list_t);
3488 for (i = 0; i < method_list.method_count; i++) {
3489 if ((i + 1) * sizeof(struct objc_method_t) > left) {
3490 outs() << "\t\t remaining method's extend past the of the section\n";
3491 break;
3492 }
3493 memcpy(&method, methods + i * sizeof(struct objc_method_t),
3494 sizeof(struct objc_method_t));
3495 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3496 swapStruct(method);
3497
3498 outs() << "\t\t method_name "
3499 << format("0x%08" PRIx32, method.method_name);
3500 if (info->verbose) {
3501 name = get_pointer_32(method.method_name, offset, xleft, S, info, true);
3502 if (name != nullptr)
3503 outs() << format(" %.*s", xleft, name);
3504 else
3505 outs() << " (not in an __OBJC section)";
3506 }
3507 outs() << "\n";
3508
3509 outs() << "\t\t method_types "
3510 << format("0x%08" PRIx32, method.method_types);
3511 if (info->verbose) {
3512 name = get_pointer_32(method.method_types, offset, xleft, S, info, true);
3513 if (name != nullptr)
3514 outs() << format(" %.*s", xleft, name);
3515 else
3516 outs() << " (not in an __OBJC section)";
3517 }
3518 outs() << "\n";
3519
3520 outs() << "\t\t method_imp "
3521 << format("0x%08" PRIx32, method.method_imp) << " ";
3522 if (info->verbose) {
3523 SymbolName = GuessSymbolName(method.method_imp, info->AddrMap);
3524 if (SymbolName != nullptr)
3525 outs() << SymbolName;
3526 }
3527 outs() << "\n";
3528 }
3529 return false;
3530}
3531
Kevin Enderby0fc11822015-04-01 20:57:01 +00003532static void print_protocol_list64_t(uint64_t p, struct DisassembleInfo *info) {
3533 struct protocol_list64_t pl;
3534 uint64_t q, n_value;
3535 struct protocol64_t pc;
3536 const char *r;
3537 uint32_t offset, xoffset, left, i;
3538 SectionRef S, xS;
3539 const char *name, *sym_name;
3540
3541 r = get_pointer_64(p, offset, left, S, info);
3542 if (r == nullptr)
3543 return;
3544 memset(&pl, '\0', sizeof(struct protocol_list64_t));
3545 if (left < sizeof(struct protocol_list64_t)) {
3546 memcpy(&pl, r, left);
3547 outs() << " (protocol_list_t entends past the end of the section)\n";
3548 } else
3549 memcpy(&pl, r, sizeof(struct protocol_list64_t));
3550 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3551 swapStruct(pl);
3552 outs() << " count " << pl.count << "\n";
3553
3554 p += sizeof(struct protocol_list64_t);
3555 offset += sizeof(struct protocol_list64_t);
3556 for (i = 0; i < pl.count; i++) {
3557 r = get_pointer_64(p, offset, left, S, info);
3558 if (r == nullptr)
3559 return;
3560 q = 0;
3561 if (left < sizeof(uint64_t)) {
3562 memcpy(&q, r, left);
3563 outs() << " (protocol_t * entends past the end of the section)\n";
3564 } else
3565 memcpy(&q, r, sizeof(uint64_t));
3566 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3567 sys::swapByteOrder(q);
3568
3569 outs() << "\t\t list[" << i << "] ";
3570 sym_name = get_symbol_64(offset, S, info, n_value, q);
3571 if (n_value != 0) {
3572 if (info->verbose && sym_name != nullptr)
3573 outs() << sym_name;
3574 else
3575 outs() << format("0x%" PRIx64, n_value);
3576 if (q != 0)
3577 outs() << " + " << format("0x%" PRIx64, q);
3578 } else
3579 outs() << format("0x%" PRIx64, q);
3580 outs() << " (struct protocol_t *)\n";
3581
3582 r = get_pointer_64(q + n_value, offset, left, S, info);
3583 if (r == nullptr)
3584 return;
3585 memset(&pc, '\0', sizeof(struct protocol64_t));
3586 if (left < sizeof(struct protocol64_t)) {
3587 memcpy(&pc, r, left);
3588 outs() << " (protocol_t entends past the end of the section)\n";
3589 } else
3590 memcpy(&pc, r, sizeof(struct protocol64_t));
3591 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3592 swapStruct(pc);
3593
3594 outs() << "\t\t\t isa " << format("0x%" PRIx64, pc.isa) << "\n";
3595
3596 outs() << "\t\t\t name ";
3597 sym_name = get_symbol_64(offset + offsetof(struct protocol64_t, name), S,
3598 info, n_value, pc.name);
3599 if (n_value != 0) {
3600 if (info->verbose && sym_name != nullptr)
3601 outs() << sym_name;
3602 else
3603 outs() << format("0x%" PRIx64, n_value);
3604 if (pc.name != 0)
3605 outs() << " + " << format("0x%" PRIx64, pc.name);
3606 } else
3607 outs() << format("0x%" PRIx64, pc.name);
3608 name = get_pointer_64(pc.name + n_value, xoffset, left, xS, info);
3609 if (name != nullptr)
3610 outs() << format(" %.*s", left, name);
3611 outs() << "\n";
3612
3613 outs() << "\t\t\tprotocols " << format("0x%" PRIx64, pc.protocols) << "\n";
3614
3615 outs() << "\t\t instanceMethods ";
3616 sym_name =
3617 get_symbol_64(offset + offsetof(struct protocol64_t, instanceMethods),
3618 S, info, n_value, pc.instanceMethods);
3619 if (n_value != 0) {
3620 if (info->verbose && sym_name != nullptr)
3621 outs() << sym_name;
3622 else
3623 outs() << format("0x%" PRIx64, n_value);
3624 if (pc.instanceMethods != 0)
3625 outs() << " + " << format("0x%" PRIx64, pc.instanceMethods);
3626 } else
3627 outs() << format("0x%" PRIx64, pc.instanceMethods);
3628 outs() << " (struct method_list_t *)\n";
3629 if (pc.instanceMethods + n_value != 0)
3630 print_method_list64_t(pc.instanceMethods + n_value, info, "\t");
3631
3632 outs() << "\t\t classMethods ";
3633 sym_name =
3634 get_symbol_64(offset + offsetof(struct protocol64_t, classMethods), S,
3635 info, n_value, pc.classMethods);
3636 if (n_value != 0) {
3637 if (info->verbose && sym_name != nullptr)
3638 outs() << sym_name;
3639 else
3640 outs() << format("0x%" PRIx64, n_value);
3641 if (pc.classMethods != 0)
3642 outs() << " + " << format("0x%" PRIx64, pc.classMethods);
3643 } else
3644 outs() << format("0x%" PRIx64, pc.classMethods);
3645 outs() << " (struct method_list_t *)\n";
3646 if (pc.classMethods + n_value != 0)
3647 print_method_list64_t(pc.classMethods + n_value, info, "\t");
3648
3649 outs() << "\t optionalInstanceMethods "
3650 << format("0x%" PRIx64, pc.optionalInstanceMethods) << "\n";
3651 outs() << "\t optionalClassMethods "
3652 << format("0x%" PRIx64, pc.optionalClassMethods) << "\n";
3653 outs() << "\t instanceProperties "
3654 << format("0x%" PRIx64, pc.instanceProperties) << "\n";
3655
3656 p += sizeof(uint64_t);
3657 offset += sizeof(uint64_t);
3658 }
3659}
3660
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00003661static void print_protocol_list32_t(uint32_t p, struct DisassembleInfo *info) {
3662 struct protocol_list32_t pl;
3663 uint32_t q;
3664 struct protocol32_t pc;
3665 const char *r;
3666 uint32_t offset, xoffset, left, i;
3667 SectionRef S, xS;
3668 const char *name;
3669
3670 r = get_pointer_32(p, offset, left, S, info);
3671 if (r == nullptr)
3672 return;
3673 memset(&pl, '\0', sizeof(struct protocol_list32_t));
3674 if (left < sizeof(struct protocol_list32_t)) {
3675 memcpy(&pl, r, left);
3676 outs() << " (protocol_list_t entends past the end of the section)\n";
3677 } else
3678 memcpy(&pl, r, sizeof(struct protocol_list32_t));
3679 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3680 swapStruct(pl);
3681 outs() << " count " << pl.count << "\n";
3682
3683 p += sizeof(struct protocol_list32_t);
3684 offset += sizeof(struct protocol_list32_t);
3685 for (i = 0; i < pl.count; i++) {
3686 r = get_pointer_32(p, offset, left, S, info);
3687 if (r == nullptr)
3688 return;
3689 q = 0;
3690 if (left < sizeof(uint32_t)) {
3691 memcpy(&q, r, left);
3692 outs() << " (protocol_t * entends past the end of the section)\n";
3693 } else
3694 memcpy(&q, r, sizeof(uint32_t));
3695 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3696 sys::swapByteOrder(q);
3697 outs() << "\t\t list[" << i << "] " << format("0x%" PRIx32, q)
3698 << " (struct protocol_t *)\n";
3699 r = get_pointer_32(q, offset, left, S, info);
3700 if (r == nullptr)
3701 return;
3702 memset(&pc, '\0', sizeof(struct protocol32_t));
3703 if (left < sizeof(struct protocol32_t)) {
3704 memcpy(&pc, r, left);
3705 outs() << " (protocol_t entends past the end of the section)\n";
3706 } else
3707 memcpy(&pc, r, sizeof(struct protocol32_t));
3708 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3709 swapStruct(pc);
3710 outs() << "\t\t\t isa " << format("0x%" PRIx32, pc.isa) << "\n";
3711 outs() << "\t\t\t name " << format("0x%" PRIx32, pc.name);
3712 name = get_pointer_32(pc.name, xoffset, left, xS, info);
3713 if (name != nullptr)
3714 outs() << format(" %.*s", left, name);
3715 outs() << "\n";
3716 outs() << "\t\t\tprotocols " << format("0x%" PRIx32, pc.protocols) << "\n";
3717 outs() << "\t\t instanceMethods "
3718 << format("0x%" PRIx32, pc.instanceMethods)
3719 << " (struct method_list_t *)\n";
3720 if (pc.instanceMethods != 0)
3721 print_method_list32_t(pc.instanceMethods, info, "\t");
3722 outs() << "\t\t classMethods " << format("0x%" PRIx32, pc.classMethods)
3723 << " (struct method_list_t *)\n";
3724 if (pc.classMethods != 0)
3725 print_method_list32_t(pc.classMethods, info, "\t");
3726 outs() << "\t optionalInstanceMethods "
3727 << format("0x%" PRIx32, pc.optionalInstanceMethods) << "\n";
3728 outs() << "\t optionalClassMethods "
3729 << format("0x%" PRIx32, pc.optionalClassMethods) << "\n";
3730 outs() << "\t instanceProperties "
3731 << format("0x%" PRIx32, pc.instanceProperties) << "\n";
3732 p += sizeof(uint32_t);
3733 offset += sizeof(uint32_t);
3734 }
3735}
3736
Kevin Enderby846c0002015-04-16 17:19:59 +00003737static void print_indent(uint32_t indent) {
3738 for (uint32_t i = 0; i < indent;) {
3739 if (indent - i >= 8) {
3740 outs() << "\t";
3741 i += 8;
3742 } else {
3743 for (uint32_t j = i; j < indent; j++)
3744 outs() << " ";
3745 return;
3746 }
3747 }
3748}
3749
3750static bool print_method_description_list(uint32_t p, uint32_t indent,
3751 struct DisassembleInfo *info) {
3752 uint32_t offset, left, xleft;
3753 SectionRef S;
3754 struct objc_method_description_list_t mdl;
3755 struct objc_method_description_t md;
3756 const char *r, *list, *name;
3757 int32_t i;
3758
3759 r = get_pointer_32(p, offset, left, S, info, true);
3760 if (r == nullptr)
3761 return true;
3762
3763 outs() << "\n";
3764 if (left > sizeof(struct objc_method_description_list_t)) {
3765 memcpy(&mdl, r, sizeof(struct objc_method_description_list_t));
3766 } else {
3767 print_indent(indent);
3768 outs() << " objc_method_description_list extends past end of the section\n";
3769 memset(&mdl, '\0', sizeof(struct objc_method_description_list_t));
3770 memcpy(&mdl, r, left);
3771 }
3772 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3773 swapStruct(mdl);
3774
3775 print_indent(indent);
3776 outs() << " count " << mdl.count << "\n";
3777
3778 list = r + sizeof(struct objc_method_description_list_t);
3779 for (i = 0; i < mdl.count; i++) {
3780 if ((i + 1) * sizeof(struct objc_method_description_t) > left) {
3781 print_indent(indent);
3782 outs() << " remaining list entries extend past the of the section\n";
3783 break;
3784 }
3785 print_indent(indent);
3786 outs() << " list[" << i << "]\n";
3787 memcpy(&md, list + i * sizeof(struct objc_method_description_t),
3788 sizeof(struct objc_method_description_t));
3789 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3790 swapStruct(md);
3791
3792 print_indent(indent);
3793 outs() << " name " << format("0x%08" PRIx32, md.name);
3794 if (info->verbose) {
3795 name = get_pointer_32(md.name, offset, xleft, S, info, true);
3796 if (name != nullptr)
3797 outs() << format(" %.*s", xleft, name);
3798 else
3799 outs() << " (not in an __OBJC section)";
3800 }
3801 outs() << "\n";
3802
3803 print_indent(indent);
3804 outs() << " types " << format("0x%08" PRIx32, md.types);
3805 if (info->verbose) {
3806 name = get_pointer_32(md.types, offset, xleft, S, info, true);
3807 if (name != nullptr)
3808 outs() << format(" %.*s", xleft, name);
3809 else
3810 outs() << " (not in an __OBJC section)";
3811 }
3812 outs() << "\n";
3813 }
3814 return false;
3815}
3816
3817static bool print_protocol_list(uint32_t p, uint32_t indent,
3818 struct DisassembleInfo *info);
3819
3820static bool print_protocol(uint32_t p, uint32_t indent,
3821 struct DisassembleInfo *info) {
3822 uint32_t offset, left;
3823 SectionRef S;
3824 struct objc_protocol_t protocol;
3825 const char *r, *name;
3826
3827 r = get_pointer_32(p, offset, left, S, info, true);
3828 if (r == nullptr)
3829 return true;
3830
3831 outs() << "\n";
3832 if (left >= sizeof(struct objc_protocol_t)) {
3833 memcpy(&protocol, r, sizeof(struct objc_protocol_t));
3834 } else {
3835 print_indent(indent);
3836 outs() << " Protocol extends past end of the section\n";
3837 memset(&protocol, '\0', sizeof(struct objc_protocol_t));
3838 memcpy(&protocol, r, left);
3839 }
3840 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3841 swapStruct(protocol);
3842
3843 print_indent(indent);
3844 outs() << " isa " << format("0x%08" PRIx32, protocol.isa)
3845 << "\n";
3846
3847 print_indent(indent);
3848 outs() << " protocol_name "
3849 << format("0x%08" PRIx32, protocol.protocol_name);
3850 if (info->verbose) {
3851 name = get_pointer_32(protocol.protocol_name, offset, left, S, info, true);
3852 if (name != nullptr)
3853 outs() << format(" %.*s", left, name);
3854 else
3855 outs() << " (not in an __OBJC section)";
3856 }
3857 outs() << "\n";
3858
3859 print_indent(indent);
3860 outs() << " protocol_list "
3861 << format("0x%08" PRIx32, protocol.protocol_list);
3862 if (print_protocol_list(protocol.protocol_list, indent + 4, info))
3863 outs() << " (not in an __OBJC section)\n";
3864
3865 print_indent(indent);
3866 outs() << " instance_methods "
3867 << format("0x%08" PRIx32, protocol.instance_methods);
3868 if (print_method_description_list(protocol.instance_methods, indent, info))
3869 outs() << " (not in an __OBJC section)\n";
3870
3871 print_indent(indent);
3872 outs() << " class_methods "
3873 << format("0x%08" PRIx32, protocol.class_methods);
3874 if (print_method_description_list(protocol.class_methods, indent, info))
3875 outs() << " (not in an __OBJC section)\n";
3876
3877 return false;
3878}
3879
3880static bool print_protocol_list(uint32_t p, uint32_t indent,
3881 struct DisassembleInfo *info) {
3882 uint32_t offset, left, l;
3883 SectionRef S;
3884 struct objc_protocol_list_t protocol_list;
3885 const char *r, *list;
3886 int32_t i;
3887
3888 r = get_pointer_32(p, offset, left, S, info, true);
3889 if (r == nullptr)
3890 return true;
3891
3892 outs() << "\n";
3893 if (left > sizeof(struct objc_protocol_list_t)) {
3894 memcpy(&protocol_list, r, sizeof(struct objc_protocol_list_t));
3895 } else {
3896 outs() << "\t\t objc_protocol_list_t extends past end of the section\n";
3897 memset(&protocol_list, '\0', sizeof(struct objc_protocol_list_t));
3898 memcpy(&protocol_list, r, left);
3899 }
3900 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3901 swapStruct(protocol_list);
3902
3903 print_indent(indent);
3904 outs() << " next " << format("0x%08" PRIx32, protocol_list.next)
3905 << "\n";
3906 print_indent(indent);
3907 outs() << " count " << protocol_list.count << "\n";
3908
3909 list = r + sizeof(struct objc_protocol_list_t);
3910 for (i = 0; i < protocol_list.count; i++) {
3911 if ((i + 1) * sizeof(uint32_t) > left) {
3912 outs() << "\t\t remaining list entries extend past the of the section\n";
3913 break;
3914 }
3915 memcpy(&l, list + i * sizeof(uint32_t), sizeof(uint32_t));
3916 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3917 sys::swapByteOrder(l);
3918
3919 print_indent(indent);
3920 outs() << " list[" << i << "] " << format("0x%08" PRIx32, l);
3921 if (print_protocol(l, indent, info))
3922 outs() << "(not in an __OBJC section)\n";
3923 }
3924 return false;
3925}
3926
Kevin Enderby0fc11822015-04-01 20:57:01 +00003927static void print_ivar_list64_t(uint64_t p, struct DisassembleInfo *info) {
3928 struct ivar_list64_t il;
3929 struct ivar64_t i;
3930 const char *r;
3931 uint32_t offset, xoffset, left, j;
3932 SectionRef S, xS;
3933 const char *name, *sym_name, *ivar_offset_p;
3934 uint64_t ivar_offset, n_value;
3935
3936 r = get_pointer_64(p, offset, left, S, info);
3937 if (r == nullptr)
3938 return;
3939 memset(&il, '\0', sizeof(struct ivar_list64_t));
3940 if (left < sizeof(struct ivar_list64_t)) {
3941 memcpy(&il, r, left);
3942 outs() << " (ivar_list_t entends past the end of the section)\n";
3943 } else
3944 memcpy(&il, r, sizeof(struct ivar_list64_t));
3945 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3946 swapStruct(il);
3947 outs() << " entsize " << il.entsize << "\n";
3948 outs() << " count " << il.count << "\n";
3949
3950 p += sizeof(struct ivar_list64_t);
3951 offset += sizeof(struct ivar_list64_t);
3952 for (j = 0; j < il.count; j++) {
3953 r = get_pointer_64(p, offset, left, S, info);
3954 if (r == nullptr)
3955 return;
3956 memset(&i, '\0', sizeof(struct ivar64_t));
3957 if (left < sizeof(struct ivar64_t)) {
3958 memcpy(&i, r, left);
3959 outs() << " (ivar_t entends past the end of the section)\n";
3960 } else
3961 memcpy(&i, r, sizeof(struct ivar64_t));
3962 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3963 swapStruct(i);
3964
3965 outs() << "\t\t\t offset ";
3966 sym_name = get_symbol_64(offset + offsetof(struct ivar64_t, offset), S,
3967 info, n_value, i.offset);
3968 if (n_value != 0) {
3969 if (info->verbose && sym_name != nullptr)
3970 outs() << sym_name;
3971 else
3972 outs() << format("0x%" PRIx64, n_value);
3973 if (i.offset != 0)
3974 outs() << " + " << format("0x%" PRIx64, i.offset);
3975 } else
3976 outs() << format("0x%" PRIx64, i.offset);
3977 ivar_offset_p = get_pointer_64(i.offset + n_value, xoffset, left, xS, info);
3978 if (ivar_offset_p != nullptr && left >= sizeof(*ivar_offset_p)) {
3979 memcpy(&ivar_offset, ivar_offset_p, sizeof(ivar_offset));
3980 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
3981 sys::swapByteOrder(ivar_offset);
3982 outs() << " " << ivar_offset << "\n";
3983 } else
3984 outs() << "\n";
3985
3986 outs() << "\t\t\t name ";
3987 sym_name = get_symbol_64(offset + offsetof(struct ivar64_t, name), S, info,
3988 n_value, i.name);
3989 if (n_value != 0) {
3990 if (info->verbose && sym_name != nullptr)
3991 outs() << sym_name;
3992 else
3993 outs() << format("0x%" PRIx64, n_value);
3994 if (i.name != 0)
3995 outs() << " + " << format("0x%" PRIx64, i.name);
3996 } else
3997 outs() << format("0x%" PRIx64, i.name);
3998 name = get_pointer_64(i.name + n_value, xoffset, left, xS, info);
3999 if (name != nullptr)
4000 outs() << format(" %.*s", left, name);
4001 outs() << "\n";
4002
4003 outs() << "\t\t\t type ";
4004 sym_name = get_symbol_64(offset + offsetof(struct ivar64_t, type), S, info,
4005 n_value, i.name);
4006 name = get_pointer_64(i.type + n_value, xoffset, left, xS, info);
4007 if (n_value != 0) {
4008 if (info->verbose && sym_name != nullptr)
4009 outs() << sym_name;
4010 else
4011 outs() << format("0x%" PRIx64, n_value);
4012 if (i.type != 0)
4013 outs() << " + " << format("0x%" PRIx64, i.type);
4014 } else
4015 outs() << format("0x%" PRIx64, i.type);
4016 if (name != nullptr)
4017 outs() << format(" %.*s", left, name);
4018 outs() << "\n";
4019
4020 outs() << "\t\t\talignment " << i.alignment << "\n";
4021 outs() << "\t\t\t size " << i.size << "\n";
4022
4023 p += sizeof(struct ivar64_t);
4024 offset += sizeof(struct ivar64_t);
4025 }
4026}
4027
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004028static void print_ivar_list32_t(uint32_t p, struct DisassembleInfo *info) {
4029 struct ivar_list32_t il;
4030 struct ivar32_t i;
4031 const char *r;
4032 uint32_t offset, xoffset, left, j;
4033 SectionRef S, xS;
4034 const char *name, *ivar_offset_p;
4035 uint32_t ivar_offset;
4036
4037 r = get_pointer_32(p, offset, left, S, info);
4038 if (r == nullptr)
4039 return;
4040 memset(&il, '\0', sizeof(struct ivar_list32_t));
4041 if (left < sizeof(struct ivar_list32_t)) {
4042 memcpy(&il, r, left);
4043 outs() << " (ivar_list_t entends past the end of the section)\n";
4044 } else
4045 memcpy(&il, r, sizeof(struct ivar_list32_t));
4046 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4047 swapStruct(il);
4048 outs() << " entsize " << il.entsize << "\n";
4049 outs() << " count " << il.count << "\n";
4050
4051 p += sizeof(struct ivar_list32_t);
4052 offset += sizeof(struct ivar_list32_t);
4053 for (j = 0; j < il.count; j++) {
4054 r = get_pointer_32(p, offset, left, S, info);
4055 if (r == nullptr)
4056 return;
4057 memset(&i, '\0', sizeof(struct ivar32_t));
4058 if (left < sizeof(struct ivar32_t)) {
4059 memcpy(&i, r, left);
4060 outs() << " (ivar_t entends past the end of the section)\n";
4061 } else
4062 memcpy(&i, r, sizeof(struct ivar32_t));
4063 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4064 swapStruct(i);
4065
4066 outs() << "\t\t\t offset " << format("0x%" PRIx32, i.offset);
4067 ivar_offset_p = get_pointer_32(i.offset, xoffset, left, xS, info);
4068 if (ivar_offset_p != nullptr && left >= sizeof(*ivar_offset_p)) {
4069 memcpy(&ivar_offset, ivar_offset_p, sizeof(ivar_offset));
4070 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4071 sys::swapByteOrder(ivar_offset);
4072 outs() << " " << ivar_offset << "\n";
4073 } else
4074 outs() << "\n";
4075
4076 outs() << "\t\t\t name " << format("0x%" PRIx32, i.name);
4077 name = get_pointer_32(i.name, xoffset, left, xS, info);
4078 if (name != nullptr)
4079 outs() << format(" %.*s", left, name);
4080 outs() << "\n";
4081
4082 outs() << "\t\t\t type " << format("0x%" PRIx32, i.type);
4083 name = get_pointer_32(i.type, xoffset, left, xS, info);
4084 if (name != nullptr)
4085 outs() << format(" %.*s", left, name);
4086 outs() << "\n";
4087
4088 outs() << "\t\t\talignment " << i.alignment << "\n";
4089 outs() << "\t\t\t size " << i.size << "\n";
4090
4091 p += sizeof(struct ivar32_t);
4092 offset += sizeof(struct ivar32_t);
4093 }
4094}
4095
Kevin Enderby0fc11822015-04-01 20:57:01 +00004096static void print_objc_property_list64(uint64_t p,
4097 struct DisassembleInfo *info) {
4098 struct objc_property_list64 opl;
4099 struct objc_property64 op;
4100 const char *r;
4101 uint32_t offset, xoffset, left, j;
4102 SectionRef S, xS;
4103 const char *name, *sym_name;
4104 uint64_t n_value;
4105
4106 r = get_pointer_64(p, offset, left, S, info);
4107 if (r == nullptr)
4108 return;
4109 memset(&opl, '\0', sizeof(struct objc_property_list64));
4110 if (left < sizeof(struct objc_property_list64)) {
4111 memcpy(&opl, r, left);
4112 outs() << " (objc_property_list entends past the end of the section)\n";
4113 } else
4114 memcpy(&opl, r, sizeof(struct objc_property_list64));
4115 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4116 swapStruct(opl);
4117 outs() << " entsize " << opl.entsize << "\n";
4118 outs() << " count " << opl.count << "\n";
4119
4120 p += sizeof(struct objc_property_list64);
4121 offset += sizeof(struct objc_property_list64);
4122 for (j = 0; j < opl.count; j++) {
4123 r = get_pointer_64(p, offset, left, S, info);
4124 if (r == nullptr)
4125 return;
4126 memset(&op, '\0', sizeof(struct objc_property64));
4127 if (left < sizeof(struct objc_property64)) {
4128 memcpy(&op, r, left);
4129 outs() << " (objc_property entends past the end of the section)\n";
4130 } else
4131 memcpy(&op, r, sizeof(struct objc_property64));
4132 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4133 swapStruct(op);
4134
4135 outs() << "\t\t\t name ";
4136 sym_name = get_symbol_64(offset + offsetof(struct objc_property64, name), S,
4137 info, n_value, op.name);
4138 if (n_value != 0) {
4139 if (info->verbose && sym_name != nullptr)
4140 outs() << sym_name;
4141 else
4142 outs() << format("0x%" PRIx64, n_value);
4143 if (op.name != 0)
4144 outs() << " + " << format("0x%" PRIx64, op.name);
4145 } else
4146 outs() << format("0x%" PRIx64, op.name);
4147 name = get_pointer_64(op.name + n_value, xoffset, left, xS, info);
4148 if (name != nullptr)
4149 outs() << format(" %.*s", left, name);
4150 outs() << "\n";
4151
4152 outs() << "\t\t\tattributes ";
4153 sym_name =
4154 get_symbol_64(offset + offsetof(struct objc_property64, attributes), S,
4155 info, n_value, op.attributes);
4156 if (n_value != 0) {
4157 if (info->verbose && sym_name != nullptr)
4158 outs() << sym_name;
4159 else
4160 outs() << format("0x%" PRIx64, n_value);
4161 if (op.attributes != 0)
4162 outs() << " + " << format("0x%" PRIx64, op.attributes);
4163 } else
4164 outs() << format("0x%" PRIx64, op.attributes);
4165 name = get_pointer_64(op.attributes + n_value, xoffset, left, xS, info);
4166 if (name != nullptr)
4167 outs() << format(" %.*s", left, name);
4168 outs() << "\n";
4169
4170 p += sizeof(struct objc_property64);
4171 offset += sizeof(struct objc_property64);
4172 }
4173}
4174
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004175static void print_objc_property_list32(uint32_t p,
4176 struct DisassembleInfo *info) {
4177 struct objc_property_list32 opl;
4178 struct objc_property32 op;
4179 const char *r;
4180 uint32_t offset, xoffset, left, j;
4181 SectionRef S, xS;
4182 const char *name;
4183
4184 r = get_pointer_32(p, offset, left, S, info);
4185 if (r == nullptr)
4186 return;
4187 memset(&opl, '\0', sizeof(struct objc_property_list32));
4188 if (left < sizeof(struct objc_property_list32)) {
4189 memcpy(&opl, r, left);
4190 outs() << " (objc_property_list entends past the end of the section)\n";
4191 } else
4192 memcpy(&opl, r, sizeof(struct objc_property_list32));
4193 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4194 swapStruct(opl);
4195 outs() << " entsize " << opl.entsize << "\n";
4196 outs() << " count " << opl.count << "\n";
4197
4198 p += sizeof(struct objc_property_list32);
4199 offset += sizeof(struct objc_property_list32);
4200 for (j = 0; j < opl.count; j++) {
4201 r = get_pointer_32(p, offset, left, S, info);
4202 if (r == nullptr)
4203 return;
4204 memset(&op, '\0', sizeof(struct objc_property32));
4205 if (left < sizeof(struct objc_property32)) {
4206 memcpy(&op, r, left);
4207 outs() << " (objc_property entends past the end of the section)\n";
4208 } else
4209 memcpy(&op, r, sizeof(struct objc_property32));
4210 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4211 swapStruct(op);
4212
4213 outs() << "\t\t\t name " << format("0x%" PRIx32, op.name);
4214 name = get_pointer_32(op.name, xoffset, left, xS, info);
4215 if (name != nullptr)
4216 outs() << format(" %.*s", left, name);
4217 outs() << "\n";
4218
4219 outs() << "\t\t\tattributes " << format("0x%" PRIx32, op.attributes);
4220 name = get_pointer_32(op.attributes, xoffset, left, xS, info);
4221 if (name != nullptr)
4222 outs() << format(" %.*s", left, name);
4223 outs() << "\n";
4224
4225 p += sizeof(struct objc_property32);
4226 offset += sizeof(struct objc_property32);
4227 }
4228}
4229
Richard Smith81ff44d2015-10-09 22:09:56 +00004230static bool print_class_ro64_t(uint64_t p, struct DisassembleInfo *info,
Kevin Enderby0fc11822015-04-01 20:57:01 +00004231 bool &is_meta_class) {
4232 struct class_ro64_t cro;
4233 const char *r;
4234 uint32_t offset, xoffset, left;
4235 SectionRef S, xS;
4236 const char *name, *sym_name;
4237 uint64_t n_value;
4238
4239 r = get_pointer_64(p, offset, left, S, info);
4240 if (r == nullptr || left < sizeof(struct class_ro64_t))
Richard Smith81ff44d2015-10-09 22:09:56 +00004241 return false;
Kevin Enderby0fc11822015-04-01 20:57:01 +00004242 memset(&cro, '\0', sizeof(struct class_ro64_t));
4243 if (left < sizeof(struct class_ro64_t)) {
4244 memcpy(&cro, r, left);
4245 outs() << " (class_ro_t entends past the end of the section)\n";
4246 } else
4247 memcpy(&cro, r, sizeof(struct class_ro64_t));
4248 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4249 swapStruct(cro);
4250 outs() << " flags " << format("0x%" PRIx32, cro.flags);
4251 if (cro.flags & RO_META)
4252 outs() << " RO_META";
4253 if (cro.flags & RO_ROOT)
4254 outs() << " RO_ROOT";
4255 if (cro.flags & RO_HAS_CXX_STRUCTORS)
4256 outs() << " RO_HAS_CXX_STRUCTORS";
4257 outs() << "\n";
4258 outs() << " instanceStart " << cro.instanceStart << "\n";
4259 outs() << " instanceSize " << cro.instanceSize << "\n";
4260 outs() << " reserved " << format("0x%" PRIx32, cro.reserved)
4261 << "\n";
4262 outs() << " ivarLayout " << format("0x%" PRIx64, cro.ivarLayout)
4263 << "\n";
4264 print_layout_map64(cro.ivarLayout, info);
4265
4266 outs() << " name ";
4267 sym_name = get_symbol_64(offset + offsetof(struct class_ro64_t, name), S,
4268 info, n_value, cro.name);
4269 if (n_value != 0) {
4270 if (info->verbose && sym_name != nullptr)
4271 outs() << sym_name;
4272 else
4273 outs() << format("0x%" PRIx64, n_value);
4274 if (cro.name != 0)
4275 outs() << " + " << format("0x%" PRIx64, cro.name);
4276 } else
4277 outs() << format("0x%" PRIx64, cro.name);
4278 name = get_pointer_64(cro.name + n_value, xoffset, left, xS, info);
4279 if (name != nullptr)
4280 outs() << format(" %.*s", left, name);
4281 outs() << "\n";
4282
4283 outs() << " baseMethods ";
4284 sym_name = get_symbol_64(offset + offsetof(struct class_ro64_t, baseMethods),
4285 S, info, n_value, cro.baseMethods);
4286 if (n_value != 0) {
4287 if (info->verbose && sym_name != nullptr)
4288 outs() << sym_name;
4289 else
4290 outs() << format("0x%" PRIx64, n_value);
4291 if (cro.baseMethods != 0)
4292 outs() << " + " << format("0x%" PRIx64, cro.baseMethods);
4293 } else
4294 outs() << format("0x%" PRIx64, cro.baseMethods);
4295 outs() << " (struct method_list_t *)\n";
4296 if (cro.baseMethods + n_value != 0)
4297 print_method_list64_t(cro.baseMethods + n_value, info, "");
4298
4299 outs() << " baseProtocols ";
4300 sym_name =
4301 get_symbol_64(offset + offsetof(struct class_ro64_t, baseProtocols), S,
4302 info, n_value, cro.baseProtocols);
4303 if (n_value != 0) {
4304 if (info->verbose && sym_name != nullptr)
4305 outs() << sym_name;
4306 else
4307 outs() << format("0x%" PRIx64, n_value);
4308 if (cro.baseProtocols != 0)
4309 outs() << " + " << format("0x%" PRIx64, cro.baseProtocols);
4310 } else
4311 outs() << format("0x%" PRIx64, cro.baseProtocols);
4312 outs() << "\n";
4313 if (cro.baseProtocols + n_value != 0)
4314 print_protocol_list64_t(cro.baseProtocols + n_value, info);
4315
4316 outs() << " ivars ";
4317 sym_name = get_symbol_64(offset + offsetof(struct class_ro64_t, ivars), S,
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004318 info, n_value, cro.ivars);
Kevin Enderby0fc11822015-04-01 20:57:01 +00004319 if (n_value != 0) {
4320 if (info->verbose && sym_name != nullptr)
4321 outs() << sym_name;
4322 else
4323 outs() << format("0x%" PRIx64, n_value);
4324 if (cro.ivars != 0)
4325 outs() << " + " << format("0x%" PRIx64, cro.ivars);
4326 } else
4327 outs() << format("0x%" PRIx64, cro.ivars);
4328 outs() << "\n";
4329 if (cro.ivars + n_value != 0)
4330 print_ivar_list64_t(cro.ivars + n_value, info);
4331
4332 outs() << " weakIvarLayout ";
4333 sym_name =
4334 get_symbol_64(offset + offsetof(struct class_ro64_t, weakIvarLayout), S,
4335 info, n_value, cro.weakIvarLayout);
4336 if (n_value != 0) {
4337 if (info->verbose && sym_name != nullptr)
4338 outs() << sym_name;
4339 else
4340 outs() << format("0x%" PRIx64, n_value);
4341 if (cro.weakIvarLayout != 0)
4342 outs() << " + " << format("0x%" PRIx64, cro.weakIvarLayout);
4343 } else
4344 outs() << format("0x%" PRIx64, cro.weakIvarLayout);
4345 outs() << "\n";
4346 print_layout_map64(cro.weakIvarLayout + n_value, info);
4347
4348 outs() << " baseProperties ";
4349 sym_name =
4350 get_symbol_64(offset + offsetof(struct class_ro64_t, baseProperties), S,
4351 info, n_value, cro.baseProperties);
4352 if (n_value != 0) {
4353 if (info->verbose && sym_name != nullptr)
4354 outs() << sym_name;
4355 else
4356 outs() << format("0x%" PRIx64, n_value);
4357 if (cro.baseProperties != 0)
4358 outs() << " + " << format("0x%" PRIx64, cro.baseProperties);
4359 } else
4360 outs() << format("0x%" PRIx64, cro.baseProperties);
4361 outs() << "\n";
4362 if (cro.baseProperties + n_value != 0)
4363 print_objc_property_list64(cro.baseProperties + n_value, info);
4364
Rafael Espindolab9091322015-10-24 23:19:10 +00004365 is_meta_class = (cro.flags & RO_META) != 0;
Richard Smith81ff44d2015-10-09 22:09:56 +00004366 return true;
Kevin Enderby0fc11822015-04-01 20:57:01 +00004367}
4368
Richard Smith81ff44d2015-10-09 22:09:56 +00004369static bool print_class_ro32_t(uint32_t p, struct DisassembleInfo *info,
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004370 bool &is_meta_class) {
4371 struct class_ro32_t cro;
4372 const char *r;
4373 uint32_t offset, xoffset, left;
4374 SectionRef S, xS;
4375 const char *name;
4376
4377 r = get_pointer_32(p, offset, left, S, info);
4378 if (r == nullptr)
Richard Smith81ff44d2015-10-09 22:09:56 +00004379 return false;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004380 memset(&cro, '\0', sizeof(struct class_ro32_t));
4381 if (left < sizeof(struct class_ro32_t)) {
4382 memcpy(&cro, r, left);
4383 outs() << " (class_ro_t entends past the end of the section)\n";
4384 } else
4385 memcpy(&cro, r, sizeof(struct class_ro32_t));
4386 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4387 swapStruct(cro);
4388 outs() << " flags " << format("0x%" PRIx32, cro.flags);
4389 if (cro.flags & RO_META)
4390 outs() << " RO_META";
4391 if (cro.flags & RO_ROOT)
4392 outs() << " RO_ROOT";
4393 if (cro.flags & RO_HAS_CXX_STRUCTORS)
4394 outs() << " RO_HAS_CXX_STRUCTORS";
4395 outs() << "\n";
4396 outs() << " instanceStart " << cro.instanceStart << "\n";
4397 outs() << " instanceSize " << cro.instanceSize << "\n";
4398 outs() << " ivarLayout " << format("0x%" PRIx32, cro.ivarLayout)
4399 << "\n";
4400 print_layout_map32(cro.ivarLayout, info);
4401
4402 outs() << " name " << format("0x%" PRIx32, cro.name);
4403 name = get_pointer_32(cro.name, xoffset, left, xS, info);
4404 if (name != nullptr)
4405 outs() << format(" %.*s", left, name);
4406 outs() << "\n";
4407
4408 outs() << " baseMethods "
4409 << format("0x%" PRIx32, cro.baseMethods)
4410 << " (struct method_list_t *)\n";
4411 if (cro.baseMethods != 0)
4412 print_method_list32_t(cro.baseMethods, info, "");
4413
4414 outs() << " baseProtocols "
4415 << format("0x%" PRIx32, cro.baseProtocols) << "\n";
4416 if (cro.baseProtocols != 0)
4417 print_protocol_list32_t(cro.baseProtocols, info);
4418 outs() << " ivars " << format("0x%" PRIx32, cro.ivars)
4419 << "\n";
4420 if (cro.ivars != 0)
4421 print_ivar_list32_t(cro.ivars, info);
4422 outs() << " weakIvarLayout "
4423 << format("0x%" PRIx32, cro.weakIvarLayout) << "\n";
4424 print_layout_map32(cro.weakIvarLayout, info);
4425 outs() << " baseProperties "
4426 << format("0x%" PRIx32, cro.baseProperties) << "\n";
4427 if (cro.baseProperties != 0)
4428 print_objc_property_list32(cro.baseProperties, info);
Rafael Espindolab9091322015-10-24 23:19:10 +00004429 is_meta_class = (cro.flags & RO_META) != 0;
Richard Smith81ff44d2015-10-09 22:09:56 +00004430 return true;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004431}
4432
Kevin Enderby0fc11822015-04-01 20:57:01 +00004433static void print_class64_t(uint64_t p, struct DisassembleInfo *info) {
4434 struct class64_t c;
4435 const char *r;
4436 uint32_t offset, left;
4437 SectionRef S;
4438 const char *name;
4439 uint64_t isa_n_value, n_value;
4440
4441 r = get_pointer_64(p, offset, left, S, info);
4442 if (r == nullptr || left < sizeof(struct class64_t))
4443 return;
4444 memset(&c, '\0', sizeof(struct class64_t));
4445 if (left < sizeof(struct class64_t)) {
4446 memcpy(&c, r, left);
4447 outs() << " (class_t entends past the end of the section)\n";
4448 } else
4449 memcpy(&c, r, sizeof(struct class64_t));
4450 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4451 swapStruct(c);
4452
4453 outs() << " isa " << format("0x%" PRIx64, c.isa);
4454 name = get_symbol_64(offset + offsetof(struct class64_t, isa), S, info,
4455 isa_n_value, c.isa);
4456 if (name != nullptr)
4457 outs() << " " << name;
4458 outs() << "\n";
4459
4460 outs() << " superclass " << format("0x%" PRIx64, c.superclass);
4461 name = get_symbol_64(offset + offsetof(struct class64_t, superclass), S, info,
4462 n_value, c.superclass);
4463 if (name != nullptr)
4464 outs() << " " << name;
4465 outs() << "\n";
4466
4467 outs() << " cache " << format("0x%" PRIx64, c.cache);
4468 name = get_symbol_64(offset + offsetof(struct class64_t, cache), S, info,
4469 n_value, c.cache);
4470 if (name != nullptr)
4471 outs() << " " << name;
4472 outs() << "\n";
4473
4474 outs() << " vtable " << format("0x%" PRIx64, c.vtable);
4475 name = get_symbol_64(offset + offsetof(struct class64_t, vtable), S, info,
4476 n_value, c.vtable);
4477 if (name != nullptr)
4478 outs() << " " << name;
4479 outs() << "\n";
4480
4481 name = get_symbol_64(offset + offsetof(struct class64_t, data), S, info,
4482 n_value, c.data);
4483 outs() << " data ";
4484 if (n_value != 0) {
4485 if (info->verbose && name != nullptr)
4486 outs() << name;
4487 else
4488 outs() << format("0x%" PRIx64, n_value);
4489 if (c.data != 0)
4490 outs() << " + " << format("0x%" PRIx64, c.data);
4491 } else
4492 outs() << format("0x%" PRIx64, c.data);
4493 outs() << " (struct class_ro_t *)";
4494
4495 // This is a Swift class if some of the low bits of the pointer are set.
4496 if ((c.data + n_value) & 0x7)
4497 outs() << " Swift class";
4498 outs() << "\n";
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004499 bool is_meta_class;
Richard Smith81ff44d2015-10-09 22:09:56 +00004500 if (!print_class_ro64_t((c.data + n_value) & ~0x7, info, is_meta_class))
4501 return;
Kevin Enderby0fc11822015-04-01 20:57:01 +00004502
Kevin Enderbyaac75382015-10-08 16:56:35 +00004503 if (!is_meta_class &&
4504 c.isa + isa_n_value != p &&
4505 c.isa + isa_n_value != 0 &&
4506 info->depth < 100) {
4507 info->depth++;
4508 outs() << "Meta Class\n";
4509 print_class64_t(c.isa + isa_n_value, info);
Kevin Enderby0fc11822015-04-01 20:57:01 +00004510 }
4511}
4512
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004513static void print_class32_t(uint32_t p, struct DisassembleInfo *info) {
4514 struct class32_t c;
4515 const char *r;
4516 uint32_t offset, left;
4517 SectionRef S;
4518 const char *name;
4519
4520 r = get_pointer_32(p, offset, left, S, info);
4521 if (r == nullptr)
4522 return;
4523 memset(&c, '\0', sizeof(struct class32_t));
4524 if (left < sizeof(struct class32_t)) {
4525 memcpy(&c, r, left);
4526 outs() << " (class_t entends past the end of the section)\n";
4527 } else
4528 memcpy(&c, r, sizeof(struct class32_t));
4529 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4530 swapStruct(c);
4531
4532 outs() << " isa " << format("0x%" PRIx32, c.isa);
4533 name =
4534 get_symbol_32(offset + offsetof(struct class32_t, isa), S, info, c.isa);
4535 if (name != nullptr)
4536 outs() << " " << name;
4537 outs() << "\n";
4538
4539 outs() << " superclass " << format("0x%" PRIx32, c.superclass);
4540 name = get_symbol_32(offset + offsetof(struct class32_t, superclass), S, info,
4541 c.superclass);
4542 if (name != nullptr)
4543 outs() << " " << name;
4544 outs() << "\n";
4545
4546 outs() << " cache " << format("0x%" PRIx32, c.cache);
4547 name = get_symbol_32(offset + offsetof(struct class32_t, cache), S, info,
4548 c.cache);
4549 if (name != nullptr)
4550 outs() << " " << name;
4551 outs() << "\n";
4552
4553 outs() << " vtable " << format("0x%" PRIx32, c.vtable);
4554 name = get_symbol_32(offset + offsetof(struct class32_t, vtable), S, info,
4555 c.vtable);
4556 if (name != nullptr)
4557 outs() << " " << name;
4558 outs() << "\n";
4559
4560 name =
4561 get_symbol_32(offset + offsetof(struct class32_t, data), S, info, c.data);
4562 outs() << " data " << format("0x%" PRIx32, c.data)
4563 << " (struct class_ro_t *)";
4564
4565 // This is a Swift class if some of the low bits of the pointer are set.
4566 if (c.data & 0x3)
4567 outs() << " Swift class";
4568 outs() << "\n";
4569 bool is_meta_class;
Richard Smith81ff44d2015-10-09 22:09:56 +00004570 if (!print_class_ro32_t(c.data & ~0x3, info, is_meta_class))
4571 return;
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004572
Hans Wennborgcc9deb42015-09-29 18:02:48 +00004573 if (!is_meta_class) {
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004574 outs() << "Meta Class\n";
4575 print_class32_t(c.isa, info);
4576 }
4577}
4578
Kevin Enderby846c0002015-04-16 17:19:59 +00004579static void print_objc_class_t(struct objc_class_t *objc_class,
4580 struct DisassembleInfo *info) {
4581 uint32_t offset, left, xleft;
4582 const char *name, *p, *ivar_list;
4583 SectionRef S;
4584 int32_t i;
4585 struct objc_ivar_list_t objc_ivar_list;
4586 struct objc_ivar_t ivar;
4587
4588 outs() << "\t\t isa " << format("0x%08" PRIx32, objc_class->isa);
4589 if (info->verbose && CLS_GETINFO(objc_class, CLS_META)) {
4590 name = get_pointer_32(objc_class->isa, offset, left, S, info, true);
4591 if (name != nullptr)
4592 outs() << format(" %.*s", left, name);
4593 else
4594 outs() << " (not in an __OBJC section)";
4595 }
4596 outs() << "\n";
4597
4598 outs() << "\t super_class "
4599 << format("0x%08" PRIx32, objc_class->super_class);
4600 if (info->verbose) {
4601 name = get_pointer_32(objc_class->super_class, offset, left, S, info, true);
4602 if (name != nullptr)
4603 outs() << format(" %.*s", left, name);
4604 else
4605 outs() << " (not in an __OBJC section)";
4606 }
4607 outs() << "\n";
4608
4609 outs() << "\t\t name " << format("0x%08" PRIx32, objc_class->name);
4610 if (info->verbose) {
4611 name = get_pointer_32(objc_class->name, offset, left, S, info, true);
4612 if (name != nullptr)
4613 outs() << format(" %.*s", left, name);
4614 else
4615 outs() << " (not in an __OBJC section)";
4616 }
4617 outs() << "\n";
4618
4619 outs() << "\t\t version " << format("0x%08" PRIx32, objc_class->version)
4620 << "\n";
4621
4622 outs() << "\t\t info " << format("0x%08" PRIx32, objc_class->info);
4623 if (info->verbose) {
4624 if (CLS_GETINFO(objc_class, CLS_CLASS))
4625 outs() << " CLS_CLASS";
4626 else if (CLS_GETINFO(objc_class, CLS_META))
4627 outs() << " CLS_META";
4628 }
4629 outs() << "\n";
4630
4631 outs() << "\t instance_size "
4632 << format("0x%08" PRIx32, objc_class->instance_size) << "\n";
4633
4634 p = get_pointer_32(objc_class->ivars, offset, left, S, info, true);
4635 outs() << "\t\t ivars " << format("0x%08" PRIx32, objc_class->ivars);
4636 if (p != nullptr) {
4637 if (left > sizeof(struct objc_ivar_list_t)) {
4638 outs() << "\n";
4639 memcpy(&objc_ivar_list, p, sizeof(struct objc_ivar_list_t));
4640 } else {
4641 outs() << " (entends past the end of the section)\n";
4642 memset(&objc_ivar_list, '\0', sizeof(struct objc_ivar_list_t));
4643 memcpy(&objc_ivar_list, p, left);
4644 }
4645 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4646 swapStruct(objc_ivar_list);
4647 outs() << "\t\t ivar_count " << objc_ivar_list.ivar_count << "\n";
4648 ivar_list = p + sizeof(struct objc_ivar_list_t);
4649 for (i = 0; i < objc_ivar_list.ivar_count; i++) {
4650 if ((i + 1) * sizeof(struct objc_ivar_t) > left) {
4651 outs() << "\t\t remaining ivar's extend past the of the section\n";
4652 break;
4653 }
4654 memcpy(&ivar, ivar_list + i * sizeof(struct objc_ivar_t),
4655 sizeof(struct objc_ivar_t));
4656 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4657 swapStruct(ivar);
4658
4659 outs() << "\t\t\tivar_name " << format("0x%08" PRIx32, ivar.ivar_name);
4660 if (info->verbose) {
4661 name = get_pointer_32(ivar.ivar_name, offset, xleft, S, info, true);
4662 if (name != nullptr)
4663 outs() << format(" %.*s", xleft, name);
4664 else
4665 outs() << " (not in an __OBJC section)";
4666 }
4667 outs() << "\n";
4668
4669 outs() << "\t\t\tivar_type " << format("0x%08" PRIx32, ivar.ivar_type);
4670 if (info->verbose) {
4671 name = get_pointer_32(ivar.ivar_type, offset, xleft, S, info, true);
4672 if (name != nullptr)
4673 outs() << format(" %.*s", xleft, name);
4674 else
4675 outs() << " (not in an __OBJC section)";
4676 }
4677 outs() << "\n";
4678
4679 outs() << "\t\t ivar_offset "
4680 << format("0x%08" PRIx32, ivar.ivar_offset) << "\n";
4681 }
4682 } else {
4683 outs() << " (not in an __OBJC section)\n";
4684 }
4685
4686 outs() << "\t\t methods " << format("0x%08" PRIx32, objc_class->methodLists);
4687 if (print_method_list(objc_class->methodLists, info))
4688 outs() << " (not in an __OBJC section)\n";
4689
4690 outs() << "\t\t cache " << format("0x%08" PRIx32, objc_class->cache)
4691 << "\n";
4692
4693 outs() << "\t\tprotocols " << format("0x%08" PRIx32, objc_class->protocols);
4694 if (print_protocol_list(objc_class->protocols, 16, info))
4695 outs() << " (not in an __OBJC section)\n";
4696}
4697
4698static void print_objc_objc_category_t(struct objc_category_t *objc_category,
4699 struct DisassembleInfo *info) {
4700 uint32_t offset, left;
4701 const char *name;
4702 SectionRef S;
4703
4704 outs() << "\t category name "
4705 << format("0x%08" PRIx32, objc_category->category_name);
4706 if (info->verbose) {
4707 name = get_pointer_32(objc_category->category_name, offset, left, S, info,
4708 true);
4709 if (name != nullptr)
4710 outs() << format(" %.*s", left, name);
4711 else
4712 outs() << " (not in an __OBJC section)";
4713 }
4714 outs() << "\n";
4715
4716 outs() << "\t\t class name "
4717 << format("0x%08" PRIx32, objc_category->class_name);
4718 if (info->verbose) {
4719 name =
4720 get_pointer_32(objc_category->class_name, offset, left, S, info, true);
4721 if (name != nullptr)
4722 outs() << format(" %.*s", left, name);
4723 else
4724 outs() << " (not in an __OBJC section)";
4725 }
4726 outs() << "\n";
4727
4728 outs() << "\t instance methods "
4729 << format("0x%08" PRIx32, objc_category->instance_methods);
4730 if (print_method_list(objc_category->instance_methods, info))
4731 outs() << " (not in an __OBJC section)\n";
4732
4733 outs() << "\t class methods "
4734 << format("0x%08" PRIx32, objc_category->class_methods);
4735 if (print_method_list(objc_category->class_methods, info))
4736 outs() << " (not in an __OBJC section)\n";
4737}
4738
Kevin Enderby0fc11822015-04-01 20:57:01 +00004739static void print_category64_t(uint64_t p, struct DisassembleInfo *info) {
4740 struct category64_t c;
4741 const char *r;
4742 uint32_t offset, xoffset, left;
4743 SectionRef S, xS;
4744 const char *name, *sym_name;
4745 uint64_t n_value;
4746
4747 r = get_pointer_64(p, offset, left, S, info);
4748 if (r == nullptr)
4749 return;
4750 memset(&c, '\0', sizeof(struct category64_t));
4751 if (left < sizeof(struct category64_t)) {
4752 memcpy(&c, r, left);
4753 outs() << " (category_t entends past the end of the section)\n";
4754 } else
4755 memcpy(&c, r, sizeof(struct category64_t));
4756 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4757 swapStruct(c);
4758
4759 outs() << " name ";
4760 sym_name = get_symbol_64(offset + offsetof(struct category64_t, name), S,
4761 info, n_value, c.name);
4762 if (n_value != 0) {
4763 if (info->verbose && sym_name != nullptr)
4764 outs() << sym_name;
4765 else
4766 outs() << format("0x%" PRIx64, n_value);
4767 if (c.name != 0)
4768 outs() << " + " << format("0x%" PRIx64, c.name);
4769 } else
4770 outs() << format("0x%" PRIx64, c.name);
4771 name = get_pointer_64(c.name + n_value, xoffset, left, xS, info);
4772 if (name != nullptr)
4773 outs() << format(" %.*s", left, name);
4774 outs() << "\n";
4775
4776 outs() << " cls ";
4777 sym_name = get_symbol_64(offset + offsetof(struct category64_t, cls), S, info,
4778 n_value, c.cls);
4779 if (n_value != 0) {
4780 if (info->verbose && sym_name != nullptr)
4781 outs() << sym_name;
4782 else
4783 outs() << format("0x%" PRIx64, n_value);
4784 if (c.cls != 0)
4785 outs() << " + " << format("0x%" PRIx64, c.cls);
4786 } else
4787 outs() << format("0x%" PRIx64, c.cls);
4788 outs() << "\n";
4789 if (c.cls + n_value != 0)
4790 print_class64_t(c.cls + n_value, info);
4791
4792 outs() << " instanceMethods ";
4793 sym_name =
4794 get_symbol_64(offset + offsetof(struct category64_t, instanceMethods), S,
4795 info, n_value, c.instanceMethods);
4796 if (n_value != 0) {
4797 if (info->verbose && sym_name != nullptr)
4798 outs() << sym_name;
4799 else
4800 outs() << format("0x%" PRIx64, n_value);
4801 if (c.instanceMethods != 0)
4802 outs() << " + " << format("0x%" PRIx64, c.instanceMethods);
4803 } else
4804 outs() << format("0x%" PRIx64, c.instanceMethods);
4805 outs() << "\n";
4806 if (c.instanceMethods + n_value != 0)
4807 print_method_list64_t(c.instanceMethods + n_value, info, "");
4808
4809 outs() << " classMethods ";
4810 sym_name = get_symbol_64(offset + offsetof(struct category64_t, classMethods),
4811 S, info, n_value, c.classMethods);
4812 if (n_value != 0) {
4813 if (info->verbose && sym_name != nullptr)
4814 outs() << sym_name;
4815 else
4816 outs() << format("0x%" PRIx64, n_value);
4817 if (c.classMethods != 0)
4818 outs() << " + " << format("0x%" PRIx64, c.classMethods);
4819 } else
4820 outs() << format("0x%" PRIx64, c.classMethods);
4821 outs() << "\n";
4822 if (c.classMethods + n_value != 0)
4823 print_method_list64_t(c.classMethods + n_value, info, "");
4824
4825 outs() << " protocols ";
4826 sym_name = get_symbol_64(offset + offsetof(struct category64_t, protocols), S,
4827 info, n_value, c.protocols);
4828 if (n_value != 0) {
4829 if (info->verbose && sym_name != nullptr)
4830 outs() << sym_name;
4831 else
4832 outs() << format("0x%" PRIx64, n_value);
4833 if (c.protocols != 0)
4834 outs() << " + " << format("0x%" PRIx64, c.protocols);
4835 } else
4836 outs() << format("0x%" PRIx64, c.protocols);
4837 outs() << "\n";
4838 if (c.protocols + n_value != 0)
4839 print_protocol_list64_t(c.protocols + n_value, info);
4840
4841 outs() << "instanceProperties ";
4842 sym_name =
4843 get_symbol_64(offset + offsetof(struct category64_t, instanceProperties),
4844 S, info, n_value, c.instanceProperties);
4845 if (n_value != 0) {
4846 if (info->verbose && sym_name != nullptr)
4847 outs() << sym_name;
4848 else
4849 outs() << format("0x%" PRIx64, n_value);
4850 if (c.instanceProperties != 0)
4851 outs() << " + " << format("0x%" PRIx64, c.instanceProperties);
4852 } else
4853 outs() << format("0x%" PRIx64, c.instanceProperties);
4854 outs() << "\n";
4855 if (c.instanceProperties + n_value != 0)
4856 print_objc_property_list64(c.instanceProperties + n_value, info);
4857}
4858
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004859static void print_category32_t(uint32_t p, struct DisassembleInfo *info) {
4860 struct category32_t c;
4861 const char *r;
4862 uint32_t offset, left;
4863 SectionRef S, xS;
4864 const char *name;
4865
4866 r = get_pointer_32(p, offset, left, S, info);
4867 if (r == nullptr)
4868 return;
4869 memset(&c, '\0', sizeof(struct category32_t));
4870 if (left < sizeof(struct category32_t)) {
4871 memcpy(&c, r, left);
4872 outs() << " (category_t entends past the end of the section)\n";
4873 } else
4874 memcpy(&c, r, sizeof(struct category32_t));
4875 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4876 swapStruct(c);
4877
4878 outs() << " name " << format("0x%" PRIx32, c.name);
4879 name = get_symbol_32(offset + offsetof(struct category32_t, name), S, info,
4880 c.name);
Hans Wennborgcc9deb42015-09-29 18:02:48 +00004881 if (name)
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004882 outs() << " " << name;
4883 outs() << "\n";
4884
4885 outs() << " cls " << format("0x%" PRIx32, c.cls) << "\n";
4886 if (c.cls != 0)
4887 print_class32_t(c.cls, info);
4888 outs() << " instanceMethods " << format("0x%" PRIx32, c.instanceMethods)
4889 << "\n";
4890 if (c.instanceMethods != 0)
4891 print_method_list32_t(c.instanceMethods, info, "");
4892 outs() << " classMethods " << format("0x%" PRIx32, c.classMethods)
4893 << "\n";
4894 if (c.classMethods != 0)
4895 print_method_list32_t(c.classMethods, info, "");
4896 outs() << " protocols " << format("0x%" PRIx32, c.protocols) << "\n";
4897 if (c.protocols != 0)
4898 print_protocol_list32_t(c.protocols, info);
4899 outs() << "instanceProperties " << format("0x%" PRIx32, c.instanceProperties)
4900 << "\n";
4901 if (c.instanceProperties != 0)
4902 print_objc_property_list32(c.instanceProperties, info);
4903}
4904
Kevin Enderby0fc11822015-04-01 20:57:01 +00004905static void print_message_refs64(SectionRef S, struct DisassembleInfo *info) {
4906 uint32_t i, left, offset, xoffset;
4907 uint64_t p, n_value;
4908 struct message_ref64 mr;
4909 const char *name, *sym_name;
4910 const char *r;
4911 SectionRef xS;
4912
4913 if (S == SectionRef())
4914 return;
4915
4916 StringRef SectName;
4917 S.getName(SectName);
4918 DataRefImpl Ref = S.getRawDataRefImpl();
4919 StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
4920 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
4921 offset = 0;
4922 for (i = 0; i < S.getSize(); i += sizeof(struct message_ref64)) {
4923 p = S.getAddress() + i;
4924 r = get_pointer_64(p, offset, left, S, info);
4925 if (r == nullptr)
4926 return;
4927 memset(&mr, '\0', sizeof(struct message_ref64));
4928 if (left < sizeof(struct message_ref64)) {
4929 memcpy(&mr, r, left);
4930 outs() << " (message_ref entends past the end of the section)\n";
4931 } else
4932 memcpy(&mr, r, sizeof(struct message_ref64));
4933 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4934 swapStruct(mr);
4935
4936 outs() << " imp ";
4937 name = get_symbol_64(offset + offsetof(struct message_ref64, imp), S, info,
4938 n_value, mr.imp);
4939 if (n_value != 0) {
4940 outs() << format("0x%" PRIx64, n_value) << " ";
4941 if (mr.imp != 0)
4942 outs() << "+ " << format("0x%" PRIx64, mr.imp) << " ";
4943 } else
4944 outs() << format("0x%" PRIx64, mr.imp) << " ";
4945 if (name != nullptr)
4946 outs() << " " << name;
4947 outs() << "\n";
4948
4949 outs() << " sel ";
4950 sym_name = get_symbol_64(offset + offsetof(struct message_ref64, sel), S,
4951 info, n_value, mr.sel);
4952 if (n_value != 0) {
4953 if (info->verbose && sym_name != nullptr)
4954 outs() << sym_name;
4955 else
4956 outs() << format("0x%" PRIx64, n_value);
4957 if (mr.sel != 0)
4958 outs() << " + " << format("0x%" PRIx64, mr.sel);
4959 } else
4960 outs() << format("0x%" PRIx64, mr.sel);
4961 name = get_pointer_64(mr.sel + n_value, xoffset, left, xS, info);
4962 if (name != nullptr)
4963 outs() << format(" %.*s", left, name);
4964 outs() << "\n";
4965
4966 offset += sizeof(struct message_ref64);
4967 }
4968}
4969
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00004970static void print_message_refs32(SectionRef S, struct DisassembleInfo *info) {
4971 uint32_t i, left, offset, xoffset, p;
4972 struct message_ref32 mr;
4973 const char *name, *r;
4974 SectionRef xS;
4975
4976 if (S == SectionRef())
4977 return;
4978
4979 StringRef SectName;
4980 S.getName(SectName);
4981 DataRefImpl Ref = S.getRawDataRefImpl();
4982 StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
4983 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
4984 offset = 0;
4985 for (i = 0; i < S.getSize(); i += sizeof(struct message_ref64)) {
4986 p = S.getAddress() + i;
4987 r = get_pointer_32(p, offset, left, S, info);
4988 if (r == nullptr)
4989 return;
4990 memset(&mr, '\0', sizeof(struct message_ref32));
4991 if (left < sizeof(struct message_ref32)) {
4992 memcpy(&mr, r, left);
4993 outs() << " (message_ref entends past the end of the section)\n";
4994 } else
4995 memcpy(&mr, r, sizeof(struct message_ref32));
4996 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
4997 swapStruct(mr);
4998
4999 outs() << " imp " << format("0x%" PRIx32, mr.imp);
5000 name = get_symbol_32(offset + offsetof(struct message_ref32, imp), S, info,
5001 mr.imp);
5002 if (name != nullptr)
5003 outs() << " " << name;
5004 outs() << "\n";
5005
5006 outs() << " sel " << format("0x%" PRIx32, mr.sel);
5007 name = get_pointer_32(mr.sel, xoffset, left, xS, info);
5008 if (name != nullptr)
5009 outs() << " " << name;
5010 outs() << "\n";
5011
5012 offset += sizeof(struct message_ref32);
5013 }
5014}
5015
Kevin Enderby0fc11822015-04-01 20:57:01 +00005016static void print_image_info64(SectionRef S, struct DisassembleInfo *info) {
5017 uint32_t left, offset, swift_version;
5018 uint64_t p;
5019 struct objc_image_info64 o;
5020 const char *r;
5021
Kevin Enderbyaf7c9d02015-10-09 16:48:44 +00005022 if (S == SectionRef())
5023 return;
5024
Kevin Enderby0fc11822015-04-01 20:57:01 +00005025 StringRef SectName;
5026 S.getName(SectName);
5027 DataRefImpl Ref = S.getRawDataRefImpl();
5028 StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
5029 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5030 p = S.getAddress();
5031 r = get_pointer_64(p, offset, left, S, info);
5032 if (r == nullptr)
5033 return;
5034 memset(&o, '\0', sizeof(struct objc_image_info64));
5035 if (left < sizeof(struct objc_image_info64)) {
5036 memcpy(&o, r, left);
5037 outs() << " (objc_image_info entends past the end of the section)\n";
5038 } else
5039 memcpy(&o, r, sizeof(struct objc_image_info64));
5040 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
5041 swapStruct(o);
5042 outs() << " version " << o.version << "\n";
5043 outs() << " flags " << format("0x%" PRIx32, o.flags);
5044 if (o.flags & OBJC_IMAGE_IS_REPLACEMENT)
5045 outs() << " OBJC_IMAGE_IS_REPLACEMENT";
5046 if (o.flags & OBJC_IMAGE_SUPPORTS_GC)
5047 outs() << " OBJC_IMAGE_SUPPORTS_GC";
5048 swift_version = (o.flags >> 8) & 0xff;
5049 if (swift_version != 0) {
5050 if (swift_version == 1)
5051 outs() << " Swift 1.0";
5052 else if (swift_version == 2)
5053 outs() << " Swift 1.1";
5054 else
5055 outs() << " unknown future Swift version (" << swift_version << ")";
5056 }
5057 outs() << "\n";
5058}
5059
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00005060static void print_image_info32(SectionRef S, struct DisassembleInfo *info) {
5061 uint32_t left, offset, swift_version, p;
5062 struct objc_image_info32 o;
5063 const char *r;
5064
5065 StringRef SectName;
5066 S.getName(SectName);
5067 DataRefImpl Ref = S.getRawDataRefImpl();
5068 StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
5069 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5070 p = S.getAddress();
5071 r = get_pointer_32(p, offset, left, S, info);
5072 if (r == nullptr)
5073 return;
5074 memset(&o, '\0', sizeof(struct objc_image_info32));
5075 if (left < sizeof(struct objc_image_info32)) {
5076 memcpy(&o, r, left);
5077 outs() << " (objc_image_info entends past the end of the section)\n";
5078 } else
5079 memcpy(&o, r, sizeof(struct objc_image_info32));
5080 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
5081 swapStruct(o);
5082 outs() << " version " << o.version << "\n";
5083 outs() << " flags " << format("0x%" PRIx32, o.flags);
5084 if (o.flags & OBJC_IMAGE_IS_REPLACEMENT)
5085 outs() << " OBJC_IMAGE_IS_REPLACEMENT";
5086 if (o.flags & OBJC_IMAGE_SUPPORTS_GC)
5087 outs() << " OBJC_IMAGE_SUPPORTS_GC";
5088 swift_version = (o.flags >> 8) & 0xff;
5089 if (swift_version != 0) {
5090 if (swift_version == 1)
5091 outs() << " Swift 1.0";
5092 else if (swift_version == 2)
5093 outs() << " Swift 1.1";
5094 else
5095 outs() << " unknown future Swift version (" << swift_version << ")";
5096 }
5097 outs() << "\n";
5098}
5099
Kevin Enderby846c0002015-04-16 17:19:59 +00005100static void print_image_info(SectionRef S, struct DisassembleInfo *info) {
5101 uint32_t left, offset, p;
5102 struct imageInfo_t o;
5103 const char *r;
5104
5105 StringRef SectName;
5106 S.getName(SectName);
5107 DataRefImpl Ref = S.getRawDataRefImpl();
5108 StringRef SegName = info->O->getSectionFinalSegmentName(Ref);
5109 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5110 p = S.getAddress();
5111 r = get_pointer_32(p, offset, left, S, info);
5112 if (r == nullptr)
5113 return;
5114 memset(&o, '\0', sizeof(struct imageInfo_t));
5115 if (left < sizeof(struct imageInfo_t)) {
5116 memcpy(&o, r, left);
5117 outs() << " (imageInfo entends past the end of the section)\n";
5118 } else
5119 memcpy(&o, r, sizeof(struct imageInfo_t));
5120 if (info->O->isLittleEndian() != sys::IsLittleEndianHost)
5121 swapStruct(o);
5122 outs() << " version " << o.version << "\n";
5123 outs() << " flags " << format("0x%" PRIx32, o.flags);
5124 if (o.flags & 0x1)
5125 outs() << " F&C";
5126 if (o.flags & 0x2)
5127 outs() << " GC";
5128 if (o.flags & 0x4)
5129 outs() << " GC-only";
5130 else
5131 outs() << " RR";
5132 outs() << "\n";
5133}
5134
Kevin Enderby0fc11822015-04-01 20:57:01 +00005135static void printObjc2_64bit_MetaData(MachOObjectFile *O, bool verbose) {
5136 SymbolAddressMap AddrMap;
5137 if (verbose)
5138 CreateSymbolAddressMap(O, &AddrMap);
5139
5140 std::vector<SectionRef> Sections;
5141 for (const SectionRef &Section : O->sections()) {
5142 StringRef SectName;
5143 Section.getName(SectName);
5144 Sections.push_back(Section);
5145 }
5146
5147 struct DisassembleInfo info;
5148 // Set up the block of info used by the Symbolizer call backs.
5149 info.verbose = verbose;
5150 info.O = O;
5151 info.AddrMap = &AddrMap;
5152 info.Sections = &Sections;
5153 info.class_name = nullptr;
5154 info.selector_name = nullptr;
5155 info.method = nullptr;
5156 info.demangled_name = nullptr;
5157 info.bindtable = nullptr;
5158 info.adrp_addr = 0;
5159 info.adrp_inst = 0;
5160
Kevin Enderbyaac75382015-10-08 16:56:35 +00005161 info.depth = 0;
Kevin Enderby0fc11822015-04-01 20:57:01 +00005162 const SectionRef CL = get_section(O, "__OBJC2", "__class_list");
5163 if (CL != SectionRef()) {
5164 info.S = CL;
5165 walk_pointer_list_64("class", CL, O, &info, print_class64_t);
5166 } else {
5167 const SectionRef CL = get_section(O, "__DATA", "__objc_classlist");
5168 info.S = CL;
5169 walk_pointer_list_64("class", CL, O, &info, print_class64_t);
5170 }
5171
5172 const SectionRef CR = get_section(O, "__OBJC2", "__class_refs");
5173 if (CR != SectionRef()) {
5174 info.S = CR;
5175 walk_pointer_list_64("class refs", CR, O, &info, nullptr);
5176 } else {
5177 const SectionRef CR = get_section(O, "__DATA", "__objc_classrefs");
5178 info.S = CR;
5179 walk_pointer_list_64("class refs", CR, O, &info, nullptr);
5180 }
5181
5182 const SectionRef SR = get_section(O, "__OBJC2", "__super_refs");
5183 if (SR != SectionRef()) {
5184 info.S = SR;
5185 walk_pointer_list_64("super refs", SR, O, &info, nullptr);
5186 } else {
5187 const SectionRef SR = get_section(O, "__DATA", "__objc_superrefs");
5188 info.S = SR;
5189 walk_pointer_list_64("super refs", SR, O, &info, nullptr);
5190 }
5191
5192 const SectionRef CA = get_section(O, "__OBJC2", "__category_list");
5193 if (CA != SectionRef()) {
5194 info.S = CA;
5195 walk_pointer_list_64("category", CA, O, &info, print_category64_t);
5196 } else {
5197 const SectionRef CA = get_section(O, "__DATA", "__objc_catlist");
5198 info.S = CA;
5199 walk_pointer_list_64("category", CA, O, &info, print_category64_t);
5200 }
5201
5202 const SectionRef PL = get_section(O, "__OBJC2", "__protocol_list");
5203 if (PL != SectionRef()) {
5204 info.S = PL;
5205 walk_pointer_list_64("protocol", PL, O, &info, nullptr);
5206 } else {
5207 const SectionRef PL = get_section(O, "__DATA", "__objc_protolist");
5208 info.S = PL;
5209 walk_pointer_list_64("protocol", PL, O, &info, nullptr);
5210 }
5211
5212 const SectionRef MR = get_section(O, "__OBJC2", "__message_refs");
5213 if (MR != SectionRef()) {
5214 info.S = MR;
5215 print_message_refs64(MR, &info);
5216 } else {
5217 const SectionRef MR = get_section(O, "__DATA", "__objc_msgrefs");
5218 info.S = MR;
5219 print_message_refs64(MR, &info);
5220 }
5221
5222 const SectionRef II = get_section(O, "__OBJC2", "__image_info");
5223 if (II != SectionRef()) {
5224 info.S = II;
5225 print_image_info64(II, &info);
5226 } else {
5227 const SectionRef II = get_section(O, "__DATA", "__objc_imageinfo");
5228 info.S = II;
5229 print_image_info64(II, &info);
5230 }
Kevin Enderby0bc6ed42015-04-01 21:50:45 +00005231
5232 if (info.bindtable != nullptr)
5233 delete info.bindtable;
Kevin Enderby0fc11822015-04-01 20:57:01 +00005234}
5235
5236static void printObjc2_32bit_MetaData(MachOObjectFile *O, bool verbose) {
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00005237 SymbolAddressMap AddrMap;
5238 if (verbose)
5239 CreateSymbolAddressMap(O, &AddrMap);
5240
5241 std::vector<SectionRef> Sections;
5242 for (const SectionRef &Section : O->sections()) {
5243 StringRef SectName;
5244 Section.getName(SectName);
5245 Sections.push_back(Section);
5246 }
5247
5248 struct DisassembleInfo info;
5249 // Set up the block of info used by the Symbolizer call backs.
5250 info.verbose = verbose;
5251 info.O = O;
5252 info.AddrMap = &AddrMap;
5253 info.Sections = &Sections;
5254 info.class_name = nullptr;
5255 info.selector_name = nullptr;
5256 info.method = nullptr;
5257 info.demangled_name = nullptr;
5258 info.bindtable = nullptr;
5259 info.adrp_addr = 0;
5260 info.adrp_inst = 0;
5261
5262 const SectionRef CL = get_section(O, "__OBJC2", "__class_list");
5263 if (CL != SectionRef()) {
5264 info.S = CL;
5265 walk_pointer_list_32("class", CL, O, &info, print_class32_t);
5266 } else {
5267 const SectionRef CL = get_section(O, "__DATA", "__objc_classlist");
5268 info.S = CL;
5269 walk_pointer_list_32("class", CL, O, &info, print_class32_t);
5270 }
5271
5272 const SectionRef CR = get_section(O, "__OBJC2", "__class_refs");
5273 if (CR != SectionRef()) {
5274 info.S = CR;
5275 walk_pointer_list_32("class refs", CR, O, &info, nullptr);
5276 } else {
5277 const SectionRef CR = get_section(O, "__DATA", "__objc_classrefs");
5278 info.S = CR;
5279 walk_pointer_list_32("class refs", CR, O, &info, nullptr);
5280 }
5281
5282 const SectionRef SR = get_section(O, "__OBJC2", "__super_refs");
5283 if (SR != SectionRef()) {
5284 info.S = SR;
5285 walk_pointer_list_32("super refs", SR, O, &info, nullptr);
5286 } else {
5287 const SectionRef SR = get_section(O, "__DATA", "__objc_superrefs");
5288 info.S = SR;
5289 walk_pointer_list_32("super refs", SR, O, &info, nullptr);
5290 }
5291
5292 const SectionRef CA = get_section(O, "__OBJC2", "__category_list");
5293 if (CA != SectionRef()) {
5294 info.S = CA;
5295 walk_pointer_list_32("category", CA, O, &info, print_category32_t);
5296 } else {
5297 const SectionRef CA = get_section(O, "__DATA", "__objc_catlist");
5298 info.S = CA;
5299 walk_pointer_list_32("category", CA, O, &info, print_category32_t);
5300 }
5301
5302 const SectionRef PL = get_section(O, "__OBJC2", "__protocol_list");
5303 if (PL != SectionRef()) {
5304 info.S = PL;
5305 walk_pointer_list_32("protocol", PL, O, &info, nullptr);
5306 } else {
5307 const SectionRef PL = get_section(O, "__DATA", "__objc_protolist");
5308 info.S = PL;
5309 walk_pointer_list_32("protocol", PL, O, &info, nullptr);
5310 }
5311
5312 const SectionRef MR = get_section(O, "__OBJC2", "__message_refs");
5313 if (MR != SectionRef()) {
5314 info.S = MR;
5315 print_message_refs32(MR, &info);
5316 } else {
5317 const SectionRef MR = get_section(O, "__DATA", "__objc_msgrefs");
5318 info.S = MR;
5319 print_message_refs32(MR, &info);
5320 }
5321
5322 const SectionRef II = get_section(O, "__OBJC2", "__image_info");
5323 if (II != SectionRef()) {
5324 info.S = II;
5325 print_image_info32(II, &info);
5326 } else {
5327 const SectionRef II = get_section(O, "__DATA", "__objc_imageinfo");
5328 info.S = II;
5329 print_image_info32(II, &info);
5330 }
Kevin Enderby0fc11822015-04-01 20:57:01 +00005331}
5332
5333static bool printObjc1_32bit_MetaData(MachOObjectFile *O, bool verbose) {
Kevin Enderby846c0002015-04-16 17:19:59 +00005334 uint32_t i, j, p, offset, xoffset, left, defs_left, def;
5335 const char *r, *name, *defs;
5336 struct objc_module_t module;
5337 SectionRef S, xS;
5338 struct objc_symtab_t symtab;
5339 struct objc_class_t objc_class;
5340 struct objc_category_t objc_category;
5341
Kevin Enderby28c1c1b2015-04-06 17:47:03 +00005342 outs() << "Objective-C segment\n";
Kevin Enderby846c0002015-04-16 17:19:59 +00005343 S = get_section(O, "__OBJC", "__module_info");
5344 if (S == SectionRef())
5345 return false;
5346
5347 SymbolAddressMap AddrMap;
5348 if (verbose)
5349 CreateSymbolAddressMap(O, &AddrMap);
5350
5351 std::vector<SectionRef> Sections;
5352 for (const SectionRef &Section : O->sections()) {
5353 StringRef SectName;
5354 Section.getName(SectName);
5355 Sections.push_back(Section);
Kevin Enderby0fc11822015-04-01 20:57:01 +00005356 }
Kevin Enderby846c0002015-04-16 17:19:59 +00005357
5358 struct DisassembleInfo info;
5359 // Set up the block of info used by the Symbolizer call backs.
5360 info.verbose = verbose;
5361 info.O = O;
5362 info.AddrMap = &AddrMap;
5363 info.Sections = &Sections;
5364 info.class_name = nullptr;
5365 info.selector_name = nullptr;
5366 info.method = nullptr;
5367 info.demangled_name = nullptr;
5368 info.bindtable = nullptr;
5369 info.adrp_addr = 0;
5370 info.adrp_inst = 0;
5371
5372 for (i = 0; i < S.getSize(); i += sizeof(struct objc_module_t)) {
5373 p = S.getAddress() + i;
5374 r = get_pointer_32(p, offset, left, S, &info, true);
5375 if (r == nullptr)
5376 return true;
5377 memset(&module, '\0', sizeof(struct objc_module_t));
5378 if (left < sizeof(struct objc_module_t)) {
5379 memcpy(&module, r, left);
5380 outs() << " (module extends past end of __module_info section)\n";
5381 } else
5382 memcpy(&module, r, sizeof(struct objc_module_t));
5383 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5384 swapStruct(module);
5385
5386 outs() << "Module " << format("0x%" PRIx32, p) << "\n";
5387 outs() << " version " << module.version << "\n";
5388 outs() << " size " << module.size << "\n";
5389 outs() << " name ";
5390 name = get_pointer_32(module.name, xoffset, left, xS, &info, true);
5391 if (name != nullptr)
5392 outs() << format("%.*s", left, name);
5393 else
5394 outs() << format("0x%08" PRIx32, module.name)
5395 << "(not in an __OBJC section)";
5396 outs() << "\n";
5397
5398 r = get_pointer_32(module.symtab, xoffset, left, xS, &info, true);
5399 if (module.symtab == 0 || r == nullptr) {
5400 outs() << " symtab " << format("0x%08" PRIx32, module.symtab)
5401 << " (not in an __OBJC section)\n";
5402 continue;
5403 }
5404 outs() << " symtab " << format("0x%08" PRIx32, module.symtab) << "\n";
5405 memset(&symtab, '\0', sizeof(struct objc_symtab_t));
5406 defs_left = 0;
5407 defs = nullptr;
5408 if (left < sizeof(struct objc_symtab_t)) {
5409 memcpy(&symtab, r, left);
5410 outs() << "\tsymtab extends past end of an __OBJC section)\n";
5411 } else {
5412 memcpy(&symtab, r, sizeof(struct objc_symtab_t));
5413 if (left > sizeof(struct objc_symtab_t)) {
5414 defs_left = left - sizeof(struct objc_symtab_t);
5415 defs = r + sizeof(struct objc_symtab_t);
5416 }
5417 }
5418 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5419 swapStruct(symtab);
5420
5421 outs() << "\tsel_ref_cnt " << symtab.sel_ref_cnt << "\n";
5422 r = get_pointer_32(symtab.refs, xoffset, left, xS, &info, true);
5423 outs() << "\trefs " << format("0x%08" PRIx32, symtab.refs);
5424 if (r == nullptr)
5425 outs() << " (not in an __OBJC section)";
5426 outs() << "\n";
5427 outs() << "\tcls_def_cnt " << symtab.cls_def_cnt << "\n";
5428 outs() << "\tcat_def_cnt " << symtab.cat_def_cnt << "\n";
5429 if (symtab.cls_def_cnt > 0)
5430 outs() << "\tClass Definitions\n";
5431 for (j = 0; j < symtab.cls_def_cnt; j++) {
5432 if ((j + 1) * sizeof(uint32_t) > defs_left) {
5433 outs() << "\t(remaining class defs entries entends past the end of the "
5434 << "section)\n";
5435 break;
5436 }
5437 memcpy(&def, defs + j * sizeof(uint32_t), sizeof(uint32_t));
5438 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5439 sys::swapByteOrder(def);
5440
5441 r = get_pointer_32(def, xoffset, left, xS, &info, true);
5442 outs() << "\tdefs[" << j << "] " << format("0x%08" PRIx32, def);
5443 if (r != nullptr) {
5444 if (left > sizeof(struct objc_class_t)) {
5445 outs() << "\n";
5446 memcpy(&objc_class, r, sizeof(struct objc_class_t));
5447 } else {
5448 outs() << " (entends past the end of the section)\n";
5449 memset(&objc_class, '\0', sizeof(struct objc_class_t));
5450 memcpy(&objc_class, r, left);
5451 }
5452 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5453 swapStruct(objc_class);
5454 print_objc_class_t(&objc_class, &info);
5455 } else {
5456 outs() << "(not in an __OBJC section)\n";
5457 }
5458
5459 if (CLS_GETINFO(&objc_class, CLS_CLASS)) {
5460 outs() << "\tMeta Class";
5461 r = get_pointer_32(objc_class.isa, xoffset, left, xS, &info, true);
5462 if (r != nullptr) {
5463 if (left > sizeof(struct objc_class_t)) {
5464 outs() << "\n";
5465 memcpy(&objc_class, r, sizeof(struct objc_class_t));
5466 } else {
5467 outs() << " (entends past the end of the section)\n";
5468 memset(&objc_class, '\0', sizeof(struct objc_class_t));
5469 memcpy(&objc_class, r, left);
5470 }
5471 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5472 swapStruct(objc_class);
5473 print_objc_class_t(&objc_class, &info);
5474 } else {
5475 outs() << "(not in an __OBJC section)\n";
5476 }
5477 }
5478 }
5479 if (symtab.cat_def_cnt > 0)
5480 outs() << "\tCategory Definitions\n";
5481 for (j = 0; j < symtab.cat_def_cnt; j++) {
5482 if ((j + symtab.cls_def_cnt + 1) * sizeof(uint32_t) > defs_left) {
5483 outs() << "\t(remaining category defs entries entends past the end of "
5484 << "the section)\n";
5485 break;
5486 }
5487 memcpy(&def, defs + (j + symtab.cls_def_cnt) * sizeof(uint32_t),
5488 sizeof(uint32_t));
5489 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5490 sys::swapByteOrder(def);
5491
5492 r = get_pointer_32(def, xoffset, left, xS, &info, true);
5493 outs() << "\tdefs[" << j + symtab.cls_def_cnt << "] "
5494 << format("0x%08" PRIx32, def);
5495 if (r != nullptr) {
5496 if (left > sizeof(struct objc_category_t)) {
5497 outs() << "\n";
5498 memcpy(&objc_category, r, sizeof(struct objc_category_t));
5499 } else {
5500 outs() << " (entends past the end of the section)\n";
5501 memset(&objc_category, '\0', sizeof(struct objc_category_t));
5502 memcpy(&objc_category, r, left);
5503 }
5504 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5505 swapStruct(objc_category);
5506 print_objc_objc_category_t(&objc_category, &info);
5507 } else {
5508 outs() << "(not in an __OBJC section)\n";
5509 }
5510 }
5511 }
5512 const SectionRef II = get_section(O, "__OBJC", "__image_info");
5513 if (II != SectionRef())
5514 print_image_info(II, &info);
5515
5516 return true;
Kevin Enderby0fc11822015-04-01 20:57:01 +00005517}
5518
Kevin Enderby4ad9bde2015-04-16 22:33:20 +00005519static void DumpProtocolSection(MachOObjectFile *O, const char *sect,
5520 uint32_t size, uint32_t addr) {
5521 SymbolAddressMap AddrMap;
5522 CreateSymbolAddressMap(O, &AddrMap);
5523
5524 std::vector<SectionRef> Sections;
5525 for (const SectionRef &Section : O->sections()) {
5526 StringRef SectName;
5527 Section.getName(SectName);
5528 Sections.push_back(Section);
5529 }
5530
5531 struct DisassembleInfo info;
5532 // Set up the block of info used by the Symbolizer call backs.
5533 info.verbose = true;
5534 info.O = O;
5535 info.AddrMap = &AddrMap;
5536 info.Sections = &Sections;
5537 info.class_name = nullptr;
5538 info.selector_name = nullptr;
5539 info.method = nullptr;
5540 info.demangled_name = nullptr;
5541 info.bindtable = nullptr;
5542 info.adrp_addr = 0;
5543 info.adrp_inst = 0;
5544
5545 const char *p;
5546 struct objc_protocol_t protocol;
5547 uint32_t left, paddr;
5548 for (p = sect; p < sect + size; p += sizeof(struct objc_protocol_t)) {
5549 memset(&protocol, '\0', sizeof(struct objc_protocol_t));
5550 left = size - (p - sect);
5551 if (left < sizeof(struct objc_protocol_t)) {
5552 outs() << "Protocol extends past end of __protocol section\n";
5553 memcpy(&protocol, p, left);
5554 } else
5555 memcpy(&protocol, p, sizeof(struct objc_protocol_t));
5556 if (O->isLittleEndian() != sys::IsLittleEndianHost)
5557 swapStruct(protocol);
5558 paddr = addr + (p - sect);
5559 outs() << "Protocol " << format("0x%" PRIx32, paddr);
5560 if (print_protocol(paddr, 0, &info))
5561 outs() << "(not in an __OBJC section)\n";
5562 }
5563}
5564
Kevin Enderby0fc11822015-04-01 20:57:01 +00005565static void printObjcMetaData(MachOObjectFile *O, bool verbose) {
5566 if (O->is64Bit())
5567 printObjc2_64bit_MetaData(O, verbose);
5568 else {
5569 MachO::mach_header H;
5570 H = O->getHeader();
5571 if (H.cputype == MachO::CPU_TYPE_ARM)
5572 printObjc2_32bit_MetaData(O, verbose);
5573 else {
5574 // This is the 32-bit non-arm cputype case. Which is normally
5575 // the first Objective-C ABI. But it may be the case of a
5576 // binary for the iOS simulator which is the second Objective-C
5577 // ABI. In that case printObjc1_32bit_MetaData() will determine that
5578 // and return false.
Hans Wennborgcc9deb42015-09-29 18:02:48 +00005579 if (!printObjc1_32bit_MetaData(O, verbose))
Kevin Enderby0fc11822015-04-01 20:57:01 +00005580 printObjc2_32bit_MetaData(O, verbose);
5581 }
5582 }
5583}
5584
Kevin Enderbybf246f52014-09-24 23:08:22 +00005585// GuessLiteralPointer returns a string which for the item in the Mach-O file
5586// for the address passed in as ReferenceValue for printing as a comment with
5587// the instruction and also returns the corresponding type of that item
5588// indirectly through ReferenceType.
5589//
5590// If ReferenceValue is an address of literal cstring then a pointer to the
5591// cstring is returned and ReferenceType is set to
5592// LLVMDisassembler_ReferenceType_Out_LitPool_CstrAddr .
5593//
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005594// If ReferenceValue is an address of an Objective-C CFString, Selector ref or
5595// Class ref that name is returned and the ReferenceType is set accordingly.
5596//
5597// Lastly, literals which are Symbol address in a literal pool are looked for
5598// and if found the symbol name is returned and ReferenceType is set to
5599// LLVMDisassembler_ReferenceType_Out_LitPool_SymAddr .
5600//
5601// If there is no item in the Mach-O file for the address passed in as
5602// ReferenceValue nullptr is returned and ReferenceType is unchanged.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00005603static const char *GuessLiteralPointer(uint64_t ReferenceValue,
5604 uint64_t ReferencePC,
5605 uint64_t *ReferenceType,
5606 struct DisassembleInfo *info) {
Kevin Enderbybf246f52014-09-24 23:08:22 +00005607 // First see if there is an external relocation entry at the ReferencePC.
Kevin Enderbyd90a4172015-10-10 00:05:01 +00005608 if (info->O->getHeader().filetype == MachO::MH_OBJECT) {
5609 uint64_t sect_addr = info->S.getAddress();
5610 uint64_t sect_offset = ReferencePC - sect_addr;
5611 bool reloc_found = false;
5612 DataRefImpl Rel;
5613 MachO::any_relocation_info RE;
5614 bool isExtern = false;
5615 SymbolRef Symbol;
5616 for (const RelocationRef &Reloc : info->S.relocations()) {
5617 uint64_t RelocOffset = Reloc.getOffset();
5618 if (RelocOffset == sect_offset) {
5619 Rel = Reloc.getRawDataRefImpl();
5620 RE = info->O->getRelocation(Rel);
5621 if (info->O->isRelocationScattered(RE))
5622 continue;
5623 isExtern = info->O->getPlainRelocationExternal(RE);
5624 if (isExtern) {
5625 symbol_iterator RelocSym = Reloc.getSymbol();
5626 Symbol = *RelocSym;
5627 }
5628 reloc_found = true;
5629 break;
Kevin Enderbybf246f52014-09-24 23:08:22 +00005630 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00005631 }
Kevin Enderbyd90a4172015-10-10 00:05:01 +00005632 // If there is an external relocation entry for a symbol in a section
5633 // then used that symbol's value for the value of the reference.
5634 if (reloc_found && isExtern) {
5635 if (info->O->getAnyRelocationPCRel(RE)) {
5636 unsigned Type = info->O->getAnyRelocationType(RE);
5637 if (Type == MachO::X86_64_RELOC_SIGNED) {
5638 ReferenceValue = Symbol.getValue();
5639 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00005640 }
5641 }
5642 }
5643
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005644 // Look for literals such as Objective-C CFStrings refs, Selector refs,
5645 // Message refs and Class refs.
5646 bool classref, selref, msgref, cfstring;
5647 uint64_t pointer_value = GuessPointerPointer(ReferenceValue, info, classref,
5648 selref, msgref, cfstring);
David Blaikie33dd45d02015-03-23 18:39:02 +00005649 if (classref && pointer_value == 0) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005650 // Note the ReferenceValue is a pointer into the __objc_classrefs section.
5651 // And the pointer_value in that section is typically zero as it will be
5652 // set by dyld as part of the "bind information".
5653 const char *name = get_dyld_bind_info_symbolname(ReferenceValue, info);
5654 if (name != nullptr) {
5655 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Class_Ref;
Hans Wennborgdb53e302014-10-23 21:59:17 +00005656 const char *class_name = strrchr(name, '$');
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005657 if (class_name != nullptr && class_name[1] == '_' &&
5658 class_name[2] != '\0') {
5659 info->class_name = class_name + 2;
5660 return name;
5661 }
5662 }
5663 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00005664
David Blaikie33dd45d02015-03-23 18:39:02 +00005665 if (classref) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005666 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Class_Ref;
5667 const char *name =
5668 get_objc2_64bit_class_name(pointer_value, ReferenceValue, info);
5669 if (name != nullptr)
5670 info->class_name = name;
5671 else
5672 name = "bad class ref";
Kevin Enderbybf246f52014-09-24 23:08:22 +00005673 return name;
5674 }
5675
David Blaikie33dd45d02015-03-23 18:39:02 +00005676 if (cfstring) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005677 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_CFString_Ref;
5678 const char *name = get_objc2_64bit_cfstring_name(ReferenceValue, info);
5679 return name;
5680 }
5681
David Blaikie33dd45d02015-03-23 18:39:02 +00005682 if (selref && pointer_value == 0)
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005683 pointer_value = get_objc2_64bit_selref(ReferenceValue, info);
5684
5685 if (pointer_value != 0)
5686 ReferenceValue = pointer_value;
5687
5688 const char *name = GuessCstringPointer(ReferenceValue, info);
5689 if (name) {
David Blaikie33dd45d02015-03-23 18:39:02 +00005690 if (pointer_value != 0 && selref) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005691 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Selector_Ref;
5692 info->selector_name = name;
David Blaikie33dd45d02015-03-23 18:39:02 +00005693 } else if (pointer_value != 0 && msgref) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005694 info->class_name = nullptr;
5695 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message_Ref;
5696 info->selector_name = name;
5697 } else
5698 *ReferenceType = LLVMDisassembler_ReferenceType_Out_LitPool_CstrAddr;
5699 return name;
5700 }
5701
5702 // Lastly look for an indirect symbol with this ReferenceValue which is in
5703 // a literal pool. If found return that symbol name.
5704 name = GuessIndirectSymbol(ReferenceValue, info);
5705 if (name) {
5706 *ReferenceType = LLVMDisassembler_ReferenceType_Out_LitPool_SymAddr;
5707 return name;
5708 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00005709
5710 return nullptr;
5711}
5712
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005713// SymbolizerSymbolLookUp is the symbol lookup function passed when creating
Kevin Enderbybf246f52014-09-24 23:08:22 +00005714// the Symbolizer. It looks up the ReferenceValue using the info passed via the
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005715// pointer to the struct DisassembleInfo that was passed when MCSymbolizer
5716// is created and returns the symbol name that matches the ReferenceValue or
5717// nullptr if none. The ReferenceType is passed in for the IN type of
5718// reference the instruction is making from the values in defined in the header
5719// "llvm-c/Disassembler.h". On return the ReferenceType can set to a specific
5720// Out type and the ReferenceName will also be set which is added as a comment
5721// to the disassembled instruction.
5722//
Kevin Enderby04bf6932014-10-28 23:39:46 +00005723#if HAVE_CXXABI_H
5724// If the symbol name is a C++ mangled name then the demangled name is
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005725// returned through ReferenceName and ReferenceType is set to
5726// LLVMDisassembler_ReferenceType_DeMangled_Name .
Kevin Enderby04bf6932014-10-28 23:39:46 +00005727#endif
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005728//
5729// When this is called to get a symbol name for a branch target then the
5730// ReferenceType will be LLVMDisassembler_ReferenceType_In_Branch and then
5731// SymbolValue will be looked for in the indirect symbol table to determine if
5732// it is an address for a symbol stub. If so then the symbol name for that
5733// stub is returned indirectly through ReferenceName and then ReferenceType is
5734// set to LLVMDisassembler_ReferenceType_Out_SymbolStub.
5735//
Kevin Enderbybf246f52014-09-24 23:08:22 +00005736// When this is called with an value loaded via a PC relative load then
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005737// ReferenceType will be LLVMDisassembler_ReferenceType_In_PCrel_Load then the
5738// SymbolValue is checked to be an address of literal pointer, symbol pointer,
5739// or an Objective-C meta data reference. If so the output ReferenceType is
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005740// set to correspond to that as well as setting the ReferenceName.
Benjamin Kramerf044d3f2015-03-09 16:23:46 +00005741static const char *SymbolizerSymbolLookUp(void *DisInfo,
5742 uint64_t ReferenceValue,
5743 uint64_t *ReferenceType,
5744 uint64_t ReferencePC,
5745 const char **ReferenceName) {
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005746 struct DisassembleInfo *info = (struct DisassembleInfo *)DisInfo;
Kevin Enderbybf246f52014-09-24 23:08:22 +00005747 // If no verbose symbolic information is wanted then just return nullptr.
David Blaikie33dd45d02015-03-23 18:39:02 +00005748 if (!info->verbose) {
Kevin Enderbybf246f52014-09-24 23:08:22 +00005749 *ReferenceName = nullptr;
5750 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005751 return nullptr;
5752 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00005753
Kevin Enderbyf6d25852015-01-31 00:37:11 +00005754 const char *SymbolName = GuessSymbolName(ReferenceValue, info->AddrMap);
Kevin Enderbybf246f52014-09-24 23:08:22 +00005755
Kevin Enderby85974882014-09-26 22:20:44 +00005756 if (*ReferenceType == LLVMDisassembler_ReferenceType_In_Branch) {
5757 *ReferenceName = GuessIndirectSymbol(ReferenceValue, info);
Kevin Enderby04bf6932014-10-28 23:39:46 +00005758 if (*ReferenceName != nullptr) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005759 method_reference(info, ReferenceType, ReferenceName);
5760 if (*ReferenceType != LLVMDisassembler_ReferenceType_Out_Objc_Message)
5761 *ReferenceType = LLVMDisassembler_ReferenceType_Out_SymbolStub;
5762 } else
Kevin Enderby04bf6932014-10-28 23:39:46 +00005763#if HAVE_CXXABI_H
Kevin Enderbyb28ed012014-10-29 21:28:24 +00005764 if (SymbolName != nullptr && strncmp(SymbolName, "__Z", 3) == 0) {
Kevin Enderby04bf6932014-10-28 23:39:46 +00005765 if (info->demangled_name != nullptr)
5766 free(info->demangled_name);
5767 int status;
Kevin Enderbyb28ed012014-10-29 21:28:24 +00005768 info->demangled_name =
5769 abi::__cxa_demangle(SymbolName + 1, nullptr, nullptr, &status);
Kevin Enderby04bf6932014-10-28 23:39:46 +00005770 if (info->demangled_name != nullptr) {
5771 *ReferenceName = info->demangled_name;
5772 *ReferenceType = LLVMDisassembler_ReferenceType_DeMangled_Name;
5773 } else
5774 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5775 } else
5776#endif
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005777 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5778 } else if (*ReferenceType == LLVMDisassembler_ReferenceType_In_PCrel_Load) {
5779 *ReferenceName =
5780 GuessLiteralPointer(ReferenceValue, ReferencePC, ReferenceType, info);
Kevin Enderby85974882014-09-26 22:20:44 +00005781 if (*ReferenceName)
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005782 method_reference(info, ReferenceType, ReferenceName);
Kevin Enderby85974882014-09-26 22:20:44 +00005783 else
5784 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
Kevin Enderbyae3c1262014-11-14 21:52:18 +00005785 // If this is arm64 and the reference is an adrp instruction save the
5786 // instruction, passed in ReferenceValue and the address of the instruction
5787 // for use later if we see and add immediate instruction.
5788 } else if (info->O->getArch() == Triple::aarch64 &&
5789 *ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_ADRP) {
5790 info->adrp_inst = ReferenceValue;
5791 info->adrp_addr = ReferencePC;
5792 SymbolName = nullptr;
5793 *ReferenceName = nullptr;
5794 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5795 // If this is arm64 and reference is an add immediate instruction and we
5796 // have
5797 // seen an adrp instruction just before it and the adrp's Xd register
5798 // matches
5799 // this add's Xn register reconstruct the value being referenced and look to
5800 // see if it is a literal pointer. Note the add immediate instruction is
5801 // passed in ReferenceValue.
5802 } else if (info->O->getArch() == Triple::aarch64 &&
5803 *ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_ADDXri &&
5804 ReferencePC - 4 == info->adrp_addr &&
5805 (info->adrp_inst & 0x9f000000) == 0x90000000 &&
5806 (info->adrp_inst & 0x1f) == ((ReferenceValue >> 5) & 0x1f)) {
5807 uint32_t addxri_inst;
5808 uint64_t adrp_imm, addxri_imm;
5809
5810 adrp_imm =
5811 ((info->adrp_inst & 0x00ffffe0) >> 3) | ((info->adrp_inst >> 29) & 0x3);
5812 if (info->adrp_inst & 0x0200000)
5813 adrp_imm |= 0xfffffffffc000000LL;
5814
5815 addxri_inst = ReferenceValue;
5816 addxri_imm = (addxri_inst >> 10) & 0xfff;
5817 if (((addxri_inst >> 22) & 0x3) == 1)
5818 addxri_imm <<= 12;
5819
5820 ReferenceValue = (info->adrp_addr & 0xfffffffffffff000LL) +
5821 (adrp_imm << 12) + addxri_imm;
5822
5823 *ReferenceName =
5824 GuessLiteralPointer(ReferenceValue, ReferencePC, ReferenceType, info);
5825 if (*ReferenceName == nullptr)
5826 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5827 // If this is arm64 and the reference is a load register instruction and we
5828 // have seen an adrp instruction just before it and the adrp's Xd register
5829 // matches this add's Xn register reconstruct the value being referenced and
5830 // look to see if it is a literal pointer. Note the load register
5831 // instruction is passed in ReferenceValue.
5832 } else if (info->O->getArch() == Triple::aarch64 &&
5833 *ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_LDRXui &&
5834 ReferencePC - 4 == info->adrp_addr &&
5835 (info->adrp_inst & 0x9f000000) == 0x90000000 &&
5836 (info->adrp_inst & 0x1f) == ((ReferenceValue >> 5) & 0x1f)) {
5837 uint32_t ldrxui_inst;
5838 uint64_t adrp_imm, ldrxui_imm;
5839
5840 adrp_imm =
5841 ((info->adrp_inst & 0x00ffffe0) >> 3) | ((info->adrp_inst >> 29) & 0x3);
5842 if (info->adrp_inst & 0x0200000)
5843 adrp_imm |= 0xfffffffffc000000LL;
5844
5845 ldrxui_inst = ReferenceValue;
5846 ldrxui_imm = (ldrxui_inst >> 10) & 0xfff;
5847
5848 ReferenceValue = (info->adrp_addr & 0xfffffffffffff000LL) +
5849 (adrp_imm << 12) + (ldrxui_imm << 3);
5850
5851 *ReferenceName =
5852 GuessLiteralPointer(ReferenceValue, ReferencePC, ReferenceType, info);
5853 if (*ReferenceName == nullptr)
5854 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5855 }
5856 // If this arm64 and is an load register (PC-relative) instruction the
5857 // ReferenceValue is the PC plus the immediate value.
5858 else if (info->O->getArch() == Triple::aarch64 &&
5859 (*ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_LDRXl ||
5860 *ReferenceType == LLVMDisassembler_ReferenceType_In_ARM64_ADR)) {
5861 *ReferenceName =
5862 GuessLiteralPointer(ReferenceValue, ReferencePC, ReferenceType, info);
5863 if (*ReferenceName == nullptr)
5864 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
Kevin Enderby85974882014-09-26 22:20:44 +00005865 }
Kevin Enderby04bf6932014-10-28 23:39:46 +00005866#if HAVE_CXXABI_H
5867 else if (SymbolName != nullptr && strncmp(SymbolName, "__Z", 3) == 0) {
5868 if (info->demangled_name != nullptr)
5869 free(info->demangled_name);
5870 int status;
Kevin Enderbyb28ed012014-10-29 21:28:24 +00005871 info->demangled_name =
5872 abi::__cxa_demangle(SymbolName + 1, nullptr, nullptr, &status);
Kevin Enderby04bf6932014-10-28 23:39:46 +00005873 if (info->demangled_name != nullptr) {
5874 *ReferenceName = info->demangled_name;
5875 *ReferenceType = LLVMDisassembler_ReferenceType_DeMangled_Name;
5876 }
5877 }
5878#endif
Kevin Enderby6f326ce2014-10-23 19:37:31 +00005879 else {
Kevin Enderbybf246f52014-09-24 23:08:22 +00005880 *ReferenceName = nullptr;
5881 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
5882 }
5883
5884 return SymbolName;
5885}
5886
Kevin Enderbybf246f52014-09-24 23:08:22 +00005887/// \brief Emits the comments that are stored in the CommentStream.
5888/// Each comment in the CommentStream must end with a newline.
5889static void emitComments(raw_svector_ostream &CommentStream,
5890 SmallString<128> &CommentsToEmit,
5891 formatted_raw_ostream &FormattedOS,
5892 const MCAsmInfo &MAI) {
5893 // Flush the stream before taking its content.
Kevin Enderbybf246f52014-09-24 23:08:22 +00005894 StringRef Comments = CommentsToEmit.str();
5895 // Get the default information for printing a comment.
5896 const char *CommentBegin = MAI.getCommentString();
5897 unsigned CommentColumn = MAI.getCommentColumn();
5898 bool IsFirst = true;
5899 while (!Comments.empty()) {
5900 if (!IsFirst)
5901 FormattedOS << '\n';
5902 // Emit a line of comments.
5903 FormattedOS.PadToColumn(CommentColumn);
5904 size_t Position = Comments.find('\n');
5905 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position);
5906 // Move after the newline character.
5907 Comments = Comments.substr(Position + 1);
5908 IsFirst = false;
5909 }
5910 FormattedOS.flush();
5911
5912 // Tell the comment stream that the vector changed underneath it.
5913 CommentsToEmit.clear();
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005914}
5915
Kevin Enderby95df54c2015-02-04 01:01:38 +00005916static void DisassembleMachO(StringRef Filename, MachOObjectFile *MachOOF,
5917 StringRef DisSegName, StringRef DisSectName) {
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005918 const char *McpuDefault = nullptr;
5919 const Target *ThumbTarget = nullptr;
5920 const Target *TheTarget = GetTarget(MachOOF, &McpuDefault, &ThumbTarget);
Benjamin Kramer43a772e2011-09-19 17:56:04 +00005921 if (!TheTarget) {
5922 // GetTarget prints out stuff.
5923 return;
5924 }
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005925 if (MCPU.empty() && McpuDefault)
5926 MCPU = McpuDefault;
5927
Ahmed Charles56440fd2014-03-06 05:51:42 +00005928 std::unique_ptr<const MCInstrInfo> InstrInfo(TheTarget->createMCInstrInfo());
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005929 std::unique_ptr<const MCInstrInfo> ThumbInstrInfo;
Kevin Enderbyae3c1262014-11-14 21:52:18 +00005930 if (ThumbTarget)
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005931 ThumbInstrInfo.reset(ThumbTarget->createMCInstrInfo());
Benjamin Kramer43a772e2011-09-19 17:56:04 +00005932
Kevin Enderbyc9595622014-08-06 23:24:41 +00005933 // Package up features to be passed to target/subtarget
5934 std::string FeaturesStr;
5935 if (MAttrs.size()) {
5936 SubtargetFeatures Features;
5937 for (unsigned i = 0; i != MAttrs.size(); ++i)
5938 Features.AddFeature(MAttrs[i]);
5939 FeaturesStr = Features.getString();
5940 }
5941
Benjamin Kramer43a772e2011-09-19 17:56:04 +00005942 // Set up disassembler.
Ahmed Charles56440fd2014-03-06 05:51:42 +00005943 std::unique_ptr<const MCRegisterInfo> MRI(
5944 TheTarget->createMCRegInfo(TripleName));
5945 std::unique_ptr<const MCAsmInfo> AsmInfo(
Rafael Espindola227144c2013-05-13 01:16:13 +00005946 TheTarget->createMCAsmInfo(*MRI, TripleName));
Ahmed Charles56440fd2014-03-06 05:51:42 +00005947 std::unique_ptr<const MCSubtargetInfo> STI(
Kevin Enderbyc9595622014-08-06 23:24:41 +00005948 TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr));
Craig Toppere6cb63e2014-04-25 04:24:47 +00005949 MCContext Ctx(AsmInfo.get(), MRI.get(), nullptr);
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005950 std::unique_ptr<MCDisassembler> DisAsm(
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005951 TheTarget->createMCDisassembler(*STI, Ctx));
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005952 std::unique_ptr<MCSymbolizer> Symbolizer;
5953 struct DisassembleInfo SymbolizerInfo;
5954 std::unique_ptr<MCRelocationInfo> RelInfo(
5955 TheTarget->createMCRelocationInfo(TripleName, Ctx));
5956 if (RelInfo) {
5957 Symbolizer.reset(TheTarget->createMCSymbolizer(
5958 TripleName, SymbolizerGetOpInfo, SymbolizerSymbolLookUp,
David Blaikie186db432015-01-18 20:45:48 +00005959 &SymbolizerInfo, &Ctx, std::move(RelInfo)));
Kevin Enderby98c9acc2014-09-16 18:00:57 +00005960 DisAsm->setSymbolizer(std::move(Symbolizer));
5961 }
Benjamin Kramer43a772e2011-09-19 17:56:04 +00005962 int AsmPrinterVariant = AsmInfo->getAssemblerDialect();
Ahmed Charles56440fd2014-03-06 05:51:42 +00005963 std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter(
Daniel Sanders50f17232015-09-15 16:17:27 +00005964 Triple(TripleName), AsmPrinterVariant, *AsmInfo, *InstrInfo, *MRI));
Kevin Enderbybf246f52014-09-24 23:08:22 +00005965 // Set the display preference for hex vs. decimal immediates.
5966 IP->setPrintImmHex(PrintImmHex);
5967 // Comment stream and backing vector.
5968 SmallString<128> CommentsToEmit;
5969 raw_svector_ostream CommentStream(CommentsToEmit);
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00005970 // FIXME: Setting the CommentStream in the InstPrinter is problematic in that
5971 // if it is done then arm64 comments for string literals don't get printed
5972 // and some constant get printed instead and not setting it causes intel
5973 // (32-bit and 64-bit) comments printed with different spacing before the
5974 // comment causing different diffs with the 'C' disassembler library API.
5975 // IP->setCommentStream(CommentStream);
Benjamin Kramer2ad2eb52011-09-20 17:53:01 +00005976
Kevin Enderbyae3c1262014-11-14 21:52:18 +00005977 if (!AsmInfo || !STI || !DisAsm || !IP) {
Michael J. Spencerc1363cf2011-10-07 19:25:47 +00005978 errs() << "error: couldn't initialize disassembler for target "
Benjamin Kramer2ad2eb52011-09-20 17:53:01 +00005979 << TripleName << '\n';
Benjamin Kramer43a772e2011-09-19 17:56:04 +00005980 return;
5981 }
5982
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005983 // Set up thumb disassembler.
5984 std::unique_ptr<const MCRegisterInfo> ThumbMRI;
5985 std::unique_ptr<const MCAsmInfo> ThumbAsmInfo;
5986 std::unique_ptr<const MCSubtargetInfo> ThumbSTI;
Kevin Enderby930fdc72014-11-06 19:00:13 +00005987 std::unique_ptr<MCDisassembler> ThumbDisAsm;
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005988 std::unique_ptr<MCInstPrinter> ThumbIP;
5989 std::unique_ptr<MCContext> ThumbCtx;
Kevin Enderby930fdc72014-11-06 19:00:13 +00005990 std::unique_ptr<MCSymbolizer> ThumbSymbolizer;
5991 struct DisassembleInfo ThumbSymbolizerInfo;
5992 std::unique_ptr<MCRelocationInfo> ThumbRelInfo;
Kevin Enderbyec5ca032014-08-18 20:21:02 +00005993 if (ThumbTarget) {
5994 ThumbMRI.reset(ThumbTarget->createMCRegInfo(ThumbTripleName));
5995 ThumbAsmInfo.reset(
5996 ThumbTarget->createMCAsmInfo(*ThumbMRI, ThumbTripleName));
5997 ThumbSTI.reset(
5998 ThumbTarget->createMCSubtargetInfo(ThumbTripleName, MCPU, FeaturesStr));
5999 ThumbCtx.reset(new MCContext(ThumbAsmInfo.get(), ThumbMRI.get(), nullptr));
6000 ThumbDisAsm.reset(ThumbTarget->createMCDisassembler(*ThumbSTI, *ThumbCtx));
Kevin Enderby930fdc72014-11-06 19:00:13 +00006001 MCContext *PtrThumbCtx = ThumbCtx.get();
6002 ThumbRelInfo.reset(
6003 ThumbTarget->createMCRelocationInfo(ThumbTripleName, *PtrThumbCtx));
6004 if (ThumbRelInfo) {
6005 ThumbSymbolizer.reset(ThumbTarget->createMCSymbolizer(
6006 ThumbTripleName, SymbolizerGetOpInfo, SymbolizerSymbolLookUp,
David Blaikie186db432015-01-18 20:45:48 +00006007 &ThumbSymbolizerInfo, PtrThumbCtx, std::move(ThumbRelInfo)));
Kevin Enderby930fdc72014-11-06 19:00:13 +00006008 ThumbDisAsm->setSymbolizer(std::move(ThumbSymbolizer));
6009 }
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006010 int ThumbAsmPrinterVariant = ThumbAsmInfo->getAssemblerDialect();
6011 ThumbIP.reset(ThumbTarget->createMCInstPrinter(
Daniel Sanders50f17232015-09-15 16:17:27 +00006012 Triple(ThumbTripleName), ThumbAsmPrinterVariant, *ThumbAsmInfo,
6013 *ThumbInstrInfo, *ThumbMRI));
Kevin Enderbybf246f52014-09-24 23:08:22 +00006014 // Set the display preference for hex vs. decimal immediates.
6015 ThumbIP->setPrintImmHex(PrintImmHex);
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006016 }
6017
Kevin Enderbyae3c1262014-11-14 21:52:18 +00006018 if (ThumbTarget && (!ThumbAsmInfo || !ThumbSTI || !ThumbDisAsm || !ThumbIP)) {
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006019 errs() << "error: couldn't initialize disassembler for target "
6020 << ThumbTripleName << '\n';
6021 return;
6022 }
6023
Charles Davis8bdfafd2013-09-01 04:28:48 +00006024 MachO::mach_header Header = MachOOF->getHeader();
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006025
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006026 // FIXME: Using the -cfg command line option, this code used to be able to
6027 // annotate relocations with the referenced symbol's name, and if this was
6028 // inside a __[cf]string section, the data it points to. This is now replaced
6029 // by the upcoming MCSymbolizer, which needs the appropriate setup done above.
Owen Andersond9243c42011-10-17 21:37:35 +00006030 std::vector<SectionRef> Sections;
6031 std::vector<SymbolRef> Symbols;
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006032 SmallVector<uint64_t, 8> FoundFns;
Kevin Enderby273ae012013-06-06 17:20:50 +00006033 uint64_t BaseSegmentAddress;
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006034
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00006035 getSectionsAndSymbols(MachOOF, Sections, Symbols, FoundFns,
Kevin Enderby273ae012013-06-06 17:20:50 +00006036 BaseSegmentAddress);
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006037
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006038 // Sort the symbols by address, just in case they didn't come in that way.
Owen Andersond9243c42011-10-17 21:37:35 +00006039 std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006040
Kevin Enderby273ae012013-06-06 17:20:50 +00006041 // Build a data in code table that is sorted on by the address of each entry.
6042 uint64_t BaseAddress = 0;
Charles Davis8bdfafd2013-09-01 04:28:48 +00006043 if (Header.filetype == MachO::MH_OBJECT)
Rafael Espindola80291272014-10-08 15:28:58 +00006044 BaseAddress = Sections[0].getAddress();
Kevin Enderby273ae012013-06-06 17:20:50 +00006045 else
6046 BaseAddress = BaseSegmentAddress;
6047 DiceTable Dices;
Kevin Enderby273ae012013-06-06 17:20:50 +00006048 for (dice_iterator DI = MachOOF->begin_dices(), DE = MachOOF->end_dices();
Rafael Espindola5e812af2014-01-30 02:49:50 +00006049 DI != DE; ++DI) {
Kevin Enderby273ae012013-06-06 17:20:50 +00006050 uint32_t Offset;
6051 DI->getOffset(Offset);
6052 Dices.push_back(std::make_pair(BaseAddress + Offset, *DI));
6053 }
6054 array_pod_sort(Dices.begin(), Dices.end());
6055
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006056#ifndef NDEBUG
6057 raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls();
6058#else
6059 raw_ostream &DebugOut = nulls();
6060#endif
6061
Ahmed Charles56440fd2014-03-06 05:51:42 +00006062 std::unique_ptr<DIContext> diContext;
Rafael Espindola9b709252013-04-13 01:45:40 +00006063 ObjectFile *DbgObj = MachOOF;
Benjamin Kramer699128e2011-09-21 01:13:19 +00006064 // Try to find debug info and set up the DIContext for it.
6065 if (UseDbg) {
Benjamin Kramer699128e2011-09-21 01:13:19 +00006066 // A separate DSym file path was specified, parse it as a macho file,
6067 // get the sections and supply it to the section name parsing machinery.
6068 if (!DSYMFile.empty()) {
Rafael Espindola48af1c22014-08-19 18:44:46 +00006069 ErrorOr<std::unique_ptr<MemoryBuffer>> BufOrErr =
Rafael Espindolaadf21f22014-07-06 17:43:13 +00006070 MemoryBuffer::getFileOrSTDIN(DSYMFile);
Rafael Espindola48af1c22014-08-19 18:44:46 +00006071 if (std::error_code EC = BufOrErr.getError()) {
Rafael Espindolaadf21f22014-07-06 17:43:13 +00006072 errs() << "llvm-objdump: " << Filename << ": " << EC.message() << '\n';
Benjamin Kramer699128e2011-09-21 01:13:19 +00006073 return;
6074 }
Rafael Espindola48af1c22014-08-19 18:44:46 +00006075 DbgObj =
6076 ObjectFile::createMachOObjectFile(BufOrErr.get()->getMemBufferRef())
6077 .get()
6078 .release();
Benjamin Kramer699128e2011-09-21 01:13:19 +00006079 }
6080
Eric Christopher7370b552012-11-12 21:40:38 +00006081 // Setup the DIContext
Zachary Turner6489d7b2015-04-23 17:37:47 +00006082 diContext.reset(new DWARFContextInMemory(*DbgObj));
Benjamin Kramer699128e2011-09-21 01:13:19 +00006083 }
6084
Colin LeMahieufcc32762015-07-29 19:08:10 +00006085 if (FilterSections.size() == 0)
Kevin Enderby95df54c2015-02-04 01:01:38 +00006086 outs() << "(" << DisSegName << "," << DisSectName << ") section\n";
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00006087
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006088 for (unsigned SectIdx = 0; SectIdx != Sections.size(); SectIdx++) {
Owen Andersond9243c42011-10-17 21:37:35 +00006089 StringRef SectName;
Kevin Enderby95df54c2015-02-04 01:01:38 +00006090 if (Sections[SectIdx].getName(SectName) || SectName != DisSectName)
6091 continue;
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006092
Rafael Espindolaa9f810b2012-12-21 03:47:03 +00006093 DataRefImpl DR = Sections[SectIdx].getRawDataRefImpl();
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006094
Rafael Espindolab0f76a42013-04-05 15:15:22 +00006095 StringRef SegmentName = MachOOF->getSectionFinalSegmentName(DR);
Kevin Enderby95df54c2015-02-04 01:01:38 +00006096 if (SegmentName != DisSegName)
Rafael Espindolaa9f810b2012-12-21 03:47:03 +00006097 continue;
6098
Rafael Espindola7fc5b872014-11-12 02:04:27 +00006099 StringRef BytesStr;
6100 Sections[SectIdx].getContents(BytesStr);
Aaron Ballman106fd7b2014-11-12 14:01:17 +00006101 ArrayRef<uint8_t> Bytes(reinterpret_cast<const uint8_t *>(BytesStr.data()),
6102 BytesStr.size());
Rafael Espindola80291272014-10-08 15:28:58 +00006103 uint64_t SectAddress = Sections[SectIdx].getAddress();
Rafael Espindolabd604f22014-11-07 00:52:15 +00006104
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006105 bool symbolTableWorked = false;
6106
Kevin Enderbybf246f52014-09-24 23:08:22 +00006107 // Create a map of symbol addresses to symbol names for use by
6108 // the SymbolizerSymbolLookUp() routine.
6109 SymbolAddressMap AddrMap;
Kevin Enderby6a221752015-03-17 17:10:57 +00006110 bool DisSymNameFound = false;
Kevin Enderbybf246f52014-09-24 23:08:22 +00006111 for (const SymbolRef &Symbol : MachOOF->symbols()) {
Rafael Espindola2fa80cc2015-06-26 12:18:49 +00006112 SymbolRef::Type ST = Symbol.getType();
Kevin Enderbybf246f52014-09-24 23:08:22 +00006113 if (ST == SymbolRef::ST_Function || ST == SymbolRef::ST_Data ||
6114 ST == SymbolRef::ST_Other) {
Rafael Espindoladea00162015-07-03 17:44:18 +00006115 uint64_t Address = Symbol.getValue();
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00006116 ErrorOr<StringRef> SymNameOrErr = Symbol.getName();
6117 if (std::error_code EC = SymNameOrErr.getError())
6118 report_fatal_error(EC.message());
6119 StringRef SymName = *SymNameOrErr;
Kevin Enderbybf246f52014-09-24 23:08:22 +00006120 AddrMap[Address] = SymName;
Kevin Enderby6a221752015-03-17 17:10:57 +00006121 if (!DisSymName.empty() && DisSymName == SymName)
6122 DisSymNameFound = true;
Kevin Enderbybf246f52014-09-24 23:08:22 +00006123 }
6124 }
David Blaikie33dd45d02015-03-23 18:39:02 +00006125 if (!DisSymName.empty() && !DisSymNameFound) {
Kevin Enderby6a221752015-03-17 17:10:57 +00006126 outs() << "Can't find -dis-symname: " << DisSymName << "\n";
6127 return;
6128 }
Kevin Enderby98c9acc2014-09-16 18:00:57 +00006129 // Set up the block of info used by the Symbolizer call backs.
Kevin Enderby8e29ec92015-03-17 22:26:11 +00006130 SymbolizerInfo.verbose = !NoSymbolicOperands;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00006131 SymbolizerInfo.O = MachOOF;
6132 SymbolizerInfo.S = Sections[SectIdx];
Kevin Enderbybf246f52014-09-24 23:08:22 +00006133 SymbolizerInfo.AddrMap = &AddrMap;
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006134 SymbolizerInfo.Sections = &Sections;
6135 SymbolizerInfo.class_name = nullptr;
6136 SymbolizerInfo.selector_name = nullptr;
6137 SymbolizerInfo.method = nullptr;
Kevin Enderby04bf6932014-10-28 23:39:46 +00006138 SymbolizerInfo.demangled_name = nullptr;
Kevin Enderby078be602014-10-23 19:53:12 +00006139 SymbolizerInfo.bindtable = nullptr;
Kevin Enderby10738222014-11-19 20:20:16 +00006140 SymbolizerInfo.adrp_addr = 0;
6141 SymbolizerInfo.adrp_inst = 0;
Kevin Enderby930fdc72014-11-06 19:00:13 +00006142 // Same for the ThumbSymbolizer
Kevin Enderby8e29ec92015-03-17 22:26:11 +00006143 ThumbSymbolizerInfo.verbose = !NoSymbolicOperands;
Kevin Enderby930fdc72014-11-06 19:00:13 +00006144 ThumbSymbolizerInfo.O = MachOOF;
6145 ThumbSymbolizerInfo.S = Sections[SectIdx];
6146 ThumbSymbolizerInfo.AddrMap = &AddrMap;
6147 ThumbSymbolizerInfo.Sections = &Sections;
6148 ThumbSymbolizerInfo.class_name = nullptr;
6149 ThumbSymbolizerInfo.selector_name = nullptr;
6150 ThumbSymbolizerInfo.method = nullptr;
6151 ThumbSymbolizerInfo.demangled_name = nullptr;
6152 ThumbSymbolizerInfo.bindtable = nullptr;
Kevin Enderby10738222014-11-19 20:20:16 +00006153 ThumbSymbolizerInfo.adrp_addr = 0;
6154 ThumbSymbolizerInfo.adrp_inst = 0;
Kevin Enderby98c9acc2014-09-16 18:00:57 +00006155
Benjamin Kramer2ad2eb52011-09-20 17:53:01 +00006156 // Disassemble symbol by symbol.
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006157 for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) {
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00006158 ErrorOr<StringRef> SymNameOrErr = Symbols[SymIdx].getName();
6159 if (std::error_code EC = SymNameOrErr.getError())
6160 report_fatal_error(EC.message());
6161 StringRef SymName = *SymNameOrErr;
Owen Andersond9243c42011-10-17 21:37:35 +00006162
Rafael Espindola2fa80cc2015-06-26 12:18:49 +00006163 SymbolRef::Type ST = Symbols[SymIdx].getType();
Kuba Breckade833222015-11-12 09:40:29 +00006164 if (ST != SymbolRef::ST_Function && ST != SymbolRef::ST_Data)
Owen Andersond9243c42011-10-17 21:37:35 +00006165 continue;
6166
Benjamin Kramer2ad2eb52011-09-20 17:53:01 +00006167 // Make sure the symbol is defined in this section.
Rafael Espindola80291272014-10-08 15:28:58 +00006168 bool containsSym = Sections[SectIdx].containsSymbol(Symbols[SymIdx]);
Owen Andersond9243c42011-10-17 21:37:35 +00006169 if (!containsSym)
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006170 continue;
6171
Kevin Enderby6a221752015-03-17 17:10:57 +00006172 // If we are only disassembling one symbol see if this is that symbol.
6173 if (!DisSymName.empty() && DisSymName != SymName)
6174 continue;
6175
Benjamin Kramer2ad2eb52011-09-20 17:53:01 +00006176 // Start at the address of the symbol relative to the section's address.
Rafael Espindoladea00162015-07-03 17:44:18 +00006177 uint64_t Start = Symbols[SymIdx].getValue();
Rafael Espindola80291272014-10-08 15:28:58 +00006178 uint64_t SectionAddress = Sections[SectIdx].getAddress();
Cameron Zwarich54478a52012-02-03 05:42:17 +00006179 Start -= SectionAddress;
Owen Andersond9243c42011-10-17 21:37:35 +00006180
Benjamin Kramer2ad2eb52011-09-20 17:53:01 +00006181 // Stop disassembling either at the beginning of the next symbol or at
6182 // the end of the section.
Kevin Enderbyedd58722012-05-15 18:57:14 +00006183 bool containsNextSym = false;
Owen Andersond9243c42011-10-17 21:37:35 +00006184 uint64_t NextSym = 0;
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006185 uint64_t NextSymIdx = SymIdx + 1;
Owen Andersond9243c42011-10-17 21:37:35 +00006186 while (Symbols.size() > NextSymIdx) {
Rafael Espindola2fa80cc2015-06-26 12:18:49 +00006187 SymbolRef::Type NextSymType = Symbols[NextSymIdx].getType();
Owen Andersond9243c42011-10-17 21:37:35 +00006188 if (NextSymType == SymbolRef::ST_Function) {
Rafael Espindola80291272014-10-08 15:28:58 +00006189 containsNextSym =
6190 Sections[SectIdx].containsSymbol(Symbols[NextSymIdx]);
Rafael Espindoladea00162015-07-03 17:44:18 +00006191 NextSym = Symbols[NextSymIdx].getValue();
Cameron Zwarich54478a52012-02-03 05:42:17 +00006192 NextSym -= SectionAddress;
Owen Andersond9243c42011-10-17 21:37:35 +00006193 break;
6194 }
6195 ++NextSymIdx;
6196 }
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006197
Rafael Espindola80291272014-10-08 15:28:58 +00006198 uint64_t SectSize = Sections[SectIdx].getSize();
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006199 uint64_t End = containsNextSym ? NextSym : SectSize;
Owen Andersond9243c42011-10-17 21:37:35 +00006200 uint64_t Size;
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006201
6202 symbolTableWorked = true;
Rafael Espindolabd604f22014-11-07 00:52:15 +00006203
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006204 DataRefImpl Symb = Symbols[SymIdx].getRawDataRefImpl();
6205 bool isThumb =
6206 (MachOOF->getSymbolFlags(Symb) & SymbolRef::SF_Thumb) && ThumbTarget;
6207
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006208 outs() << SymName << ":\n";
6209 DILineInfo lastLine;
6210 for (uint64_t Index = Start; Index < End; Index += Size) {
6211 MCInst Inst;
Owen Andersond9243c42011-10-17 21:37:35 +00006212
Kevin Enderbybf246f52014-09-24 23:08:22 +00006213 uint64_t PC = SectAddress + Index;
Kevin Enderbyab5e6c92015-03-17 21:07:39 +00006214 if (!NoLeadingAddr) {
6215 if (FullLeadingAddr) {
6216 if (MachOOF->is64Bit())
6217 outs() << format("%016" PRIx64, PC);
6218 else
6219 outs() << format("%08" PRIx64, PC);
6220 } else {
6221 outs() << format("%8" PRIx64 ":", PC);
6222 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00006223 }
6224 if (!NoShowRawInsn)
6225 outs() << "\t";
Kevin Enderby273ae012013-06-06 17:20:50 +00006226
6227 // Check the data in code table here to see if this is data not an
6228 // instruction to be disassembled.
6229 DiceTable Dice;
Kevin Enderbybf246f52014-09-24 23:08:22 +00006230 Dice.push_back(std::make_pair(PC, DiceRef()));
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006231 dice_table_iterator DTI =
6232 std::search(Dices.begin(), Dices.end(), Dice.begin(), Dice.end(),
6233 compareDiceTableEntries);
6234 if (DTI != Dices.end()) {
Kevin Enderby273ae012013-06-06 17:20:50 +00006235 uint16_t Length;
6236 DTI->second.getLength(Length);
Kevin Enderby273ae012013-06-06 17:20:50 +00006237 uint16_t Kind;
6238 DTI->second.getKind(Kind);
Colin LeMahieufc32b1b2015-03-18 19:27:31 +00006239 Size = DumpDataInCode(Bytes.data() + Index, Length, Kind);
Kevin Enderby930fdc72014-11-06 19:00:13 +00006240 if ((Kind == MachO::DICE_KIND_JUMP_TABLE8) &&
6241 (PC == (DTI->first + Length - 1)) && (Length & 1))
6242 Size++;
Kevin Enderby273ae012013-06-06 17:20:50 +00006243 continue;
6244 }
6245
Kevin Enderbybf246f52014-09-24 23:08:22 +00006246 SmallVector<char, 64> AnnotationsBytes;
6247 raw_svector_ostream Annotations(AnnotationsBytes);
6248
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006249 bool gotInst;
6250 if (isThumb)
Rafael Espindola7fc5b872014-11-12 02:04:27 +00006251 gotInst = ThumbDisAsm->getInstruction(Inst, Size, Bytes.slice(Index),
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006252 PC, DebugOut, Annotations);
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006253 else
Rafael Espindola7fc5b872014-11-12 02:04:27 +00006254 gotInst = DisAsm->getInstruction(Inst, Size, Bytes.slice(Index), PC,
Kevin Enderbybf246f52014-09-24 23:08:22 +00006255 DebugOut, Annotations);
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006256 if (gotInst) {
Kevin Enderbybf246f52014-09-24 23:08:22 +00006257 if (!NoShowRawInsn) {
Craig Topper0013be12015-09-21 05:32:41 +00006258 dumpBytes(makeArrayRef(Bytes.data() + Index, Size), outs());
Kevin Enderbybf246f52014-09-24 23:08:22 +00006259 }
6260 formatted_raw_ostream FormattedOS(outs());
Kevin Enderbybf246f52014-09-24 23:08:22 +00006261 StringRef AnnotationsStr = Annotations.str();
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006262 if (isThumb)
Akira Hatanakab46d0232015-03-27 20:36:02 +00006263 ThumbIP->printInst(&Inst, FormattedOS, AnnotationsStr, *ThumbSTI);
Kevin Enderbyec5ca032014-08-18 20:21:02 +00006264 else
Akira Hatanaka1d079942015-03-28 20:44:05 +00006265 IP->printInst(&Inst, FormattedOS, AnnotationsStr, *STI);
Kevin Enderbybf246f52014-09-24 23:08:22 +00006266 emitComments(CommentStream, CommentsToEmit, FormattedOS, *AsmInfo);
Owen Andersond9243c42011-10-17 21:37:35 +00006267
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006268 // Print debug info.
6269 if (diContext) {
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006270 DILineInfo dli = diContext->getLineInfoForAddress(PC);
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006271 // Print valid line info if it changed.
Alexey Samsonovd0109992014-04-18 21:36:39 +00006272 if (dli != lastLine && dli.Line != 0)
6273 outs() << "\t## " << dli.FileName << ':' << dli.Line << ':'
6274 << dli.Column;
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006275 lastLine = dli;
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006276 }
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006277 outs() << "\n";
6278 } else {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006279 unsigned int Arch = MachOOF->getArch();
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006280 if (Arch == Triple::x86_64 || Arch == Triple::x86) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006281 outs() << format("\t.byte 0x%02x #bad opcode\n",
6282 *(Bytes.data() + Index) & 0xff);
6283 Size = 1; // skip exactly one illegible byte and move on.
Kevin Enderbyae3c1262014-11-14 21:52:18 +00006284 } else if (Arch == Triple::aarch64) {
6285 uint32_t opcode = (*(Bytes.data() + Index) & 0xff) |
6286 (*(Bytes.data() + Index + 1) & 0xff) << 8 |
6287 (*(Bytes.data() + Index + 2) & 0xff) << 16 |
6288 (*(Bytes.data() + Index + 3) & 0xff) << 24;
6289 outs() << format("\t.long\t0x%08x\n", opcode);
6290 Size = 4;
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006291 } else {
6292 errs() << "llvm-objdump: warning: invalid instruction encoding\n";
6293 if (Size == 0)
6294 Size = 1; // skip illegible bytes
6295 }
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006296 }
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006297 }
6298 }
Ahmed Bougachaaa790682013-05-24 01:07:04 +00006299 if (!symbolTableWorked) {
Rafael Espindola80291272014-10-08 15:28:58 +00006300 // Reading the symbol table didn't work, disassemble the whole section.
6301 uint64_t SectAddress = Sections[SectIdx].getAddress();
6302 uint64_t SectSize = Sections[SectIdx].getSize();
Kevin Enderbybadd1002012-05-18 00:13:56 +00006303 uint64_t InstSize;
6304 for (uint64_t Index = 0; Index < SectSize; Index += InstSize) {
Bill Wendling4e68e062012-07-19 00:17:40 +00006305 MCInst Inst;
Kevin Enderbybadd1002012-05-18 00:13:56 +00006306
Kevin Enderbybf246f52014-09-24 23:08:22 +00006307 uint64_t PC = SectAddress + Index;
Rafael Espindola7fc5b872014-11-12 02:04:27 +00006308 if (DisAsm->getInstruction(Inst, InstSize, Bytes.slice(Index), PC,
6309 DebugOut, nulls())) {
Kevin Enderbyab5e6c92015-03-17 21:07:39 +00006310 if (!NoLeadingAddr) {
6311 if (FullLeadingAddr) {
6312 if (MachOOF->is64Bit())
6313 outs() << format("%016" PRIx64, PC);
6314 else
6315 outs() << format("%08" PRIx64, PC);
6316 } else {
6317 outs() << format("%8" PRIx64 ":", PC);
6318 }
Kevin Enderbybf246f52014-09-24 23:08:22 +00006319 }
6320 if (!NoShowRawInsn) {
6321 outs() << "\t";
Craig Topper0013be12015-09-21 05:32:41 +00006322 dumpBytes(makeArrayRef(Bytes.data() + Index, InstSize), outs());
Kevin Enderbybf246f52014-09-24 23:08:22 +00006323 }
Akira Hatanaka1d079942015-03-28 20:44:05 +00006324 IP->printInst(&Inst, outs(), "", *STI);
Bill Wendling4e68e062012-07-19 00:17:40 +00006325 outs() << "\n";
6326 } else {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006327 unsigned int Arch = MachOOF->getArch();
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006328 if (Arch == Triple::x86_64 || Arch == Triple::x86) {
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006329 outs() << format("\t.byte 0x%02x #bad opcode\n",
6330 *(Bytes.data() + Index) & 0xff);
6331 InstSize = 1; // skip exactly one illegible byte and move on.
6332 } else {
6333 errs() << "llvm-objdump: warning: invalid instruction encoding\n";
6334 if (InstSize == 0)
6335 InstSize = 1; // skip illegible bytes
6336 }
Bill Wendling4e68e062012-07-19 00:17:40 +00006337 }
Kevin Enderbybadd1002012-05-18 00:13:56 +00006338 }
6339 }
Kevin Enderbyef3ad2f2014-12-04 23:56:27 +00006340 // The TripleName's need to be reset if we are called again for a different
6341 // archtecture.
6342 TripleName = "";
6343 ThumbTripleName = "";
6344
Kevin Enderby6f326ce2014-10-23 19:37:31 +00006345 if (SymbolizerInfo.method != nullptr)
6346 free(SymbolizerInfo.method);
Kevin Enderby04bf6932014-10-28 23:39:46 +00006347 if (SymbolizerInfo.demangled_name != nullptr)
6348 free(SymbolizerInfo.demangled_name);
Kevin Enderby078be602014-10-23 19:53:12 +00006349 if (SymbolizerInfo.bindtable != nullptr)
6350 delete SymbolizerInfo.bindtable;
Kevin Enderby930fdc72014-11-06 19:00:13 +00006351 if (ThumbSymbolizerInfo.method != nullptr)
6352 free(ThumbSymbolizerInfo.method);
6353 if (ThumbSymbolizerInfo.demangled_name != nullptr)
6354 free(ThumbSymbolizerInfo.demangled_name);
6355 if (ThumbSymbolizerInfo.bindtable != nullptr)
6356 delete ThumbSymbolizerInfo.bindtable;
Benjamin Kramer43a772e2011-09-19 17:56:04 +00006357 }
6358}
Tim Northover4bd286a2014-08-01 13:07:19 +00006359
Tim Northover39c70bb2014-08-12 11:52:59 +00006360//===----------------------------------------------------------------------===//
6361// __compact_unwind section dumping
6362//===----------------------------------------------------------------------===//
6363
Tim Northover4bd286a2014-08-01 13:07:19 +00006364namespace {
Tim Northover39c70bb2014-08-12 11:52:59 +00006365
6366template <typename T> static uint64_t readNext(const char *&Buf) {
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006367 using llvm::support::little;
6368 using llvm::support::unaligned;
Tim Northover39c70bb2014-08-12 11:52:59 +00006369
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006370 uint64_t Val = support::endian::read<T, little, unaligned>(Buf);
6371 Buf += sizeof(T);
6372 return Val;
6373}
Tim Northover39c70bb2014-08-12 11:52:59 +00006374
Tim Northover4bd286a2014-08-01 13:07:19 +00006375struct CompactUnwindEntry {
6376 uint32_t OffsetInSection;
6377
6378 uint64_t FunctionAddr;
6379 uint32_t Length;
6380 uint32_t CompactEncoding;
6381 uint64_t PersonalityAddr;
6382 uint64_t LSDAAddr;
6383
6384 RelocationRef FunctionReloc;
6385 RelocationRef PersonalityReloc;
6386 RelocationRef LSDAReloc;
6387
6388 CompactUnwindEntry(StringRef Contents, unsigned Offset, bool Is64)
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006389 : OffsetInSection(Offset) {
Tim Northover4bd286a2014-08-01 13:07:19 +00006390 if (Is64)
6391 read<uint64_t>(Contents.data() + Offset);
6392 else
6393 read<uint32_t>(Contents.data() + Offset);
6394 }
6395
6396private:
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006397 template <typename UIntPtr> void read(const char *Buf) {
Tim Northover4bd286a2014-08-01 13:07:19 +00006398 FunctionAddr = readNext<UIntPtr>(Buf);
6399 Length = readNext<uint32_t>(Buf);
6400 CompactEncoding = readNext<uint32_t>(Buf);
6401 PersonalityAddr = readNext<UIntPtr>(Buf);
6402 LSDAAddr = readNext<UIntPtr>(Buf);
6403 }
6404};
6405}
6406
6407/// Given a relocation from __compact_unwind, consisting of the RelocationRef
6408/// and data being relocated, determine the best base Name and Addend to use for
6409/// display purposes.
6410///
6411/// 1. An Extern relocation will directly reference a symbol (and the data is
6412/// then already an addend), so use that.
6413/// 2. Otherwise the data is an offset in the object file's layout; try to find
6414// a symbol before it in the same section, and use the offset from there.
6415/// 3. Finally, if all that fails, fall back to an offset from the start of the
6416/// referenced section.
6417static void findUnwindRelocNameAddend(const MachOObjectFile *Obj,
6418 std::map<uint64_t, SymbolRef> &Symbols,
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006419 const RelocationRef &Reloc, uint64_t Addr,
Tim Northover4bd286a2014-08-01 13:07:19 +00006420 StringRef &Name, uint64_t &Addend) {
6421 if (Reloc.getSymbol() != Obj->symbol_end()) {
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00006422 ErrorOr<StringRef> NameOrErr = Reloc.getSymbol()->getName();
6423 if (std::error_code EC = NameOrErr.getError())
6424 report_fatal_error(EC.message());
6425 Name = *NameOrErr;
Tim Northover4bd286a2014-08-01 13:07:19 +00006426 Addend = Addr;
6427 return;
6428 }
6429
6430 auto RE = Obj->getRelocation(Reloc.getRawDataRefImpl());
Keno Fischerc780e8e2015-05-21 21:24:32 +00006431 SectionRef RelocSection = Obj->getAnyRelocationSection(RE);
Tim Northover4bd286a2014-08-01 13:07:19 +00006432
Rafael Espindola80291272014-10-08 15:28:58 +00006433 uint64_t SectionAddr = RelocSection.getAddress();
Tim Northover4bd286a2014-08-01 13:07:19 +00006434
6435 auto Sym = Symbols.upper_bound(Addr);
6436 if (Sym == Symbols.begin()) {
6437 // The first symbol in the object is after this reference, the best we can
6438 // do is section-relative notation.
6439 RelocSection.getName(Name);
6440 Addend = Addr - SectionAddr;
6441 return;
6442 }
6443
6444 // Go back one so that SymbolAddress <= Addr.
6445 --Sym;
6446
Rafael Espindola8bab8892015-08-07 23:27:14 +00006447 section_iterator SymSection = *Sym->second.getSection();
Tim Northover4bd286a2014-08-01 13:07:19 +00006448 if (RelocSection == *SymSection) {
6449 // There's a valid symbol in the same section before this reference.
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +00006450 ErrorOr<StringRef> NameOrErr = Sym->second.getName();
6451 if (std::error_code EC = NameOrErr.getError())
6452 report_fatal_error(EC.message());
6453 Name = *NameOrErr;
Tim Northover4bd286a2014-08-01 13:07:19 +00006454 Addend = Addr - Sym->first;
6455 return;
6456 }
6457
6458 // There is a symbol before this reference, but it's in a different
6459 // section. Probably not helpful to mention it, so use the section name.
6460 RelocSection.getName(Name);
6461 Addend = Addr - SectionAddr;
6462}
6463
6464static void printUnwindRelocDest(const MachOObjectFile *Obj,
6465 std::map<uint64_t, SymbolRef> &Symbols,
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006466 const RelocationRef &Reloc, uint64_t Addr) {
Tim Northover4bd286a2014-08-01 13:07:19 +00006467 StringRef Name;
6468 uint64_t Addend;
6469
Rafael Espindola854038e2015-06-26 14:51:16 +00006470 if (!Reloc.getObject())
Tim Northover0b0add52014-09-09 10:45:06 +00006471 return;
6472
Tim Northover4bd286a2014-08-01 13:07:19 +00006473 findUnwindRelocNameAddend(Obj, Symbols, Reloc, Addr, Name, Addend);
6474
6475 outs() << Name;
6476 if (Addend)
Tim Northover63a25622014-08-11 09:14:06 +00006477 outs() << " + " << format("0x%" PRIx64, Addend);
Tim Northover4bd286a2014-08-01 13:07:19 +00006478}
6479
6480static void
6481printMachOCompactUnwindSection(const MachOObjectFile *Obj,
6482 std::map<uint64_t, SymbolRef> &Symbols,
6483 const SectionRef &CompactUnwind) {
6484
6485 assert(Obj->isLittleEndian() &&
6486 "There should not be a big-endian .o with __compact_unwind");
6487
6488 bool Is64 = Obj->is64Bit();
6489 uint32_t PointerSize = Is64 ? sizeof(uint64_t) : sizeof(uint32_t);
6490 uint32_t EntrySize = 3 * PointerSize + 2 * sizeof(uint32_t);
6491
6492 StringRef Contents;
6493 CompactUnwind.getContents(Contents);
6494
6495 SmallVector<CompactUnwindEntry, 4> CompactUnwinds;
6496
6497 // First populate the initial raw offsets, encodings and so on from the entry.
6498 for (unsigned Offset = 0; Offset < Contents.size(); Offset += EntrySize) {
6499 CompactUnwindEntry Entry(Contents.data(), Offset, Is64);
6500 CompactUnwinds.push_back(Entry);
6501 }
6502
6503 // Next we need to look at the relocations to find out what objects are
6504 // actually being referred to.
6505 for (const RelocationRef &Reloc : CompactUnwind.relocations()) {
Rafael Espindola96d071c2015-06-29 23:29:12 +00006506 uint64_t RelocAddress = Reloc.getOffset();
Tim Northover4bd286a2014-08-01 13:07:19 +00006507
6508 uint32_t EntryIdx = RelocAddress / EntrySize;
6509 uint32_t OffsetInEntry = RelocAddress - EntryIdx * EntrySize;
6510 CompactUnwindEntry &Entry = CompactUnwinds[EntryIdx];
6511
6512 if (OffsetInEntry == 0)
6513 Entry.FunctionReloc = Reloc;
6514 else if (OffsetInEntry == PointerSize + 2 * sizeof(uint32_t))
6515 Entry.PersonalityReloc = Reloc;
6516 else if (OffsetInEntry == 2 * PointerSize + 2 * sizeof(uint32_t))
6517 Entry.LSDAReloc = Reloc;
6518 else
6519 llvm_unreachable("Unexpected relocation in __compact_unwind section");
6520 }
6521
6522 // Finally, we're ready to print the data we've gathered.
6523 outs() << "Contents of __compact_unwind section:\n";
6524 for (auto &Entry : CompactUnwinds) {
Tim Northover06af2602014-08-08 12:08:51 +00006525 outs() << " Entry at offset "
6526 << format("0x%" PRIx32, Entry.OffsetInSection) << ":\n";
Tim Northover4bd286a2014-08-01 13:07:19 +00006527
6528 // 1. Start of the region this entry applies to.
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006529 outs() << " start: " << format("0x%" PRIx64,
6530 Entry.FunctionAddr) << ' ';
6531 printUnwindRelocDest(Obj, Symbols, Entry.FunctionReloc, Entry.FunctionAddr);
Tim Northover4bd286a2014-08-01 13:07:19 +00006532 outs() << '\n';
6533
6534 // 2. Length of the region this entry applies to.
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006535 outs() << " length: " << format("0x%" PRIx32, Entry.Length)
6536 << '\n';
Tim Northover4bd286a2014-08-01 13:07:19 +00006537 // 3. The 32-bit compact encoding.
6538 outs() << " compact encoding: "
Tim Northoverb911bf82014-08-08 12:00:09 +00006539 << format("0x%08" PRIx32, Entry.CompactEncoding) << '\n';
Tim Northover4bd286a2014-08-01 13:07:19 +00006540
6541 // 4. The personality function, if present.
Rafael Espindola854038e2015-06-26 14:51:16 +00006542 if (Entry.PersonalityReloc.getObject()) {
Tim Northover4bd286a2014-08-01 13:07:19 +00006543 outs() << " personality function: "
Tim Northoverb911bf82014-08-08 12:00:09 +00006544 << format("0x%" PRIx64, Entry.PersonalityAddr) << ' ';
Tim Northover4bd286a2014-08-01 13:07:19 +00006545 printUnwindRelocDest(Obj, Symbols, Entry.PersonalityReloc,
6546 Entry.PersonalityAddr);
6547 outs() << '\n';
6548 }
6549
6550 // 5. This entry's language-specific data area.
Rafael Espindola854038e2015-06-26 14:51:16 +00006551 if (Entry.LSDAReloc.getObject()) {
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006552 outs() << " LSDA: " << format("0x%" PRIx64,
6553 Entry.LSDAAddr) << ' ';
Tim Northover4bd286a2014-08-01 13:07:19 +00006554 printUnwindRelocDest(Obj, Symbols, Entry.LSDAReloc, Entry.LSDAAddr);
6555 outs() << '\n';
6556 }
6557 }
6558}
6559
Tim Northover39c70bb2014-08-12 11:52:59 +00006560//===----------------------------------------------------------------------===//
6561// __unwind_info section dumping
6562//===----------------------------------------------------------------------===//
6563
6564static void printRegularSecondLevelUnwindPage(const char *PageStart) {
6565 const char *Pos = PageStart;
6566 uint32_t Kind = readNext<uint32_t>(Pos);
6567 (void)Kind;
6568 assert(Kind == 2 && "kind for a regular 2nd level index should be 2");
6569
6570 uint16_t EntriesStart = readNext<uint16_t>(Pos);
6571 uint16_t NumEntries = readNext<uint16_t>(Pos);
6572
6573 Pos = PageStart + EntriesStart;
6574 for (unsigned i = 0; i < NumEntries; ++i) {
6575 uint32_t FunctionOffset = readNext<uint32_t>(Pos);
6576 uint32_t Encoding = readNext<uint32_t>(Pos);
6577
6578 outs() << " [" << i << "]: "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006579 << "function offset=" << format("0x%08" PRIx32, FunctionOffset)
6580 << ", "
6581 << "encoding=" << format("0x%08" PRIx32, Encoding) << '\n';
Tim Northover39c70bb2014-08-12 11:52:59 +00006582 }
6583}
6584
6585static void printCompressedSecondLevelUnwindPage(
6586 const char *PageStart, uint32_t FunctionBase,
6587 const SmallVectorImpl<uint32_t> &CommonEncodings) {
6588 const char *Pos = PageStart;
6589 uint32_t Kind = readNext<uint32_t>(Pos);
6590 (void)Kind;
6591 assert(Kind == 3 && "kind for a compressed 2nd level index should be 3");
6592
6593 uint16_t EntriesStart = readNext<uint16_t>(Pos);
6594 uint16_t NumEntries = readNext<uint16_t>(Pos);
6595
6596 uint16_t EncodingsStart = readNext<uint16_t>(Pos);
6597 readNext<uint16_t>(Pos);
Aaron Ballman80930af2014-08-14 13:53:19 +00006598 const auto *PageEncodings = reinterpret_cast<const support::ulittle32_t *>(
6599 PageStart + EncodingsStart);
Tim Northover39c70bb2014-08-12 11:52:59 +00006600
6601 Pos = PageStart + EntriesStart;
6602 for (unsigned i = 0; i < NumEntries; ++i) {
6603 uint32_t Entry = readNext<uint32_t>(Pos);
6604 uint32_t FunctionOffset = FunctionBase + (Entry & 0xffffff);
6605 uint32_t EncodingIdx = Entry >> 24;
6606
6607 uint32_t Encoding;
6608 if (EncodingIdx < CommonEncodings.size())
6609 Encoding = CommonEncodings[EncodingIdx];
6610 else
6611 Encoding = PageEncodings[EncodingIdx - CommonEncodings.size()];
6612
6613 outs() << " [" << i << "]: "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006614 << "function offset=" << format("0x%08" PRIx32, FunctionOffset)
6615 << ", "
6616 << "encoding[" << EncodingIdx
6617 << "]=" << format("0x%08" PRIx32, Encoding) << '\n';
Tim Northover39c70bb2014-08-12 11:52:59 +00006618 }
6619}
6620
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006621static void printMachOUnwindInfoSection(const MachOObjectFile *Obj,
6622 std::map<uint64_t, SymbolRef> &Symbols,
6623 const SectionRef &UnwindInfo) {
Tim Northover39c70bb2014-08-12 11:52:59 +00006624
6625 assert(Obj->isLittleEndian() &&
6626 "There should not be a big-endian .o with __unwind_info");
6627
6628 outs() << "Contents of __unwind_info section:\n";
6629
6630 StringRef Contents;
6631 UnwindInfo.getContents(Contents);
6632 const char *Pos = Contents.data();
6633
6634 //===----------------------------------
6635 // Section header
6636 //===----------------------------------
6637
6638 uint32_t Version = readNext<uint32_t>(Pos);
6639 outs() << " Version: "
6640 << format("0x%" PRIx32, Version) << '\n';
6641 assert(Version == 1 && "only understand version 1");
6642
6643 uint32_t CommonEncodingsStart = readNext<uint32_t>(Pos);
6644 outs() << " Common encodings array section offset: "
6645 << format("0x%" PRIx32, CommonEncodingsStart) << '\n';
6646 uint32_t NumCommonEncodings = readNext<uint32_t>(Pos);
6647 outs() << " Number of common encodings in array: "
6648 << format("0x%" PRIx32, NumCommonEncodings) << '\n';
6649
6650 uint32_t PersonalitiesStart = readNext<uint32_t>(Pos);
6651 outs() << " Personality function array section offset: "
6652 << format("0x%" PRIx32, PersonalitiesStart) << '\n';
6653 uint32_t NumPersonalities = readNext<uint32_t>(Pos);
6654 outs() << " Number of personality functions in array: "
6655 << format("0x%" PRIx32, NumPersonalities) << '\n';
6656
6657 uint32_t IndicesStart = readNext<uint32_t>(Pos);
6658 outs() << " Index array section offset: "
6659 << format("0x%" PRIx32, IndicesStart) << '\n';
6660 uint32_t NumIndices = readNext<uint32_t>(Pos);
6661 outs() << " Number of indices in array: "
6662 << format("0x%" PRIx32, NumIndices) << '\n';
6663
6664 //===----------------------------------
6665 // A shared list of common encodings
6666 //===----------------------------------
6667
6668 // These occupy indices in the range [0, N] whenever an encoding is referenced
6669 // from a compressed 2nd level index table. In practice the linker only
6670 // creates ~128 of these, so that indices are available to embed encodings in
6671 // the 2nd level index.
6672
6673 SmallVector<uint32_t, 64> CommonEncodings;
6674 outs() << " Common encodings: (count = " << NumCommonEncodings << ")\n";
6675 Pos = Contents.data() + CommonEncodingsStart;
6676 for (unsigned i = 0; i < NumCommonEncodings; ++i) {
6677 uint32_t Encoding = readNext<uint32_t>(Pos);
6678 CommonEncodings.push_back(Encoding);
6679
6680 outs() << " encoding[" << i << "]: " << format("0x%08" PRIx32, Encoding)
6681 << '\n';
6682 }
6683
Tim Northover39c70bb2014-08-12 11:52:59 +00006684 //===----------------------------------
6685 // Personality functions used in this executable
6686 //===----------------------------------
6687
6688 // There should be only a handful of these (one per source language,
6689 // roughly). Particularly since they only get 2 bits in the compact encoding.
6690
6691 outs() << " Personality functions: (count = " << NumPersonalities << ")\n";
6692 Pos = Contents.data() + PersonalitiesStart;
6693 for (unsigned i = 0; i < NumPersonalities; ++i) {
6694 uint32_t PersonalityFn = readNext<uint32_t>(Pos);
6695 outs() << " personality[" << i + 1
6696 << "]: " << format("0x%08" PRIx32, PersonalityFn) << '\n';
6697 }
6698
6699 //===----------------------------------
6700 // The level 1 index entries
6701 //===----------------------------------
6702
6703 // These specify an approximate place to start searching for the more detailed
6704 // information, sorted by PC.
6705
6706 struct IndexEntry {
6707 uint32_t FunctionOffset;
6708 uint32_t SecondLevelPageStart;
6709 uint32_t LSDAStart;
6710 };
6711
6712 SmallVector<IndexEntry, 4> IndexEntries;
6713
6714 outs() << " Top level indices: (count = " << NumIndices << ")\n";
6715 Pos = Contents.data() + IndicesStart;
6716 for (unsigned i = 0; i < NumIndices; ++i) {
6717 IndexEntry Entry;
6718
6719 Entry.FunctionOffset = readNext<uint32_t>(Pos);
6720 Entry.SecondLevelPageStart = readNext<uint32_t>(Pos);
6721 Entry.LSDAStart = readNext<uint32_t>(Pos);
6722 IndexEntries.push_back(Entry);
6723
6724 outs() << " [" << i << "]: "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006725 << "function offset=" << format("0x%08" PRIx32, Entry.FunctionOffset)
6726 << ", "
Tim Northover39c70bb2014-08-12 11:52:59 +00006727 << "2nd level page offset="
6728 << format("0x%08" PRIx32, Entry.SecondLevelPageStart) << ", "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006729 << "LSDA offset=" << format("0x%08" PRIx32, Entry.LSDAStart) << '\n';
Tim Northover39c70bb2014-08-12 11:52:59 +00006730 }
6731
Tim Northover39c70bb2014-08-12 11:52:59 +00006732 //===----------------------------------
6733 // Next come the LSDA tables
6734 //===----------------------------------
6735
6736 // The LSDA layout is rather implicit: it's a contiguous array of entries from
6737 // the first top-level index's LSDAOffset to the last (sentinel).
6738
6739 outs() << " LSDA descriptors:\n";
6740 Pos = Contents.data() + IndexEntries[0].LSDAStart;
6741 int NumLSDAs = (IndexEntries.back().LSDAStart - IndexEntries[0].LSDAStart) /
6742 (2 * sizeof(uint32_t));
6743 for (int i = 0; i < NumLSDAs; ++i) {
6744 uint32_t FunctionOffset = readNext<uint32_t>(Pos);
6745 uint32_t LSDAOffset = readNext<uint32_t>(Pos);
6746 outs() << " [" << i << "]: "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00006747 << "function offset=" << format("0x%08" PRIx32, FunctionOffset)
6748 << ", "
6749 << "LSDA offset=" << format("0x%08" PRIx32, LSDAOffset) << '\n';
Tim Northover39c70bb2014-08-12 11:52:59 +00006750 }
6751
6752 //===----------------------------------
6753 // Finally, the 2nd level indices
6754 //===----------------------------------
6755
6756 // Generally these are 4K in size, and have 2 possible forms:
6757 // + Regular stores up to 511 entries with disparate encodings
6758 // + Compressed stores up to 1021 entries if few enough compact encoding
6759 // values are used.
6760 outs() << " Second level indices:\n";
6761 for (unsigned i = 0; i < IndexEntries.size() - 1; ++i) {
6762 // The final sentinel top-level index has no associated 2nd level page
6763 if (IndexEntries[i].SecondLevelPageStart == 0)
6764 break;
6765
6766 outs() << " Second level index[" << i << "]: "
6767 << "offset in section="
6768 << format("0x%08" PRIx32, IndexEntries[i].SecondLevelPageStart)
6769 << ", "
6770 << "base function offset="
6771 << format("0x%08" PRIx32, IndexEntries[i].FunctionOffset) << '\n';
6772
6773 Pos = Contents.data() + IndexEntries[i].SecondLevelPageStart;
Aaron Ballman80930af2014-08-14 13:53:19 +00006774 uint32_t Kind = *reinterpret_cast<const support::ulittle32_t *>(Pos);
Tim Northover39c70bb2014-08-12 11:52:59 +00006775 if (Kind == 2)
6776 printRegularSecondLevelUnwindPage(Pos);
6777 else if (Kind == 3)
6778 printCompressedSecondLevelUnwindPage(Pos, IndexEntries[i].FunctionOffset,
6779 CommonEncodings);
6780 else
6781 llvm_unreachable("Do not know how to print this kind of 2nd level page");
Tim Northover39c70bb2014-08-12 11:52:59 +00006782 }
6783}
6784
Tim Northover4bd286a2014-08-01 13:07:19 +00006785void llvm::printMachOUnwindInfo(const MachOObjectFile *Obj) {
6786 std::map<uint64_t, SymbolRef> Symbols;
6787 for (const SymbolRef &SymRef : Obj->symbols()) {
6788 // Discard any undefined or absolute symbols. They're not going to take part
6789 // in the convenience lookup for unwind info and just take up resources.
Rafael Espindola8bab8892015-08-07 23:27:14 +00006790 section_iterator Section = *SymRef.getSection();
Tim Northover4bd286a2014-08-01 13:07:19 +00006791 if (Section == Obj->section_end())
6792 continue;
6793
Rafael Espindoladea00162015-07-03 17:44:18 +00006794 uint64_t Addr = SymRef.getValue();
Tim Northover4bd286a2014-08-01 13:07:19 +00006795 Symbols.insert(std::make_pair(Addr, SymRef));
6796 }
6797
6798 for (const SectionRef &Section : Obj->sections()) {
6799 StringRef SectName;
6800 Section.getName(SectName);
6801 if (SectName == "__compact_unwind")
6802 printMachOCompactUnwindSection(Obj, Symbols, Section);
6803 else if (SectName == "__unwind_info")
Tim Northover39c70bb2014-08-12 11:52:59 +00006804 printMachOUnwindInfoSection(Obj, Symbols, Section);
Tim Northover4bd286a2014-08-01 13:07:19 +00006805 else if (SectName == "__eh_frame")
6806 outs() << "llvm-objdump: warning: unhandled __eh_frame section\n";
Tim Northover4bd286a2014-08-01 13:07:19 +00006807 }
6808}
Kevin Enderbyb76d3862014-08-22 20:35:18 +00006809
6810static void PrintMachHeader(uint32_t magic, uint32_t cputype,
6811 uint32_t cpusubtype, uint32_t filetype,
6812 uint32_t ncmds, uint32_t sizeofcmds, uint32_t flags,
6813 bool verbose) {
6814 outs() << "Mach header\n";
6815 outs() << " magic cputype cpusubtype caps filetype ncmds "
6816 "sizeofcmds flags\n";
6817 if (verbose) {
6818 if (magic == MachO::MH_MAGIC)
6819 outs() << " MH_MAGIC";
6820 else if (magic == MachO::MH_MAGIC_64)
6821 outs() << "MH_MAGIC_64";
6822 else
6823 outs() << format(" 0x%08" PRIx32, magic);
6824 switch (cputype) {
6825 case MachO::CPU_TYPE_I386:
6826 outs() << " I386";
6827 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6828 case MachO::CPU_SUBTYPE_I386_ALL:
6829 outs() << " ALL";
6830 break;
6831 default:
6832 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6833 break;
6834 }
6835 break;
6836 case MachO::CPU_TYPE_X86_64:
6837 outs() << " X86_64";
Kevin Enderby131d1772015-01-09 19:22:37 +00006838 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6839 case MachO::CPU_SUBTYPE_X86_64_ALL:
6840 outs() << " ALL";
6841 break;
6842 case MachO::CPU_SUBTYPE_X86_64_H:
6843 outs() << " Haswell";
6844 break;
6845 default:
6846 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6847 break;
6848 }
Kevin Enderbyb76d3862014-08-22 20:35:18 +00006849 break;
6850 case MachO::CPU_TYPE_ARM:
6851 outs() << " ARM";
6852 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6853 case MachO::CPU_SUBTYPE_ARM_ALL:
6854 outs() << " ALL";
6855 break;
6856 case MachO::CPU_SUBTYPE_ARM_V4T:
6857 outs() << " V4T";
6858 break;
6859 case MachO::CPU_SUBTYPE_ARM_V5TEJ:
6860 outs() << " V5TEJ";
6861 break;
6862 case MachO::CPU_SUBTYPE_ARM_XSCALE:
6863 outs() << " XSCALE";
6864 break;
6865 case MachO::CPU_SUBTYPE_ARM_V6:
6866 outs() << " V6";
6867 break;
6868 case MachO::CPU_SUBTYPE_ARM_V6M:
6869 outs() << " V6M";
6870 break;
6871 case MachO::CPU_SUBTYPE_ARM_V7:
6872 outs() << " V7";
6873 break;
6874 case MachO::CPU_SUBTYPE_ARM_V7EM:
6875 outs() << " V7EM";
6876 break;
6877 case MachO::CPU_SUBTYPE_ARM_V7K:
6878 outs() << " V7K";
6879 break;
6880 case MachO::CPU_SUBTYPE_ARM_V7M:
6881 outs() << " V7M";
6882 break;
6883 case MachO::CPU_SUBTYPE_ARM_V7S:
6884 outs() << " V7S";
6885 break;
6886 default:
6887 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6888 break;
6889 }
6890 break;
6891 case MachO::CPU_TYPE_ARM64:
6892 outs() << " ARM64";
6893 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6894 case MachO::CPU_SUBTYPE_ARM64_ALL:
6895 outs() << " ALL";
6896 break;
6897 default:
6898 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6899 break;
6900 }
6901 break;
6902 case MachO::CPU_TYPE_POWERPC:
6903 outs() << " PPC";
6904 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6905 case MachO::CPU_SUBTYPE_POWERPC_ALL:
6906 outs() << " ALL";
6907 break;
6908 default:
6909 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6910 break;
6911 }
6912 break;
6913 case MachO::CPU_TYPE_POWERPC64:
6914 outs() << " PPC64";
6915 switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
6916 case MachO::CPU_SUBTYPE_POWERPC_ALL:
6917 outs() << " ALL";
6918 break;
6919 default:
6920 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
6921 break;
6922 }
6923 break;
6924 }
6925 if ((cpusubtype & MachO::CPU_SUBTYPE_MASK) == MachO::CPU_SUBTYPE_LIB64) {
Kevin Enderby8ae63c12014-09-04 16:54:47 +00006926 outs() << " LIB64";
Kevin Enderbyb76d3862014-08-22 20:35:18 +00006927 } else {
6928 outs() << format(" 0x%02" PRIx32,
6929 (cpusubtype & MachO::CPU_SUBTYPE_MASK) >> 24);
6930 }
6931 switch (filetype) {
6932 case MachO::MH_OBJECT:
6933 outs() << " OBJECT";
6934 break;
6935 case MachO::MH_EXECUTE:
6936 outs() << " EXECUTE";
6937 break;
6938 case MachO::MH_FVMLIB:
6939 outs() << " FVMLIB";
6940 break;
6941 case MachO::MH_CORE:
6942 outs() << " CORE";
6943 break;
6944 case MachO::MH_PRELOAD:
6945 outs() << " PRELOAD";
6946 break;
6947 case MachO::MH_DYLIB:
6948 outs() << " DYLIB";
6949 break;
6950 case MachO::MH_DYLIB_STUB:
6951 outs() << " DYLIB_STUB";
6952 break;
6953 case MachO::MH_DYLINKER:
6954 outs() << " DYLINKER";
6955 break;
6956 case MachO::MH_BUNDLE:
6957 outs() << " BUNDLE";
6958 break;
6959 case MachO::MH_DSYM:
6960 outs() << " DSYM";
6961 break;
6962 case MachO::MH_KEXT_BUNDLE:
6963 outs() << " KEXTBUNDLE";
6964 break;
6965 default:
6966 outs() << format(" %10u", filetype);
6967 break;
6968 }
6969 outs() << format(" %5u", ncmds);
6970 outs() << format(" %10u", sizeofcmds);
6971 uint32_t f = flags;
6972 if (f & MachO::MH_NOUNDEFS) {
6973 outs() << " NOUNDEFS";
6974 f &= ~MachO::MH_NOUNDEFS;
6975 }
6976 if (f & MachO::MH_INCRLINK) {
6977 outs() << " INCRLINK";
6978 f &= ~MachO::MH_INCRLINK;
6979 }
6980 if (f & MachO::MH_DYLDLINK) {
6981 outs() << " DYLDLINK";
6982 f &= ~MachO::MH_DYLDLINK;
6983 }
6984 if (f & MachO::MH_BINDATLOAD) {
6985 outs() << " BINDATLOAD";
6986 f &= ~MachO::MH_BINDATLOAD;
6987 }
6988 if (f & MachO::MH_PREBOUND) {
6989 outs() << " PREBOUND";
6990 f &= ~MachO::MH_PREBOUND;
6991 }
6992 if (f & MachO::MH_SPLIT_SEGS) {
6993 outs() << " SPLIT_SEGS";
6994 f &= ~MachO::MH_SPLIT_SEGS;
6995 }
6996 if (f & MachO::MH_LAZY_INIT) {
6997 outs() << " LAZY_INIT";
6998 f &= ~MachO::MH_LAZY_INIT;
6999 }
7000 if (f & MachO::MH_TWOLEVEL) {
7001 outs() << " TWOLEVEL";
7002 f &= ~MachO::MH_TWOLEVEL;
7003 }
7004 if (f & MachO::MH_FORCE_FLAT) {
7005 outs() << " FORCE_FLAT";
7006 f &= ~MachO::MH_FORCE_FLAT;
7007 }
7008 if (f & MachO::MH_NOMULTIDEFS) {
7009 outs() << " NOMULTIDEFS";
7010 f &= ~MachO::MH_NOMULTIDEFS;
7011 }
7012 if (f & MachO::MH_NOFIXPREBINDING) {
7013 outs() << " NOFIXPREBINDING";
7014 f &= ~MachO::MH_NOFIXPREBINDING;
7015 }
7016 if (f & MachO::MH_PREBINDABLE) {
7017 outs() << " PREBINDABLE";
7018 f &= ~MachO::MH_PREBINDABLE;
7019 }
7020 if (f & MachO::MH_ALLMODSBOUND) {
7021 outs() << " ALLMODSBOUND";
7022 f &= ~MachO::MH_ALLMODSBOUND;
7023 }
7024 if (f & MachO::MH_SUBSECTIONS_VIA_SYMBOLS) {
7025 outs() << " SUBSECTIONS_VIA_SYMBOLS";
7026 f &= ~MachO::MH_SUBSECTIONS_VIA_SYMBOLS;
7027 }
7028 if (f & MachO::MH_CANONICAL) {
7029 outs() << " CANONICAL";
7030 f &= ~MachO::MH_CANONICAL;
7031 }
7032 if (f & MachO::MH_WEAK_DEFINES) {
7033 outs() << " WEAK_DEFINES";
7034 f &= ~MachO::MH_WEAK_DEFINES;
7035 }
7036 if (f & MachO::MH_BINDS_TO_WEAK) {
7037 outs() << " BINDS_TO_WEAK";
7038 f &= ~MachO::MH_BINDS_TO_WEAK;
7039 }
7040 if (f & MachO::MH_ALLOW_STACK_EXECUTION) {
7041 outs() << " ALLOW_STACK_EXECUTION";
7042 f &= ~MachO::MH_ALLOW_STACK_EXECUTION;
7043 }
7044 if (f & MachO::MH_DEAD_STRIPPABLE_DYLIB) {
7045 outs() << " DEAD_STRIPPABLE_DYLIB";
7046 f &= ~MachO::MH_DEAD_STRIPPABLE_DYLIB;
7047 }
7048 if (f & MachO::MH_PIE) {
7049 outs() << " PIE";
7050 f &= ~MachO::MH_PIE;
7051 }
7052 if (f & MachO::MH_NO_REEXPORTED_DYLIBS) {
7053 outs() << " NO_REEXPORTED_DYLIBS";
7054 f &= ~MachO::MH_NO_REEXPORTED_DYLIBS;
7055 }
7056 if (f & MachO::MH_HAS_TLV_DESCRIPTORS) {
7057 outs() << " MH_HAS_TLV_DESCRIPTORS";
7058 f &= ~MachO::MH_HAS_TLV_DESCRIPTORS;
7059 }
7060 if (f & MachO::MH_NO_HEAP_EXECUTION) {
7061 outs() << " MH_NO_HEAP_EXECUTION";
7062 f &= ~MachO::MH_NO_HEAP_EXECUTION;
7063 }
7064 if (f & MachO::MH_APP_EXTENSION_SAFE) {
7065 outs() << " APP_EXTENSION_SAFE";
7066 f &= ~MachO::MH_APP_EXTENSION_SAFE;
7067 }
7068 if (f != 0 || flags == 0)
7069 outs() << format(" 0x%08" PRIx32, f);
7070 } else {
7071 outs() << format(" 0x%08" PRIx32, magic);
7072 outs() << format(" %7d", cputype);
7073 outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
7074 outs() << format(" 0x%02" PRIx32,
7075 (cpusubtype & MachO::CPU_SUBTYPE_MASK) >> 24);
7076 outs() << format(" %10u", filetype);
7077 outs() << format(" %5u", ncmds);
7078 outs() << format(" %10u", sizeofcmds);
7079 outs() << format(" 0x%08" PRIx32, flags);
7080 }
7081 outs() << "\n";
7082}
7083
Kevin Enderby956366c2014-08-29 22:30:52 +00007084static void PrintSegmentCommand(uint32_t cmd, uint32_t cmdsize,
7085 StringRef SegName, uint64_t vmaddr,
7086 uint64_t vmsize, uint64_t fileoff,
7087 uint64_t filesize, uint32_t maxprot,
7088 uint32_t initprot, uint32_t nsects,
7089 uint32_t flags, uint32_t object_size,
7090 bool verbose) {
7091 uint64_t expected_cmdsize;
7092 if (cmd == MachO::LC_SEGMENT) {
7093 outs() << " cmd LC_SEGMENT\n";
7094 expected_cmdsize = nsects;
7095 expected_cmdsize *= sizeof(struct MachO::section);
7096 expected_cmdsize += sizeof(struct MachO::segment_command);
7097 } else {
7098 outs() << " cmd LC_SEGMENT_64\n";
7099 expected_cmdsize = nsects;
7100 expected_cmdsize *= sizeof(struct MachO::section_64);
7101 expected_cmdsize += sizeof(struct MachO::segment_command_64);
7102 }
7103 outs() << " cmdsize " << cmdsize;
7104 if (cmdsize != expected_cmdsize)
7105 outs() << " Inconsistent size\n";
7106 else
7107 outs() << "\n";
7108 outs() << " segname " << SegName << "\n";
7109 if (cmd == MachO::LC_SEGMENT_64) {
7110 outs() << " vmaddr " << format("0x%016" PRIx64, vmaddr) << "\n";
7111 outs() << " vmsize " << format("0x%016" PRIx64, vmsize) << "\n";
7112 } else {
Kevin Enderbyadb7c432014-12-16 18:58:11 +00007113 outs() << " vmaddr " << format("0x%08" PRIx64, vmaddr) << "\n";
7114 outs() << " vmsize " << format("0x%08" PRIx64, vmsize) << "\n";
Kevin Enderby956366c2014-08-29 22:30:52 +00007115 }
7116 outs() << " fileoff " << fileoff;
7117 if (fileoff > object_size)
7118 outs() << " (past end of file)\n";
7119 else
7120 outs() << "\n";
7121 outs() << " filesize " << filesize;
7122 if (fileoff + filesize > object_size)
7123 outs() << " (past end of file)\n";
7124 else
7125 outs() << "\n";
7126 if (verbose) {
7127 if ((maxprot &
7128 ~(MachO::VM_PROT_READ | MachO::VM_PROT_WRITE |
7129 MachO::VM_PROT_EXECUTE)) != 0)
7130 outs() << " maxprot ?" << format("0x%08" PRIx32, maxprot) << "\n";
7131 else {
Davide Italiano37ff06a2015-09-02 16:53:25 +00007132 outs() << " maxprot ";
7133 outs() << ((maxprot & MachO::VM_PROT_READ) ? "r" : "-");
7134 outs() << ((maxprot & MachO::VM_PROT_WRITE) ? "w" : "-");
7135 outs() << ((maxprot & MachO::VM_PROT_EXECUTE) ? "x\n" : "-\n");
Kevin Enderby956366c2014-08-29 22:30:52 +00007136 }
7137 if ((initprot &
7138 ~(MachO::VM_PROT_READ | MachO::VM_PROT_WRITE |
7139 MachO::VM_PROT_EXECUTE)) != 0)
7140 outs() << " initprot ?" << format("0x%08" PRIx32, initprot) << "\n";
7141 else {
Davide Italiano37ff06a2015-09-02 16:53:25 +00007142 outs() << " initprot ";
7143 outs() << ((initprot & MachO::VM_PROT_READ) ? "r" : "-");
7144 outs() << ((initprot & MachO::VM_PROT_WRITE) ? "w" : "-");
7145 outs() << ((initprot & MachO::VM_PROT_EXECUTE) ? "x\n" : "-\n");
Kevin Enderby956366c2014-08-29 22:30:52 +00007146 }
7147 } else {
7148 outs() << " maxprot " << format("0x%08" PRIx32, maxprot) << "\n";
7149 outs() << " initprot " << format("0x%08" PRIx32, initprot) << "\n";
7150 }
7151 outs() << " nsects " << nsects << "\n";
7152 if (verbose) {
7153 outs() << " flags";
7154 if (flags == 0)
7155 outs() << " (none)\n";
7156 else {
7157 if (flags & MachO::SG_HIGHVM) {
7158 outs() << " HIGHVM";
7159 flags &= ~MachO::SG_HIGHVM;
7160 }
7161 if (flags & MachO::SG_FVMLIB) {
7162 outs() << " FVMLIB";
7163 flags &= ~MachO::SG_FVMLIB;
7164 }
7165 if (flags & MachO::SG_NORELOC) {
7166 outs() << " NORELOC";
7167 flags &= ~MachO::SG_NORELOC;
7168 }
7169 if (flags & MachO::SG_PROTECTED_VERSION_1) {
7170 outs() << " PROTECTED_VERSION_1";
7171 flags &= ~MachO::SG_PROTECTED_VERSION_1;
7172 }
7173 if (flags)
7174 outs() << format(" 0x%08" PRIx32, flags) << " (unknown flags)\n";
7175 else
7176 outs() << "\n";
7177 }
7178 } else {
7179 outs() << " flags " << format("0x%" PRIx32, flags) << "\n";
7180 }
7181}
7182
7183static void PrintSection(const char *sectname, const char *segname,
7184 uint64_t addr, uint64_t size, uint32_t offset,
7185 uint32_t align, uint32_t reloff, uint32_t nreloc,
7186 uint32_t flags, uint32_t reserved1, uint32_t reserved2,
7187 uint32_t cmd, const char *sg_segname,
7188 uint32_t filetype, uint32_t object_size,
7189 bool verbose) {
7190 outs() << "Section\n";
7191 outs() << " sectname " << format("%.16s\n", sectname);
7192 outs() << " segname " << format("%.16s", segname);
7193 if (filetype != MachO::MH_OBJECT && strncmp(sg_segname, segname, 16) != 0)
7194 outs() << " (does not match segment)\n";
7195 else
7196 outs() << "\n";
7197 if (cmd == MachO::LC_SEGMENT_64) {
7198 outs() << " addr " << format("0x%016" PRIx64, addr) << "\n";
7199 outs() << " size " << format("0x%016" PRIx64, size);
7200 } else {
Kevin Enderby75594b62014-12-16 21:00:25 +00007201 outs() << " addr " << format("0x%08" PRIx64, addr) << "\n";
7202 outs() << " size " << format("0x%08" PRIx64, size);
Kevin Enderby956366c2014-08-29 22:30:52 +00007203 }
7204 if ((flags & MachO::S_ZEROFILL) != 0 && offset + size > object_size)
7205 outs() << " (past end of file)\n";
7206 else
7207 outs() << "\n";
7208 outs() << " offset " << offset;
7209 if (offset > object_size)
7210 outs() << " (past end of file)\n";
7211 else
7212 outs() << "\n";
7213 uint32_t align_shifted = 1 << align;
7214 outs() << " align 2^" << align << " (" << align_shifted << ")\n";
7215 outs() << " reloff " << reloff;
7216 if (reloff > object_size)
7217 outs() << " (past end of file)\n";
7218 else
7219 outs() << "\n";
7220 outs() << " nreloc " << nreloc;
7221 if (reloff + nreloc * sizeof(struct MachO::relocation_info) > object_size)
7222 outs() << " (past end of file)\n";
7223 else
7224 outs() << "\n";
7225 uint32_t section_type = flags & MachO::SECTION_TYPE;
7226 if (verbose) {
7227 outs() << " type";
7228 if (section_type == MachO::S_REGULAR)
7229 outs() << " S_REGULAR\n";
7230 else if (section_type == MachO::S_ZEROFILL)
7231 outs() << " S_ZEROFILL\n";
7232 else if (section_type == MachO::S_CSTRING_LITERALS)
7233 outs() << " S_CSTRING_LITERALS\n";
7234 else if (section_type == MachO::S_4BYTE_LITERALS)
7235 outs() << " S_4BYTE_LITERALS\n";
7236 else if (section_type == MachO::S_8BYTE_LITERALS)
7237 outs() << " S_8BYTE_LITERALS\n";
7238 else if (section_type == MachO::S_16BYTE_LITERALS)
7239 outs() << " S_16BYTE_LITERALS\n";
7240 else if (section_type == MachO::S_LITERAL_POINTERS)
7241 outs() << " S_LITERAL_POINTERS\n";
7242 else if (section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS)
7243 outs() << " S_NON_LAZY_SYMBOL_POINTERS\n";
7244 else if (section_type == MachO::S_LAZY_SYMBOL_POINTERS)
7245 outs() << " S_LAZY_SYMBOL_POINTERS\n";
7246 else if (section_type == MachO::S_SYMBOL_STUBS)
7247 outs() << " S_SYMBOL_STUBS\n";
7248 else if (section_type == MachO::S_MOD_INIT_FUNC_POINTERS)
7249 outs() << " S_MOD_INIT_FUNC_POINTERS\n";
7250 else if (section_type == MachO::S_MOD_TERM_FUNC_POINTERS)
7251 outs() << " S_MOD_TERM_FUNC_POINTERS\n";
7252 else if (section_type == MachO::S_COALESCED)
7253 outs() << " S_COALESCED\n";
7254 else if (section_type == MachO::S_INTERPOSING)
7255 outs() << " S_INTERPOSING\n";
7256 else if (section_type == MachO::S_DTRACE_DOF)
7257 outs() << " S_DTRACE_DOF\n";
7258 else if (section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS)
7259 outs() << " S_LAZY_DYLIB_SYMBOL_POINTERS\n";
7260 else if (section_type == MachO::S_THREAD_LOCAL_REGULAR)
7261 outs() << " S_THREAD_LOCAL_REGULAR\n";
7262 else if (section_type == MachO::S_THREAD_LOCAL_ZEROFILL)
7263 outs() << " S_THREAD_LOCAL_ZEROFILL\n";
7264 else if (section_type == MachO::S_THREAD_LOCAL_VARIABLES)
7265 outs() << " S_THREAD_LOCAL_VARIABLES\n";
7266 else if (section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS)
7267 outs() << " S_THREAD_LOCAL_VARIABLE_POINTERS\n";
7268 else if (section_type == MachO::S_THREAD_LOCAL_INIT_FUNCTION_POINTERS)
7269 outs() << " S_THREAD_LOCAL_INIT_FUNCTION_POINTERS\n";
7270 else
7271 outs() << format("0x%08" PRIx32, section_type) << "\n";
7272 outs() << "attributes";
7273 uint32_t section_attributes = flags & MachO::SECTION_ATTRIBUTES;
7274 if (section_attributes & MachO::S_ATTR_PURE_INSTRUCTIONS)
7275 outs() << " PURE_INSTRUCTIONS";
7276 if (section_attributes & MachO::S_ATTR_NO_TOC)
7277 outs() << " NO_TOC";
7278 if (section_attributes & MachO::S_ATTR_STRIP_STATIC_SYMS)
7279 outs() << " STRIP_STATIC_SYMS";
7280 if (section_attributes & MachO::S_ATTR_NO_DEAD_STRIP)
7281 outs() << " NO_DEAD_STRIP";
7282 if (section_attributes & MachO::S_ATTR_LIVE_SUPPORT)
7283 outs() << " LIVE_SUPPORT";
7284 if (section_attributes & MachO::S_ATTR_SELF_MODIFYING_CODE)
7285 outs() << " SELF_MODIFYING_CODE";
7286 if (section_attributes & MachO::S_ATTR_DEBUG)
7287 outs() << " DEBUG";
7288 if (section_attributes & MachO::S_ATTR_SOME_INSTRUCTIONS)
7289 outs() << " SOME_INSTRUCTIONS";
7290 if (section_attributes & MachO::S_ATTR_EXT_RELOC)
7291 outs() << " EXT_RELOC";
7292 if (section_attributes & MachO::S_ATTR_LOC_RELOC)
7293 outs() << " LOC_RELOC";
7294 if (section_attributes == 0)
7295 outs() << " (none)";
7296 outs() << "\n";
7297 } else
7298 outs() << " flags " << format("0x%08" PRIx32, flags) << "\n";
7299 outs() << " reserved1 " << reserved1;
7300 if (section_type == MachO::S_SYMBOL_STUBS ||
7301 section_type == MachO::S_LAZY_SYMBOL_POINTERS ||
7302 section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS ||
7303 section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS ||
7304 section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS)
7305 outs() << " (index into indirect symbol table)\n";
7306 else
7307 outs() << "\n";
7308 outs() << " reserved2 " << reserved2;
7309 if (section_type == MachO::S_SYMBOL_STUBS)
7310 outs() << " (size of stubs)\n";
7311 else
7312 outs() << "\n";
7313}
7314
David Majnemer73cc6ff2014-11-13 19:48:56 +00007315static void PrintSymtabLoadCommand(MachO::symtab_command st, bool Is64Bit,
Kevin Enderby956366c2014-08-29 22:30:52 +00007316 uint32_t object_size) {
7317 outs() << " cmd LC_SYMTAB\n";
7318 outs() << " cmdsize " << st.cmdsize;
7319 if (st.cmdsize != sizeof(struct MachO::symtab_command))
7320 outs() << " Incorrect size\n";
7321 else
7322 outs() << "\n";
7323 outs() << " symoff " << st.symoff;
7324 if (st.symoff > object_size)
7325 outs() << " (past end of file)\n";
7326 else
7327 outs() << "\n";
7328 outs() << " nsyms " << st.nsyms;
7329 uint64_t big_size;
David Majnemer73cc6ff2014-11-13 19:48:56 +00007330 if (Is64Bit) {
Kevin Enderby956366c2014-08-29 22:30:52 +00007331 big_size = st.nsyms;
7332 big_size *= sizeof(struct MachO::nlist_64);
7333 big_size += st.symoff;
7334 if (big_size > object_size)
7335 outs() << " (past end of file)\n";
7336 else
7337 outs() << "\n";
7338 } else {
7339 big_size = st.nsyms;
7340 big_size *= sizeof(struct MachO::nlist);
7341 big_size += st.symoff;
7342 if (big_size > object_size)
7343 outs() << " (past end of file)\n";
7344 else
7345 outs() << "\n";
7346 }
7347 outs() << " stroff " << st.stroff;
7348 if (st.stroff > object_size)
7349 outs() << " (past end of file)\n";
7350 else
7351 outs() << "\n";
7352 outs() << " strsize " << st.strsize;
7353 big_size = st.stroff;
7354 big_size += st.strsize;
7355 if (big_size > object_size)
7356 outs() << " (past end of file)\n";
7357 else
7358 outs() << "\n";
7359}
7360
7361static void PrintDysymtabLoadCommand(MachO::dysymtab_command dyst,
7362 uint32_t nsyms, uint32_t object_size,
David Majnemer73cc6ff2014-11-13 19:48:56 +00007363 bool Is64Bit) {
Kevin Enderby956366c2014-08-29 22:30:52 +00007364 outs() << " cmd LC_DYSYMTAB\n";
7365 outs() << " cmdsize " << dyst.cmdsize;
7366 if (dyst.cmdsize != sizeof(struct MachO::dysymtab_command))
7367 outs() << " Incorrect size\n";
7368 else
7369 outs() << "\n";
7370 outs() << " ilocalsym " << dyst.ilocalsym;
7371 if (dyst.ilocalsym > nsyms)
7372 outs() << " (greater than the number of symbols)\n";
7373 else
7374 outs() << "\n";
7375 outs() << " nlocalsym " << dyst.nlocalsym;
7376 uint64_t big_size;
7377 big_size = dyst.ilocalsym;
7378 big_size += dyst.nlocalsym;
7379 if (big_size > nsyms)
7380 outs() << " (past the end of the symbol table)\n";
7381 else
7382 outs() << "\n";
7383 outs() << " iextdefsym " << dyst.iextdefsym;
7384 if (dyst.iextdefsym > nsyms)
7385 outs() << " (greater than the number of symbols)\n";
7386 else
7387 outs() << "\n";
7388 outs() << " nextdefsym " << dyst.nextdefsym;
7389 big_size = dyst.iextdefsym;
7390 big_size += dyst.nextdefsym;
7391 if (big_size > nsyms)
7392 outs() << " (past the end of the symbol table)\n";
7393 else
7394 outs() << "\n";
7395 outs() << " iundefsym " << dyst.iundefsym;
7396 if (dyst.iundefsym > nsyms)
7397 outs() << " (greater than the number of symbols)\n";
7398 else
7399 outs() << "\n";
7400 outs() << " nundefsym " << dyst.nundefsym;
7401 big_size = dyst.iundefsym;
7402 big_size += dyst.nundefsym;
7403 if (big_size > nsyms)
7404 outs() << " (past the end of the symbol table)\n";
7405 else
7406 outs() << "\n";
7407 outs() << " tocoff " << dyst.tocoff;
7408 if (dyst.tocoff > object_size)
7409 outs() << " (past end of file)\n";
7410 else
7411 outs() << "\n";
7412 outs() << " ntoc " << dyst.ntoc;
7413 big_size = dyst.ntoc;
7414 big_size *= sizeof(struct MachO::dylib_table_of_contents);
7415 big_size += dyst.tocoff;
7416 if (big_size > object_size)
7417 outs() << " (past end of file)\n";
7418 else
7419 outs() << "\n";
7420 outs() << " modtaboff " << dyst.modtaboff;
7421 if (dyst.modtaboff > object_size)
7422 outs() << " (past end of file)\n";
7423 else
7424 outs() << "\n";
7425 outs() << " nmodtab " << dyst.nmodtab;
7426 uint64_t modtabend;
David Majnemer73cc6ff2014-11-13 19:48:56 +00007427 if (Is64Bit) {
Kevin Enderby956366c2014-08-29 22:30:52 +00007428 modtabend = dyst.nmodtab;
7429 modtabend *= sizeof(struct MachO::dylib_module_64);
7430 modtabend += dyst.modtaboff;
7431 } else {
7432 modtabend = dyst.nmodtab;
7433 modtabend *= sizeof(struct MachO::dylib_module);
7434 modtabend += dyst.modtaboff;
7435 }
7436 if (modtabend > object_size)
7437 outs() << " (past end of file)\n";
7438 else
7439 outs() << "\n";
7440 outs() << " extrefsymoff " << dyst.extrefsymoff;
7441 if (dyst.extrefsymoff > object_size)
7442 outs() << " (past end of file)\n";
7443 else
7444 outs() << "\n";
7445 outs() << " nextrefsyms " << dyst.nextrefsyms;
7446 big_size = dyst.nextrefsyms;
7447 big_size *= sizeof(struct MachO::dylib_reference);
7448 big_size += dyst.extrefsymoff;
7449 if (big_size > object_size)
7450 outs() << " (past end of file)\n";
7451 else
7452 outs() << "\n";
7453 outs() << " indirectsymoff " << dyst.indirectsymoff;
7454 if (dyst.indirectsymoff > object_size)
7455 outs() << " (past end of file)\n";
7456 else
7457 outs() << "\n";
7458 outs() << " nindirectsyms " << dyst.nindirectsyms;
7459 big_size = dyst.nindirectsyms;
7460 big_size *= sizeof(uint32_t);
7461 big_size += dyst.indirectsymoff;
7462 if (big_size > object_size)
7463 outs() << " (past end of file)\n";
7464 else
7465 outs() << "\n";
7466 outs() << " extreloff " << dyst.extreloff;
7467 if (dyst.extreloff > object_size)
7468 outs() << " (past end of file)\n";
7469 else
7470 outs() << "\n";
7471 outs() << " nextrel " << dyst.nextrel;
7472 big_size = dyst.nextrel;
7473 big_size *= sizeof(struct MachO::relocation_info);
7474 big_size += dyst.extreloff;
7475 if (big_size > object_size)
7476 outs() << " (past end of file)\n";
7477 else
7478 outs() << "\n";
7479 outs() << " locreloff " << dyst.locreloff;
7480 if (dyst.locreloff > object_size)
7481 outs() << " (past end of file)\n";
7482 else
7483 outs() << "\n";
7484 outs() << " nlocrel " << dyst.nlocrel;
7485 big_size = dyst.nlocrel;
7486 big_size *= sizeof(struct MachO::relocation_info);
7487 big_size += dyst.locreloff;
7488 if (big_size > object_size)
7489 outs() << " (past end of file)\n";
7490 else
7491 outs() << "\n";
7492}
7493
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007494static void PrintDyldInfoLoadCommand(MachO::dyld_info_command dc,
7495 uint32_t object_size) {
7496 if (dc.cmd == MachO::LC_DYLD_INFO)
7497 outs() << " cmd LC_DYLD_INFO\n";
7498 else
7499 outs() << " cmd LC_DYLD_INFO_ONLY\n";
7500 outs() << " cmdsize " << dc.cmdsize;
7501 if (dc.cmdsize != sizeof(struct MachO::dyld_info_command))
7502 outs() << " Incorrect size\n";
7503 else
7504 outs() << "\n";
7505 outs() << " rebase_off " << dc.rebase_off;
7506 if (dc.rebase_off > object_size)
7507 outs() << " (past end of file)\n";
7508 else
7509 outs() << "\n";
7510 outs() << " rebase_size " << dc.rebase_size;
7511 uint64_t big_size;
7512 big_size = dc.rebase_off;
7513 big_size += dc.rebase_size;
7514 if (big_size > object_size)
7515 outs() << " (past end of file)\n";
7516 else
7517 outs() << "\n";
7518 outs() << " bind_off " << dc.bind_off;
7519 if (dc.bind_off > object_size)
7520 outs() << " (past end of file)\n";
7521 else
7522 outs() << "\n";
7523 outs() << " bind_size " << dc.bind_size;
7524 big_size = dc.bind_off;
7525 big_size += dc.bind_size;
7526 if (big_size > object_size)
7527 outs() << " (past end of file)\n";
7528 else
7529 outs() << "\n";
7530 outs() << " weak_bind_off " << dc.weak_bind_off;
7531 if (dc.weak_bind_off > object_size)
7532 outs() << " (past end of file)\n";
7533 else
7534 outs() << "\n";
7535 outs() << " weak_bind_size " << dc.weak_bind_size;
7536 big_size = dc.weak_bind_off;
7537 big_size += dc.weak_bind_size;
7538 if (big_size > object_size)
7539 outs() << " (past end of file)\n";
7540 else
7541 outs() << "\n";
7542 outs() << " lazy_bind_off " << dc.lazy_bind_off;
7543 if (dc.lazy_bind_off > object_size)
7544 outs() << " (past end of file)\n";
7545 else
7546 outs() << "\n";
7547 outs() << " lazy_bind_size " << dc.lazy_bind_size;
7548 big_size = dc.lazy_bind_off;
7549 big_size += dc.lazy_bind_size;
7550 if (big_size > object_size)
7551 outs() << " (past end of file)\n";
7552 else
7553 outs() << "\n";
7554 outs() << " export_off " << dc.export_off;
7555 if (dc.export_off > object_size)
7556 outs() << " (past end of file)\n";
7557 else
7558 outs() << "\n";
7559 outs() << " export_size " << dc.export_size;
7560 big_size = dc.export_off;
7561 big_size += dc.export_size;
7562 if (big_size > object_size)
7563 outs() << " (past end of file)\n";
7564 else
7565 outs() << "\n";
7566}
7567
7568static void PrintDyldLoadCommand(MachO::dylinker_command dyld,
7569 const char *Ptr) {
7570 if (dyld.cmd == MachO::LC_ID_DYLINKER)
7571 outs() << " cmd LC_ID_DYLINKER\n";
7572 else if (dyld.cmd == MachO::LC_LOAD_DYLINKER)
7573 outs() << " cmd LC_LOAD_DYLINKER\n";
7574 else if (dyld.cmd == MachO::LC_DYLD_ENVIRONMENT)
7575 outs() << " cmd LC_DYLD_ENVIRONMENT\n";
7576 else
7577 outs() << " cmd ?(" << dyld.cmd << ")\n";
7578 outs() << " cmdsize " << dyld.cmdsize;
7579 if (dyld.cmdsize < sizeof(struct MachO::dylinker_command))
7580 outs() << " Incorrect size\n";
7581 else
7582 outs() << "\n";
7583 if (dyld.name >= dyld.cmdsize)
7584 outs() << " name ?(bad offset " << dyld.name << ")\n";
7585 else {
Kevin Enderbyb28ed012014-10-29 21:28:24 +00007586 const char *P = (const char *)(Ptr) + dyld.name;
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007587 outs() << " name " << P << " (offset " << dyld.name << ")\n";
7588 }
7589}
7590
7591static void PrintUuidLoadCommand(MachO::uuid_command uuid) {
7592 outs() << " cmd LC_UUID\n";
7593 outs() << " cmdsize " << uuid.cmdsize;
7594 if (uuid.cmdsize != sizeof(struct MachO::uuid_command))
7595 outs() << " Incorrect size\n";
7596 else
7597 outs() << "\n";
7598 outs() << " uuid ";
Davide Italianoc74277a2015-12-07 00:03:28 +00007599 for (int i = 0; i < 16; ++i) {
7600 outs() << format("%02" PRIX32, uuid.uuid[i]);
7601 if (i == 3 || i == 5 || i == 7 || i == 9)
7602 outs() << "-";
7603 }
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007604 outs() << "\n";
7605}
7606
Kevin Enderby66d51fc2015-01-08 00:25:24 +00007607static void PrintRpathLoadCommand(MachO::rpath_command rpath, const char *Ptr) {
Jean-Daniel Dupas00cc1f52014-12-04 07:37:02 +00007608 outs() << " cmd LC_RPATH\n";
7609 outs() << " cmdsize " << rpath.cmdsize;
7610 if (rpath.cmdsize < sizeof(struct MachO::rpath_command))
7611 outs() << " Incorrect size\n";
7612 else
7613 outs() << "\n";
7614 if (rpath.path >= rpath.cmdsize)
7615 outs() << " path ?(bad offset " << rpath.path << ")\n";
7616 else {
7617 const char *P = (const char *)(Ptr) + rpath.path;
7618 outs() << " path " << P << " (offset " << rpath.path << ")\n";
7619 }
7620}
7621
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007622static void PrintVersionMinLoadCommand(MachO::version_min_command vd) {
Tim Northoverbfbfb122015-11-02 21:26:58 +00007623 StringRef LoadCmdName;
7624 switch (vd.cmd) {
7625 case MachO::LC_VERSION_MIN_MACOSX:
7626 LoadCmdName = "LC_VERSION_MIN_MACOSX";
7627 break;
7628 case MachO::LC_VERSION_MIN_IPHONEOS:
7629 LoadCmdName = "LC_VERSION_MIN_IPHONEOS";
7630 break;
7631 case MachO::LC_VERSION_MIN_TVOS:
7632 LoadCmdName = "LC_VERSION_MIN_TVOS";
7633 break;
7634 case MachO::LC_VERSION_MIN_WATCHOS:
7635 LoadCmdName = "LC_VERSION_MIN_WATCHOS";
7636 break;
7637 default:
7638 llvm_unreachable("Unknown version min load command");
7639 }
7640
7641 outs() << " cmd " << LoadCmdName << '\n';
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007642 outs() << " cmdsize " << vd.cmdsize;
7643 if (vd.cmdsize != sizeof(struct MachO::version_min_command))
7644 outs() << " Incorrect size\n";
7645 else
7646 outs() << "\n";
Davide Italiano56baef32015-08-26 12:26:11 +00007647 outs() << " version "
7648 << MachOObjectFile::getVersionMinMajor(vd, false) << "."
7649 << MachOObjectFile::getVersionMinMinor(vd, false);
7650 uint32_t Update = MachOObjectFile::getVersionMinUpdate(vd, false);
7651 if (Update != 0)
7652 outs() << "." << Update;
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007653 outs() << "\n";
7654 if (vd.sdk == 0)
Kevin Enderby57538292014-12-17 01:01:30 +00007655 outs() << " sdk n/a";
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007656 else {
Davide Italiano56baef32015-08-26 12:26:11 +00007657 outs() << " sdk "
7658 << MachOObjectFile::getVersionMinMajor(vd, true) << "."
7659 << MachOObjectFile::getVersionMinMinor(vd, true);
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007660 }
Davide Italiano56baef32015-08-26 12:26:11 +00007661 Update = MachOObjectFile::getVersionMinUpdate(vd, true);
7662 if (Update != 0)
7663 outs() << "." << Update;
Kevin Enderby8ae63c12014-09-04 16:54:47 +00007664 outs() << "\n";
7665}
7666
7667static void PrintSourceVersionCommand(MachO::source_version_command sd) {
7668 outs() << " cmd LC_SOURCE_VERSION\n";
7669 outs() << " cmdsize " << sd.cmdsize;
7670 if (sd.cmdsize != sizeof(struct MachO::source_version_command))
7671 outs() << " Incorrect size\n";
7672 else
7673 outs() << "\n";
7674 uint64_t a = (sd.version >> 40) & 0xffffff;
7675 uint64_t b = (sd.version >> 30) & 0x3ff;
7676 uint64_t c = (sd.version >> 20) & 0x3ff;
7677 uint64_t d = (sd.version >> 10) & 0x3ff;
7678 uint64_t e = sd.version & 0x3ff;
7679 outs() << " version " << a << "." << b;
7680 if (e != 0)
7681 outs() << "." << c << "." << d << "." << e;
7682 else if (d != 0)
7683 outs() << "." << c << "." << d;
7684 else if (c != 0)
7685 outs() << "." << c;
7686 outs() << "\n";
7687}
7688
7689static void PrintEntryPointCommand(MachO::entry_point_command ep) {
7690 outs() << " cmd LC_MAIN\n";
7691 outs() << " cmdsize " << ep.cmdsize;
7692 if (ep.cmdsize != sizeof(struct MachO::entry_point_command))
7693 outs() << " Incorrect size\n";
7694 else
7695 outs() << "\n";
7696 outs() << " entryoff " << ep.entryoff << "\n";
7697 outs() << " stacksize " << ep.stacksize << "\n";
7698}
7699
Kevin Enderby0804f4672014-12-16 23:25:52 +00007700static void PrintEncryptionInfoCommand(MachO::encryption_info_command ec,
7701 uint32_t object_size) {
7702 outs() << " cmd LC_ENCRYPTION_INFO\n";
7703 outs() << " cmdsize " << ec.cmdsize;
7704 if (ec.cmdsize != sizeof(struct MachO::encryption_info_command))
7705 outs() << " Incorrect size\n";
7706 else
7707 outs() << "\n";
7708 outs() << " cryptoff " << ec.cryptoff;
7709 if (ec.cryptoff > object_size)
7710 outs() << " (past end of file)\n";
7711 else
7712 outs() << "\n";
7713 outs() << " cryptsize " << ec.cryptsize;
7714 if (ec.cryptsize > object_size)
7715 outs() << " (past end of file)\n";
7716 else
7717 outs() << "\n";
7718 outs() << " cryptid " << ec.cryptid << "\n";
7719}
7720
Kevin Enderby57538292014-12-17 01:01:30 +00007721static void PrintEncryptionInfoCommand64(MachO::encryption_info_command_64 ec,
Kevin Enderby66d51fc2015-01-08 00:25:24 +00007722 uint32_t object_size) {
Kevin Enderby57538292014-12-17 01:01:30 +00007723 outs() << " cmd LC_ENCRYPTION_INFO_64\n";
7724 outs() << " cmdsize " << ec.cmdsize;
7725 if (ec.cmdsize != sizeof(struct MachO::encryption_info_command_64))
7726 outs() << " Incorrect size\n";
7727 else
7728 outs() << "\n";
7729 outs() << " cryptoff " << ec.cryptoff;
7730 if (ec.cryptoff > object_size)
7731 outs() << " (past end of file)\n";
7732 else
7733 outs() << "\n";
7734 outs() << " cryptsize " << ec.cryptsize;
7735 if (ec.cryptsize > object_size)
7736 outs() << " (past end of file)\n";
7737 else
7738 outs() << "\n";
7739 outs() << " cryptid " << ec.cryptid << "\n";
7740 outs() << " pad " << ec.pad << "\n";
7741}
7742
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +00007743static void PrintLinkerOptionCommand(MachO::linker_option_command lo,
7744 const char *Ptr) {
7745 outs() << " cmd LC_LINKER_OPTION\n";
7746 outs() << " cmdsize " << lo.cmdsize;
7747 if (lo.cmdsize < sizeof(struct MachO::linker_option_command))
7748 outs() << " Incorrect size\n";
7749 else
7750 outs() << "\n";
7751 outs() << " count " << lo.count << "\n";
7752 const char *string = Ptr + sizeof(struct MachO::linker_option_command);
7753 uint32_t left = lo.cmdsize - sizeof(struct MachO::linker_option_command);
7754 uint32_t i = 0;
7755 while (left > 0) {
7756 while (*string == '\0' && left > 0) {
7757 string++;
7758 left--;
7759 }
7760 if (left > 0) {
7761 i++;
7762 outs() << " string #" << i << " " << format("%.*s\n", left, string);
David Majnemerd4449ed2014-12-20 08:24:43 +00007763 uint32_t NullPos = StringRef(string, left).find('\0');
7764 uint32_t len = std::min(NullPos, left) + 1;
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +00007765 string += len;
7766 left -= len;
7767 }
7768 }
7769 if (lo.count != i)
Kevin Enderby66d51fc2015-01-08 00:25:24 +00007770 outs() << " count " << lo.count << " does not match number of strings "
7771 << i << "\n";
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +00007772}
7773
Kevin Enderbyb4b79312014-12-18 19:24:35 +00007774static void PrintSubFrameworkCommand(MachO::sub_framework_command sub,
7775 const char *Ptr) {
7776 outs() << " cmd LC_SUB_FRAMEWORK\n";
7777 outs() << " cmdsize " << sub.cmdsize;
7778 if (sub.cmdsize < sizeof(struct MachO::sub_framework_command))
7779 outs() << " Incorrect size\n";
7780 else
7781 outs() << "\n";
7782 if (sub.umbrella < sub.cmdsize) {
7783 const char *P = Ptr + sub.umbrella;
7784 outs() << " umbrella " << P << " (offset " << sub.umbrella << ")\n";
7785 } else {
7786 outs() << " umbrella ?(bad offset " << sub.umbrella << ")\n";
7787 }
7788}
7789
Kevin Enderbya2bd8d92014-12-18 23:13:26 +00007790static void PrintSubUmbrellaCommand(MachO::sub_umbrella_command sub,
7791 const char *Ptr) {
7792 outs() << " cmd LC_SUB_UMBRELLA\n";
7793 outs() << " cmdsize " << sub.cmdsize;
7794 if (sub.cmdsize < sizeof(struct MachO::sub_umbrella_command))
7795 outs() << " Incorrect size\n";
7796 else
7797 outs() << "\n";
7798 if (sub.sub_umbrella < sub.cmdsize) {
7799 const char *P = Ptr + sub.sub_umbrella;
7800 outs() << " sub_umbrella " << P << " (offset " << sub.sub_umbrella << ")\n";
7801 } else {
7802 outs() << " sub_umbrella ?(bad offset " << sub.sub_umbrella << ")\n";
7803 }
7804}
7805
Kevin Enderby36c8d3a2014-12-19 19:48:16 +00007806static void PrintSubLibraryCommand(MachO::sub_library_command sub,
Kevin Enderby66d51fc2015-01-08 00:25:24 +00007807 const char *Ptr) {
Kevin Enderby36c8d3a2014-12-19 19:48:16 +00007808 outs() << " cmd LC_SUB_LIBRARY\n";
7809 outs() << " cmdsize " << sub.cmdsize;
7810 if (sub.cmdsize < sizeof(struct MachO::sub_library_command))
7811 outs() << " Incorrect size\n";
7812 else
7813 outs() << "\n";
7814 if (sub.sub_library < sub.cmdsize) {
7815 const char *P = Ptr + sub.sub_library;
7816 outs() << " sub_library " << P << " (offset " << sub.sub_library << ")\n";
7817 } else {
7818 outs() << " sub_library ?(bad offset " << sub.sub_library << ")\n";
7819 }
7820}
7821
Kevin Enderby186eac32014-12-19 21:06:24 +00007822static void PrintSubClientCommand(MachO::sub_client_command sub,
7823 const char *Ptr) {
7824 outs() << " cmd LC_SUB_CLIENT\n";
7825 outs() << " cmdsize " << sub.cmdsize;
7826 if (sub.cmdsize < sizeof(struct MachO::sub_client_command))
7827 outs() << " Incorrect size\n";
7828 else
7829 outs() << "\n";
7830 if (sub.client < sub.cmdsize) {
7831 const char *P = Ptr + sub.client;
7832 outs() << " client " << P << " (offset " << sub.client << ")\n";
7833 } else {
7834 outs() << " client ?(bad offset " << sub.client << ")\n";
7835 }
7836}
Kevin Enderby36c8d3a2014-12-19 19:48:16 +00007837
Kevin Enderby52e4ce42014-12-19 22:25:22 +00007838static void PrintRoutinesCommand(MachO::routines_command r) {
7839 outs() << " cmd LC_ROUTINES\n";
7840 outs() << " cmdsize " << r.cmdsize;
7841 if (r.cmdsize != sizeof(struct MachO::routines_command))
7842 outs() << " Incorrect size\n";
7843 else
7844 outs() << "\n";
7845 outs() << " init_address " << format("0x%08" PRIx32, r.init_address) << "\n";
7846 outs() << " init_module " << r.init_module << "\n";
7847 outs() << " reserved1 " << r.reserved1 << "\n";
7848 outs() << " reserved2 " << r.reserved2 << "\n";
7849 outs() << " reserved3 " << r.reserved3 << "\n";
7850 outs() << " reserved4 " << r.reserved4 << "\n";
7851 outs() << " reserved5 " << r.reserved5 << "\n";
7852 outs() << " reserved6 " << r.reserved6 << "\n";
7853}
7854
7855static void PrintRoutinesCommand64(MachO::routines_command_64 r) {
7856 outs() << " cmd LC_ROUTINES_64\n";
7857 outs() << " cmdsize " << r.cmdsize;
7858 if (r.cmdsize != sizeof(struct MachO::routines_command_64))
7859 outs() << " Incorrect size\n";
7860 else
7861 outs() << "\n";
7862 outs() << " init_address " << format("0x%016" PRIx64, r.init_address) << "\n";
7863 outs() << " init_module " << r.init_module << "\n";
7864 outs() << " reserved1 " << r.reserved1 << "\n";
7865 outs() << " reserved2 " << r.reserved2 << "\n";
7866 outs() << " reserved3 " << r.reserved3 << "\n";
7867 outs() << " reserved4 " << r.reserved4 << "\n";
7868 outs() << " reserved5 " << r.reserved5 << "\n";
7869 outs() << " reserved6 " << r.reserved6 << "\n";
7870}
7871
Kevin Enderby48ef5342014-12-23 22:56:39 +00007872static void Print_x86_thread_state64_t(MachO::x86_thread_state64_t &cpu64) {
7873 outs() << " rax " << format("0x%016" PRIx64, cpu64.rax);
7874 outs() << " rbx " << format("0x%016" PRIx64, cpu64.rbx);
7875 outs() << " rcx " << format("0x%016" PRIx64, cpu64.rcx) << "\n";
7876 outs() << " rdx " << format("0x%016" PRIx64, cpu64.rdx);
7877 outs() << " rdi " << format("0x%016" PRIx64, cpu64.rdi);
7878 outs() << " rsi " << format("0x%016" PRIx64, cpu64.rsi) << "\n";
7879 outs() << " rbp " << format("0x%016" PRIx64, cpu64.rbp);
7880 outs() << " rsp " << format("0x%016" PRIx64, cpu64.rsp);
7881 outs() << " r8 " << format("0x%016" PRIx64, cpu64.r8) << "\n";
7882 outs() << " r9 " << format("0x%016" PRIx64, cpu64.r9);
7883 outs() << " r10 " << format("0x%016" PRIx64, cpu64.r10);
7884 outs() << " r11 " << format("0x%016" PRIx64, cpu64.r11) << "\n";
7885 outs() << " r12 " << format("0x%016" PRIx64, cpu64.r12);
7886 outs() << " r13 " << format("0x%016" PRIx64, cpu64.r13);
7887 outs() << " r14 " << format("0x%016" PRIx64, cpu64.r14) << "\n";
7888 outs() << " r15 " << format("0x%016" PRIx64, cpu64.r15);
7889 outs() << " rip " << format("0x%016" PRIx64, cpu64.rip) << "\n";
7890 outs() << "rflags " << format("0x%016" PRIx64, cpu64.rflags);
7891 outs() << " cs " << format("0x%016" PRIx64, cpu64.cs);
7892 outs() << " fs " << format("0x%016" PRIx64, cpu64.fs) << "\n";
7893 outs() << " gs " << format("0x%016" PRIx64, cpu64.gs) << "\n";
7894}
7895
Kevin Enderby227df342014-12-23 23:43:59 +00007896static void Print_mmst_reg(MachO::mmst_reg_t &r) {
Kevin Enderby48ef5342014-12-23 22:56:39 +00007897 uint32_t f;
7898 outs() << "\t mmst_reg ";
7899 for (f = 0; f < 10; f++)
7900 outs() << format("%02" PRIx32, (r.mmst_reg[f] & 0xff)) << " ";
7901 outs() << "\n";
7902 outs() << "\t mmst_rsrv ";
7903 for (f = 0; f < 6; f++)
7904 outs() << format("%02" PRIx32, (r.mmst_rsrv[f] & 0xff)) << " ";
7905 outs() << "\n";
7906}
7907
Kevin Enderbyaefb0032014-12-24 00:16:51 +00007908static void Print_xmm_reg(MachO::xmm_reg_t &r) {
Kevin Enderby48ef5342014-12-23 22:56:39 +00007909 uint32_t f;
7910 outs() << "\t xmm_reg ";
7911 for (f = 0; f < 16; f++)
7912 outs() << format("%02" PRIx32, (r.xmm_reg[f] & 0xff)) << " ";
7913 outs() << "\n";
7914}
7915
7916static void Print_x86_float_state_t(MachO::x86_float_state64_t &fpu) {
7917 outs() << "\t fpu_reserved[0] " << fpu.fpu_reserved[0];
7918 outs() << " fpu_reserved[1] " << fpu.fpu_reserved[1] << "\n";
7919 outs() << "\t control: invalid " << fpu.fpu_fcw.invalid;
7920 outs() << " denorm " << fpu.fpu_fcw.denorm;
7921 outs() << " zdiv " << fpu.fpu_fcw.zdiv;
7922 outs() << " ovrfl " << fpu.fpu_fcw.ovrfl;
7923 outs() << " undfl " << fpu.fpu_fcw.undfl;
7924 outs() << " precis " << fpu.fpu_fcw.precis << "\n";
7925 outs() << "\t\t pc ";
7926 if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_24B)
7927 outs() << "FP_PREC_24B ";
7928 else if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_53B)
7929 outs() << "FP_PREC_53B ";
7930 else if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_64B)
7931 outs() << "FP_PREC_64B ";
7932 else
7933 outs() << fpu.fpu_fcw.pc << " ";
7934 outs() << "rc ";
7935 if (fpu.fpu_fcw.rc == MachO::x86_FP_RND_NEAR)
7936 outs() << "FP_RND_NEAR ";
7937 else if (fpu.fpu_fcw.rc == MachO::x86_FP_RND_DOWN)
7938 outs() << "FP_RND_DOWN ";
7939 else if (fpu.fpu_fcw.rc == MachO::x86_FP_RND_UP)
7940 outs() << "FP_RND_UP ";
7941 else if (fpu.fpu_fcw.rc == MachO::x86_FP_CHOP)
Kevin Enderby66d51fc2015-01-08 00:25:24 +00007942 outs() << "FP_CHOP ";
Kevin Enderby48ef5342014-12-23 22:56:39 +00007943 outs() << "\n";
7944 outs() << "\t status: invalid " << fpu.fpu_fsw.invalid;
7945 outs() << " denorm " << fpu.fpu_fsw.denorm;
7946 outs() << " zdiv " << fpu.fpu_fsw.zdiv;
7947 outs() << " ovrfl " << fpu.fpu_fsw.ovrfl;
7948 outs() << " undfl " << fpu.fpu_fsw.undfl;
7949 outs() << " precis " << fpu.fpu_fsw.precis;
7950 outs() << " stkflt " << fpu.fpu_fsw.stkflt << "\n";
7951 outs() << "\t errsumm " << fpu.fpu_fsw.errsumm;
7952 outs() << " c0 " << fpu.fpu_fsw.c0;
7953 outs() << " c1 " << fpu.fpu_fsw.c1;
7954 outs() << " c2 " << fpu.fpu_fsw.c2;
7955 outs() << " tos " << fpu.fpu_fsw.tos;
7956 outs() << " c3 " << fpu.fpu_fsw.c3;
7957 outs() << " busy " << fpu.fpu_fsw.busy << "\n";
7958 outs() << "\t fpu_ftw " << format("0x%02" PRIx32, fpu.fpu_ftw);
7959 outs() << " fpu_rsrv1 " << format("0x%02" PRIx32, fpu.fpu_rsrv1);
7960 outs() << " fpu_fop " << format("0x%04" PRIx32, fpu.fpu_fop);
7961 outs() << " fpu_ip " << format("0x%08" PRIx32, fpu.fpu_ip) << "\n";
7962 outs() << "\t fpu_cs " << format("0x%04" PRIx32, fpu.fpu_cs);
7963 outs() << " fpu_rsrv2 " << format("0x%04" PRIx32, fpu.fpu_rsrv2);
7964 outs() << " fpu_dp " << format("0x%08" PRIx32, fpu.fpu_dp);
7965 outs() << " fpu_ds " << format("0x%04" PRIx32, fpu.fpu_ds) << "\n";
7966 outs() << "\t fpu_rsrv3 " << format("0x%04" PRIx32, fpu.fpu_rsrv3);
7967 outs() << " fpu_mxcsr " << format("0x%08" PRIx32, fpu.fpu_mxcsr);
7968 outs() << " fpu_mxcsrmask " << format("0x%08" PRIx32, fpu.fpu_mxcsrmask);
7969 outs() << "\n";
7970 outs() << "\t fpu_stmm0:\n";
7971 Print_mmst_reg(fpu.fpu_stmm0);
7972 outs() << "\t fpu_stmm1:\n";
7973 Print_mmst_reg(fpu.fpu_stmm1);
7974 outs() << "\t fpu_stmm2:\n";
7975 Print_mmst_reg(fpu.fpu_stmm2);
7976 outs() << "\t fpu_stmm3:\n";
7977 Print_mmst_reg(fpu.fpu_stmm3);
7978 outs() << "\t fpu_stmm4:\n";
7979 Print_mmst_reg(fpu.fpu_stmm4);
7980 outs() << "\t fpu_stmm5:\n";
7981 Print_mmst_reg(fpu.fpu_stmm5);
7982 outs() << "\t fpu_stmm6:\n";
7983 Print_mmst_reg(fpu.fpu_stmm6);
7984 outs() << "\t fpu_stmm7:\n";
7985 Print_mmst_reg(fpu.fpu_stmm7);
7986 outs() << "\t fpu_xmm0:\n";
7987 Print_xmm_reg(fpu.fpu_xmm0);
7988 outs() << "\t fpu_xmm1:\n";
7989 Print_xmm_reg(fpu.fpu_xmm1);
7990 outs() << "\t fpu_xmm2:\n";
7991 Print_xmm_reg(fpu.fpu_xmm2);
7992 outs() << "\t fpu_xmm3:\n";
7993 Print_xmm_reg(fpu.fpu_xmm3);
7994 outs() << "\t fpu_xmm4:\n";
7995 Print_xmm_reg(fpu.fpu_xmm4);
7996 outs() << "\t fpu_xmm5:\n";
7997 Print_xmm_reg(fpu.fpu_xmm5);
7998 outs() << "\t fpu_xmm6:\n";
7999 Print_xmm_reg(fpu.fpu_xmm6);
8000 outs() << "\t fpu_xmm7:\n";
8001 Print_xmm_reg(fpu.fpu_xmm7);
8002 outs() << "\t fpu_xmm8:\n";
8003 Print_xmm_reg(fpu.fpu_xmm8);
8004 outs() << "\t fpu_xmm9:\n";
8005 Print_xmm_reg(fpu.fpu_xmm9);
8006 outs() << "\t fpu_xmm10:\n";
8007 Print_xmm_reg(fpu.fpu_xmm10);
8008 outs() << "\t fpu_xmm11:\n";
8009 Print_xmm_reg(fpu.fpu_xmm11);
8010 outs() << "\t fpu_xmm12:\n";
8011 Print_xmm_reg(fpu.fpu_xmm12);
8012 outs() << "\t fpu_xmm13:\n";
8013 Print_xmm_reg(fpu.fpu_xmm13);
8014 outs() << "\t fpu_xmm14:\n";
8015 Print_xmm_reg(fpu.fpu_xmm14);
8016 outs() << "\t fpu_xmm15:\n";
8017 Print_xmm_reg(fpu.fpu_xmm15);
8018 outs() << "\t fpu_rsrv4:\n";
8019 for (uint32_t f = 0; f < 6; f++) {
8020 outs() << "\t ";
8021 for (uint32_t g = 0; g < 16; g++)
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008022 outs() << format("%02" PRIx32, fpu.fpu_rsrv4[f * g]) << " ";
Kevin Enderby48ef5342014-12-23 22:56:39 +00008023 outs() << "\n";
8024 }
8025 outs() << "\t fpu_reserved1 " << format("0x%08" PRIx32, fpu.fpu_reserved1);
8026 outs() << "\n";
8027}
8028
8029static void Print_x86_exception_state_t(MachO::x86_exception_state64_t &exc64) {
8030 outs() << "\t trapno " << format("0x%08" PRIx32, exc64.trapno);
8031 outs() << " err " << format("0x%08" PRIx32, exc64.err);
8032 outs() << " faultvaddr " << format("0x%016" PRIx64, exc64.faultvaddr) << "\n";
8033}
8034
8035static void PrintThreadCommand(MachO::thread_command t, const char *Ptr,
8036 bool isLittleEndian, uint32_t cputype) {
8037 if (t.cmd == MachO::LC_THREAD)
8038 outs() << " cmd LC_THREAD\n";
8039 else if (t.cmd == MachO::LC_UNIXTHREAD)
8040 outs() << " cmd LC_UNIXTHREAD\n";
8041 else
8042 outs() << " cmd " << t.cmd << " (unknown)\n";
8043 outs() << " cmdsize " << t.cmdsize;
8044 if (t.cmdsize < sizeof(struct MachO::thread_command) + 2 * sizeof(uint32_t))
8045 outs() << " Incorrect size\n";
8046 else
8047 outs() << "\n";
8048
8049 const char *begin = Ptr + sizeof(struct MachO::thread_command);
8050 const char *end = Ptr + t.cmdsize;
8051 uint32_t flavor, count, left;
8052 if (cputype == MachO::CPU_TYPE_X86_64) {
8053 while (begin < end) {
8054 if (end - begin > (ptrdiff_t)sizeof(uint32_t)) {
8055 memcpy((char *)&flavor, begin, sizeof(uint32_t));
8056 begin += sizeof(uint32_t);
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008057 } else {
Kevin Enderby48ef5342014-12-23 22:56:39 +00008058 flavor = 0;
8059 begin = end;
8060 }
8061 if (isLittleEndian != sys::IsLittleEndianHost)
8062 sys::swapByteOrder(flavor);
8063 if (end - begin > (ptrdiff_t)sizeof(uint32_t)) {
8064 memcpy((char *)&count, begin, sizeof(uint32_t));
8065 begin += sizeof(uint32_t);
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008066 } else {
Kevin Enderby48ef5342014-12-23 22:56:39 +00008067 count = 0;
8068 begin = end;
8069 }
8070 if (isLittleEndian != sys::IsLittleEndianHost)
8071 sys::swapByteOrder(count);
8072 if (flavor == MachO::x86_THREAD_STATE64) {
8073 outs() << " flavor x86_THREAD_STATE64\n";
8074 if (count == MachO::x86_THREAD_STATE64_COUNT)
8075 outs() << " count x86_THREAD_STATE64_COUNT\n";
8076 else
8077 outs() << " count " << count
8078 << " (not x86_THREAD_STATE64_COUNT)\n";
8079 MachO::x86_thread_state64_t cpu64;
8080 left = end - begin;
8081 if (left >= sizeof(MachO::x86_thread_state64_t)) {
8082 memcpy(&cpu64, begin, sizeof(MachO::x86_thread_state64_t));
8083 begin += sizeof(MachO::x86_thread_state64_t);
8084 } else {
8085 memset(&cpu64, '\0', sizeof(MachO::x86_thread_state64_t));
8086 memcpy(&cpu64, begin, left);
8087 begin += left;
8088 }
8089 if (isLittleEndian != sys::IsLittleEndianHost)
8090 swapStruct(cpu64);
8091 Print_x86_thread_state64_t(cpu64);
8092 } else if (flavor == MachO::x86_THREAD_STATE) {
8093 outs() << " flavor x86_THREAD_STATE\n";
8094 if (count == MachO::x86_THREAD_STATE_COUNT)
8095 outs() << " count x86_THREAD_STATE_COUNT\n";
8096 else
8097 outs() << " count " << count
8098 << " (not x86_THREAD_STATE_COUNT)\n";
8099 struct MachO::x86_thread_state_t ts;
8100 left = end - begin;
8101 if (left >= sizeof(MachO::x86_thread_state_t)) {
8102 memcpy(&ts, begin, sizeof(MachO::x86_thread_state_t));
8103 begin += sizeof(MachO::x86_thread_state_t);
8104 } else {
8105 memset(&ts, '\0', sizeof(MachO::x86_thread_state_t));
8106 memcpy(&ts, begin, left);
8107 begin += left;
8108 }
8109 if (isLittleEndian != sys::IsLittleEndianHost)
8110 swapStruct(ts);
8111 if (ts.tsh.flavor == MachO::x86_THREAD_STATE64) {
8112 outs() << "\t tsh.flavor x86_THREAD_STATE64 ";
8113 if (ts.tsh.count == MachO::x86_THREAD_STATE64_COUNT)
8114 outs() << "tsh.count x86_THREAD_STATE64_COUNT\n";
8115 else
8116 outs() << "tsh.count " << ts.tsh.count
8117 << " (not x86_THREAD_STATE64_COUNT\n";
8118 Print_x86_thread_state64_t(ts.uts.ts64);
8119 } else {
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008120 outs() << "\t tsh.flavor " << ts.tsh.flavor << " tsh.count "
8121 << ts.tsh.count << "\n";
Kevin Enderby48ef5342014-12-23 22:56:39 +00008122 }
8123 } else if (flavor == MachO::x86_FLOAT_STATE) {
8124 outs() << " flavor x86_FLOAT_STATE\n";
8125 if (count == MachO::x86_FLOAT_STATE_COUNT)
8126 outs() << " count x86_FLOAT_STATE_COUNT\n";
8127 else
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008128 outs() << " count " << count << " (not x86_FLOAT_STATE_COUNT)\n";
Kevin Enderby48ef5342014-12-23 22:56:39 +00008129 struct MachO::x86_float_state_t fs;
8130 left = end - begin;
8131 if (left >= sizeof(MachO::x86_float_state_t)) {
8132 memcpy(&fs, begin, sizeof(MachO::x86_float_state_t));
8133 begin += sizeof(MachO::x86_float_state_t);
8134 } else {
8135 memset(&fs, '\0', sizeof(MachO::x86_float_state_t));
8136 memcpy(&fs, begin, left);
8137 begin += left;
8138 }
8139 if (isLittleEndian != sys::IsLittleEndianHost)
8140 swapStruct(fs);
8141 if (fs.fsh.flavor == MachO::x86_FLOAT_STATE64) {
8142 outs() << "\t fsh.flavor x86_FLOAT_STATE64 ";
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008143 if (fs.fsh.count == MachO::x86_FLOAT_STATE64_COUNT)
Kevin Enderby48ef5342014-12-23 22:56:39 +00008144 outs() << "fsh.count x86_FLOAT_STATE64_COUNT\n";
8145 else
8146 outs() << "fsh.count " << fs.fsh.count
8147 << " (not x86_FLOAT_STATE64_COUNT\n";
8148 Print_x86_float_state_t(fs.ufs.fs64);
8149 } else {
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008150 outs() << "\t fsh.flavor " << fs.fsh.flavor << " fsh.count "
8151 << fs.fsh.count << "\n";
Kevin Enderby48ef5342014-12-23 22:56:39 +00008152 }
8153 } else if (flavor == MachO::x86_EXCEPTION_STATE) {
8154 outs() << " flavor x86_EXCEPTION_STATE\n";
8155 if (count == MachO::x86_EXCEPTION_STATE_COUNT)
8156 outs() << " count x86_EXCEPTION_STATE_COUNT\n";
8157 else
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008158 outs() << " count " << count
Kevin Enderby48ef5342014-12-23 22:56:39 +00008159 << " (not x86_EXCEPTION_STATE_COUNT)\n";
8160 struct MachO::x86_exception_state_t es;
8161 left = end - begin;
8162 if (left >= sizeof(MachO::x86_exception_state_t)) {
8163 memcpy(&es, begin, sizeof(MachO::x86_exception_state_t));
8164 begin += sizeof(MachO::x86_exception_state_t);
8165 } else {
8166 memset(&es, '\0', sizeof(MachO::x86_exception_state_t));
8167 memcpy(&es, begin, left);
8168 begin += left;
8169 }
8170 if (isLittleEndian != sys::IsLittleEndianHost)
8171 swapStruct(es);
8172 if (es.esh.flavor == MachO::x86_EXCEPTION_STATE64) {
8173 outs() << "\t esh.flavor x86_EXCEPTION_STATE64\n";
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008174 if (es.esh.count == MachO::x86_EXCEPTION_STATE64_COUNT)
Kevin Enderby48ef5342014-12-23 22:56:39 +00008175 outs() << "\t esh.count x86_EXCEPTION_STATE64_COUNT\n";
8176 else
8177 outs() << "\t esh.count " << es.esh.count
8178 << " (not x86_EXCEPTION_STATE64_COUNT\n";
8179 Print_x86_exception_state_t(es.ues.es64);
8180 } else {
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008181 outs() << "\t esh.flavor " << es.esh.flavor << " esh.count "
8182 << es.esh.count << "\n";
Kevin Enderby48ef5342014-12-23 22:56:39 +00008183 }
8184 } else {
8185 outs() << " flavor " << flavor << " (unknown)\n";
8186 outs() << " count " << count << "\n";
8187 outs() << " state (unknown)\n";
8188 begin += count * sizeof(uint32_t);
8189 }
8190 }
8191 } else {
8192 while (begin < end) {
8193 if (end - begin > (ptrdiff_t)sizeof(uint32_t)) {
8194 memcpy((char *)&flavor, begin, sizeof(uint32_t));
8195 begin += sizeof(uint32_t);
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008196 } else {
Kevin Enderby48ef5342014-12-23 22:56:39 +00008197 flavor = 0;
8198 begin = end;
8199 }
8200 if (isLittleEndian != sys::IsLittleEndianHost)
8201 sys::swapByteOrder(flavor);
8202 if (end - begin > (ptrdiff_t)sizeof(uint32_t)) {
8203 memcpy((char *)&count, begin, sizeof(uint32_t));
8204 begin += sizeof(uint32_t);
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008205 } else {
Kevin Enderby48ef5342014-12-23 22:56:39 +00008206 count = 0;
8207 begin = end;
8208 }
8209 if (isLittleEndian != sys::IsLittleEndianHost)
8210 sys::swapByteOrder(count);
8211 outs() << " flavor " << flavor << "\n";
8212 outs() << " count " << count << "\n";
8213 outs() << " state (Unknown cputype/cpusubtype)\n";
8214 begin += count * sizeof(uint32_t);
8215 }
8216 }
8217}
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008218
Kevin Enderby8ae63c12014-09-04 16:54:47 +00008219static void PrintDylibCommand(MachO::dylib_command dl, const char *Ptr) {
8220 if (dl.cmd == MachO::LC_ID_DYLIB)
8221 outs() << " cmd LC_ID_DYLIB\n";
8222 else if (dl.cmd == MachO::LC_LOAD_DYLIB)
8223 outs() << " cmd LC_LOAD_DYLIB\n";
8224 else if (dl.cmd == MachO::LC_LOAD_WEAK_DYLIB)
8225 outs() << " cmd LC_LOAD_WEAK_DYLIB\n";
8226 else if (dl.cmd == MachO::LC_REEXPORT_DYLIB)
8227 outs() << " cmd LC_REEXPORT_DYLIB\n";
8228 else if (dl.cmd == MachO::LC_LAZY_LOAD_DYLIB)
8229 outs() << " cmd LC_LAZY_LOAD_DYLIB\n";
8230 else if (dl.cmd == MachO::LC_LOAD_UPWARD_DYLIB)
8231 outs() << " cmd LC_LOAD_UPWARD_DYLIB\n";
8232 else
8233 outs() << " cmd " << dl.cmd << " (unknown)\n";
8234 outs() << " cmdsize " << dl.cmdsize;
8235 if (dl.cmdsize < sizeof(struct MachO::dylib_command))
8236 outs() << " Incorrect size\n";
8237 else
8238 outs() << "\n";
8239 if (dl.dylib.name < dl.cmdsize) {
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008240 const char *P = (const char *)(Ptr) + dl.dylib.name;
Kevin Enderby8ae63c12014-09-04 16:54:47 +00008241 outs() << " name " << P << " (offset " << dl.dylib.name << ")\n";
8242 } else {
8243 outs() << " name ?(bad offset " << dl.dylib.name << ")\n";
8244 }
8245 outs() << " time stamp " << dl.dylib.timestamp << " ";
8246 time_t t = dl.dylib.timestamp;
8247 outs() << ctime(&t);
8248 outs() << " current version ";
8249 if (dl.dylib.current_version == 0xffffffff)
8250 outs() << "n/a\n";
8251 else
8252 outs() << ((dl.dylib.current_version >> 16) & 0xffff) << "."
8253 << ((dl.dylib.current_version >> 8) & 0xff) << "."
8254 << (dl.dylib.current_version & 0xff) << "\n";
8255 outs() << "compatibility version ";
8256 if (dl.dylib.compatibility_version == 0xffffffff)
8257 outs() << "n/a\n";
8258 else
8259 outs() << ((dl.dylib.compatibility_version >> 16) & 0xffff) << "."
8260 << ((dl.dylib.compatibility_version >> 8) & 0xff) << "."
8261 << (dl.dylib.compatibility_version & 0xff) << "\n";
8262}
8263
8264static void PrintLinkEditDataCommand(MachO::linkedit_data_command ld,
8265 uint32_t object_size) {
8266 if (ld.cmd == MachO::LC_CODE_SIGNATURE)
8267 outs() << " cmd LC_FUNCTION_STARTS\n";
8268 else if (ld.cmd == MachO::LC_SEGMENT_SPLIT_INFO)
8269 outs() << " cmd LC_SEGMENT_SPLIT_INFO\n";
8270 else if (ld.cmd == MachO::LC_FUNCTION_STARTS)
8271 outs() << " cmd LC_FUNCTION_STARTS\n";
8272 else if (ld.cmd == MachO::LC_DATA_IN_CODE)
8273 outs() << " cmd LC_DATA_IN_CODE\n";
8274 else if (ld.cmd == MachO::LC_DYLIB_CODE_SIGN_DRS)
8275 outs() << " cmd LC_DYLIB_CODE_SIGN_DRS\n";
8276 else if (ld.cmd == MachO::LC_LINKER_OPTIMIZATION_HINT)
8277 outs() << " cmd LC_LINKER_OPTIMIZATION_HINT\n";
8278 else
8279 outs() << " cmd " << ld.cmd << " (?)\n";
8280 outs() << " cmdsize " << ld.cmdsize;
8281 if (ld.cmdsize != sizeof(struct MachO::linkedit_data_command))
8282 outs() << " Incorrect size\n";
8283 else
8284 outs() << "\n";
8285 outs() << " dataoff " << ld.dataoff;
8286 if (ld.dataoff > object_size)
8287 outs() << " (past end of file)\n";
8288 else
8289 outs() << "\n";
8290 outs() << " datasize " << ld.datasize;
8291 uint64_t big_size = ld.dataoff;
8292 big_size += ld.datasize;
8293 if (big_size > object_size)
8294 outs() << " (past end of file)\n";
8295 else
8296 outs() << "\n";
8297}
8298
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00008299static void PrintLoadCommands(const MachOObjectFile *Obj, uint32_t filetype,
8300 uint32_t cputype, bool verbose) {
Kevin Enderby956366c2014-08-29 22:30:52 +00008301 StringRef Buf = Obj->getData();
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00008302 unsigned Index = 0;
8303 for (const auto &Command : Obj->load_commands()) {
8304 outs() << "Load command " << Index++ << "\n";
Kevin Enderby956366c2014-08-29 22:30:52 +00008305 if (Command.C.cmd == MachO::LC_SEGMENT) {
8306 MachO::segment_command SLC = Obj->getSegmentLoadCommand(Command);
8307 const char *sg_segname = SLC.segname;
8308 PrintSegmentCommand(SLC.cmd, SLC.cmdsize, SLC.segname, SLC.vmaddr,
8309 SLC.vmsize, SLC.fileoff, SLC.filesize, SLC.maxprot,
8310 SLC.initprot, SLC.nsects, SLC.flags, Buf.size(),
8311 verbose);
8312 for (unsigned j = 0; j < SLC.nsects; j++) {
Kevin Enderbyc9713382014-12-16 01:14:45 +00008313 MachO::section S = Obj->getSection(Command, j);
Kevin Enderby956366c2014-08-29 22:30:52 +00008314 PrintSection(S.sectname, S.segname, S.addr, S.size, S.offset, S.align,
8315 S.reloff, S.nreloc, S.flags, S.reserved1, S.reserved2,
8316 SLC.cmd, sg_segname, filetype, Buf.size(), verbose);
8317 }
8318 } else if (Command.C.cmd == MachO::LC_SEGMENT_64) {
8319 MachO::segment_command_64 SLC_64 = Obj->getSegment64LoadCommand(Command);
8320 const char *sg_segname = SLC_64.segname;
8321 PrintSegmentCommand(SLC_64.cmd, SLC_64.cmdsize, SLC_64.segname,
8322 SLC_64.vmaddr, SLC_64.vmsize, SLC_64.fileoff,
8323 SLC_64.filesize, SLC_64.maxprot, SLC_64.initprot,
8324 SLC_64.nsects, SLC_64.flags, Buf.size(), verbose);
8325 for (unsigned j = 0; j < SLC_64.nsects; j++) {
8326 MachO::section_64 S_64 = Obj->getSection64(Command, j);
8327 PrintSection(S_64.sectname, S_64.segname, S_64.addr, S_64.size,
8328 S_64.offset, S_64.align, S_64.reloff, S_64.nreloc,
8329 S_64.flags, S_64.reserved1, S_64.reserved2, SLC_64.cmd,
8330 sg_segname, filetype, Buf.size(), verbose);
8331 }
8332 } else if (Command.C.cmd == MachO::LC_SYMTAB) {
8333 MachO::symtab_command Symtab = Obj->getSymtabLoadCommand();
David Majnemer73cc6ff2014-11-13 19:48:56 +00008334 PrintSymtabLoadCommand(Symtab, Obj->is64Bit(), Buf.size());
Kevin Enderby956366c2014-08-29 22:30:52 +00008335 } else if (Command.C.cmd == MachO::LC_DYSYMTAB) {
8336 MachO::dysymtab_command Dysymtab = Obj->getDysymtabLoadCommand();
8337 MachO::symtab_command Symtab = Obj->getSymtabLoadCommand();
David Majnemer73cc6ff2014-11-13 19:48:56 +00008338 PrintDysymtabLoadCommand(Dysymtab, Symtab.nsyms, Buf.size(),
8339 Obj->is64Bit());
Kevin Enderby8ae63c12014-09-04 16:54:47 +00008340 } else if (Command.C.cmd == MachO::LC_DYLD_INFO ||
8341 Command.C.cmd == MachO::LC_DYLD_INFO_ONLY) {
8342 MachO::dyld_info_command DyldInfo = Obj->getDyldInfoLoadCommand(Command);
8343 PrintDyldInfoLoadCommand(DyldInfo, Buf.size());
8344 } else if (Command.C.cmd == MachO::LC_LOAD_DYLINKER ||
8345 Command.C.cmd == MachO::LC_ID_DYLINKER ||
8346 Command.C.cmd == MachO::LC_DYLD_ENVIRONMENT) {
8347 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command);
8348 PrintDyldLoadCommand(Dyld, Command.Ptr);
8349 } else if (Command.C.cmd == MachO::LC_UUID) {
8350 MachO::uuid_command Uuid = Obj->getUuidCommand(Command);
8351 PrintUuidLoadCommand(Uuid);
Jean-Daniel Dupas00cc1f52014-12-04 07:37:02 +00008352 } else if (Command.C.cmd == MachO::LC_RPATH) {
8353 MachO::rpath_command Rpath = Obj->getRpathCommand(Command);
8354 PrintRpathLoadCommand(Rpath, Command.Ptr);
Kevin Enderby1ff0ecc2014-12-16 21:48:27 +00008355 } else if (Command.C.cmd == MachO::LC_VERSION_MIN_MACOSX ||
Tim Northoverbfbfb122015-11-02 21:26:58 +00008356 Command.C.cmd == MachO::LC_VERSION_MIN_IPHONEOS ||
8357 Command.C.cmd == MachO::LC_VERSION_MIN_TVOS ||
8358 Command.C.cmd == MachO::LC_VERSION_MIN_WATCHOS) {
Kevin Enderby8ae63c12014-09-04 16:54:47 +00008359 MachO::version_min_command Vd = Obj->getVersionMinLoadCommand(Command);
8360 PrintVersionMinLoadCommand(Vd);
8361 } else if (Command.C.cmd == MachO::LC_SOURCE_VERSION) {
8362 MachO::source_version_command Sd = Obj->getSourceVersionCommand(Command);
8363 PrintSourceVersionCommand(Sd);
8364 } else if (Command.C.cmd == MachO::LC_MAIN) {
8365 MachO::entry_point_command Ep = Obj->getEntryPointCommand(Command);
8366 PrintEntryPointCommand(Ep);
Kevin Enderby0804f4672014-12-16 23:25:52 +00008367 } else if (Command.C.cmd == MachO::LC_ENCRYPTION_INFO) {
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008368 MachO::encryption_info_command Ei =
8369 Obj->getEncryptionInfoCommand(Command);
Kevin Enderby0804f4672014-12-16 23:25:52 +00008370 PrintEncryptionInfoCommand(Ei, Buf.size());
Kevin Enderby57538292014-12-17 01:01:30 +00008371 } else if (Command.C.cmd == MachO::LC_ENCRYPTION_INFO_64) {
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008372 MachO::encryption_info_command_64 Ei =
8373 Obj->getEncryptionInfoCommand64(Command);
Kevin Enderby57538292014-12-17 01:01:30 +00008374 PrintEncryptionInfoCommand64(Ei, Buf.size());
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +00008375 } else if (Command.C.cmd == MachO::LC_LINKER_OPTION) {
Kevin Enderby66d51fc2015-01-08 00:25:24 +00008376 MachO::linker_option_command Lo =
8377 Obj->getLinkerOptionLoadCommand(Command);
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +00008378 PrintLinkerOptionCommand(Lo, Command.Ptr);
Kevin Enderbyb4b79312014-12-18 19:24:35 +00008379 } else if (Command.C.cmd == MachO::LC_SUB_FRAMEWORK) {
8380 MachO::sub_framework_command Sf = Obj->getSubFrameworkCommand(Command);
8381 PrintSubFrameworkCommand(Sf, Command.Ptr);
Kevin Enderbya2bd8d92014-12-18 23:13:26 +00008382 } else if (Command.C.cmd == MachO::LC_SUB_UMBRELLA) {
8383 MachO::sub_umbrella_command Sf = Obj->getSubUmbrellaCommand(Command);
8384 PrintSubUmbrellaCommand(Sf, Command.Ptr);
Kevin Enderby36c8d3a2014-12-19 19:48:16 +00008385 } else if (Command.C.cmd == MachO::LC_SUB_LIBRARY) {
8386 MachO::sub_library_command Sl = Obj->getSubLibraryCommand(Command);
8387 PrintSubLibraryCommand(Sl, Command.Ptr);
Kevin Enderby186eac32014-12-19 21:06:24 +00008388 } else if (Command.C.cmd == MachO::LC_SUB_CLIENT) {
8389 MachO::sub_client_command Sc = Obj->getSubClientCommand(Command);
8390 PrintSubClientCommand(Sc, Command.Ptr);
Kevin Enderby52e4ce42014-12-19 22:25:22 +00008391 } else if (Command.C.cmd == MachO::LC_ROUTINES) {
8392 MachO::routines_command Rc = Obj->getRoutinesCommand(Command);
8393 PrintRoutinesCommand(Rc);
8394 } else if (Command.C.cmd == MachO::LC_ROUTINES_64) {
8395 MachO::routines_command_64 Rc = Obj->getRoutinesCommand64(Command);
8396 PrintRoutinesCommand64(Rc);
Kevin Enderby48ef5342014-12-23 22:56:39 +00008397 } else if (Command.C.cmd == MachO::LC_THREAD ||
8398 Command.C.cmd == MachO::LC_UNIXTHREAD) {
8399 MachO::thread_command Tc = Obj->getThreadCommand(Command);
8400 PrintThreadCommand(Tc, Command.Ptr, Obj->isLittleEndian(), cputype);
Nick Kledzik15558912014-10-16 18:58:20 +00008401 } else if (Command.C.cmd == MachO::LC_LOAD_DYLIB ||
8402 Command.C.cmd == MachO::LC_ID_DYLIB ||
8403 Command.C.cmd == MachO::LC_LOAD_WEAK_DYLIB ||
8404 Command.C.cmd == MachO::LC_REEXPORT_DYLIB ||
8405 Command.C.cmd == MachO::LC_LAZY_LOAD_DYLIB ||
8406 Command.C.cmd == MachO::LC_LOAD_UPWARD_DYLIB) {
Kevin Enderby8ae63c12014-09-04 16:54:47 +00008407 MachO::dylib_command Dl = Obj->getDylibIDLoadCommand(Command);
8408 PrintDylibCommand(Dl, Command.Ptr);
8409 } else if (Command.C.cmd == MachO::LC_CODE_SIGNATURE ||
8410 Command.C.cmd == MachO::LC_SEGMENT_SPLIT_INFO ||
8411 Command.C.cmd == MachO::LC_FUNCTION_STARTS ||
8412 Command.C.cmd == MachO::LC_DATA_IN_CODE ||
8413 Command.C.cmd == MachO::LC_DYLIB_CODE_SIGN_DRS ||
8414 Command.C.cmd == MachO::LC_LINKER_OPTIMIZATION_HINT) {
8415 MachO::linkedit_data_command Ld =
8416 Obj->getLinkeditDataLoadCommand(Command);
8417 PrintLinkEditDataCommand(Ld, Buf.size());
Kevin Enderby956366c2014-08-29 22:30:52 +00008418 } else {
8419 outs() << " cmd ?(" << format("0x%08" PRIx32, Command.C.cmd)
8420 << ")\n";
8421 outs() << " cmdsize " << Command.C.cmdsize << "\n";
8422 // TODO: get and print the raw bytes of the load command.
8423 }
8424 // TODO: print all the other kinds of load commands.
Kevin Enderby956366c2014-08-29 22:30:52 +00008425 }
8426}
8427
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00008428static void getAndPrintMachHeader(const MachOObjectFile *Obj,
Kevin Enderby956366c2014-08-29 22:30:52 +00008429 uint32_t &filetype, uint32_t &cputype,
8430 bool verbose) {
Kevin Enderbyb76d3862014-08-22 20:35:18 +00008431 if (Obj->is64Bit()) {
8432 MachO::mach_header_64 H_64;
8433 H_64 = Obj->getHeader64();
8434 PrintMachHeader(H_64.magic, H_64.cputype, H_64.cpusubtype, H_64.filetype,
8435 H_64.ncmds, H_64.sizeofcmds, H_64.flags, verbose);
Kevin Enderby956366c2014-08-29 22:30:52 +00008436 filetype = H_64.filetype;
8437 cputype = H_64.cputype;
Kevin Enderbyb76d3862014-08-22 20:35:18 +00008438 } else {
8439 MachO::mach_header H;
8440 H = Obj->getHeader();
8441 PrintMachHeader(H.magic, H.cputype, H.cpusubtype, H.filetype, H.ncmds,
8442 H.sizeofcmds, H.flags, verbose);
Kevin Enderby956366c2014-08-29 22:30:52 +00008443 filetype = H.filetype;
8444 cputype = H.cputype;
Kevin Enderbyb76d3862014-08-22 20:35:18 +00008445 }
8446}
8447
8448void llvm::printMachOFileHeader(const object::ObjectFile *Obj) {
8449 const MachOObjectFile *file = dyn_cast<const MachOObjectFile>(Obj);
Kevin Enderby956366c2014-08-29 22:30:52 +00008450 uint32_t filetype = 0;
8451 uint32_t cputype = 0;
Alexey Samsonovd319c4f2015-06-03 22:19:36 +00008452 getAndPrintMachHeader(file, filetype, cputype, !NonVerbose);
8453 PrintLoadCommands(file, filetype, cputype, !NonVerbose);
Kevin Enderbyb76d3862014-08-22 20:35:18 +00008454}
Nick Kledzikd04bc352014-08-30 00:20:14 +00008455
8456//===----------------------------------------------------------------------===//
8457// export trie dumping
8458//===----------------------------------------------------------------------===//
8459
8460void llvm::printMachOExportsTrie(const object::MachOObjectFile *Obj) {
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008461 for (const llvm::object::ExportEntry &Entry : Obj->exports()) {
8462 uint64_t Flags = Entry.flags();
Nick Kledzikd04bc352014-08-30 00:20:14 +00008463 bool ReExport = (Flags & MachO::EXPORT_SYMBOL_FLAGS_REEXPORT);
8464 bool WeakDef = (Flags & MachO::EXPORT_SYMBOL_FLAGS_WEAK_DEFINITION);
8465 bool ThreadLocal = ((Flags & MachO::EXPORT_SYMBOL_FLAGS_KIND_MASK) ==
8466 MachO::EXPORT_SYMBOL_FLAGS_KIND_THREAD_LOCAL);
8467 bool Abs = ((Flags & MachO::EXPORT_SYMBOL_FLAGS_KIND_MASK) ==
8468 MachO::EXPORT_SYMBOL_FLAGS_KIND_ABSOLUTE);
8469 bool Resolver = (Flags & MachO::EXPORT_SYMBOL_FLAGS_STUB_AND_RESOLVER);
8470 if (ReExport)
8471 outs() << "[re-export] ";
8472 else
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008473 outs() << format("0x%08llX ",
8474 Entry.address()); // FIXME:add in base address
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008475 outs() << Entry.name();
Nick Kledzikd04bc352014-08-30 00:20:14 +00008476 if (WeakDef || ThreadLocal || Resolver || Abs) {
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008477 bool NeedsComma = false;
Nick Kledzik1d1ac4b2014-09-03 01:12:52 +00008478 outs() << " [";
Nick Kledzikd04bc352014-08-30 00:20:14 +00008479 if (WeakDef) {
8480 outs() << "weak_def";
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008481 NeedsComma = true;
Nick Kledzikd04bc352014-08-30 00:20:14 +00008482 }
8483 if (ThreadLocal) {
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008484 if (NeedsComma)
Nick Kledzikd04bc352014-08-30 00:20:14 +00008485 outs() << ", ";
8486 outs() << "per-thread";
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008487 NeedsComma = true;
Nick Kledzikd04bc352014-08-30 00:20:14 +00008488 }
8489 if (Abs) {
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008490 if (NeedsComma)
Nick Kledzikd04bc352014-08-30 00:20:14 +00008491 outs() << ", ";
8492 outs() << "absolute";
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008493 NeedsComma = true;
Nick Kledzikd04bc352014-08-30 00:20:14 +00008494 }
8495 if (Resolver) {
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008496 if (NeedsComma)
Nick Kledzikd04bc352014-08-30 00:20:14 +00008497 outs() << ", ";
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008498 outs() << format("resolver=0x%08llX", Entry.other());
8499 NeedsComma = true;
Nick Kledzikd04bc352014-08-30 00:20:14 +00008500 }
8501 outs() << "]";
8502 }
8503 if (ReExport) {
8504 StringRef DylibName = "unknown";
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008505 int Ordinal = Entry.other() - 1;
8506 Obj->getLibraryShortNameByIndex(Ordinal, DylibName);
8507 if (Entry.otherName().empty())
Nick Kledzikd04bc352014-08-30 00:20:14 +00008508 outs() << " (from " << DylibName << ")";
8509 else
Nick Kledzikac7cbdc2014-09-02 18:50:24 +00008510 outs() << " (" << Entry.otherName() << " from " << DylibName << ")";
Nick Kledzikd04bc352014-08-30 00:20:14 +00008511 }
8512 outs() << "\n";
8513 }
8514}
Nick Kledzikac431442014-09-12 21:34:15 +00008515
Nick Kledzikac431442014-09-12 21:34:15 +00008516//===----------------------------------------------------------------------===//
8517// rebase table dumping
8518//===----------------------------------------------------------------------===//
8519
8520namespace {
8521class SegInfo {
8522public:
8523 SegInfo(const object::MachOObjectFile *Obj);
8524
8525 StringRef segmentName(uint32_t SegIndex);
8526 StringRef sectionName(uint32_t SegIndex, uint64_t SegOffset);
8527 uint64_t address(uint32_t SegIndex, uint64_t SegOffset);
Kevin Enderbyaf7c9d02015-10-09 16:48:44 +00008528 bool isValidSegIndexAndOffset(uint32_t SegIndex, uint64_t SegOffset);
Nick Kledzikac431442014-09-12 21:34:15 +00008529
8530private:
8531 struct SectionInfo {
8532 uint64_t Address;
8533 uint64_t Size;
8534 StringRef SectionName;
8535 StringRef SegmentName;
8536 uint64_t OffsetInSegment;
8537 uint64_t SegmentStartAddress;
8538 uint32_t SegmentIndex;
8539 };
8540 const SectionInfo &findSection(uint32_t SegIndex, uint64_t SegOffset);
8541 SmallVector<SectionInfo, 32> Sections;
8542};
8543}
8544
8545SegInfo::SegInfo(const object::MachOObjectFile *Obj) {
8546 // Build table of sections so segIndex/offset pairs can be translated.
Nick Kledzik56ebef42014-09-16 01:41:51 +00008547 uint32_t CurSegIndex = Obj->hasPageZeroSegment() ? 1 : 0;
Nick Kledzikac431442014-09-12 21:34:15 +00008548 StringRef CurSegName;
8549 uint64_t CurSegAddress;
8550 for (const SectionRef &Section : Obj->sections()) {
8551 SectionInfo Info;
Davide Italianoccd53fe2015-08-05 07:18:31 +00008552 error(Section.getName(Info.SectionName));
Rafael Espindola80291272014-10-08 15:28:58 +00008553 Info.Address = Section.getAddress();
8554 Info.Size = Section.getSize();
Nick Kledzikac431442014-09-12 21:34:15 +00008555 Info.SegmentName =
8556 Obj->getSectionFinalSegmentName(Section.getRawDataRefImpl());
8557 if (!Info.SegmentName.equals(CurSegName)) {
8558 ++CurSegIndex;
8559 CurSegName = Info.SegmentName;
8560 CurSegAddress = Info.Address;
8561 }
8562 Info.SegmentIndex = CurSegIndex - 1;
8563 Info.OffsetInSegment = Info.Address - CurSegAddress;
8564 Info.SegmentStartAddress = CurSegAddress;
8565 Sections.push_back(Info);
8566 }
8567}
8568
8569StringRef SegInfo::segmentName(uint32_t SegIndex) {
8570 for (const SectionInfo &SI : Sections) {
8571 if (SI.SegmentIndex == SegIndex)
8572 return SI.SegmentName;
8573 }
8574 llvm_unreachable("invalid segIndex");
8575}
8576
Kevin Enderbyaf7c9d02015-10-09 16:48:44 +00008577bool SegInfo::isValidSegIndexAndOffset(uint32_t SegIndex,
8578 uint64_t OffsetInSeg) {
8579 for (const SectionInfo &SI : Sections) {
8580 if (SI.SegmentIndex != SegIndex)
8581 continue;
8582 if (SI.OffsetInSegment > OffsetInSeg)
8583 continue;
8584 if (OffsetInSeg >= (SI.OffsetInSegment + SI.Size))
8585 continue;
8586 return true;
8587 }
8588 return false;
8589}
8590
Nick Kledzikac431442014-09-12 21:34:15 +00008591const SegInfo::SectionInfo &SegInfo::findSection(uint32_t SegIndex,
8592 uint64_t OffsetInSeg) {
8593 for (const SectionInfo &SI : Sections) {
8594 if (SI.SegmentIndex != SegIndex)
8595 continue;
8596 if (SI.OffsetInSegment > OffsetInSeg)
8597 continue;
8598 if (OffsetInSeg >= (SI.OffsetInSegment + SI.Size))
8599 continue;
8600 return SI;
8601 }
8602 llvm_unreachable("segIndex and offset not in any section");
8603}
8604
8605StringRef SegInfo::sectionName(uint32_t SegIndex, uint64_t OffsetInSeg) {
8606 return findSection(SegIndex, OffsetInSeg).SectionName;
8607}
8608
8609uint64_t SegInfo::address(uint32_t SegIndex, uint64_t OffsetInSeg) {
8610 const SectionInfo &SI = findSection(SegIndex, OffsetInSeg);
8611 return SI.SegmentStartAddress + OffsetInSeg;
8612}
8613
8614void llvm::printMachORebaseTable(const object::MachOObjectFile *Obj) {
8615 // Build table of sections so names can used in final output.
8616 SegInfo sectionTable(Obj);
8617
8618 outs() << "segment section address type\n";
8619 for (const llvm::object::MachORebaseEntry &Entry : Obj->rebaseTable()) {
8620 uint32_t SegIndex = Entry.segmentIndex();
8621 uint64_t OffsetInSeg = Entry.segmentOffset();
8622 StringRef SegmentName = sectionTable.segmentName(SegIndex);
8623 StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg);
8624 uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8625
8626 // Table lines look like: __DATA __nl_symbol_ptr 0x0000F00C pointer
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008627 outs() << format("%-8s %-18s 0x%08" PRIX64 " %s\n",
8628 SegmentName.str().c_str(), SectionName.str().c_str(),
8629 Address, Entry.typeName().str().c_str());
Nick Kledzikac431442014-09-12 21:34:15 +00008630 }
8631}
Nick Kledzik56ebef42014-09-16 01:41:51 +00008632
8633static StringRef ordinalName(const object::MachOObjectFile *Obj, int Ordinal) {
8634 StringRef DylibName;
8635 switch (Ordinal) {
8636 case MachO::BIND_SPECIAL_DYLIB_SELF:
8637 return "this-image";
8638 case MachO::BIND_SPECIAL_DYLIB_MAIN_EXECUTABLE:
8639 return "main-executable";
8640 case MachO::BIND_SPECIAL_DYLIB_FLAT_LOOKUP:
8641 return "flat-namespace";
8642 default:
Nick Kledzikabd29872014-09-16 22:03:13 +00008643 if (Ordinal > 0) {
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008644 std::error_code EC =
8645 Obj->getLibraryShortNameByIndex(Ordinal - 1, DylibName);
Nick Kledzikabd29872014-09-16 22:03:13 +00008646 if (EC)
Nick Kledzik51d2c2b2014-10-14 23:29:38 +00008647 return "<<bad library ordinal>>";
Nick Kledzikabd29872014-09-16 22:03:13 +00008648 return DylibName;
8649 }
Nick Kledzik56ebef42014-09-16 01:41:51 +00008650 }
Nick Kledzikabd29872014-09-16 22:03:13 +00008651 return "<<unknown special ordinal>>";
Nick Kledzik56ebef42014-09-16 01:41:51 +00008652}
8653
8654//===----------------------------------------------------------------------===//
8655// bind table dumping
8656//===----------------------------------------------------------------------===//
8657
8658void llvm::printMachOBindTable(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 type "
8663 "addend dylib symbol\n";
Nick Kledzik56ebef42014-09-16 01:41:51 +00008664 for (const llvm::object::MachOBindEntry &Entry : Obj->bindTable()) {
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 pointer 0 libSystem ___stack_chk_guard
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008673 StringRef Attr;
Nick Kledzik56ebef42014-09-16 01:41:51 +00008674 if (Entry.flags() & MachO::BIND_SYMBOL_FLAGS_WEAK_IMPORT)
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008675 Attr = " (weak_import)";
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008676 outs() << left_justify(SegmentName, 8) << " "
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008677 << left_justify(SectionName, 18) << " "
8678 << format_hex(Address, 10, true) << " "
8679 << left_justify(Entry.typeName(), 8) << " "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008680 << format_decimal(Entry.addend(), 8) << " "
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008681 << left_justify(ordinalName(Obj, Entry.ordinal()), 16) << " "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008682 << Entry.symbolName() << Attr << "\n";
Nick Kledzik56ebef42014-09-16 01:41:51 +00008683 }
8684}
8685
8686//===----------------------------------------------------------------------===//
8687// lazy bind table dumping
8688//===----------------------------------------------------------------------===//
8689
8690void llvm::printMachOLazyBindTable(const object::MachOObjectFile *Obj) {
8691 // Build table of sections so names can used in final output.
8692 SegInfo sectionTable(Obj);
8693
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008694 outs() << "segment section address "
8695 "dylib symbol\n";
Nick Kledzik56ebef42014-09-16 01:41:51 +00008696 for (const llvm::object::MachOBindEntry &Entry : Obj->lazyBindTable()) {
8697 uint32_t SegIndex = Entry.segmentIndex();
8698 uint64_t OffsetInSeg = Entry.segmentOffset();
8699 StringRef SegmentName = sectionTable.segmentName(SegIndex);
8700 StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg);
8701 uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8702
8703 // Table lines look like:
8704 // __DATA __got 0x00012010 libSystem ___stack_chk_guard
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008705 outs() << left_justify(SegmentName, 8) << " "
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008706 << left_justify(SectionName, 18) << " "
8707 << format_hex(Address, 10, true) << " "
8708 << left_justify(ordinalName(Obj, Entry.ordinal()), 16) << " "
Nick Kledzik56ebef42014-09-16 01:41:51 +00008709 << Entry.symbolName() << "\n";
8710 }
8711}
8712
Nick Kledzik56ebef42014-09-16 01:41:51 +00008713//===----------------------------------------------------------------------===//
8714// weak bind table dumping
8715//===----------------------------------------------------------------------===//
8716
8717void llvm::printMachOWeakBindTable(const object::MachOObjectFile *Obj) {
8718 // Build table of sections so names can used in final output.
8719 SegInfo sectionTable(Obj);
8720
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008721 outs() << "segment section address "
8722 "type addend symbol\n";
Nick Kledzik56ebef42014-09-16 01:41:51 +00008723 for (const llvm::object::MachOBindEntry &Entry : Obj->weakBindTable()) {
8724 // Strong symbols don't have a location to update.
8725 if (Entry.flags() & MachO::BIND_SYMBOL_FLAGS_NON_WEAK_DEFINITION) {
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008726 outs() << " strong "
Nick Kledzik56ebef42014-09-16 01:41:51 +00008727 << Entry.symbolName() << "\n";
8728 continue;
8729 }
8730 uint32_t SegIndex = Entry.segmentIndex();
8731 uint64_t OffsetInSeg = Entry.segmentOffset();
8732 StringRef SegmentName = sectionTable.segmentName(SegIndex);
8733 StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg);
8734 uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8735
8736 // Table lines look like:
8737 // __DATA __data 0x00001000 pointer 0 _foo
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008738 outs() << left_justify(SegmentName, 8) << " "
Nick Kledzik5ffacc12014-09-30 00:19:58 +00008739 << left_justify(SectionName, 18) << " "
8740 << format_hex(Address, 10, true) << " "
8741 << left_justify(Entry.typeName(), 8) << " "
Kevin Enderbyb28ed012014-10-29 21:28:24 +00008742 << format_decimal(Entry.addend(), 8) << " " << Entry.symbolName()
8743 << "\n";
Nick Kledzik56ebef42014-09-16 01:41:51 +00008744 }
8745}
8746
Kevin Enderby6f326ce2014-10-23 19:37:31 +00008747// get_dyld_bind_info_symbolname() is used for disassembly and passed an
8748// address, ReferenceValue, in the Mach-O file and looks in the dyld bind
8749// information for that address. If the address is found its binding symbol
8750// name is returned. If not nullptr is returned.
8751static const char *get_dyld_bind_info_symbolname(uint64_t ReferenceValue,
8752 struct DisassembleInfo *info) {
Kevin Enderby078be602014-10-23 19:53:12 +00008753 if (info->bindtable == nullptr) {
8754 info->bindtable = new (BindTable);
Kevin Enderby6f326ce2014-10-23 19:37:31 +00008755 SegInfo sectionTable(info->O);
8756 for (const llvm::object::MachOBindEntry &Entry : info->O->bindTable()) {
8757 uint32_t SegIndex = Entry.segmentIndex();
8758 uint64_t OffsetInSeg = Entry.segmentOffset();
Kevin Enderbyaf7c9d02015-10-09 16:48:44 +00008759 if (!sectionTable.isValidSegIndexAndOffset(SegIndex, OffsetInSeg))
8760 continue;
Kevin Enderby6f326ce2014-10-23 19:37:31 +00008761 uint64_t Address = sectionTable.address(SegIndex, OffsetInSeg);
8762 const char *SymbolName = nullptr;
8763 StringRef name = Entry.symbolName();
8764 if (!name.empty())
8765 SymbolName = name.data();
Kevin Enderby078be602014-10-23 19:53:12 +00008766 info->bindtable->push_back(std::make_pair(Address, SymbolName));
Kevin Enderby6f326ce2014-10-23 19:37:31 +00008767 }
8768 }
Kevin Enderby078be602014-10-23 19:53:12 +00008769 for (bind_table_iterator BI = info->bindtable->begin(),
8770 BE = info->bindtable->end();
Kevin Enderby6f326ce2014-10-23 19:37:31 +00008771 BI != BE; ++BI) {
8772 uint64_t Address = BI->first;
8773 if (ReferenceValue == Address) {
8774 const char *SymbolName = BI->second;
8775 return SymbolName;
8776 }
8777 }
8778 return nullptr;
8779}