blob: 2409314e12cbc97d04d4eadf494f42696139421f [file] [log] [blame]
Eric Christopher7b015c72011-04-22 03:19:48 +00001//===- MachOObjectFile.cpp - Mach-O object file binding ---------*- C++ -*-===//
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 defines the MachOObjectFile class, which binds the MachOObject
11// class to the generic ObjectFile wrapper.
12//
13//===----------------------------------------------------------------------===//
14
Owen Anderson27c579d2011-10-11 17:32:27 +000015#include "llvm/Object/MachO.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/Triple.h"
Rafael Espindola421305a2013-04-07 20:01:29 +000017#include "llvm/Support/DataExtractor.h"
Owen Andersonbc14bd32011-10-26 20:42:54 +000018#include "llvm/Support/Format.h"
Rafael Espindola56f976f2013-04-18 18:08:55 +000019#include "llvm/Support/Host.h"
Eric Christopher7b015c72011-04-22 03:19:48 +000020#include "llvm/Support/MemoryBuffer.h"
Jakub Staszak84a0ae72013-08-21 01:20:11 +000021#include "llvm/Support/raw_ostream.h"
Eric Christopher7b015c72011-04-22 03:19:48 +000022#include <cctype>
23#include <cstring>
24#include <limits>
25
26using namespace llvm;
27using namespace object;
28
29namespace llvm {
Owen Anderson27c579d2011-10-11 17:32:27 +000030namespace object {
Eric Christopher7b015c72011-04-22 03:19:48 +000031
Charles Davis8bdfafd2013-09-01 04:28:48 +000032struct nlist_base {
33 uint32_t n_strx;
34 uint8_t n_type;
35 uint8_t n_sect;
36 uint16_t n_desc;
Rafael Espindola56f976f2013-04-18 18:08:55 +000037};
38
Charles Davis8bdfafd2013-09-01 04:28:48 +000039struct section_base {
40 char sectname[16];
41 char segname[16];
Rafael Espindola56f976f2013-04-18 18:08:55 +000042};
43
44template<typename T>
45static void SwapValue(T &Value) {
46 Value = sys::SwapByteOrder(Value);
Benjamin Kramer022ecdf2011-09-08 20:52:17 +000047}
48
Rafael Espindola56f976f2013-04-18 18:08:55 +000049template<typename T>
50static void SwapStruct(T &Value);
51
52template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +000053void SwapStruct(MachO::any_relocation_info &H) {
54 SwapValue(H.r_word0);
55 SwapValue(H.r_word1);
Rafael Espindola5ffc0792013-04-07 16:07:35 +000056}
57
Rafael Espindola56f976f2013-04-18 18:08:55 +000058template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +000059void SwapStruct(MachO::load_command &L) {
60 SwapValue(L.cmd);
61 SwapValue(L.cmdsize);
Rafael Espindola56f976f2013-04-18 18:08:55 +000062}
Rafael Espindola421305a2013-04-07 20:01:29 +000063
Rafael Espindola56f976f2013-04-18 18:08:55 +000064template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +000065void SwapStruct(nlist_base &S) {
66 SwapValue(S.n_strx);
67 SwapValue(S.n_desc);
Rafael Espindola56f976f2013-04-18 18:08:55 +000068}
69
70template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +000071void SwapStruct(MachO::section &S) {
72 SwapValue(S.addr);
73 SwapValue(S.size);
74 SwapValue(S.offset);
75 SwapValue(S.align);
76 SwapValue(S.reloff);
77 SwapValue(S.nreloc);
78 SwapValue(S.flags);
79 SwapValue(S.reserved1);
80 SwapValue(S.reserved2);
Rafael Espindola56f976f2013-04-18 18:08:55 +000081}
82
83template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +000084void SwapStruct(MachO::section_64 &S) {
85 SwapValue(S.addr);
86 SwapValue(S.size);
87 SwapValue(S.offset);
88 SwapValue(S.align);
89 SwapValue(S.reloff);
90 SwapValue(S.nreloc);
91 SwapValue(S.flags);
92 SwapValue(S.reserved1);
93 SwapValue(S.reserved2);
94 SwapValue(S.reserved3);
Rafael Espindola56f976f2013-04-18 18:08:55 +000095}
96
97template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +000098void SwapStruct(MachO::nlist &S) {
99 SwapValue(S.n_strx);
100 SwapValue(S.n_desc);
101 SwapValue(S.n_value);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000102}
103
104template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +0000105void SwapStruct(MachO::nlist_64 &S) {
106 SwapValue(S.n_strx);
107 SwapValue(S.n_desc);
108 SwapValue(S.n_value);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000109}
110
111template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +0000112void SwapStruct(MachO::mach_header &H) {
113 SwapValue(H.magic);
114 SwapValue(H.cputype);
115 SwapValue(H.cpusubtype);
116 SwapValue(H.filetype);
117 SwapValue(H.ncmds);
118 SwapValue(H.sizeofcmds);
119 SwapValue(H.flags);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000120}
121
122template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +0000123void SwapStruct(MachO::mach_header_64 &H) {
124 SwapValue(H.magic);
125 SwapValue(H.cputype);
126 SwapValue(H.cpusubtype);
127 SwapValue(H.filetype);
128 SwapValue(H.ncmds);
129 SwapValue(H.sizeofcmds);
130 SwapValue(H.flags);
131 SwapValue(H.reserved);
Rafael Espindola6e040c02013-04-26 20:07:33 +0000132}
133
134template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +0000135void SwapStruct(MachO::symtab_command &C) {
136 SwapValue(C.cmd);
137 SwapValue(C.cmdsize);
138 SwapValue(C.symoff);
139 SwapValue(C.nsyms);
140 SwapValue(C.stroff);
141 SwapValue(C.strsize);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000142}
143
144template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +0000145void SwapStruct(MachO::dysymtab_command &C) {
146 SwapValue(C.cmd);
147 SwapValue(C.cmdsize);
148 SwapValue(C.ilocalsym);
149 SwapValue(C.nlocalsym);
150 SwapValue(C.iextdefsym);
151 SwapValue(C.nextdefsym);
152 SwapValue(C.iundefsym);
153 SwapValue(C.nundefsym);
154 SwapValue(C.tocoff);
155 SwapValue(C.ntoc);
156 SwapValue(C.modtaboff);
157 SwapValue(C.nmodtab);
158 SwapValue(C.extrefsymoff);
159 SwapValue(C.nextrefsyms);
160 SwapValue(C.indirectsymoff);
161 SwapValue(C.nindirectsyms);
162 SwapValue(C.extreloff);
163 SwapValue(C.nextrel);
164 SwapValue(C.locreloff);
165 SwapValue(C.nlocrel);
Rafael Espindola6e040c02013-04-26 20:07:33 +0000166}
167
168template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +0000169void SwapStruct(MachO::linkedit_data_command &C) {
170 SwapValue(C.cmd);
171 SwapValue(C.cmdsize);
172 SwapValue(C.dataoff);
173 SwapValue(C.datasize);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000174}
175
176template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +0000177void SwapStruct(MachO::segment_command &C) {
178 SwapValue(C.cmd);
179 SwapValue(C.cmdsize);
180 SwapValue(C.vmaddr);
181 SwapValue(C.vmsize);
182 SwapValue(C.fileoff);
183 SwapValue(C.filesize);
184 SwapValue(C.maxprot);
185 SwapValue(C.initprot);
186 SwapValue(C.nsects);
187 SwapValue(C.flags);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000188}
189
190template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +0000191void SwapStruct(MachO::segment_command_64 &C) {
192 SwapValue(C.cmd);
193 SwapValue(C.cmdsize);
194 SwapValue(C.vmaddr);
195 SwapValue(C.vmsize);
196 SwapValue(C.fileoff);
197 SwapValue(C.filesize);
198 SwapValue(C.maxprot);
199 SwapValue(C.initprot);
200 SwapValue(C.nsects);
201 SwapValue(C.flags);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000202}
203
Rafael Espindola6e040c02013-04-26 20:07:33 +0000204template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +0000205void SwapStruct(uint32_t &C) {
206 SwapValue(C);
Rafael Espindola6e040c02013-04-26 20:07:33 +0000207}
208
209template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +0000210void SwapStruct(MachO::linker_options_command &C) {
211 SwapValue(C.cmd);
212 SwapValue(C.cmdsize);
213 SwapValue(C.count);
Rafael Espindola6e040c02013-04-26 20:07:33 +0000214}
215
216template<>
Charles Davis8bdfafd2013-09-01 04:28:48 +0000217void SwapStruct(MachO::data_in_code_entry &C) {
218 SwapValue(C.offset);
219 SwapValue(C.length);
220 SwapValue(C.kind);
Rafael Espindola6e040c02013-04-26 20:07:33 +0000221}
222
Rafael Espindola3cdeb172013-04-19 13:45:05 +0000223template<typename T>
224T getStruct(const MachOObjectFile *O, const char *P) {
225 T Cmd;
226 memcpy(&Cmd, P, sizeof(T));
227 if (O->isLittleEndian() != sys::IsLittleEndianHost)
228 SwapStruct(Cmd);
229 return Cmd;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000230}
231
Rafael Espindola56f976f2013-04-18 18:08:55 +0000232static uint32_t
233getSegmentLoadCommandNumSections(const MachOObjectFile *O,
234 const MachOObjectFile::LoadCommandInfo &L) {
235 if (O->is64Bit()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000236 MachO::segment_command_64 S = O->getSegment64LoadCommand(L);
237 return S.nsects;
Rafael Espindola421305a2013-04-07 20:01:29 +0000238 }
Charles Davis8bdfafd2013-09-01 04:28:48 +0000239 MachO::segment_command S = O->getSegmentLoadCommand(L);
240 return S.nsects;
Rafael Espindola5ffc0792013-04-07 16:07:35 +0000241}
242
Rafael Espindola6e040c02013-04-26 20:07:33 +0000243static const char *
244getSectionPtr(const MachOObjectFile *O, MachOObjectFile::LoadCommandInfo L,
245 unsigned Sec) {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000246 uintptr_t CommandAddr = reinterpret_cast<uintptr_t>(L.Ptr);
247
248 bool Is64 = O->is64Bit();
Charles Davis8bdfafd2013-09-01 04:28:48 +0000249 unsigned SegmentLoadSize = Is64 ? sizeof(MachO::segment_command_64) :
250 sizeof(MachO::segment_command);
251 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) :
252 sizeof(MachO::section);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000253
254 uintptr_t SectionAddr = CommandAddr + SegmentLoadSize + Sec * SectionSize;
Charles Davis1827bd82013-08-27 05:38:30 +0000255 return reinterpret_cast<const char*>(SectionAddr);
Rafael Espindola60689982013-04-07 19:05:30 +0000256}
257
Rafael Espindola56f976f2013-04-18 18:08:55 +0000258static const char *getPtr(const MachOObjectFile *O, size_t Offset) {
259 return O->getData().substr(Offset, 1).data();
Rafael Espindola60689982013-04-07 19:05:30 +0000260}
261
Charles Davis8bdfafd2013-09-01 04:28:48 +0000262static nlist_base
Rafael Espindola56f976f2013-04-18 18:08:55 +0000263getSymbolTableEntryBase(const MachOObjectFile *O, DataRefImpl DRI) {
Rafael Espindola75c30362013-04-24 19:47:55 +0000264 const char *P = reinterpret_cast<const char *>(DRI.p);
Charles Davis8bdfafd2013-09-01 04:28:48 +0000265 return getStruct<nlist_base>(O, P);
Eric Christopher7b015c72011-04-22 03:19:48 +0000266}
267
Rafael Espindola56f976f2013-04-18 18:08:55 +0000268static StringRef parseSegmentOrSectionName(const char *P) {
Rafael Espindolaa9f810b2012-12-21 03:47:03 +0000269 if (P[15] == 0)
270 // Null terminated.
271 return P;
272 // Not null terminated, so this is a 16 char string.
273 return StringRef(P, 16);
274}
275
Rafael Espindola56f976f2013-04-18 18:08:55 +0000276// Helper to advance a section or symbol iterator multiple increments at a time.
277template<class T>
278static error_code advance(T &it, size_t Val) {
279 error_code ec;
280 while (Val--) {
281 it.increment(ec);
282 }
283 return ec;
284}
285
286template<class T>
287static void advanceTo(T &it, size_t Val) {
288 if (error_code ec = advance(it, Val))
289 report_fatal_error(ec.message());
290}
291
292static unsigned getCPUType(const MachOObjectFile *O) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000293 return O->getHeader().cputype;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000294}
295
296static void printRelocationTargetName(const MachOObjectFile *O,
Charles Davis8bdfafd2013-09-01 04:28:48 +0000297 const MachO::any_relocation_info &RE,
Rafael Espindola56f976f2013-04-18 18:08:55 +0000298 raw_string_ostream &fmt) {
299 bool IsScattered = O->isRelocationScattered(RE);
300
301 // Target of a scattered relocation is an address. In the interest of
302 // generating pretty output, scan through the symbol table looking for a
303 // symbol that aligns with that address. If we find one, print it.
304 // Otherwise, we just print the hex address of the target.
305 if (IsScattered) {
306 uint32_t Val = O->getPlainRelocationSymbolNum(RE);
307
308 error_code ec;
309 for (symbol_iterator SI = O->begin_symbols(), SE = O->end_symbols();
310 SI != SE; SI.increment(ec)) {
311 if (ec) report_fatal_error(ec.message());
312
313 uint64_t Addr;
314 StringRef Name;
315
316 if ((ec = SI->getAddress(Addr)))
317 report_fatal_error(ec.message());
318 if (Addr != Val) continue;
319 if ((ec = SI->getName(Name)))
320 report_fatal_error(ec.message());
321 fmt << Name;
322 return;
323 }
324
325 // If we couldn't find a symbol that this relocation refers to, try
326 // to find a section beginning instead.
327 for (section_iterator SI = O->begin_sections(), SE = O->end_sections();
328 SI != SE; SI.increment(ec)) {
329 if (ec) report_fatal_error(ec.message());
330
331 uint64_t Addr;
332 StringRef Name;
333
334 if ((ec = SI->getAddress(Addr)))
335 report_fatal_error(ec.message());
336 if (Addr != Val) continue;
337 if ((ec = SI->getName(Name)))
338 report_fatal_error(ec.message());
339 fmt << Name;
340 return;
341 }
342
343 fmt << format("0x%x", Val);
344 return;
345 }
346
347 StringRef S;
348 bool isExtern = O->getPlainRelocationExternal(RE);
Ahmed Bougacha9dab0cc2013-05-14 22:41:29 +0000349 uint64_t Val = O->getPlainRelocationSymbolNum(RE);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000350
351 if (isExtern) {
352 symbol_iterator SI = O->begin_symbols();
353 advanceTo(SI, Val);
354 SI->getName(S);
355 } else {
356 section_iterator SI = O->begin_sections();
Ahmed Bougacha9dab0cc2013-05-14 22:41:29 +0000357 // Adjust for the fact that sections are 1-indexed.
358 advanceTo(SI, Val - 1);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000359 SI->getName(S);
360 }
361
362 fmt << S;
363}
364
Charles Davis8bdfafd2013-09-01 04:28:48 +0000365static uint32_t
366getPlainRelocationAddress(const MachO::any_relocation_info &RE) {
367 return RE.r_word0;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000368}
369
370static unsigned
Charles Davis8bdfafd2013-09-01 04:28:48 +0000371getScatteredRelocationAddress(const MachO::any_relocation_info &RE) {
372 return RE.r_word0 & 0xffffff;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000373}
374
375static bool getPlainRelocationPCRel(const MachOObjectFile *O,
Charles Davis8bdfafd2013-09-01 04:28:48 +0000376 const MachO::any_relocation_info &RE) {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000377 if (O->isLittleEndian())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000378 return (RE.r_word1 >> 24) & 1;
379 return (RE.r_word1 >> 7) & 1;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000380}
381
382static bool
383getScatteredRelocationPCRel(const MachOObjectFile *O,
Charles Davis8bdfafd2013-09-01 04:28:48 +0000384 const MachO::any_relocation_info &RE) {
385 return (RE.r_word0 >> 30) & 1;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000386}
387
388static unsigned getPlainRelocationLength(const MachOObjectFile *O,
Charles Davis8bdfafd2013-09-01 04:28:48 +0000389 const MachO::any_relocation_info &RE) {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000390 if (O->isLittleEndian())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000391 return (RE.r_word1 >> 25) & 3;
392 return (RE.r_word1 >> 5) & 3;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000393}
394
395static unsigned
Charles Davis8bdfafd2013-09-01 04:28:48 +0000396getScatteredRelocationLength(const MachO::any_relocation_info &RE) {
397 return (RE.r_word0 >> 28) & 3;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000398}
399
400static unsigned getPlainRelocationType(const MachOObjectFile *O,
Charles Davis8bdfafd2013-09-01 04:28:48 +0000401 const MachO::any_relocation_info &RE) {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000402 if (O->isLittleEndian())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000403 return RE.r_word1 >> 28;
404 return RE.r_word1 & 0xf;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000405}
406
Charles Davis8bdfafd2013-09-01 04:28:48 +0000407static unsigned
408getScatteredRelocationType(const MachO::any_relocation_info &RE) {
409 return (RE.r_word0 >> 24) & 0xf;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000410}
411
412static uint32_t getSectionFlags(const MachOObjectFile *O,
413 DataRefImpl Sec) {
414 if (O->is64Bit()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000415 MachO::section_64 Sect = O->getSection64(Sec);
416 return Sect.flags;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000417 }
Charles Davis8bdfafd2013-09-01 04:28:48 +0000418 MachO::section Sect = O->getSection(Sec);
419 return Sect.flags;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000420}
421
Rafael Espindolaafcc3df2014-01-24 21:32:21 +0000422MachOObjectFile::MachOObjectFile(MemoryBuffer *Object, bool IsLittleEndian,
423 bool Is64bits, error_code &EC,
424 bool BufferOwned)
425 : ObjectFile(getMachOType(IsLittleEndian, Is64bits), Object, BufferOwned),
Kevin Enderby273ae012013-06-06 17:20:50 +0000426 SymtabLoadCmd(NULL), DysymtabLoadCmd(NULL), DataInCodeLoadCmd(NULL) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000427 uint32_t LoadCommandCount = this->getHeader().ncmds;
428 MachO::LoadCommandType SegmentLoadType = is64Bit() ?
429 MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000430
431 MachOObjectFile::LoadCommandInfo Load = getFirstLoadCommandInfo();
Rafael Espindolafeef8c22013-04-19 11:36:47 +0000432 for (unsigned I = 0; ; ++I) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000433 if (Load.C.cmd == MachO::LC_SYMTAB) {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000434 assert(!SymtabLoadCmd && "Multiple symbol tables");
435 SymtabLoadCmd = Load.Ptr;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000436 } else if (Load.C.cmd == MachO::LC_DYSYMTAB) {
Rafael Espindola6e040c02013-04-26 20:07:33 +0000437 assert(!DysymtabLoadCmd && "Multiple dynamic symbol tables");
438 DysymtabLoadCmd = Load.Ptr;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000439 } else if (Load.C.cmd == MachO::LC_DATA_IN_CODE) {
Kevin Enderby273ae012013-06-06 17:20:50 +0000440 assert(!DataInCodeLoadCmd && "Multiple data in code tables");
441 DataInCodeLoadCmd = Load.Ptr;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000442 } else if (Load.C.cmd == SegmentLoadType) {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000443 uint32_t NumSections = getSegmentLoadCommandNumSections(this, Load);
444 for (unsigned J = 0; J < NumSections; ++J) {
Rafael Espindola6e040c02013-04-26 20:07:33 +0000445 const char *Sec = getSectionPtr(this, Load, J);
446 Sections.push_back(Sec);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000447 }
448 }
Rafael Espindolafeef8c22013-04-19 11:36:47 +0000449
450 if (I == LoadCommandCount - 1)
451 break;
452 else
453 Load = getNextLoadCommandInfo(Load);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000454 }
455}
456
457error_code MachOObjectFile::getSymbolNext(DataRefImpl Symb,
458 SymbolRef &Res) const {
Rafael Espindola75c30362013-04-24 19:47:55 +0000459 unsigned SymbolTableEntrySize = is64Bit() ?
Charles Davis8bdfafd2013-09-01 04:28:48 +0000460 sizeof(MachO::nlist_64) :
461 sizeof(MachO::nlist);
Rafael Espindola75c30362013-04-24 19:47:55 +0000462 Symb.p += SymbolTableEntrySize;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000463 Res = SymbolRef(Symb, this);
464 return object_error::success;
465}
466
467error_code MachOObjectFile::getSymbolName(DataRefImpl Symb,
468 StringRef &Res) const {
Rafael Espindola6e040c02013-04-26 20:07:33 +0000469 StringRef StringTable = getStringTableData();
Charles Davis8bdfafd2013-09-01 04:28:48 +0000470 nlist_base Entry = getSymbolTableEntryBase(this, Symb);
471 const char *Start = &StringTable.data()[Entry.n_strx];
Rafael Espindola56f976f2013-04-18 18:08:55 +0000472 Res = StringRef(Start);
473 return object_error::success;
474}
475
476error_code MachOObjectFile::getSymbolAddress(DataRefImpl Symb,
477 uint64_t &Res) const {
478 if (is64Bit()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000479 MachO::nlist_64 Entry = getSymbol64TableEntry(Symb);
480 Res = Entry.n_value;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000481 } else {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000482 MachO::nlist Entry = getSymbolTableEntry(Symb);
483 Res = Entry.n_value;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000484 }
485 return object_error::success;
486}
487
488error_code
489MachOObjectFile::getSymbolFileOffset(DataRefImpl Symb,
490 uint64_t &Res) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000491 nlist_base Entry = getSymbolTableEntryBase(this, Symb);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000492 getSymbolAddress(Symb, Res);
Charles Davis8bdfafd2013-09-01 04:28:48 +0000493 if (Entry.n_sect) {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000494 uint64_t Delta;
495 DataRefImpl SecRel;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000496 SecRel.d.a = Entry.n_sect-1;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000497 if (is64Bit()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000498 MachO::section_64 Sec = getSection64(SecRel);
499 Delta = Sec.offset - Sec.addr;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000500 } else {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000501 MachO::section Sec = getSection(SecRel);
502 Delta = Sec.offset - Sec.addr;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000503 }
504
505 Res += Delta;
506 }
507
508 return object_error::success;
509}
510
Rafael Espindolae4dd2e02013-04-29 22:24:22 +0000511error_code MachOObjectFile::getSymbolAlignment(DataRefImpl DRI,
512 uint32_t &Result) const {
513 uint32_t flags;
514 this->getSymbolFlags(DRI, flags);
515 if (flags & SymbolRef::SF_Common) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000516 nlist_base Entry = getSymbolTableEntryBase(this, DRI);
517 Result = 1 << MachO::GET_COMM_ALIGN(Entry.n_desc);
Rafael Espindolae4dd2e02013-04-29 22:24:22 +0000518 } else {
519 Result = 0;
520 }
521 return object_error::success;
522}
523
Rafael Espindola56f976f2013-04-18 18:08:55 +0000524error_code MachOObjectFile::getSymbolSize(DataRefImpl DRI,
525 uint64_t &Result) const {
526 uint64_t BeginOffset;
527 uint64_t EndOffset = 0;
528 uint8_t SectionIndex;
529
Charles Davis8bdfafd2013-09-01 04:28:48 +0000530 nlist_base Entry = getSymbolTableEntryBase(this, DRI);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000531 uint64_t Value;
532 getSymbolAddress(DRI, Value);
533
534 BeginOffset = Value;
535
Charles Davis8bdfafd2013-09-01 04:28:48 +0000536 SectionIndex = Entry.n_sect;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000537 if (!SectionIndex) {
538 uint32_t flags = SymbolRef::SF_None;
539 this->getSymbolFlags(DRI, flags);
540 if (flags & SymbolRef::SF_Common)
541 Result = Value;
542 else
543 Result = UnknownAddressOrSize;
544 return object_error::success;
545 }
546 // Unfortunately symbols are unsorted so we need to touch all
547 // symbols from load command
Rafael Espindola75c30362013-04-24 19:47:55 +0000548 error_code ec;
549 for (symbol_iterator I = begin_symbols(), E = end_symbols(); I != E;
550 I.increment(ec)) {
551 DataRefImpl DRI = I->getRawDataRefImpl();
Rafael Espindola56f976f2013-04-18 18:08:55 +0000552 Entry = getSymbolTableEntryBase(this, DRI);
553 getSymbolAddress(DRI, Value);
Charles Davis8bdfafd2013-09-01 04:28:48 +0000554 if (Entry.n_sect == SectionIndex && Value > BeginOffset)
Rafael Espindola56f976f2013-04-18 18:08:55 +0000555 if (!EndOffset || Value < EndOffset)
556 EndOffset = Value;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000557 }
558 if (!EndOffset) {
559 uint64_t Size;
560 DataRefImpl Sec;
561 Sec.d.a = SectionIndex-1;
562 getSectionSize(Sec, Size);
563 getSectionAddress(Sec, EndOffset);
564 EndOffset += Size;
565 }
566 Result = EndOffset - BeginOffset;
567 return object_error::success;
568}
569
570error_code MachOObjectFile::getSymbolType(DataRefImpl Symb,
571 SymbolRef::Type &Res) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000572 nlist_base Entry = getSymbolTableEntryBase(this, Symb);
573 uint8_t n_type = Entry.n_type;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000574
575 Res = SymbolRef::ST_Other;
576
577 // If this is a STAB debugging symbol, we can do nothing more.
Charles Davis74ec8b02013-08-27 05:00:13 +0000578 if (n_type & MachO::N_STAB) {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000579 Res = SymbolRef::ST_Debug;
580 return object_error::success;
581 }
582
Charles Davis74ec8b02013-08-27 05:00:13 +0000583 switch (n_type & MachO::N_TYPE) {
584 case MachO::N_UNDF :
Rafael Espindola56f976f2013-04-18 18:08:55 +0000585 Res = SymbolRef::ST_Unknown;
586 break;
Charles Davis74ec8b02013-08-27 05:00:13 +0000587 case MachO::N_SECT :
Rafael Espindola56f976f2013-04-18 18:08:55 +0000588 Res = SymbolRef::ST_Function;
589 break;
590 }
591 return object_error::success;
592}
593
Rafael Espindola56f976f2013-04-18 18:08:55 +0000594error_code MachOObjectFile::getSymbolFlags(DataRefImpl DRI,
595 uint32_t &Result) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000596 nlist_base Entry = getSymbolTableEntryBase(this, DRI);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000597
Charles Davis8bdfafd2013-09-01 04:28:48 +0000598 uint8_t MachOType = Entry.n_type;
599 uint16_t MachOFlags = Entry.n_desc;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000600
601 // TODO: Correctly set SF_ThreadLocal
602 Result = SymbolRef::SF_None;
603
Charles Davis74ec8b02013-08-27 05:00:13 +0000604 if ((MachOType & MachO::N_TYPE) == MachO::N_UNDF)
Rafael Espindola56f976f2013-04-18 18:08:55 +0000605 Result |= SymbolRef::SF_Undefined;
606
Rafael Espindolaa1356322013-11-02 05:03:24 +0000607 if (MachOType & MachO::N_STAB)
Rafael Espindola56f976f2013-04-18 18:08:55 +0000608 Result |= SymbolRef::SF_FormatSpecific;
609
Charles Davis74ec8b02013-08-27 05:00:13 +0000610 if (MachOType & MachO::N_EXT) {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000611 Result |= SymbolRef::SF_Global;
Charles Davis74ec8b02013-08-27 05:00:13 +0000612 if ((MachOType & MachO::N_TYPE) == MachO::N_UNDF) {
Rafael Espindolae4dd2e02013-04-29 22:24:22 +0000613 uint64_t Value;
614 getSymbolAddress(DRI, Value);
615 if (Value)
616 Result |= SymbolRef::SF_Common;
617 }
Rafael Espindola56f976f2013-04-18 18:08:55 +0000618 }
619
Charles Davis74ec8b02013-08-27 05:00:13 +0000620 if (MachOFlags & (MachO::N_WEAK_REF | MachO::N_WEAK_DEF))
Rafael Espindola56f976f2013-04-18 18:08:55 +0000621 Result |= SymbolRef::SF_Weak;
622
Charles Davis74ec8b02013-08-27 05:00:13 +0000623 if ((MachOType & MachO::N_TYPE) == MachO::N_ABS)
Rafael Espindola56f976f2013-04-18 18:08:55 +0000624 Result |= SymbolRef::SF_Absolute;
625
626 return object_error::success;
627}
628
629error_code
630MachOObjectFile::getSymbolSection(DataRefImpl Symb,
631 section_iterator &Res) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000632 nlist_base Entry = getSymbolTableEntryBase(this, Symb);
633 uint8_t index = Entry.n_sect;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000634
635 if (index == 0) {
636 Res = end_sections();
637 } else {
638 DataRefImpl DRI;
639 DRI.d.a = index - 1;
640 Res = section_iterator(SectionRef(DRI, this));
641 }
642
643 return object_error::success;
644}
645
646error_code MachOObjectFile::getSymbolValue(DataRefImpl Symb,
Rafael Espindola137faa02013-04-24 15:14:22 +0000647 uint64_t &Val) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000648 report_fatal_error("getSymbolValue unimplemented in MachOObjectFile");
649}
650
651error_code MachOObjectFile::getSectionNext(DataRefImpl Sec,
652 SectionRef &Res) const {
653 Sec.d.a++;
654 Res = SectionRef(Sec, this);
655 return object_error::success;
656}
657
658error_code
Rafael Espindola137faa02013-04-24 15:14:22 +0000659MachOObjectFile::getSectionName(DataRefImpl Sec, StringRef &Result) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000660 ArrayRef<char> Raw = getSectionRawName(Sec);
661 Result = parseSegmentOrSectionName(Raw.data());
662 return object_error::success;
663}
664
665error_code
Rafael Espindola137faa02013-04-24 15:14:22 +0000666MachOObjectFile::getSectionAddress(DataRefImpl Sec, uint64_t &Res) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000667 if (is64Bit()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000668 MachO::section_64 Sect = getSection64(Sec);
669 Res = Sect.addr;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000670 } else {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000671 MachO::section Sect = getSection(Sec);
672 Res = Sect.addr;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000673 }
674 return object_error::success;
675}
676
677error_code
Rafael Espindola137faa02013-04-24 15:14:22 +0000678MachOObjectFile::getSectionSize(DataRefImpl Sec, uint64_t &Res) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000679 if (is64Bit()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000680 MachO::section_64 Sect = getSection64(Sec);
681 Res = Sect.size;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000682 } else {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000683 MachO::section Sect = getSection(Sec);
684 Res = Sect.size;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000685 }
686
687 return object_error::success;
688}
689
690error_code
Rafael Espindola137faa02013-04-24 15:14:22 +0000691MachOObjectFile::getSectionContents(DataRefImpl Sec, StringRef &Res) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000692 uint32_t Offset;
693 uint64_t Size;
694
695 if (is64Bit()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000696 MachO::section_64 Sect = getSection64(Sec);
697 Offset = Sect.offset;
698 Size = Sect.size;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000699 } else {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000700 MachO::section Sect = getSection(Sec);
701 Offset = Sect.offset;
702 Size = Sect.size;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000703 }
704
705 Res = this->getData().substr(Offset, Size);
706 return object_error::success;
707}
708
709error_code
Rafael Espindola137faa02013-04-24 15:14:22 +0000710MachOObjectFile::getSectionAlignment(DataRefImpl Sec, uint64_t &Res) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +0000711 uint32_t Align;
712 if (is64Bit()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000713 MachO::section_64 Sect = getSection64(Sec);
714 Align = Sect.align;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000715 } else {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000716 MachO::section Sect = getSection(Sec);
717 Align = Sect.align;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000718 }
719
720 Res = uint64_t(1) << Align;
721 return object_error::success;
722}
723
724error_code
725MachOObjectFile::isSectionText(DataRefImpl Sec, bool &Res) const {
726 uint32_t Flags = getSectionFlags(this, Sec);
Charles Davis8bdfafd2013-09-01 04:28:48 +0000727 Res = Flags & MachO::S_ATTR_PURE_INSTRUCTIONS;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000728 return object_error::success;
729}
730
Rafael Espindola137faa02013-04-24 15:14:22 +0000731error_code MachOObjectFile::isSectionData(DataRefImpl DRI, bool &Result) const {
Michael J. Spencer800619f2011-09-28 20:57:30 +0000732 // FIXME: Unimplemented.
733 Result = false;
734 return object_error::success;
735}
736
Rafael Espindola137faa02013-04-24 15:14:22 +0000737error_code MachOObjectFile::isSectionBSS(DataRefImpl DRI, bool &Result) const {
Andrew Kaylorb96a3202012-10-10 01:45:52 +0000738 // FIXME: Unimplemented.
Preston Gurd2138ef62012-04-12 20:13:57 +0000739 Result = false;
740 return object_error::success;
741}
742
Rafael Espindolac2413f52013-04-09 14:49:08 +0000743error_code
Rafael Espindola56f976f2013-04-18 18:08:55 +0000744MachOObjectFile::isSectionRequiredForExecution(DataRefImpl Sec,
Rafael Espindola137faa02013-04-24 15:14:22 +0000745 bool &Result) const {
Rafael Espindolac2413f52013-04-09 14:49:08 +0000746 // FIXME: Unimplemented.
747 Result = true;
Preston Gurd2138ef62012-04-12 20:13:57 +0000748 return object_error::success;
749}
750
Rafael Espindola56f976f2013-04-18 18:08:55 +0000751error_code MachOObjectFile::isSectionVirtual(DataRefImpl Sec,
Rafael Espindola137faa02013-04-24 15:14:22 +0000752 bool &Result) const {
Rafael Espindolac2413f52013-04-09 14:49:08 +0000753 // FIXME: Unimplemented.
754 Result = false;
755 return object_error::success;
756}
757
Rafael Espindola56f976f2013-04-18 18:08:55 +0000758error_code
759MachOObjectFile::isSectionZeroInit(DataRefImpl Sec, bool &Res) const {
760 uint32_t Flags = getSectionFlags(this, Sec);
Charles Davis74ec8b02013-08-27 05:00:13 +0000761 unsigned SectionType = Flags & MachO::SECTION_TYPE;
762 Res = SectionType == MachO::S_ZEROFILL ||
763 SectionType == MachO::S_GB_ZEROFILL;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000764 return object_error::success;
765}
766
767error_code MachOObjectFile::isSectionReadOnlyData(DataRefImpl Sec,
Rafael Espindola137faa02013-04-24 15:14:22 +0000768 bool &Result) const {
Andrew Kaylor3f31fa02012-10-10 01:41:33 +0000769 // Consider using the code from isSectionText to look for __const sections.
770 // Alternately, emit S_ATTR_PURE_INSTRUCTIONS and/or S_ATTR_SOME_INSTRUCTIONS
771 // to use section attributes to distinguish code from data.
772
773 // FIXME: Unimplemented.
774 Result = false;
775 return object_error::success;
776}
777
Rafael Espindola56f976f2013-04-18 18:08:55 +0000778error_code
Rafael Espindola137faa02013-04-24 15:14:22 +0000779MachOObjectFile::sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
Rafael Espindola56f976f2013-04-18 18:08:55 +0000780 bool &Result) const {
781 SymbolRef::Type ST;
782 this->getSymbolType(Symb, ST);
783 if (ST == SymbolRef::ST_Unknown) {
784 Result = false;
785 return object_error::success;
786 }
787
788 uint64_t SectBegin, SectEnd;
789 getSectionAddress(Sec, SectBegin);
790 getSectionSize(Sec, SectEnd);
791 SectEnd += SectBegin;
792
793 uint64_t SymAddr;
794 getSymbolAddress(Symb, SymAddr);
795 Result = (SymAddr >= SectBegin) && (SymAddr < SectEnd);
796
797 return object_error::success;
798}
799
Rui Ueyamabc654b12013-09-27 21:47:05 +0000800relocation_iterator MachOObjectFile::section_rel_begin(DataRefImpl Sec) const {
Rafael Espindola04d3f492013-04-25 12:45:46 +0000801 uint32_t Offset;
802 if (is64Bit()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000803 MachO::section_64 Sect = getSection64(Sec);
804 Offset = Sect.reloff;
Rafael Espindola04d3f492013-04-25 12:45:46 +0000805 } else {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000806 MachO::section Sect = getSection(Sec);
807 Offset = Sect.reloff;
Rafael Espindola04d3f492013-04-25 12:45:46 +0000808 }
809
810 DataRefImpl Ret;
811 Ret.p = reinterpret_cast<uintptr_t>(getPtr(this, Offset));
812 return relocation_iterator(RelocationRef(Ret, this));
Michael J. Spencere5fd0042011-10-07 19:25:32 +0000813}
Rafael Espindolac0406e12013-04-08 20:45:01 +0000814
Rafael Espindola56f976f2013-04-18 18:08:55 +0000815relocation_iterator
Rui Ueyamabc654b12013-09-27 21:47:05 +0000816MachOObjectFile::section_rel_end(DataRefImpl Sec) const {
Rafael Espindola04d3f492013-04-25 12:45:46 +0000817 uint32_t Offset;
818 uint32_t Num;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000819 if (is64Bit()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000820 MachO::section_64 Sect = getSection64(Sec);
821 Offset = Sect.reloff;
822 Num = Sect.nreloc;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000823 } else {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000824 MachO::section Sect = getSection(Sec);
825 Offset = Sect.reloff;
826 Num = Sect.nreloc;
Rafael Espindola56f976f2013-04-18 18:08:55 +0000827 }
Eric Christopher7b015c72011-04-22 03:19:48 +0000828
Charles Davis8bdfafd2013-09-01 04:28:48 +0000829 const MachO::any_relocation_info *P =
830 reinterpret_cast<const MachO::any_relocation_info *>(getPtr(this, Offset));
Rafael Espindola04d3f492013-04-25 12:45:46 +0000831
Rafael Espindola56f976f2013-04-18 18:08:55 +0000832 DataRefImpl Ret;
Rafael Espindola04d3f492013-04-25 12:45:46 +0000833 Ret.p = reinterpret_cast<uintptr_t>(P + Num);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000834 return relocation_iterator(RelocationRef(Ret, this));
835}
Benjamin Kramer022ecdf2011-09-08 20:52:17 +0000836
Rafael Espindola04d3f492013-04-25 12:45:46 +0000837error_code MachOObjectFile::getRelocationNext(DataRefImpl Rel,
838 RelocationRef &Res) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000839 const MachO::any_relocation_info *P =
840 reinterpret_cast<const MachO::any_relocation_info *>(Rel.p);
Rafael Espindola04d3f492013-04-25 12:45:46 +0000841 Rel.p = reinterpret_cast<uintptr_t>(P + 1);
Benjamin Kramer022ecdf2011-09-08 20:52:17 +0000842 Res = RelocationRef(Rel, this);
843 return object_error::success;
844}
Owen Anderson171f4852011-10-24 23:20:07 +0000845
Rafael Espindola56f976f2013-04-18 18:08:55 +0000846error_code
Rafael Espindola137faa02013-04-24 15:14:22 +0000847MachOObjectFile::getRelocationAddress(DataRefImpl Rel, uint64_t &Res) const {
Rafael Espindola1e483872013-04-25 12:28:45 +0000848 report_fatal_error("getRelocationAddress not implemented in MachOObjectFile");
Benjamin Kramer022ecdf2011-09-08 20:52:17 +0000849}
850
Rafael Espindola56f976f2013-04-18 18:08:55 +0000851error_code MachOObjectFile::getRelocationOffset(DataRefImpl Rel,
Rafael Espindola137faa02013-04-24 15:14:22 +0000852 uint64_t &Res) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000853 MachO::any_relocation_info RE = getRelocation(Rel);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000854 Res = getAnyRelocationAddress(RE);
855 return object_error::success;
David Meyer2fc34c52012-03-01 01:36:50 +0000856}
857
Rafael Espindola806f0062013-06-05 01:33:53 +0000858symbol_iterator
859MachOObjectFile::getRelocationSymbol(DataRefImpl Rel) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000860 MachO::any_relocation_info RE = getRelocation(Rel);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000861 uint32_t SymbolIdx = getPlainRelocationSymbolNum(RE);
862 bool isExtern = getPlainRelocationExternal(RE);
Rafael Espindola806f0062013-06-05 01:33:53 +0000863 if (!isExtern)
864 return end_symbols();
Rafael Espindola75c30362013-04-24 19:47:55 +0000865
Charles Davis8bdfafd2013-09-01 04:28:48 +0000866 MachO::symtab_command S = getSymtabLoadCommand();
Rafael Espindola75c30362013-04-24 19:47:55 +0000867 unsigned SymbolTableEntrySize = is64Bit() ?
Charles Davis8bdfafd2013-09-01 04:28:48 +0000868 sizeof(MachO::nlist_64) :
869 sizeof(MachO::nlist);
870 uint64_t Offset = S.symoff + SymbolIdx * SymbolTableEntrySize;
Rafael Espindola75c30362013-04-24 19:47:55 +0000871 DataRefImpl Sym;
872 Sym.p = reinterpret_cast<uintptr_t>(getPtr(this, Offset));
Rafael Espindola806f0062013-06-05 01:33:53 +0000873 return symbol_iterator(SymbolRef(Sym, this));
Rafael Espindola56f976f2013-04-18 18:08:55 +0000874}
875
876error_code MachOObjectFile::getRelocationType(DataRefImpl Rel,
Rafael Espindola137faa02013-04-24 15:14:22 +0000877 uint64_t &Res) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000878 MachO::any_relocation_info RE = getRelocation(Rel);
Rafael Espindola56f976f2013-04-18 18:08:55 +0000879 Res = getAnyRelocationType(RE);
880 return object_error::success;
881}
882
883error_code
884MachOObjectFile::getRelocationTypeName(DataRefImpl Rel,
885 SmallVectorImpl<char> &Result) const {
886 StringRef res;
887 uint64_t RType;
888 getRelocationType(Rel, RType);
889
890 unsigned Arch = this->getArch();
891
892 switch (Arch) {
893 case Triple::x86: {
894 static const char *const Table[] = {
895 "GENERIC_RELOC_VANILLA",
896 "GENERIC_RELOC_PAIR",
897 "GENERIC_RELOC_SECTDIFF",
898 "GENERIC_RELOC_PB_LA_PTR",
899 "GENERIC_RELOC_LOCAL_SECTDIFF",
900 "GENERIC_RELOC_TLV" };
901
Eric Christopher13250cb2013-12-06 02:33:38 +0000902 if (RType > 5)
Rafael Espindola56f976f2013-04-18 18:08:55 +0000903 res = "Unknown";
904 else
905 res = Table[RType];
906 break;
907 }
908 case Triple::x86_64: {
909 static const char *const Table[] = {
910 "X86_64_RELOC_UNSIGNED",
911 "X86_64_RELOC_SIGNED",
912 "X86_64_RELOC_BRANCH",
913 "X86_64_RELOC_GOT_LOAD",
914 "X86_64_RELOC_GOT",
915 "X86_64_RELOC_SUBTRACTOR",
916 "X86_64_RELOC_SIGNED_1",
917 "X86_64_RELOC_SIGNED_2",
918 "X86_64_RELOC_SIGNED_4",
919 "X86_64_RELOC_TLV" };
920
921 if (RType > 9)
922 res = "Unknown";
923 else
924 res = Table[RType];
925 break;
926 }
927 case Triple::arm: {
928 static const char *const Table[] = {
929 "ARM_RELOC_VANILLA",
930 "ARM_RELOC_PAIR",
931 "ARM_RELOC_SECTDIFF",
932 "ARM_RELOC_LOCAL_SECTDIFF",
933 "ARM_RELOC_PB_LA_PTR",
934 "ARM_RELOC_BR24",
935 "ARM_THUMB_RELOC_BR22",
936 "ARM_THUMB_32BIT_BRANCH",
937 "ARM_RELOC_HALF",
938 "ARM_RELOC_HALF_SECTDIFF" };
939
940 if (RType > 9)
941 res = "Unknown";
942 else
943 res = Table[RType];
944 break;
945 }
946 case Triple::ppc: {
947 static const char *const Table[] = {
948 "PPC_RELOC_VANILLA",
949 "PPC_RELOC_PAIR",
950 "PPC_RELOC_BR14",
951 "PPC_RELOC_BR24",
952 "PPC_RELOC_HI16",
953 "PPC_RELOC_LO16",
954 "PPC_RELOC_HA16",
955 "PPC_RELOC_LO14",
956 "PPC_RELOC_SECTDIFF",
957 "PPC_RELOC_PB_LA_PTR",
958 "PPC_RELOC_HI16_SECTDIFF",
959 "PPC_RELOC_LO16_SECTDIFF",
960 "PPC_RELOC_HA16_SECTDIFF",
961 "PPC_RELOC_JBSR",
962 "PPC_RELOC_LO14_SECTDIFF",
963 "PPC_RELOC_LOCAL_SECTDIFF" };
964
Eric Christopher13250cb2013-12-06 02:33:38 +0000965 if (RType > 15)
966 res = "Unknown";
967 else
968 res = Table[RType];
Rafael Espindola56f976f2013-04-18 18:08:55 +0000969 break;
970 }
971 case Triple::UnknownArch:
972 res = "Unknown";
973 break;
974 }
975 Result.append(res.begin(), res.end());
976 return object_error::success;
977}
978
Rafael Espindola56f976f2013-04-18 18:08:55 +0000979error_code
980MachOObjectFile::getRelocationValueString(DataRefImpl Rel,
Rafael Espindola137faa02013-04-24 15:14:22 +0000981 SmallVectorImpl<char> &Result) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000982 MachO::any_relocation_info RE = getRelocation(Rel);
David Meyer2fc34c52012-03-01 01:36:50 +0000983
Rafael Espindola56f976f2013-04-18 18:08:55 +0000984 unsigned Arch = this->getArch();
Eric Christopher7b015c72011-04-22 03:19:48 +0000985
Rafael Espindola56f976f2013-04-18 18:08:55 +0000986 std::string fmtbuf;
987 raw_string_ostream fmt(fmtbuf);
988 unsigned Type = this->getAnyRelocationType(RE);
989 bool IsPCRel = this->getAnyRelocationPCRel(RE);
990
991 // Determine any addends that should be displayed with the relocation.
992 // These require decoding the relocation type, which is triple-specific.
993
994 // X86_64 has entirely custom relocation types.
995 if (Arch == Triple::x86_64) {
996 bool isPCRel = getAnyRelocationPCRel(RE);
997
998 switch (Type) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000999 case MachO::X86_64_RELOC_GOT_LOAD:
1000 case MachO::X86_64_RELOC_GOT: {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001001 printRelocationTargetName(this, RE, fmt);
1002 fmt << "@GOT";
1003 if (isPCRel) fmt << "PCREL";
1004 break;
1005 }
Charles Davis8bdfafd2013-09-01 04:28:48 +00001006 case MachO::X86_64_RELOC_SUBTRACTOR: {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001007 DataRefImpl RelNext = Rel;
1008 RelNext.d.a++;
Charles Davis8bdfafd2013-09-01 04:28:48 +00001009 MachO::any_relocation_info RENext = getRelocation(RelNext);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001010
Charles Davis8bdfafd2013-09-01 04:28:48 +00001011 // X86_64_RELOC_SUBTRACTOR must be followed by a relocation of type
Rafael Espindola56f976f2013-04-18 18:08:55 +00001012 // X86_64_RELOC_UNSIGNED.
1013 // NOTE: Scattered relocations don't exist on x86_64.
1014 unsigned RType = getAnyRelocationType(RENext);
Charles Davis8bdfafd2013-09-01 04:28:48 +00001015 if (RType != MachO::X86_64_RELOC_UNSIGNED)
Rafael Espindola56f976f2013-04-18 18:08:55 +00001016 report_fatal_error("Expected X86_64_RELOC_UNSIGNED after "
1017 "X86_64_RELOC_SUBTRACTOR.");
1018
Charles Davis8bdfafd2013-09-01 04:28:48 +00001019 // The X86_64_RELOC_UNSIGNED contains the minuend symbol;
1020 // X86_64_RELOC_SUBTRACTOR contains the subtrahend.
Rafael Espindola56f976f2013-04-18 18:08:55 +00001021 printRelocationTargetName(this, RENext, fmt);
1022 fmt << "-";
1023 printRelocationTargetName(this, RE, fmt);
1024 break;
1025 }
Charles Davis8bdfafd2013-09-01 04:28:48 +00001026 case MachO::X86_64_RELOC_TLV:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001027 printRelocationTargetName(this, RE, fmt);
1028 fmt << "@TLV";
1029 if (isPCRel) fmt << "P";
1030 break;
Charles Davis8bdfafd2013-09-01 04:28:48 +00001031 case MachO::X86_64_RELOC_SIGNED_1:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001032 printRelocationTargetName(this, RE, fmt);
1033 fmt << "-1";
1034 break;
Charles Davis8bdfafd2013-09-01 04:28:48 +00001035 case MachO::X86_64_RELOC_SIGNED_2:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001036 printRelocationTargetName(this, RE, fmt);
1037 fmt << "-2";
1038 break;
Charles Davis8bdfafd2013-09-01 04:28:48 +00001039 case MachO::X86_64_RELOC_SIGNED_4:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001040 printRelocationTargetName(this, RE, fmt);
1041 fmt << "-4";
1042 break;
1043 default:
1044 printRelocationTargetName(this, RE, fmt);
1045 break;
1046 }
1047 // X86 and ARM share some relocation types in common.
David Fangb88cdf62013-08-08 20:14:40 +00001048 } else if (Arch == Triple::x86 || Arch == Triple::arm ||
1049 Arch == Triple::ppc) {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001050 // Generic relocation types...
1051 switch (Type) {
Charles Davis8bdfafd2013-09-01 04:28:48 +00001052 case MachO::GENERIC_RELOC_PAIR: // prints no info
Rafael Espindola56f976f2013-04-18 18:08:55 +00001053 return object_error::success;
Charles Davis8bdfafd2013-09-01 04:28:48 +00001054 case MachO::GENERIC_RELOC_SECTDIFF: {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001055 DataRefImpl RelNext = Rel;
1056 RelNext.d.a++;
Charles Davis8bdfafd2013-09-01 04:28:48 +00001057 MachO::any_relocation_info RENext = getRelocation(RelNext);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001058
1059 // X86 sect diff's must be followed by a relocation of type
1060 // GENERIC_RELOC_PAIR.
1061 unsigned RType = getAnyRelocationType(RENext);
1062
Charles Davis8bdfafd2013-09-01 04:28:48 +00001063 if (RType != MachO::GENERIC_RELOC_PAIR)
Rafael Espindola56f976f2013-04-18 18:08:55 +00001064 report_fatal_error("Expected GENERIC_RELOC_PAIR after "
1065 "GENERIC_RELOC_SECTDIFF.");
1066
1067 printRelocationTargetName(this, RE, fmt);
1068 fmt << "-";
1069 printRelocationTargetName(this, RENext, fmt);
1070 break;
1071 }
1072 }
1073
David Fangb88cdf62013-08-08 20:14:40 +00001074 if (Arch == Triple::x86 || Arch == Triple::ppc) {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001075 switch (Type) {
Charles Davis8bdfafd2013-09-01 04:28:48 +00001076 case MachO::GENERIC_RELOC_LOCAL_SECTDIFF: {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001077 DataRefImpl RelNext = Rel;
1078 RelNext.d.a++;
Charles Davis8bdfafd2013-09-01 04:28:48 +00001079 MachO::any_relocation_info RENext = getRelocation(RelNext);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001080
1081 // X86 sect diff's must be followed by a relocation of type
1082 // GENERIC_RELOC_PAIR.
1083 unsigned RType = getAnyRelocationType(RENext);
Charles Davis8bdfafd2013-09-01 04:28:48 +00001084 if (RType != MachO::GENERIC_RELOC_PAIR)
Rafael Espindola56f976f2013-04-18 18:08:55 +00001085 report_fatal_error("Expected GENERIC_RELOC_PAIR after "
1086 "GENERIC_RELOC_LOCAL_SECTDIFF.");
1087
1088 printRelocationTargetName(this, RE, fmt);
1089 fmt << "-";
1090 printRelocationTargetName(this, RENext, fmt);
1091 break;
1092 }
Charles Davis8bdfafd2013-09-01 04:28:48 +00001093 case MachO::GENERIC_RELOC_TLV: {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001094 printRelocationTargetName(this, RE, fmt);
1095 fmt << "@TLV";
1096 if (IsPCRel) fmt << "P";
1097 break;
1098 }
1099 default:
1100 printRelocationTargetName(this, RE, fmt);
1101 }
1102 } else { // ARM-specific relocations
1103 switch (Type) {
Charles Davis8bdfafd2013-09-01 04:28:48 +00001104 case MachO::ARM_RELOC_HALF:
1105 case MachO::ARM_RELOC_HALF_SECTDIFF: {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001106 // Half relocations steal a bit from the length field to encode
1107 // whether this is an upper16 or a lower16 relocation.
1108 bool isUpper = getAnyRelocationLength(RE) >> 1;
1109
1110 if (isUpper)
1111 fmt << ":upper16:(";
1112 else
1113 fmt << ":lower16:(";
1114 printRelocationTargetName(this, RE, fmt);
1115
1116 DataRefImpl RelNext = Rel;
1117 RelNext.d.a++;
Charles Davis8bdfafd2013-09-01 04:28:48 +00001118 MachO::any_relocation_info RENext = getRelocation(RelNext);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001119
1120 // ARM half relocs must be followed by a relocation of type
1121 // ARM_RELOC_PAIR.
1122 unsigned RType = getAnyRelocationType(RENext);
Charles Davis8bdfafd2013-09-01 04:28:48 +00001123 if (RType != MachO::ARM_RELOC_PAIR)
Rafael Espindola56f976f2013-04-18 18:08:55 +00001124 report_fatal_error("Expected ARM_RELOC_PAIR after "
Charles Davis8bdfafd2013-09-01 04:28:48 +00001125 "ARM_RELOC_HALF");
Rafael Espindola56f976f2013-04-18 18:08:55 +00001126
1127 // NOTE: The half of the target virtual address is stashed in the
1128 // address field of the secondary relocation, but we can't reverse
1129 // engineer the constant offset from it without decoding the movw/movt
1130 // instruction to find the other half in its immediate field.
1131
1132 // ARM_RELOC_HALF_SECTDIFF encodes the second section in the
1133 // symbol/section pointer of the follow-on relocation.
Charles Davis8bdfafd2013-09-01 04:28:48 +00001134 if (Type == MachO::ARM_RELOC_HALF_SECTDIFF) {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001135 fmt << "-";
1136 printRelocationTargetName(this, RENext, fmt);
1137 }
1138
1139 fmt << ")";
1140 break;
1141 }
1142 default: {
1143 printRelocationTargetName(this, RE, fmt);
1144 }
1145 }
1146 }
1147 } else
1148 printRelocationTargetName(this, RE, fmt);
1149
1150 fmt.flush();
1151 Result.append(fmtbuf.begin(), fmtbuf.end());
1152 return object_error::success;
1153}
1154
1155error_code
Rafael Espindola137faa02013-04-24 15:14:22 +00001156MachOObjectFile::getRelocationHidden(DataRefImpl Rel, bool &Result) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001157 unsigned Arch = getArch();
1158 uint64_t Type;
1159 getRelocationType(Rel, Type);
1160
1161 Result = false;
1162
1163 // On arches that use the generic relocations, GENERIC_RELOC_PAIR
1164 // is always hidden.
David Fangb88cdf62013-08-08 20:14:40 +00001165 if (Arch == Triple::x86 || Arch == Triple::arm || Arch == Triple::ppc) {
Charles Davis8bdfafd2013-09-01 04:28:48 +00001166 if (Type == MachO::GENERIC_RELOC_PAIR) Result = true;
Rafael Espindola56f976f2013-04-18 18:08:55 +00001167 } else if (Arch == Triple::x86_64) {
1168 // On x86_64, X86_64_RELOC_UNSIGNED is hidden only when it follows
Eric Christopher1ff26ab62013-07-22 22:25:09 +00001169 // an X86_64_RELOC_SUBTRACTOR.
Charles Davis8bdfafd2013-09-01 04:28:48 +00001170 if (Type == MachO::X86_64_RELOC_UNSIGNED && Rel.d.a > 0) {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001171 DataRefImpl RelPrev = Rel;
1172 RelPrev.d.a--;
1173 uint64_t PrevType;
1174 getRelocationType(RelPrev, PrevType);
Charles Davis8bdfafd2013-09-01 04:28:48 +00001175 if (PrevType == MachO::X86_64_RELOC_SUBTRACTOR)
Rafael Espindola56f976f2013-04-18 18:08:55 +00001176 Result = true;
1177 }
1178 }
1179
1180 return object_error::success;
1181}
1182
1183error_code MachOObjectFile::getLibraryNext(DataRefImpl LibData,
Rafael Espindola137faa02013-04-24 15:14:22 +00001184 LibraryRef &Res) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001185 report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
1186}
1187
1188error_code MachOObjectFile::getLibraryPath(DataRefImpl LibData,
Rafael Espindola137faa02013-04-24 15:14:22 +00001189 StringRef &Res) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001190 report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
1191}
1192
1193symbol_iterator MachOObjectFile::begin_symbols() const {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001194 DataRefImpl DRI;
Rafael Espindola75c30362013-04-24 19:47:55 +00001195 if (!SymtabLoadCmd)
1196 return symbol_iterator(SymbolRef(DRI, this));
1197
Charles Davis8bdfafd2013-09-01 04:28:48 +00001198 MachO::symtab_command Symtab = getSymtabLoadCommand();
1199 DRI.p = reinterpret_cast<uintptr_t>(getPtr(this, Symtab.symoff));
Rafael Espindola56f976f2013-04-18 18:08:55 +00001200 return symbol_iterator(SymbolRef(DRI, this));
1201}
1202
1203symbol_iterator MachOObjectFile::end_symbols() const {
1204 DataRefImpl DRI;
Rafael Espindola75c30362013-04-24 19:47:55 +00001205 if (!SymtabLoadCmd)
1206 return symbol_iterator(SymbolRef(DRI, this));
1207
Charles Davis8bdfafd2013-09-01 04:28:48 +00001208 MachO::symtab_command Symtab = getSymtabLoadCommand();
Rafael Espindola75c30362013-04-24 19:47:55 +00001209 unsigned SymbolTableEntrySize = is64Bit() ?
Charles Davis8bdfafd2013-09-01 04:28:48 +00001210 sizeof(MachO::nlist_64) :
1211 sizeof(MachO::nlist);
1212 unsigned Offset = Symtab.symoff +
1213 Symtab.nsyms * SymbolTableEntrySize;
Rafael Espindola75c30362013-04-24 19:47:55 +00001214 DRI.p = reinterpret_cast<uintptr_t>(getPtr(this, Offset));
Rafael Espindola56f976f2013-04-18 18:08:55 +00001215 return symbol_iterator(SymbolRef(DRI, this));
1216}
1217
1218symbol_iterator MachOObjectFile::begin_dynamic_symbols() const {
1219 // TODO: implement
1220 report_fatal_error("Dynamic symbols unimplemented in MachOObjectFile");
1221}
1222
1223symbol_iterator MachOObjectFile::end_dynamic_symbols() const {
1224 // TODO: implement
1225 report_fatal_error("Dynamic symbols unimplemented in MachOObjectFile");
1226}
1227
1228section_iterator MachOObjectFile::begin_sections() const {
1229 DataRefImpl DRI;
1230 return section_iterator(SectionRef(DRI, this));
1231}
1232
1233section_iterator MachOObjectFile::end_sections() const {
1234 DataRefImpl DRI;
1235 DRI.d.a = Sections.size();
1236 return section_iterator(SectionRef(DRI, this));
1237}
1238
1239library_iterator MachOObjectFile::begin_libraries_needed() const {
1240 // TODO: implement
1241 report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
1242}
1243
1244library_iterator MachOObjectFile::end_libraries_needed() const {
1245 // TODO: implement
1246 report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
1247}
1248
1249uint8_t MachOObjectFile::getBytesInAddress() const {
Rafael Espindola60689982013-04-07 19:05:30 +00001250 return is64Bit() ? 8 : 4;
Eric Christopher7b015c72011-04-22 03:19:48 +00001251}
1252
Rafael Espindola56f976f2013-04-18 18:08:55 +00001253StringRef MachOObjectFile::getFileFormatName() const {
1254 unsigned CPUType = getCPUType(this);
1255 if (!is64Bit()) {
1256 switch (CPUType) {
Charles Davis74ec8b02013-08-27 05:00:13 +00001257 case llvm::MachO::CPU_TYPE_I386:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001258 return "Mach-O 32-bit i386";
Charles Davis74ec8b02013-08-27 05:00:13 +00001259 case llvm::MachO::CPU_TYPE_ARM:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001260 return "Mach-O arm";
Charles Davis74ec8b02013-08-27 05:00:13 +00001261 case llvm::MachO::CPU_TYPE_POWERPC:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001262 return "Mach-O 32-bit ppc";
1263 default:
Charles Davis74ec8b02013-08-27 05:00:13 +00001264 assert((CPUType & llvm::MachO::CPU_ARCH_ABI64) == 0 &&
Rafael Espindola56f976f2013-04-18 18:08:55 +00001265 "64-bit object file when we're not 64-bit?");
1266 return "Mach-O 32-bit unknown";
1267 }
1268 }
1269
1270 // Make sure the cpu type has the correct mask.
Charles Davis74ec8b02013-08-27 05:00:13 +00001271 assert((CPUType & llvm::MachO::CPU_ARCH_ABI64)
1272 == llvm::MachO::CPU_ARCH_ABI64 &&
Eric Christopher1d62c252013-07-22 22:25:07 +00001273 "32-bit object file when we're 64-bit?");
Rafael Espindola56f976f2013-04-18 18:08:55 +00001274
1275 switch (CPUType) {
Charles Davis74ec8b02013-08-27 05:00:13 +00001276 case llvm::MachO::CPU_TYPE_X86_64:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001277 return "Mach-O 64-bit x86-64";
Charles Davis74ec8b02013-08-27 05:00:13 +00001278 case llvm::MachO::CPU_TYPE_POWERPC64:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001279 return "Mach-O 64-bit ppc64";
1280 default:
1281 return "Mach-O 64-bit unknown";
1282 }
1283}
1284
Alexey Samsonove6388e62013-06-18 15:03:28 +00001285Triple::ArchType MachOObjectFile::getArch(uint32_t CPUType) {
1286 switch (CPUType) {
Charles Davis74ec8b02013-08-27 05:00:13 +00001287 case llvm::MachO::CPU_TYPE_I386:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001288 return Triple::x86;
Charles Davis74ec8b02013-08-27 05:00:13 +00001289 case llvm::MachO::CPU_TYPE_X86_64:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001290 return Triple::x86_64;
Charles Davis74ec8b02013-08-27 05:00:13 +00001291 case llvm::MachO::CPU_TYPE_ARM:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001292 return Triple::arm;
Charles Davis74ec8b02013-08-27 05:00:13 +00001293 case llvm::MachO::CPU_TYPE_POWERPC:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001294 return Triple::ppc;
Charles Davis74ec8b02013-08-27 05:00:13 +00001295 case llvm::MachO::CPU_TYPE_POWERPC64:
Rafael Espindola56f976f2013-04-18 18:08:55 +00001296 return Triple::ppc64;
1297 default:
1298 return Triple::UnknownArch;
1299 }
1300}
1301
Alexey Samsonove6388e62013-06-18 15:03:28 +00001302unsigned MachOObjectFile::getArch() const {
1303 return getArch(getCPUType(this));
1304}
1305
Rafael Espindola56f976f2013-04-18 18:08:55 +00001306StringRef MachOObjectFile::getLoadName() const {
1307 // TODO: Implement
Charles Davis1827bd82013-08-27 05:38:30 +00001308 report_fatal_error("get_load_name() unimplemented in MachOObjectFile");
Rafael Espindola56f976f2013-04-18 18:08:55 +00001309}
1310
Rui Ueyamabc654b12013-09-27 21:47:05 +00001311relocation_iterator MachOObjectFile::section_rel_begin(unsigned Index) const {
Rafael Espindola6e040c02013-04-26 20:07:33 +00001312 DataRefImpl DRI;
1313 DRI.d.a = Index;
Rui Ueyamabc654b12013-09-27 21:47:05 +00001314 return section_rel_begin(DRI);
Rafael Espindola6e040c02013-04-26 20:07:33 +00001315}
1316
Rui Ueyamabc654b12013-09-27 21:47:05 +00001317relocation_iterator MachOObjectFile::section_rel_end(unsigned Index) const {
Rafael Espindola6e040c02013-04-26 20:07:33 +00001318 DataRefImpl DRI;
1319 DRI.d.a = Index;
Rui Ueyamabc654b12013-09-27 21:47:05 +00001320 return section_rel_end(DRI);
Rafael Espindola6e040c02013-04-26 20:07:33 +00001321}
1322
Kevin Enderby273ae012013-06-06 17:20:50 +00001323dice_iterator MachOObjectFile::begin_dices() const {
1324 DataRefImpl DRI;
1325 if (!DataInCodeLoadCmd)
1326 return dice_iterator(DiceRef(DRI, this));
1327
Charles Davis8bdfafd2013-09-01 04:28:48 +00001328 MachO::linkedit_data_command DicLC = getDataInCodeLoadCommand();
1329 DRI.p = reinterpret_cast<uintptr_t>(getPtr(this, DicLC.dataoff));
Kevin Enderby273ae012013-06-06 17:20:50 +00001330 return dice_iterator(DiceRef(DRI, this));
1331}
1332
1333dice_iterator MachOObjectFile::end_dices() const {
1334 DataRefImpl DRI;
1335 if (!DataInCodeLoadCmd)
1336 return dice_iterator(DiceRef(DRI, this));
1337
Charles Davis8bdfafd2013-09-01 04:28:48 +00001338 MachO::linkedit_data_command DicLC = getDataInCodeLoadCommand();
1339 unsigned Offset = DicLC.dataoff + DicLC.datasize;
Kevin Enderby273ae012013-06-06 17:20:50 +00001340 DRI.p = reinterpret_cast<uintptr_t>(getPtr(this, Offset));
1341 return dice_iterator(DiceRef(DRI, this));
1342}
1343
Rafael Espindola56f976f2013-04-18 18:08:55 +00001344StringRef
1345MachOObjectFile::getSectionFinalSegmentName(DataRefImpl Sec) const {
1346 ArrayRef<char> Raw = getSectionRawFinalSegmentName(Sec);
1347 return parseSegmentOrSectionName(Raw.data());
1348}
1349
1350ArrayRef<char>
1351MachOObjectFile::getSectionRawName(DataRefImpl Sec) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +00001352 const section_base *Base =
1353 reinterpret_cast<const section_base *>(Sections[Sec.d.a]);
1354 return ArrayRef<char>(Base->sectname);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001355}
1356
1357ArrayRef<char>
1358MachOObjectFile::getSectionRawFinalSegmentName(DataRefImpl Sec) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +00001359 const section_base *Base =
1360 reinterpret_cast<const section_base *>(Sections[Sec.d.a]);
1361 return ArrayRef<char>(Base->segname);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001362}
1363
1364bool
Charles Davis8bdfafd2013-09-01 04:28:48 +00001365MachOObjectFile::isRelocationScattered(const MachO::any_relocation_info &RE)
Rafael Espindola56f976f2013-04-18 18:08:55 +00001366 const {
Charles Davis8bdfafd2013-09-01 04:28:48 +00001367 if (getCPUType(this) == MachO::CPU_TYPE_X86_64)
Rafael Espindola56f976f2013-04-18 18:08:55 +00001368 return false;
Charles Davis8bdfafd2013-09-01 04:28:48 +00001369 return getPlainRelocationAddress(RE) & MachO::R_SCATTERED;
Rafael Espindola56f976f2013-04-18 18:08:55 +00001370}
1371
Eric Christopher1d62c252013-07-22 22:25:07 +00001372unsigned MachOObjectFile::getPlainRelocationSymbolNum(
Charles Davis8bdfafd2013-09-01 04:28:48 +00001373 const MachO::any_relocation_info &RE) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001374 if (isLittleEndian())
Charles Davis8bdfafd2013-09-01 04:28:48 +00001375 return RE.r_word1 & 0xffffff;
1376 return RE.r_word1 >> 8;
Rafael Espindola56f976f2013-04-18 18:08:55 +00001377}
1378
Eric Christopher1d62c252013-07-22 22:25:07 +00001379bool MachOObjectFile::getPlainRelocationExternal(
Charles Davis8bdfafd2013-09-01 04:28:48 +00001380 const MachO::any_relocation_info &RE) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001381 if (isLittleEndian())
Charles Davis8bdfafd2013-09-01 04:28:48 +00001382 return (RE.r_word1 >> 27) & 1;
1383 return (RE.r_word1 >> 4) & 1;
Rafael Espindola56f976f2013-04-18 18:08:55 +00001384}
1385
Eric Christopher1d62c252013-07-22 22:25:07 +00001386bool MachOObjectFile::getScatteredRelocationScattered(
Charles Davis8bdfafd2013-09-01 04:28:48 +00001387 const MachO::any_relocation_info &RE) const {
1388 return RE.r_word0 >> 31;
Rafael Espindola56f976f2013-04-18 18:08:55 +00001389}
1390
Eric Christopher1d62c252013-07-22 22:25:07 +00001391uint32_t MachOObjectFile::getScatteredRelocationValue(
Charles Davis8bdfafd2013-09-01 04:28:48 +00001392 const MachO::any_relocation_info &RE) const {
1393 return RE.r_word1;
Rafael Espindola56f976f2013-04-18 18:08:55 +00001394}
1395
Eric Christopher1d62c252013-07-22 22:25:07 +00001396unsigned MachOObjectFile::getAnyRelocationAddress(
Charles Davis8bdfafd2013-09-01 04:28:48 +00001397 const MachO::any_relocation_info &RE) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001398 if (isRelocationScattered(RE))
1399 return getScatteredRelocationAddress(RE);
1400 return getPlainRelocationAddress(RE);
1401}
1402
Charles Davis8bdfafd2013-09-01 04:28:48 +00001403unsigned MachOObjectFile::getAnyRelocationPCRel(
1404 const MachO::any_relocation_info &RE) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001405 if (isRelocationScattered(RE))
1406 return getScatteredRelocationPCRel(this, RE);
1407 return getPlainRelocationPCRel(this, RE);
1408}
1409
Eric Christopher1d62c252013-07-22 22:25:07 +00001410unsigned MachOObjectFile::getAnyRelocationLength(
Charles Davis8bdfafd2013-09-01 04:28:48 +00001411 const MachO::any_relocation_info &RE) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001412 if (isRelocationScattered(RE))
1413 return getScatteredRelocationLength(RE);
1414 return getPlainRelocationLength(this, RE);
1415}
1416
1417unsigned
Charles Davis8bdfafd2013-09-01 04:28:48 +00001418MachOObjectFile::getAnyRelocationType(
1419 const MachO::any_relocation_info &RE) const {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001420 if (isRelocationScattered(RE))
1421 return getScatteredRelocationType(RE);
1422 return getPlainRelocationType(this, RE);
1423}
1424
Rafael Espindola52501032013-04-30 15:40:54 +00001425SectionRef
Charles Davis8bdfafd2013-09-01 04:28:48 +00001426MachOObjectFile::getRelocationSection(
1427 const MachO::any_relocation_info &RE) const {
Rafael Espindola52501032013-04-30 15:40:54 +00001428 if (isRelocationScattered(RE) || getPlainRelocationExternal(RE))
1429 return *end_sections();
1430 unsigned SecNum = getPlainRelocationSymbolNum(RE) - 1;
1431 DataRefImpl DRI;
1432 DRI.d.a = SecNum;
1433 return SectionRef(DRI, this);
1434}
1435
Rafael Espindola56f976f2013-04-18 18:08:55 +00001436MachOObjectFile::LoadCommandInfo
1437MachOObjectFile::getFirstLoadCommandInfo() const {
1438 MachOObjectFile::LoadCommandInfo Load;
1439
Charles Davis8bdfafd2013-09-01 04:28:48 +00001440 unsigned HeaderSize = is64Bit() ? sizeof(MachO::mach_header_64) :
1441 sizeof(MachO::mach_header);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001442 Load.Ptr = getPtr(this, HeaderSize);
Charles Davis8bdfafd2013-09-01 04:28:48 +00001443 Load.C = getStruct<MachO::load_command>(this, Load.Ptr);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001444 return Load;
1445}
1446
1447MachOObjectFile::LoadCommandInfo
1448MachOObjectFile::getNextLoadCommandInfo(const LoadCommandInfo &L) const {
1449 MachOObjectFile::LoadCommandInfo Next;
Charles Davis8bdfafd2013-09-01 04:28:48 +00001450 Next.Ptr = L.Ptr + L.C.cmdsize;
1451 Next.C = getStruct<MachO::load_command>(this, Next.Ptr);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001452 return Next;
1453}
1454
Charles Davis8bdfafd2013-09-01 04:28:48 +00001455MachO::section MachOObjectFile::getSection(DataRefImpl DRI) const {
1456 return getStruct<MachO::section>(this, Sections[DRI.d.a]);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001457}
1458
Charles Davis8bdfafd2013-09-01 04:28:48 +00001459MachO::section_64 MachOObjectFile::getSection64(DataRefImpl DRI) const {
1460 return getStruct<MachO::section_64>(this, Sections[DRI.d.a]);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001461}
1462
Charles Davis8bdfafd2013-09-01 04:28:48 +00001463MachO::section MachOObjectFile::getSection(const LoadCommandInfo &L,
Rafael Espindola6e040c02013-04-26 20:07:33 +00001464 unsigned Index) const {
1465 const char *Sec = getSectionPtr(this, L, Index);
Charles Davis8bdfafd2013-09-01 04:28:48 +00001466 return getStruct<MachO::section>(this, Sec);
Rafael Espindola6e040c02013-04-26 20:07:33 +00001467}
1468
Charles Davis8bdfafd2013-09-01 04:28:48 +00001469MachO::section_64 MachOObjectFile::getSection64(const LoadCommandInfo &L,
1470 unsigned Index) const {
Rafael Espindola6e040c02013-04-26 20:07:33 +00001471 const char *Sec = getSectionPtr(this, L, Index);
Charles Davis8bdfafd2013-09-01 04:28:48 +00001472 return getStruct<MachO::section_64>(this, Sec);
Rafael Espindola6e040c02013-04-26 20:07:33 +00001473}
1474
Charles Davis8bdfafd2013-09-01 04:28:48 +00001475MachO::nlist
Rafael Espindola56f976f2013-04-18 18:08:55 +00001476MachOObjectFile::getSymbolTableEntry(DataRefImpl DRI) const {
Rafael Espindola75c30362013-04-24 19:47:55 +00001477 const char *P = reinterpret_cast<const char *>(DRI.p);
Charles Davis8bdfafd2013-09-01 04:28:48 +00001478 return getStruct<MachO::nlist>(this, P);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001479}
1480
Charles Davis8bdfafd2013-09-01 04:28:48 +00001481MachO::nlist_64
Rafael Espindola56f976f2013-04-18 18:08:55 +00001482MachOObjectFile::getSymbol64TableEntry(DataRefImpl DRI) const {
Rafael Espindola75c30362013-04-24 19:47:55 +00001483 const char *P = reinterpret_cast<const char *>(DRI.p);
Charles Davis8bdfafd2013-09-01 04:28:48 +00001484 return getStruct<MachO::nlist_64>(this, P);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001485}
1486
Charles Davis8bdfafd2013-09-01 04:28:48 +00001487MachO::linkedit_data_command
1488MachOObjectFile::getLinkeditDataLoadCommand(const LoadCommandInfo &L) const {
1489 return getStruct<MachO::linkedit_data_command>(this, L.Ptr);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001490}
1491
Charles Davis8bdfafd2013-09-01 04:28:48 +00001492MachO::segment_command
Rafael Espindola6e040c02013-04-26 20:07:33 +00001493MachOObjectFile::getSegmentLoadCommand(const LoadCommandInfo &L) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +00001494 return getStruct<MachO::segment_command>(this, L.Ptr);
Rafael Espindola6e040c02013-04-26 20:07:33 +00001495}
1496
Charles Davis8bdfafd2013-09-01 04:28:48 +00001497MachO::segment_command_64
Rafael Espindola6e040c02013-04-26 20:07:33 +00001498MachOObjectFile::getSegment64LoadCommand(const LoadCommandInfo &L) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +00001499 return getStruct<MachO::segment_command_64>(this, L.Ptr);
Rafael Espindola6e040c02013-04-26 20:07:33 +00001500}
1501
Charles Davis8bdfafd2013-09-01 04:28:48 +00001502MachO::linker_options_command
Rafael Espindola6e040c02013-04-26 20:07:33 +00001503MachOObjectFile::getLinkerOptionsLoadCommand(const LoadCommandInfo &L) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +00001504 return getStruct<MachO::linker_options_command>(this, L.Ptr);
Rafael Espindola6e040c02013-04-26 20:07:33 +00001505}
1506
Charles Davis8bdfafd2013-09-01 04:28:48 +00001507MachO::any_relocation_info
Rafael Espindola56f976f2013-04-18 18:08:55 +00001508MachOObjectFile::getRelocation(DataRefImpl Rel) const {
Rafael Espindola04d3f492013-04-25 12:45:46 +00001509 const char *P = reinterpret_cast<const char *>(Rel.p);
Charles Davis8bdfafd2013-09-01 04:28:48 +00001510 return getStruct<MachO::any_relocation_info>(this, P);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001511}
1512
Charles Davis8bdfafd2013-09-01 04:28:48 +00001513MachO::data_in_code_entry
Kevin Enderby273ae012013-06-06 17:20:50 +00001514MachOObjectFile::getDice(DataRefImpl Rel) const {
1515 const char *P = reinterpret_cast<const char *>(Rel.p);
Charles Davis8bdfafd2013-09-01 04:28:48 +00001516 return getStruct<MachO::data_in_code_entry>(this, P);
Kevin Enderby273ae012013-06-06 17:20:50 +00001517}
1518
Charles Davis8bdfafd2013-09-01 04:28:48 +00001519MachO::mach_header MachOObjectFile::getHeader() const {
1520 return getStruct<MachO::mach_header>(this, getPtr(this, 0));
Rafael Espindola56f976f2013-04-18 18:08:55 +00001521}
1522
Charles Davis8bdfafd2013-09-01 04:28:48 +00001523MachO::mach_header_64 MachOObjectFile::getHeader64() const {
1524 return getStruct<MachO::mach_header_64>(this, getPtr(this, 0));
Rafael Espindola6e040c02013-04-26 20:07:33 +00001525}
1526
Charles Davis8bdfafd2013-09-01 04:28:48 +00001527uint32_t MachOObjectFile::getIndirectSymbolTableEntry(
1528 const MachO::dysymtab_command &DLC,
1529 unsigned Index) const {
1530 uint64_t Offset = DLC.indirectsymoff + Index * sizeof(uint32_t);
1531 return getStruct<uint32_t>(this, getPtr(this, Offset));
Rafael Espindola6e040c02013-04-26 20:07:33 +00001532}
1533
Charles Davis8bdfafd2013-09-01 04:28:48 +00001534MachO::data_in_code_entry
Rafael Espindola6e040c02013-04-26 20:07:33 +00001535MachOObjectFile::getDataInCodeTableEntry(uint32_t DataOffset,
1536 unsigned Index) const {
Charles Davis8bdfafd2013-09-01 04:28:48 +00001537 uint64_t Offset = DataOffset + Index * sizeof(MachO::data_in_code_entry);
1538 return getStruct<MachO::data_in_code_entry>(this, getPtr(this, Offset));
Rafael Espindola6e040c02013-04-26 20:07:33 +00001539}
1540
Charles Davis8bdfafd2013-09-01 04:28:48 +00001541MachO::symtab_command MachOObjectFile::getSymtabLoadCommand() const {
1542 return getStruct<MachO::symtab_command>(this, SymtabLoadCmd);
Rafael Espindola56f976f2013-04-18 18:08:55 +00001543}
1544
Charles Davis8bdfafd2013-09-01 04:28:48 +00001545MachO::dysymtab_command MachOObjectFile::getDysymtabLoadCommand() const {
1546 return getStruct<MachO::dysymtab_command>(this, DysymtabLoadCmd);
Rafael Espindola6e040c02013-04-26 20:07:33 +00001547}
1548
Charles Davis8bdfafd2013-09-01 04:28:48 +00001549MachO::linkedit_data_command
Kevin Enderby273ae012013-06-06 17:20:50 +00001550MachOObjectFile::getDataInCodeLoadCommand() const {
1551 if (DataInCodeLoadCmd)
Charles Davis8bdfafd2013-09-01 04:28:48 +00001552 return getStruct<MachO::linkedit_data_command>(this, DataInCodeLoadCmd);
Kevin Enderby273ae012013-06-06 17:20:50 +00001553
1554 // If there is no DataInCodeLoadCmd return a load command with zero'ed fields.
Charles Davis8bdfafd2013-09-01 04:28:48 +00001555 MachO::linkedit_data_command Cmd;
1556 Cmd.cmd = MachO::LC_DATA_IN_CODE;
1557 Cmd.cmdsize = sizeof(MachO::linkedit_data_command);
1558 Cmd.dataoff = 0;
1559 Cmd.datasize = 0;
Kevin Enderby273ae012013-06-06 17:20:50 +00001560 return Cmd;
1561}
1562
Rafael Espindola6e040c02013-04-26 20:07:33 +00001563StringRef MachOObjectFile::getStringTableData() const {
Charles Davis8bdfafd2013-09-01 04:28:48 +00001564 MachO::symtab_command S = getSymtabLoadCommand();
1565 return getData().substr(S.stroff, S.strsize);
Rafael Espindola6e040c02013-04-26 20:07:33 +00001566}
1567
Rafael Espindola56f976f2013-04-18 18:08:55 +00001568bool MachOObjectFile::is64Bit() const {
1569 return getType() == getMachOType(false, true) ||
1570 getType() == getMachOType(true, true);
1571}
1572
1573void MachOObjectFile::ReadULEB128s(uint64_t Index,
1574 SmallVectorImpl<uint64_t> &Out) const {
1575 DataExtractor extractor(ObjectFile::getData(), true, 0);
1576
1577 uint32_t offset = Index;
1578 uint64_t data = 0;
1579 while (uint64_t delta = extractor.getULEB128(&offset)) {
1580 data += delta;
1581 Out.push_back(data);
1582 }
1583}
1584
Rafael Espindolaafcc3df2014-01-24 21:32:21 +00001585ErrorOr<ObjectFile *> ObjectFile::createMachOObjectFile(MemoryBuffer *Buffer,
1586 bool BufferOwned) {
Rafael Espindola56f976f2013-04-18 18:08:55 +00001587 StringRef Magic = Buffer->getBuffer().slice(0, 4);
Rafael Espindola692410e2014-01-21 23:06:54 +00001588 error_code EC;
1589 OwningPtr<MachOObjectFile> Ret;
Rafael Espindola56f976f2013-04-18 18:08:55 +00001590 if (Magic == "\xFE\xED\xFA\xCE")
Rafael Espindolaafcc3df2014-01-24 21:32:21 +00001591 Ret.reset(new MachOObjectFile(Buffer, false, false, EC, BufferOwned));
Rafael Espindola56f976f2013-04-18 18:08:55 +00001592 else if (Magic == "\xCE\xFA\xED\xFE")
Rafael Espindolaafcc3df2014-01-24 21:32:21 +00001593 Ret.reset(new MachOObjectFile(Buffer, true, false, EC, BufferOwned));
Rafael Espindola56f976f2013-04-18 18:08:55 +00001594 else if (Magic == "\xFE\xED\xFA\xCF")
Rafael Espindolaafcc3df2014-01-24 21:32:21 +00001595 Ret.reset(new MachOObjectFile(Buffer, false, true, EC, BufferOwned));
Rafael Espindola56f976f2013-04-18 18:08:55 +00001596 else if (Magic == "\xCF\xFA\xED\xFE")
Rafael Espindolaafcc3df2014-01-24 21:32:21 +00001597 Ret.reset(new MachOObjectFile(Buffer, true, true, EC, BufferOwned));
Benjamin Kramer097e09a2013-08-03 22:16:37 +00001598 else {
1599 delete Buffer;
Rafael Espindola692410e2014-01-21 23:06:54 +00001600 return object_error::parse_failed;
Benjamin Kramer097e09a2013-08-03 22:16:37 +00001601 }
Rafael Espindola56f976f2013-04-18 18:08:55 +00001602
Rafael Espindola692410e2014-01-21 23:06:54 +00001603 if (EC)
1604 return EC;
Benjamin Kramer097e09a2013-08-03 22:16:37 +00001605 return Ret.take();
Rafael Espindola56f976f2013-04-18 18:08:55 +00001606}
1607
Owen Anderson27c579d2011-10-11 17:32:27 +00001608} // end namespace object
Eric Christopher7b015c72011-04-22 03:19:48 +00001609} // end namespace llvm