* elfcpp.h (SHN_X86_64_LCOMMON): Define enum constant.
[external/binutils.git] / elfcpp / elfcpp.h
1 // elfcpp.h -- main header file for elfcpp    -*- C++ -*-
2
3 // Copyright 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
5
6 // This file is part of elfcpp.
7
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU Library General Public License
10 // as published by the Free Software Foundation; either version 2, or
11 // (at your option) any later version.
12
13 // In addition to the permissions in the GNU Library General Public
14 // License, the Free Software Foundation gives you unlimited
15 // permission to link the compiled version of this file into
16 // combinations with other programs, and to distribute those
17 // combinations without any restriction coming from the use of this
18 // file.  (The Library Public License restrictions do apply in other
19 // respects; for example, they cover modification of the file, and
20 /// distribution when not linked into a combined executable.)
21
22 // This program is distributed in the hope that it will be useful, but
23 // WITHOUT ANY WARRANTY; without even the implied warranty of
24 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
25 // Library General Public License for more details.
26
27 // You should have received a copy of the GNU Library General Public
28 // License along with this program; if not, write to the Free Software
29 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
30 // 02110-1301, USA.
31
32 // This is the external interface for elfcpp.
33
34 #ifndef ELFCPP_H
35 #define ELFCPP_H
36
37 #include "elfcpp_swap.h"
38
39 #include <stdint.h>
40
41 namespace elfcpp
42 {
43
44 // Basic ELF types.
45
46 // These types are always the same size.
47
48 typedef uint16_t Elf_Half;
49 typedef uint32_t Elf_Word;
50 typedef int32_t Elf_Sword;
51 typedef uint64_t Elf_Xword;
52 typedef int64_t Elf_Sxword;
53
54 // These types vary in size depending on the ELF file class.  The
55 // template parameter should be 32 or 64.
56
57 template<int size>
58 struct Elf_types;
59
60 template<>
61 struct Elf_types<32>
62 {
63   typedef uint32_t Elf_Addr;
64   typedef uint32_t Elf_Off;
65   typedef uint32_t Elf_WXword;
66   typedef int32_t Elf_Swxword;
67 };
68
69 template<>
70 struct Elf_types<64>
71 {
72   typedef uint64_t Elf_Addr;
73   typedef uint64_t Elf_Off;
74   typedef uint64_t Elf_WXword;
75   typedef int64_t Elf_Swxword;
76 };
77
78 // Offsets within the Ehdr e_ident field.
79
80 const int EI_MAG0 = 0;
81 const int EI_MAG1 = 1;
82 const int EI_MAG2 = 2;
83 const int EI_MAG3 = 3;
84 const int EI_CLASS = 4;
85 const int EI_DATA = 5;
86 const int EI_VERSION = 6;
87 const int EI_OSABI = 7;
88 const int EI_ABIVERSION = 8;
89 const int EI_PAD = 9;
90 const int EI_NIDENT = 16;
91
92 // The valid values found in Ehdr e_ident[EI_MAG0 through EI_MAG3].
93
94 const int ELFMAG0 = 0x7f;
95 const int ELFMAG1 = 'E';
96 const int ELFMAG2 = 'L';
97 const int ELFMAG3 = 'F';
98
99 // The valid values found in Ehdr e_ident[EI_CLASS].
100
101 enum
102 {
103   ELFCLASSNONE = 0,
104   ELFCLASS32 = 1,
105   ELFCLASS64 = 2
106 };
107
108 // The valid values found in Ehdr e_ident[EI_DATA].
109
110 enum
111 {
112   ELFDATANONE = 0,
113   ELFDATA2LSB = 1,
114   ELFDATA2MSB = 2
115 };
116
117 // The valid values found in Ehdr e_ident[EI_VERSION] and e_version.
118
119 enum
120 {
121   EV_NONE = 0,
122   EV_CURRENT = 1
123 };
124
125 // The valid values found in Ehdr e_ident[EI_OSABI].
126
127 enum ELFOSABI
128 {
129   ELFOSABI_NONE = 0,
130   ELFOSABI_HPUX = 1,
131   ELFOSABI_NETBSD = 2,
132   // ELFOSABI_LINUX is not listed in the ELF standard.
133   ELFOSABI_LINUX = 3,
134   // ELFOSABI_HURD is not listed in the ELF standard.
135   ELFOSABI_HURD = 4,
136   ELFOSABI_SOLARIS = 6,
137   ELFOSABI_AIX = 7,
138   ELFOSABI_IRIX = 8,
139   ELFOSABI_FREEBSD = 9,
140   ELFOSABI_TRU64 = 10,
141   ELFOSABI_MODESTO = 11,
142   ELFOSABI_OPENBSD = 12,
143   ELFOSABI_OPENVMS = 13,
144   ELFOSABI_NSK = 14,
145   ELFOSABI_AROS = 15,
146   // A GNU extension for the ARM.
147   ELFOSABI_ARM = 97,
148   // A GNU extension for the MSP.
149   ELFOSABI_STANDALONE = 255
150 };
151
152 // The valid values found in the Ehdr e_type field.
153
154 enum ET
155 {
156   ET_NONE = 0,
157   ET_REL = 1,
158   ET_EXEC = 2,
159   ET_DYN = 3,
160   ET_CORE = 4,
161   ET_LOOS = 0xfe00,
162   ET_HIOS = 0xfeff,
163   ET_LOPROC = 0xff00,
164   ET_HIPROC = 0xffff
165 };
166
167 // The valid values found in the Ehdr e_machine field.
168
169 enum EM
170 {
171   EM_NONE = 0,
172   EM_M32 = 1,
173   EM_SPARC = 2,
174   EM_386 = 3,
175   EM_68K = 4,
176   EM_88K = 5,
177   // 6 used to be EM_486
178   EM_860 = 7,
179   EM_MIPS = 8,
180   EM_S370 = 9,
181   EM_MIPS_RS3_LE = 10,
182   // 11 was the old Sparc V9 ABI.
183   // 12 through 14 are reserved.
184   EM_PARISC = 15,
185   // 16 is reserved.
186   // Some old PowerPC object files use 17.
187   EM_VPP500 = 17,
188   EM_SPARC32PLUS = 18,
189   EM_960 = 19,
190   EM_PPC = 20,
191   EM_PPC64 = 21,
192   EM_S390 = 22,
193   // 23 through 35 are served.
194   EM_V800 = 36,
195   EM_FR20 = 37,
196   EM_RH32 = 38,
197   EM_RCE = 39,
198   EM_ARM = 40,
199   EM_ALPHA = 41,
200   EM_SH = 42,
201   EM_SPARCV9 = 43,
202   EM_TRICORE = 44,
203   EM_ARC = 45,
204   EM_H8_300 = 46,
205   EM_H8_300H = 47,
206   EM_H8S = 48,
207   EM_H8_500 = 49,
208   EM_IA_64 = 50,
209   EM_MIPS_X = 51,
210   EM_COLDFIRE = 52,
211   EM_68HC12 = 53,
212   EM_MMA = 54,
213   EM_PCP = 55,
214   EM_NCPU = 56,
215   EM_NDR1 = 57,
216   EM_STARCORE = 58,
217   EM_ME16 = 59,
218   EM_ST100 = 60,
219   EM_TINYJ = 61,
220   EM_X86_64 = 62,
221   EM_PDSP = 63,
222   EM_PDP10 = 64,
223   EM_PDP11 = 65,
224   EM_FX66 = 66,
225   EM_ST9PLUS = 67,
226   EM_ST7 = 68,
227   EM_68HC16 = 69,
228   EM_68HC11 = 70,
229   EM_68HC08 = 71,
230   EM_68HC05 = 72,
231   EM_SVX = 73,
232   EM_ST19 = 74,
233   EM_VAX = 75,
234   EM_CRIS = 76,
235   EM_JAVELIN = 77,
236   EM_FIREPATH = 78,
237   EM_ZSP = 79,
238   EM_MMIX = 80,
239   EM_HUANY = 81,
240   EM_PRISM = 82,
241   EM_AVR = 83,
242   EM_FR30 = 84,
243   EM_D10V = 85,
244   EM_D30V = 86,
245   EM_V850 = 87,
246   EM_M32R = 88,
247   EM_MN10300 = 89,
248   EM_MN10200 = 90,
249   EM_PJ = 91,
250   EM_OPENRISC = 92,
251   EM_ARC_A5 = 93,
252   EM_XTENSA = 94,
253   EM_VIDEOCORE = 95,
254   EM_TMM_GPP = 96,
255   EM_NS32K = 97,
256   EM_TPC = 98,
257   // Some old picoJava object files use 99 (EM_PJ is correct).
258   EM_SNP1K = 99,
259   EM_ST200 = 100,
260   EM_IP2K = 101,
261   EM_MAX = 102,
262   EM_CR = 103,
263   EM_F2MC16 = 104,
264   EM_MSP430 = 105,
265   EM_BLACKFIN = 106,
266   EM_SE_C33 = 107,
267   EM_SEP = 108,
268   EM_ARCA = 109,
269   EM_UNICORE = 110,
270   EM_ALTERA_NIOS2 = 113,
271   EM_CRX = 114,
272   // The Morph MT.
273   EM_MT = 0x2530,
274   // DLX.
275   EM_DLX = 0x5aa5,
276   // FRV.
277   EM_FRV = 0x5441,
278   // Infineon Technologies 16-bit microcontroller with C166-V2 core.
279   EM_X16X = 0x4688,
280   // Xstorym16
281   EM_XSTORMY16 = 0xad45,
282   // Renesas M32C
283   EM_M32C = 0xfeb0,
284   // Vitesse IQ2000
285   EM_IQ2000 = 0xfeba,
286   // NIOS
287   EM_NIOS32 = 0xfebb
288   // Old AVR objects used 0x1057 (EM_AVR is correct).
289   // Old MSP430 objects used 0x1059 (EM_MSP430 is correct).
290   // Old FR30 objects used 0x3330 (EM_FR30 is correct).
291   // Old OpenRISC objects used 0x3426 and 0x8472 (EM_OPENRISC is correct).
292   // Old D10V objects used 0x7650 (EM_D10V is correct).
293   // Old D30V objects used 0x7676 (EM_D30V is correct).
294   // Old IP2X objects used 0x8217 (EM_IP2K is correct).
295   // Old PowerPC objects used 0x9025 (EM_PPC is correct).
296   // Old Alpha objects used 0x9026 (EM_ALPHA is correct).
297   // Old M32R objects used 0x9041 (EM_M32R is correct).
298   // Old V850 objects used 0x9080 (EM_V850 is correct).
299   // Old S/390 objects used 0xa390 (EM_S390 is correct).
300   // Old Xtensa objects used 0xabc7 (EM_XTENSA is correct).
301   // Old MN10300 objects used 0xbeef (EM_MN10300 is correct).
302   // Old MN10200 objects used 0xdead (EM_MN10200 is correct).
303 };
304
305 // Special section indices.
306
307 enum
308 {
309   SHN_UNDEF = 0,
310   SHN_LORESERVE = 0xff00,
311   SHN_LOPROC = 0xff00,
312   SHN_HIPROC = 0xff1f,
313   SHN_LOOS = 0xff20,
314   SHN_HIOS = 0xff3f,
315   SHN_ABS = 0xfff1,
316   SHN_COMMON = 0xfff2,
317   SHN_XINDEX = 0xffff,
318   SHN_HIRESERVE = 0xffff,
319
320   // Provide for initial and final section ordering in conjunction
321   // with the SHF_LINK_ORDER and SHF_ORDERED section flags.
322   SHN_BEFORE = 0xff00,
323   SHN_AFTER = 0xff01,
324
325   // x86_64 specific large common symbol.
326   SHN_X86_64_LCOMMON = 0xff02
327 };
328
329 // The valid values found in the Shdr sh_type field.
330
331 enum SHT
332 {
333   SHT_NULL = 0,
334   SHT_PROGBITS = 1,
335   SHT_SYMTAB = 2,
336   SHT_STRTAB = 3,
337   SHT_RELA = 4,
338   SHT_HASH = 5,
339   SHT_DYNAMIC = 6,
340   SHT_NOTE = 7,
341   SHT_NOBITS = 8,
342   SHT_REL = 9,
343   SHT_SHLIB = 10,
344   SHT_DYNSYM = 11,
345   SHT_INIT_ARRAY = 14,
346   SHT_FINI_ARRAY = 15,
347   SHT_PREINIT_ARRAY = 16,
348   SHT_GROUP = 17,
349   SHT_SYMTAB_SHNDX = 18,
350   SHT_LOOS = 0x60000000,
351   SHT_HIOS = 0x6fffffff,
352   SHT_LOPROC = 0x70000000,
353   SHT_HIPROC = 0x7fffffff,
354   SHT_LOUSER = 0x80000000,
355   SHT_HIUSER = 0xffffffff,
356   // The remaining values are not in the standard.
357   // Incremental build data.
358   SHT_GNU_INCREMENTAL_INPUTS = 0x6fff4700,
359   // Object attributes.
360   SHT_GNU_ATTRIBUTES = 0x6ffffff5,
361   // GNU style dynamic hash table.
362   SHT_GNU_HASH = 0x6ffffff6,
363   // List of prelink dependencies.
364   SHT_GNU_LIBLIST = 0x6ffffff7,
365   // Versions defined by file.
366   SHT_SUNW_verdef = 0x6ffffffd,
367   SHT_GNU_verdef = 0x6ffffffd,
368   // Versions needed by file.
369   SHT_SUNW_verneed = 0x6ffffffe,
370   SHT_GNU_verneed = 0x6ffffffe,
371   // Symbol versions,
372   SHT_SUNW_versym = 0x6fffffff,
373   SHT_GNU_versym = 0x6fffffff,
374
375   SHT_SPARC_GOTDATA = 0x70000000,
376
377   // ARM-specific section types.
378   // Exception Index table.
379   SHT_ARM_EXIDX = 0x70000001,
380   // BPABI DLL dynamic linking pre-emption map.
381   SHT_ARM_PREEMPTMAP = 0x70000002,
382   // Object file compatibility attributes.
383   SHT_ARM_ATTRIBUTES = 0x70000003,
384   // Support for debugging overlaid programs.
385   SHT_ARM_DEBUGOVERLAY = 0x70000004,
386   SHT_ARM_OVERLAYSECTION = 0x70000005,
387
388   // x86_64 unwind information.
389   SHT_X86_64_UNWIND = 0x70000001,
390
391   // Link editor is to sort the entries in this section based on the
392   // address specified in the associated symbol table entry.
393   SHT_ORDERED = 0x7fffffff,
394 };
395
396 // The valid bit flags found in the Shdr sh_flags field.
397
398 enum SHF
399 {
400   SHF_WRITE = 0x1,
401   SHF_ALLOC = 0x2,
402   SHF_EXECINSTR = 0x4,
403   SHF_MERGE = 0x10,
404   SHF_STRINGS = 0x20,
405   SHF_INFO_LINK = 0x40,
406   SHF_LINK_ORDER = 0x80,
407   SHF_OS_NONCONFORMING = 0x100,
408   SHF_GROUP = 0x200,
409   SHF_TLS = 0x400,
410   SHF_MASKOS = 0x0ff00000,
411   SHF_MASKPROC = 0xf0000000,
412
413   // Indicates this section requires ordering in relation to
414   // other sections of the same type.  Ordered sections are
415   // combined within the section pointed to by the sh_link entry.
416   // The sh_info values SHN_BEFORE and SHN_AFTER imply that the
417   // sorted section is to precede or follow, respectively, all
418   // other sections in the set being ordered.
419   SHF_ORDERED = 0x40000000,
420   // This section is excluded from input to the link-edit of an
421   // executable or shared object.  This flag is ignored if SHF_ALLOC
422   // is also set, or if relocations exist against the section.
423   SHF_EXCLUDE = 0x80000000,
424
425   // x86_64 specific large section.
426   SHF_X86_64_LARGE = 0x10000000
427 };
428
429 // Bit flags which appear in the first 32-bit word of the section data
430 // of a SHT_GROUP section.
431
432 enum
433 {
434   GRP_COMDAT = 0x1,
435   GRP_MASKOS = 0x0ff00000,
436   GRP_MASKPROC = 0xf0000000
437 };
438
439 // The valid values found in the Phdr p_type field.
440
441 enum PT
442 {
443   PT_NULL = 0,
444   PT_LOAD = 1,
445   PT_DYNAMIC = 2,
446   PT_INTERP = 3,
447   PT_NOTE = 4,
448   PT_SHLIB = 5,
449   PT_PHDR = 6,
450   PT_TLS = 7,
451   PT_LOOS = 0x60000000,
452   PT_HIOS = 0x6fffffff,
453   PT_LOPROC = 0x70000000,
454   PT_HIPROC = 0x7fffffff,
455   // The remaining values are not in the standard.
456   // Frame unwind information.
457   PT_GNU_EH_FRAME = 0x6474e550,
458   PT_SUNW_EH_FRAME = 0x6474e550,
459   // Stack flags.
460   PT_GNU_STACK = 0x6474e551,
461   // Read only after relocation.
462   PT_GNU_RELRO = 0x6474e552,
463   // Platform architecture compatibility information
464   PT_ARM_ARCHEXT = 0x70000000,
465   // Exception unwind tables
466   PT_ARM_EXIDX = 0x70000001
467 };
468
469 // The valid bit flags found in the Phdr p_flags field.
470
471 enum PF
472 {
473   PF_X = 0x1,
474   PF_W = 0x2,
475   PF_R = 0x4,
476   PF_MASKOS = 0x0ff00000,
477   PF_MASKPROC = 0xf0000000
478 };
479
480 // Symbol binding from Sym st_info field.
481
482 enum STB
483 {
484   STB_LOCAL = 0,
485   STB_GLOBAL = 1,
486   STB_WEAK = 2,
487   STB_LOOS = 10,
488   STB_HIOS = 12,
489   STB_LOPROC = 13,
490   STB_HIPROC = 15
491 };
492
493 // Symbol types from Sym st_info field.
494
495 enum STT
496 {
497   STT_NOTYPE = 0,
498   STT_OBJECT = 1,
499   STT_FUNC = 2,
500   STT_SECTION = 3,
501   STT_FILE = 4,
502   STT_COMMON = 5,
503   STT_TLS = 6,
504   STT_LOOS = 10,
505   STT_GNU_IFUNC = 10,
506   STT_HIOS = 12,
507   STT_LOPROC = 13,
508   STT_HIPROC = 15,
509
510   // The section type that must be used for register symbols on
511   // Sparc.  These symbols initialize a global register.
512   STT_SPARC_REGISTER = 13,
513
514   // ARM: a THUMB function.  This is not defined in ARM ELF Specification but
515   // used by the GNU tool-chain.
516   STT_ARM_TFUNC = 13,
517 };
518
519 inline STB
520 elf_st_bind(unsigned char info)
521 {
522   return static_cast<STB>(info >> 4);
523 }
524
525 inline STT
526 elf_st_type(unsigned char info)
527 {
528   return static_cast<STT>(info & 0xf);
529 }
530
531 inline unsigned char
532 elf_st_info(STB bind, STT type)
533 {
534   return ((static_cast<unsigned char>(bind) << 4)
535           + (static_cast<unsigned char>(type) & 0xf));
536 }
537
538 // Symbol visibility from Sym st_other field.
539
540 enum STV
541 {
542   STV_DEFAULT = 0,
543   STV_INTERNAL = 1,
544   STV_HIDDEN = 2,
545   STV_PROTECTED = 3
546 };
547
548 inline STV
549 elf_st_visibility(unsigned char other)
550 {
551   return static_cast<STV>(other & 0x3);
552 }
553
554 inline unsigned char
555 elf_st_nonvis(unsigned char other)
556 {
557   return static_cast<STV>(other >> 2);
558 }
559
560 inline unsigned char
561 elf_st_other(STV vis, unsigned char nonvis)
562 {
563   return ((nonvis << 2)
564           + (static_cast<unsigned char>(vis) & 3));
565 }
566
567 // Reloc information from Rel/Rela r_info field.
568
569 template<int size>
570 unsigned int
571 elf_r_sym(typename Elf_types<size>::Elf_WXword);
572
573 template<>
574 inline unsigned int
575 elf_r_sym<32>(Elf_Word v)
576 {
577   return v >> 8;
578 }
579
580 template<>
581 inline unsigned int
582 elf_r_sym<64>(Elf_Xword v)
583 {
584   return v >> 32;
585 }
586
587 template<int size>
588 unsigned int
589 elf_r_type(typename Elf_types<size>::Elf_WXword);
590
591 template<>
592 inline unsigned int
593 elf_r_type<32>(Elf_Word v)
594 {
595   return v & 0xff;
596 }
597
598 template<>
599 inline unsigned int
600 elf_r_type<64>(Elf_Xword v)
601 {
602   return v & 0xffffffff;
603 }
604
605 template<int size>
606 typename Elf_types<size>::Elf_WXword
607 elf_r_info(unsigned int s, unsigned int t);
608
609 template<>
610 inline Elf_Word
611 elf_r_info<32>(unsigned int s, unsigned int t)
612 {
613   return (s << 8) + (t & 0xff);
614 }
615
616 template<>
617 inline Elf_Xword
618 elf_r_info<64>(unsigned int s, unsigned int t)
619 {
620   return (static_cast<Elf_Xword>(s) << 32) + (t & 0xffffffff);
621 }
622
623 // Dynamic tags found in the PT_DYNAMIC segment.
624
625 enum DT
626 {
627   DT_NULL = 0,
628   DT_NEEDED = 1,
629   DT_PLTRELSZ = 2,
630   DT_PLTGOT = 3,
631   DT_HASH = 4,
632   DT_STRTAB = 5,
633   DT_SYMTAB = 6,
634   DT_RELA = 7,
635   DT_RELASZ = 8,
636   DT_RELAENT = 9,
637   DT_STRSZ = 10,
638   DT_SYMENT = 11,
639   DT_INIT = 12,
640   DT_FINI = 13,
641   DT_SONAME = 14,
642   DT_RPATH = 15,
643   DT_SYMBOLIC = 16,
644   DT_REL = 17,
645   DT_RELSZ = 18,
646   DT_RELENT = 19,
647   DT_PLTREL = 20,
648   DT_DEBUG = 21,
649   DT_TEXTREL = 22,
650   DT_JMPREL = 23,
651   DT_BIND_NOW = 24,
652   DT_INIT_ARRAY = 25,
653   DT_FINI_ARRAY = 26,
654   DT_INIT_ARRAYSZ = 27,
655   DT_FINI_ARRAYSZ = 28,
656   DT_RUNPATH = 29,
657   DT_FLAGS = 30,
658   DT_ENCODING = 32,
659   DT_PREINIT_ARRAY = 33,
660   DT_PREINIT_ARRAYSZ = 33,
661   DT_LOOS = 0x6000000d,
662   DT_HIOS = 0x6ffff000,
663   DT_LOPROC = 0x70000000,
664   DT_HIPROC = 0x7fffffff,
665
666   // The remaining values are extensions used by GNU or Solaris.
667   DT_VALRNGLO = 0x6ffffd00,
668   DT_GNU_PRELINKED = 0x6ffffdf5,
669   DT_GNU_CONFLICTSZ = 0x6ffffdf6,
670   DT_GNU_LIBLISTSZ = 0x6ffffdf7,
671   DT_CHECKSUM = 0x6ffffdf8,
672   DT_PLTPADSZ = 0x6ffffdf9,
673   DT_MOVEENT = 0x6ffffdfa,
674   DT_MOVESZ = 0x6ffffdfb,
675   DT_FEATURE = 0x6ffffdfc,
676   DT_POSFLAG_1 = 0x6ffffdfd,
677   DT_SYMINSZ = 0x6ffffdfe,
678   DT_SYMINENT = 0x6ffffdff,
679   DT_VALRNGHI = 0x6ffffdff,
680
681   DT_ADDRRNGLO = 0x6ffffe00,
682   DT_GNU_HASH = 0x6ffffef5,
683   DT_TLSDESC_PLT = 0x6ffffef6,
684   DT_TLSDESC_GOT = 0x6ffffef7,
685   DT_GNU_CONFLICT = 0x6ffffef8,
686   DT_GNU_LIBLIST = 0x6ffffef9,
687   DT_CONFIG = 0x6ffffefa,
688   DT_DEPAUDIT = 0x6ffffefb,
689   DT_AUDIT = 0x6ffffefc,
690   DT_PLTPAD = 0x6ffffefd,
691   DT_MOVETAB = 0x6ffffefe,
692   DT_SYMINFO = 0x6ffffeff,
693   DT_ADDRRNGHI = 0x6ffffeff,
694
695   DT_RELACOUNT = 0x6ffffff9,
696   DT_RELCOUNT = 0x6ffffffa,
697   DT_FLAGS_1 = 0x6ffffffb,
698   DT_VERDEF = 0x6ffffffc,
699   DT_VERDEFNUM = 0x6ffffffd,
700   DT_VERNEED = 0x6ffffffe,
701   DT_VERNEEDNUM = 0x6fffffff,
702
703   DT_VERSYM = 0x6ffffff0,
704
705   // Specify the value of _GLOBAL_OFFSET_TABLE_.
706   DT_PPC_GOT = 0x70000000,
707
708   // Specify the start of the .glink section.
709   DT_PPC64_GLINK = 0x70000000,
710
711   // Specify the start and size of the .opd section.
712   DT_PPC64_OPD = 0x70000001,
713   DT_PPC64_OPDSZ = 0x70000002,
714
715   // The index of an STT_SPARC_REGISTER symbol within the DT_SYMTAB
716   // symbol table.  One dynamic entry exists for every STT_SPARC_REGISTER
717   // symbol in the symbol table.
718   DT_SPARC_REGISTER = 0x70000001,
719
720   DT_AUXILIARY = 0x7ffffffd,
721   DT_USED = 0x7ffffffe,
722   DT_FILTER = 0x7fffffff
723 };
724
725 // Flags found in the DT_FLAGS dynamic element.
726
727 enum DF
728 {
729   DF_ORIGIN = 0x1,
730   DF_SYMBOLIC = 0x2,
731   DF_TEXTREL = 0x4,
732   DF_BIND_NOW = 0x8,
733   DF_STATIC_TLS = 0x10
734 };
735
736 // Flags found in the DT_FLAGS_1 dynamic element.
737
738 enum DF_1
739 {
740   DF_1_NOW = 0x1,
741   DF_1_GLOBAL = 0x2,
742   DF_1_GROUP = 0x4,
743   DF_1_NODELETE = 0x8,
744   DF_1_LOADFLTR = 0x10,
745   DF_1_INITFIRST = 0x20,
746   DF_1_NOOPEN = 0x40,
747   DF_1_ORIGIN = 0x80,
748   DF_1_DIRECT = 0x100,
749   DF_1_TRANS = 0x200,
750   DF_1_INTERPOSE = 0x400,
751   DF_1_NODEFLIB = 0x800,
752   DF_1_NODUMP = 0x1000,
753   DF_1_CONLFAT = 0x2000,
754 };
755
756 // Version numbers which appear in the vd_version field of a Verdef
757 // structure.
758
759 const int VER_DEF_NONE = 0;
760 const int VER_DEF_CURRENT = 1;
761
762 // Version numbers which appear in the vn_version field of a Verneed
763 // structure.
764
765 const int VER_NEED_NONE = 0;
766 const int VER_NEED_CURRENT = 1;
767
768 // Bit flags which appear in vd_flags of Verdef and vna_flags of
769 // Vernaux.
770
771 const int VER_FLG_BASE = 0x1;
772 const int VER_FLG_WEAK = 0x2;
773
774 // Special constants found in the SHT_GNU_versym entries.
775
776 const int VER_NDX_LOCAL = 0;
777 const int VER_NDX_GLOBAL = 1;
778
779 // A SHT_GNU_versym section holds 16-bit words.  This bit is set if
780 // the symbol is hidden and can only be seen when referenced using an
781 // explicit version number.  This is a GNU extension.
782
783 const int VERSYM_HIDDEN = 0x8000;
784
785 // This is the mask for the rest of the data in a word read from a
786 // SHT_GNU_versym section.
787
788 const int VERSYM_VERSION = 0x7fff;
789
790 // Note descriptor type codes for notes in a non-core file with an
791 // empty name.
792
793 enum
794 {
795   // A version string.
796   NT_VERSION = 1,
797   // An architecture string.
798   NT_ARCH = 2
799 };
800
801 // Note descriptor type codes for notes in a non-core file with the
802 // name "GNU".
803
804 enum
805 {
806   // The minimum ABI level.  This is used by the dynamic linker to
807   // describe the minimal kernel version on which a shared library may
808   // be used.  Th value should be four words.  Word 0 is an OS
809   // descriptor (see below).  Word 1 is the major version of the ABI.
810   // Word 2 is the minor version.  Word 3 is the subminor version.
811   NT_GNU_ABI_TAG = 1,
812   // Hardware capabilities information.  Word 0 is the number of
813   // entries.  Word 1 is a bitmask of enabled entries.  The rest of
814   // the descriptor is a series of entries, where each entry is a
815   // single byte followed by a nul terminated string.  The byte gives
816   // the bit number to test if enabled in the bitmask.
817   NT_GNU_HWCAP = 2,
818   // The build ID as set by the linker's --build-id option.  The
819   // format of the descriptor depends on the build ID style.
820   NT_GNU_BUILD_ID = 3,
821   // The version of gold used to link.  Th descriptor is just a
822   // string.
823   NT_GNU_GOLD_VERSION = 4
824 };
825
826 // The OS values which may appear in word 0 of a NT_GNU_ABI_TAG note.
827
828 enum
829 {
830   ELF_NOTE_OS_LINUX = 0,
831   ELF_NOTE_OS_GNU = 1,
832   ELF_NOTE_OS_SOLARIS2 = 2,
833   ELF_NOTE_OS_FREEBSD = 3,
834   ELF_NOTE_OS_NETBSD = 4,
835   ELF_NOTE_OS_SYLLABLE = 5
836 };
837
838 } // End namespace elfcpp.
839
840 // Include internal details after defining the types.
841 #include "elfcpp_internal.h"
842
843 namespace elfcpp
844 {
845
846 // The offset of the ELF file header in the ELF file.
847
848 const int file_header_offset = 0;
849
850 // ELF structure sizes.
851
852 template<int size>
853 struct Elf_sizes
854 {
855   // Size of ELF file header.
856   static const int ehdr_size = sizeof(internal::Ehdr_data<size>);
857   // Size of ELF segment header.
858   static const int phdr_size = sizeof(internal::Phdr_data<size>);
859   // Size of ELF section header.
860   static const int shdr_size = sizeof(internal::Shdr_data<size>);
861   // Size of ELF symbol table entry.
862   static const int sym_size = sizeof(internal::Sym_data<size>);
863   // Sizes of ELF reloc entries.
864   static const int rel_size = sizeof(internal::Rel_data<size>);
865   static const int rela_size = sizeof(internal::Rela_data<size>);
866   // Size of ELF dynamic entry.
867   static const int dyn_size = sizeof(internal::Dyn_data<size>);
868   // Size of ELF version structures.
869   static const int verdef_size = sizeof(internal::Verdef_data);
870   static const int verdaux_size = sizeof(internal::Verdaux_data);
871   static const int verneed_size = sizeof(internal::Verneed_data);
872   static const int vernaux_size = sizeof(internal::Vernaux_data);
873 };
874
875 // Accessor class for the ELF file header.
876
877 template<int size, bool big_endian>
878 class Ehdr
879 {
880  public:
881   Ehdr(const unsigned char* p)
882     : p_(reinterpret_cast<const internal::Ehdr_data<size>*>(p))
883   { }
884
885   template<typename File>
886   Ehdr(File* file, typename File::Location loc)
887     : p_(reinterpret_cast<const internal::Ehdr_data<size>*>(
888            file->view(loc.file_offset, loc.data_size).data()))
889   { }
890
891   const unsigned char*
892   get_e_ident() const
893   { return this->p_->e_ident; }
894
895   Elf_Half
896   get_e_type() const
897   { return Convert<16, big_endian>::convert_host(this->p_->e_type); }
898
899   Elf_Half
900   get_e_machine() const
901   { return Convert<16, big_endian>::convert_host(this->p_->e_machine); }
902
903   Elf_Word
904   get_e_version() const
905   { return Convert<32, big_endian>::convert_host(this->p_->e_version); }
906
907   typename Elf_types<size>::Elf_Addr
908   get_e_entry() const
909   { return Convert<size, big_endian>::convert_host(this->p_->e_entry); }
910
911   typename Elf_types<size>::Elf_Off
912   get_e_phoff() const
913   { return Convert<size, big_endian>::convert_host(this->p_->e_phoff); }
914
915   typename Elf_types<size>::Elf_Off
916   get_e_shoff() const
917   { return Convert<size, big_endian>::convert_host(this->p_->e_shoff); }
918
919   Elf_Word
920   get_e_flags() const
921   { return Convert<32, big_endian>::convert_host(this->p_->e_flags); }
922
923   Elf_Half
924   get_e_ehsize() const
925   { return Convert<16, big_endian>::convert_host(this->p_->e_ehsize); }
926
927   Elf_Half
928   get_e_phentsize() const
929   { return Convert<16, big_endian>::convert_host(this->p_->e_phentsize); }
930
931   Elf_Half
932   get_e_phnum() const
933   { return Convert<16, big_endian>::convert_host(this->p_->e_phnum); }
934
935   Elf_Half
936   get_e_shentsize() const
937   { return Convert<16, big_endian>::convert_host(this->p_->e_shentsize); }
938
939   Elf_Half
940   get_e_shnum() const
941   { return Convert<16, big_endian>::convert_host(this->p_->e_shnum); }
942
943   Elf_Half
944   get_e_shstrndx() const
945   { return Convert<16, big_endian>::convert_host(this->p_->e_shstrndx); }
946
947  private:
948   const internal::Ehdr_data<size>* p_;
949 };
950
951 // Write class for the ELF file header.
952
953 template<int size, bool big_endian>
954 class Ehdr_write
955 {
956  public:
957   Ehdr_write(unsigned char* p)
958     : p_(reinterpret_cast<internal::Ehdr_data<size>*>(p))
959   { }
960
961   void
962   put_e_ident(const unsigned char v[EI_NIDENT]) const
963   { memcpy(this->p_->e_ident, v, EI_NIDENT); }
964
965   void
966   put_e_type(Elf_Half v)
967   { this->p_->e_type = Convert<16, big_endian>::convert_host(v); }
968
969   void
970   put_e_machine(Elf_Half v)
971   { this->p_->e_machine = Convert<16, big_endian>::convert_host(v); }
972
973   void
974   put_e_version(Elf_Word v)
975   { this->p_->e_version = Convert<32, big_endian>::convert_host(v); }
976
977   void
978   put_e_entry(typename Elf_types<size>::Elf_Addr v)
979   { this->p_->e_entry = Convert<size, big_endian>::convert_host(v); }
980
981   void
982   put_e_phoff(typename Elf_types<size>::Elf_Off v)
983   { this->p_->e_phoff = Convert<size, big_endian>::convert_host(v); }
984
985   void
986   put_e_shoff(typename Elf_types<size>::Elf_Off v)
987   { this->p_->e_shoff = Convert<size, big_endian>::convert_host(v); }
988
989   void
990   put_e_flags(Elf_Word v)
991   { this->p_->e_flags = Convert<32, big_endian>::convert_host(v); }
992
993   void
994   put_e_ehsize(Elf_Half v)
995   { this->p_->e_ehsize = Convert<16, big_endian>::convert_host(v); }
996
997   void
998   put_e_phentsize(Elf_Half v)
999   { this->p_->e_phentsize = Convert<16, big_endian>::convert_host(v); }
1000
1001   void
1002   put_e_phnum(Elf_Half v)
1003   { this->p_->e_phnum = Convert<16, big_endian>::convert_host(v); }
1004
1005   void
1006   put_e_shentsize(Elf_Half v)
1007   { this->p_->e_shentsize = Convert<16, big_endian>::convert_host(v); }
1008
1009   void
1010   put_e_shnum(Elf_Half v)
1011   { this->p_->e_shnum = Convert<16, big_endian>::convert_host(v); }
1012
1013   void
1014   put_e_shstrndx(Elf_Half v)
1015   { this->p_->e_shstrndx = Convert<16, big_endian>::convert_host(v); }
1016
1017  private:
1018   internal::Ehdr_data<size>* p_;
1019 };
1020
1021 // Accessor class for an ELF section header.
1022
1023 template<int size, bool big_endian>
1024 class Shdr
1025 {
1026  public:
1027   Shdr(const unsigned char* p)
1028     : p_(reinterpret_cast<const internal::Shdr_data<size>*>(p))
1029   { }
1030
1031   template<typename File>
1032   Shdr(File* file, typename File::Location loc)
1033     : p_(reinterpret_cast<const internal::Shdr_data<size>*>(
1034            file->view(loc.file_offset, loc.data_size).data()))
1035   { }
1036
1037   Elf_Word
1038   get_sh_name() const
1039   { return Convert<32, big_endian>::convert_host(this->p_->sh_name); }
1040
1041   Elf_Word
1042   get_sh_type() const
1043   { return Convert<32, big_endian>::convert_host(this->p_->sh_type); }
1044
1045   typename Elf_types<size>::Elf_WXword
1046   get_sh_flags() const
1047   { return Convert<size, big_endian>::convert_host(this->p_->sh_flags); }
1048
1049   typename Elf_types<size>::Elf_Addr
1050   get_sh_addr() const
1051   { return Convert<size, big_endian>::convert_host(this->p_->sh_addr); }
1052
1053   typename Elf_types<size>::Elf_Off
1054   get_sh_offset() const
1055   { return Convert<size, big_endian>::convert_host(this->p_->sh_offset); }
1056
1057   typename Elf_types<size>::Elf_WXword
1058   get_sh_size() const
1059   { return Convert<size, big_endian>::convert_host(this->p_->sh_size); }
1060
1061   Elf_Word
1062   get_sh_link() const
1063   { return Convert<32, big_endian>::convert_host(this->p_->sh_link); }
1064
1065   Elf_Word
1066   get_sh_info() const
1067   { return Convert<32, big_endian>::convert_host(this->p_->sh_info); }
1068
1069   typename Elf_types<size>::Elf_WXword
1070   get_sh_addralign() const
1071   { return
1072       Convert<size, big_endian>::convert_host(this->p_->sh_addralign); }
1073
1074   typename Elf_types<size>::Elf_WXword
1075   get_sh_entsize() const
1076   { return Convert<size, big_endian>::convert_host(this->p_->sh_entsize); }
1077
1078  private:
1079   const internal::Shdr_data<size>* p_;
1080 };
1081
1082 // Write class for an ELF section header.
1083
1084 template<int size, bool big_endian>
1085 class Shdr_write
1086 {
1087  public:
1088   Shdr_write(unsigned char* p)
1089     : p_(reinterpret_cast<internal::Shdr_data<size>*>(p))
1090   { }
1091
1092   void
1093   put_sh_name(Elf_Word v)
1094   { this->p_->sh_name = Convert<32, big_endian>::convert_host(v); }
1095
1096   void
1097   put_sh_type(Elf_Word v)
1098   { this->p_->sh_type = Convert<32, big_endian>::convert_host(v); }
1099
1100   void
1101   put_sh_flags(typename Elf_types<size>::Elf_WXword v)
1102   { this->p_->sh_flags = Convert<size, big_endian>::convert_host(v); }
1103
1104   void
1105   put_sh_addr(typename Elf_types<size>::Elf_Addr v)
1106   { this->p_->sh_addr = Convert<size, big_endian>::convert_host(v); }
1107
1108   void
1109   put_sh_offset(typename Elf_types<size>::Elf_Off v)
1110   { this->p_->sh_offset = Convert<size, big_endian>::convert_host(v); }
1111
1112   void
1113   put_sh_size(typename Elf_types<size>::Elf_WXword v)
1114   { this->p_->sh_size = Convert<size, big_endian>::convert_host(v); }
1115
1116   void
1117   put_sh_link(Elf_Word v)
1118   { this->p_->sh_link = Convert<32, big_endian>::convert_host(v); }
1119
1120   void
1121   put_sh_info(Elf_Word v)
1122   { this->p_->sh_info = Convert<32, big_endian>::convert_host(v); }
1123
1124   void
1125   put_sh_addralign(typename Elf_types<size>::Elf_WXword v)
1126   { this->p_->sh_addralign = Convert<size, big_endian>::convert_host(v); }
1127
1128   void
1129   put_sh_entsize(typename Elf_types<size>::Elf_WXword v)
1130   { this->p_->sh_entsize = Convert<size, big_endian>::convert_host(v); }
1131
1132  private:
1133   internal::Shdr_data<size>* p_;
1134 };
1135
1136 // Accessor class for an ELF segment header.
1137
1138 template<int size, bool big_endian>
1139 class Phdr
1140 {
1141  public:
1142   Phdr(const unsigned char* p)
1143     : p_(reinterpret_cast<const internal::Phdr_data<size>*>(p))
1144   { }
1145
1146   template<typename File>
1147   Phdr(File* file, typename File::Location loc)
1148     : p_(reinterpret_cast<internal::Phdr_data<size>*>(
1149            file->view(loc.file_offset, loc.data_size).data()))
1150   { }
1151
1152   Elf_Word
1153   get_p_type() const
1154   { return Convert<32, big_endian>::convert_host(this->p_->p_type); }
1155
1156   typename Elf_types<size>::Elf_Off
1157   get_p_offset() const
1158   { return Convert<size, big_endian>::convert_host(this->p_->p_offset); }
1159
1160   typename Elf_types<size>::Elf_Addr
1161   get_p_vaddr() const
1162   { return Convert<size, big_endian>::convert_host(this->p_->p_vaddr); }
1163
1164   typename Elf_types<size>::Elf_Addr
1165   get_p_paddr() const
1166   { return Convert<size, big_endian>::convert_host(this->p_->p_paddr); }
1167
1168   typename Elf_types<size>::Elf_WXword
1169   get_p_filesz() const
1170   { return Convert<size, big_endian>::convert_host(this->p_->p_filesz); }
1171
1172   typename Elf_types<size>::Elf_WXword
1173   get_p_memsz() const
1174   { return Convert<size, big_endian>::convert_host(this->p_->p_memsz); }
1175
1176   Elf_Word
1177   get_p_flags() const
1178   { return Convert<32, big_endian>::convert_host(this->p_->p_flags); }
1179
1180   typename Elf_types<size>::Elf_WXword
1181   get_p_align() const
1182   { return Convert<size, big_endian>::convert_host(this->p_->p_align); }
1183
1184  private:
1185   const internal::Phdr_data<size>* p_;
1186 };
1187
1188 // Write class for an ELF segment header.
1189
1190 template<int size, bool big_endian>
1191 class Phdr_write
1192 {
1193  public:
1194   Phdr_write(unsigned char* p)
1195     : p_(reinterpret_cast<internal::Phdr_data<size>*>(p))
1196   { }
1197
1198   void
1199   put_p_type(Elf_Word v)
1200   { this->p_->p_type = Convert<32, big_endian>::convert_host(v); }
1201
1202   void
1203   put_p_offset(typename Elf_types<size>::Elf_Off v)
1204   { this->p_->p_offset = Convert<size, big_endian>::convert_host(v); }
1205
1206   void
1207   put_p_vaddr(typename Elf_types<size>::Elf_Addr v)
1208   { this->p_->p_vaddr = Convert<size, big_endian>::convert_host(v); }
1209
1210   void
1211   put_p_paddr(typename Elf_types<size>::Elf_Addr v)
1212   { this->p_->p_paddr = Convert<size, big_endian>::convert_host(v); }
1213
1214   void
1215   put_p_filesz(typename Elf_types<size>::Elf_WXword v)
1216   { this->p_->p_filesz = Convert<size, big_endian>::convert_host(v); }
1217
1218   void
1219   put_p_memsz(typename Elf_types<size>::Elf_WXword v)
1220   { this->p_->p_memsz = Convert<size, big_endian>::convert_host(v); }
1221
1222   void
1223   put_p_flags(Elf_Word v)
1224   { this->p_->p_flags = Convert<32, big_endian>::convert_host(v); }
1225
1226   void
1227   put_p_align(typename Elf_types<size>::Elf_WXword v)
1228   { this->p_->p_align = Convert<size, big_endian>::convert_host(v); }
1229
1230  private:
1231   internal::Phdr_data<size>* p_;
1232 };
1233
1234 // Accessor class for an ELF symbol table entry.
1235
1236 template<int size, bool big_endian>
1237 class Sym
1238 {
1239  public:
1240   Sym(const unsigned char* p)
1241     : p_(reinterpret_cast<const internal::Sym_data<size>*>(p))
1242   { }
1243
1244   template<typename File>
1245   Sym(File* file, typename File::Location loc)
1246     : p_(reinterpret_cast<const internal::Sym_data<size>*>(
1247            file->view(loc.file_offset, loc.data_size).data()))
1248   { }
1249
1250   Elf_Word
1251   get_st_name() const
1252   { return Convert<32, big_endian>::convert_host(this->p_->st_name); }
1253
1254   typename Elf_types<size>::Elf_Addr
1255   get_st_value() const
1256   { return Convert<size, big_endian>::convert_host(this->p_->st_value); }
1257
1258   typename Elf_types<size>::Elf_WXword
1259   get_st_size() const
1260   { return Convert<size, big_endian>::convert_host(this->p_->st_size); }
1261
1262   unsigned char
1263   get_st_info() const
1264   { return this->p_->st_info; }
1265
1266   STB
1267   get_st_bind() const
1268   { return elf_st_bind(this->get_st_info()); }
1269
1270   STT
1271   get_st_type() const
1272   { return elf_st_type(this->get_st_info()); }
1273
1274   unsigned char
1275   get_st_other() const
1276   { return this->p_->st_other; }
1277
1278   STV
1279   get_st_visibility() const
1280   { return elf_st_visibility(this->get_st_other()); }
1281
1282   unsigned char
1283   get_st_nonvis() const
1284   { return elf_st_nonvis(this->get_st_other()); }
1285
1286   Elf_Half
1287   get_st_shndx() const
1288   { return Convert<16, big_endian>::convert_host(this->p_->st_shndx); }
1289
1290  private:
1291   const internal::Sym_data<size>* p_;
1292 };
1293
1294 // Writer class for an ELF symbol table entry.
1295
1296 template<int size, bool big_endian>
1297 class Sym_write
1298 {
1299  public:
1300   Sym_write(unsigned char* p)
1301     : p_(reinterpret_cast<internal::Sym_data<size>*>(p))
1302   { }
1303
1304   void
1305   put_st_name(Elf_Word v)
1306   { this->p_->st_name = Convert<32, big_endian>::convert_host(v); }
1307
1308   void
1309   put_st_value(typename Elf_types<size>::Elf_Addr v)
1310   { this->p_->st_value = Convert<size, big_endian>::convert_host(v); }
1311
1312   void
1313   put_st_size(typename Elf_types<size>::Elf_WXword v)
1314   { this->p_->st_size = Convert<size, big_endian>::convert_host(v); }
1315
1316   void
1317   put_st_info(unsigned char v)
1318   { this->p_->st_info = v; }
1319
1320   void
1321   put_st_info(STB bind, STT type)
1322   { this->p_->st_info = elf_st_info(bind, type); }
1323
1324   void
1325   put_st_other(unsigned char v)
1326   { this->p_->st_other = v; }
1327
1328   void
1329   put_st_other(STV vis, unsigned char nonvis)
1330   { this->p_->st_other = elf_st_other(vis, nonvis); }
1331
1332   void
1333   put_st_shndx(Elf_Half v)
1334   { this->p_->st_shndx = Convert<16, big_endian>::convert_host(v); }
1335
1336   Sym<size, big_endian>
1337   sym()
1338   { return Sym<size, big_endian>(reinterpret_cast<unsigned char*>(this->p_)); }
1339
1340  private:
1341   internal::Sym_data<size>* p_;
1342 };
1343
1344 // Accessor classes for an ELF REL relocation entry.
1345
1346 template<int size, bool big_endian>
1347 class Rel
1348 {
1349  public:
1350   Rel(const unsigned char* p)
1351     : p_(reinterpret_cast<const internal::Rel_data<size>*>(p))
1352   { }
1353
1354   template<typename File>
1355   Rel(File* file, typename File::Location loc)
1356     : p_(reinterpret_cast<const internal::Rel_data<size>*>(
1357            file->view(loc.file_offset, loc.data_size).data()))
1358   { }
1359
1360   typename Elf_types<size>::Elf_Addr
1361   get_r_offset() const
1362   { return Convert<size, big_endian>::convert_host(this->p_->r_offset); }
1363
1364   typename Elf_types<size>::Elf_WXword
1365   get_r_info() const
1366   { return Convert<size, big_endian>::convert_host(this->p_->r_info); }
1367
1368  private:
1369   const internal::Rel_data<size>* p_;
1370 };
1371
1372 // Writer class for an ELF Rel relocation.
1373
1374 template<int size, bool big_endian>
1375 class Rel_write
1376 {
1377  public:
1378   Rel_write(unsigned char* p)
1379     : p_(reinterpret_cast<internal::Rel_data<size>*>(p))
1380   { }
1381
1382   void
1383   put_r_offset(typename Elf_types<size>::Elf_Addr v)
1384   { this->p_->r_offset = Convert<size, big_endian>::convert_host(v); }
1385
1386   void
1387   put_r_info(typename Elf_types<size>::Elf_WXword v)
1388   { this->p_->r_info = Convert<size, big_endian>::convert_host(v); }
1389
1390  private:
1391   internal::Rel_data<size>* p_;
1392 };
1393
1394 // Accessor class for an ELF Rela relocation.
1395
1396 template<int size, bool big_endian>
1397 class Rela
1398 {
1399  public:
1400   Rela(const unsigned char* p)
1401     : p_(reinterpret_cast<const internal::Rela_data<size>*>(p))
1402   { }
1403
1404   template<typename File>
1405   Rela(File* file, typename File::Location loc)
1406     : p_(reinterpret_cast<const internal::Rela_data<size>*>(
1407            file->view(loc.file_offset, loc.data_size).data()))
1408   { }
1409
1410   typename Elf_types<size>::Elf_Addr
1411   get_r_offset() const
1412   { return Convert<size, big_endian>::convert_host(this->p_->r_offset); }
1413
1414   typename Elf_types<size>::Elf_WXword
1415   get_r_info() const
1416   { return Convert<size, big_endian>::convert_host(this->p_->r_info); }
1417
1418   typename Elf_types<size>::Elf_Swxword
1419   get_r_addend() const
1420   { return Convert<size, big_endian>::convert_host(this->p_->r_addend); }
1421
1422  private:
1423   const internal::Rela_data<size>* p_;
1424 };
1425
1426 // Writer class for an ELF Rela relocation.
1427
1428 template<int size, bool big_endian>
1429 class Rela_write
1430 {
1431  public:
1432   Rela_write(unsigned char* p)
1433     : p_(reinterpret_cast<internal::Rela_data<size>*>(p))
1434   { }
1435
1436   void
1437   put_r_offset(typename Elf_types<size>::Elf_Addr v)
1438   { this->p_->r_offset = Convert<size, big_endian>::convert_host(v); }
1439
1440   void
1441   put_r_info(typename Elf_types<size>::Elf_WXword v)
1442   { this->p_->r_info = Convert<size, big_endian>::convert_host(v); }
1443
1444   void
1445   put_r_addend(typename Elf_types<size>::Elf_Swxword v)
1446   { this->p_->r_addend = Convert<size, big_endian>::convert_host(v); }
1447
1448  private:
1449   internal::Rela_data<size>* p_;
1450 };
1451
1452 // Accessor classes for entries in the ELF SHT_DYNAMIC section aka
1453 // PT_DYNAMIC segment.
1454
1455 template<int size, bool big_endian>
1456 class Dyn
1457 {
1458  public:
1459   Dyn(const unsigned char* p)
1460     : p_(reinterpret_cast<const internal::Dyn_data<size>*>(p))
1461   { }
1462
1463   template<typename File>
1464   Dyn(File* file, typename File::Location loc)
1465     : p_(reinterpret_cast<const internal::Dyn_data<size>*>(
1466            file->view(loc.file_offset, loc.data_size).data()))
1467   { }
1468
1469   typename Elf_types<size>::Elf_Swxword
1470   get_d_tag() const
1471   { return Convert<size, big_endian>::convert_host(this->p_->d_tag); }
1472
1473   typename Elf_types<size>::Elf_WXword
1474   get_d_val() const
1475   { return Convert<size, big_endian>::convert_host(this->p_->d_val); }
1476
1477   typename Elf_types<size>::Elf_Addr
1478   get_d_ptr() const
1479   { return Convert<size, big_endian>::convert_host(this->p_->d_val); }
1480
1481  private:
1482   const internal::Dyn_data<size>* p_;
1483 };
1484
1485 // Write class for an entry in the SHT_DYNAMIC section.
1486
1487 template<int size, bool big_endian>
1488 class Dyn_write
1489 {
1490  public:
1491   Dyn_write(unsigned char* p)
1492     : p_(reinterpret_cast<internal::Dyn_data<size>*>(p))
1493   { }
1494
1495   void
1496   put_d_tag(typename Elf_types<size>::Elf_Swxword v)
1497   { this->p_->d_tag = Convert<size, big_endian>::convert_host(v); }
1498
1499   void
1500   put_d_val(typename Elf_types<size>::Elf_WXword v)
1501   { this->p_->d_val = Convert<size, big_endian>::convert_host(v); }
1502
1503   void
1504   put_d_ptr(typename Elf_types<size>::Elf_Addr v)
1505   { this->p_->d_val = Convert<size, big_endian>::convert_host(v); }
1506
1507  private:
1508   internal::Dyn_data<size>* p_;
1509 };
1510
1511 // Accessor classes for entries in the ELF SHT_GNU_verdef section.
1512
1513 template<int size, bool big_endian>
1514 class Verdef
1515 {
1516  public:
1517   Verdef(const unsigned char* p)
1518     : p_(reinterpret_cast<const internal::Verdef_data*>(p))
1519   { }
1520
1521   template<typename File>
1522   Verdef(File* file, typename File::Location loc)
1523     : p_(reinterpret_cast<const internal::Verdef_data*>(
1524            file->view(loc.file_offset, loc.data_size).data()))
1525   { }
1526
1527   Elf_Half
1528   get_vd_version() const
1529   { return Convert<16, big_endian>::convert_host(this->p_->vd_version); }
1530
1531   Elf_Half
1532   get_vd_flags() const
1533   { return Convert<16, big_endian>::convert_host(this->p_->vd_flags); }
1534
1535   Elf_Half
1536   get_vd_ndx() const
1537   { return Convert<16, big_endian>::convert_host(this->p_->vd_ndx); }
1538
1539   Elf_Half
1540   get_vd_cnt() const
1541   { return Convert<16, big_endian>::convert_host(this->p_->vd_cnt); }
1542
1543   Elf_Word
1544   get_vd_hash() const
1545   { return Convert<32, big_endian>::convert_host(this->p_->vd_hash); }
1546
1547   Elf_Word
1548   get_vd_aux() const
1549   { return Convert<32, big_endian>::convert_host(this->p_->vd_aux); }
1550
1551   Elf_Word
1552   get_vd_next() const
1553   { return Convert<32, big_endian>::convert_host(this->p_->vd_next); }
1554
1555  private:
1556   const internal::Verdef_data* p_;
1557 };
1558
1559 template<int size, bool big_endian>
1560 class Verdef_write
1561 {
1562  public:
1563   Verdef_write(unsigned char* p)
1564     : p_(reinterpret_cast<internal::Verdef_data*>(p))
1565   { }
1566
1567   void
1568   set_vd_version(Elf_Half v)
1569   { this->p_->vd_version = Convert<16, big_endian>::convert_host(v); }
1570
1571   void
1572   set_vd_flags(Elf_Half v)
1573   { this->p_->vd_flags = Convert<16, big_endian>::convert_host(v); }
1574
1575   void
1576   set_vd_ndx(Elf_Half v)
1577   { this->p_->vd_ndx = Convert<16, big_endian>::convert_host(v); }
1578
1579   void
1580   set_vd_cnt(Elf_Half v)
1581   { this->p_->vd_cnt = Convert<16, big_endian>::convert_host(v); }
1582
1583   void
1584   set_vd_hash(Elf_Word v)
1585   { this->p_->vd_hash = Convert<32, big_endian>::convert_host(v); }
1586
1587   void
1588   set_vd_aux(Elf_Word v)
1589   { this->p_->vd_aux = Convert<32, big_endian>::convert_host(v); }
1590
1591   void
1592   set_vd_next(Elf_Word v)
1593   { this->p_->vd_next = Convert<32, big_endian>::convert_host(v); }
1594
1595  private:
1596   internal::Verdef_data* p_;
1597 };
1598
1599 // Accessor classes for auxiliary entries in the ELF SHT_GNU_verdef
1600 // section.
1601
1602 template<int size, bool big_endian>
1603 class Verdaux
1604 {
1605  public:
1606   Verdaux(const unsigned char* p)
1607     : p_(reinterpret_cast<const internal::Verdaux_data*>(p))
1608   { }
1609
1610   template<typename File>
1611   Verdaux(File* file, typename File::Location loc)
1612     : p_(reinterpret_cast<const internal::Verdaux_data*>(
1613            file->view(loc.file_offset, loc.data_size).data()))
1614   { }
1615
1616   Elf_Word
1617   get_vda_name() const
1618   { return Convert<32, big_endian>::convert_host(this->p_->vda_name); }
1619
1620   Elf_Word
1621   get_vda_next() const
1622   { return Convert<32, big_endian>::convert_host(this->p_->vda_next); }
1623
1624  private:
1625   const internal::Verdaux_data* p_;
1626 };
1627
1628 template<int size, bool big_endian>
1629 class Verdaux_write
1630 {
1631  public:
1632   Verdaux_write(unsigned char* p)
1633     : p_(reinterpret_cast<internal::Verdaux_data*>(p))
1634   { }
1635
1636   void
1637   set_vda_name(Elf_Word v)
1638   { this->p_->vda_name = Convert<32, big_endian>::convert_host(v); }
1639
1640   void
1641   set_vda_next(Elf_Word v)
1642   { this->p_->vda_next = Convert<32, big_endian>::convert_host(v); }
1643
1644  private:
1645   internal::Verdaux_data* p_;
1646 };
1647
1648 // Accessor classes for entries in the ELF SHT_GNU_verneed section.
1649
1650 template<int size, bool big_endian>
1651 class Verneed
1652 {
1653  public:
1654   Verneed(const unsigned char* p)
1655     : p_(reinterpret_cast<const internal::Verneed_data*>(p))
1656   { }
1657
1658   template<typename File>
1659   Verneed(File* file, typename File::Location loc)
1660     : p_(reinterpret_cast<const internal::Verneed_data*>(
1661            file->view(loc.file_offset, loc.data_size).data()))
1662   { }
1663
1664   Elf_Half
1665   get_vn_version() const
1666   { return Convert<16, big_endian>::convert_host(this->p_->vn_version); }
1667
1668   Elf_Half
1669   get_vn_cnt() const
1670   { return Convert<16, big_endian>::convert_host(this->p_->vn_cnt); }
1671
1672   Elf_Word
1673   get_vn_file() const
1674   { return Convert<32, big_endian>::convert_host(this->p_->vn_file); }
1675
1676   Elf_Word
1677   get_vn_aux() const
1678   { return Convert<32, big_endian>::convert_host(this->p_->vn_aux); }
1679
1680   Elf_Word
1681   get_vn_next() const
1682   { return Convert<32, big_endian>::convert_host(this->p_->vn_next); }
1683
1684  private:
1685   const internal::Verneed_data* p_;
1686 };
1687
1688 template<int size, bool big_endian>
1689 class Verneed_write
1690 {
1691  public:
1692   Verneed_write(unsigned char* p)
1693     : p_(reinterpret_cast<internal::Verneed_data*>(p))
1694   { }
1695
1696   void
1697   set_vn_version(Elf_Half v)
1698   { this->p_->vn_version = Convert<16, big_endian>::convert_host(v); }
1699
1700   void
1701   set_vn_cnt(Elf_Half v)
1702   { this->p_->vn_cnt = Convert<16, big_endian>::convert_host(v); }
1703
1704   void
1705   set_vn_file(Elf_Word v)
1706   { this->p_->vn_file = Convert<32, big_endian>::convert_host(v); }
1707
1708   void
1709   set_vn_aux(Elf_Word v)
1710   { this->p_->vn_aux = Convert<32, big_endian>::convert_host(v); }
1711
1712   void
1713   set_vn_next(Elf_Word v)
1714   { this->p_->vn_next = Convert<32, big_endian>::convert_host(v); }
1715
1716  private:
1717   internal::Verneed_data* p_;
1718 };
1719
1720 // Accessor classes for auxiliary entries in the ELF SHT_GNU_verneed
1721 // section.
1722
1723 template<int size, bool big_endian>
1724 class Vernaux
1725 {
1726  public:
1727   Vernaux(const unsigned char* p)
1728     : p_(reinterpret_cast<const internal::Vernaux_data*>(p))
1729   { }
1730
1731   template<typename File>
1732   Vernaux(File* file, typename File::Location loc)
1733     : p_(reinterpret_cast<const internal::Vernaux_data*>(
1734            file->view(loc.file_offset, loc.data_size).data()))
1735   { }
1736
1737   Elf_Word
1738   get_vna_hash() const
1739   { return Convert<32, big_endian>::convert_host(this->p_->vna_hash); }
1740
1741   Elf_Half
1742   get_vna_flags() const
1743   { return Convert<16, big_endian>::convert_host(this->p_->vna_flags); }
1744
1745   Elf_Half
1746   get_vna_other() const
1747   { return Convert<16, big_endian>::convert_host(this->p_->vna_other); }
1748
1749   Elf_Word
1750   get_vna_name() const
1751   { return Convert<32, big_endian>::convert_host(this->p_->vna_name); }
1752
1753   Elf_Word
1754   get_vna_next() const
1755   { return Convert<32, big_endian>::convert_host(this->p_->vna_next); }
1756
1757  private:
1758   const internal::Vernaux_data* p_;
1759 };
1760
1761 template<int size, bool big_endian>
1762 class Vernaux_write
1763 {
1764  public:
1765   Vernaux_write(unsigned char* p)
1766     : p_(reinterpret_cast<internal::Vernaux_data*>(p))
1767   { }
1768
1769   void
1770   set_vna_hash(Elf_Word v)
1771   { this->p_->vna_hash = Convert<32, big_endian>::convert_host(v); }
1772
1773   void
1774   set_vna_flags(Elf_Half v)
1775   { this->p_->vna_flags = Convert<16, big_endian>::convert_host(v); }
1776
1777   void
1778   set_vna_other(Elf_Half v)
1779   { this->p_->vna_other = Convert<16, big_endian>::convert_host(v); }
1780
1781   void
1782   set_vna_name(Elf_Word v)
1783   { this->p_->vna_name = Convert<32, big_endian>::convert_host(v); }
1784
1785   void
1786   set_vna_next(Elf_Word v)
1787   { this->p_->vna_next = Convert<32, big_endian>::convert_host(v); }
1788
1789  private:
1790   internal::Vernaux_data* p_;
1791 };
1792
1793 } // End namespace elfcpp.
1794
1795 #endif // !defined(ELFPCP_H)