[Object][ELF] Add a way to get the dynamic symbol table section.
[oota-llvm.git] / include / llvm / Object / ELF.h
1 //===- ELF.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_ELF_H
15 #define LLVM_OBJECT_ELF_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/ObjectFile.h"
23 #include "llvm/Support/Casting.h"
24 #include "llvm/Support/ELF.h"
25 #include "llvm/Support/Endian.h"
26 #include "llvm/Support/ErrorHandling.h"
27 #include "llvm/Support/MemoryBuffer.h"
28 #include "llvm/Support/raw_ostream.h"
29 #include <algorithm>
30 #include <limits>
31 #include <utility>
32
33 namespace llvm {
34 namespace object {
35
36 using support::endianness;
37
38 template<endianness target_endianness, std::size_t max_alignment, bool is64Bits>
39 struct ELFType {
40   static const endianness TargetEndianness = target_endianness;
41   static const std::size_t MaxAlignment = max_alignment;
42   static const bool Is64Bits = is64Bits;
43 };
44
45 template<typename T, int max_align>
46 struct MaximumAlignment {
47   enum {value = AlignOf<T>::Alignment > max_align ? max_align
48                                                   : AlignOf<T>::Alignment};
49 };
50
51 // Subclasses of ELFObjectFile may need this for template instantiation
52 inline std::pair<unsigned char, unsigned char>
53 getElfArchType(MemoryBuffer *Object) {
54   if (Object->getBufferSize() < ELF::EI_NIDENT)
55     return std::make_pair((uint8_t)ELF::ELFCLASSNONE,(uint8_t)ELF::ELFDATANONE);
56   return std::make_pair( (uint8_t)Object->getBufferStart()[ELF::EI_CLASS]
57                        , (uint8_t)Object->getBufferStart()[ELF::EI_DATA]);
58 }
59
60 // Templates to choose Elf_Addr and Elf_Off depending on is64Bits.
61 template<endianness target_endianness, std::size_t max_alignment>
62 struct ELFDataTypeTypedefHelperCommon {
63   typedef support::detail::packed_endian_specific_integral
64     <uint16_t, target_endianness,
65      MaximumAlignment<uint16_t, max_alignment>::value> Elf_Half;
66   typedef support::detail::packed_endian_specific_integral
67     <uint32_t, target_endianness,
68      MaximumAlignment<uint32_t, max_alignment>::value> Elf_Word;
69   typedef support::detail::packed_endian_specific_integral
70     <int32_t, target_endianness,
71      MaximumAlignment<int32_t, max_alignment>::value> Elf_Sword;
72   typedef support::detail::packed_endian_specific_integral
73     <uint64_t, target_endianness,
74      MaximumAlignment<uint64_t, max_alignment>::value> Elf_Xword;
75   typedef support::detail::packed_endian_specific_integral
76     <int64_t, target_endianness,
77      MaximumAlignment<int64_t, max_alignment>::value> Elf_Sxword;
78 };
79
80 template<class ELFT>
81 struct ELFDataTypeTypedefHelper;
82
83 /// ELF 32bit types.
84 template<template<endianness, std::size_t, bool> class ELFT,
85          endianness TargetEndianness, std::size_t MaxAlign>
86 struct ELFDataTypeTypedefHelper<ELFT<TargetEndianness, MaxAlign, false> >
87   : ELFDataTypeTypedefHelperCommon<TargetEndianness, MaxAlign> {
88   typedef uint32_t value_type;
89   typedef support::detail::packed_endian_specific_integral
90     <value_type, TargetEndianness,
91      MaximumAlignment<value_type, MaxAlign>::value> Elf_Addr;
92   typedef support::detail::packed_endian_specific_integral
93     <value_type, TargetEndianness,
94      MaximumAlignment<value_type, MaxAlign>::value> Elf_Off;
95 };
96
97 /// ELF 64bit types.
98 template<template<endianness, std::size_t, bool> class ELFT,
99          endianness TargetEndianness, std::size_t MaxAlign>
100 struct ELFDataTypeTypedefHelper<ELFT<TargetEndianness, MaxAlign, true> >
101   : ELFDataTypeTypedefHelperCommon<TargetEndianness, MaxAlign> {
102   typedef uint64_t value_type;
103   typedef support::detail::packed_endian_specific_integral
104     <value_type, TargetEndianness,
105      MaximumAlignment<value_type, MaxAlign>::value> Elf_Addr;
106   typedef support::detail::packed_endian_specific_integral
107     <value_type, TargetEndianness,
108      MaximumAlignment<value_type, MaxAlign>::value> Elf_Off;
109 };
110
111 // I really don't like doing this, but the alternative is copypasta.
112 #define LLVM_ELF_IMPORT_TYPES(ELFT) \
113 typedef typename ELFDataTypeTypedefHelper <ELFT>::Elf_Addr Elf_Addr; \
114 typedef typename ELFDataTypeTypedefHelper <ELFT>::Elf_Off Elf_Off; \
115 typedef typename ELFDataTypeTypedefHelper <ELFT>::Elf_Half Elf_Half; \
116 typedef typename ELFDataTypeTypedefHelper <ELFT>::Elf_Word Elf_Word; \
117 typedef typename ELFDataTypeTypedefHelper <ELFT>::Elf_Sword Elf_Sword; \
118 typedef typename ELFDataTypeTypedefHelper <ELFT>::Elf_Xword Elf_Xword; \
119 typedef typename ELFDataTypeTypedefHelper <ELFT>::Elf_Sxword Elf_Sxword;
120
121 // This is required to get template types into a macro :(
122 #define LLVM_ELF_COMMA ,
123
124   // Section header.
125 template<class ELFT>
126 struct Elf_Shdr_Base;
127
128 template<template<endianness, std::size_t, bool> class ELFT,
129          endianness TargetEndianness, std::size_t MaxAlign>
130 struct Elf_Shdr_Base<ELFT<TargetEndianness, MaxAlign, false> > {
131   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
132                              MaxAlign LLVM_ELF_COMMA false>)
133   Elf_Word sh_name;     // Section name (index into string table)
134   Elf_Word sh_type;     // Section type (SHT_*)
135   Elf_Word sh_flags;    // Section flags (SHF_*)
136   Elf_Addr sh_addr;     // Address where section is to be loaded
137   Elf_Off  sh_offset;   // File offset of section data, in bytes
138   Elf_Word sh_size;     // Size of section, in bytes
139   Elf_Word sh_link;     // Section type-specific header table index link
140   Elf_Word sh_info;     // Section type-specific extra information
141   Elf_Word sh_addralign;// Section address alignment
142   Elf_Word sh_entsize;  // Size of records contained within the section
143 };
144
145 template<template<endianness, std::size_t, bool> class ELFT,
146          endianness TargetEndianness, std::size_t MaxAlign>
147 struct Elf_Shdr_Base<ELFT<TargetEndianness, MaxAlign, true> > {
148   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
149                              MaxAlign LLVM_ELF_COMMA true>)
150   Elf_Word  sh_name;     // Section name (index into string table)
151   Elf_Word  sh_type;     // Section type (SHT_*)
152   Elf_Xword sh_flags;    // Section flags (SHF_*)
153   Elf_Addr  sh_addr;     // Address where section is to be loaded
154   Elf_Off   sh_offset;   // File offset of section data, in bytes
155   Elf_Xword sh_size;     // Size of section, in bytes
156   Elf_Word  sh_link;     // Section type-specific header table index link
157   Elf_Word  sh_info;     // Section type-specific extra information
158   Elf_Xword sh_addralign;// Section address alignment
159   Elf_Xword sh_entsize;  // Size of records contained within the section
160 };
161
162 template<class ELFT>
163 struct Elf_Shdr_Impl : Elf_Shdr_Base<ELFT> {
164   using Elf_Shdr_Base<ELFT>::sh_entsize;
165   using Elf_Shdr_Base<ELFT>::sh_size;
166
167   /// @brief Get the number of entities this section contains if it has any.
168   unsigned getEntityCount() const {
169     if (sh_entsize == 0)
170       return 0;
171     return sh_size / sh_entsize;
172   }
173 };
174
175 template<class ELFT>
176 struct Elf_Sym_Base;
177
178 template<template<endianness, std::size_t, bool> class ELFT,
179          endianness TargetEndianness, std::size_t MaxAlign>
180 struct Elf_Sym_Base<ELFT<TargetEndianness, MaxAlign, false> > {
181   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
182                              MaxAlign LLVM_ELF_COMMA false>)
183   Elf_Word      st_name;  // Symbol name (index into string table)
184   Elf_Addr      st_value; // Value or address associated with the symbol
185   Elf_Word      st_size;  // Size of the symbol
186   unsigned char st_info;  // Symbol's type and binding attributes
187   unsigned char st_other; // Must be zero; reserved
188   Elf_Half      st_shndx; // Which section (header table index) it's defined in
189 };
190
191 template<template<endianness, std::size_t, bool> class ELFT,
192          endianness TargetEndianness, std::size_t MaxAlign>
193 struct Elf_Sym_Base<ELFT<TargetEndianness, MaxAlign, true> > {
194   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
195                              MaxAlign LLVM_ELF_COMMA true>)
196   Elf_Word      st_name;  // Symbol name (index into string table)
197   unsigned char st_info;  // Symbol's type and binding attributes
198   unsigned char st_other; // Must be zero; reserved
199   Elf_Half      st_shndx; // Which section (header table index) it's defined in
200   Elf_Addr      st_value; // Value or address associated with the symbol
201   Elf_Xword     st_size;  // Size of the symbol
202 };
203
204 template<class ELFT>
205 struct Elf_Sym_Impl : Elf_Sym_Base<ELFT> {
206   using Elf_Sym_Base<ELFT>::st_info;
207
208   // These accessors and mutators correspond to the ELF32_ST_BIND,
209   // ELF32_ST_TYPE, and ELF32_ST_INFO macros defined in the ELF specification:
210   unsigned char getBinding() const { return st_info >> 4; }
211   unsigned char getType() const { return st_info & 0x0f; }
212   void setBinding(unsigned char b) { setBindingAndType(b, getType()); }
213   void setType(unsigned char t) { setBindingAndType(getBinding(), t); }
214   void setBindingAndType(unsigned char b, unsigned char t) {
215     st_info = (b << 4) + (t & 0x0f);
216   }
217 };
218
219 /// Elf_Versym: This is the structure of entries in the SHT_GNU_versym section
220 /// (.gnu.version). This structure is identical for ELF32 and ELF64.
221 template<class ELFT>
222 struct Elf_Versym_Impl {
223   LLVM_ELF_IMPORT_TYPES(ELFT)
224   Elf_Half vs_index;   // Version index with flags (e.g. VERSYM_HIDDEN)
225 };
226
227 template<class ELFT>
228 struct Elf_Verdaux_Impl;
229
230 /// Elf_Verdef: This is the structure of entries in the SHT_GNU_verdef section
231 /// (.gnu.version_d). This structure is identical for ELF32 and ELF64.
232 template<class ELFT>
233 struct Elf_Verdef_Impl {
234   LLVM_ELF_IMPORT_TYPES(ELFT)
235   typedef Elf_Verdaux_Impl<ELFT> Elf_Verdaux;
236   Elf_Half vd_version; // Version of this structure (e.g. VER_DEF_CURRENT)
237   Elf_Half vd_flags;   // Bitwise flags (VER_DEF_*)
238   Elf_Half vd_ndx;     // Version index, used in .gnu.version entries
239   Elf_Half vd_cnt;     // Number of Verdaux entries
240   Elf_Word vd_hash;    // Hash of name
241   Elf_Word vd_aux;     // Offset to the first Verdaux entry (in bytes)
242   Elf_Word vd_next;    // Offset to the next Verdef entry (in bytes)
243
244   /// Get the first Verdaux entry for this Verdef.
245   const Elf_Verdaux *getAux() const {
246     return reinterpret_cast<const Elf_Verdaux*>((const char*)this + vd_aux);
247   }
248 };
249
250 /// Elf_Verdaux: This is the structure of auxiliary data in the SHT_GNU_verdef
251 /// section (.gnu.version_d). This structure is identical for ELF32 and ELF64.
252 template<class ELFT>
253 struct Elf_Verdaux_Impl {
254   LLVM_ELF_IMPORT_TYPES(ELFT)
255   Elf_Word vda_name; // Version name (offset in string table)
256   Elf_Word vda_next; // Offset to next Verdaux entry (in bytes)
257 };
258
259 /// Elf_Verneed: This is the structure of entries in the SHT_GNU_verneed
260 /// section (.gnu.version_r). This structure is identical for ELF32 and ELF64.
261 template<class ELFT>
262 struct Elf_Verneed_Impl {
263   LLVM_ELF_IMPORT_TYPES(ELFT)
264   Elf_Half vn_version; // Version of this structure (e.g. VER_NEED_CURRENT)
265   Elf_Half vn_cnt;     // Number of associated Vernaux entries
266   Elf_Word vn_file;    // Library name (string table offset)
267   Elf_Word vn_aux;     // Offset to first Vernaux entry (in bytes)
268   Elf_Word vn_next;    // Offset to next Verneed entry (in bytes)
269 };
270
271 /// Elf_Vernaux: This is the structure of auxiliary data in SHT_GNU_verneed
272 /// section (.gnu.version_r). This structure is identical for ELF32 and ELF64.
273 template<class ELFT>
274 struct Elf_Vernaux_Impl {
275   LLVM_ELF_IMPORT_TYPES(ELFT)
276   Elf_Word vna_hash;  // Hash of dependency name
277   Elf_Half vna_flags; // Bitwise Flags (VER_FLAG_*)
278   Elf_Half vna_other; // Version index, used in .gnu.version entries
279   Elf_Word vna_name;  // Dependency name
280   Elf_Word vna_next;  // Offset to next Vernaux entry (in bytes)
281 };
282
283 /// Elf_Dyn_Base: This structure matches the form of entries in the dynamic
284 ///               table section (.dynamic) look like.
285 template<class ELFT>
286 struct Elf_Dyn_Base;
287
288 template<template<endianness, std::size_t, bool> class ELFT,
289          endianness TargetEndianness, std::size_t MaxAlign>
290 struct Elf_Dyn_Base<ELFT<TargetEndianness, MaxAlign, false> > {
291   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
292                              MaxAlign LLVM_ELF_COMMA false>)
293   Elf_Sword d_tag;
294   union {
295     Elf_Word d_val;
296     Elf_Addr d_ptr;
297   } d_un;
298 };
299
300 template<template<endianness, std::size_t, bool> class ELFT,
301          endianness TargetEndianness, std::size_t MaxAlign>
302 struct Elf_Dyn_Base<ELFT<TargetEndianness, MaxAlign, true> > {
303   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
304                              MaxAlign LLVM_ELF_COMMA true>)
305   Elf_Sxword d_tag;
306   union {
307     Elf_Xword d_val;
308     Elf_Addr d_ptr;
309   } d_un;
310 };
311
312 /// Elf_Dyn_Impl: This inherits from Elf_Dyn_Base, adding getters and setters.
313 template<class ELFT>
314 struct Elf_Dyn_Impl : Elf_Dyn_Base<ELFT> {
315   using Elf_Dyn_Base<ELFT>::d_tag;
316   using Elf_Dyn_Base<ELFT>::d_un;
317   int64_t getTag() const { return d_tag; }
318   uint64_t getVal() const { return d_un.d_val; }
319   uint64_t getPtr() const { return d_un.ptr; }
320 };
321
322 // Elf_Rel: Elf Relocation
323 template<class ELFT, bool isRela>
324 struct Elf_Rel_Base;
325
326 template<template<endianness, std::size_t, bool> class ELFT,
327          endianness TargetEndianness, std::size_t MaxAlign>
328 struct Elf_Rel_Base<ELFT<TargetEndianness, MaxAlign, false>, false> {
329   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
330                              MaxAlign LLVM_ELF_COMMA false>)
331   Elf_Addr      r_offset; // Location (file byte offset, or program virtual addr)
332   Elf_Word      r_info;  // Symbol table index and type of relocation to apply
333 };
334
335 template<template<endianness, std::size_t, bool> class ELFT,
336          endianness TargetEndianness, std::size_t MaxAlign>
337 struct Elf_Rel_Base<ELFT<TargetEndianness, MaxAlign, true>, false> {
338   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
339                              MaxAlign LLVM_ELF_COMMA true>)
340   Elf_Addr      r_offset; // Location (file byte offset, or program virtual addr)
341   Elf_Xword     r_info;   // Symbol table index and type of relocation to apply
342 };
343
344 template<template<endianness, std::size_t, bool> class ELFT,
345          endianness TargetEndianness, std::size_t MaxAlign>
346 struct Elf_Rel_Base<ELFT<TargetEndianness, MaxAlign, false>, true> {
347   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
348                              MaxAlign LLVM_ELF_COMMA false>)
349   Elf_Addr      r_offset; // Location (file byte offset, or program virtual addr)
350   Elf_Word      r_info;   // Symbol table index and type of relocation to apply
351   Elf_Sword     r_addend; // Compute value for relocatable field by adding this
352 };
353
354 template<template<endianness, std::size_t, bool> class ELFT,
355          endianness TargetEndianness, std::size_t MaxAlign>
356 struct Elf_Rel_Base<ELFT<TargetEndianness, MaxAlign, true>, true> {
357   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
358                              MaxAlign LLVM_ELF_COMMA true>)
359   Elf_Addr      r_offset; // Location (file byte offset, or program virtual addr)
360   Elf_Xword     r_info;   // Symbol table index and type of relocation to apply
361   Elf_Sxword    r_addend; // Compute value for relocatable field by adding this.
362 };
363
364 template<class ELFT, bool isRela>
365 struct Elf_Rel_Impl;
366
367 template<template<endianness, std::size_t, bool> class ELFT,
368          endianness TargetEndianness, std::size_t MaxAlign, bool isRela>
369 struct Elf_Rel_Impl<ELFT<TargetEndianness, MaxAlign, true>, isRela>
370        : Elf_Rel_Base<ELFT<TargetEndianness, MaxAlign, true>, isRela> {
371   using Elf_Rel_Base<ELFT<TargetEndianness, MaxAlign, true>, isRela>::r_info;
372   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
373                              MaxAlign LLVM_ELF_COMMA true>)
374
375   // These accessors and mutators correspond to the ELF64_R_SYM, ELF64_R_TYPE,
376   // and ELF64_R_INFO macros defined in the ELF specification:
377   uint32_t getSymbol() const { return (uint32_t) (r_info >> 32); }
378   uint32_t getType() const {
379     return (uint32_t) (r_info & 0xffffffffL);
380   }
381   void setSymbol(uint32_t s) { setSymbolAndType(s, getType()); }
382   void setType(uint32_t t) { setSymbolAndType(getSymbol(), t); }
383   void setSymbolAndType(uint32_t s, uint32_t t) {
384     r_info = ((uint64_t)s << 32) + (t&0xffffffffL);
385   }
386 };
387
388 template<template<endianness, std::size_t, bool> class ELFT,
389          endianness TargetEndianness, std::size_t MaxAlign, bool isRela>
390 struct Elf_Rel_Impl<ELFT<TargetEndianness, MaxAlign, false>, isRela>
391        : Elf_Rel_Base<ELFT<TargetEndianness, MaxAlign, false>, isRela> {
392   using Elf_Rel_Base<ELFT<TargetEndianness, MaxAlign, false>, isRela>::r_info;
393   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
394                              MaxAlign LLVM_ELF_COMMA false>)
395
396   // These accessors and mutators correspond to the ELF32_R_SYM, ELF32_R_TYPE,
397   // and ELF32_R_INFO macros defined in the ELF specification:
398   uint32_t getSymbol() const { return (r_info >> 8); }
399   unsigned char getType() const { return (unsigned char) (r_info & 0x0ff); }
400   void setSymbol(uint32_t s) { setSymbolAndType(s, getType()); }
401   void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); }
402   void setSymbolAndType(uint32_t s, unsigned char t) {
403     r_info = (s << 8) + t;
404   }
405 };
406
407 template<class ELFT>
408 struct Elf_Ehdr_Impl {
409   LLVM_ELF_IMPORT_TYPES(ELFT)
410   unsigned char e_ident[ELF::EI_NIDENT]; // ELF Identification bytes
411   Elf_Half e_type;     // Type of file (see ET_*)
412   Elf_Half e_machine;  // Required architecture for this file (see EM_*)
413   Elf_Word e_version;  // Must be equal to 1
414   Elf_Addr e_entry;    // Address to jump to in order to start program
415   Elf_Off  e_phoff;    // Program header table's file offset, in bytes
416   Elf_Off  e_shoff;    // Section header table's file offset, in bytes
417   Elf_Word e_flags;    // Processor-specific flags
418   Elf_Half e_ehsize;   // Size of ELF header, in bytes
419   Elf_Half e_phentsize;// Size of an entry in the program header table
420   Elf_Half e_phnum;    // Number of entries in the program header table
421   Elf_Half e_shentsize;// Size of an entry in the section header table
422   Elf_Half e_shnum;    // Number of entries in the section header table
423   Elf_Half e_shstrndx; // Section header table index of section name
424                                  // string table
425   bool checkMagic() const {
426     return (memcmp(e_ident, ELF::ElfMagic, strlen(ELF::ElfMagic))) == 0;
427   }
428    unsigned char getFileClass() const { return e_ident[ELF::EI_CLASS]; }
429    unsigned char getDataEncoding() const { return e_ident[ELF::EI_DATA]; }
430 };
431
432 template<class ELFT>
433 struct Elf_Phdr_Impl;
434
435 template<template<endianness, std::size_t, bool> class ELFT,
436          endianness TargetEndianness, std::size_t MaxAlign>
437 struct Elf_Phdr_Impl<ELFT<TargetEndianness, MaxAlign, false> > {
438   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
439                              MaxAlign LLVM_ELF_COMMA false>)
440   Elf_Word p_type;   // Type of segment
441   Elf_Off  p_offset; // FileOffset where segment is located, in bytes
442   Elf_Addr p_vaddr;  // Virtual Address of beginning of segment
443   Elf_Addr p_paddr;  // Physical address of beginning of segment (OS-specific)
444   Elf_Word p_filesz; // Num. of bytes in file image of segment (may be zero)
445   Elf_Word p_memsz;  // Num. of bytes in mem image of segment (may be zero)
446   Elf_Word p_flags;  // Segment flags
447   Elf_Word p_align;  // Segment alignment constraint
448 };
449
450 template<template<endianness, std::size_t, bool> class ELFT,
451          endianness TargetEndianness, std::size_t MaxAlign>
452 struct Elf_Phdr_Impl<ELFT<TargetEndianness, MaxAlign, true> > {
453   LLVM_ELF_IMPORT_TYPES(ELFT<TargetEndianness LLVM_ELF_COMMA
454                              MaxAlign LLVM_ELF_COMMA true>)
455   Elf_Word p_type;   // Type of segment
456   Elf_Word p_flags;  // Segment flags
457   Elf_Off  p_offset; // FileOffset where segment is located, in bytes
458   Elf_Addr p_vaddr;  // Virtual Address of beginning of segment
459   Elf_Addr p_paddr;  // Physical address of beginning of segment (OS-specific)
460   Elf_Xword p_filesz; // Num. of bytes in file image of segment (may be zero)
461   Elf_Xword p_memsz;  // Num. of bytes in mem image of segment (may be zero)
462   Elf_Xword p_align;  // Segment alignment constraint
463 };
464
465 template<class ELFT>
466 class ELFObjectFile : public ObjectFile {
467   LLVM_ELF_IMPORT_TYPES(ELFT)
468
469 public:
470   /// \brief Iterate over constant sized entities.
471   template<class EntT>
472   class ELFEntityIterator {
473   public:
474     typedef void difference_type;
475     typedef EntT value_type;
476     typedef std::forward_iterator_tag iterator_category;
477     typedef value_type &reference;
478     typedef value_type *pointer;
479
480     /// \brief Default construct iterator.
481     ELFEntityIterator() : EntitySize(0), Current(0) {}
482     ELFEntityIterator(uint64_t EntSize, const char *Start)
483       : EntitySize(EntSize)
484       , Current(Start) {}
485
486     reference operator *() {
487       assert(Current && "Attempted to dereference an invalid iterator!");
488       return *reinterpret_cast<pointer>(Current);
489     }
490
491     pointer operator ->() {
492       assert(Current && "Attempted to dereference an invalid iterator!");
493       return reinterpret_cast<pointer>(Current);
494     }
495
496     bool operator ==(const ELFEntityIterator &Other) {
497       return Current == Other.Current;
498     }
499
500     bool operator !=(const ELFEntityIterator &Other) {
501       return !(*this == Other);
502     }
503
504     ELFEntityIterator &operator ++() {
505       assert(Current && "Attempted to increment an invalid iterator!");
506       Current += EntitySize;
507       return *this;
508     }
509
510     ELFEntityIterator operator ++(int) {
511       ELFEntityIterator Tmp = *this;
512       ++*this;
513       return Tmp;
514     }
515
516     const char *get() const { return Current; }
517
518   private:
519     const uint64_t EntitySize;
520     const char *Current;
521   };
522
523   typedef Elf_Ehdr_Impl<ELFT> Elf_Ehdr;
524   typedef Elf_Shdr_Impl<ELFT> Elf_Shdr;
525   typedef Elf_Sym_Impl<ELFT> Elf_Sym;
526   typedef Elf_Dyn_Impl<ELFT> Elf_Dyn;
527   typedef Elf_Phdr_Impl<ELFT> Elf_Phdr;
528   typedef Elf_Rel_Impl<ELFT, false> Elf_Rel;
529   typedef Elf_Rel_Impl<ELFT, true> Elf_Rela;
530   typedef Elf_Verdef_Impl<ELFT> Elf_Verdef;
531   typedef Elf_Verdaux_Impl<ELFT> Elf_Verdaux;
532   typedef Elf_Verneed_Impl<ELFT> Elf_Verneed;
533   typedef Elf_Vernaux_Impl<ELFT> Elf_Vernaux;
534   typedef Elf_Versym_Impl<ELFT> Elf_Versym;
535   typedef ELFEntityIterator<const Elf_Dyn> Elf_Dyn_iterator;
536   typedef ELFEntityIterator<const Elf_Sym> Elf_Sym_iterator;
537   typedef ELFEntityIterator<const Elf_Rela> Elf_Rela_Iter;
538   typedef ELFEntityIterator<const Elf_Rel> Elf_Rel_Iter;
539
540 protected:
541   // This flag is used for classof, to distinguish ELFObjectFile from
542   // its subclass. If more subclasses will be created, this flag will
543   // have to become an enum.
544   bool isDyldELFObject;
545
546 private:
547   typedef SmallVector<const Elf_Shdr *, 2> Sections_t;
548   typedef DenseMap<unsigned, unsigned> IndexMap_t;
549   typedef DenseMap<const Elf_Shdr*, SmallVector<uint32_t, 1> > RelocMap_t;
550
551   const Elf_Ehdr *Header;
552   const Elf_Shdr *SectionHeaderTable;
553   const Elf_Shdr *dot_shstrtab_sec; // Section header string table.
554   const Elf_Shdr *dot_strtab_sec;   // Symbol header string table.
555   const Elf_Shdr *dot_dynstr_sec;   // Dynamic symbol string table.
556
557   // SymbolTableSections[0] always points to the dynamic string table section
558   // header, or NULL if there is no dynamic string table.
559   Sections_t SymbolTableSections;
560   IndexMap_t SymbolTableSectionsIndexMap;
561   DenseMap<const Elf_Sym*, ELF::Elf64_Word> ExtendedSymbolTable;
562
563   const Elf_Shdr *dot_dynamic_sec;       // .dynamic
564   const Elf_Shdr *dot_gnu_version_sec;   // .gnu.version
565   const Elf_Shdr *dot_gnu_version_r_sec; // .gnu.version_r
566   const Elf_Shdr *dot_gnu_version_d_sec; // .gnu.version_d
567
568   // Pointer to SONAME entry in dynamic string table
569   // This is set the first time getLoadName is called.
570   mutable const char *dt_soname;
571
572 private:
573   // Records for each version index the corresponding Verdef or Vernaux entry.
574   // This is filled the first time LoadVersionMap() is called.
575   class VersionMapEntry : public PointerIntPair<const void*, 1> {
576     public:
577     // If the integer is 0, this is an Elf_Verdef*.
578     // If the integer is 1, this is an Elf_Vernaux*.
579     VersionMapEntry() : PointerIntPair<const void*, 1>(NULL, 0) { }
580     VersionMapEntry(const Elf_Verdef *verdef)
581         : PointerIntPair<const void*, 1>(verdef, 0) { }
582     VersionMapEntry(const Elf_Vernaux *vernaux)
583         : PointerIntPair<const void*, 1>(vernaux, 1) { }
584     bool isNull() const { return getPointer() == NULL; }
585     bool isVerdef() const { return !isNull() && getInt() == 0; }
586     bool isVernaux() const { return !isNull() && getInt() == 1; }
587     const Elf_Verdef *getVerdef() const {
588       return isVerdef() ? (const Elf_Verdef*)getPointer() : NULL;
589     }
590     const Elf_Vernaux *getVernaux() const {
591       return isVernaux() ? (const Elf_Vernaux*)getPointer() : NULL;
592     }
593   };
594   mutable SmallVector<VersionMapEntry, 16> VersionMap;
595   void LoadVersionDefs(const Elf_Shdr *sec) const;
596   void LoadVersionNeeds(const Elf_Shdr *ec) const;
597   void LoadVersionMap() const;
598
599   /// @brief Map sections to an array of relocation sections that reference
600   ///        them sorted by section index.
601   RelocMap_t SectionRelocMap;
602
603   /// @brief Get the relocation section that contains \a Rel.
604   const Elf_Shdr *getRelSection(DataRefImpl Rel) const {
605     return getSection(Rel.w.b);
606   }
607
608   bool            isRelocationHasAddend(DataRefImpl Rel) const;
609   template<typename T>
610   const T        *getEntry(uint16_t Section, uint32_t Entry) const;
611   template<typename T>
612   const T        *getEntry(const Elf_Shdr *Section, uint32_t Entry) const;
613   const Elf_Shdr *getSection(DataRefImpl index) const;
614   const Elf_Shdr *getSection(uint32_t index) const;
615   const Elf_Rel  *getRel(DataRefImpl Rel) const;
616   const Elf_Rela *getRela(DataRefImpl Rela) const;
617   const char     *getString(uint32_t section, uint32_t offset) const;
618   const char     *getString(const Elf_Shdr *section, uint32_t offset) const;
619   error_code      getSymbolVersion(const Elf_Shdr *section,
620                                    const Elf_Sym *Symb,
621                                    StringRef &Version,
622                                    bool &IsDefault) const;
623   void VerifyStrTab(const Elf_Shdr *sh) const;
624
625 protected:
626   const Elf_Sym  *getSymbol(DataRefImpl Symb) const; // FIXME: Should be private?
627   void            validateSymbol(DataRefImpl Symb) const;
628
629 public:
630   error_code      getSymbolName(const Elf_Shdr *section,
631                                 const Elf_Sym *Symb,
632                                 StringRef &Res) const;
633   error_code      getSectionName(const Elf_Shdr *section,
634                                  StringRef &Res) const;
635   const Elf_Dyn  *getDyn(DataRefImpl DynData) const;
636   error_code getSymbolVersion(SymbolRef Symb, StringRef &Version,
637                               bool &IsDefault) const;
638   uint64_t getSymbolIndex(const Elf_Sym *sym) const;
639 protected:
640   virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
641   virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
642   virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
643   virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
644   virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
645   virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const;
646   virtual error_code getSymbolFlags(DataRefImpl Symb, uint32_t &Res) const;
647   virtual error_code getSymbolType(DataRefImpl Symb, SymbolRef::Type &Res) const;
648   virtual error_code getSymbolSection(DataRefImpl Symb,
649                                       section_iterator &Res) const;
650   virtual error_code getSymbolValue(DataRefImpl Symb, uint64_t &Val) const;
651
652   virtual error_code getLibraryNext(DataRefImpl Data, LibraryRef &Result) const;
653   virtual error_code getLibraryPath(DataRefImpl Data, StringRef &Res) const;
654
655   virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
656   virtual error_code getSectionName(DataRefImpl Sec, StringRef &Res) const;
657   virtual error_code getSectionAddress(DataRefImpl Sec, uint64_t &Res) const;
658   virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
659   virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
660   virtual error_code getSectionAlignment(DataRefImpl Sec, uint64_t &Res) const;
661   virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
662   virtual error_code isSectionData(DataRefImpl Sec, bool &Res) const;
663   virtual error_code isSectionBSS(DataRefImpl Sec, bool &Res) const;
664   virtual error_code isSectionRequiredForExecution(DataRefImpl Sec,
665                                                    bool &Res) const;
666   virtual error_code isSectionVirtual(DataRefImpl Sec, bool &Res) const;
667   virtual error_code isSectionZeroInit(DataRefImpl Sec, bool &Res) const;
668   virtual error_code isSectionReadOnlyData(DataRefImpl Sec, bool &Res) const;
669   virtual error_code sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
670                                            bool &Result) const;
671   virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const;
672   virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const;
673
674   virtual error_code getRelocationNext(DataRefImpl Rel,
675                                        RelocationRef &Res) const;
676   virtual error_code getRelocationAddress(DataRefImpl Rel,
677                                           uint64_t &Res) const;
678   virtual error_code getRelocationOffset(DataRefImpl Rel,
679                                          uint64_t &Res) const;
680   virtual error_code getRelocationSymbol(DataRefImpl Rel,
681                                          SymbolRef &Res) const;
682   virtual error_code getRelocationType(DataRefImpl Rel,
683                                        uint64_t &Res) const;
684   virtual error_code getRelocationTypeName(DataRefImpl Rel,
685                                            SmallVectorImpl<char> &Result) const;
686   virtual error_code getRelocationAdditionalInfo(DataRefImpl Rel,
687                                                  int64_t &Res) const;
688   virtual error_code getRelocationValueString(DataRefImpl Rel,
689                                            SmallVectorImpl<char> &Result) const;
690
691 public:
692   ELFObjectFile(MemoryBuffer *Object, error_code &ec);
693   virtual symbol_iterator begin_symbols() const;
694   virtual symbol_iterator end_symbols() const;
695
696   virtual symbol_iterator begin_dynamic_symbols() const;
697   virtual symbol_iterator end_dynamic_symbols() const;
698
699   virtual section_iterator begin_sections() const;
700   virtual section_iterator end_sections() const;
701
702   virtual library_iterator begin_libraries_needed() const;
703   virtual library_iterator end_libraries_needed() const;
704
705   const Elf_Shdr *getDynamicSymbolTableSectionHeader() const {
706     return SymbolTableSections[0];
707   }
708
709   Elf_Dyn_iterator begin_dynamic_table() const;
710   Elf_Dyn_iterator end_dynamic_table() const;
711
712   Elf_Sym_iterator begin_elf_dynamic_symbols() const {
713     const Elf_Shdr *DynSymtab = SymbolTableSections[0];
714     if (DynSymtab)
715       return Elf_Sym_iterator(DynSymtab->sh_entsize,
716                               (const char *)base() + DynSymtab->sh_offset);
717     return Elf_Sym_iterator(0, 0);
718   }
719
720   Elf_Sym_iterator end_elf_dynamic_symbols() const {
721     const Elf_Shdr *DynSymtab = SymbolTableSections[0];
722     if (DynSymtab)
723       return Elf_Sym_iterator(DynSymtab->sh_entsize, (const char *)base() +
724                               DynSymtab->sh_offset + DynSymtab->sh_size);
725     return Elf_Sym_iterator(0, 0);
726   }
727
728   Elf_Rela_Iter beginELFRela(const Elf_Shdr *sec) const {
729     return Elf_Rela_Iter(sec->sh_entsize,
730                          (const char *)(base() + sec->sh_offset));
731   }
732
733   Elf_Rela_Iter endELFRela(const Elf_Shdr *sec) const {
734     return Elf_Rela_Iter(sec->sh_entsize, (const char *)
735                          (base() + sec->sh_offset + sec->sh_size));
736   }
737
738   Elf_Rel_Iter beginELFRel(const Elf_Shdr *sec) const {
739     return Elf_Rel_Iter(sec->sh_entsize,
740                         (const char *)(base() + sec->sh_offset));
741   }
742
743   Elf_Rel_Iter endELFRel(const Elf_Shdr *sec) const {
744     return Elf_Rel_Iter(sec->sh_entsize, (const char *)
745                         (base() + sec->sh_offset + sec->sh_size));
746   }
747
748   /// \brief Iterate over program header table.
749   typedef ELFEntityIterator<const Elf_Phdr> Elf_Phdr_Iter;
750
751   Elf_Phdr_Iter begin_program_headers() const {
752     return Elf_Phdr_Iter(Header->e_phentsize,
753                          (const char*)base() + Header->e_phoff);
754   }
755
756   Elf_Phdr_Iter end_program_headers() const {
757     return Elf_Phdr_Iter(Header->e_phentsize,
758                          (const char*)base() +
759                            Header->e_phoff +
760                            (Header->e_phnum * Header->e_phentsize));
761   }
762
763   virtual uint8_t getBytesInAddress() const;
764   virtual StringRef getFileFormatName() const;
765   virtual StringRef getObjectType() const { return "ELF"; }
766   virtual unsigned getArch() const;
767   virtual StringRef getLoadName() const;
768   virtual error_code getSectionContents(const Elf_Shdr *sec,
769                                         StringRef &Res) const;
770
771   uint64_t getNumSections() const;
772   uint64_t getStringTableIndex() const;
773   ELF::Elf64_Word getSymbolTableIndex(const Elf_Sym *symb) const;
774   const Elf_Shdr *getSection(const Elf_Sym *symb) const;
775   const Elf_Shdr *getElfSection(section_iterator &It) const;
776   const Elf_Sym *getElfSymbol(symbol_iterator &It) const;
777   const Elf_Sym *getElfSymbol(uint32_t index) const;
778
779   // Methods for type inquiry through isa, cast, and dyn_cast
780   bool isDyldType() const { return isDyldELFObject; }
781   static inline bool classof(const Binary *v) {
782     return v->getType() == getELFType(ELFT::TargetEndianness == support::little,
783                                       ELFT::Is64Bits);
784   }
785 };
786
787 // Iterate through the version definitions, and place each Elf_Verdef
788 // in the VersionMap according to its index.
789 template<class ELFT>
790 void ELFObjectFile<ELFT>::LoadVersionDefs(const Elf_Shdr *sec) const {
791   unsigned vd_size = sec->sh_size; // Size of section in bytes
792   unsigned vd_count = sec->sh_info; // Number of Verdef entries
793   const char *sec_start = (const char*)base() + sec->sh_offset;
794   const char *sec_end = sec_start + vd_size;
795   // The first Verdef entry is at the start of the section.
796   const char *p = sec_start;
797   for (unsigned i = 0; i < vd_count; i++) {
798     if (p + sizeof(Elf_Verdef) > sec_end)
799       report_fatal_error("Section ended unexpectedly while scanning "
800                          "version definitions.");
801     const Elf_Verdef *vd = reinterpret_cast<const Elf_Verdef *>(p);
802     if (vd->vd_version != ELF::VER_DEF_CURRENT)
803       report_fatal_error("Unexpected verdef version");
804     size_t index = vd->vd_ndx & ELF::VERSYM_VERSION;
805     if (index >= VersionMap.size())
806       VersionMap.resize(index+1);
807     VersionMap[index] = VersionMapEntry(vd);
808     p += vd->vd_next;
809   }
810 }
811
812 // Iterate through the versions needed section, and place each Elf_Vernaux
813 // in the VersionMap according to its index.
814 template<class ELFT>
815 void ELFObjectFile<ELFT>::LoadVersionNeeds(const Elf_Shdr *sec) const {
816   unsigned vn_size = sec->sh_size; // Size of section in bytes
817   unsigned vn_count = sec->sh_info; // Number of Verneed entries
818   const char *sec_start = (const char*)base() + sec->sh_offset;
819   const char *sec_end = sec_start + vn_size;
820   // The first Verneed entry is at the start of the section.
821   const char *p = sec_start;
822   for (unsigned i = 0; i < vn_count; i++) {
823     if (p + sizeof(Elf_Verneed) > sec_end)
824       report_fatal_error("Section ended unexpectedly while scanning "
825                          "version needed records.");
826     const Elf_Verneed *vn = reinterpret_cast<const Elf_Verneed *>(p);
827     if (vn->vn_version != ELF::VER_NEED_CURRENT)
828       report_fatal_error("Unexpected verneed version");
829     // Iterate through the Vernaux entries
830     const char *paux = p + vn->vn_aux;
831     for (unsigned j = 0; j < vn->vn_cnt; j++) {
832       if (paux + sizeof(Elf_Vernaux) > sec_end)
833         report_fatal_error("Section ended unexpected while scanning auxiliary "
834                            "version needed records.");
835       const Elf_Vernaux *vna = reinterpret_cast<const Elf_Vernaux *>(paux);
836       size_t index = vna->vna_other & ELF::VERSYM_VERSION;
837       if (index >= VersionMap.size())
838         VersionMap.resize(index+1);
839       VersionMap[index] = VersionMapEntry(vna);
840       paux += vna->vna_next;
841     }
842     p += vn->vn_next;
843   }
844 }
845
846 template<class ELFT>
847 void ELFObjectFile<ELFT>::LoadVersionMap() const {
848   // If there is no dynamic symtab or version table, there is nothing to do.
849   if (SymbolTableSections[0] == NULL || dot_gnu_version_sec == NULL)
850     return;
851
852   // Has the VersionMap already been loaded?
853   if (VersionMap.size() > 0)
854     return;
855
856   // The first two version indexes are reserved.
857   // Index 0 is LOCAL, index 1 is GLOBAL.
858   VersionMap.push_back(VersionMapEntry());
859   VersionMap.push_back(VersionMapEntry());
860
861   if (dot_gnu_version_d_sec)
862     LoadVersionDefs(dot_gnu_version_d_sec);
863
864   if (dot_gnu_version_r_sec)
865     LoadVersionNeeds(dot_gnu_version_r_sec);
866 }
867
868 template<class ELFT>
869 void ELFObjectFile<ELFT>::validateSymbol(DataRefImpl Symb) const {
870   const Elf_Sym  *symb = getSymbol(Symb);
871   const Elf_Shdr *SymbolTableSection = SymbolTableSections[Symb.d.b];
872   // FIXME: We really need to do proper error handling in the case of an invalid
873   //        input file. Because we don't use exceptions, I think we'll just pass
874   //        an error object around.
875   if (!(  symb
876         && SymbolTableSection
877         && symb >= (const Elf_Sym*)(base()
878                    + SymbolTableSection->sh_offset)
879         && symb <  (const Elf_Sym*)(base()
880                    + SymbolTableSection->sh_offset
881                    + SymbolTableSection->sh_size)))
882     // FIXME: Proper error handling.
883     report_fatal_error("Symb must point to a valid symbol!");
884 }
885
886 template<class ELFT>
887 error_code ELFObjectFile<ELFT>::getSymbolNext(DataRefImpl Symb,
888                                               SymbolRef &Result) const {
889   validateSymbol(Symb);
890   const Elf_Shdr *SymbolTableSection = SymbolTableSections[Symb.d.b];
891
892   ++Symb.d.a;
893   // Check to see if we are at the end of this symbol table.
894   if (Symb.d.a >= SymbolTableSection->getEntityCount()) {
895     // We are at the end. If there are other symbol tables, jump to them.
896     // If the symbol table is .dynsym, we are iterating dynamic symbols,
897     // and there is only one table of these.
898     if (Symb.d.b != 0) {
899       ++Symb.d.b;
900       Symb.d.a = 1; // The 0th symbol in ELF is fake.
901     }
902     // Otherwise return the terminator.
903     if (Symb.d.b == 0 || Symb.d.b >= SymbolTableSections.size()) {
904       Symb.d.a = std::numeric_limits<uint32_t>::max();
905       Symb.d.b = std::numeric_limits<uint32_t>::max();
906     }
907   }
908
909   Result = SymbolRef(Symb, this);
910   return object_error::success;
911 }
912
913 template<class ELFT>
914 error_code ELFObjectFile<ELFT>::getSymbolName(DataRefImpl Symb,
915                                               StringRef &Result) const {
916   validateSymbol(Symb);
917   const Elf_Sym *symb = getSymbol(Symb);
918   return getSymbolName(SymbolTableSections[Symb.d.b], symb, Result);
919 }
920
921 template<class ELFT>
922 error_code ELFObjectFile<ELFT>::getSymbolVersion(SymbolRef SymRef,
923                                                  StringRef &Version,
924                                                  bool &IsDefault) const {
925   DataRefImpl Symb = SymRef.getRawDataRefImpl();
926   validateSymbol(Symb);
927   const Elf_Sym *symb = getSymbol(Symb);
928   return getSymbolVersion(SymbolTableSections[Symb.d.b], symb,
929                           Version, IsDefault);
930 }
931
932 template<class ELFT>
933 ELF::Elf64_Word ELFObjectFile<ELFT>
934                              ::getSymbolTableIndex(const Elf_Sym *symb) const {
935   if (symb->st_shndx == ELF::SHN_XINDEX)
936     return ExtendedSymbolTable.lookup(symb);
937   return symb->st_shndx;
938 }
939
940 template<class ELFT>
941 const typename ELFObjectFile<ELFT>::Elf_Shdr *
942 ELFObjectFile<ELFT>::getSection(const Elf_Sym *symb) const {
943   if (symb->st_shndx == ELF::SHN_XINDEX)
944     return getSection(ExtendedSymbolTable.lookup(symb));
945   if (symb->st_shndx >= ELF::SHN_LORESERVE)
946     return 0;
947   return getSection(symb->st_shndx);
948 }
949
950 template<class ELFT>
951 const typename ELFObjectFile<ELFT>::Elf_Shdr *
952 ELFObjectFile<ELFT>::getElfSection(section_iterator &It) const {
953   llvm::object::DataRefImpl ShdrRef = It->getRawDataRefImpl();
954   return reinterpret_cast<const Elf_Shdr *>(ShdrRef.p);
955 }
956
957 template<class ELFT>
958 const typename ELFObjectFile<ELFT>::Elf_Sym *
959 ELFObjectFile<ELFT>::getElfSymbol(symbol_iterator &It) const {
960   return getSymbol(It->getRawDataRefImpl());
961 }
962
963 template<class ELFT>
964 const typename ELFObjectFile<ELFT>::Elf_Sym *
965 ELFObjectFile<ELFT>::getElfSymbol(uint32_t index) const {
966   DataRefImpl SymbolData;
967   SymbolData.d.a = index;
968   SymbolData.d.b = 1;
969   return getSymbol(SymbolData);
970 }
971
972 template<class ELFT>
973 error_code ELFObjectFile<ELFT>::getSymbolFileOffset(DataRefImpl Symb,
974                                                     uint64_t &Result) const {
975   validateSymbol(Symb);
976   const Elf_Sym  *symb = getSymbol(Symb);
977   const Elf_Shdr *Section;
978   switch (getSymbolTableIndex(symb)) {
979   case ELF::SHN_COMMON:
980    // Unintialized symbols have no offset in the object file
981   case ELF::SHN_UNDEF:
982     Result = UnknownAddressOrSize;
983     return object_error::success;
984   case ELF::SHN_ABS:
985     Result = symb->st_value;
986     return object_error::success;
987   default: Section = getSection(symb);
988   }
989
990   switch (symb->getType()) {
991   case ELF::STT_SECTION:
992     Result = Section ? Section->sh_offset : UnknownAddressOrSize;
993     return object_error::success;
994   case ELF::STT_FUNC:
995   case ELF::STT_OBJECT:
996   case ELF::STT_NOTYPE:
997     Result = symb->st_value +
998              (Section ? Section->sh_offset : 0);
999     return object_error::success;
1000   default:
1001     Result = UnknownAddressOrSize;
1002     return object_error::success;
1003   }
1004 }
1005
1006 template<class ELFT>
1007 error_code ELFObjectFile<ELFT>::getSymbolAddress(DataRefImpl Symb,
1008                                                  uint64_t &Result) const {
1009   validateSymbol(Symb);
1010   const Elf_Sym  *symb = getSymbol(Symb);
1011   const Elf_Shdr *Section;
1012   switch (getSymbolTableIndex(symb)) {
1013   case ELF::SHN_COMMON:
1014   case ELF::SHN_UNDEF:
1015     Result = UnknownAddressOrSize;
1016     return object_error::success;
1017   case ELF::SHN_ABS:
1018     Result = symb->st_value;
1019     return object_error::success;
1020   default: Section = getSection(symb);
1021   }
1022
1023   switch (symb->getType()) {
1024   case ELF::STT_SECTION:
1025     Result = Section ? Section->sh_addr : UnknownAddressOrSize;
1026     return object_error::success;
1027   case ELF::STT_FUNC:
1028   case ELF::STT_OBJECT:
1029   case ELF::STT_NOTYPE:
1030     bool IsRelocatable;
1031     switch(Header->e_type) {
1032     case ELF::ET_EXEC:
1033     case ELF::ET_DYN:
1034       IsRelocatable = false;
1035       break;
1036     default:
1037       IsRelocatable = true;
1038     }
1039     Result = symb->st_value;
1040     if (IsRelocatable && Section != 0)
1041       Result += Section->sh_addr;
1042     return object_error::success;
1043   default:
1044     Result = UnknownAddressOrSize;
1045     return object_error::success;
1046   }
1047 }
1048
1049 template<class ELFT>
1050 error_code ELFObjectFile<ELFT>::getSymbolSize(DataRefImpl Symb,
1051                                               uint64_t &Result) const {
1052   validateSymbol(Symb);
1053   const Elf_Sym  *symb = getSymbol(Symb);
1054   if (symb->st_size == 0)
1055     Result = UnknownAddressOrSize;
1056   Result = symb->st_size;
1057   return object_error::success;
1058 }
1059
1060 template<class ELFT>
1061 error_code ELFObjectFile<ELFT>::getSymbolNMTypeChar(DataRefImpl Symb,
1062                                                     char &Result) const {
1063   validateSymbol(Symb);
1064   const Elf_Sym  *symb = getSymbol(Symb);
1065   const Elf_Shdr *Section = getSection(symb);
1066
1067   char ret = '?';
1068
1069   if (Section) {
1070     switch (Section->sh_type) {
1071     case ELF::SHT_PROGBITS:
1072     case ELF::SHT_DYNAMIC:
1073       switch (Section->sh_flags) {
1074       case (ELF::SHF_ALLOC | ELF::SHF_EXECINSTR):
1075         ret = 't'; break;
1076       case (ELF::SHF_ALLOC | ELF::SHF_WRITE):
1077         ret = 'd'; break;
1078       case ELF::SHF_ALLOC:
1079       case (ELF::SHF_ALLOC | ELF::SHF_MERGE):
1080       case (ELF::SHF_ALLOC | ELF::SHF_MERGE | ELF::SHF_STRINGS):
1081         ret = 'r'; break;
1082       }
1083       break;
1084     case ELF::SHT_NOBITS: ret = 'b';
1085     }
1086   }
1087
1088   switch (getSymbolTableIndex(symb)) {
1089   case ELF::SHN_UNDEF:
1090     if (ret == '?')
1091       ret = 'U';
1092     break;
1093   case ELF::SHN_ABS: ret = 'a'; break;
1094   case ELF::SHN_COMMON: ret = 'c'; break;
1095   }
1096
1097   switch (symb->getBinding()) {
1098   case ELF::STB_GLOBAL: ret = ::toupper(ret); break;
1099   case ELF::STB_WEAK:
1100     if (getSymbolTableIndex(symb) == ELF::SHN_UNDEF)
1101       ret = 'w';
1102     else
1103       if (symb->getType() == ELF::STT_OBJECT)
1104         ret = 'V';
1105       else
1106         ret = 'W';
1107   }
1108
1109   if (ret == '?' && symb->getType() == ELF::STT_SECTION) {
1110     StringRef name;
1111     if (error_code ec = getSymbolName(Symb, name))
1112       return ec;
1113     Result = StringSwitch<char>(name)
1114       .StartsWith(".debug", 'N')
1115       .StartsWith(".note", 'n')
1116       .Default('?');
1117     return object_error::success;
1118   }
1119
1120   Result = ret;
1121   return object_error::success;
1122 }
1123
1124 template<class ELFT>
1125 error_code ELFObjectFile<ELFT>::getSymbolType(DataRefImpl Symb,
1126                                               SymbolRef::Type &Result) const {
1127   validateSymbol(Symb);
1128   const Elf_Sym  *symb = getSymbol(Symb);
1129
1130   switch (symb->getType()) {
1131   case ELF::STT_NOTYPE:
1132     Result = SymbolRef::ST_Unknown;
1133     break;
1134   case ELF::STT_SECTION:
1135     Result = SymbolRef::ST_Debug;
1136     break;
1137   case ELF::STT_FILE:
1138     Result = SymbolRef::ST_File;
1139     break;
1140   case ELF::STT_FUNC:
1141     Result = SymbolRef::ST_Function;
1142     break;
1143   case ELF::STT_OBJECT:
1144   case ELF::STT_COMMON:
1145   case ELF::STT_TLS:
1146     Result = SymbolRef::ST_Data;
1147     break;
1148   default:
1149     Result = SymbolRef::ST_Other;
1150     break;
1151   }
1152   return object_error::success;
1153 }
1154
1155 template<class ELFT>
1156 error_code ELFObjectFile<ELFT>::getSymbolFlags(DataRefImpl Symb,
1157                                                uint32_t &Result) const {
1158   validateSymbol(Symb);
1159   const Elf_Sym  *symb = getSymbol(Symb);
1160
1161   Result = SymbolRef::SF_None;
1162
1163   if (symb->getBinding() != ELF::STB_LOCAL)
1164     Result |= SymbolRef::SF_Global;
1165
1166   if (symb->getBinding() == ELF::STB_WEAK)
1167     Result |= SymbolRef::SF_Weak;
1168
1169   if (symb->st_shndx == ELF::SHN_ABS)
1170     Result |= SymbolRef::SF_Absolute;
1171
1172   if (symb->getType() == ELF::STT_FILE ||
1173       symb->getType() == ELF::STT_SECTION)
1174     Result |= SymbolRef::SF_FormatSpecific;
1175
1176   if (getSymbolTableIndex(symb) == ELF::SHN_UNDEF)
1177     Result |= SymbolRef::SF_Undefined;
1178
1179   if (symb->getType() == ELF::STT_COMMON ||
1180       getSymbolTableIndex(symb) == ELF::SHN_COMMON)
1181     Result |= SymbolRef::SF_Common;
1182
1183   if (symb->getType() == ELF::STT_TLS)
1184     Result |= SymbolRef::SF_ThreadLocal;
1185
1186   return object_error::success;
1187 }
1188
1189 template<class ELFT>
1190 error_code ELFObjectFile<ELFT>::getSymbolSection(DataRefImpl Symb,
1191                                                  section_iterator &Res) const {
1192   validateSymbol(Symb);
1193   const Elf_Sym  *symb = getSymbol(Symb);
1194   const Elf_Shdr *sec = getSection(symb);
1195   if (!sec)
1196     Res = end_sections();
1197   else {
1198     DataRefImpl Sec;
1199     Sec.p = reinterpret_cast<intptr_t>(sec);
1200     Res = section_iterator(SectionRef(Sec, this));
1201   }
1202   return object_error::success;
1203 }
1204
1205 template<class ELFT>
1206 error_code ELFObjectFile<ELFT>::getSymbolValue(DataRefImpl Symb,
1207                                                uint64_t &Val) const {
1208   validateSymbol(Symb);
1209   const Elf_Sym *symb = getSymbol(Symb);
1210   Val = symb->st_value;
1211   return object_error::success;
1212 }
1213
1214 template<class ELFT>
1215 error_code ELFObjectFile<ELFT>::getSectionNext(DataRefImpl Sec,
1216                                                SectionRef &Result) const {
1217   const uint8_t *sec = reinterpret_cast<const uint8_t *>(Sec.p);
1218   sec += Header->e_shentsize;
1219   Sec.p = reinterpret_cast<intptr_t>(sec);
1220   Result = SectionRef(Sec, this);
1221   return object_error::success;
1222 }
1223
1224 template<class ELFT>
1225 error_code ELFObjectFile<ELFT>::getSectionName(DataRefImpl Sec,
1226                                                StringRef &Result) const {
1227   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1228   Result = StringRef(getString(dot_shstrtab_sec, sec->sh_name));
1229   return object_error::success;
1230 }
1231
1232 template<class ELFT>
1233 error_code ELFObjectFile<ELFT>::getSectionAddress(DataRefImpl Sec,
1234                                                   uint64_t &Result) const {
1235   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1236   Result = sec->sh_addr;
1237   return object_error::success;
1238 }
1239
1240 template<class ELFT>
1241 error_code ELFObjectFile<ELFT>::getSectionSize(DataRefImpl Sec,
1242                                                uint64_t &Result) const {
1243   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1244   Result = sec->sh_size;
1245   return object_error::success;
1246 }
1247
1248 template<class ELFT>
1249 error_code ELFObjectFile<ELFT>::getSectionContents(DataRefImpl Sec,
1250                                                    StringRef &Result) const {
1251   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1252   const char *start = (const char*)base() + sec->sh_offset;
1253   Result = StringRef(start, sec->sh_size);
1254   return object_error::success;
1255 }
1256
1257 template<class ELFT>
1258 error_code ELFObjectFile<ELFT>::getSectionContents(const Elf_Shdr *Sec,
1259                                                    StringRef &Result) const {
1260   const char *start = (const char*)base() + Sec->sh_offset;
1261   Result = StringRef(start, Sec->sh_size);
1262   return object_error::success;
1263 }
1264
1265 template<class ELFT>
1266 error_code ELFObjectFile<ELFT>::getSectionAlignment(DataRefImpl Sec,
1267                                                     uint64_t &Result) const {
1268   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1269   Result = sec->sh_addralign;
1270   return object_error::success;
1271 }
1272
1273 template<class ELFT>
1274 error_code ELFObjectFile<ELFT>::isSectionText(DataRefImpl Sec,
1275                                               bool &Result) const {
1276   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1277   if (sec->sh_flags & ELF::SHF_EXECINSTR)
1278     Result = true;
1279   else
1280     Result = false;
1281   return object_error::success;
1282 }
1283
1284 template<class ELFT>
1285 error_code ELFObjectFile<ELFT>::isSectionData(DataRefImpl Sec,
1286                                               bool &Result) const {
1287   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1288   if (sec->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE)
1289       && sec->sh_type == ELF::SHT_PROGBITS)
1290     Result = true;
1291   else
1292     Result = false;
1293   return object_error::success;
1294 }
1295
1296 template<class ELFT>
1297 error_code ELFObjectFile<ELFT>::isSectionBSS(DataRefImpl Sec,
1298                                              bool &Result) const {
1299   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1300   if (sec->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE)
1301       && sec->sh_type == ELF::SHT_NOBITS)
1302     Result = true;
1303   else
1304     Result = false;
1305   return object_error::success;
1306 }
1307
1308 template<class ELFT>
1309 error_code ELFObjectFile<ELFT>::isSectionRequiredForExecution(
1310     DataRefImpl Sec, bool &Result) const {
1311   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1312   if (sec->sh_flags & ELF::SHF_ALLOC)
1313     Result = true;
1314   else
1315     Result = false;
1316   return object_error::success;
1317 }
1318
1319 template<class ELFT>
1320 error_code ELFObjectFile<ELFT>::isSectionVirtual(DataRefImpl Sec,
1321                                                  bool &Result) const {
1322   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1323   if (sec->sh_type == ELF::SHT_NOBITS)
1324     Result = true;
1325   else
1326     Result = false;
1327   return object_error::success;
1328 }
1329
1330 template<class ELFT>
1331 error_code ELFObjectFile<ELFT>::isSectionZeroInit(DataRefImpl Sec,
1332                                                   bool &Result) const {
1333   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1334   // For ELF, all zero-init sections are virtual (that is, they occupy no space
1335   //   in the object image) and vice versa.
1336   Result = sec->sh_type == ELF::SHT_NOBITS;
1337   return object_error::success;
1338 }
1339
1340 template<class ELFT>
1341 error_code ELFObjectFile<ELFT>::isSectionReadOnlyData(DataRefImpl Sec,
1342                                                       bool &Result) const {
1343   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1344   if (sec->sh_flags & ELF::SHF_WRITE || sec->sh_flags & ELF::SHF_EXECINSTR)
1345     Result = false;
1346   else
1347     Result = true;
1348   return object_error::success;
1349 }
1350
1351 template<class ELFT>
1352 error_code ELFObjectFile<ELFT>::sectionContainsSymbol(DataRefImpl Sec,
1353                                                       DataRefImpl Symb,
1354                                                       bool &Result) const {
1355   // FIXME: Unimplemented.
1356   Result = false;
1357   return object_error::success;
1358 }
1359
1360 template<class ELFT>
1361 relocation_iterator
1362 ELFObjectFile<ELFT>::getSectionRelBegin(DataRefImpl Sec) const {
1363   DataRefImpl RelData;
1364   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1365   typename RelocMap_t::const_iterator ittr = SectionRelocMap.find(sec);
1366   if (sec != 0 && ittr != SectionRelocMap.end()) {
1367     RelData.w.a = getSection(ittr->second[0])->sh_info;
1368     RelData.w.b = ittr->second[0];
1369     RelData.w.c = 0;
1370   }
1371   return relocation_iterator(RelocationRef(RelData, this));
1372 }
1373
1374 template<class ELFT>
1375 relocation_iterator
1376 ELFObjectFile<ELFT>::getSectionRelEnd(DataRefImpl Sec) const {
1377   DataRefImpl RelData;
1378   const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
1379   typename RelocMap_t::const_iterator ittr = SectionRelocMap.find(sec);
1380   if (sec != 0 && ittr != SectionRelocMap.end()) {
1381     // Get the index of the last relocation section for this section.
1382     std::size_t relocsecindex = ittr->second[ittr->second.size() - 1];
1383     const Elf_Shdr *relocsec = getSection(relocsecindex);
1384     RelData.w.a = relocsec->sh_info;
1385     RelData.w.b = relocsecindex;
1386     RelData.w.c = relocsec->sh_size / relocsec->sh_entsize;
1387   }
1388   return relocation_iterator(RelocationRef(RelData, this));
1389 }
1390
1391 // Relocations
1392 template<class ELFT>
1393 error_code ELFObjectFile<ELFT>::getRelocationNext(DataRefImpl Rel,
1394                                                   RelocationRef &Result) const {
1395   ++Rel.w.c;
1396   const Elf_Shdr *relocsec = getSection(Rel.w.b);
1397   if (Rel.w.c >= (relocsec->sh_size / relocsec->sh_entsize)) {
1398     // We have reached the end of the relocations for this section. See if there
1399     // is another relocation section.
1400     typename RelocMap_t::mapped_type relocseclist =
1401       SectionRelocMap.lookup(getSection(Rel.w.a));
1402
1403     // Do a binary search for the current reloc section index (which must be
1404     // present). Then get the next one.
1405     typename RelocMap_t::mapped_type::const_iterator loc =
1406       std::lower_bound(relocseclist.begin(), relocseclist.end(), Rel.w.b);
1407     ++loc;
1408
1409     // If there is no next one, don't do anything. The ++Rel.w.c above sets Rel
1410     // to the end iterator.
1411     if (loc != relocseclist.end()) {
1412       Rel.w.b = *loc;
1413       Rel.w.a = 0;
1414     }
1415   }
1416   Result = RelocationRef(Rel, this);
1417   return object_error::success;
1418 }
1419
1420 template<class ELFT>
1421 error_code ELFObjectFile<ELFT>::getRelocationSymbol(DataRefImpl Rel,
1422                                                     SymbolRef &Result) const {
1423   uint32_t symbolIdx;
1424   const Elf_Shdr *sec = getSection(Rel.w.b);
1425   switch (sec->sh_type) {
1426     default :
1427       report_fatal_error("Invalid section type in Rel!");
1428     case ELF::SHT_REL : {
1429       symbolIdx = getRel(Rel)->getSymbol();
1430       break;
1431     }
1432     case ELF::SHT_RELA : {
1433       symbolIdx = getRela(Rel)->getSymbol();
1434       break;
1435     }
1436   }
1437   DataRefImpl SymbolData;
1438   IndexMap_t::const_iterator it = SymbolTableSectionsIndexMap.find(sec->sh_link);
1439   if (it == SymbolTableSectionsIndexMap.end())
1440     report_fatal_error("Relocation symbol table not found!");
1441   SymbolData.d.a = symbolIdx;
1442   SymbolData.d.b = it->second;
1443   Result = SymbolRef(SymbolData, this);
1444   return object_error::success;
1445 }
1446
1447 template<class ELFT>
1448 error_code ELFObjectFile<ELFT>::getRelocationAddress(DataRefImpl Rel,
1449                                                      uint64_t &Result) const {
1450   uint64_t offset;
1451   const Elf_Shdr *sec = getSection(Rel.w.b);
1452   switch (sec->sh_type) {
1453     default :
1454       report_fatal_error("Invalid section type in Rel!");
1455     case ELF::SHT_REL : {
1456       offset = getRel(Rel)->r_offset;
1457       break;
1458     }
1459     case ELF::SHT_RELA : {
1460       offset = getRela(Rel)->r_offset;
1461       break;
1462     }
1463   }
1464
1465   Result = offset;
1466   return object_error::success;
1467 }
1468
1469 template<class ELFT>
1470 error_code ELFObjectFile<ELFT>::getRelocationOffset(DataRefImpl Rel,
1471                                                     uint64_t &Result) const {
1472   uint64_t offset;
1473   const Elf_Shdr *sec = getSection(Rel.w.b);
1474   switch (sec->sh_type) {
1475     default :
1476       report_fatal_error("Invalid section type in Rel!");
1477     case ELF::SHT_REL : {
1478       offset = getRel(Rel)->r_offset;
1479       break;
1480     }
1481     case ELF::SHT_RELA : {
1482       offset = getRela(Rel)->r_offset;
1483       break;
1484     }
1485   }
1486
1487   Result = offset - sec->sh_addr;
1488   return object_error::success;
1489 }
1490
1491 template<class ELFT>
1492 error_code ELFObjectFile<ELFT>::getRelocationType(DataRefImpl Rel,
1493                                                   uint64_t &Result) const {
1494   const Elf_Shdr *sec = getSection(Rel.w.b);
1495   switch (sec->sh_type) {
1496     default :
1497       report_fatal_error("Invalid section type in Rel!");
1498     case ELF::SHT_REL : {
1499       Result = getRel(Rel)->getType();
1500       break;
1501     }
1502     case ELF::SHT_RELA : {
1503       Result = getRela(Rel)->getType();
1504       break;
1505     }
1506   }
1507   return object_error::success;
1508 }
1509
1510 #define LLVM_ELF_SWITCH_RELOC_TYPE_NAME(enum) \
1511   case ELF::enum: res = #enum; break;
1512
1513 template<class ELFT>
1514 error_code ELFObjectFile<ELFT>::getRelocationTypeName(
1515     DataRefImpl Rel, SmallVectorImpl<char> &Result) const {
1516   const Elf_Shdr *sec = getSection(Rel.w.b);
1517   uint32_t type;
1518   StringRef res;
1519   switch (sec->sh_type) {
1520     default :
1521       return object_error::parse_failed;
1522     case ELF::SHT_REL : {
1523       type = getRel(Rel)->getType();
1524       break;
1525     }
1526     case ELF::SHT_RELA : {
1527       type = getRela(Rel)->getType();
1528       break;
1529     }
1530   }
1531   switch (Header->e_machine) {
1532   case ELF::EM_X86_64:
1533     switch (type) {
1534       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_NONE);
1535       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_64);
1536       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_PC32);
1537       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_GOT32);
1538       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_PLT32);
1539       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_COPY);
1540       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_GLOB_DAT);
1541       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_JUMP_SLOT);
1542       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_RELATIVE);
1543       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_GOTPCREL);
1544       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_32);
1545       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_32S);
1546       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_16);
1547       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_PC16);
1548       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_8);
1549       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_PC8);
1550       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_DTPMOD64);
1551       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_DTPOFF64);
1552       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_TPOFF64);
1553       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_TLSGD);
1554       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_TLSLD);
1555       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_DTPOFF32);
1556       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_GOTTPOFF);
1557       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_TPOFF32);
1558       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_PC64);
1559       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_GOTOFF64);
1560       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_GOTPC32);
1561       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_SIZE32);
1562       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_SIZE64);
1563       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_GOTPC32_TLSDESC);
1564       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_TLSDESC_CALL);
1565       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_X86_64_TLSDESC);
1566     default:
1567       res = "Unknown";
1568     }
1569     break;
1570   case ELF::EM_386:
1571     switch (type) {
1572       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_NONE);
1573       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_32);
1574       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_PC32);
1575       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_GOT32);
1576       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_PLT32);
1577       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_COPY);
1578       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_GLOB_DAT);
1579       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_JUMP_SLOT);
1580       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_RELATIVE);
1581       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_GOTOFF);
1582       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_GOTPC);
1583       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_32PLT);
1584       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_TPOFF);
1585       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_IE);
1586       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_GOTIE);
1587       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_LE);
1588       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_GD);
1589       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_LDM);
1590       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_16);
1591       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_PC16);
1592       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_8);
1593       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_PC8);
1594       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_GD_32);
1595       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_GD_PUSH);
1596       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_GD_CALL);
1597       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_GD_POP);
1598       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_LDM_32);
1599       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_LDM_PUSH);
1600       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_LDM_CALL);
1601       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_LDM_POP);
1602       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_LDO_32);
1603       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_IE_32);
1604       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_LE_32);
1605       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_DTPMOD32);
1606       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_DTPOFF32);
1607       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_TPOFF32);
1608       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_GOTDESC);
1609       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_DESC_CALL);
1610       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_TLS_DESC);
1611       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_386_IRELATIVE);
1612     default:
1613       res = "Unknown";
1614     }
1615     break;
1616   case ELF::EM_AARCH64:
1617     switch (type) {
1618       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_NONE);
1619       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_ABS64);
1620       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_ABS32);
1621       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_ABS16);
1622       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_PREL64);
1623       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_PREL32);
1624       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_PREL16);
1625       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_MOVW_UABS_G0);
1626       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_MOVW_UABS_G0_NC);
1627       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_MOVW_UABS_G1);
1628       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_MOVW_UABS_G1_NC);
1629       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_MOVW_UABS_G2);
1630       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_MOVW_UABS_G2_NC);
1631       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_MOVW_UABS_G3);
1632       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_MOVW_SABS_G0);
1633       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_MOVW_SABS_G1);
1634       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_MOVW_SABS_G2);
1635       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_LD_PREL_LO19);
1636       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_ADR_PREL_LO21);
1637       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_ADR_PREL_PG_HI21);
1638       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_ADD_ABS_LO12_NC);
1639       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_LDST8_ABS_LO12_NC);
1640       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TSTBR14);
1641       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_CONDBR19);
1642       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_JUMP26);
1643       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_CALL26);
1644       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_LDST16_ABS_LO12_NC);
1645       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_LDST32_ABS_LO12_NC);
1646       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_LDST64_ABS_LO12_NC);
1647       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_LDST128_ABS_LO12_NC);
1648       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_ADR_GOT_PAGE);
1649       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_LD64_GOT_LO12_NC);
1650       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_MOVW_DTPREL_G2);
1651       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_MOVW_DTPREL_G1);
1652       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC);
1653       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_MOVW_DTPREL_G0);
1654       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC);
1655       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_ADD_DTPREL_HI12);
1656       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_ADD_DTPREL_LO12);
1657       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC);
1658       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_LDST8_DTPREL_LO12);
1659       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC);
1660       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_LDST16_DTPREL_LO12);
1661       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC);
1662       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_LDST32_DTPREL_LO12);
1663       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC);
1664       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_LDST64_DTPREL_LO12);
1665       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC);
1666       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSIE_MOVW_GOTTPREL_G1);
1667       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC);
1668       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21);
1669       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC);
1670       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSIE_LD_GOTTPREL_PREL19);
1671       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_MOVW_TPREL_G2);
1672       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_MOVW_TPREL_G1);
1673       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_MOVW_TPREL_G1_NC);
1674       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_MOVW_TPREL_G0);
1675       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_MOVW_TPREL_G0_NC);
1676       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_ADD_TPREL_HI12);
1677       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_ADD_TPREL_LO12);
1678       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_ADD_TPREL_LO12_NC);
1679       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_LDST8_TPREL_LO12);
1680       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC);
1681       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_LDST16_TPREL_LO12);
1682       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC);
1683       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_LDST32_TPREL_LO12);
1684       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC);
1685       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_LDST64_TPREL_LO12);
1686       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC);
1687       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSDESC_ADR_PAGE);
1688       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSDESC_LD64_LO12_NC);
1689       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSDESC_ADD_LO12_NC);
1690       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_AARCH64_TLSDESC_CALL);
1691
1692     default:
1693       res = "Unknown";
1694     }
1695     break;
1696   case ELF::EM_ARM:
1697     switch (type) {
1698       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_NONE);
1699       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PC24);
1700       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ABS32);
1701       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_REL32);
1702       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDR_PC_G0);
1703       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ABS16);
1704       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ABS12);
1705       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_ABS5);
1706       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ABS8);
1707       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_SBREL32);
1708       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_CALL);
1709       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_PC8);
1710       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_BREL_ADJ);
1711       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_DESC);
1712       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_SWI8);
1713       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_XPC25);
1714       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_XPC22);
1715       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_DTPMOD32);
1716       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_DTPOFF32);
1717       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_TPOFF32);
1718       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_COPY);
1719       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_GLOB_DAT);
1720       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_JUMP_SLOT);
1721       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_RELATIVE);
1722       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_GOTOFF32);
1723       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_BASE_PREL);
1724       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_GOT_BREL);
1725       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PLT32);
1726       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_CALL);
1727       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_JUMP24);
1728       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_JUMP24);
1729       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_BASE_ABS);
1730       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_PCREL_7_0);
1731       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_PCREL_15_8);
1732       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_PCREL_23_15);
1733       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDR_SBREL_11_0_NC);
1734       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_SBREL_19_12_NC);
1735       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_SBREL_27_20_CK);
1736       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TARGET1);
1737       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_SBREL31);
1738       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_V4BX);
1739       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TARGET2);
1740       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PREL31);
1741       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_MOVW_ABS_NC);
1742       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_MOVT_ABS);
1743       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_MOVW_PREL_NC);
1744       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_MOVT_PREL);
1745       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_MOVW_ABS_NC);
1746       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_MOVT_ABS);
1747       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_MOVW_PREL_NC);
1748       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_MOVT_PREL);
1749       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_JUMP19);
1750       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_JUMP6);
1751       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_ALU_PREL_11_0);
1752       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_PC12);
1753       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ABS32_NOI);
1754       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_REL32_NOI);
1755       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_PC_G0_NC);
1756       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_PC_G0);
1757       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_PC_G1_NC);
1758       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_PC_G1);
1759       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_PC_G2);
1760       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDR_PC_G1);
1761       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDR_PC_G2);
1762       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDRS_PC_G0);
1763       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDRS_PC_G1);
1764       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDRS_PC_G2);
1765       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDC_PC_G0);
1766       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDC_PC_G1);
1767       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDC_PC_G2);
1768       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_SB_G0_NC);
1769       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_SB_G0);
1770       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_SB_G1_NC);
1771       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_SB_G1);
1772       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ALU_SB_G2);
1773       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDR_SB_G0);
1774       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDR_SB_G1);
1775       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDR_SB_G2);
1776       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDRS_SB_G0);
1777       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDRS_SB_G1);
1778       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDRS_SB_G2);
1779       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDC_SB_G0);
1780       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDC_SB_G1);
1781       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_LDC_SB_G2);
1782       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_MOVW_BREL_NC);
1783       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_MOVT_BREL);
1784       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_MOVW_BREL);
1785       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_MOVW_BREL_NC);
1786       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_MOVT_BREL);
1787       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_MOVW_BREL);
1788       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_GOTDESC);
1789       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_CALL);
1790       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_DESCSEQ);
1791       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_TLS_CALL);
1792       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PLT32_ABS);
1793       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_GOT_ABS);
1794       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_GOT_PREL);
1795       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_GOT_BREL12);
1796       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_GOTOFF12);
1797       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_GOTRELAX);
1798       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_GNU_VTENTRY);
1799       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_GNU_VTINHERIT);
1800       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_JUMP11);
1801       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_JUMP8);
1802       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_GD32);
1803       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_LDM32);
1804       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_LDO32);
1805       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_IE32);
1806       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_LE32);
1807       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_LDO12);
1808       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_LE12);
1809       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_TLS_IE12GP);
1810       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_0);
1811       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_1);
1812       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_2);
1813       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_3);
1814       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_4);
1815       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_5);
1816       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_6);
1817       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_7);
1818       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_8);
1819       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_9);
1820       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_10);
1821       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_11);
1822       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_12);
1823       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_13);
1824       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_14);
1825       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_PRIVATE_15);
1826       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_ME_TOO);
1827       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_TLS_DESCSEQ16);
1828       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_ARM_THM_TLS_DESCSEQ32);
1829     default:
1830       res = "Unknown";
1831     }
1832     break;
1833   case ELF::EM_HEXAGON:
1834     switch (type) {
1835       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_NONE);
1836       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_B22_PCREL);
1837       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_B15_PCREL);
1838       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_B7_PCREL);
1839       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_LO16);
1840       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_HI16);
1841       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_32);
1842       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_16);
1843       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_8);
1844       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GPREL16_0);
1845       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GPREL16_1);
1846       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GPREL16_2);
1847       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GPREL16_3);
1848       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_HL16);
1849       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_B13_PCREL);
1850       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_B9_PCREL);
1851       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_B32_PCREL_X);
1852       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_32_6_X);
1853       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_B22_PCREL_X);
1854       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_B15_PCREL_X);
1855       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_B13_PCREL_X);
1856       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_B9_PCREL_X);
1857       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_B7_PCREL_X);
1858       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_16_X);
1859       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_12_X);
1860       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_11_X);
1861       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_10_X);
1862       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_9_X);
1863       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_8_X);
1864       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_7_X);
1865       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_6_X);
1866       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_32_PCREL);
1867       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_COPY);
1868       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GLOB_DAT);
1869       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_JMP_SLOT);
1870       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_RELATIVE);
1871       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_PLT_B22_PCREL);
1872       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GOTREL_LO16);
1873       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GOTREL_HI16);
1874       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GOTREL_32);
1875       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GOT_LO16);
1876       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GOT_HI16);
1877       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GOT_32);
1878       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GOT_16);
1879       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_DTPMOD_32);
1880       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_DTPREL_LO16);
1881       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_DTPREL_HI16);
1882       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_DTPREL_32);
1883       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_DTPREL_16);
1884       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GD_PLT_B22_PCREL);
1885       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GD_GOT_LO16);
1886       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GD_GOT_HI16);
1887       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GD_GOT_32);
1888       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GD_GOT_16);
1889       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_IE_LO16);
1890       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_IE_HI16);
1891       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_IE_32);
1892       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_IE_GOT_LO16);
1893       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_IE_GOT_HI16);
1894       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_IE_GOT_32);
1895       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_IE_GOT_16);
1896       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_TPREL_LO16);
1897       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_TPREL_HI16);
1898       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_TPREL_32);
1899       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_TPREL_16);
1900       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_6_PCREL_X);
1901       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GOTREL_32_6_X);
1902       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GOTREL_16_X);
1903       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GOTREL_11_X);
1904       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GOT_32_6_X);
1905       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GOT_16_X);
1906       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GOT_11_X);
1907       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_DTPREL_32_6_X);
1908       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_DTPREL_16_X);
1909       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_DTPREL_11_X);
1910       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GD_GOT_32_6_X);
1911       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GD_GOT_16_X);
1912       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_GD_GOT_11_X);
1913       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_IE_32_6_X);
1914       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_IE_16_X);
1915       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_IE_GOT_32_6_X);
1916       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_IE_GOT_16_X);
1917       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_IE_GOT_11_X);
1918       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_TPREL_32_6_X);
1919       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_TPREL_16_X);
1920       LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_HEX_TPREL_11_X);
1921     default:
1922       res = "Unknown";
1923     }
1924     break;
1925   default:
1926     res = "Unknown";
1927   }
1928   Result.append(res.begin(), res.end());
1929   return object_error::success;
1930 }
1931
1932 #undef LLVM_ELF_SWITCH_RELOC_TYPE_NAME
1933
1934 template<class ELFT>
1935 error_code ELFObjectFile<ELFT>::getRelocationAdditionalInfo(
1936     DataRefImpl Rel, int64_t &Result) const {
1937   const Elf_Shdr *sec = getSection(Rel.w.b);
1938   switch (sec->sh_type) {
1939     default :
1940       report_fatal_error("Invalid section type in Rel!");
1941     case ELF::SHT_REL : {
1942       Result = 0;
1943       return object_error::success;
1944     }
1945     case ELF::SHT_RELA : {
1946       Result = getRela(Rel)->r_addend;
1947       return object_error::success;
1948     }
1949   }
1950 }
1951
1952 template<class ELFT>
1953 error_code ELFObjectFile<ELFT>::getRelocationValueString(
1954     DataRefImpl Rel, SmallVectorImpl<char> &Result) const {
1955   const Elf_Shdr *sec = getSection(Rel.w.b);
1956   uint8_t type;
1957   StringRef res;
1958   int64_t addend = 0;
1959   uint16_t symbol_index = 0;
1960   switch (sec->sh_type) {
1961     default:
1962       return object_error::parse_failed;
1963     case ELF::SHT_REL: {
1964       type = getRel(Rel)->getType();
1965       symbol_index = getRel(Rel)->getSymbol();
1966       // TODO: Read implicit addend from section data.
1967       break;
1968     }
1969     case ELF::SHT_RELA: {
1970       type = getRela(Rel)->getType();
1971       symbol_index = getRela(Rel)->getSymbol();
1972       addend = getRela(Rel)->r_addend;
1973       break;
1974     }
1975   }
1976   const Elf_Sym *symb = getEntry<Elf_Sym>(sec->sh_link, symbol_index);
1977   StringRef symname;
1978   if (error_code ec = getSymbolName(getSection(sec->sh_link), symb, symname))
1979     return ec;
1980   switch (Header->e_machine) {
1981   case ELF::EM_X86_64:
1982     switch (type) {
1983     case ELF::R_X86_64_PC8:
1984     case ELF::R_X86_64_PC16:
1985     case ELF::R_X86_64_PC32: {
1986         std::string fmtbuf;
1987         raw_string_ostream fmt(fmtbuf);
1988         fmt << symname << (addend < 0 ? "" : "+") << addend << "-P";
1989         fmt.flush();
1990         Result.append(fmtbuf.begin(), fmtbuf.end());
1991       }
1992       break;
1993     case ELF::R_X86_64_8:
1994     case ELF::R_X86_64_16:
1995     case ELF::R_X86_64_32:
1996     case ELF::R_X86_64_32S:
1997     case ELF::R_X86_64_64: {
1998         std::string fmtbuf;
1999         raw_string_ostream fmt(fmtbuf);
2000         fmt << symname << (addend < 0 ? "" : "+") << addend;
2001         fmt.flush();
2002         Result.append(fmtbuf.begin(), fmtbuf.end());
2003       }
2004       break;
2005     default:
2006       res = "Unknown";
2007     }
2008     break;
2009   case ELF::EM_AARCH64:
2010   case ELF::EM_ARM:
2011   case ELF::EM_HEXAGON:
2012     res = symname;
2013     break;
2014   default:
2015     res = "Unknown";
2016   }
2017   if (Result.empty())
2018     Result.append(res.begin(), res.end());
2019   return object_error::success;
2020 }
2021
2022 // Verify that the last byte in the string table in a null.
2023 template<class ELFT>
2024 void ELFObjectFile<ELFT>::VerifyStrTab(const Elf_Shdr *sh) const {
2025   const char *strtab = (const char*)base() + sh->sh_offset;
2026   if (strtab[sh->sh_size - 1] != 0)
2027     // FIXME: Proper error handling.
2028     report_fatal_error("String table must end with a null terminator!");
2029 }
2030
2031 template<class ELFT>
2032 ELFObjectFile<ELFT>::ELFObjectFile(MemoryBuffer *Object, error_code &ec)
2033   : ObjectFile(getELFType(
2034       static_cast<endianness>(ELFT::TargetEndianness) == support::little,
2035       ELFT::Is64Bits),
2036       Object,
2037       ec)
2038   , isDyldELFObject(false)
2039   , SectionHeaderTable(0)
2040   , dot_shstrtab_sec(0)
2041   , dot_strtab_sec(0)
2042   , dot_dynstr_sec(0)
2043   , dot_dynamic_sec(0)
2044   , dot_gnu_version_sec(0)
2045   , dot_gnu_version_r_sec(0)
2046   , dot_gnu_version_d_sec(0)
2047   , dt_soname(0)
2048  {
2049
2050   const uint64_t FileSize = Data->getBufferSize();
2051
2052   if (sizeof(Elf_Ehdr) > FileSize)
2053     // FIXME: Proper error handling.
2054     report_fatal_error("File too short!");
2055
2056   Header = reinterpret_cast<const Elf_Ehdr *>(base());
2057
2058   if (Header->e_shoff == 0)
2059     return;
2060
2061   const uint64_t SectionTableOffset = Header->e_shoff;
2062
2063   if (SectionTableOffset + sizeof(Elf_Shdr) > FileSize)
2064     // FIXME: Proper error handling.
2065     report_fatal_error("Section header table goes past end of file!");
2066
2067   // The getNumSections() call below depends on SectionHeaderTable being set.
2068   SectionHeaderTable =
2069     reinterpret_cast<const Elf_Shdr *>(base() + SectionTableOffset);
2070   const uint64_t SectionTableSize = getNumSections() * Header->e_shentsize;
2071
2072   if (SectionTableOffset + SectionTableSize > FileSize)
2073     // FIXME: Proper error handling.
2074     report_fatal_error("Section table goes past end of file!");
2075
2076   // To find the symbol tables we walk the section table to find SHT_SYMTAB.
2077   const Elf_Shdr* SymbolTableSectionHeaderIndex = 0;
2078   const Elf_Shdr* sh = SectionHeaderTable;
2079
2080   // Reserve SymbolTableSections[0] for .dynsym
2081   SymbolTableSections.push_back(NULL);
2082
2083   for (uint64_t i = 0, e = getNumSections(); i != e; ++i) {
2084     switch (sh->sh_type) {
2085     case ELF::SHT_SYMTAB_SHNDX: {
2086       if (SymbolTableSectionHeaderIndex)
2087         // FIXME: Proper error handling.
2088         report_fatal_error("More than one .symtab_shndx!");
2089       SymbolTableSectionHeaderIndex = sh;
2090       break;
2091     }
2092     case ELF::SHT_SYMTAB: {
2093       SymbolTableSectionsIndexMap[i] = SymbolTableSections.size();
2094       SymbolTableSections.push_back(sh);
2095       break;
2096     }
2097     case ELF::SHT_DYNSYM: {
2098       if (SymbolTableSections[0] != NULL)
2099         // FIXME: Proper error handling.
2100         report_fatal_error("More than one .dynsym!");
2101       SymbolTableSectionsIndexMap[i] = 0;
2102       SymbolTableSections[0] = sh;
2103       break;
2104     }
2105     case ELF::SHT_REL:
2106     case ELF::SHT_RELA: {
2107       SectionRelocMap[getSection(sh->sh_info)].push_back(i);
2108       break;
2109     }
2110     case ELF::SHT_DYNAMIC: {
2111       if (dot_dynamic_sec != NULL)
2112         // FIXME: Proper error handling.
2113         report_fatal_error("More than one .dynamic!");
2114       dot_dynamic_sec = sh;
2115       break;
2116     }
2117     case ELF::SHT_GNU_versym: {
2118       if (dot_gnu_version_sec != NULL)
2119         // FIXME: Proper error handling.
2120         report_fatal_error("More than one .gnu.version section!");
2121       dot_gnu_version_sec = sh;
2122       break;
2123     }
2124     case ELF::SHT_GNU_verdef: {
2125       if (dot_gnu_version_d_sec != NULL)
2126         // FIXME: Proper error handling.
2127         report_fatal_error("More than one .gnu.version_d section!");
2128       dot_gnu_version_d_sec = sh;
2129       break;
2130     }
2131     case ELF::SHT_GNU_verneed: {
2132       if (dot_gnu_version_r_sec != NULL)
2133         // FIXME: Proper error handling.
2134         report_fatal_error("More than one .gnu.version_r section!");
2135       dot_gnu_version_r_sec = sh;
2136       break;
2137     }
2138     }
2139     ++sh;
2140   }
2141
2142   // Sort section relocation lists by index.
2143   for (typename RelocMap_t::iterator i = SectionRelocMap.begin(),
2144                                      e = SectionRelocMap.end(); i != e; ++i) {
2145     std::sort(i->second.begin(), i->second.end());
2146   }
2147
2148   // Get string table sections.
2149   dot_shstrtab_sec = getSection(getStringTableIndex());
2150   if (dot_shstrtab_sec) {
2151     // Verify that the last byte in the string table in a null.
2152     VerifyStrTab(dot_shstrtab_sec);
2153   }
2154
2155   // Merge this into the above loop.
2156   for (const char *i = reinterpret_cast<const char *>(SectionHeaderTable),
2157                   *e = i + getNumSections() * Header->e_shentsize;
2158                    i != e; i += Header->e_shentsize) {
2159     const Elf_Shdr *sh = reinterpret_cast<const Elf_Shdr*>(i);
2160     if (sh->sh_type == ELF::SHT_STRTAB) {
2161       StringRef SectionName(getString(dot_shstrtab_sec, sh->sh_name));
2162       if (SectionName == ".strtab") {
2163         if (dot_strtab_sec != 0)
2164           // FIXME: Proper error handling.
2165           report_fatal_error("Already found section named .strtab!");
2166         dot_strtab_sec = sh;
2167         VerifyStrTab(dot_strtab_sec);
2168       } else if (SectionName == ".dynstr") {
2169         if (dot_dynstr_sec != 0)
2170           // FIXME: Proper error handling.
2171           report_fatal_error("Already found section named .dynstr!");
2172         dot_dynstr_sec = sh;
2173         VerifyStrTab(dot_dynstr_sec);
2174       }
2175     }
2176   }
2177
2178   // Build symbol name side-mapping if there is one.
2179   if (SymbolTableSectionHeaderIndex) {
2180     const Elf_Word *ShndxTable = reinterpret_cast<const Elf_Word*>(base() +
2181                                       SymbolTableSectionHeaderIndex->sh_offset);
2182     error_code ec;
2183     for (symbol_iterator si = begin_symbols(),
2184                          se = end_symbols(); si != se; si.increment(ec)) {
2185       if (ec)
2186         report_fatal_error("Fewer extended symbol table entries than symbols!");
2187       if (*ShndxTable != ELF::SHN_UNDEF)
2188         ExtendedSymbolTable[getSymbol(si->getRawDataRefImpl())] = *ShndxTable;
2189       ++ShndxTable;
2190     }
2191   }
2192 }
2193
2194 // Get the symbol table index in the symtab section given a symbol
2195 template<class ELFT>
2196 uint64_t ELFObjectFile<ELFT>::getSymbolIndex(const Elf_Sym *Sym) const {
2197   assert(SymbolTableSections.size() == 1 && "Only one symbol table supported!");
2198   const Elf_Shdr *SymTab = *SymbolTableSections.begin();
2199   uintptr_t SymLoc = uintptr_t(Sym);
2200   uintptr_t SymTabLoc = uintptr_t(base() + SymTab->sh_offset);
2201   assert(SymLoc > SymTabLoc && "Symbol not in symbol table!");
2202   uint64_t SymOffset = SymLoc - SymTabLoc;
2203   assert(SymOffset % SymTab->sh_entsize == 0 &&
2204          "Symbol not multiple of symbol size!");
2205   return SymOffset / SymTab->sh_entsize;
2206 }
2207
2208 template<class ELFT>
2209 symbol_iterator ELFObjectFile<ELFT>::begin_symbols() const {
2210   DataRefImpl SymbolData;
2211   if (SymbolTableSections.size() <= 1) {
2212     SymbolData.d.a = std::numeric_limits<uint32_t>::max();
2213     SymbolData.d.b = std::numeric_limits<uint32_t>::max();
2214   } else {
2215     SymbolData.d.a = 1; // The 0th symbol in ELF is fake.
2216     SymbolData.d.b = 1; // The 0th table is .dynsym
2217   }
2218   return symbol_iterator(SymbolRef(SymbolData, this));
2219 }
2220
2221 template<class ELFT>
2222 symbol_iterator ELFObjectFile<ELFT>::end_symbols() const {
2223   DataRefImpl SymbolData;
2224   SymbolData.d.a = std::numeric_limits<uint32_t>::max();
2225   SymbolData.d.b = std::numeric_limits<uint32_t>::max();
2226   return symbol_iterator(SymbolRef(SymbolData, this));
2227 }
2228
2229 template<class ELFT>
2230 symbol_iterator ELFObjectFile<ELFT>::begin_dynamic_symbols() const {
2231   DataRefImpl SymbolData;
2232   if (SymbolTableSections[0] == NULL) {
2233     SymbolData.d.a = std::numeric_limits<uint32_t>::max();
2234     SymbolData.d.b = std::numeric_limits<uint32_t>::max();
2235   } else {
2236     SymbolData.d.a = 1; // The 0th symbol in ELF is fake.
2237     SymbolData.d.b = 0; // The 0th table is .dynsym
2238   }
2239   return symbol_iterator(SymbolRef(SymbolData, this));
2240 }
2241
2242 template<class ELFT>
2243 symbol_iterator ELFObjectFile<ELFT>::end_dynamic_symbols() const {
2244   DataRefImpl SymbolData;
2245   SymbolData.d.a = std::numeric_limits<uint32_t>::max();
2246   SymbolData.d.b = std::numeric_limits<uint32_t>::max();
2247   return symbol_iterator(SymbolRef(SymbolData, this));
2248 }
2249
2250 template<class ELFT>
2251 section_iterator ELFObjectFile<ELFT>::begin_sections() const {
2252   DataRefImpl ret;
2253   ret.p = reinterpret_cast<intptr_t>(base() + Header->e_shoff);
2254   return section_iterator(SectionRef(ret, this));
2255 }
2256
2257 template<class ELFT>
2258 section_iterator ELFObjectFile<ELFT>::end_sections() const {
2259   DataRefImpl ret;
2260   ret.p = reinterpret_cast<intptr_t>(base()
2261                                      + Header->e_shoff
2262                                      + (Header->e_shentsize*getNumSections()));
2263   return section_iterator(SectionRef(ret, this));
2264 }
2265
2266 template<class ELFT>
2267 typename ELFObjectFile<ELFT>::Elf_Dyn_iterator
2268 ELFObjectFile<ELFT>::begin_dynamic_table() const {
2269   if (dot_dynamic_sec)
2270     return Elf_Dyn_iterator(dot_dynamic_sec->sh_entsize,
2271                             (const char *)base() + dot_dynamic_sec->sh_offset);
2272   return Elf_Dyn_iterator(0, 0);
2273 }
2274
2275 template<class ELFT>
2276 typename ELFObjectFile<ELFT>::Elf_Dyn_iterator
2277 ELFObjectFile<ELFT>::end_dynamic_table() const {
2278   if (dot_dynamic_sec)
2279     return Elf_Dyn_iterator(dot_dynamic_sec->sh_entsize,
2280                             (const char *)base() + dot_dynamic_sec->sh_offset +
2281                             dot_dynamic_sec->sh_size);
2282   return Elf_Dyn_iterator(0, 0);
2283 }
2284
2285 template<class ELFT>
2286 StringRef ELFObjectFile<ELFT>::getLoadName() const {
2287   if (!dt_soname) {
2288     // Find the DT_SONAME entry
2289     Elf_Dyn_iterator it = begin_dynamic_table();
2290     Elf_Dyn_iterator ie = end_dynamic_table();
2291     for (; it != ie; ++it) {
2292       if (it->getTag() == ELF::DT_SONAME)
2293         break;
2294     }
2295     if (it != ie) {
2296       if (dot_dynstr_sec == NULL)
2297         report_fatal_error("Dynamic string table is missing");
2298       dt_soname = getString(dot_dynstr_sec, it->getVal());
2299     } else {
2300       dt_soname = "";
2301     }
2302   }
2303   return dt_soname;
2304 }
2305
2306 template<class ELFT>
2307 library_iterator ELFObjectFile<ELFT>::begin_libraries_needed() const {
2308   // Find the first DT_NEEDED entry
2309   Elf_Dyn_iterator i = begin_dynamic_table();
2310   Elf_Dyn_iterator e = end_dynamic_table();
2311   for (; i != e; ++i) {
2312     if (i->getTag() == ELF::DT_NEEDED)
2313       break;
2314   }
2315
2316   DataRefImpl DRI;
2317   DRI.p = reinterpret_cast<uintptr_t>(i.get());
2318   return library_iterator(LibraryRef(DRI, this));
2319 }
2320
2321 template<class ELFT>
2322 error_code ELFObjectFile<ELFT>::getLibraryNext(DataRefImpl Data,
2323                                                LibraryRef &Result) const {
2324   // Use the same DataRefImpl format as DynRef.
2325   Elf_Dyn_iterator i = Elf_Dyn_iterator(dot_dynamic_sec->sh_entsize,
2326                                         reinterpret_cast<const char *>(Data.p));
2327   Elf_Dyn_iterator e = end_dynamic_table();
2328
2329   // Skip the current dynamic table entry.
2330   ++i;
2331
2332   // Find the next DT_NEEDED entry.
2333   for (; i != e && i->getTag() != ELF::DT_NEEDED; ++i);
2334
2335   DataRefImpl DRI;
2336   DRI.p = reinterpret_cast<uintptr_t>(i.get());
2337   Result = LibraryRef(DRI, this);
2338   return object_error::success;
2339 }
2340
2341 template<class ELFT>
2342 error_code ELFObjectFile<ELFT>::getLibraryPath(DataRefImpl Data,
2343                                                StringRef &Res) const {
2344   Elf_Dyn_iterator i = Elf_Dyn_iterator(dot_dynamic_sec->sh_entsize,
2345                                         reinterpret_cast<const char *>(Data.p));
2346   if (i == end_dynamic_table())
2347     report_fatal_error("getLibraryPath() called on iterator end");
2348
2349   if (i->getTag() != ELF::DT_NEEDED)
2350     report_fatal_error("Invalid library_iterator");
2351
2352   // This uses .dynstr to lookup the name of the DT_NEEDED entry.
2353   // THis works as long as DT_STRTAB == .dynstr. This is true most of
2354   // the time, but the specification allows exceptions.
2355   // TODO: This should really use DT_STRTAB instead. Doing this requires
2356   // reading the program headers.
2357   if (dot_dynstr_sec == NULL)
2358     report_fatal_error("Dynamic string table is missing");
2359   Res = getString(dot_dynstr_sec, i->getVal());
2360   return object_error::success;
2361 }
2362
2363 template<class ELFT>
2364 library_iterator ELFObjectFile<ELFT>::end_libraries_needed() const {
2365   Elf_Dyn_iterator e = end_dynamic_table();
2366   DataRefImpl DRI;
2367   DRI.p = reinterpret_cast<uintptr_t>(e.get());
2368   return library_iterator(LibraryRef(DRI, this));
2369 }
2370
2371 template<class ELFT>
2372 uint8_t ELFObjectFile<ELFT>::getBytesInAddress() const {
2373   return ELFT::Is64Bits ? 8 : 4;
2374 }
2375
2376 template<class ELFT>
2377 StringRef ELFObjectFile<ELFT>::getFileFormatName() const {
2378   switch(Header->e_ident[ELF::EI_CLASS]) {
2379   case ELF::ELFCLASS32:
2380     switch(Header->e_machine) {
2381     case ELF::EM_386:
2382       return "ELF32-i386";
2383     case ELF::EM_X86_64:
2384       return "ELF32-x86-64";
2385     case ELF::EM_ARM:
2386       return "ELF32-arm";
2387     case ELF::EM_HEXAGON:
2388       return "ELF32-hexagon";
2389     case ELF::EM_MIPS:
2390       return "ELF32-mips";
2391     default:
2392       return "ELF32-unknown";
2393     }
2394   case ELF::ELFCLASS64:
2395     switch(Header->e_machine) {
2396     case ELF::EM_386:
2397       return "ELF64-i386";
2398     case ELF::EM_X86_64:
2399       return "ELF64-x86-64";
2400     case ELF::EM_AARCH64:
2401       return "ELF64-aarch64";
2402     case ELF::EM_PPC64:
2403       return "ELF64-ppc64";
2404     default:
2405       return "ELF64-unknown";
2406     }
2407   default:
2408     // FIXME: Proper error handling.
2409     report_fatal_error("Invalid ELFCLASS!");
2410   }
2411 }
2412
2413 template<class ELFT>
2414 unsigned ELFObjectFile<ELFT>::getArch() const {
2415   switch(Header->e_machine) {
2416   case ELF::EM_386:
2417     return Triple::x86;
2418   case ELF::EM_X86_64:
2419     return Triple::x86_64;
2420   case ELF::EM_AARCH64:
2421     return Triple::aarch64;
2422   case ELF::EM_ARM:
2423     return Triple::arm;
2424   case ELF::EM_HEXAGON:
2425     return Triple::hexagon;
2426   case ELF::EM_MIPS:
2427     return (ELFT::TargetEndianness == support::little) ?
2428            Triple::mipsel : Triple::mips;
2429   case ELF::EM_PPC64:
2430     return Triple::ppc64;
2431   default:
2432     return Triple::UnknownArch;
2433   }
2434 }
2435
2436 template<class ELFT>
2437 uint64_t ELFObjectFile<ELFT>::getNumSections() const {
2438   assert(Header && "Header not initialized!");
2439   if (Header->e_shnum == ELF::SHN_UNDEF) {
2440     assert(SectionHeaderTable && "SectionHeaderTable not initialized!");
2441     return SectionHeaderTable->sh_size;
2442   }
2443   return Header->e_shnum;
2444 }
2445
2446 template<class ELFT>
2447 uint64_t
2448 ELFObjectFile<ELFT>::getStringTableIndex() const {
2449   if (Header->e_shnum == ELF::SHN_UNDEF) {
2450     if (Header->e_shstrndx == ELF::SHN_HIRESERVE)
2451       return SectionHeaderTable->sh_link;
2452     if (Header->e_shstrndx >= getNumSections())
2453       return 0;
2454   }
2455   return Header->e_shstrndx;
2456 }
2457
2458 template<class ELFT>
2459 template<typename T>
2460 inline const T *
2461 ELFObjectFile<ELFT>::getEntry(uint16_t Section, uint32_t Entry) const {
2462   return getEntry<T>(getSection(Section), Entry);
2463 }
2464
2465 template<class ELFT>
2466 template<typename T>
2467 inline const T *
2468 ELFObjectFile<ELFT>::getEntry(const Elf_Shdr * Section, uint32_t Entry) const {
2469   return reinterpret_cast<const T *>(
2470            base()
2471            + Section->sh_offset
2472            + (Entry * Section->sh_entsize));
2473 }
2474
2475 template<class ELFT>
2476 const typename ELFObjectFile<ELFT>::Elf_Sym *
2477 ELFObjectFile<ELFT>::getSymbol(DataRefImpl Symb) const {
2478   return getEntry<Elf_Sym>(SymbolTableSections[Symb.d.b], Symb.d.a);
2479 }
2480
2481 template<class ELFT>
2482 const typename ELFObjectFile<ELFT>::Elf_Rel *
2483 ELFObjectFile<ELFT>::getRel(DataRefImpl Rel) const {
2484   return getEntry<Elf_Rel>(Rel.w.b, Rel.w.c);
2485 }
2486
2487 template<class ELFT>
2488 const typename ELFObjectFile<ELFT>::Elf_Rela *
2489 ELFObjectFile<ELFT>::getRela(DataRefImpl Rela) const {
2490   return getEntry<Elf_Rela>(Rela.w.b, Rela.w.c);
2491 }
2492
2493 template<class ELFT>
2494 const typename ELFObjectFile<ELFT>::Elf_Shdr *
2495 ELFObjectFile<ELFT>::getSection(DataRefImpl Symb) const {
2496   const Elf_Shdr *sec = getSection(Symb.d.b);
2497   if (sec->sh_type != ELF::SHT_SYMTAB || sec->sh_type != ELF::SHT_DYNSYM)
2498     // FIXME: Proper error handling.
2499     report_fatal_error("Invalid symbol table section!");
2500   return sec;
2501 }
2502
2503 template<class ELFT>
2504 const typename ELFObjectFile<ELFT>::Elf_Shdr *
2505 ELFObjectFile<ELFT>::getSection(uint32_t index) const {
2506   if (index == 0)
2507     return 0;
2508   if (!SectionHeaderTable || index >= getNumSections())
2509     // FIXME: Proper error handling.
2510     report_fatal_error("Invalid section index!");
2511
2512   return reinterpret_cast<const Elf_Shdr *>(
2513          reinterpret_cast<const char *>(SectionHeaderTable)
2514          + (index * Header->e_shentsize));
2515 }
2516
2517 template<class ELFT>
2518 const char *ELFObjectFile<ELFT>::getString(uint32_t section,
2519                                            ELF::Elf32_Word offset) const {
2520   return getString(getSection(section), offset);
2521 }
2522
2523 template<class ELFT>
2524 const char *ELFObjectFile<ELFT>::getString(const Elf_Shdr *section,
2525                                            ELF::Elf32_Word offset) const {
2526   assert(section && section->sh_type == ELF::SHT_STRTAB && "Invalid section!");
2527   if (offset >= section->sh_size)
2528     // FIXME: Proper error handling.
2529     report_fatal_error("Symbol name offset outside of string table!");
2530   return (const char *)base() + section->sh_offset + offset;
2531 }
2532
2533 template<class ELFT>
2534 error_code ELFObjectFile<ELFT>::getSymbolName(const Elf_Shdr *section,
2535                                               const Elf_Sym *symb,
2536                                               StringRef &Result) const {
2537   if (symb->st_name == 0) {
2538     const Elf_Shdr *section = getSection(symb);
2539     if (!section)
2540       Result = "";
2541     else
2542       Result = getString(dot_shstrtab_sec, section->sh_name);
2543     return object_error::success;
2544   }
2545
2546   if (section == SymbolTableSections[0]) {
2547     // Symbol is in .dynsym, use .dynstr string table
2548     Result = getString(dot_dynstr_sec, symb->st_name);
2549   } else {
2550     // Use the default symbol table name section.
2551     Result = getString(dot_strtab_sec, symb->st_name);
2552   }
2553   return object_error::success;
2554 }
2555
2556 template<class ELFT>
2557 error_code ELFObjectFile<ELFT>::getSectionName(const Elf_Shdr *section,
2558                                                StringRef &Result) const {
2559   Result = StringRef(getString(dot_shstrtab_sec, section->sh_name));
2560   return object_error::success;
2561 }
2562
2563 template<class ELFT>
2564 error_code ELFObjectFile<ELFT>::getSymbolVersion(const Elf_Shdr *section,
2565                                                  const Elf_Sym *symb,
2566                                                  StringRef &Version,
2567                                                  bool &IsDefault) const {
2568   // Handle non-dynamic symbols.
2569   if (section != SymbolTableSections[0]) {
2570     // Non-dynamic symbols can have versions in their names
2571     // A name of the form 'foo@V1' indicates version 'V1', non-default.
2572     // A name of the form 'foo@@V2' indicates version 'V2', default version.
2573     StringRef Name;
2574     error_code ec = getSymbolName(section, symb, Name);
2575     if (ec != object_error::success)
2576       return ec;
2577     size_t atpos = Name.find('@');
2578     if (atpos == StringRef::npos) {
2579       Version = "";
2580       IsDefault = false;
2581       return object_error::success;
2582     }
2583     ++atpos;
2584     if (atpos < Name.size() && Name[atpos] == '@') {
2585       IsDefault = true;
2586       ++atpos;
2587     } else {
2588       IsDefault = false;
2589     }
2590     Version = Name.substr(atpos);
2591     return object_error::success;
2592   }
2593
2594   // This is a dynamic symbol. Look in the GNU symbol version table.
2595   if (dot_gnu_version_sec == NULL) {
2596     // No version table.
2597     Version = "";
2598     IsDefault = false;
2599     return object_error::success;
2600   }
2601
2602   // Determine the position in the symbol table of this entry.
2603   const char *sec_start = (const char*)base() + section->sh_offset;
2604   size_t entry_index = ((const char*)symb - sec_start)/section->sh_entsize;
2605
2606   // Get the corresponding version index entry
2607   const Elf_Versym *vs = getEntry<Elf_Versym>(dot_gnu_version_sec, entry_index);
2608   size_t version_index = vs->vs_index & ELF::VERSYM_VERSION;
2609
2610   // Special markers for unversioned symbols.
2611   if (version_index == ELF::VER_NDX_LOCAL ||
2612       version_index == ELF::VER_NDX_GLOBAL) {
2613     Version = "";
2614     IsDefault = false;
2615     return object_error::success;
2616   }
2617
2618   // Lookup this symbol in the version table
2619   LoadVersionMap();
2620   if (version_index >= VersionMap.size() || VersionMap[version_index].isNull())
2621     report_fatal_error("Symbol has version index without corresponding "
2622                        "define or reference entry");
2623   const VersionMapEntry &entry = VersionMap[version_index];
2624
2625   // Get the version name string
2626   size_t name_offset;
2627   if (entry.isVerdef()) {
2628     // The first Verdaux entry holds the name.
2629     name_offset = entry.getVerdef()->getAux()->vda_name;
2630   } else {
2631     name_offset = entry.getVernaux()->vna_name;
2632   }
2633   Version = getString(dot_dynstr_sec, name_offset);
2634
2635   // Set IsDefault
2636   if (entry.isVerdef()) {
2637     IsDefault = !(vs->vs_index & ELF::VERSYM_HIDDEN);
2638   } else {
2639     IsDefault = false;
2640   }
2641
2642   return object_error::success;
2643 }
2644
2645 /// This is a generic interface for retrieving GNU symbol version
2646 /// information from an ELFObjectFile.
2647 static inline error_code GetELFSymbolVersion(const ObjectFile *Obj,
2648                                              const SymbolRef &Sym,
2649                                              StringRef &Version,
2650                                              bool &IsDefault) {
2651   // Little-endian 32-bit
2652   if (const ELFObjectFile<ELFType<support::little, 4, false> > *ELFObj =
2653           dyn_cast<ELFObjectFile<ELFType<support::little, 4, false> > >(Obj))
2654     return ELFObj->getSymbolVersion(Sym, Version, IsDefault);
2655
2656   // Big-endian 32-bit
2657   if (const ELFObjectFile<ELFType<support::big, 4, false> > *ELFObj =
2658           dyn_cast<ELFObjectFile<ELFType<support::big, 4, false> > >(Obj))
2659     return ELFObj->getSymbolVersion(Sym, Version, IsDefault);
2660
2661   // Little-endian 64-bit
2662   if (const ELFObjectFile<ELFType<support::little, 8, true> > *ELFObj =
2663           dyn_cast<ELFObjectFile<ELFType<support::little, 8, true> > >(Obj))
2664     return ELFObj->getSymbolVersion(Sym, Version, IsDefault);
2665
2666   // Big-endian 64-bit
2667   if (const ELFObjectFile<ELFType<support::big, 8, true> > *ELFObj =
2668           dyn_cast<ELFObjectFile<ELFType<support::big, 8, true> > >(Obj))
2669     return ELFObj->getSymbolVersion(Sym, Version, IsDefault);
2670
2671   llvm_unreachable("Object passed to GetELFSymbolVersion() is not ELF");
2672 }
2673
2674 }
2675 }
2676
2677 #endif