blob: 9d6f53dca77a357b5f8541154fc3c886d0d049ae [file] [log] [blame]
Eric Christopher6256b032011-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 Andersonf7c93a32011-10-11 17:32:27 +000015#include "llvm/Object/MachO.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000016#include "llvm/ADT/Triple.h"
Eric Christopher6256b032011-04-22 03:19:48 +000017#include "llvm/Object/MachOFormat.h"
Rafael Espindola8764c892013-04-07 20:01:29 +000018#include "llvm/Support/DataExtractor.h"
Owen Anderson1832f4d2011-10-26 20:42:54 +000019#include "llvm/Support/Format.h"
Rafael Espindolafd7aa382013-04-18 18:08:55 +000020#include "llvm/Support/Host.h"
Eric Christopher6256b032011-04-22 03:19:48 +000021#include "llvm/Support/MemoryBuffer.h"
Eric Christopher6256b032011-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 Andersonf7c93a32011-10-11 17:32:27 +000030namespace object {
Eric Christopher6256b032011-04-22 03:19:48 +000031
Rafael Espindolafd7aa382013-04-18 18:08:55 +000032struct SymbolTableEntryBase {
33 uint32_t StringIndex;
34 uint8_t Type;
35 uint8_t SectionIndex;
36 uint16_t Flags;
37};
38
39struct SectionBase {
40 char Name[16];
41 char SegmentName[16];
42};
43
44template<typename T>
45static void SwapValue(T &Value) {
46 Value = sys::SwapByteOrder(Value);
Benjamin Kramer0fcab072011-09-08 20:52:17 +000047}
48
Rafael Espindolafd7aa382013-04-18 18:08:55 +000049template<typename T>
50static void SwapStruct(T &Value);
51
52template<>
53void SwapStruct(macho::RelocationEntry &H) {
54 SwapValue(H.Word0);
55 SwapValue(H.Word1);
Rafael Espindola3eff3182013-04-07 16:07:35 +000056}
57
Rafael Espindolafd7aa382013-04-18 18:08:55 +000058template<>
59void SwapStruct(macho::LoadCommand &L) {
60 SwapValue(L.Type);
61 SwapValue(L.Size);
62}
Rafael Espindola8764c892013-04-07 20:01:29 +000063
Rafael Espindolafd7aa382013-04-18 18:08:55 +000064template<>
65void SwapStruct(SymbolTableEntryBase &S) {
66 SwapValue(S.StringIndex);
67 SwapValue(S.Flags);
68}
69
70template<>
71void SwapStruct(macho::Section &S) {
72 SwapValue(S.Address);
73 SwapValue(S.Size);
74 SwapValue(S.Offset);
75 SwapValue(S.Align);
76 SwapValue(S.RelocationTableOffset);
77 SwapValue(S.NumRelocationTableEntries);
78 SwapValue(S.Flags);
79 SwapValue(S.Reserved1);
80 SwapValue(S.Reserved2);
81}
82
83template<>
84void SwapStruct(macho::Section64 &S) {
85 SwapValue(S.Address);
86 SwapValue(S.Size);
87 SwapValue(S.Offset);
88 SwapValue(S.Align);
89 SwapValue(S.RelocationTableOffset);
90 SwapValue(S.NumRelocationTableEntries);
91 SwapValue(S.Flags);
92 SwapValue(S.Reserved1);
93 SwapValue(S.Reserved2);
94 SwapValue(S.Reserved3);
95}
96
97template<>
98void SwapStruct(macho::SymbolTableEntry &S) {
99 SwapValue(S.StringIndex);
100 SwapValue(S.Flags);
101 SwapValue(S.Value);
102}
103
104template<>
105void SwapStruct(macho::Symbol64TableEntry &S) {
106 SwapValue(S.StringIndex);
107 SwapValue(S.Flags);
108 SwapValue(S.Value);
109}
110
111template<>
112void SwapStruct(macho::Header &H) {
113 SwapValue(H.Magic);
114 SwapValue(H.CPUType);
115 SwapValue(H.CPUSubtype);
116 SwapValue(H.FileType);
117 SwapValue(H.NumLoadCommands);
118 SwapValue(H.SizeOfLoadCommands);
119 SwapValue(H.Flags);
120}
121
122template<>
Rafael Espindola2173e182013-04-26 20:07:33 +0000123void SwapStruct(macho::Header64Ext &E) {
124 SwapValue(E.Reserved);
125}
126
127template<>
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000128void SwapStruct(macho::SymtabLoadCommand &C) {
129 SwapValue(C.Type);
130 SwapValue(C.Size);
131 SwapValue(C.SymbolTableOffset);
132 SwapValue(C.NumSymbolTableEntries);
133 SwapValue(C.StringTableOffset);
134 SwapValue(C.StringTableSize);
135}
136
137template<>
Rafael Espindola2173e182013-04-26 20:07:33 +0000138void SwapStruct(macho::DysymtabLoadCommand &C) {
139 SwapValue(C.Type);
140 SwapValue(C.Size);
141 SwapValue(C.LocalSymbolsIndex);
142 SwapValue(C.NumLocalSymbols);
143 SwapValue(C.ExternalSymbolsIndex);
144 SwapValue(C.NumExternalSymbols);
145 SwapValue(C.UndefinedSymbolsIndex);
146 SwapValue(C.NumUndefinedSymbols);
147 SwapValue(C.TOCOffset);
148 SwapValue(C.NumTOCEntries);
149 SwapValue(C.ModuleTableOffset);
150 SwapValue(C.NumModuleTableEntries);
151 SwapValue(C.ReferenceSymbolTableOffset);
152 SwapValue(C.NumReferencedSymbolTableEntries);
153 SwapValue(C.IndirectSymbolTableOffset);
154 SwapValue(C.NumIndirectSymbolTableEntries);
155 SwapValue(C.ExternalRelocationTableOffset);
156 SwapValue(C.NumExternalRelocationTableEntries);
157 SwapValue(C.LocalRelocationTableOffset);
158 SwapValue(C.NumLocalRelocationTableEntries);
159}
160
161template<>
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000162void SwapStruct(macho::LinkeditDataLoadCommand &C) {
163 SwapValue(C.Type);
164 SwapValue(C.Size);
165 SwapValue(C.DataOffset);
166 SwapValue(C.DataSize);
167}
168
169template<>
170void SwapStruct(macho::SegmentLoadCommand &C) {
171 SwapValue(C.Type);
172 SwapValue(C.Size);
173 SwapValue(C.VMAddress);
174 SwapValue(C.VMSize);
175 SwapValue(C.FileOffset);
176 SwapValue(C.FileSize);
177 SwapValue(C.MaxVMProtection);
178 SwapValue(C.InitialVMProtection);
179 SwapValue(C.NumSections);
180 SwapValue(C.Flags);
181}
182
183template<>
184void SwapStruct(macho::Segment64LoadCommand &C) {
185 SwapValue(C.Type);
186 SwapValue(C.Size);
187 SwapValue(C.VMAddress);
188 SwapValue(C.VMSize);
189 SwapValue(C.FileOffset);
190 SwapValue(C.FileSize);
191 SwapValue(C.MaxVMProtection);
192 SwapValue(C.InitialVMProtection);
193 SwapValue(C.NumSections);
194 SwapValue(C.Flags);
195}
196
Rafael Espindola2173e182013-04-26 20:07:33 +0000197template<>
198void SwapStruct(macho::IndirectSymbolTableEntry &C) {
199 SwapValue(C.Index);
200}
201
202template<>
203void SwapStruct(macho::LinkerOptionsLoadCommand &C) {
204 SwapValue(C.Type);
205 SwapValue(C.Size);
206 SwapValue(C.Count);
207}
208
209template<>
210void SwapStruct(macho::DataInCodeTableEntry &C) {
211 SwapValue(C.Offset);
212 SwapValue(C.Length);
213 SwapValue(C.Kind);
214}
215
Rafael Espindola143d2232013-04-19 13:45:05 +0000216template<typename T>
217T getStruct(const MachOObjectFile *O, const char *P) {
218 T Cmd;
219 memcpy(&Cmd, P, sizeof(T));
220 if (O->isLittleEndian() != sys::IsLittleEndianHost)
221 SwapStruct(Cmd);
222 return Cmd;
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000223}
224
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000225static uint32_t
226getSegmentLoadCommandNumSections(const MachOObjectFile *O,
227 const MachOObjectFile::LoadCommandInfo &L) {
228 if (O->is64Bit()) {
Rafael Espindola2173e182013-04-26 20:07:33 +0000229 macho::Segment64LoadCommand S = O->getSegment64LoadCommand(L);
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000230 return S.NumSections;
Rafael Espindola8764c892013-04-07 20:01:29 +0000231 }
Rafael Espindola2173e182013-04-26 20:07:33 +0000232 macho::SegmentLoadCommand S = O->getSegmentLoadCommand(L);
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000233 return S.NumSections;
Rafael Espindola3eff3182013-04-07 16:07:35 +0000234}
235
Rafael Espindola2173e182013-04-26 20:07:33 +0000236static const char *
237getSectionPtr(const MachOObjectFile *O, MachOObjectFile::LoadCommandInfo L,
238 unsigned Sec) {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000239 uintptr_t CommandAddr = reinterpret_cast<uintptr_t>(L.Ptr);
240
241 bool Is64 = O->is64Bit();
242 unsigned SegmentLoadSize = Is64 ? sizeof(macho::Segment64LoadCommand) :
243 sizeof(macho::SegmentLoadCommand);
244 unsigned SectionSize = Is64 ? sizeof(macho::Section64) :
245 sizeof(macho::Section);
246
247 uintptr_t SectionAddr = CommandAddr + SegmentLoadSize + Sec * SectionSize;
Rafael Espindola2173e182013-04-26 20:07:33 +0000248 return reinterpret_cast<const char*>(SectionAddr);
Rafael Espindola0f08eb12013-04-07 19:05:30 +0000249}
250
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000251static const char *getPtr(const MachOObjectFile *O, size_t Offset) {
252 return O->getData().substr(Offset, 1).data();
Rafael Espindola0f08eb12013-04-07 19:05:30 +0000253}
254
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000255static SymbolTableEntryBase
256getSymbolTableEntryBase(const MachOObjectFile *O, DataRefImpl DRI) {
Rafael Espindola802fe932013-04-24 19:47:55 +0000257 const char *P = reinterpret_cast<const char *>(DRI.p);
Rafael Espindola143d2232013-04-19 13:45:05 +0000258 return getStruct<SymbolTableEntryBase>(O, P);
Eric Christopher6256b032011-04-22 03:19:48 +0000259}
260
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000261static StringRef parseSegmentOrSectionName(const char *P) {
Rafael Espindolacef81b32012-12-21 03:47:03 +0000262 if (P[15] == 0)
263 // Null terminated.
264 return P;
265 // Not null terminated, so this is a 16 char string.
266 return StringRef(P, 16);
267}
268
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000269// Helper to advance a section or symbol iterator multiple increments at a time.
270template<class T>
271static error_code advance(T &it, size_t Val) {
272 error_code ec;
273 while (Val--) {
274 it.increment(ec);
275 }
276 return ec;
277}
278
279template<class T>
280static void advanceTo(T &it, size_t Val) {
281 if (error_code ec = advance(it, Val))
282 report_fatal_error(ec.message());
283}
284
285static unsigned getCPUType(const MachOObjectFile *O) {
286 return O->getHeader().CPUType;
287}
288
289static void printRelocationTargetName(const MachOObjectFile *O,
290 const macho::RelocationEntry &RE,
291 raw_string_ostream &fmt) {
292 bool IsScattered = O->isRelocationScattered(RE);
293
294 // Target of a scattered relocation is an address. In the interest of
295 // generating pretty output, scan through the symbol table looking for a
296 // symbol that aligns with that address. If we find one, print it.
297 // Otherwise, we just print the hex address of the target.
298 if (IsScattered) {
299 uint32_t Val = O->getPlainRelocationSymbolNum(RE);
300
301 error_code ec;
302 for (symbol_iterator SI = O->begin_symbols(), SE = O->end_symbols();
303 SI != SE; SI.increment(ec)) {
304 if (ec) report_fatal_error(ec.message());
305
306 uint64_t Addr;
307 StringRef Name;
308
309 if ((ec = SI->getAddress(Addr)))
310 report_fatal_error(ec.message());
311 if (Addr != Val) continue;
312 if ((ec = SI->getName(Name)))
313 report_fatal_error(ec.message());
314 fmt << Name;
315 return;
316 }
317
318 // If we couldn't find a symbol that this relocation refers to, try
319 // to find a section beginning instead.
320 for (section_iterator SI = O->begin_sections(), SE = O->end_sections();
321 SI != SE; SI.increment(ec)) {
322 if (ec) report_fatal_error(ec.message());
323
324 uint64_t Addr;
325 StringRef Name;
326
327 if ((ec = SI->getAddress(Addr)))
328 report_fatal_error(ec.message());
329 if (Addr != Val) continue;
330 if ((ec = SI->getName(Name)))
331 report_fatal_error(ec.message());
332 fmt << Name;
333 return;
334 }
335
336 fmt << format("0x%x", Val);
337 return;
338 }
339
340 StringRef S;
341 bool isExtern = O->getPlainRelocationExternal(RE);
Ahmed Bougachaebb9f172013-05-14 22:41:29 +0000342 uint64_t Val = O->getPlainRelocationSymbolNum(RE);
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000343
344 if (isExtern) {
345 symbol_iterator SI = O->begin_symbols();
346 advanceTo(SI, Val);
347 SI->getName(S);
348 } else {
349 section_iterator SI = O->begin_sections();
Ahmed Bougachaebb9f172013-05-14 22:41:29 +0000350 // Adjust for the fact that sections are 1-indexed.
351 advanceTo(SI, Val - 1);
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000352 SI->getName(S);
353 }
354
355 fmt << S;
356}
357
358static uint32_t getPlainRelocationAddress(const macho::RelocationEntry &RE) {
359 return RE.Word0;
360}
361
362static unsigned
363getScatteredRelocationAddress(const macho::RelocationEntry &RE) {
364 return RE.Word0 & 0xffffff;
365}
366
367static bool getPlainRelocationPCRel(const MachOObjectFile *O,
368 const macho::RelocationEntry &RE) {
369 if (O->isLittleEndian())
370 return (RE.Word1 >> 24) & 1;
371 return (RE.Word1 >> 7) & 1;
372}
373
374static bool
375getScatteredRelocationPCRel(const MachOObjectFile *O,
376 const macho::RelocationEntry &RE) {
377 return (RE.Word0 >> 30) & 1;
378}
379
380static unsigned getPlainRelocationLength(const MachOObjectFile *O,
381 const macho::RelocationEntry &RE) {
382 if (O->isLittleEndian())
383 return (RE.Word1 >> 25) & 3;
384 return (RE.Word1 >> 5) & 3;
385}
386
387static unsigned
388getScatteredRelocationLength(const macho::RelocationEntry &RE) {
389 return (RE.Word0 >> 28) & 3;
390}
391
392static unsigned getPlainRelocationType(const MachOObjectFile *O,
393 const macho::RelocationEntry &RE) {
394 if (O->isLittleEndian())
395 return RE.Word1 >> 28;
396 return RE.Word1 & 0xf;
397}
398
399static unsigned getScatteredRelocationType(const macho::RelocationEntry &RE) {
400 return (RE.Word0 >> 24) & 0xf;
401}
402
403static uint32_t getSectionFlags(const MachOObjectFile *O,
404 DataRefImpl Sec) {
405 if (O->is64Bit()) {
406 macho::Section64 Sect = O->getSection64(Sec);
407 return Sect.Flags;
408 }
409 macho::Section Sect = O->getSection(Sec);
410 return Sect.Flags;
411}
412
413MachOObjectFile::MachOObjectFile(MemoryBuffer *Object,
414 bool IsLittleEndian, bool Is64bits,
415 error_code &ec)
416 : ObjectFile(getMachOType(IsLittleEndian, Is64bits), Object),
Kevin Enderby54154f32013-06-06 17:20:50 +0000417 SymtabLoadCmd(NULL), DysymtabLoadCmd(NULL), DataInCodeLoadCmd(NULL) {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000418 uint32_t LoadCommandCount = this->getHeader().NumLoadCommands;
419 macho::LoadCommandType SegmentLoadType = is64Bit() ?
420 macho::LCT_Segment64 : macho::LCT_Segment;
421
422 MachOObjectFile::LoadCommandInfo Load = getFirstLoadCommandInfo();
Rafael Espindoladb5f9272013-04-19 11:36:47 +0000423 for (unsigned I = 0; ; ++I) {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000424 if (Load.C.Type == macho::LCT_Symtab) {
425 assert(!SymtabLoadCmd && "Multiple symbol tables");
426 SymtabLoadCmd = Load.Ptr;
Rafael Espindola2173e182013-04-26 20:07:33 +0000427 } else if (Load.C.Type == macho::LCT_Dysymtab) {
428 assert(!DysymtabLoadCmd && "Multiple dynamic symbol tables");
429 DysymtabLoadCmd = Load.Ptr;
Kevin Enderby54154f32013-06-06 17:20:50 +0000430 } else if (Load.C.Type == macho::LCT_DataInCode) {
431 assert(!DataInCodeLoadCmd && "Multiple data in code tables");
432 DataInCodeLoadCmd = Load.Ptr;
Rafael Espindola2173e182013-04-26 20:07:33 +0000433 } else if (Load.C.Type == SegmentLoadType) {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000434 uint32_t NumSections = getSegmentLoadCommandNumSections(this, Load);
435 for (unsigned J = 0; J < NumSections; ++J) {
Rafael Espindola2173e182013-04-26 20:07:33 +0000436 const char *Sec = getSectionPtr(this, Load, J);
437 Sections.push_back(Sec);
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000438 }
439 }
Rafael Espindoladb5f9272013-04-19 11:36:47 +0000440
441 if (I == LoadCommandCount - 1)
442 break;
443 else
444 Load = getNextLoadCommandInfo(Load);
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000445 }
446}
447
448error_code MachOObjectFile::getSymbolNext(DataRefImpl Symb,
449 SymbolRef &Res) const {
Rafael Espindola802fe932013-04-24 19:47:55 +0000450 unsigned SymbolTableEntrySize = is64Bit() ?
451 sizeof(macho::Symbol64TableEntry) :
452 sizeof(macho::SymbolTableEntry);
453 Symb.p += SymbolTableEntrySize;
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000454 Res = SymbolRef(Symb, this);
455 return object_error::success;
456}
457
458error_code MachOObjectFile::getSymbolName(DataRefImpl Symb,
459 StringRef &Res) const {
Rafael Espindola2173e182013-04-26 20:07:33 +0000460 StringRef StringTable = getStringTableData();
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000461 SymbolTableEntryBase Entry = getSymbolTableEntryBase(this, Symb);
Rafael Espindola2173e182013-04-26 20:07:33 +0000462 const char *Start = &StringTable.data()[Entry.StringIndex];
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000463 Res = StringRef(Start);
464 return object_error::success;
465}
466
467error_code MachOObjectFile::getSymbolAddress(DataRefImpl Symb,
468 uint64_t &Res) const {
469 if (is64Bit()) {
470 macho::Symbol64TableEntry Entry = getSymbol64TableEntry(Symb);
471 Res = Entry.Value;
472 } else {
473 macho::SymbolTableEntry Entry = getSymbolTableEntry(Symb);
474 Res = Entry.Value;
475 }
476 return object_error::success;
477}
478
479error_code
480MachOObjectFile::getSymbolFileOffset(DataRefImpl Symb,
481 uint64_t &Res) const {
482 SymbolTableEntryBase Entry = getSymbolTableEntryBase(this, Symb);
483 getSymbolAddress(Symb, Res);
484 if (Entry.SectionIndex) {
485 uint64_t Delta;
486 DataRefImpl SecRel;
487 SecRel.d.a = Entry.SectionIndex-1;
488 if (is64Bit()) {
489 macho::Section64 Sec = getSection64(SecRel);
490 Delta = Sec.Offset - Sec.Address;
491 } else {
492 macho::Section Sec = getSection(SecRel);
493 Delta = Sec.Offset - Sec.Address;
494 }
495
496 Res += Delta;
497 }
498
499 return object_error::success;
500}
501
Rafael Espindola59a0e792013-04-29 22:24:22 +0000502error_code MachOObjectFile::getSymbolAlignment(DataRefImpl DRI,
503 uint32_t &Result) const {
504 uint32_t flags;
505 this->getSymbolFlags(DRI, flags);
506 if (flags & SymbolRef::SF_Common) {
507 SymbolTableEntryBase Entry = getSymbolTableEntryBase(this, DRI);
508 Result = 1 << MachO::GET_COMM_ALIGN(Entry.Flags);
509 } else {
510 Result = 0;
511 }
512 return object_error::success;
513}
514
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000515error_code MachOObjectFile::getSymbolSize(DataRefImpl DRI,
516 uint64_t &Result) const {
517 uint64_t BeginOffset;
518 uint64_t EndOffset = 0;
519 uint8_t SectionIndex;
520
521 SymbolTableEntryBase Entry = getSymbolTableEntryBase(this, DRI);
522 uint64_t Value;
523 getSymbolAddress(DRI, Value);
524
525 BeginOffset = Value;
526
527 SectionIndex = Entry.SectionIndex;
528 if (!SectionIndex) {
529 uint32_t flags = SymbolRef::SF_None;
530 this->getSymbolFlags(DRI, flags);
531 if (flags & SymbolRef::SF_Common)
532 Result = Value;
533 else
534 Result = UnknownAddressOrSize;
535 return object_error::success;
536 }
537 // Unfortunately symbols are unsorted so we need to touch all
538 // symbols from load command
Rafael Espindola802fe932013-04-24 19:47:55 +0000539 error_code ec;
540 for (symbol_iterator I = begin_symbols(), E = end_symbols(); I != E;
541 I.increment(ec)) {
542 DataRefImpl DRI = I->getRawDataRefImpl();
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000543 Entry = getSymbolTableEntryBase(this, DRI);
544 getSymbolAddress(DRI, Value);
545 if (Entry.SectionIndex == SectionIndex && Value > BeginOffset)
546 if (!EndOffset || Value < EndOffset)
547 EndOffset = Value;
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000548 }
549 if (!EndOffset) {
550 uint64_t Size;
551 DataRefImpl Sec;
552 Sec.d.a = SectionIndex-1;
553 getSectionSize(Sec, Size);
554 getSectionAddress(Sec, EndOffset);
555 EndOffset += Size;
556 }
557 Result = EndOffset - BeginOffset;
558 return object_error::success;
559}
560
561error_code MachOObjectFile::getSymbolType(DataRefImpl Symb,
562 SymbolRef::Type &Res) const {
563 SymbolTableEntryBase Entry = getSymbolTableEntryBase(this, Symb);
564 uint8_t n_type = Entry.Type;
565
566 Res = SymbolRef::ST_Other;
567
568 // If this is a STAB debugging symbol, we can do nothing more.
569 if (n_type & MachO::NlistMaskStab) {
570 Res = SymbolRef::ST_Debug;
571 return object_error::success;
572 }
573
574 switch (n_type & MachO::NlistMaskType) {
575 case MachO::NListTypeUndefined :
576 Res = SymbolRef::ST_Unknown;
577 break;
578 case MachO::NListTypeSection :
579 Res = SymbolRef::ST_Function;
580 break;
581 }
582 return object_error::success;
583}
584
585error_code MachOObjectFile::getSymbolNMTypeChar(DataRefImpl Symb,
586 char &Res) const {
587 SymbolTableEntryBase Entry = getSymbolTableEntryBase(this, Symb);
588 uint8_t Type = Entry.Type;
589 uint16_t Flags = Entry.Flags;
590
591 char Char;
592 switch (Type & macho::STF_TypeMask) {
593 case macho::STT_Undefined:
594 Char = 'u';
595 break;
596 case macho::STT_Absolute:
597 case macho::STT_Section:
598 Char = 's';
599 break;
600 default:
601 Char = '?';
602 break;
603 }
604
605 if (Flags & (macho::STF_External | macho::STF_PrivateExtern))
606 Char = toupper(static_cast<unsigned char>(Char));
607 Res = Char;
608 return object_error::success;
609}
610
611error_code MachOObjectFile::getSymbolFlags(DataRefImpl DRI,
612 uint32_t &Result) const {
613 SymbolTableEntryBase Entry = getSymbolTableEntryBase(this, DRI);
614
615 uint8_t MachOType = Entry.Type;
616 uint16_t MachOFlags = Entry.Flags;
617
618 // TODO: Correctly set SF_ThreadLocal
619 Result = SymbolRef::SF_None;
620
621 if ((MachOType & MachO::NlistMaskType) == MachO::NListTypeUndefined)
622 Result |= SymbolRef::SF_Undefined;
623
624 if (MachOFlags & macho::STF_StabsEntryMask)
625 Result |= SymbolRef::SF_FormatSpecific;
626
627 if (MachOType & MachO::NlistMaskExternal) {
628 Result |= SymbolRef::SF_Global;
Rafael Espindola59a0e792013-04-29 22:24:22 +0000629 if ((MachOType & MachO::NlistMaskType) == MachO::NListTypeUndefined) {
630 uint64_t Value;
631 getSymbolAddress(DRI, Value);
632 if (Value)
633 Result |= SymbolRef::SF_Common;
634 }
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000635 }
636
637 if (MachOFlags & (MachO::NListDescWeakRef | MachO::NListDescWeakDef))
638 Result |= SymbolRef::SF_Weak;
639
640 if ((MachOType & MachO::NlistMaskType) == MachO::NListTypeAbsolute)
641 Result |= SymbolRef::SF_Absolute;
642
643 return object_error::success;
644}
645
646error_code
647MachOObjectFile::getSymbolSection(DataRefImpl Symb,
648 section_iterator &Res) const {
649 SymbolTableEntryBase Entry = getSymbolTableEntryBase(this, Symb);
650 uint8_t index = Entry.SectionIndex;
651
652 if (index == 0) {
653 Res = end_sections();
654 } else {
655 DataRefImpl DRI;
656 DRI.d.a = index - 1;
657 Res = section_iterator(SectionRef(DRI, this));
658 }
659
660 return object_error::success;
661}
662
663error_code MachOObjectFile::getSymbolValue(DataRefImpl Symb,
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000664 uint64_t &Val) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000665 report_fatal_error("getSymbolValue unimplemented in MachOObjectFile");
666}
667
668error_code MachOObjectFile::getSectionNext(DataRefImpl Sec,
669 SectionRef &Res) const {
670 Sec.d.a++;
671 Res = SectionRef(Sec, this);
672 return object_error::success;
673}
674
675error_code
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000676MachOObjectFile::getSectionName(DataRefImpl Sec, StringRef &Result) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000677 ArrayRef<char> Raw = getSectionRawName(Sec);
678 Result = parseSegmentOrSectionName(Raw.data());
679 return object_error::success;
680}
681
682error_code
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000683MachOObjectFile::getSectionAddress(DataRefImpl Sec, uint64_t &Res) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000684 if (is64Bit()) {
685 macho::Section64 Sect = getSection64(Sec);
686 Res = Sect.Address;
687 } else {
688 macho::Section Sect = getSection(Sec);
689 Res = Sect.Address;
690 }
691 return object_error::success;
692}
693
694error_code
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000695MachOObjectFile::getSectionSize(DataRefImpl Sec, uint64_t &Res) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000696 if (is64Bit()) {
697 macho::Section64 Sect = getSection64(Sec);
698 Res = Sect.Size;
699 } else {
700 macho::Section Sect = getSection(Sec);
701 Res = Sect.Size;
702 }
703
704 return object_error::success;
705}
706
707error_code
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000708MachOObjectFile::getSectionContents(DataRefImpl Sec, StringRef &Res) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000709 uint32_t Offset;
710 uint64_t Size;
711
712 if (is64Bit()) {
713 macho::Section64 Sect = getSection64(Sec);
714 Offset = Sect.Offset;
715 Size = Sect.Size;
716 } else {
717 macho::Section Sect =getSection(Sec);
718 Offset = Sect.Offset;
719 Size = Sect.Size;
720 }
721
722 Res = this->getData().substr(Offset, Size);
723 return object_error::success;
724}
725
726error_code
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000727MachOObjectFile::getSectionAlignment(DataRefImpl Sec, uint64_t &Res) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000728 uint32_t Align;
729 if (is64Bit()) {
730 macho::Section64 Sect = getSection64(Sec);
731 Align = Sect.Align;
732 } else {
733 macho::Section Sect = getSection(Sec);
734 Align = Sect.Align;
735 }
736
737 Res = uint64_t(1) << Align;
738 return object_error::success;
739}
740
741error_code
742MachOObjectFile::isSectionText(DataRefImpl Sec, bool &Res) const {
743 uint32_t Flags = getSectionFlags(this, Sec);
744 Res = Flags & macho::SF_PureInstructions;
745 return object_error::success;
746}
747
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000748error_code MachOObjectFile::isSectionData(DataRefImpl DRI, bool &Result) const {
Michael J. Spencer13afc5e2011-09-28 20:57:30 +0000749 // FIXME: Unimplemented.
750 Result = false;
751 return object_error::success;
752}
753
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000754error_code MachOObjectFile::isSectionBSS(DataRefImpl DRI, bool &Result) const {
Andrew Kaylor30b20eb2012-10-10 01:45:52 +0000755 // FIXME: Unimplemented.
Preston Gurdc68dda82012-04-12 20:13:57 +0000756 Result = false;
757 return object_error::success;
758}
759
Rafael Espindolaf6cfc152013-04-09 14:49:08 +0000760error_code
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000761MachOObjectFile::isSectionRequiredForExecution(DataRefImpl Sec,
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000762 bool &Result) const {
Rafael Espindolaf6cfc152013-04-09 14:49:08 +0000763 // FIXME: Unimplemented.
764 Result = true;
Preston Gurdc68dda82012-04-12 20:13:57 +0000765 return object_error::success;
766}
767
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000768error_code MachOObjectFile::isSectionVirtual(DataRefImpl Sec,
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000769 bool &Result) const {
Rafael Espindolaf6cfc152013-04-09 14:49:08 +0000770 // FIXME: Unimplemented.
771 Result = false;
772 return object_error::success;
773}
774
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000775error_code
776MachOObjectFile::isSectionZeroInit(DataRefImpl Sec, bool &Res) const {
777 uint32_t Flags = getSectionFlags(this, Sec);
778 unsigned SectionType = Flags & MachO::SectionFlagMaskSectionType;
779 Res = SectionType == MachO::SectionTypeZeroFill ||
780 SectionType == MachO::SectionTypeZeroFillLarge;
781 return object_error::success;
782}
783
784error_code MachOObjectFile::isSectionReadOnlyData(DataRefImpl Sec,
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000785 bool &Result) const {
Andrew Kaylor3a129c82012-10-10 01:41:33 +0000786 // Consider using the code from isSectionText to look for __const sections.
787 // Alternately, emit S_ATTR_PURE_INSTRUCTIONS and/or S_ATTR_SOME_INSTRUCTIONS
788 // to use section attributes to distinguish code from data.
789
790 // FIXME: Unimplemented.
791 Result = false;
792 return object_error::success;
793}
794
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000795error_code
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000796MachOObjectFile::sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000797 bool &Result) const {
798 SymbolRef::Type ST;
799 this->getSymbolType(Symb, ST);
800 if (ST == SymbolRef::ST_Unknown) {
801 Result = false;
802 return object_error::success;
803 }
804
805 uint64_t SectBegin, SectEnd;
806 getSectionAddress(Sec, SectBegin);
807 getSectionSize(Sec, SectEnd);
808 SectEnd += SectBegin;
809
810 uint64_t SymAddr;
811 getSymbolAddress(Symb, SymAddr);
812 Result = (SymAddr >= SectBegin) && (SymAddr < SectEnd);
813
814 return object_error::success;
815}
816
817relocation_iterator MachOObjectFile::getSectionRelBegin(DataRefImpl Sec) const {
Rafael Espindolae5330f72013-04-25 12:45:46 +0000818 uint32_t Offset;
819 if (is64Bit()) {
820 macho::Section64 Sect = getSection64(Sec);
821 Offset = Sect.RelocationTableOffset;
822 } else {
823 macho::Section Sect = getSection(Sec);
824 Offset = Sect.RelocationTableOffset;
825 }
826
827 DataRefImpl Ret;
828 Ret.p = reinterpret_cast<uintptr_t>(getPtr(this, Offset));
829 return relocation_iterator(RelocationRef(Ret, this));
Michael J. Spencer4344b1e2011-10-07 19:25:32 +0000830}
Rafael Espindola335f1d42013-04-08 20:45:01 +0000831
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000832relocation_iterator
833MachOObjectFile::getSectionRelEnd(DataRefImpl Sec) const {
Rafael Espindolae5330f72013-04-25 12:45:46 +0000834 uint32_t Offset;
835 uint32_t Num;
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000836 if (is64Bit()) {
837 macho::Section64 Sect = getSection64(Sec);
Rafael Espindolae5330f72013-04-25 12:45:46 +0000838 Offset = Sect.RelocationTableOffset;
839 Num = Sect.NumRelocationTableEntries;
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000840 } else {
841 macho::Section Sect = getSection(Sec);
Rafael Espindolae5330f72013-04-25 12:45:46 +0000842 Offset = Sect.RelocationTableOffset;
843 Num = Sect.NumRelocationTableEntries;
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000844 }
Eric Christopher6256b032011-04-22 03:19:48 +0000845
Rafael Espindolae5330f72013-04-25 12:45:46 +0000846 const macho::RelocationEntry *P =
847 reinterpret_cast<const macho::RelocationEntry*>(getPtr(this, Offset));
848
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000849 DataRefImpl Ret;
Rafael Espindolae5330f72013-04-25 12:45:46 +0000850 Ret.p = reinterpret_cast<uintptr_t>(P + Num);
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000851 return relocation_iterator(RelocationRef(Ret, this));
852}
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000853
Rafael Espindolae5330f72013-04-25 12:45:46 +0000854error_code MachOObjectFile::getRelocationNext(DataRefImpl Rel,
855 RelocationRef &Res) const {
856 const macho::RelocationEntry *P =
857 reinterpret_cast<const macho::RelocationEntry *>(Rel.p);
858 Rel.p = reinterpret_cast<uintptr_t>(P + 1);
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000859 Res = RelocationRef(Rel, this);
860 return object_error::success;
861}
Owen Andersond8fa76d2011-10-24 23:20:07 +0000862
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000863error_code
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000864MachOObjectFile::getRelocationAddress(DataRefImpl Rel, uint64_t &Res) const {
Rafael Espindola956ca722013-04-25 12:28:45 +0000865 report_fatal_error("getRelocationAddress not implemented in MachOObjectFile");
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000866}
867
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000868error_code MachOObjectFile::getRelocationOffset(DataRefImpl Rel,
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000869 uint64_t &Res) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000870 macho::RelocationEntry RE = getRelocation(Rel);
871 Res = getAnyRelocationAddress(RE);
872 return object_error::success;
David Meyer5c2b4ea2012-03-01 01:36:50 +0000873}
874
Rafael Espindola6c1202c2013-06-05 01:33:53 +0000875symbol_iterator
876MachOObjectFile::getRelocationSymbol(DataRefImpl Rel) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000877 macho::RelocationEntry RE = getRelocation(Rel);
878 uint32_t SymbolIdx = getPlainRelocationSymbolNum(RE);
879 bool isExtern = getPlainRelocationExternal(RE);
Rafael Espindola6c1202c2013-06-05 01:33:53 +0000880 if (!isExtern)
881 return end_symbols();
Rafael Espindola802fe932013-04-24 19:47:55 +0000882
883 macho::SymtabLoadCommand S = getSymtabLoadCommand();
884 unsigned SymbolTableEntrySize = is64Bit() ?
885 sizeof(macho::Symbol64TableEntry) :
886 sizeof(macho::SymbolTableEntry);
887 uint64_t Offset = S.SymbolTableOffset + SymbolIdx * SymbolTableEntrySize;
888 DataRefImpl Sym;
889 Sym.p = reinterpret_cast<uintptr_t>(getPtr(this, Offset));
Rafael Espindola6c1202c2013-06-05 01:33:53 +0000890 return symbol_iterator(SymbolRef(Sym, this));
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000891}
892
893error_code MachOObjectFile::getRelocationType(DataRefImpl Rel,
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000894 uint64_t &Res) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000895 macho::RelocationEntry RE = getRelocation(Rel);
896 Res = getAnyRelocationType(RE);
897 return object_error::success;
898}
899
900error_code
901MachOObjectFile::getRelocationTypeName(DataRefImpl Rel,
902 SmallVectorImpl<char> &Result) const {
903 StringRef res;
904 uint64_t RType;
905 getRelocationType(Rel, RType);
906
907 unsigned Arch = this->getArch();
908
909 switch (Arch) {
910 case Triple::x86: {
911 static const char *const Table[] = {
912 "GENERIC_RELOC_VANILLA",
913 "GENERIC_RELOC_PAIR",
914 "GENERIC_RELOC_SECTDIFF",
915 "GENERIC_RELOC_PB_LA_PTR",
916 "GENERIC_RELOC_LOCAL_SECTDIFF",
917 "GENERIC_RELOC_TLV" };
918
919 if (RType > 6)
920 res = "Unknown";
921 else
922 res = Table[RType];
923 break;
924 }
925 case Triple::x86_64: {
926 static const char *const Table[] = {
927 "X86_64_RELOC_UNSIGNED",
928 "X86_64_RELOC_SIGNED",
929 "X86_64_RELOC_BRANCH",
930 "X86_64_RELOC_GOT_LOAD",
931 "X86_64_RELOC_GOT",
932 "X86_64_RELOC_SUBTRACTOR",
933 "X86_64_RELOC_SIGNED_1",
934 "X86_64_RELOC_SIGNED_2",
935 "X86_64_RELOC_SIGNED_4",
936 "X86_64_RELOC_TLV" };
937
938 if (RType > 9)
939 res = "Unknown";
940 else
941 res = Table[RType];
942 break;
943 }
944 case Triple::arm: {
945 static const char *const Table[] = {
946 "ARM_RELOC_VANILLA",
947 "ARM_RELOC_PAIR",
948 "ARM_RELOC_SECTDIFF",
949 "ARM_RELOC_LOCAL_SECTDIFF",
950 "ARM_RELOC_PB_LA_PTR",
951 "ARM_RELOC_BR24",
952 "ARM_THUMB_RELOC_BR22",
953 "ARM_THUMB_32BIT_BRANCH",
954 "ARM_RELOC_HALF",
955 "ARM_RELOC_HALF_SECTDIFF" };
956
957 if (RType > 9)
958 res = "Unknown";
959 else
960 res = Table[RType];
961 break;
962 }
963 case Triple::ppc: {
964 static const char *const Table[] = {
965 "PPC_RELOC_VANILLA",
966 "PPC_RELOC_PAIR",
967 "PPC_RELOC_BR14",
968 "PPC_RELOC_BR24",
969 "PPC_RELOC_HI16",
970 "PPC_RELOC_LO16",
971 "PPC_RELOC_HA16",
972 "PPC_RELOC_LO14",
973 "PPC_RELOC_SECTDIFF",
974 "PPC_RELOC_PB_LA_PTR",
975 "PPC_RELOC_HI16_SECTDIFF",
976 "PPC_RELOC_LO16_SECTDIFF",
977 "PPC_RELOC_HA16_SECTDIFF",
978 "PPC_RELOC_JBSR",
979 "PPC_RELOC_LO14_SECTDIFF",
980 "PPC_RELOC_LOCAL_SECTDIFF" };
981
982 res = Table[RType];
983 break;
984 }
985 case Triple::UnknownArch:
986 res = "Unknown";
987 break;
988 }
989 Result.append(res.begin(), res.end());
990 return object_error::success;
991}
992
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000993error_code
994MachOObjectFile::getRelocationValueString(DataRefImpl Rel,
Rafael Espindolaf69a81f2013-04-24 15:14:22 +0000995 SmallVectorImpl<char> &Result) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000996 macho::RelocationEntry RE = getRelocation(Rel);
David Meyer5c2b4ea2012-03-01 01:36:50 +0000997
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000998 unsigned Arch = this->getArch();
Eric Christopher6256b032011-04-22 03:19:48 +0000999
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001000 std::string fmtbuf;
1001 raw_string_ostream fmt(fmtbuf);
1002 unsigned Type = this->getAnyRelocationType(RE);
1003 bool IsPCRel = this->getAnyRelocationPCRel(RE);
1004
1005 // Determine any addends that should be displayed with the relocation.
1006 // These require decoding the relocation type, which is triple-specific.
1007
1008 // X86_64 has entirely custom relocation types.
1009 if (Arch == Triple::x86_64) {
1010 bool isPCRel = getAnyRelocationPCRel(RE);
1011
1012 switch (Type) {
1013 case macho::RIT_X86_64_GOTLoad: // X86_64_RELOC_GOT_LOAD
1014 case macho::RIT_X86_64_GOT: { // X86_64_RELOC_GOT
1015 printRelocationTargetName(this, RE, fmt);
1016 fmt << "@GOT";
1017 if (isPCRel) fmt << "PCREL";
1018 break;
1019 }
1020 case macho::RIT_X86_64_Subtractor: { // X86_64_RELOC_SUBTRACTOR
1021 DataRefImpl RelNext = Rel;
1022 RelNext.d.a++;
1023 macho::RelocationEntry RENext = getRelocation(RelNext);
1024
1025 // X86_64_SUBTRACTOR must be followed by a relocation of type
1026 // X86_64_RELOC_UNSIGNED.
1027 // NOTE: Scattered relocations don't exist on x86_64.
1028 unsigned RType = getAnyRelocationType(RENext);
1029 if (RType != 0)
1030 report_fatal_error("Expected X86_64_RELOC_UNSIGNED after "
1031 "X86_64_RELOC_SUBTRACTOR.");
1032
1033 // The X86_64_RELOC_UNSIGNED contains the minuend symbol,
1034 // X86_64_SUBTRACTOR contains to the subtrahend.
1035 printRelocationTargetName(this, RENext, fmt);
1036 fmt << "-";
1037 printRelocationTargetName(this, RE, fmt);
1038 break;
1039 }
1040 case macho::RIT_X86_64_TLV:
1041 printRelocationTargetName(this, RE, fmt);
1042 fmt << "@TLV";
1043 if (isPCRel) fmt << "P";
1044 break;
1045 case macho::RIT_X86_64_Signed1: // X86_64_RELOC_SIGNED1
1046 printRelocationTargetName(this, RE, fmt);
1047 fmt << "-1";
1048 break;
1049 case macho::RIT_X86_64_Signed2: // X86_64_RELOC_SIGNED2
1050 printRelocationTargetName(this, RE, fmt);
1051 fmt << "-2";
1052 break;
1053 case macho::RIT_X86_64_Signed4: // X86_64_RELOC_SIGNED4
1054 printRelocationTargetName(this, RE, fmt);
1055 fmt << "-4";
1056 break;
1057 default:
1058 printRelocationTargetName(this, RE, fmt);
1059 break;
1060 }
1061 // X86 and ARM share some relocation types in common.
David Fangd4f9d052013-08-08 20:14:40 +00001062 } else if (Arch == Triple::x86 || Arch == Triple::arm ||
1063 Arch == Triple::ppc) {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001064 // Generic relocation types...
1065 switch (Type) {
1066 case macho::RIT_Pair: // GENERIC_RELOC_PAIR - prints no info
1067 return object_error::success;
1068 case macho::RIT_Difference: { // GENERIC_RELOC_SECTDIFF
1069 DataRefImpl RelNext = Rel;
1070 RelNext.d.a++;
1071 macho::RelocationEntry RENext = getRelocation(RelNext);
1072
1073 // X86 sect diff's must be followed by a relocation of type
1074 // GENERIC_RELOC_PAIR.
1075 unsigned RType = getAnyRelocationType(RENext);
1076
1077 if (RType != 1)
1078 report_fatal_error("Expected GENERIC_RELOC_PAIR after "
1079 "GENERIC_RELOC_SECTDIFF.");
1080
1081 printRelocationTargetName(this, RE, fmt);
1082 fmt << "-";
1083 printRelocationTargetName(this, RENext, fmt);
1084 break;
1085 }
1086 }
1087
David Fangd4f9d052013-08-08 20:14:40 +00001088 if (Arch == Triple::x86 || Arch == Triple::ppc) {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001089 // All X86 relocations that need special printing were already
1090 // handled in the generic code.
1091 switch (Type) {
1092 case macho::RIT_Generic_LocalDifference:{// GENERIC_RELOC_LOCAL_SECTDIFF
1093 DataRefImpl RelNext = Rel;
1094 RelNext.d.a++;
1095 macho::RelocationEntry RENext = getRelocation(RelNext);
1096
1097 // X86 sect diff's must be followed by a relocation of type
1098 // GENERIC_RELOC_PAIR.
1099 unsigned RType = getAnyRelocationType(RENext);
1100 if (RType != 1)
1101 report_fatal_error("Expected GENERIC_RELOC_PAIR after "
1102 "GENERIC_RELOC_LOCAL_SECTDIFF.");
1103
1104 printRelocationTargetName(this, RE, fmt);
1105 fmt << "-";
1106 printRelocationTargetName(this, RENext, fmt);
1107 break;
1108 }
1109 case macho::RIT_Generic_TLV: {
1110 printRelocationTargetName(this, RE, fmt);
1111 fmt << "@TLV";
1112 if (IsPCRel) fmt << "P";
1113 break;
1114 }
1115 default:
1116 printRelocationTargetName(this, RE, fmt);
1117 }
1118 } else { // ARM-specific relocations
1119 switch (Type) {
1120 case macho::RIT_ARM_Half: // ARM_RELOC_HALF
1121 case macho::RIT_ARM_HalfDifference: { // ARM_RELOC_HALF_SECTDIFF
1122 // Half relocations steal a bit from the length field to encode
1123 // whether this is an upper16 or a lower16 relocation.
1124 bool isUpper = getAnyRelocationLength(RE) >> 1;
1125
1126 if (isUpper)
1127 fmt << ":upper16:(";
1128 else
1129 fmt << ":lower16:(";
1130 printRelocationTargetName(this, RE, fmt);
1131
1132 DataRefImpl RelNext = Rel;
1133 RelNext.d.a++;
1134 macho::RelocationEntry RENext = getRelocation(RelNext);
1135
1136 // ARM half relocs must be followed by a relocation of type
1137 // ARM_RELOC_PAIR.
1138 unsigned RType = getAnyRelocationType(RENext);
1139 if (RType != 1)
1140 report_fatal_error("Expected ARM_RELOC_PAIR after "
1141 "GENERIC_RELOC_HALF");
1142
1143 // NOTE: The half of the target virtual address is stashed in the
1144 // address field of the secondary relocation, but we can't reverse
1145 // engineer the constant offset from it without decoding the movw/movt
1146 // instruction to find the other half in its immediate field.
1147
1148 // ARM_RELOC_HALF_SECTDIFF encodes the second section in the
1149 // symbol/section pointer of the follow-on relocation.
1150 if (Type == macho::RIT_ARM_HalfDifference) {
1151 fmt << "-";
1152 printRelocationTargetName(this, RENext, fmt);
1153 }
1154
1155 fmt << ")";
1156 break;
1157 }
1158 default: {
1159 printRelocationTargetName(this, RE, fmt);
1160 }
1161 }
1162 }
1163 } else
1164 printRelocationTargetName(this, RE, fmt);
1165
1166 fmt.flush();
1167 Result.append(fmtbuf.begin(), fmtbuf.end());
1168 return object_error::success;
1169}
1170
1171error_code
Rafael Espindolaf69a81f2013-04-24 15:14:22 +00001172MachOObjectFile::getRelocationHidden(DataRefImpl Rel, bool &Result) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001173 unsigned Arch = getArch();
1174 uint64_t Type;
1175 getRelocationType(Rel, Type);
1176
1177 Result = false;
1178
1179 // On arches that use the generic relocations, GENERIC_RELOC_PAIR
1180 // is always hidden.
David Fangd4f9d052013-08-08 20:14:40 +00001181 if (Arch == Triple::x86 || Arch == Triple::arm || Arch == Triple::ppc) {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001182 if (Type == macho::RIT_Pair) Result = true;
1183 } else if (Arch == Triple::x86_64) {
1184 // On x86_64, X86_64_RELOC_UNSIGNED is hidden only when it follows
Eric Christopherbd8f8a32013-07-22 22:25:09 +00001185 // an X86_64_RELOC_SUBTRACTOR.
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001186 if (Type == macho::RIT_X86_64_Unsigned && Rel.d.a > 0) {
1187 DataRefImpl RelPrev = Rel;
1188 RelPrev.d.a--;
1189 uint64_t PrevType;
1190 getRelocationType(RelPrev, PrevType);
1191 if (PrevType == macho::RIT_X86_64_Subtractor)
1192 Result = true;
1193 }
1194 }
1195
1196 return object_error::success;
1197}
1198
1199error_code MachOObjectFile::getLibraryNext(DataRefImpl LibData,
Rafael Espindolaf69a81f2013-04-24 15:14:22 +00001200 LibraryRef &Res) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001201 report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
1202}
1203
1204error_code MachOObjectFile::getLibraryPath(DataRefImpl LibData,
Rafael Espindolaf69a81f2013-04-24 15:14:22 +00001205 StringRef &Res) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001206 report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
1207}
1208
1209symbol_iterator MachOObjectFile::begin_symbols() const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001210 DataRefImpl DRI;
Rafael Espindola802fe932013-04-24 19:47:55 +00001211 if (!SymtabLoadCmd)
1212 return symbol_iterator(SymbolRef(DRI, this));
1213
1214 macho::SymtabLoadCommand Symtab = getSymtabLoadCommand();
1215 DRI.p = reinterpret_cast<uintptr_t>(getPtr(this, Symtab.SymbolTableOffset));
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001216 return symbol_iterator(SymbolRef(DRI, this));
1217}
1218
1219symbol_iterator MachOObjectFile::end_symbols() const {
1220 DataRefImpl DRI;
Rafael Espindola802fe932013-04-24 19:47:55 +00001221 if (!SymtabLoadCmd)
1222 return symbol_iterator(SymbolRef(DRI, this));
1223
1224 macho::SymtabLoadCommand Symtab = getSymtabLoadCommand();
1225 unsigned SymbolTableEntrySize = is64Bit() ?
1226 sizeof(macho::Symbol64TableEntry) :
1227 sizeof(macho::SymbolTableEntry);
1228 unsigned Offset = Symtab.SymbolTableOffset +
1229 Symtab.NumSymbolTableEntries * SymbolTableEntrySize;
1230 DRI.p = reinterpret_cast<uintptr_t>(getPtr(this, Offset));
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001231 return symbol_iterator(SymbolRef(DRI, this));
1232}
1233
1234symbol_iterator MachOObjectFile::begin_dynamic_symbols() const {
1235 // TODO: implement
1236 report_fatal_error("Dynamic symbols unimplemented in MachOObjectFile");
1237}
1238
1239symbol_iterator MachOObjectFile::end_dynamic_symbols() const {
1240 // TODO: implement
1241 report_fatal_error("Dynamic symbols unimplemented in MachOObjectFile");
1242}
1243
1244section_iterator MachOObjectFile::begin_sections() const {
1245 DataRefImpl DRI;
1246 return section_iterator(SectionRef(DRI, this));
1247}
1248
1249section_iterator MachOObjectFile::end_sections() const {
1250 DataRefImpl DRI;
1251 DRI.d.a = Sections.size();
1252 return section_iterator(SectionRef(DRI, this));
1253}
1254
1255library_iterator MachOObjectFile::begin_libraries_needed() const {
1256 // TODO: implement
1257 report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
1258}
1259
1260library_iterator MachOObjectFile::end_libraries_needed() const {
1261 // TODO: implement
1262 report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
1263}
1264
1265uint8_t MachOObjectFile::getBytesInAddress() const {
Rafael Espindola0f08eb12013-04-07 19:05:30 +00001266 return is64Bit() ? 8 : 4;
Eric Christopher6256b032011-04-22 03:19:48 +00001267}
1268
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001269StringRef MachOObjectFile::getFileFormatName() const {
1270 unsigned CPUType = getCPUType(this);
1271 if (!is64Bit()) {
1272 switch (CPUType) {
1273 case llvm::MachO::CPUTypeI386:
1274 return "Mach-O 32-bit i386";
1275 case llvm::MachO::CPUTypeARM:
1276 return "Mach-O arm";
1277 case llvm::MachO::CPUTypePowerPC:
1278 return "Mach-O 32-bit ppc";
1279 default:
1280 assert((CPUType & llvm::MachO::CPUArchABI64) == 0 &&
1281 "64-bit object file when we're not 64-bit?");
1282 return "Mach-O 32-bit unknown";
1283 }
1284 }
1285
1286 // Make sure the cpu type has the correct mask.
1287 assert((CPUType & llvm::MachO::CPUArchABI64)
Eric Christopher60d65912013-07-22 22:25:07 +00001288 == llvm::MachO::CPUArchABI64 &&
1289 "32-bit object file when we're 64-bit?");
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001290
1291 switch (CPUType) {
1292 case llvm::MachO::CPUTypeX86_64:
1293 return "Mach-O 64-bit x86-64";
1294 case llvm::MachO::CPUTypePowerPC64:
1295 return "Mach-O 64-bit ppc64";
1296 default:
1297 return "Mach-O 64-bit unknown";
1298 }
1299}
1300
Alexey Samsonov9c22f872013-06-18 15:03:28 +00001301Triple::ArchType MachOObjectFile::getArch(uint32_t CPUType) {
1302 switch (CPUType) {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001303 case llvm::MachO::CPUTypeI386:
1304 return Triple::x86;
1305 case llvm::MachO::CPUTypeX86_64:
1306 return Triple::x86_64;
1307 case llvm::MachO::CPUTypeARM:
1308 return Triple::arm;
1309 case llvm::MachO::CPUTypePowerPC:
1310 return Triple::ppc;
1311 case llvm::MachO::CPUTypePowerPC64:
1312 return Triple::ppc64;
1313 default:
1314 return Triple::UnknownArch;
1315 }
1316}
1317
Alexey Samsonov9c22f872013-06-18 15:03:28 +00001318unsigned MachOObjectFile::getArch() const {
1319 return getArch(getCPUType(this));
1320}
1321
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001322StringRef MachOObjectFile::getLoadName() const {
1323 // TODO: Implement
1324 report_fatal_error("get_load_name() unimplemented in MachOObjectFile");
1325}
1326
Rafael Espindola2173e182013-04-26 20:07:33 +00001327relocation_iterator MachOObjectFile::getSectionRelBegin(unsigned Index) const {
1328 DataRefImpl DRI;
1329 DRI.d.a = Index;
1330 return getSectionRelBegin(DRI);
1331}
1332
1333relocation_iterator MachOObjectFile::getSectionRelEnd(unsigned Index) const {
1334 DataRefImpl DRI;
1335 DRI.d.a = Index;
1336 return getSectionRelEnd(DRI);
1337}
1338
Kevin Enderby54154f32013-06-06 17:20:50 +00001339dice_iterator MachOObjectFile::begin_dices() const {
1340 DataRefImpl DRI;
1341 if (!DataInCodeLoadCmd)
1342 return dice_iterator(DiceRef(DRI, this));
1343
1344 macho::LinkeditDataLoadCommand DicLC = getDataInCodeLoadCommand();
1345 DRI.p = reinterpret_cast<uintptr_t>(getPtr(this, DicLC.DataOffset));
1346 return dice_iterator(DiceRef(DRI, this));
1347}
1348
1349dice_iterator MachOObjectFile::end_dices() const {
1350 DataRefImpl DRI;
1351 if (!DataInCodeLoadCmd)
1352 return dice_iterator(DiceRef(DRI, this));
1353
1354 macho::LinkeditDataLoadCommand DicLC = getDataInCodeLoadCommand();
1355 unsigned Offset = DicLC.DataOffset + DicLC.DataSize;
1356 DRI.p = reinterpret_cast<uintptr_t>(getPtr(this, Offset));
1357 return dice_iterator(DiceRef(DRI, this));
1358}
1359
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001360StringRef
1361MachOObjectFile::getSectionFinalSegmentName(DataRefImpl Sec) const {
1362 ArrayRef<char> Raw = getSectionRawFinalSegmentName(Sec);
1363 return parseSegmentOrSectionName(Raw.data());
1364}
1365
1366ArrayRef<char>
1367MachOObjectFile::getSectionRawName(DataRefImpl Sec) const {
1368 const SectionBase *Base =
1369 reinterpret_cast<const SectionBase*>(Sections[Sec.d.a]);
1370 return ArrayRef<char>(Base->Name);
1371}
1372
1373ArrayRef<char>
1374MachOObjectFile::getSectionRawFinalSegmentName(DataRefImpl Sec) const {
1375 const SectionBase *Base =
1376 reinterpret_cast<const SectionBase*>(Sections[Sec.d.a]);
1377 return ArrayRef<char>(Base->SegmentName);
1378}
1379
1380bool
1381MachOObjectFile::isRelocationScattered(const macho::RelocationEntry &RE)
1382 const {
1383 if (getCPUType(this) == llvm::MachO::CPUTypeX86_64)
1384 return false;
1385 return getPlainRelocationAddress(RE) & macho::RF_Scattered;
1386}
1387
Eric Christopher60d65912013-07-22 22:25:07 +00001388unsigned MachOObjectFile::getPlainRelocationSymbolNum(
1389 const macho::RelocationEntry &RE) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001390 if (isLittleEndian())
1391 return RE.Word1 & 0xffffff;
1392 return RE.Word1 >> 8;
1393}
1394
Eric Christopher60d65912013-07-22 22:25:07 +00001395bool MachOObjectFile::getPlainRelocationExternal(
1396 const macho::RelocationEntry &RE) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001397 if (isLittleEndian())
1398 return (RE.Word1 >> 27) & 1;
1399 return (RE.Word1 >> 4) & 1;
1400}
1401
Eric Christopher60d65912013-07-22 22:25:07 +00001402bool MachOObjectFile::getScatteredRelocationScattered(
1403 const macho::RelocationEntry &RE) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001404 return RE.Word0 >> 31;
1405}
1406
Eric Christopher60d65912013-07-22 22:25:07 +00001407uint32_t MachOObjectFile::getScatteredRelocationValue(
1408 const macho::RelocationEntry &RE) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001409 return RE.Word1;
1410}
1411
Eric Christopher60d65912013-07-22 22:25:07 +00001412unsigned MachOObjectFile::getAnyRelocationAddress(
1413 const macho::RelocationEntry &RE) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001414 if (isRelocationScattered(RE))
1415 return getScatteredRelocationAddress(RE);
1416 return getPlainRelocationAddress(RE);
1417}
1418
1419unsigned
1420MachOObjectFile::getAnyRelocationPCRel(const macho::RelocationEntry &RE) const {
1421 if (isRelocationScattered(RE))
1422 return getScatteredRelocationPCRel(this, RE);
1423 return getPlainRelocationPCRel(this, RE);
1424}
1425
Eric Christopher60d65912013-07-22 22:25:07 +00001426unsigned MachOObjectFile::getAnyRelocationLength(
1427 const macho::RelocationEntry &RE) const {
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001428 if (isRelocationScattered(RE))
1429 return getScatteredRelocationLength(RE);
1430 return getPlainRelocationLength(this, RE);
1431}
1432
1433unsigned
1434MachOObjectFile::getAnyRelocationType(const macho::RelocationEntry &RE) const {
1435 if (isRelocationScattered(RE))
1436 return getScatteredRelocationType(RE);
1437 return getPlainRelocationType(this, RE);
1438}
1439
Rafael Espindolae87dadc2013-04-30 15:40:54 +00001440SectionRef
1441MachOObjectFile::getRelocationSection(const macho::RelocationEntry &RE) const {
1442 if (isRelocationScattered(RE) || getPlainRelocationExternal(RE))
1443 return *end_sections();
1444 unsigned SecNum = getPlainRelocationSymbolNum(RE) - 1;
1445 DataRefImpl DRI;
1446 DRI.d.a = SecNum;
1447 return SectionRef(DRI, this);
1448}
1449
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001450MachOObjectFile::LoadCommandInfo
1451MachOObjectFile::getFirstLoadCommandInfo() const {
1452 MachOObjectFile::LoadCommandInfo Load;
1453
1454 unsigned HeaderSize = is64Bit() ? macho::Header64Size : macho::Header32Size;
1455 Load.Ptr = getPtr(this, HeaderSize);
Rafael Espindola143d2232013-04-19 13:45:05 +00001456 Load.C = getStruct<macho::LoadCommand>(this, Load.Ptr);
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001457 return Load;
1458}
1459
1460MachOObjectFile::LoadCommandInfo
1461MachOObjectFile::getNextLoadCommandInfo(const LoadCommandInfo &L) const {
1462 MachOObjectFile::LoadCommandInfo Next;
1463 Next.Ptr = L.Ptr + L.C.Size;
Rafael Espindola143d2232013-04-19 13:45:05 +00001464 Next.C = getStruct<macho::LoadCommand>(this, Next.Ptr);
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001465 return Next;
1466}
1467
1468macho::Section MachOObjectFile::getSection(DataRefImpl DRI) const {
Rafael Espindola143d2232013-04-19 13:45:05 +00001469 return getStruct<macho::Section>(this, Sections[DRI.d.a]);
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001470}
1471
1472macho::Section64 MachOObjectFile::getSection64(DataRefImpl DRI) const {
Rafael Espindola143d2232013-04-19 13:45:05 +00001473 return getStruct<macho::Section64>(this, Sections[DRI.d.a]);
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001474}
1475
Rafael Espindola2173e182013-04-26 20:07:33 +00001476macho::Section MachOObjectFile::getSection(const LoadCommandInfo &L,
1477 unsigned Index) const {
1478 const char *Sec = getSectionPtr(this, L, Index);
1479 return getStruct<macho::Section>(this, Sec);
1480}
1481
1482macho::Section64 MachOObjectFile::getSection64(const LoadCommandInfo &L,
1483 unsigned Index) const {
1484 const char *Sec = getSectionPtr(this, L, Index);
1485 return getStruct<macho::Section64>(this, Sec);
1486}
1487
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001488macho::SymbolTableEntry
1489MachOObjectFile::getSymbolTableEntry(DataRefImpl DRI) const {
Rafael Espindola802fe932013-04-24 19:47:55 +00001490 const char *P = reinterpret_cast<const char *>(DRI.p);
Rafael Espindola143d2232013-04-19 13:45:05 +00001491 return getStruct<macho::SymbolTableEntry>(this, P);
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001492}
1493
1494macho::Symbol64TableEntry
1495MachOObjectFile::getSymbol64TableEntry(DataRefImpl DRI) const {
Rafael Espindola802fe932013-04-24 19:47:55 +00001496 const char *P = reinterpret_cast<const char *>(DRI.p);
Rafael Espindola143d2232013-04-19 13:45:05 +00001497 return getStruct<macho::Symbol64TableEntry>(this, P);
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001498}
1499
Eric Christopher60d65912013-07-22 22:25:07 +00001500macho::LinkeditDataLoadCommand MachOObjectFile::getLinkeditDataLoadCommand(
1501 const MachOObjectFile::LoadCommandInfo &L) const {
Rafael Espindola143d2232013-04-19 13:45:05 +00001502 return getStruct<macho::LinkeditDataLoadCommand>(this, L.Ptr);
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001503}
1504
Rafael Espindola2173e182013-04-26 20:07:33 +00001505macho::SegmentLoadCommand
1506MachOObjectFile::getSegmentLoadCommand(const LoadCommandInfo &L) const {
1507 return getStruct<macho::SegmentLoadCommand>(this, L.Ptr);
1508}
1509
1510macho::Segment64LoadCommand
1511MachOObjectFile::getSegment64LoadCommand(const LoadCommandInfo &L) const {
1512 return getStruct<macho::Segment64LoadCommand>(this, L.Ptr);
1513}
1514
1515macho::LinkerOptionsLoadCommand
1516MachOObjectFile::getLinkerOptionsLoadCommand(const LoadCommandInfo &L) const {
1517 return getStruct<macho::LinkerOptionsLoadCommand>(this, L.Ptr);
1518}
1519
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001520macho::RelocationEntry
1521MachOObjectFile::getRelocation(DataRefImpl Rel) const {
Rafael Espindolae5330f72013-04-25 12:45:46 +00001522 const char *P = reinterpret_cast<const char *>(Rel.p);
1523 return getStruct<macho::RelocationEntry>(this, P);
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001524}
1525
Kevin Enderby54154f32013-06-06 17:20:50 +00001526macho::DataInCodeTableEntry
1527MachOObjectFile::getDice(DataRefImpl Rel) const {
1528 const char *P = reinterpret_cast<const char *>(Rel.p);
1529 return getStruct<macho::DataInCodeTableEntry>(this, P);
1530}
1531
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001532macho::Header MachOObjectFile::getHeader() const {
Rafael Espindola143d2232013-04-19 13:45:05 +00001533 return getStruct<macho::Header>(this, getPtr(this, 0));
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001534}
1535
Rafael Espindola2173e182013-04-26 20:07:33 +00001536macho::Header64Ext MachOObjectFile::getHeader64Ext() const {
1537 return
1538 getStruct<macho::Header64Ext>(this, getPtr(this, sizeof(macho::Header)));
1539}
1540
1541macho::IndirectSymbolTableEntry MachOObjectFile::getIndirectSymbolTableEntry(
1542 const macho::DysymtabLoadCommand &DLC,
1543 unsigned Index) const {
1544 uint64_t Offset = DLC.IndirectSymbolTableOffset +
1545 Index * sizeof(macho::IndirectSymbolTableEntry);
1546 return getStruct<macho::IndirectSymbolTableEntry>(this, getPtr(this, Offset));
1547}
1548
1549macho::DataInCodeTableEntry
1550MachOObjectFile::getDataInCodeTableEntry(uint32_t DataOffset,
1551 unsigned Index) const {
1552 uint64_t Offset = DataOffset + Index * sizeof(macho::DataInCodeTableEntry);
1553 return getStruct<macho::DataInCodeTableEntry>(this, getPtr(this, Offset));
1554}
1555
1556macho::SymtabLoadCommand MachOObjectFile::getSymtabLoadCommand() const {
Rafael Espindola143d2232013-04-19 13:45:05 +00001557 return getStruct<macho::SymtabLoadCommand>(this, SymtabLoadCmd);
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001558}
1559
Rafael Espindola2173e182013-04-26 20:07:33 +00001560macho::DysymtabLoadCommand MachOObjectFile::getDysymtabLoadCommand() const {
1561 return getStruct<macho::DysymtabLoadCommand>(this, DysymtabLoadCmd);
1562}
1563
Kevin Enderby54154f32013-06-06 17:20:50 +00001564macho::LinkeditDataLoadCommand
1565MachOObjectFile::getDataInCodeLoadCommand() const {
1566 if (DataInCodeLoadCmd)
1567 return getStruct<macho::LinkeditDataLoadCommand>(this, DataInCodeLoadCmd);
1568
1569 // If there is no DataInCodeLoadCmd return a load command with zero'ed fields.
1570 macho::LinkeditDataLoadCommand Cmd;
1571 Cmd.Type = macho::LCT_DataInCode;
1572 Cmd.Size = macho::LinkeditLoadCommandSize;
1573 Cmd.DataOffset = 0;
1574 Cmd.DataSize = 0;
1575 return Cmd;
1576}
1577
Rafael Espindola2173e182013-04-26 20:07:33 +00001578StringRef MachOObjectFile::getStringTableData() const {
1579 macho::SymtabLoadCommand S = getSymtabLoadCommand();
1580 return getData().substr(S.StringTableOffset, S.StringTableSize);
1581}
1582
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001583bool MachOObjectFile::is64Bit() const {
1584 return getType() == getMachOType(false, true) ||
1585 getType() == getMachOType(true, true);
1586}
1587
1588void MachOObjectFile::ReadULEB128s(uint64_t Index,
1589 SmallVectorImpl<uint64_t> &Out) const {
1590 DataExtractor extractor(ObjectFile::getData(), true, 0);
1591
1592 uint32_t offset = Index;
1593 uint64_t data = 0;
1594 while (uint64_t delta = extractor.getULEB128(&offset)) {
1595 data += delta;
1596 Out.push_back(data);
1597 }
1598}
1599
1600ObjectFile *ObjectFile::createMachOObjectFile(MemoryBuffer *Buffer) {
1601 StringRef Magic = Buffer->getBuffer().slice(0, 4);
1602 error_code ec;
Benjamin Kramer782fdce2013-08-03 22:16:37 +00001603 OwningPtr<ObjectFile> Ret;
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001604 if (Magic == "\xFE\xED\xFA\xCE")
Benjamin Kramer782fdce2013-08-03 22:16:37 +00001605 Ret.reset(new MachOObjectFile(Buffer, false, false, ec));
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001606 else if (Magic == "\xCE\xFA\xED\xFE")
Benjamin Kramer782fdce2013-08-03 22:16:37 +00001607 Ret.reset(new MachOObjectFile(Buffer, true, false, ec));
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001608 else if (Magic == "\xFE\xED\xFA\xCF")
Benjamin Kramer782fdce2013-08-03 22:16:37 +00001609 Ret.reset(new MachOObjectFile(Buffer, false, true, ec));
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001610 else if (Magic == "\xCF\xFA\xED\xFE")
Benjamin Kramer782fdce2013-08-03 22:16:37 +00001611 Ret.reset(new MachOObjectFile(Buffer, true, true, ec));
1612 else {
1613 delete Buffer;
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001614 return NULL;
Benjamin Kramer782fdce2013-08-03 22:16:37 +00001615 }
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001616
1617 if (ec)
1618 return NULL;
Benjamin Kramer782fdce2013-08-03 22:16:37 +00001619 return Ret.take();
Rafael Espindolafd7aa382013-04-18 18:08:55 +00001620}
1621
Owen Andersonf7c93a32011-10-11 17:32:27 +00001622} // end namespace object
Eric Christopher6256b032011-04-22 03:19:48 +00001623} // end namespace llvm