* All backends: Added BFD_JUMP_TABLE_DYNAMIC to target vector.
[deliverable/binutils-gdb.git] / bfd / elf64-target.h
CommitLineData
3adad029 1/* Target definitions for 64-bit ELF
dfc1c006 2 Copyright 1993, 1994 Free Software Foundation, Inc.
3adad029
KR
3
4This file is part of BFD, the Binary File Descriptor library.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20/* This structure contains everything that BFD knows about a target.
21 It includes things like its byte order, name, what routines to call
22 to do various operations, etc. Every BFD points to a target structure
23 with its "xvec" member.
24
25 There are two such structures here: one for big-endian machines and
26 one for little-endian machines. */
27
6812b607
ILT
28#define bfd_elf64_close_and_cleanup _bfd_generic_close_and_cleanup
29#define bfd_elf64_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
30#ifndef bfd_elf64_get_section_contents
31#define bfd_elf64_get_section_contents _bfd_generic_get_section_contents
3adad029 32#endif
3adad029
KR
33
34#define bfd_elf64_bfd_debug_info_start bfd_void
35#define bfd_elf64_bfd_debug_info_end bfd_void
36#define bfd_elf64_bfd_debug_info_accumulate (PROTO(void,(*),(bfd*, struct sec *))) bfd_void
37#define bfd_elf64_bfd_get_relocated_section_contents \
38 bfd_generic_get_relocated_section_contents
39#define bfd_elf64_bfd_relax_section bfd_generic_relax_section
3adad029
KR
40#define bfd_elf64_bfd_make_debug_symbol \
41 ((asymbol *(*) PARAMS ((bfd *, void *, unsigned long))) bfd_nullvoidptr)
4c3721d5
ILT
42#ifndef bfd_elf64_bfd_link_hash_table_create
43#define bfd_elf64_bfd_link_hash_table_create \
44 _bfd_generic_link_hash_table_create
45#endif
46#ifndef bfd_elf64_bfd_link_add_symbols
47#define bfd_elf64_bfd_link_add_symbols _bfd_generic_link_add_symbols
48#endif
49#ifndef bfd_elf64_bfd_final_link
50#define bfd_elf64_bfd_final_link _bfd_generic_final_link
51#endif
3adad029 52
5b3577cb
JL
53#ifndef bfd_elf64_bfd_copy_private_section_data
54#define bfd_elf64_bfd_copy_private_section_data \
55 ((boolean (*) PARAMS ((bfd *, asection *, bfd *, asection *))) bfd_true)
56#endif
57#ifndef bfd_elf64_bfd_copy_private_bfd_data
58#define bfd_elf64_bfd_copy_private_bfd_data \
59 ((boolean (*) PARAMS ((bfd *, bfd *))) bfd_true)
60#endif
5b3577cb
JL
61#ifndef bfd_elf64_bfd_is_local_label
62#define bfd_elf64_bfd_is_local_label bfd_generic_is_local_label
63#endif
64
b3024965
KR
65#ifndef elf_info_to_howto_rel
66#define elf_info_to_howto_rel 0
67#endif
68
69#ifndef ELF_MAXPAGESIZE
70#define ELF_MAXPAGESIZE 1
71#endif
72
643e9fc7
ILT
73#ifndef elf_backend_sym_is_global
74#define elf_backend_sym_is_global 0
75#endif
a5ccdad1 76#ifndef elf_backend_object_p
643e9fc7 77#define elf_backend_object_p 0
a5ccdad1 78#endif
95469b02 79#ifndef elf_backend_symbol_processing
643e9fc7 80#define elf_backend_symbol_processing 0
95469b02
ILT
81#endif
82#ifndef elf_backend_symbol_table_processing
643e9fc7 83#define elf_backend_symbol_table_processing 0
95469b02
ILT
84#endif
85#ifndef elf_backend_section_processing
643e9fc7 86#define elf_backend_section_processing 0
95469b02
ILT
87#endif
88#ifndef elf_backend_section_from_shdr
643e9fc7 89#define elf_backend_section_from_shdr 0
95469b02
ILT
90#endif
91#ifndef elf_backend_fake_sections
643e9fc7 92#define elf_backend_fake_sections 0
95469b02
ILT
93#endif
94#ifndef elf_backend_section_from_bfd_section
643e9fc7
ILT
95#define elf_backend_section_from_bfd_section 0
96#endif
97#ifndef elf_backend_final_write_processing
98#define elf_backend_final_write_processing 0
95469b02
ILT
99#endif
100#ifndef elf_backend_ecoff_debug_swap
643e9fc7 101#define elf_backend_ecoff_debug_swap 0
95469b02
ILT
102#endif
103
3adad029
KR
104static CONST struct elf_backend_data elf64_bed =
105{
106#ifdef USE_REL
107 0, /* use_rela_p */
108#else
109 1, /* use_rela_p */
110#endif
95469b02 111 1, /* elf_64_p */
3adad029 112 ELF_ARCH, /* arch */
a5ccdad1 113 ELF_MACHINE_CODE, /* elf_machine_code */
95469b02 114 ELF_MAXPAGESIZE, /* maxpagesize */
643e9fc7
ILT
115 elf_info_to_howto,
116 elf_info_to_howto_rel,
117 elf_backend_sym_is_global,
118 elf_backend_object_p,
119 elf_backend_symbol_processing,
120 elf_backend_symbol_table_processing,
121 elf_backend_section_processing,
122 elf_backend_section_from_shdr,
123 elf_backend_fake_sections,
124 elf_backend_section_from_bfd_section,
125 elf_backend_ecoff_debug_swap
3adad029
KR
126};
127
128#ifdef TARGET_BIG_SYM
129bfd_target TARGET_BIG_SYM =
130{
131 /* name: identify kind of target */
132 TARGET_BIG_NAME,
133
134 /* flavour: general indication about file */
135 bfd_target_elf_flavour,
136
137 /* byteorder_big_p: data is big endian */
138 true,
139
140 /* header_byteorder_big_p: header is also big endian */
141 true,
142
143 /* object_flags: mask of all file flags */
144 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS |
145 DYNAMIC | WP_TEXT),
146
147 /* section_flags: mask of all section flags */
148 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_READONLY |
d6e5f950 149 SEC_CODE | SEC_DATA | SEC_DEBUGGING),
3adad029
KR
150
151 /* leading_symbol_char: is the first char of a user symbol
152 predictable, and if so what is it */
153 0,
154
155 /* ar_pad_char: pad character for filenames within an archive header
156 FIXME: this really has nothing to do with ELF, this is a characteristic
157 of the archiver and/or os and should be independently tunable */
158 '/',
159
160 /* ar_max_namelen: maximum number of characters in an archive header
161 FIXME: this really has nothing to do with ELF, this is a characteristic
162 of the archiver and should be independently tunable. This value is
163 a WAG (wild a** guess) */
164 15,
165
166 /* align_power_min: minimum alignment restriction for any section
167 FIXME: this value may be target machine dependent */
168 3,
169
170 /* Routines to byte-swap various sized integers from the data sections */
23f44e6f
ILT
171 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
172 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
173 bfd_getb16, bfd_getb_signed_16, bfd_putb16,
3adad029
KR
174
175 /* Routines to byte-swap various sized integers from the file headers */
23f44e6f
ILT
176 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
177 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
178 bfd_getb16, bfd_getb_signed_16, bfd_putb16,
3adad029
KR
179
180 /* bfd_check_format: check the format of a file being read */
181 { _bfd_dummy_target, /* unknown format */
182 bfd_elf64_object_p, /* assembler/linker output (object file) */
183 bfd_generic_archive_p, /* an archive */
184 bfd_elf64_core_file_p /* a core file */
185 },
186
187 /* bfd_set_format: set the format of a file being written */
188 { bfd_false,
189 bfd_elf_mkobject,
190 _bfd_generic_mkarchive,
191 bfd_false
192 },
193
194 /* bfd_write_contents: write cached information into a file being written */
195 { bfd_false,
196 bfd_elf64_write_object_contents,
197 _bfd_write_archive_contents,
198 bfd_false
199 },
200
6812b607
ILT
201 BFD_JUMP_TABLE_GENERIC (bfd_elf64),
202 BFD_JUMP_TABLE_COPY (bfd_elf64),
203 BFD_JUMP_TABLE_CORE (bfd_elf64),
204 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff),
205 BFD_JUMP_TABLE_SYMBOLS (bfd_elf64),
206 BFD_JUMP_TABLE_RELOCS (bfd_elf64),
207 BFD_JUMP_TABLE_WRITE (bfd_elf64),
208 BFD_JUMP_TABLE_LINK (bfd_elf64),
dfc1c006 209 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
3adad029
KR
210
211 /* backend_data: */
212 (PTR) &elf64_bed,
213};
214#endif
215
216#ifdef TARGET_LITTLE_SYM
217bfd_target TARGET_LITTLE_SYM =
218{
219 /* name: identify kind of target */
220 TARGET_LITTLE_NAME,
221
222 /* flavour: general indication about file */
223 bfd_target_elf_flavour,
224
225 /* byteorder_big_p: data is big endian */
226 false, /* Nope -- this one's little endian */
227
228 /* header_byteorder_big_p: header is also big endian */
229 false, /* Nope -- this one's little endian */
230
231 /* object_flags: mask of all file flags */
232 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS |
233 DYNAMIC | WP_TEXT),
234
235 /* section_flags: mask of all section flags */
236 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_READONLY |
d6e5f950 237 SEC_CODE | SEC_DATA | SEC_DEBUGGING),
3adad029
KR
238
239 /* leading_symbol_char: is the first char of a user symbol
240 predictable, and if so what is it */
241 0,
242
243 /* ar_pad_char: pad character for filenames within an archive header
244 FIXME: this really has nothing to do with ELF, this is a characteristic
245 of the archiver and/or os and should be independently tunable */
246 '/',
247
248 /* ar_max_namelen: maximum number of characters in an archive header
249 FIXME: this really has nothing to do with ELF, this is a characteristic
250 of the archiver and should be independently tunable. This value is
251 a WAG (wild a** guess) */
252 15,
253
254 /* align_power_min: minimum alignment restriction for any section
255 FIXME: this value may be target machine dependent */
256 3,
257
258 /* Routines to byte-swap various sized integers from the data sections */
23f44e6f
ILT
259 bfd_getl64, bfd_getl_signed_64, bfd_putl64,
260 bfd_getl32, bfd_getl_signed_32, bfd_putl32,
261 bfd_getl16, bfd_getl_signed_16, bfd_putl16,
3adad029
KR
262
263 /* Routines to byte-swap various sized integers from the file headers */
23f44e6f
ILT
264 bfd_getl64, bfd_getl_signed_64, bfd_putl64,
265 bfd_getl32, bfd_getl_signed_32, bfd_putl32,
266 bfd_getl16, bfd_getl_signed_16, bfd_putl16,
3adad029
KR
267
268 /* bfd_check_format: check the format of a file being read */
269 { _bfd_dummy_target, /* unknown format */
270 bfd_elf64_object_p, /* assembler/linker output (object file) */
271 bfd_generic_archive_p, /* an archive */
272 bfd_elf64_core_file_p /* a core file */
273 },
274
275 /* bfd_set_format: set the format of a file being written */
276 { bfd_false,
277 bfd_elf_mkobject,
278 _bfd_generic_mkarchive,
279 bfd_false
280 },
281
282 /* bfd_write_contents: write cached information into a file being written */
283 { bfd_false,
284 bfd_elf64_write_object_contents,
285 _bfd_write_archive_contents,
286 bfd_false
287 },
288
6812b607
ILT
289 BFD_JUMP_TABLE_GENERIC (bfd_elf64),
290 BFD_JUMP_TABLE_COPY (bfd_elf64),
291 BFD_JUMP_TABLE_CORE (bfd_elf64),
292 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff),
293 BFD_JUMP_TABLE_SYMBOLS (bfd_elf64),
294 BFD_JUMP_TABLE_RELOCS (bfd_elf64),
295 BFD_JUMP_TABLE_WRITE (bfd_elf64),
296 BFD_JUMP_TABLE_LINK (bfd_elf64),
dfc1c006 297 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
3adad029
KR
298
299 /* backend_data: */
300 (PTR) &elf64_bed,
301};
302#endif
This page took 0.066956 seconds and 4 git commands to generate.