Don't use getSymbolNMTypeChar for implementing COFFObjectFile::getSymbolFileOffset.
[oota-llvm.git] / lib / Object / MachOObjectFile.cpp
1 //===- 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
15 #include "llvm/Object/MachO.h"
16 #include "llvm/ADT/Triple.h"
17 #include "llvm/Support/DataExtractor.h"
18 #include "llvm/Support/Format.h"
19 #include "llvm/Support/Host.h"
20 #include "llvm/Support/MemoryBuffer.h"
21 #include "llvm/Support/raw_ostream.h"
22 #include <cctype>
23 #include <cstring>
24 #include <limits>
25
26 using namespace llvm;
27 using namespace object;
28
29 namespace llvm {
30 namespace object {
31
32 struct nlist_base {
33   uint32_t n_strx;
34   uint8_t n_type;
35   uint8_t n_sect;
36   uint16_t n_desc;
37 };
38
39 struct section_base {
40   char sectname[16];
41   char segname[16];
42 };
43
44 template<typename T>
45 static void SwapValue(T &Value) {
46   Value = sys::SwapByteOrder(Value);
47 }
48
49 template<typename T>
50 static void SwapStruct(T &Value);
51
52 template<>
53 void SwapStruct(MachO::any_relocation_info &H) {
54   SwapValue(H.r_word0);
55   SwapValue(H.r_word1);
56 }
57
58 template<>
59 void SwapStruct(MachO::load_command &L) {
60   SwapValue(L.cmd);
61   SwapValue(L.cmdsize);
62 }
63
64 template<>
65 void SwapStruct(nlist_base &S) {
66   SwapValue(S.n_strx);
67   SwapValue(S.n_desc);
68 }
69
70 template<>
71 void 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);
81 }
82
83 template<>
84 void 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);
95 }
96
97 template<>
98 void SwapStruct(MachO::nlist &S) {
99   SwapValue(S.n_strx);
100   SwapValue(S.n_desc);
101   SwapValue(S.n_value);
102 }
103
104 template<>
105 void SwapStruct(MachO::nlist_64 &S) {
106   SwapValue(S.n_strx);
107   SwapValue(S.n_desc);
108   SwapValue(S.n_value);
109 }
110
111 template<>
112 void 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);
120 }
121
122 template<>
123 void 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);
132 }
133
134 template<>
135 void 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);
142 }
143
144 template<>
145 void 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);
166 }
167
168 template<>
169 void SwapStruct(MachO::linkedit_data_command &C) {
170   SwapValue(C.cmd);
171   SwapValue(C.cmdsize);
172   SwapValue(C.dataoff);
173   SwapValue(C.datasize);
174 }
175
176 template<>
177 void 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);
188 }
189
190 template<>
191 void 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);
202 }
203
204 template<>
205 void SwapStruct(uint32_t &C) {
206   SwapValue(C);
207 }
208
209 template<>
210 void SwapStruct(MachO::linker_options_command &C) {
211   SwapValue(C.cmd);
212   SwapValue(C.cmdsize);
213   SwapValue(C.count);
214 }
215
216 template<>
217 void SwapStruct(MachO::data_in_code_entry &C) {
218   SwapValue(C.offset);
219   SwapValue(C.length);
220   SwapValue(C.kind);
221 }
222
223 template<typename T>
224 T 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;
230 }
231
232 static uint32_t
233 getSegmentLoadCommandNumSections(const MachOObjectFile *O,
234                                  const MachOObjectFile::LoadCommandInfo &L) {
235   if (O->is64Bit()) {
236     MachO::segment_command_64 S = O->getSegment64LoadCommand(L);
237     return S.nsects;
238   }
239   MachO::segment_command S = O->getSegmentLoadCommand(L);
240   return S.nsects;
241 }
242
243 static const char *
244 getSectionPtr(const MachOObjectFile *O, MachOObjectFile::LoadCommandInfo L,
245               unsigned Sec) {
246   uintptr_t CommandAddr = reinterpret_cast<uintptr_t>(L.Ptr);
247
248   bool Is64 = O->is64Bit();
249   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);
253
254   uintptr_t SectionAddr = CommandAddr + SegmentLoadSize + Sec * SectionSize;
255   return reinterpret_cast<const char*>(SectionAddr);
256 }
257
258 static const char *getPtr(const MachOObjectFile *O, size_t Offset) {
259   return O->getData().substr(Offset, 1).data();
260 }
261
262 static nlist_base
263 getSymbolTableEntryBase(const MachOObjectFile *O, DataRefImpl DRI) {
264   const char *P = reinterpret_cast<const char *>(DRI.p);
265   return getStruct<nlist_base>(O, P);
266 }
267
268 static StringRef parseSegmentOrSectionName(const char *P) {
269   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
276 // Helper to advance a section or symbol iterator multiple increments at a time.
277 template<class T>
278 static 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
286 template<class T>
287 static void advanceTo(T &it, size_t Val) {
288   if (error_code ec = advance(it, Val))
289     report_fatal_error(ec.message());
290 }
291
292 static unsigned getCPUType(const MachOObjectFile *O) {
293   return O->getHeader().cputype;
294 }
295
296 static void printRelocationTargetName(const MachOObjectFile *O,
297                                       const MachO::any_relocation_info &RE,
298                                       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);
349   uint64_t Val = O->getPlainRelocationSymbolNum(RE);
350
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();
357     // Adjust for the fact that sections are 1-indexed.
358     advanceTo(SI, Val - 1);
359     SI->getName(S);
360   }
361
362   fmt << S;
363 }
364
365 static uint32_t
366 getPlainRelocationAddress(const MachO::any_relocation_info &RE) {
367   return RE.r_word0;
368 }
369
370 static unsigned
371 getScatteredRelocationAddress(const MachO::any_relocation_info &RE) {
372   return RE.r_word0 & 0xffffff;
373 }
374
375 static bool getPlainRelocationPCRel(const MachOObjectFile *O,
376                                     const MachO::any_relocation_info &RE) {
377   if (O->isLittleEndian())
378     return (RE.r_word1 >> 24) & 1;
379   return (RE.r_word1 >> 7) & 1;
380 }
381
382 static bool
383 getScatteredRelocationPCRel(const MachOObjectFile *O,
384                             const MachO::any_relocation_info &RE) {
385   return (RE.r_word0 >> 30) & 1;
386 }
387
388 static unsigned getPlainRelocationLength(const MachOObjectFile *O,
389                                          const MachO::any_relocation_info &RE) {
390   if (O->isLittleEndian())
391     return (RE.r_word1 >> 25) & 3;
392   return (RE.r_word1 >> 5) & 3;
393 }
394
395 static unsigned
396 getScatteredRelocationLength(const MachO::any_relocation_info &RE) {
397   return (RE.r_word0 >> 28) & 3;
398 }
399
400 static unsigned getPlainRelocationType(const MachOObjectFile *O,
401                                        const MachO::any_relocation_info &RE) {
402   if (O->isLittleEndian())
403     return RE.r_word1 >> 28;
404   return RE.r_word1 & 0xf;
405 }
406
407 static unsigned
408 getScatteredRelocationType(const MachO::any_relocation_info &RE) {
409   return (RE.r_word0 >> 24) & 0xf;
410 }
411
412 static uint32_t getSectionFlags(const MachOObjectFile *O,
413                                 DataRefImpl Sec) {
414   if (O->is64Bit()) {
415     MachO::section_64 Sect = O->getSection64(Sec);
416     return Sect.flags;
417   }
418   MachO::section Sect = O->getSection(Sec);
419   return Sect.flags;
420 }
421
422 MachOObjectFile::MachOObjectFile(MemoryBuffer *Object,
423                                  bool IsLittleEndian, bool Is64bits,
424                                  error_code &ec)
425     : ObjectFile(getMachOType(IsLittleEndian, Is64bits), Object),
426       SymtabLoadCmd(NULL), DysymtabLoadCmd(NULL), DataInCodeLoadCmd(NULL) {
427   uint32_t LoadCommandCount = this->getHeader().ncmds;
428   MachO::LoadCommandType SegmentLoadType = is64Bit() ?
429     MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT;
430
431   MachOObjectFile::LoadCommandInfo Load = getFirstLoadCommandInfo();
432   for (unsigned I = 0; ; ++I) {
433     if (Load.C.cmd == MachO::LC_SYMTAB) {
434       assert(!SymtabLoadCmd && "Multiple symbol tables");
435       SymtabLoadCmd = Load.Ptr;
436     } else if (Load.C.cmd == MachO::LC_DYSYMTAB) {
437       assert(!DysymtabLoadCmd && "Multiple dynamic symbol tables");
438       DysymtabLoadCmd = Load.Ptr;
439     } else if (Load.C.cmd == MachO::LC_DATA_IN_CODE) {
440       assert(!DataInCodeLoadCmd && "Multiple data in code tables");
441       DataInCodeLoadCmd = Load.Ptr;
442     } else if (Load.C.cmd == SegmentLoadType) {
443       uint32_t NumSections = getSegmentLoadCommandNumSections(this, Load);
444       for (unsigned J = 0; J < NumSections; ++J) {
445         const char *Sec = getSectionPtr(this, Load, J);
446         Sections.push_back(Sec);
447       }
448     }
449
450     if (I == LoadCommandCount - 1)
451       break;
452     else
453       Load = getNextLoadCommandInfo(Load);
454   }
455 }
456
457 error_code MachOObjectFile::getSymbolNext(DataRefImpl Symb,
458                                           SymbolRef &Res) const {
459   unsigned SymbolTableEntrySize = is64Bit() ?
460     sizeof(MachO::nlist_64) :
461     sizeof(MachO::nlist);
462   Symb.p += SymbolTableEntrySize;
463   Res = SymbolRef(Symb, this);
464   return object_error::success;
465 }
466
467 error_code MachOObjectFile::getSymbolName(DataRefImpl Symb,
468                                           StringRef &Res) const {
469   StringRef StringTable = getStringTableData();
470   nlist_base Entry = getSymbolTableEntryBase(this, Symb);
471   const char *Start = &StringTable.data()[Entry.n_strx];
472   Res = StringRef(Start);
473   return object_error::success;
474 }
475
476 error_code MachOObjectFile::getSymbolAddress(DataRefImpl Symb,
477                                              uint64_t &Res) const {
478   if (is64Bit()) {
479     MachO::nlist_64 Entry = getSymbol64TableEntry(Symb);
480     Res = Entry.n_value;
481   } else {
482     MachO::nlist Entry = getSymbolTableEntry(Symb);
483     Res = Entry.n_value;
484   }
485   return object_error::success;
486 }
487
488 error_code
489 MachOObjectFile::getSymbolFileOffset(DataRefImpl Symb,
490                                      uint64_t &Res) const {
491   nlist_base Entry = getSymbolTableEntryBase(this, Symb);
492   getSymbolAddress(Symb, Res);
493   if (Entry.n_sect) {
494     uint64_t Delta;
495     DataRefImpl SecRel;
496     SecRel.d.a = Entry.n_sect-1;
497     if (is64Bit()) {
498       MachO::section_64 Sec = getSection64(SecRel);
499       Delta = Sec.offset - Sec.addr;
500     } else {
501       MachO::section Sec = getSection(SecRel);
502       Delta = Sec.offset - Sec.addr;
503     }
504
505     Res += Delta;
506   }
507
508   return object_error::success;
509 }
510
511 error_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) {
516     nlist_base Entry = getSymbolTableEntryBase(this, DRI);
517     Result = 1 << MachO::GET_COMM_ALIGN(Entry.n_desc);
518   } else {
519     Result = 0;
520   }
521   return object_error::success;
522 }
523
524 error_code MachOObjectFile::getSymbolSize(DataRefImpl DRI,
525                                           uint64_t &Result) const {
526   uint64_t BeginOffset;
527   uint64_t EndOffset = 0;
528   uint8_t SectionIndex;
529
530   nlist_base Entry = getSymbolTableEntryBase(this, DRI);
531   uint64_t Value;
532   getSymbolAddress(DRI, Value);
533
534   BeginOffset = Value;
535
536   SectionIndex = Entry.n_sect;
537   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
548   error_code ec;
549   for (symbol_iterator I = begin_symbols(), E = end_symbols(); I != E;
550        I.increment(ec)) {
551     DataRefImpl DRI = I->getRawDataRefImpl();
552     Entry = getSymbolTableEntryBase(this, DRI);
553     getSymbolAddress(DRI, Value);
554     if (Entry.n_sect == SectionIndex && Value > BeginOffset)
555       if (!EndOffset || Value < EndOffset)
556         EndOffset = Value;
557   }
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
570 error_code MachOObjectFile::getSymbolType(DataRefImpl Symb,
571                                           SymbolRef::Type &Res) const {
572   nlist_base Entry = getSymbolTableEntryBase(this, Symb);
573   uint8_t n_type = Entry.n_type;
574
575   Res = SymbolRef::ST_Other;
576
577   // If this is a STAB debugging symbol, we can do nothing more.
578   if (n_type & MachO::N_STAB) {
579     Res = SymbolRef::ST_Debug;
580     return object_error::success;
581   }
582
583   switch (n_type & MachO::N_TYPE) {
584     case MachO::N_UNDF :
585       Res = SymbolRef::ST_Unknown;
586       break;
587     case MachO::N_SECT :
588       Res = SymbolRef::ST_Function;
589       break;
590   }
591   return object_error::success;
592 }
593
594 error_code MachOObjectFile::getSymbolNMTypeChar(DataRefImpl Symb,
595                                                 char &Res) const {
596   nlist_base Entry = getSymbolTableEntryBase(this, Symb);
597   uint8_t NType = Entry.n_type;
598
599   char Char;
600   switch (NType & MachO::N_TYPE) {
601     case MachO::N_UNDF:
602       Char = 'u';
603       break;
604     case MachO::N_ABS:
605       Char = 's';
606       break;
607     case MachO::N_SECT: {
608       section_iterator Sec = end_sections();
609       getSymbolSection(Symb, Sec);
610       DataRefImpl Ref = Sec->getRawDataRefImpl();
611       StringRef SectionName;
612       getSectionName(Ref, SectionName);
613       StringRef SegmentName = getSectionFinalSegmentName(Ref);
614       if (SegmentName == "__TEXT" && SectionName == "__text")
615         Char = 't';
616       else
617         Char = 's';
618     }
619       break;
620     default:
621       Char = '?';
622       break;
623   }
624
625   if (NType & (MachO::N_EXT | MachO::N_PEXT))
626     Char = toupper(static_cast<unsigned char>(Char));
627   Res = Char;
628   return object_error::success;
629 }
630
631 error_code MachOObjectFile::getSymbolFlags(DataRefImpl DRI,
632                                            uint32_t &Result) const {
633   nlist_base Entry = getSymbolTableEntryBase(this, DRI);
634
635   uint8_t MachOType = Entry.n_type;
636   uint16_t MachOFlags = Entry.n_desc;
637
638   // TODO: Correctly set SF_ThreadLocal
639   Result = SymbolRef::SF_None;
640
641   if ((MachOType & MachO::N_TYPE) == MachO::N_UNDF)
642     Result |= SymbolRef::SF_Undefined;
643
644   if (MachOType & MachO::N_STAB)
645     Result |= SymbolRef::SF_FormatSpecific;
646
647   if (MachOType & MachO::N_EXT) {
648     Result |= SymbolRef::SF_Global;
649     if ((MachOType & MachO::N_TYPE) == MachO::N_UNDF) {
650       uint64_t Value;
651       getSymbolAddress(DRI, Value);
652       if (Value)
653         Result |= SymbolRef::SF_Common;
654     }
655   }
656
657   if (MachOFlags & (MachO::N_WEAK_REF | MachO::N_WEAK_DEF))
658     Result |= SymbolRef::SF_Weak;
659
660   if ((MachOType & MachO::N_TYPE) == MachO::N_ABS)
661     Result |= SymbolRef::SF_Absolute;
662
663   return object_error::success;
664 }
665
666 error_code
667 MachOObjectFile::getSymbolSection(DataRefImpl Symb,
668                                   section_iterator &Res) const {
669   nlist_base Entry = getSymbolTableEntryBase(this, Symb);
670   uint8_t index = Entry.n_sect;
671
672   if (index == 0) {
673     Res = end_sections();
674   } else {
675     DataRefImpl DRI;
676     DRI.d.a = index - 1;
677     Res = section_iterator(SectionRef(DRI, this));
678   }
679
680   return object_error::success;
681 }
682
683 error_code MachOObjectFile::getSymbolValue(DataRefImpl Symb,
684                                            uint64_t &Val) const {
685   report_fatal_error("getSymbolValue unimplemented in MachOObjectFile");
686 }
687
688 error_code MachOObjectFile::getSectionNext(DataRefImpl Sec,
689                                            SectionRef &Res) const {
690   Sec.d.a++;
691   Res = SectionRef(Sec, this);
692   return object_error::success;
693 }
694
695 error_code
696 MachOObjectFile::getSectionName(DataRefImpl Sec, StringRef &Result) const {
697   ArrayRef<char> Raw = getSectionRawName(Sec);
698   Result = parseSegmentOrSectionName(Raw.data());
699   return object_error::success;
700 }
701
702 error_code
703 MachOObjectFile::getSectionAddress(DataRefImpl Sec, uint64_t &Res) const {
704   if (is64Bit()) {
705     MachO::section_64 Sect = getSection64(Sec);
706     Res = Sect.addr;
707   } else {
708     MachO::section Sect = getSection(Sec);
709     Res = Sect.addr;
710   }
711   return object_error::success;
712 }
713
714 error_code
715 MachOObjectFile::getSectionSize(DataRefImpl Sec, uint64_t &Res) const {
716   if (is64Bit()) {
717     MachO::section_64 Sect = getSection64(Sec);
718     Res = Sect.size;
719   } else {
720     MachO::section Sect = getSection(Sec);
721     Res = Sect.size;
722   }
723
724   return object_error::success;
725 }
726
727 error_code
728 MachOObjectFile::getSectionContents(DataRefImpl Sec, StringRef &Res) const {
729   uint32_t Offset;
730   uint64_t Size;
731
732   if (is64Bit()) {
733     MachO::section_64 Sect = getSection64(Sec);
734     Offset = Sect.offset;
735     Size = Sect.size;
736   } else {
737     MachO::section Sect = getSection(Sec);
738     Offset = Sect.offset;
739     Size = Sect.size;
740   }
741
742   Res = this->getData().substr(Offset, Size);
743   return object_error::success;
744 }
745
746 error_code
747 MachOObjectFile::getSectionAlignment(DataRefImpl Sec, uint64_t &Res) const {
748   uint32_t Align;
749   if (is64Bit()) {
750     MachO::section_64 Sect = getSection64(Sec);
751     Align = Sect.align;
752   } else {
753     MachO::section Sect = getSection(Sec);
754     Align = Sect.align;
755   }
756
757   Res = uint64_t(1) << Align;
758   return object_error::success;
759 }
760
761 error_code
762 MachOObjectFile::isSectionText(DataRefImpl Sec, bool &Res) const {
763   uint32_t Flags = getSectionFlags(this, Sec);
764   Res = Flags & MachO::S_ATTR_PURE_INSTRUCTIONS;
765   return object_error::success;
766 }
767
768 error_code MachOObjectFile::isSectionData(DataRefImpl DRI, bool &Result) const {
769   // FIXME: Unimplemented.
770   Result = false;
771   return object_error::success;
772 }
773
774 error_code MachOObjectFile::isSectionBSS(DataRefImpl DRI, bool &Result) const {
775   // FIXME: Unimplemented.
776   Result = false;
777   return object_error::success;
778 }
779
780 error_code
781 MachOObjectFile::isSectionRequiredForExecution(DataRefImpl Sec,
782                                                bool &Result) const {
783   // FIXME: Unimplemented.
784   Result = true;
785   return object_error::success;
786 }
787
788 error_code MachOObjectFile::isSectionVirtual(DataRefImpl Sec,
789                                              bool &Result) const {
790   // FIXME: Unimplemented.
791   Result = false;
792   return object_error::success;
793 }
794
795 error_code
796 MachOObjectFile::isSectionZeroInit(DataRefImpl Sec, bool &Res) const {
797   uint32_t Flags = getSectionFlags(this, Sec);
798   unsigned SectionType = Flags & MachO::SECTION_TYPE;
799   Res = SectionType == MachO::S_ZEROFILL ||
800     SectionType == MachO::S_GB_ZEROFILL;
801   return object_error::success;
802 }
803
804 error_code MachOObjectFile::isSectionReadOnlyData(DataRefImpl Sec,
805                                                   bool &Result) const {
806   // Consider using the code from isSectionText to look for __const sections.
807   // Alternately, emit S_ATTR_PURE_INSTRUCTIONS and/or S_ATTR_SOME_INSTRUCTIONS
808   // to use section attributes to distinguish code from data.
809
810   // FIXME: Unimplemented.
811   Result = false;
812   return object_error::success;
813 }
814
815 error_code
816 MachOObjectFile::sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
817                                        bool &Result) const {
818   SymbolRef::Type ST;
819   this->getSymbolType(Symb, ST);
820   if (ST == SymbolRef::ST_Unknown) {
821     Result = false;
822     return object_error::success;
823   }
824
825   uint64_t SectBegin, SectEnd;
826   getSectionAddress(Sec, SectBegin);
827   getSectionSize(Sec, SectEnd);
828   SectEnd += SectBegin;
829
830   uint64_t SymAddr;
831   getSymbolAddress(Symb, SymAddr);
832   Result = (SymAddr >= SectBegin) && (SymAddr < SectEnd);
833
834   return object_error::success;
835 }
836
837 relocation_iterator MachOObjectFile::section_rel_begin(DataRefImpl Sec) const {
838   uint32_t Offset;
839   if (is64Bit()) {
840     MachO::section_64 Sect = getSection64(Sec);
841     Offset = Sect.reloff;
842   } else {
843     MachO::section Sect = getSection(Sec);
844     Offset = Sect.reloff;
845   }
846
847   DataRefImpl Ret;
848   Ret.p = reinterpret_cast<uintptr_t>(getPtr(this, Offset));
849   return relocation_iterator(RelocationRef(Ret, this));
850 }
851
852 relocation_iterator
853 MachOObjectFile::section_rel_end(DataRefImpl Sec) const {
854   uint32_t Offset;
855   uint32_t Num;
856   if (is64Bit()) {
857     MachO::section_64 Sect = getSection64(Sec);
858     Offset = Sect.reloff;
859     Num = Sect.nreloc;
860   } else {
861     MachO::section Sect = getSection(Sec);
862     Offset = Sect.reloff;
863     Num = Sect.nreloc;
864   }
865
866   const MachO::any_relocation_info *P =
867     reinterpret_cast<const MachO::any_relocation_info *>(getPtr(this, Offset));
868
869   DataRefImpl Ret;
870   Ret.p = reinterpret_cast<uintptr_t>(P + Num);
871   return relocation_iterator(RelocationRef(Ret, this));
872 }
873
874 error_code MachOObjectFile::getRelocationNext(DataRefImpl Rel,
875                                               RelocationRef &Res) const {
876   const MachO::any_relocation_info *P =
877     reinterpret_cast<const MachO::any_relocation_info *>(Rel.p);
878   Rel.p = reinterpret_cast<uintptr_t>(P + 1);
879   Res = RelocationRef(Rel, this);
880   return object_error::success;
881 }
882
883 error_code
884 MachOObjectFile::getRelocationAddress(DataRefImpl Rel, uint64_t &Res) const {
885   report_fatal_error("getRelocationAddress not implemented in MachOObjectFile");
886 }
887
888 error_code MachOObjectFile::getRelocationOffset(DataRefImpl Rel,
889                                                 uint64_t &Res) const {
890   MachO::any_relocation_info RE = getRelocation(Rel);
891   Res = getAnyRelocationAddress(RE);
892   return object_error::success;
893 }
894
895 symbol_iterator
896 MachOObjectFile::getRelocationSymbol(DataRefImpl Rel) const {
897   MachO::any_relocation_info RE = getRelocation(Rel);
898   uint32_t SymbolIdx = getPlainRelocationSymbolNum(RE);
899   bool isExtern = getPlainRelocationExternal(RE);
900   if (!isExtern)
901     return end_symbols();
902
903   MachO::symtab_command S = getSymtabLoadCommand();
904   unsigned SymbolTableEntrySize = is64Bit() ?
905     sizeof(MachO::nlist_64) :
906     sizeof(MachO::nlist);
907   uint64_t Offset = S.symoff + SymbolIdx * SymbolTableEntrySize;
908   DataRefImpl Sym;
909   Sym.p = reinterpret_cast<uintptr_t>(getPtr(this, Offset));
910   return symbol_iterator(SymbolRef(Sym, this));
911 }
912
913 error_code MachOObjectFile::getRelocationType(DataRefImpl Rel,
914                                               uint64_t &Res) const {
915   MachO::any_relocation_info RE = getRelocation(Rel);
916   Res = getAnyRelocationType(RE);
917   return object_error::success;
918 }
919
920 error_code
921 MachOObjectFile::getRelocationTypeName(DataRefImpl Rel,
922                                        SmallVectorImpl<char> &Result) const {
923   StringRef res;
924   uint64_t RType;
925   getRelocationType(Rel, RType);
926
927   unsigned Arch = this->getArch();
928
929   switch (Arch) {
930     case Triple::x86: {
931       static const char *const Table[] =  {
932         "GENERIC_RELOC_VANILLA",
933         "GENERIC_RELOC_PAIR",
934         "GENERIC_RELOC_SECTDIFF",
935         "GENERIC_RELOC_PB_LA_PTR",
936         "GENERIC_RELOC_LOCAL_SECTDIFF",
937         "GENERIC_RELOC_TLV" };
938
939       if (RType > 6)
940         res = "Unknown";
941       else
942         res = Table[RType];
943       break;
944     }
945     case Triple::x86_64: {
946       static const char *const Table[] =  {
947         "X86_64_RELOC_UNSIGNED",
948         "X86_64_RELOC_SIGNED",
949         "X86_64_RELOC_BRANCH",
950         "X86_64_RELOC_GOT_LOAD",
951         "X86_64_RELOC_GOT",
952         "X86_64_RELOC_SUBTRACTOR",
953         "X86_64_RELOC_SIGNED_1",
954         "X86_64_RELOC_SIGNED_2",
955         "X86_64_RELOC_SIGNED_4",
956         "X86_64_RELOC_TLV" };
957
958       if (RType > 9)
959         res = "Unknown";
960       else
961         res = Table[RType];
962       break;
963     }
964     case Triple::arm: {
965       static const char *const Table[] =  {
966         "ARM_RELOC_VANILLA",
967         "ARM_RELOC_PAIR",
968         "ARM_RELOC_SECTDIFF",
969         "ARM_RELOC_LOCAL_SECTDIFF",
970         "ARM_RELOC_PB_LA_PTR",
971         "ARM_RELOC_BR24",
972         "ARM_THUMB_RELOC_BR22",
973         "ARM_THUMB_32BIT_BRANCH",
974         "ARM_RELOC_HALF",
975         "ARM_RELOC_HALF_SECTDIFF" };
976
977       if (RType > 9)
978         res = "Unknown";
979       else
980         res = Table[RType];
981       break;
982     }
983     case Triple::ppc: {
984       static const char *const Table[] =  {
985         "PPC_RELOC_VANILLA",
986         "PPC_RELOC_PAIR",
987         "PPC_RELOC_BR14",
988         "PPC_RELOC_BR24",
989         "PPC_RELOC_HI16",
990         "PPC_RELOC_LO16",
991         "PPC_RELOC_HA16",
992         "PPC_RELOC_LO14",
993         "PPC_RELOC_SECTDIFF",
994         "PPC_RELOC_PB_LA_PTR",
995         "PPC_RELOC_HI16_SECTDIFF",
996         "PPC_RELOC_LO16_SECTDIFF",
997         "PPC_RELOC_HA16_SECTDIFF",
998         "PPC_RELOC_JBSR",
999         "PPC_RELOC_LO14_SECTDIFF",
1000         "PPC_RELOC_LOCAL_SECTDIFF" };
1001
1002       res = Table[RType];
1003       break;
1004     }
1005     case Triple::UnknownArch:
1006       res = "Unknown";
1007       break;
1008   }
1009   Result.append(res.begin(), res.end());
1010   return object_error::success;
1011 }
1012
1013 error_code
1014 MachOObjectFile::getRelocationValueString(DataRefImpl Rel,
1015                                           SmallVectorImpl<char> &Result) const {
1016   MachO::any_relocation_info RE = getRelocation(Rel);
1017
1018   unsigned Arch = this->getArch();
1019
1020   std::string fmtbuf;
1021   raw_string_ostream fmt(fmtbuf);
1022   unsigned Type = this->getAnyRelocationType(RE);
1023   bool IsPCRel = this->getAnyRelocationPCRel(RE);
1024
1025   // Determine any addends that should be displayed with the relocation.
1026   // These require decoding the relocation type, which is triple-specific.
1027
1028   // X86_64 has entirely custom relocation types.
1029   if (Arch == Triple::x86_64) {
1030     bool isPCRel = getAnyRelocationPCRel(RE);
1031
1032     switch (Type) {
1033       case MachO::X86_64_RELOC_GOT_LOAD:
1034       case MachO::X86_64_RELOC_GOT: {
1035         printRelocationTargetName(this, RE, fmt);
1036         fmt << "@GOT";
1037         if (isPCRel) fmt << "PCREL";
1038         break;
1039       }
1040       case MachO::X86_64_RELOC_SUBTRACTOR: {
1041         DataRefImpl RelNext = Rel;
1042         RelNext.d.a++;
1043         MachO::any_relocation_info RENext = getRelocation(RelNext);
1044
1045         // X86_64_RELOC_SUBTRACTOR must be followed by a relocation of type
1046         // X86_64_RELOC_UNSIGNED.
1047         // NOTE: Scattered relocations don't exist on x86_64.
1048         unsigned RType = getAnyRelocationType(RENext);
1049         if (RType != MachO::X86_64_RELOC_UNSIGNED)
1050           report_fatal_error("Expected X86_64_RELOC_UNSIGNED after "
1051                              "X86_64_RELOC_SUBTRACTOR.");
1052
1053         // The X86_64_RELOC_UNSIGNED contains the minuend symbol;
1054         // X86_64_RELOC_SUBTRACTOR contains the subtrahend.
1055         printRelocationTargetName(this, RENext, fmt);
1056         fmt << "-";
1057         printRelocationTargetName(this, RE, fmt);
1058         break;
1059       }
1060       case MachO::X86_64_RELOC_TLV:
1061         printRelocationTargetName(this, RE, fmt);
1062         fmt << "@TLV";
1063         if (isPCRel) fmt << "P";
1064         break;
1065       case MachO::X86_64_RELOC_SIGNED_1:
1066         printRelocationTargetName(this, RE, fmt);
1067         fmt << "-1";
1068         break;
1069       case MachO::X86_64_RELOC_SIGNED_2:
1070         printRelocationTargetName(this, RE, fmt);
1071         fmt << "-2";
1072         break;
1073       case MachO::X86_64_RELOC_SIGNED_4:
1074         printRelocationTargetName(this, RE, fmt);
1075         fmt << "-4";
1076         break;
1077       default:
1078         printRelocationTargetName(this, RE, fmt);
1079         break;
1080     }
1081   // X86 and ARM share some relocation types in common.
1082   } else if (Arch == Triple::x86 || Arch == Triple::arm ||
1083              Arch == Triple::ppc) {
1084     // Generic relocation types...
1085     switch (Type) {
1086       case MachO::GENERIC_RELOC_PAIR: // prints no info
1087         return object_error::success;
1088       case MachO::GENERIC_RELOC_SECTDIFF: {
1089         DataRefImpl RelNext = Rel;
1090         RelNext.d.a++;
1091         MachO::any_relocation_info RENext = getRelocation(RelNext);
1092
1093         // X86 sect diff's must be followed by a relocation of type
1094         // GENERIC_RELOC_PAIR.
1095         unsigned RType = getAnyRelocationType(RENext);
1096
1097         if (RType != MachO::GENERIC_RELOC_PAIR)
1098           report_fatal_error("Expected GENERIC_RELOC_PAIR after "
1099                              "GENERIC_RELOC_SECTDIFF.");
1100
1101         printRelocationTargetName(this, RE, fmt);
1102         fmt << "-";
1103         printRelocationTargetName(this, RENext, fmt);
1104         break;
1105       }
1106     }
1107
1108     if (Arch == Triple::x86 || Arch == Triple::ppc) {
1109       switch (Type) {
1110         case MachO::GENERIC_RELOC_LOCAL_SECTDIFF: {
1111           DataRefImpl RelNext = Rel;
1112           RelNext.d.a++;
1113           MachO::any_relocation_info RENext = getRelocation(RelNext);
1114
1115           // X86 sect diff's must be followed by a relocation of type
1116           // GENERIC_RELOC_PAIR.
1117           unsigned RType = getAnyRelocationType(RENext);
1118           if (RType != MachO::GENERIC_RELOC_PAIR)
1119             report_fatal_error("Expected GENERIC_RELOC_PAIR after "
1120                                "GENERIC_RELOC_LOCAL_SECTDIFF.");
1121
1122           printRelocationTargetName(this, RE, fmt);
1123           fmt << "-";
1124           printRelocationTargetName(this, RENext, fmt);
1125           break;
1126         }
1127         case MachO::GENERIC_RELOC_TLV: {
1128           printRelocationTargetName(this, RE, fmt);
1129           fmt << "@TLV";
1130           if (IsPCRel) fmt << "P";
1131           break;
1132         }
1133         default:
1134           printRelocationTargetName(this, RE, fmt);
1135       }
1136     } else { // ARM-specific relocations
1137       switch (Type) {
1138         case MachO::ARM_RELOC_HALF:
1139         case MachO::ARM_RELOC_HALF_SECTDIFF: {
1140           // Half relocations steal a bit from the length field to encode
1141           // whether this is an upper16 or a lower16 relocation.
1142           bool isUpper = getAnyRelocationLength(RE) >> 1;
1143
1144           if (isUpper)
1145             fmt << ":upper16:(";
1146           else
1147             fmt << ":lower16:(";
1148           printRelocationTargetName(this, RE, fmt);
1149
1150           DataRefImpl RelNext = Rel;
1151           RelNext.d.a++;
1152           MachO::any_relocation_info RENext = getRelocation(RelNext);
1153
1154           // ARM half relocs must be followed by a relocation of type
1155           // ARM_RELOC_PAIR.
1156           unsigned RType = getAnyRelocationType(RENext);
1157           if (RType != MachO::ARM_RELOC_PAIR)
1158             report_fatal_error("Expected ARM_RELOC_PAIR after "
1159                                "ARM_RELOC_HALF");
1160
1161           // NOTE: The half of the target virtual address is stashed in the
1162           // address field of the secondary relocation, but we can't reverse
1163           // engineer the constant offset from it without decoding the movw/movt
1164           // instruction to find the other half in its immediate field.
1165
1166           // ARM_RELOC_HALF_SECTDIFF encodes the second section in the
1167           // symbol/section pointer of the follow-on relocation.
1168           if (Type == MachO::ARM_RELOC_HALF_SECTDIFF) {
1169             fmt << "-";
1170             printRelocationTargetName(this, RENext, fmt);
1171           }
1172
1173           fmt << ")";
1174           break;
1175         }
1176         default: {
1177           printRelocationTargetName(this, RE, fmt);
1178         }
1179       }
1180     }
1181   } else
1182     printRelocationTargetName(this, RE, fmt);
1183
1184   fmt.flush();
1185   Result.append(fmtbuf.begin(), fmtbuf.end());
1186   return object_error::success;
1187 }
1188
1189 error_code
1190 MachOObjectFile::getRelocationHidden(DataRefImpl Rel, bool &Result) const {
1191   unsigned Arch = getArch();
1192   uint64_t Type;
1193   getRelocationType(Rel, Type);
1194
1195   Result = false;
1196
1197   // On arches that use the generic relocations, GENERIC_RELOC_PAIR
1198   // is always hidden.
1199   if (Arch == Triple::x86 || Arch == Triple::arm || Arch == Triple::ppc) {
1200     if (Type == MachO::GENERIC_RELOC_PAIR) Result = true;
1201   } else if (Arch == Triple::x86_64) {
1202     // On x86_64, X86_64_RELOC_UNSIGNED is hidden only when it follows
1203     // an X86_64_RELOC_SUBTRACTOR.
1204     if (Type == MachO::X86_64_RELOC_UNSIGNED && Rel.d.a > 0) {
1205       DataRefImpl RelPrev = Rel;
1206       RelPrev.d.a--;
1207       uint64_t PrevType;
1208       getRelocationType(RelPrev, PrevType);
1209       if (PrevType == MachO::X86_64_RELOC_SUBTRACTOR)
1210         Result = true;
1211     }
1212   }
1213
1214   return object_error::success;
1215 }
1216
1217 error_code MachOObjectFile::getLibraryNext(DataRefImpl LibData,
1218                                            LibraryRef &Res) const {
1219   report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
1220 }
1221
1222 error_code MachOObjectFile::getLibraryPath(DataRefImpl LibData,
1223                                            StringRef &Res) const {
1224   report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
1225 }
1226
1227 symbol_iterator MachOObjectFile::begin_symbols() const {
1228   DataRefImpl DRI;
1229   if (!SymtabLoadCmd)
1230     return symbol_iterator(SymbolRef(DRI, this));
1231
1232   MachO::symtab_command Symtab = getSymtabLoadCommand();
1233   DRI.p = reinterpret_cast<uintptr_t>(getPtr(this, Symtab.symoff));
1234   return symbol_iterator(SymbolRef(DRI, this));
1235 }
1236
1237 symbol_iterator MachOObjectFile::end_symbols() const {
1238   DataRefImpl DRI;
1239   if (!SymtabLoadCmd)
1240     return symbol_iterator(SymbolRef(DRI, this));
1241
1242   MachO::symtab_command Symtab = getSymtabLoadCommand();
1243   unsigned SymbolTableEntrySize = is64Bit() ?
1244     sizeof(MachO::nlist_64) :
1245     sizeof(MachO::nlist);
1246   unsigned Offset = Symtab.symoff +
1247     Symtab.nsyms * SymbolTableEntrySize;
1248   DRI.p = reinterpret_cast<uintptr_t>(getPtr(this, Offset));
1249   return symbol_iterator(SymbolRef(DRI, this));
1250 }
1251
1252 symbol_iterator MachOObjectFile::begin_dynamic_symbols() const {
1253   // TODO: implement
1254   report_fatal_error("Dynamic symbols unimplemented in MachOObjectFile");
1255 }
1256
1257 symbol_iterator MachOObjectFile::end_dynamic_symbols() const {
1258   // TODO: implement
1259   report_fatal_error("Dynamic symbols unimplemented in MachOObjectFile");
1260 }
1261
1262 section_iterator MachOObjectFile::begin_sections() const {
1263   DataRefImpl DRI;
1264   return section_iterator(SectionRef(DRI, this));
1265 }
1266
1267 section_iterator MachOObjectFile::end_sections() const {
1268   DataRefImpl DRI;
1269   DRI.d.a = Sections.size();
1270   return section_iterator(SectionRef(DRI, this));
1271 }
1272
1273 library_iterator MachOObjectFile::begin_libraries_needed() const {
1274   // TODO: implement
1275   report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
1276 }
1277
1278 library_iterator MachOObjectFile::end_libraries_needed() const {
1279   // TODO: implement
1280   report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
1281 }
1282
1283 uint8_t MachOObjectFile::getBytesInAddress() const {
1284   return is64Bit() ? 8 : 4;
1285 }
1286
1287 StringRef MachOObjectFile::getFileFormatName() const {
1288   unsigned CPUType = getCPUType(this);
1289   if (!is64Bit()) {
1290     switch (CPUType) {
1291     case llvm::MachO::CPU_TYPE_I386:
1292       return "Mach-O 32-bit i386";
1293     case llvm::MachO::CPU_TYPE_ARM:
1294       return "Mach-O arm";
1295     case llvm::MachO::CPU_TYPE_POWERPC:
1296       return "Mach-O 32-bit ppc";
1297     default:
1298       assert((CPUType & llvm::MachO::CPU_ARCH_ABI64) == 0 &&
1299              "64-bit object file when we're not 64-bit?");
1300       return "Mach-O 32-bit unknown";
1301     }
1302   }
1303
1304   // Make sure the cpu type has the correct mask.
1305   assert((CPUType & llvm::MachO::CPU_ARCH_ABI64)
1306          == llvm::MachO::CPU_ARCH_ABI64 &&
1307          "32-bit object file when we're 64-bit?");
1308
1309   switch (CPUType) {
1310   case llvm::MachO::CPU_TYPE_X86_64:
1311     return "Mach-O 64-bit x86-64";
1312   case llvm::MachO::CPU_TYPE_POWERPC64:
1313     return "Mach-O 64-bit ppc64";
1314   default:
1315     return "Mach-O 64-bit unknown";
1316   }
1317 }
1318
1319 Triple::ArchType MachOObjectFile::getArch(uint32_t CPUType) {
1320   switch (CPUType) {
1321   case llvm::MachO::CPU_TYPE_I386:
1322     return Triple::x86;
1323   case llvm::MachO::CPU_TYPE_X86_64:
1324     return Triple::x86_64;
1325   case llvm::MachO::CPU_TYPE_ARM:
1326     return Triple::arm;
1327   case llvm::MachO::CPU_TYPE_POWERPC:
1328     return Triple::ppc;
1329   case llvm::MachO::CPU_TYPE_POWERPC64:
1330     return Triple::ppc64;
1331   default:
1332     return Triple::UnknownArch;
1333   }
1334 }
1335
1336 unsigned MachOObjectFile::getArch() const {
1337   return getArch(getCPUType(this));
1338 }
1339
1340 StringRef MachOObjectFile::getLoadName() const {
1341   // TODO: Implement
1342   report_fatal_error("get_load_name() unimplemented in MachOObjectFile");
1343 }
1344
1345 relocation_iterator MachOObjectFile::section_rel_begin(unsigned Index) const {
1346   DataRefImpl DRI;
1347   DRI.d.a = Index;
1348   return section_rel_begin(DRI);
1349 }
1350
1351 relocation_iterator MachOObjectFile::section_rel_end(unsigned Index) const {
1352   DataRefImpl DRI;
1353   DRI.d.a = Index;
1354   return section_rel_end(DRI);
1355 }
1356
1357 dice_iterator MachOObjectFile::begin_dices() const {
1358   DataRefImpl DRI;
1359   if (!DataInCodeLoadCmd)
1360     return dice_iterator(DiceRef(DRI, this));
1361
1362   MachO::linkedit_data_command DicLC = getDataInCodeLoadCommand();
1363   DRI.p = reinterpret_cast<uintptr_t>(getPtr(this, DicLC.dataoff));
1364   return dice_iterator(DiceRef(DRI, this));
1365 }
1366
1367 dice_iterator MachOObjectFile::end_dices() const {
1368   DataRefImpl DRI;
1369   if (!DataInCodeLoadCmd)
1370     return dice_iterator(DiceRef(DRI, this));
1371
1372   MachO::linkedit_data_command DicLC = getDataInCodeLoadCommand();
1373   unsigned Offset = DicLC.dataoff + DicLC.datasize;
1374   DRI.p = reinterpret_cast<uintptr_t>(getPtr(this, Offset));
1375   return dice_iterator(DiceRef(DRI, this));
1376 }
1377
1378 StringRef
1379 MachOObjectFile::getSectionFinalSegmentName(DataRefImpl Sec) const {
1380   ArrayRef<char> Raw = getSectionRawFinalSegmentName(Sec);
1381   return parseSegmentOrSectionName(Raw.data());
1382 }
1383
1384 ArrayRef<char>
1385 MachOObjectFile::getSectionRawName(DataRefImpl Sec) const {
1386   const section_base *Base =
1387     reinterpret_cast<const section_base *>(Sections[Sec.d.a]);
1388   return ArrayRef<char>(Base->sectname);
1389 }
1390
1391 ArrayRef<char>
1392 MachOObjectFile::getSectionRawFinalSegmentName(DataRefImpl Sec) const {
1393   const section_base *Base =
1394     reinterpret_cast<const section_base *>(Sections[Sec.d.a]);
1395   return ArrayRef<char>(Base->segname);
1396 }
1397
1398 bool
1399 MachOObjectFile::isRelocationScattered(const MachO::any_relocation_info &RE)
1400   const {
1401   if (getCPUType(this) == MachO::CPU_TYPE_X86_64)
1402     return false;
1403   return getPlainRelocationAddress(RE) & MachO::R_SCATTERED;
1404 }
1405
1406 unsigned MachOObjectFile::getPlainRelocationSymbolNum(
1407     const MachO::any_relocation_info &RE) const {
1408   if (isLittleEndian())
1409     return RE.r_word1 & 0xffffff;
1410   return RE.r_word1 >> 8;
1411 }
1412
1413 bool MachOObjectFile::getPlainRelocationExternal(
1414     const MachO::any_relocation_info &RE) const {
1415   if (isLittleEndian())
1416     return (RE.r_word1 >> 27) & 1;
1417   return (RE.r_word1 >> 4) & 1;
1418 }
1419
1420 bool MachOObjectFile::getScatteredRelocationScattered(
1421     const MachO::any_relocation_info &RE) const {
1422   return RE.r_word0 >> 31;
1423 }
1424
1425 uint32_t MachOObjectFile::getScatteredRelocationValue(
1426     const MachO::any_relocation_info &RE) const {
1427   return RE.r_word1;
1428 }
1429
1430 unsigned MachOObjectFile::getAnyRelocationAddress(
1431     const MachO::any_relocation_info &RE) const {
1432   if (isRelocationScattered(RE))
1433     return getScatteredRelocationAddress(RE);
1434   return getPlainRelocationAddress(RE);
1435 }
1436
1437 unsigned MachOObjectFile::getAnyRelocationPCRel(
1438     const MachO::any_relocation_info &RE) const {
1439   if (isRelocationScattered(RE))
1440     return getScatteredRelocationPCRel(this, RE);
1441   return getPlainRelocationPCRel(this, RE);
1442 }
1443
1444 unsigned MachOObjectFile::getAnyRelocationLength(
1445     const MachO::any_relocation_info &RE) const {
1446   if (isRelocationScattered(RE))
1447     return getScatteredRelocationLength(RE);
1448   return getPlainRelocationLength(this, RE);
1449 }
1450
1451 unsigned
1452 MachOObjectFile::getAnyRelocationType(
1453                                    const MachO::any_relocation_info &RE) const {
1454   if (isRelocationScattered(RE))
1455     return getScatteredRelocationType(RE);
1456   return getPlainRelocationType(this, RE);
1457 }
1458
1459 SectionRef
1460 MachOObjectFile::getRelocationSection(
1461                                    const MachO::any_relocation_info &RE) const {
1462   if (isRelocationScattered(RE) || getPlainRelocationExternal(RE))
1463     return *end_sections();
1464   unsigned SecNum = getPlainRelocationSymbolNum(RE) - 1;
1465   DataRefImpl DRI;
1466   DRI.d.a = SecNum;
1467   return SectionRef(DRI, this);
1468 }
1469
1470 MachOObjectFile::LoadCommandInfo
1471 MachOObjectFile::getFirstLoadCommandInfo() const {
1472   MachOObjectFile::LoadCommandInfo Load;
1473
1474   unsigned HeaderSize = is64Bit() ? sizeof(MachO::mach_header_64) :
1475                                     sizeof(MachO::mach_header);
1476   Load.Ptr = getPtr(this, HeaderSize);
1477   Load.C = getStruct<MachO::load_command>(this, Load.Ptr);
1478   return Load;
1479 }
1480
1481 MachOObjectFile::LoadCommandInfo
1482 MachOObjectFile::getNextLoadCommandInfo(const LoadCommandInfo &L) const {
1483   MachOObjectFile::LoadCommandInfo Next;
1484   Next.Ptr = L.Ptr + L.C.cmdsize;
1485   Next.C = getStruct<MachO::load_command>(this, Next.Ptr);
1486   return Next;
1487 }
1488
1489 MachO::section MachOObjectFile::getSection(DataRefImpl DRI) const {
1490   return getStruct<MachO::section>(this, Sections[DRI.d.a]);
1491 }
1492
1493 MachO::section_64 MachOObjectFile::getSection64(DataRefImpl DRI) const {
1494   return getStruct<MachO::section_64>(this, Sections[DRI.d.a]);
1495 }
1496
1497 MachO::section MachOObjectFile::getSection(const LoadCommandInfo &L,
1498                                            unsigned Index) const {
1499   const char *Sec = getSectionPtr(this, L, Index);
1500   return getStruct<MachO::section>(this, Sec);
1501 }
1502
1503 MachO::section_64 MachOObjectFile::getSection64(const LoadCommandInfo &L,
1504                                                 unsigned Index) const {
1505   const char *Sec = getSectionPtr(this, L, Index);
1506   return getStruct<MachO::section_64>(this, Sec);
1507 }
1508
1509 MachO::nlist
1510 MachOObjectFile::getSymbolTableEntry(DataRefImpl DRI) const {
1511   const char *P = reinterpret_cast<const char *>(DRI.p);
1512   return getStruct<MachO::nlist>(this, P);
1513 }
1514
1515 MachO::nlist_64
1516 MachOObjectFile::getSymbol64TableEntry(DataRefImpl DRI) const {
1517   const char *P = reinterpret_cast<const char *>(DRI.p);
1518   return getStruct<MachO::nlist_64>(this, P);
1519 }
1520
1521 MachO::linkedit_data_command
1522 MachOObjectFile::getLinkeditDataLoadCommand(const LoadCommandInfo &L) const {
1523   return getStruct<MachO::linkedit_data_command>(this, L.Ptr);
1524 }
1525
1526 MachO::segment_command
1527 MachOObjectFile::getSegmentLoadCommand(const LoadCommandInfo &L) const {
1528   return getStruct<MachO::segment_command>(this, L.Ptr);
1529 }
1530
1531 MachO::segment_command_64
1532 MachOObjectFile::getSegment64LoadCommand(const LoadCommandInfo &L) const {
1533   return getStruct<MachO::segment_command_64>(this, L.Ptr);
1534 }
1535
1536 MachO::linker_options_command
1537 MachOObjectFile::getLinkerOptionsLoadCommand(const LoadCommandInfo &L) const {
1538   return getStruct<MachO::linker_options_command>(this, L.Ptr);
1539 }
1540
1541 MachO::any_relocation_info
1542 MachOObjectFile::getRelocation(DataRefImpl Rel) const {
1543   const char *P = reinterpret_cast<const char *>(Rel.p);
1544   return getStruct<MachO::any_relocation_info>(this, P);
1545 }
1546
1547 MachO::data_in_code_entry
1548 MachOObjectFile::getDice(DataRefImpl Rel) const {
1549   const char *P = reinterpret_cast<const char *>(Rel.p);
1550   return getStruct<MachO::data_in_code_entry>(this, P);
1551 }
1552
1553 MachO::mach_header MachOObjectFile::getHeader() const {
1554   return getStruct<MachO::mach_header>(this, getPtr(this, 0));
1555 }
1556
1557 MachO::mach_header_64 MachOObjectFile::getHeader64() const {
1558   return getStruct<MachO::mach_header_64>(this, getPtr(this, 0));
1559 }
1560
1561 uint32_t MachOObjectFile::getIndirectSymbolTableEntry(
1562                                              const MachO::dysymtab_command &DLC,
1563                                              unsigned Index) const {
1564   uint64_t Offset = DLC.indirectsymoff + Index * sizeof(uint32_t);
1565   return getStruct<uint32_t>(this, getPtr(this, Offset));
1566 }
1567
1568 MachO::data_in_code_entry
1569 MachOObjectFile::getDataInCodeTableEntry(uint32_t DataOffset,
1570                                          unsigned Index) const {
1571   uint64_t Offset = DataOffset + Index * sizeof(MachO::data_in_code_entry);
1572   return getStruct<MachO::data_in_code_entry>(this, getPtr(this, Offset));
1573 }
1574
1575 MachO::symtab_command MachOObjectFile::getSymtabLoadCommand() const {
1576   return getStruct<MachO::symtab_command>(this, SymtabLoadCmd);
1577 }
1578
1579 MachO::dysymtab_command MachOObjectFile::getDysymtabLoadCommand() const {
1580   return getStruct<MachO::dysymtab_command>(this, DysymtabLoadCmd);
1581 }
1582
1583 MachO::linkedit_data_command
1584 MachOObjectFile::getDataInCodeLoadCommand() const {
1585   if (DataInCodeLoadCmd)
1586     return getStruct<MachO::linkedit_data_command>(this, DataInCodeLoadCmd);
1587
1588   // If there is no DataInCodeLoadCmd return a load command with zero'ed fields.
1589   MachO::linkedit_data_command Cmd;
1590   Cmd.cmd = MachO::LC_DATA_IN_CODE;
1591   Cmd.cmdsize = sizeof(MachO::linkedit_data_command);
1592   Cmd.dataoff = 0;
1593   Cmd.datasize = 0;
1594   return Cmd;
1595 }
1596
1597 StringRef MachOObjectFile::getStringTableData() const {
1598   MachO::symtab_command S = getSymtabLoadCommand();
1599   return getData().substr(S.stroff, S.strsize);
1600 }
1601
1602 bool MachOObjectFile::is64Bit() const {
1603   return getType() == getMachOType(false, true) ||
1604     getType() == getMachOType(true, true);
1605 }
1606
1607 void MachOObjectFile::ReadULEB128s(uint64_t Index,
1608                                    SmallVectorImpl<uint64_t> &Out) const {
1609   DataExtractor extractor(ObjectFile::getData(), true, 0);
1610
1611   uint32_t offset = Index;
1612   uint64_t data = 0;
1613   while (uint64_t delta = extractor.getULEB128(&offset)) {
1614     data += delta;
1615     Out.push_back(data);
1616   }
1617 }
1618
1619 ObjectFile *ObjectFile::createMachOObjectFile(MemoryBuffer *Buffer) {
1620   StringRef Magic = Buffer->getBuffer().slice(0, 4);
1621   error_code ec;
1622   OwningPtr<ObjectFile> Ret;
1623   if (Magic == "\xFE\xED\xFA\xCE")
1624     Ret.reset(new MachOObjectFile(Buffer, false, false, ec));
1625   else if (Magic == "\xCE\xFA\xED\xFE")
1626     Ret.reset(new MachOObjectFile(Buffer, true, false, ec));
1627   else if (Magic == "\xFE\xED\xFA\xCF")
1628     Ret.reset(new MachOObjectFile(Buffer, false, true, ec));
1629   else if (Magic == "\xCF\xFA\xED\xFE")
1630     Ret.reset(new MachOObjectFile(Buffer, true, true, ec));
1631   else {
1632     delete Buffer;
1633     return NULL;
1634   }
1635
1636   if (ec)
1637     return NULL;
1638   return Ret.take();
1639 }
1640
1641 } // end namespace object
1642 } // end namespace llvm