Change how symbol sizes are handled in lib/Object.
[oota-llvm.git] / include / llvm / Object / ELFObjectFile.h
1 //===- ELFObjectFile.h - ELF object file implementation ---------*- 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 declares the ELFObjectFile template class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_OBJECT_ELFOBJECTFILE_H
15 #define LLVM_OBJECT_ELFOBJECTFILE_H
16
17 #include "llvm/ADT/DenseMap.h"
18 #include "llvm/ADT/PointerIntPair.h"
19 #include "llvm/ADT/SmallVector.h"
20 #include "llvm/ADT/StringSwitch.h"
21 #include "llvm/ADT/Triple.h"
22 #include "llvm/Object/ELF.h"
23 #include "llvm/Object/ObjectFile.h"
24 #include "llvm/Support/Casting.h"
25 #include "llvm/Support/ELF.h"
26 #include "llvm/Support/Endian.h"
27 #include "llvm/Support/ErrorHandling.h"
28 #include "llvm/Support/MemoryBuffer.h"
29 #include "llvm/Support/raw_ostream.h"
30 #include <algorithm>
31 #include <cctype>
32 #include <limits>
33 #include <utility>
34
35 namespace llvm {
36 namespace object {
37
38 class ELFObjectFileBase : public ObjectFile {
39 protected:
40   ELFObjectFileBase(unsigned int Type, MemoryBufferRef Source);
41
42 public:
43   virtual ErrorOr<int64_t> getRelocationAddend(DataRefImpl Rel) const = 0;
44
45   // FIXME: This is a bit of a hack. Every caller should know if it expecting
46   // and addend or not.
47   virtual bool hasRelocationAddend(DataRefImpl Rel) const = 0;
48
49   virtual std::pair<symbol_iterator, symbol_iterator>
50   getELFDynamicSymbolIterators() const = 0;
51
52   virtual uint64_t getSectionFlags(SectionRef Sec) const = 0;
53   virtual uint32_t getSectionType(SectionRef Sec) const = 0;
54
55   virtual uint64_t getSymbolSize(SymbolRef Symb) const = 0;
56
57   static inline bool classof(const Binary *v) { return v->isELF(); }
58 };
59
60 template <class ELFT> class ELFObjectFile : public ELFObjectFileBase {
61 public:
62   LLVM_ELF_IMPORT_TYPES_ELFT(ELFT)
63
64   typedef typename ELFFile<ELFT>::uintX_t uintX_t;
65
66   typedef typename ELFFile<ELFT>::Elf_Sym Elf_Sym;
67   typedef typename ELFFile<ELFT>::Elf_Shdr Elf_Shdr;
68   typedef typename ELFFile<ELFT>::Elf_Ehdr Elf_Ehdr;
69   typedef typename ELFFile<ELFT>::Elf_Rel Elf_Rel;
70   typedef typename ELFFile<ELFT>::Elf_Rela Elf_Rela;
71   typedef typename ELFFile<ELFT>::Elf_Dyn Elf_Dyn;
72
73   typedef typename ELFFile<ELFT>::Elf_Sym_Iter Elf_Sym_Iter;
74   typedef typename ELFFile<ELFT>::Elf_Shdr_Iter Elf_Shdr_Iter;
75   typedef typename ELFFile<ELFT>::Elf_Dyn_Iter Elf_Dyn_Iter;
76
77   uint64_t getSymbolSize(SymbolRef Symb) const override;
78
79 protected:
80   ELFFile<ELFT> EF;
81
82   void moveSymbolNext(DataRefImpl &Symb) const override;
83   std::error_code getSymbolName(DataRefImpl Symb,
84                                 StringRef &Res) const override;
85   std::error_code getSymbolAddress(DataRefImpl Symb,
86                                    uint64_t &Res) const override;
87   uint32_t getSymbolAlignment(DataRefImpl Symb) const override;
88   uint64_t getCommonSymbolSizeImpl(DataRefImpl Symb) const override;
89   uint32_t getSymbolFlags(DataRefImpl Symb) const override;
90   std::error_code getSymbolOther(DataRefImpl Symb, uint8_t &Res) const override;
91   std::error_code getSymbolType(DataRefImpl Symb,
92                                 SymbolRef::Type &Res) const override;
93   section_iterator getSymbolSection(const Elf_Sym *Symb) const;
94   std::error_code getSymbolSection(DataRefImpl Symb,
95                                    section_iterator &Res) const override;
96
97   void moveSectionNext(DataRefImpl &Sec) const override;
98   std::error_code getSectionName(DataRefImpl Sec,
99                                  StringRef &Res) const override;
100   uint64_t getSectionAddress(DataRefImpl Sec) const override;
101   uint64_t getSectionSize(DataRefImpl Sec) const override;
102   std::error_code getSectionContents(DataRefImpl Sec,
103                                      StringRef &Res) const override;
104   uint64_t getSectionAlignment(DataRefImpl Sec) const override;
105   bool isSectionText(DataRefImpl Sec) const override;
106   bool isSectionData(DataRefImpl Sec) const override;
107   bool isSectionBSS(DataRefImpl Sec) const override;
108   bool isSectionVirtual(DataRefImpl Sec) const override;
109   bool sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb) const override;
110   relocation_iterator section_rel_begin(DataRefImpl Sec) const override;
111   relocation_iterator section_rel_end(DataRefImpl Sec) const override;
112   section_iterator getRelocatedSection(DataRefImpl Sec) const override;
113
114   void moveRelocationNext(DataRefImpl &Rel) const override;
115   std::error_code getRelocationAddress(DataRefImpl Rel,
116                                        uint64_t &Res) const override;
117   std::error_code getRelocationOffset(DataRefImpl Rel,
118                                       uint64_t &Res) const override;
119   symbol_iterator getRelocationSymbol(DataRefImpl Rel) const override;
120   std::error_code getRelocationType(DataRefImpl Rel,
121                                     uint64_t &Res) const override;
122   std::error_code
123   getRelocationTypeName(DataRefImpl Rel,
124                         SmallVectorImpl<char> &Result) const override;
125
126   uint64_t getROffset(DataRefImpl Rel) const;
127   StringRef getRelocationTypeName(uint32_t Type) const;
128
129   /// \brief Get the relocation section that contains \a Rel.
130   const Elf_Shdr *getRelSection(DataRefImpl Rel) const {
131     return EF.getSection(Rel.d.a);
132   }
133
134   const Elf_Rel *getRel(DataRefImpl Rel) const;
135   const Elf_Rela *getRela(DataRefImpl Rela) const;
136
137   Elf_Sym_Iter toELFSymIter(DataRefImpl Symb) const {
138     bool IsDynamic = Symb.p & 1;
139     if (IsDynamic)
140       return Elf_Sym_Iter(
141           EF.begin_dynamic_symbols().getEntSize(),
142           reinterpret_cast<const char *>(Symb.p & ~uintptr_t(1)), IsDynamic);
143     return Elf_Sym_Iter(EF.begin_symbols().getEntSize(),
144                         reinterpret_cast<const char *>(Symb.p), IsDynamic);
145   }
146
147   DataRefImpl toDRI(Elf_Sym_Iter Symb) const {
148     DataRefImpl DRI;
149     DRI.p = reinterpret_cast<uintptr_t>(Symb.get()) |
150       static_cast<uintptr_t>(Symb.isDynamic());
151     return DRI;
152   }
153
154   Elf_Shdr_Iter toELFShdrIter(DataRefImpl Sec) const {
155     return Elf_Shdr_Iter(EF.getHeader()->e_shentsize,
156                          reinterpret_cast<const char *>(Sec.p));
157   }
158
159   DataRefImpl toDRI(Elf_Shdr_Iter Sec) const {
160     DataRefImpl DRI;
161     DRI.p = reinterpret_cast<uintptr_t>(Sec.get());
162     return DRI;
163   }
164
165   DataRefImpl toDRI(const Elf_Shdr *Sec) const {
166     DataRefImpl DRI;
167     DRI.p = reinterpret_cast<uintptr_t>(Sec);
168     return DRI;
169   }
170
171   Elf_Dyn_Iter toELFDynIter(DataRefImpl Dyn) const {
172     return Elf_Dyn_Iter(EF.begin_dynamic_table().getEntSize(),
173                         reinterpret_cast<const char *>(Dyn.p));
174   }
175
176   DataRefImpl toDRI(Elf_Dyn_Iter Dyn) const {
177     DataRefImpl DRI;
178     DRI.p = reinterpret_cast<uintptr_t>(Dyn.get());
179     return DRI;
180   }
181
182   bool isExportedToOtherDSO(const Elf_Sym *ESym) const {
183     unsigned char Binding = ESym->getBinding();
184     unsigned char Visibility = ESym->getVisibility();
185
186     // A symbol is exported if its binding is either GLOBAL or WEAK, and its
187     // visibility is either DEFAULT or PROTECTED. All other symbols are not
188     // exported.
189     if ((Binding == ELF::STB_GLOBAL || Binding == ELF::STB_WEAK) &&
190         (Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_PROTECTED))
191       return true;
192
193     return false;
194   }
195
196   // This flag is used for classof, to distinguish ELFObjectFile from
197   // its subclass. If more subclasses will be created, this flag will
198   // have to become an enum.
199   bool isDyldELFObject;
200
201 public:
202   ELFObjectFile(MemoryBufferRef Object, std::error_code &EC);
203
204   const Elf_Sym *getSymbol(DataRefImpl Symb) const;
205
206   basic_symbol_iterator symbol_begin_impl() const override;
207   basic_symbol_iterator symbol_end_impl() const override;
208
209   symbol_iterator dynamic_symbol_begin() const;
210   symbol_iterator dynamic_symbol_end() const;
211
212   section_iterator section_begin() const override;
213   section_iterator section_end() const override;
214
215   ErrorOr<int64_t> getRelocationAddend(DataRefImpl Rel) const override;
216   bool hasRelocationAddend(DataRefImpl Rel) const override;
217
218   uint64_t getSectionFlags(SectionRef Sec) const override;
219   uint32_t getSectionType(SectionRef Sec) const override;
220
221   uint8_t getBytesInAddress() const override;
222   StringRef getFileFormatName() const override;
223   unsigned getArch() const override;
224   StringRef getLoadName() const;
225
226   std::error_code getPlatformFlags(unsigned &Result) const override {
227     Result = EF.getHeader()->e_flags;
228     return std::error_code();
229   }
230
231   const ELFFile<ELFT> *getELFFile() const { return &EF; }
232
233   bool isDyldType() const { return isDyldELFObject; }
234   static inline bool classof(const Binary *v) {
235     return v->getType() == getELFType(ELFT::TargetEndianness == support::little,
236                                       ELFT::Is64Bits);
237   }
238
239   std::pair<symbol_iterator, symbol_iterator>
240   getELFDynamicSymbolIterators() const override;
241
242   bool isRelocatableObject() const override;
243 };
244
245 typedef ELFObjectFile<ELFType<support::little, false>> ELF32LEObjectFile;
246 typedef ELFObjectFile<ELFType<support::little, true>> ELF64LEObjectFile;
247 typedef ELFObjectFile<ELFType<support::big, false>> ELF32BEObjectFile;
248 typedef ELFObjectFile<ELFType<support::big, true>> ELF64BEObjectFile;
249
250 template <class ELFT>
251 void ELFObjectFile<ELFT>::moveSymbolNext(DataRefImpl &Symb) const {
252   Symb = toDRI(++toELFSymIter(Symb));
253 }
254
255 template <class ELFT>
256 std::error_code ELFObjectFile<ELFT>::getSymbolName(DataRefImpl Symb,
257                                                    StringRef &Result) const {
258   ErrorOr<StringRef> Name = EF.getSymbolName(toELFSymIter(Symb));
259   if (!Name)
260     return Name.getError();
261   Result = *Name;
262   return std::error_code();
263 }
264
265 template <class ELFT>
266 uint64_t ELFObjectFile<ELFT>::getSectionFlags(SectionRef Sec) const {
267   DataRefImpl DRI = Sec.getRawDataRefImpl();
268   return toELFShdrIter(DRI)->sh_flags;
269 }
270
271 template <class ELFT>
272 uint32_t ELFObjectFile<ELFT>::getSectionType(SectionRef Sec) const {
273   DataRefImpl DRI = Sec.getRawDataRefImpl();
274   return toELFShdrIter(DRI)->sh_type;
275 }
276
277 template <class ELFT>
278 std::error_code ELFObjectFile<ELFT>::getSymbolAddress(DataRefImpl Symb,
279                                                       uint64_t &Result) const {
280   const Elf_Sym *ESym = getSymbol(Symb);
281   switch (EF.getSymbolTableIndex(ESym)) {
282   case ELF::SHN_COMMON:
283   case ELF::SHN_UNDEF:
284     Result = UnknownAddress;
285     return std::error_code();
286   case ELF::SHN_ABS:
287     Result = ESym->st_value;
288     return std::error_code();
289   default:
290     break;
291   }
292
293   const Elf_Ehdr *Header = EF.getHeader();
294   Result = ESym->st_value;
295
296   // Clear the ARM/Thumb or microMIPS indicator flag.
297   if ((Header->e_machine == ELF::EM_ARM || Header->e_machine == ELF::EM_MIPS) &&
298       ESym->getType() == ELF::STT_FUNC)
299     Result &= ~1;
300
301   if (Header->e_type == ELF::ET_REL) {
302     const typename ELFFile<ELFT>::Elf_Shdr * Section = EF.getSection(ESym);
303     if (Section != nullptr)
304       Result += Section->sh_addr;
305   }
306
307   return std::error_code();
308 }
309
310 template <class ELFT>
311 uint32_t ELFObjectFile<ELFT>::getSymbolAlignment(DataRefImpl Symb) const {
312   Elf_Sym_Iter Sym = toELFSymIter(Symb);
313   if (Sym->st_shndx == ELF::SHN_COMMON)
314     return Sym->st_value;
315   return 0;
316 }
317
318 template <class ELFT>
319 uint64_t ELFObjectFile<ELFT>::getSymbolSize(SymbolRef Symb) const {
320   return toELFSymIter(Symb.getRawDataRefImpl())->st_size;
321 }
322
323 template <class ELFT>
324 uint64_t ELFObjectFile<ELFT>::getCommonSymbolSizeImpl(DataRefImpl Symb) const {
325   return toELFSymIter(Symb)->st_size;
326 }
327
328 template <class ELFT>
329 std::error_code ELFObjectFile<ELFT>::getSymbolOther(DataRefImpl Symb,
330                                                     uint8_t &Result) const {
331   Result = toELFSymIter(Symb)->st_other;
332   return std::error_code();
333 }
334
335 template <class ELFT>
336 std::error_code
337 ELFObjectFile<ELFT>::getSymbolType(DataRefImpl Symb,
338                                    SymbolRef::Type &Result) const {
339   const Elf_Sym *ESym = getSymbol(Symb);
340
341   switch (ESym->getType()) {
342   case ELF::STT_NOTYPE:
343     Result = SymbolRef::ST_Unknown;
344     break;
345   case ELF::STT_SECTION:
346     Result = SymbolRef::ST_Debug;
347     break;
348   case ELF::STT_FILE:
349     Result = SymbolRef::ST_File;
350     break;
351   case ELF::STT_FUNC:
352     Result = SymbolRef::ST_Function;
353     break;
354   case ELF::STT_OBJECT:
355   case ELF::STT_COMMON:
356   case ELF::STT_TLS:
357     Result = SymbolRef::ST_Data;
358     break;
359   default:
360     Result = SymbolRef::ST_Other;
361     break;
362   }
363   return std::error_code();
364 }
365
366 template <class ELFT>
367 uint32_t ELFObjectFile<ELFT>::getSymbolFlags(DataRefImpl Symb) const {
368   Elf_Sym_Iter EIter = toELFSymIter(Symb);
369   const Elf_Sym *ESym = &*EIter;
370
371   uint32_t Result = SymbolRef::SF_None;
372
373   if (ESym->getBinding() != ELF::STB_LOCAL)
374     Result |= SymbolRef::SF_Global;
375
376   if (ESym->getBinding() == ELF::STB_WEAK)
377     Result |= SymbolRef::SF_Weak;
378
379   if (ESym->st_shndx == ELF::SHN_ABS)
380     Result |= SymbolRef::SF_Absolute;
381
382   if (ESym->getType() == ELF::STT_FILE || ESym->getType() == ELF::STT_SECTION ||
383       EIter == EF.begin_symbols() || EIter == EF.begin_dynamic_symbols())
384     Result |= SymbolRef::SF_FormatSpecific;
385
386   if (EF.getSymbolTableIndex(ESym) == ELF::SHN_UNDEF)
387     Result |= SymbolRef::SF_Undefined;
388
389   if (ESym->getType() == ELF::STT_COMMON ||
390       EF.getSymbolTableIndex(ESym) == ELF::SHN_COMMON)
391     Result |= SymbolRef::SF_Common;
392
393   if (isExportedToOtherDSO(ESym))
394     Result |= SymbolRef::SF_Exported;
395
396   if (ESym->getVisibility() == ELF::STV_HIDDEN)
397     Result |= SymbolRef::SF_Hidden;
398
399   return Result;
400 }
401
402 template <class ELFT>
403 section_iterator
404 ELFObjectFile<ELFT>::getSymbolSection(const Elf_Sym *ESym) const {
405   const Elf_Shdr *ESec = EF.getSection(ESym);
406   if (!ESec)
407     return section_end();
408   else {
409     DataRefImpl Sec;
410     Sec.p = reinterpret_cast<intptr_t>(ESec);
411     return section_iterator(SectionRef(Sec, this));
412   }
413 }
414
415 template <class ELFT>
416 std::error_code
417 ELFObjectFile<ELFT>::getSymbolSection(DataRefImpl Symb,
418                                       section_iterator &Res) const {
419   Res = getSymbolSection(getSymbol(Symb));
420   return std::error_code();
421 }
422
423 template <class ELFT>
424 void ELFObjectFile<ELFT>::moveSectionNext(DataRefImpl &Sec) const {
425   Sec = toDRI(++toELFShdrIter(Sec));
426 }
427
428 template <class ELFT>
429 std::error_code ELFObjectFile<ELFT>::getSectionName(DataRefImpl Sec,
430                                                     StringRef &Result) const {
431   ErrorOr<StringRef> Name = EF.getSectionName(&*toELFShdrIter(Sec));
432   if (!Name)
433     return Name.getError();
434   Result = *Name;
435   return std::error_code();
436 }
437
438 template <class ELFT>
439 uint64_t ELFObjectFile<ELFT>::getSectionAddress(DataRefImpl Sec) const {
440   return toELFShdrIter(Sec)->sh_addr;
441 }
442
443 template <class ELFT>
444 uint64_t ELFObjectFile<ELFT>::getSectionSize(DataRefImpl Sec) const {
445   return toELFShdrIter(Sec)->sh_size;
446 }
447
448 template <class ELFT>
449 std::error_code
450 ELFObjectFile<ELFT>::getSectionContents(DataRefImpl Sec,
451                                         StringRef &Result) const {
452   Elf_Shdr_Iter EShdr = toELFShdrIter(Sec);
453   Result = StringRef((const char *)base() + EShdr->sh_offset, EShdr->sh_size);
454   return std::error_code();
455 }
456
457 template <class ELFT>
458 uint64_t ELFObjectFile<ELFT>::getSectionAlignment(DataRefImpl Sec) const {
459   return toELFShdrIter(Sec)->sh_addralign;
460 }
461
462 template <class ELFT>
463 bool ELFObjectFile<ELFT>::isSectionText(DataRefImpl Sec) const {
464   return toELFShdrIter(Sec)->sh_flags & ELF::SHF_EXECINSTR;
465 }
466
467 template <class ELFT>
468 bool ELFObjectFile<ELFT>::isSectionData(DataRefImpl Sec) const {
469   Elf_Shdr_Iter EShdr = toELFShdrIter(Sec);
470   return EShdr->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE) &&
471          EShdr->sh_type == ELF::SHT_PROGBITS;
472 }
473
474 template <class ELFT>
475 bool ELFObjectFile<ELFT>::isSectionBSS(DataRefImpl Sec) const {
476   Elf_Shdr_Iter EShdr = toELFShdrIter(Sec);
477   return EShdr->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE) &&
478          EShdr->sh_type == ELF::SHT_NOBITS;
479 }
480
481 template <class ELFT>
482 bool ELFObjectFile<ELFT>::isSectionVirtual(DataRefImpl Sec) const {
483   return toELFShdrIter(Sec)->sh_type == ELF::SHT_NOBITS;
484 }
485
486 template <class ELFT>
487 bool ELFObjectFile<ELFT>::sectionContainsSymbol(DataRefImpl Sec,
488                                                 DataRefImpl Symb) const {
489   Elf_Sym_Iter ESym = toELFSymIter(Symb);
490
491   uintX_t Index = ESym->st_shndx;
492   bool Reserved = Index >= ELF::SHN_LORESERVE && Index <= ELF::SHN_HIRESERVE;
493
494   return !Reserved && (&*toELFShdrIter(Sec) == EF.getSection(ESym->st_shndx));
495 }
496
497 template <class ELFT>
498 relocation_iterator
499 ELFObjectFile<ELFT>::section_rel_begin(DataRefImpl Sec) const {
500   DataRefImpl RelData;
501   uintptr_t SHT = reinterpret_cast<uintptr_t>(EF.begin_sections().get());
502   RelData.d.a = (Sec.p - SHT) / EF.getHeader()->e_shentsize;
503   RelData.d.b = 0;
504   return relocation_iterator(RelocationRef(RelData, this));
505 }
506
507 template <class ELFT>
508 relocation_iterator
509 ELFObjectFile<ELFT>::section_rel_end(DataRefImpl Sec) const {
510   DataRefImpl RelData;
511   uintptr_t SHT = reinterpret_cast<uintptr_t>(EF.begin_sections().get());
512   const Elf_Shdr *S = reinterpret_cast<const Elf_Shdr *>(Sec.p);
513   RelData.d.a = (Sec.p - SHT) / EF.getHeader()->e_shentsize;
514   if (S->sh_type != ELF::SHT_RELA && S->sh_type != ELF::SHT_REL)
515     RelData.d.b = 0;
516   else
517     RelData.d.b = S->sh_size / S->sh_entsize;
518
519   return relocation_iterator(RelocationRef(RelData, this));
520 }
521
522 template <class ELFT>
523 section_iterator
524 ELFObjectFile<ELFT>::getRelocatedSection(DataRefImpl Sec) const {
525   if (EF.getHeader()->e_type != ELF::ET_REL)
526     return section_end();
527
528   Elf_Shdr_Iter EShdr = toELFShdrIter(Sec);
529   uintX_t Type = EShdr->sh_type;
530   if (Type != ELF::SHT_REL && Type != ELF::SHT_RELA)
531     return section_end();
532
533   const Elf_Shdr *R = EF.getSection(EShdr->sh_info);
534   return section_iterator(SectionRef(toDRI(R), this));
535 }
536
537 // Relocations
538 template <class ELFT>
539 void ELFObjectFile<ELFT>::moveRelocationNext(DataRefImpl &Rel) const {
540   ++Rel.d.b;
541 }
542
543 template <class ELFT>
544 symbol_iterator
545 ELFObjectFile<ELFT>::getRelocationSymbol(DataRefImpl Rel) const {
546   uint32_t symbolIdx;
547   const Elf_Shdr *sec = getRelSection(Rel);
548   switch (sec->sh_type) {
549   default:
550     report_fatal_error("Invalid section type in Rel!");
551   case ELF::SHT_REL: {
552     symbolIdx = getRel(Rel)->getSymbol(EF.isMips64EL());
553     break;
554   }
555   case ELF::SHT_RELA: {
556     symbolIdx = getRela(Rel)->getSymbol(EF.isMips64EL());
557     break;
558   }
559   }
560   if (!symbolIdx)
561     return symbol_end();
562
563   const Elf_Shdr *SymSec = EF.getSection(sec->sh_link);
564
565   DataRefImpl SymbolData;
566   switch (SymSec->sh_type) {
567   default:
568     report_fatal_error("Invalid symbol table section type!");
569   case ELF::SHT_SYMTAB:
570     SymbolData = toDRI(EF.begin_symbols() + symbolIdx);
571     break;
572   case ELF::SHT_DYNSYM:
573     SymbolData = toDRI(EF.begin_dynamic_symbols() + symbolIdx);
574     break;
575   }
576
577   return symbol_iterator(SymbolRef(SymbolData, this));
578 }
579
580 template <class ELFT>
581 std::error_code
582 ELFObjectFile<ELFT>::getRelocationAddress(DataRefImpl Rel,
583                                           uint64_t &Result) const {
584   uint64_t ROffset = getROffset(Rel);
585   const Elf_Ehdr *Header = EF.getHeader();
586
587   if (Header->e_type == ELF::ET_REL) {
588     const Elf_Shdr *RelocationSec = getRelSection(Rel);
589     const Elf_Shdr *RelocatedSec = EF.getSection(RelocationSec->sh_info);
590     Result = ROffset + RelocatedSec->sh_addr;
591   } else {
592     Result = ROffset;
593   }
594
595   return std::error_code();
596 }
597
598 template <class ELFT>
599 std::error_code
600 ELFObjectFile<ELFT>::getRelocationOffset(DataRefImpl Rel,
601                                          uint64_t &Result) const {
602   assert(EF.getHeader()->e_type == ELF::ET_REL &&
603          "Only relocatable object files have relocation offsets");
604   Result = getROffset(Rel);
605   return std::error_code();
606 }
607
608 template <class ELFT>
609 uint64_t ELFObjectFile<ELFT>::getROffset(DataRefImpl Rel) const {
610   const Elf_Shdr *sec = getRelSection(Rel);
611   switch (sec->sh_type) {
612   default:
613     report_fatal_error("Invalid section type in Rel!");
614   case ELF::SHT_REL:
615     return getRel(Rel)->r_offset;
616   case ELF::SHT_RELA:
617     return getRela(Rel)->r_offset;
618   }
619 }
620
621 template <class ELFT>
622 std::error_code ELFObjectFile<ELFT>::getRelocationType(DataRefImpl Rel,
623                                                        uint64_t &Result) const {
624   const Elf_Shdr *sec = getRelSection(Rel);
625   switch (sec->sh_type) {
626   default:
627     report_fatal_error("Invalid section type in Rel!");
628   case ELF::SHT_REL: {
629     Result = getRel(Rel)->getType(EF.isMips64EL());
630     break;
631   }
632   case ELF::SHT_RELA: {
633     Result = getRela(Rel)->getType(EF.isMips64EL());
634     break;
635   }
636   }
637   return std::error_code();
638 }
639
640 template <class ELFT>
641 StringRef ELFObjectFile<ELFT>::getRelocationTypeName(uint32_t Type) const {
642   return getELFRelocationTypeName(EF.getHeader()->e_machine, Type);
643 }
644
645 template <class ELFT>
646 std::error_code ELFObjectFile<ELFT>::getRelocationTypeName(
647     DataRefImpl Rel, SmallVectorImpl<char> &Result) const {
648   const Elf_Shdr *sec = getRelSection(Rel);
649   uint32_t type;
650   switch (sec->sh_type) {
651   default:
652     return object_error::parse_failed;
653   case ELF::SHT_REL: {
654     type = getRel(Rel)->getType(EF.isMips64EL());
655     break;
656   }
657   case ELF::SHT_RELA: {
658     type = getRela(Rel)->getType(EF.isMips64EL());
659     break;
660   }
661   }
662
663   EF.getRelocationTypeName(type, Result);
664   return std::error_code();
665 }
666
667 template <class ELFT>
668 ErrorOr<int64_t>
669 ELFObjectFile<ELFT>::getRelocationAddend(DataRefImpl Rel) const {
670   if (getRelSection(Rel)->sh_type != ELF::SHT_RELA)
671     return object_error::parse_failed;
672   return (int64_t)getRela(Rel)->r_addend;
673 }
674
675 template <class ELFT>
676 bool ELFObjectFile<ELFT>::hasRelocationAddend(DataRefImpl Rel) const {
677   return getRelSection(Rel)->sh_type == ELF::SHT_RELA;
678 }
679
680 template <class ELFT>
681 const typename ELFFile<ELFT>::Elf_Sym *
682 ELFObjectFile<ELFT>::getSymbol(DataRefImpl Symb) const {
683   return &*toELFSymIter(Symb);
684 }
685
686 template <class ELFT>
687 const typename ELFObjectFile<ELFT>::Elf_Rel *
688 ELFObjectFile<ELFT>::getRel(DataRefImpl Rel) const {
689   return EF.template getEntry<Elf_Rel>(Rel.d.a, Rel.d.b);
690 }
691
692 template <class ELFT>
693 const typename ELFObjectFile<ELFT>::Elf_Rela *
694 ELFObjectFile<ELFT>::getRela(DataRefImpl Rela) const {
695   return EF.template getEntry<Elf_Rela>(Rela.d.a, Rela.d.b);
696 }
697
698 template <class ELFT>
699 ELFObjectFile<ELFT>::ELFObjectFile(MemoryBufferRef Object, std::error_code &EC)
700     : ELFObjectFileBase(
701           getELFType(static_cast<endianness>(ELFT::TargetEndianness) ==
702                          support::little,
703                      ELFT::Is64Bits),
704           Object),
705       EF(Data.getBuffer(), EC) {}
706
707 template <class ELFT>
708 basic_symbol_iterator ELFObjectFile<ELFT>::symbol_begin_impl() const {
709   return basic_symbol_iterator(SymbolRef(toDRI(EF.begin_symbols()), this));
710 }
711
712 template <class ELFT>
713 basic_symbol_iterator ELFObjectFile<ELFT>::symbol_end_impl() const {
714   return basic_symbol_iterator(SymbolRef(toDRI(EF.end_symbols()), this));
715 }
716
717 template <class ELFT>
718 symbol_iterator ELFObjectFile<ELFT>::dynamic_symbol_begin() const {
719   return symbol_iterator(SymbolRef(toDRI(EF.begin_dynamic_symbols()), this));
720 }
721
722 template <class ELFT>
723 symbol_iterator ELFObjectFile<ELFT>::dynamic_symbol_end() const {
724   return symbol_iterator(SymbolRef(toDRI(EF.end_dynamic_symbols()), this));
725 }
726
727 template <class ELFT>
728 section_iterator ELFObjectFile<ELFT>::section_begin() const {
729   return section_iterator(SectionRef(toDRI(EF.begin_sections()), this));
730 }
731
732 template <class ELFT>
733 section_iterator ELFObjectFile<ELFT>::section_end() const {
734   return section_iterator(SectionRef(toDRI(EF.end_sections()), this));
735 }
736
737 template <class ELFT>
738 StringRef ELFObjectFile<ELFT>::getLoadName() const {
739   Elf_Dyn_Iter DI = EF.begin_dynamic_table();
740   Elf_Dyn_Iter DE = EF.end_dynamic_table();
741
742   while (DI != DE && DI->getTag() != ELF::DT_SONAME)
743     ++DI;
744
745   if (DI != DE)
746     return EF.getDynamicString(DI->getVal());
747   return "";
748 }
749
750 template <class ELFT>
751 uint8_t ELFObjectFile<ELFT>::getBytesInAddress() const {
752   return ELFT::Is64Bits ? 8 : 4;
753 }
754
755 template <class ELFT>
756 StringRef ELFObjectFile<ELFT>::getFileFormatName() const {
757   bool IsLittleEndian = ELFT::TargetEndianness == support::little;
758   switch (EF.getHeader()->e_ident[ELF::EI_CLASS]) {
759   case ELF::ELFCLASS32:
760     switch (EF.getHeader()->e_machine) {
761     case ELF::EM_386:
762       return "ELF32-i386";
763     case ELF::EM_X86_64:
764       return "ELF32-x86-64";
765     case ELF::EM_ARM:
766       return (IsLittleEndian ? "ELF32-arm-little" : "ELF32-arm-big");
767     case ELF::EM_HEXAGON:
768       return "ELF32-hexagon";
769     case ELF::EM_MIPS:
770       return "ELF32-mips";
771     case ELF::EM_PPC:
772       return "ELF32-ppc";
773     case ELF::EM_SPARC:
774     case ELF::EM_SPARC32PLUS:
775       return "ELF32-sparc";
776     default:
777       return "ELF32-unknown";
778     }
779   case ELF::ELFCLASS64:
780     switch (EF.getHeader()->e_machine) {
781     case ELF::EM_386:
782       return "ELF64-i386";
783     case ELF::EM_X86_64:
784       return "ELF64-x86-64";
785     case ELF::EM_AARCH64:
786       return (IsLittleEndian ? "ELF64-aarch64-little" : "ELF64-aarch64-big");
787     case ELF::EM_PPC64:
788       return "ELF64-ppc64";
789     case ELF::EM_S390:
790       return "ELF64-s390";
791     case ELF::EM_SPARCV9:
792       return "ELF64-sparc";
793     case ELF::EM_MIPS:
794       return "ELF64-mips";
795     default:
796       return "ELF64-unknown";
797     }
798   default:
799     // FIXME: Proper error handling.
800     report_fatal_error("Invalid ELFCLASS!");
801   }
802 }
803
804 template <class ELFT>
805 unsigned ELFObjectFile<ELFT>::getArch() const {
806   bool IsLittleEndian = ELFT::TargetEndianness == support::little;
807   switch (EF.getHeader()->e_machine) {
808   case ELF::EM_386:
809     return Triple::x86;
810   case ELF::EM_X86_64:
811     return Triple::x86_64;
812   case ELF::EM_AARCH64:
813     return Triple::aarch64;
814   case ELF::EM_ARM:
815     return Triple::arm;
816   case ELF::EM_HEXAGON:
817     return Triple::hexagon;
818   case ELF::EM_MIPS:
819     switch (EF.getHeader()->e_ident[ELF::EI_CLASS]) {
820     case ELF::ELFCLASS32:
821       return IsLittleEndian ? Triple::mipsel : Triple::mips;
822     case ELF::ELFCLASS64:
823       return IsLittleEndian ? Triple::mips64el : Triple::mips64;
824     default:
825       report_fatal_error("Invalid ELFCLASS!");
826     }
827   case ELF::EM_PPC:
828     return Triple::ppc;
829   case ELF::EM_PPC64:
830     return IsLittleEndian ? Triple::ppc64le : Triple::ppc64;
831   case ELF::EM_S390:
832     return Triple::systemz;
833
834   case ELF::EM_SPARC:
835   case ELF::EM_SPARC32PLUS:
836     return IsLittleEndian ? Triple::sparcel : Triple::sparc;
837   case ELF::EM_SPARCV9:
838     return Triple::sparcv9;
839
840   default:
841     return Triple::UnknownArch;
842   }
843 }
844
845 template <class ELFT>
846 std::pair<symbol_iterator, symbol_iterator>
847 ELFObjectFile<ELFT>::getELFDynamicSymbolIterators() const {
848   return std::make_pair(dynamic_symbol_begin(), dynamic_symbol_end());
849 }
850
851 template <class ELFT> bool ELFObjectFile<ELFT>::isRelocatableObject() const {
852   return EF.getHeader()->e_type == ELF::ET_REL;
853 }
854
855 inline std::pair<symbol_iterator, symbol_iterator>
856 getELFDynamicSymbolIterators(const SymbolicFile *Obj) {
857   return cast<ELFObjectFileBase>(Obj)->getELFDynamicSymbolIterators();
858 }
859
860 }
861 }
862
863 #endif