Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* BFD backend for hp-ux 9000/300 |
9553c638 | 2 | Copyright 1990, 1991, 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, |
cd123cb7 | 3 | 2003, 2004, 2007 Free Software Foundation, Inc. |
252b5132 RH |
4 | Written by Glenn Engel. |
5 | ||
cd123cb7 | 6 | This file is part of BFD, the Binary File Descriptor library. |
252b5132 | 7 | |
cd123cb7 NC |
8 | This program is free software; you can redistribute it and/or modify |
9 | it under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 3 of the License, or | |
11 | (at your option) any later version. | |
252b5132 | 12 | |
cd123cb7 NC |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
252b5132 | 17 | |
cd123cb7 NC |
18 | You should have received a copy of the GNU General Public License |
19 | along with this program; if not, write to the Free Software | |
20 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | |
21 | MA 02110-1301, USA. */ | |
252b5132 | 22 | |
cd123cb7 NC |
23 | |
24 | /* hpux native ------------> | | | |
252b5132 RH |
25 | | hp300hpux bfd | ----------> hpux w/gnu ext |
26 | hpux w/gnu extension ----> | | | |
27 | ||
252b5132 RH |
28 | Support for the 9000/[34]00 has several limitations. |
29 | 1. Shared libraries are not supported. | |
30 | 2. The output format from this bfd is not usable by native tools. | |
31 | ||
32 | The primary motivation for writing this bfd was to allow use of | |
33 | gdb and gcc for host based debugging and not to mimic the hp-ux tools | |
34 | in every detail. This leads to a significant simplification of the | |
35 | code and a leap in performance. The decision to not output hp native | |
36 | compatible objects was further strengthened by the fact that the richness | |
37 | of the gcc compiled objects could not be represented without loss of | |
38 | information. For example, while the hp format supports the concept of | |
39 | secondary symbols, it does not support indirect symbols. Another | |
40 | reason is to maintain backwards compatibility with older implementations | |
41 | of gcc on hpux which used 'hpxt' to translate .a and .o files into a | |
42 | format which could be readily understood by the gnu linker and gdb. | |
43 | This allows reading hp secondary symbols and converting them into | |
44 | indirect symbols but the reverse it not always possible. | |
45 | ||
46 | Another example of differences is that the hp format stores symbol offsets | |
47 | in the object code while the gnu utilities use a field in the | |
48 | relocation record for this. To support the hp native format, the object | |
49 | code would need to be patched with the offsets when producing .o files. | |
50 | ||
51 | The basic technique taken in this implementation is to #include the code | |
52 | from aoutx.h and aout-target.h with appropriate #defines to override | |
53 | code where a unique implementation is needed: | |
54 | ||
55 | { | |
56 | #define a bunch of stuff | |
57 | #include <aoutx.h> | |
58 | ||
59 | implement a bunch of functions | |
60 | ||
61 | #include "aout-target.h" | |
62 | } | |
63 | ||
64 | The hp symbol table is a bit different than other a.out targets. Instead | |
65 | of having an array of nlist items and an array of strings, hp's format | |
66 | has them mixed together in one structure. In addition, the strings are | |
67 | not null terminated. It looks something like this: | |
68 | ||
69 | nlist element 1 | |
70 | string1 | |
71 | nlist element 2 | |
72 | string2 | |
73 | ... | |
74 | ||
75 | The whole symbol table is read as one chunk and then we march thru it | |
76 | and convert it to canonical form. As we march thru the table, we copy | |
77 | the nlist data into the internal form and we compact the strings and null | |
78 | terminate them, using storage from the already allocated symbol table: | |
79 | ||
80 | string1 | |
81 | null | |
82 | string2 | |
83 | null | |
84 | */ | |
85 | ||
86 | /* @@ Is this really so different from normal a.out that it needs to include | |
87 | aoutx.h? We should go through this file sometime and see what can be made | |
88 | more dependent on aout32.o and what might need to be broken off and accessed | |
89 | through the backend_data field. Or, maybe we really do need such a | |
90 | completely separate implementation. I don't have time to investigate this | |
91 | much further right now. [raeburn:19930428.2124EST] */ | |
92 | /* @@ Also, note that there wind up being two versions of some routines, with | |
93 | different names, only one of which actually gets used. For example: | |
94 | slurp_symbol_table | |
95 | swap_std_reloc_in | |
96 | slurp_reloc_table | |
6cee3f79 | 97 | canonicalize_symtab |
252b5132 RH |
98 | get_symtab_upper_bound |
99 | canonicalize_reloc | |
100 | mkobject | |
101 | This should also be fixed. */ | |
102 | ||
103 | #define TARGETNAME "a.out-hp300hpux" | |
e43d48cc AM |
104 | |
105 | /* Do not "beautify" the CONCAT* macro args. Traditional C will not | |
106 | remove whitespace added here, and thus will fail to concatenate | |
107 | the tokens. */ | |
108 | #define MY(OP) CONCAT2 (hp300hpux_,OP) | |
252b5132 RH |
109 | |
110 | #define external_exec hp300hpux_exec_bytes | |
111 | #define external_nlist hp300hpux_nlist_bytes | |
112 | ||
113 | #include "aout/hp300hpux.h" | |
114 | ||
115 | /* define these so we can compile unused routines in aoutx.h */ | |
116 | #define e_strx e_shlib | |
117 | #define e_other e_length | |
118 | #define e_desc e_almod | |
119 | ||
120 | #define AR_PAD_CHAR '/' | |
121 | #define TARGET_IS_BIG_ENDIAN_P | |
122 | #define DEFAULT_ARCH bfd_arch_m68k | |
123 | ||
124 | #define MY_get_section_contents aout_32_get_section_contents | |
125 | #define MY_slurp_armap bfd_slurp_bsd_armap_f2 | |
126 | ||
127 | /***********************************************/ | |
128 | /* provide overrides for routines in this file */ | |
129 | /***********************************************/ | |
130 | /* these don't use MY because that causes problems within JUMP_TABLE | |
e43d48cc | 131 | (CONCAT2 winds up being expanded recursively, which ANSI C compilers |
252b5132 | 132 | will not do). */ |
6cee3f79 | 133 | #define MY_canonicalize_symtab hp300hpux_canonicalize_symtab |
252b5132 RH |
134 | #define MY_get_symtab_upper_bound hp300hpux_get_symtab_upper_bound |
135 | #define MY_canonicalize_reloc hp300hpux_canonicalize_reloc | |
136 | #define MY_write_object_contents hp300hpux_write_object_contents | |
137 | ||
138 | #define MY_read_minisymbols _bfd_generic_read_minisymbols | |
139 | #define MY_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol | |
140 | ||
141 | #define MY_bfd_link_hash_table_create _bfd_generic_link_hash_table_create | |
142 | #define MY_bfd_link_add_symbols _bfd_generic_link_add_symbols | |
143 | #define MY_final_link_callback unused | |
144 | #define MY_bfd_final_link _bfd_generic_final_link | |
145 | ||
146 | /* Until and unless we convert the slurp_reloc and slurp_symtab | |
147 | routines in this file, we can not use the default aout | |
148 | free_cached_info routine which assumes that the relocs and symtabs | |
149 | were allocated using malloc. */ | |
150 | #define MY_bfd_free_cached_info bfd_true | |
151 | ||
152 | #define hp300hpux_write_syms aout_32_write_syms | |
153 | ||
154 | #define MY_callback MY(callback) | |
155 | ||
156 | #define MY_exec_hdr_flags 0x2 | |
157 | ||
158 | #define NAME_swap_exec_header_in NAME(hp300hpux_32_,swap_exec_header_in) | |
159 | ||
160 | #define HP_SYMTYPE_UNDEFINED 0x00 | |
161 | #define HP_SYMTYPE_ABSOLUTE 0x01 | |
162 | #define HP_SYMTYPE_TEXT 0x02 | |
163 | #define HP_SYMTYPE_DATA 0x03 | |
164 | #define HP_SYMTYPE_BSS 0x04 | |
165 | #define HP_SYMTYPE_COMMON 0x05 | |
166 | ||
167 | #define HP_SYMTYPE_TYPE 0x0F | |
168 | #define HP_SYMTYPE_FILENAME 0x1F | |
169 | ||
170 | #define HP_SYMTYPE_ALIGN 0x10 | |
171 | #define HP_SYMTYPE_EXTERNAL 0x20 | |
172 | #define HP_SECONDARY_SYMBOL 0x40 | |
173 | ||
174 | /* RELOCATION DEFINITIONS */ | |
175 | #define HP_RSEGMENT_TEXT 0x00 | |
176 | #define HP_RSEGMENT_DATA 0x01 | |
177 | #define HP_RSEGMENT_BSS 0x02 | |
178 | #define HP_RSEGMENT_EXTERNAL 0x03 | |
179 | #define HP_RSEGMENT_PCREL 0x04 | |
180 | #define HP_RSEGMENT_RDLT 0x05 | |
181 | #define HP_RSEGMENT_RPLT 0x06 | |
182 | #define HP_RSEGMENT_NOOP 0x3F | |
183 | ||
184 | #define HP_RLENGTH_BYTE 0x00 | |
185 | #define HP_RLENGTH_WORD 0x01 | |
186 | #define HP_RLENGTH_LONG 0x02 | |
187 | #define HP_RLENGTH_ALIGN 0x03 | |
188 | ||
e43d48cc | 189 | #define NAME(x,y) CONCAT3 (hp300hpux,_32_,y) |
252b5132 RH |
190 | #define ARCH_SIZE 32 |
191 | ||
192 | /* aoutx.h requires definitions for BMAGIC and QMAGIC. */ | |
193 | #define BMAGIC HPUX_DOT_O_MAGIC | |
194 | #define QMAGIC 0314 | |
195 | ||
196 | #include "aoutx.h" | |
197 | ||
b34976b6 AM |
198 | static const bfd_target * MY (callback) |
199 | PARAMS ((bfd *)); | |
200 | static bfd_boolean MY (write_object_contents) | |
201 | PARAMS ((bfd *)); | |
202 | static void convert_sym_type | |
203 | PARAMS ((struct external_nlist *, aout_symbol_type *, bfd *)); | |
204 | ||
205 | bfd_boolean MY (slurp_symbol_table) | |
206 | PARAMS ((bfd *)); | |
207 | void MY (swap_std_reloc_in) | |
208 | PARAMS ((bfd *, struct hp300hpux_reloc *, arelent *, asymbol **, | |
209 | bfd_size_type)); | |
210 | bfd_boolean MY (slurp_reloc_table) | |
211 | PARAMS ((bfd *, sec_ptr, asymbol **)); | |
6cee3f79 | 212 | long MY (canonicalize_symtab) |
b34976b6 AM |
213 | PARAMS ((bfd *, asymbol **)); |
214 | long MY (get_symtab_upper_bound) | |
215 | PARAMS ((bfd *)); | |
216 | long MY (canonicalize_reloc) | |
217 | PARAMS ((bfd *, sec_ptr, arelent **, asymbol **)); | |
e4b17274 | 218 | |
252b5132 RH |
219 | /* Since the hpux symbol table has nlist elements interspersed with |
220 | strings and we need to insert som strings for secondary symbols, we | |
221 | give ourselves a little extra padding up front to account for | |
222 | this. Note that for each non-secondary symbol we process, we gain | |
223 | 9 bytes of space for the discarded nlist element (one byte used for | |
224 | null). SYM_EXTRA_BYTES is the extra space. */ | |
225 | #define SYM_EXTRA_BYTES 1024 | |
226 | ||
227 | /* Set parameters about this a.out file that are machine-dependent. | |
228 | This routine is called from some_aout_object_p just before it returns. */ | |
229 | static const bfd_target * | |
230 | MY (callback) (abfd) | |
231 | bfd *abfd; | |
232 | { | |
233 | struct internal_exec *execp = exec_hdr (abfd); | |
234 | ||
235 | /* Calculate the file positions of the parts of a newly read aout header */ | |
eea6121a | 236 | obj_textsec (abfd)->size = N_TXTSIZE (*execp); |
252b5132 RH |
237 | |
238 | /* The virtual memory addresses of the sections */ | |
239 | obj_textsec (abfd)->vma = N_TXTADDR (*execp); | |
240 | obj_datasec (abfd)->vma = N_DATADDR (*execp); | |
241 | obj_bsssec (abfd)->vma = N_BSSADDR (*execp); | |
242 | ||
243 | obj_textsec (abfd)->lma = obj_textsec (abfd)->vma; | |
244 | obj_datasec (abfd)->lma = obj_datasec (abfd)->vma; | |
245 | obj_bsssec (abfd)->lma = obj_bsssec (abfd)->vma; | |
246 | ||
247 | /* The file offsets of the sections */ | |
248 | obj_textsec (abfd)->filepos = N_TXTOFF (*execp); | |
249 | obj_datasec (abfd)->filepos = N_DATOFF (*execp); | |
250 | ||
251 | /* The file offsets of the relocation info */ | |
252 | obj_textsec (abfd)->rel_filepos = N_TRELOFF (*execp); | |
253 | obj_datasec (abfd)->rel_filepos = N_DRELOFF (*execp); | |
254 | ||
255 | /* The file offsets of the string table and symbol table. */ | |
256 | obj_sym_filepos (abfd) = N_SYMOFF (*execp); | |
257 | obj_str_filepos (abfd) = N_STROFF (*execp); | |
258 | ||
259 | /* Determine the architecture and machine type of the object file. */ | |
260 | #ifdef SET_ARCH_MACH | |
261 | SET_ARCH_MACH (abfd, *execp); | |
262 | #else | |
263 | bfd_default_set_arch_mach (abfd, DEFAULT_ARCH, 0); | |
264 | #endif | |
265 | ||
252b5132 RH |
266 | if (obj_aout_subformat (abfd) == gnu_encap_format) |
267 | { | |
268 | /* The file offsets of the relocation info */ | |
269 | obj_textsec (abfd)->rel_filepos = N_GNU_TRELOFF (*execp); | |
270 | obj_datasec (abfd)->rel_filepos = N_GNU_DRELOFF (*execp); | |
271 | ||
272 | /* The file offsets of the string table and symbol table. */ | |
273 | obj_sym_filepos (abfd) = N_GNU_SYMOFF (*execp); | |
274 | obj_str_filepos (abfd) = (obj_sym_filepos (abfd) + execp->a_syms); | |
275 | ||
276 | abfd->flags |= HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS; | |
277 | bfd_get_symcount (abfd) = execp->a_syms / 12; | |
278 | obj_symbol_entry_size (abfd) = 12; | |
279 | obj_reloc_entry_size (abfd) = RELOC_STD_SIZE; | |
280 | } | |
281 | ||
282 | return abfd->xvec; | |
283 | } | |
284 | ||
b34976b6 AM |
285 | extern bfd_boolean aout_32_write_syms |
286 | PARAMS ((bfd * abfd)); | |
252b5132 | 287 | |
b34976b6 | 288 | static bfd_boolean |
252b5132 RH |
289 | MY (write_object_contents) (abfd) |
290 | bfd *abfd; | |
291 | { | |
292 | struct external_exec exec_bytes; | |
293 | struct internal_exec *execp = exec_hdr (abfd); | |
294 | bfd_size_type text_size; /* dummy vars */ | |
295 | file_ptr text_end; | |
296 | ||
297 | memset (&exec_bytes, 0, sizeof (exec_bytes)); | |
8ba8a462 | 298 | |
252b5132 | 299 | obj_reloc_entry_size (abfd) = RELOC_STD_SIZE; |
252b5132 RH |
300 | |
301 | if (adata (abfd).magic == undecided_magic) | |
302 | NAME (aout,adjust_sizes_and_vmas) (abfd, &text_size, &text_end); | |
303 | execp->a_syms = 0; | |
304 | ||
305 | execp->a_entry = bfd_get_start_address (abfd); | |
306 | ||
307 | execp->a_trsize = ((obj_textsec (abfd)->reloc_count) * | |
308 | obj_reloc_entry_size (abfd)); | |
309 | execp->a_drsize = ((obj_datasec (abfd)->reloc_count) * | |
310 | obj_reloc_entry_size (abfd)); | |
311 | ||
312 | N_SET_MACHTYPE (*execp, 0xc); | |
313 | N_SET_FLAGS (*execp, aout_backend_info (abfd)->exec_hdr_flags); | |
314 | ||
315 | NAME (aout,swap_exec_header_out) (abfd, execp, &exec_bytes); | |
316 | ||
317 | /* update fields not covered by default swap_exec_header_out */ | |
318 | ||
319 | /* this is really the sym table size but we store it in drelocs */ | |
dc810e39 | 320 | H_PUT_32 (abfd, (bfd_get_symcount (abfd) * 12), exec_bytes.e_drelocs); |
252b5132 | 321 | |
b34976b6 | 322 | if (bfd_seek (abfd, (file_ptr) 0, FALSE) != 0 |
dc810e39 | 323 | || (bfd_bwrite ((PTR) &exec_bytes, (bfd_size_type) EXEC_BYTES_SIZE, abfd) |
252b5132 | 324 | != EXEC_BYTES_SIZE)) |
b34976b6 | 325 | return FALSE; |
252b5132 RH |
326 | |
327 | /* Write out the symbols, and then the relocs. We must write out | |
328 | the symbols first so that we know the symbol indices. */ | |
329 | ||
330 | if (bfd_get_symcount (abfd) != 0) | |
331 | { | |
332 | /* Skip the relocs to where we want to put the symbols. */ | |
dc810e39 | 333 | if (bfd_seek (abfd, (file_ptr) (N_DRELOFF (*execp) + execp->a_drsize), |
252b5132 | 334 | SEEK_SET) != 0) |
b34976b6 | 335 | return FALSE; |
252b5132 RH |
336 | } |
337 | ||
338 | if (!MY (write_syms) (abfd)) | |
b34976b6 | 339 | return FALSE; |
252b5132 RH |
340 | |
341 | if (bfd_get_symcount (abfd) != 0) | |
342 | { | |
dc810e39 | 343 | if (bfd_seek (abfd, (file_ptr) N_TRELOFF (*execp), SEEK_CUR) != 0) |
b34976b6 | 344 | return FALSE; |
252b5132 | 345 | if (!NAME (aout,squirt_out_relocs) (abfd, obj_textsec (abfd))) |
b34976b6 | 346 | return FALSE; |
dc810e39 | 347 | if (bfd_seek (abfd, (file_ptr) N_DRELOFF (*execp), SEEK_CUR) != 0) |
b34976b6 | 348 | return FALSE; |
252b5132 | 349 | if (!NAME (aout,squirt_out_relocs) (abfd, obj_datasec (abfd))) |
b34976b6 | 350 | return FALSE; |
252b5132 RH |
351 | } |
352 | ||
b34976b6 | 353 | return TRUE; |
252b5132 RH |
354 | } |
355 | ||
356 | /* convert the hp symbol type to be the same as aout64.h usage so we */ | |
357 | /* can piggyback routines in aoutx.h. */ | |
358 | ||
359 | static void | |
360 | convert_sym_type (sym_pointer, cache_ptr, abfd) | |
5f771d47 | 361 | struct external_nlist *sym_pointer ATTRIBUTE_UNUSED; |
252b5132 | 362 | aout_symbol_type *cache_ptr; |
5f771d47 | 363 | bfd *abfd ATTRIBUTE_UNUSED; |
252b5132 RH |
364 | { |
365 | int name_type; | |
366 | int new_type; | |
367 | ||
368 | name_type = (cache_ptr->type); | |
369 | new_type = 0; | |
370 | ||
371 | if ((name_type & HP_SYMTYPE_ALIGN) != 0) | |
372 | { | |
373 | /* iou_error ("aligned symbol encountered: %s", name);*/ | |
374 | name_type = 0; | |
375 | } | |
376 | ||
377 | if (name_type == HP_SYMTYPE_FILENAME) | |
378 | new_type = N_FN; | |
379 | else | |
380 | { | |
381 | switch (name_type & HP_SYMTYPE_TYPE) | |
382 | { | |
383 | case HP_SYMTYPE_UNDEFINED: | |
384 | new_type = N_UNDF; | |
385 | break; | |
386 | ||
387 | case HP_SYMTYPE_ABSOLUTE: | |
388 | new_type = N_ABS; | |
389 | break; | |
390 | ||
391 | case HP_SYMTYPE_TEXT: | |
392 | new_type = N_TEXT; | |
393 | break; | |
394 | ||
395 | case HP_SYMTYPE_DATA: | |
396 | new_type = N_DATA; | |
397 | break; | |
398 | ||
399 | case HP_SYMTYPE_BSS: | |
400 | new_type = N_BSS; | |
401 | break; | |
402 | ||
403 | case HP_SYMTYPE_COMMON: | |
404 | new_type = N_COMM; | |
405 | break; | |
406 | ||
407 | default: | |
408 | abort (); | |
409 | break; | |
410 | } | |
411 | if (name_type & HP_SYMTYPE_EXTERNAL) | |
412 | new_type |= N_EXT; | |
413 | ||
414 | if (name_type & HP_SECONDARY_SYMBOL) | |
415 | { | |
416 | switch (new_type) | |
417 | { | |
418 | default: | |
419 | abort (); | |
420 | case N_UNDF | N_EXT: | |
421 | /* If the value is nonzero, then just treat this as a | |
422 | common symbol. I don't know if this is correct in | |
423 | all cases, but it is more correct than treating it as | |
424 | a weak undefined symbol. */ | |
425 | if (cache_ptr->symbol.value == 0) | |
426 | new_type = N_WEAKU; | |
427 | break; | |
428 | case N_ABS | N_EXT: | |
429 | new_type = N_WEAKA; | |
430 | break; | |
431 | case N_TEXT | N_EXT: | |
432 | new_type = N_WEAKT; | |
433 | break; | |
434 | case N_DATA | N_EXT: | |
435 | new_type = N_WEAKD; | |
436 | break; | |
437 | case N_BSS | N_EXT: | |
438 | new_type = N_WEAKB; | |
439 | break; | |
440 | } | |
441 | } | |
442 | } | |
443 | cache_ptr->type = new_type; | |
444 | ||
445 | } | |
446 | ||
252b5132 RH |
447 | /* |
448 | DESCRIPTION | |
449 | Swaps the information in an executable header taken from a raw | |
450 | byte stream memory image, into the internal exec_header | |
451 | structure. | |
452 | */ | |
453 | ||
454 | void | |
455 | NAME (aout,swap_exec_header_in) (abfd, raw_bytes, execp) | |
456 | bfd *abfd; | |
457 | struct external_exec *raw_bytes; | |
458 | struct internal_exec *execp; | |
459 | { | |
460 | struct external_exec *bytes = (struct external_exec *) raw_bytes; | |
461 | ||
462 | /* The internal_exec structure has some fields that are unused in this | |
463 | configuration (IE for i960), so ensure that all such uninitialized | |
464 | fields are zero'd out. There are places where two of these structs | |
465 | are memcmp'd, and thus the contents do matter. */ | |
466 | memset (execp, 0, sizeof (struct internal_exec)); | |
467 | /* Now fill in fields in the execp, from the bytes in the raw data. */ | |
dc810e39 | 468 | execp->a_info = H_GET_32 (abfd, bytes->e_info); |
252b5132 RH |
469 | execp->a_text = GET_WORD (abfd, bytes->e_text); |
470 | execp->a_data = GET_WORD (abfd, bytes->e_data); | |
471 | execp->a_bss = GET_WORD (abfd, bytes->e_bss); | |
472 | execp->a_syms = GET_WORD (abfd, bytes->e_syms); | |
473 | execp->a_entry = GET_WORD (abfd, bytes->e_entry); | |
474 | execp->a_trsize = GET_WORD (abfd, bytes->e_trsize); | |
475 | execp->a_drsize = GET_WORD (abfd, bytes->e_drsize); | |
476 | ||
477 | /***************************************************************/ | |
478 | /* check the header to see if it was generated by a bfd output */ | |
7dee875e | 479 | /* this is detected rather bizarrely by requiring a bunch of */ |
252b5132 RH |
480 | /* header fields to be zero and an old unused field (now used) */ |
481 | /* to be set. */ | |
482 | /***************************************************************/ | |
483 | do | |
484 | { | |
485 | long syms; | |
486 | struct aout_data_struct *rawptr; | |
dc810e39 AM |
487 | bfd_size_type amt; |
488 | ||
489 | if (H_GET_32 (abfd, bytes->e_passize) != 0) | |
252b5132 | 490 | break; |
dc810e39 | 491 | if (H_GET_32 (abfd, bytes->e_syms) != 0) |
252b5132 | 492 | break; |
dc810e39 | 493 | if (H_GET_32 (abfd, bytes->e_supsize) != 0) |
252b5132 RH |
494 | break; |
495 | ||
dc810e39 | 496 | syms = H_GET_32 (abfd, bytes->e_drelocs); |
252b5132 RH |
497 | if (syms == 0) |
498 | break; | |
499 | ||
500 | /* OK, we've passed the test as best as we can determine */ | |
501 | execp->a_syms = syms; | |
502 | ||
503 | /* allocate storage for where we will store this result */ | |
dc810e39 AM |
504 | amt = sizeof (*rawptr); |
505 | rawptr = (struct aout_data_struct *) bfd_zalloc (abfd, amt); | |
252b5132 RH |
506 | |
507 | if (rawptr == NULL) | |
508 | return; | |
509 | abfd->tdata.aout_data = rawptr; | |
510 | obj_aout_subformat (abfd) = gnu_encap_format; | |
511 | } | |
512 | while (0); | |
513 | } | |
514 | ||
252b5132 RH |
515 | /* The hp symbol table is a bit different than other a.out targets. Instead |
516 | of having an array of nlist items and an array of strings, hp's format | |
517 | has them mixed together in one structure. In addition, the strings are | |
518 | not null terminated. It looks something like this: | |
519 | ||
520 | nlist element 1 | |
521 | string1 | |
522 | nlist element 2 | |
523 | string2 | |
524 | ... | |
525 | ||
526 | The whole symbol table is read as one chunk and then we march thru it | |
527 | and convert it to canonical form. As we march thru the table, we copy | |
528 | the nlist data into the internal form and we compact the strings and null | |
529 | terminate them, using storage from the already allocated symbol table: | |
530 | ||
531 | string1 | |
532 | null | |
533 | string2 | |
534 | null | |
535 | ... | |
536 | */ | |
537 | ||
b34976b6 | 538 | bfd_boolean |
252b5132 RH |
539 | MY (slurp_symbol_table) (abfd) |
540 | bfd *abfd; | |
541 | { | |
542 | bfd_size_type symbol_bytes; | |
543 | struct external_nlist *syms; | |
544 | struct external_nlist *sym_pointer; | |
545 | struct external_nlist *sym_end; | |
546 | char *strings; | |
547 | aout_symbol_type *cached; | |
548 | unsigned num_syms = 0; | |
dc810e39 | 549 | bfd_size_type amt; |
252b5132 RH |
550 | |
551 | /* If there's no work to be done, don't do any */ | |
552 | if (obj_aout_symbols (abfd) != (aout_symbol_type *) NULL) | |
b34976b6 | 553 | return TRUE; |
252b5132 RH |
554 | symbol_bytes = exec_hdr (abfd)->a_syms; |
555 | ||
dc810e39 AM |
556 | amt = symbol_bytes + SYM_EXTRA_BYTES; |
557 | strings = (char *) bfd_alloc (abfd, amt); | |
252b5132 | 558 | if (!strings) |
b34976b6 | 559 | return FALSE; |
252b5132 RH |
560 | syms = (struct external_nlist *) (strings + SYM_EXTRA_BYTES); |
561 | if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0 | |
dc810e39 | 562 | || bfd_bread ((PTR) syms, symbol_bytes, abfd) != symbol_bytes) |
252b5132 RH |
563 | { |
564 | bfd_release (abfd, syms); | |
b34976b6 | 565 | return FALSE; |
252b5132 RH |
566 | } |
567 | ||
252b5132 RH |
568 | sym_end = (struct external_nlist *) (((char *) syms) + symbol_bytes); |
569 | ||
570 | /* first, march thru the table and figure out how many symbols there are */ | |
571 | for (sym_pointer = syms; sym_pointer < sym_end; sym_pointer++, num_syms++) | |
572 | { | |
573 | /* skip over the embedded symbol. */ | |
574 | sym_pointer = (struct external_nlist *) (((char *) sym_pointer) + | |
575 | sym_pointer->e_length[0]); | |
576 | } | |
577 | ||
578 | /* now that we know the symbol count, update the bfd header */ | |
579 | bfd_get_symcount (abfd) = num_syms; | |
580 | ||
dc810e39 AM |
581 | amt = num_syms; |
582 | amt *= sizeof (aout_symbol_type); | |
583 | cached = (aout_symbol_type *) bfd_zalloc (abfd, amt); | |
584 | if (cached == NULL && num_syms != 0) | |
b34976b6 | 585 | return FALSE; |
252b5132 RH |
586 | |
587 | /* as we march thru the hp symbol table, convert it into a list of | |
588 | null terminated strings to hold the symbol names. Make sure any | |
589 | assignment to the strings pointer is done after we're thru using | |
590 | the nlist so we don't overwrite anything important. */ | |
591 | ||
7dee875e | 592 | /* OK, now walk the new symtable, caching symbol properties */ |
252b5132 RH |
593 | { |
594 | aout_symbol_type *cache_ptr = cached; | |
595 | aout_symbol_type cache_save; | |
596 | /* Run through table and copy values */ | |
597 | for (sym_pointer = syms, cache_ptr = cached; | |
598 | sym_pointer < sym_end; sym_pointer++, cache_ptr++) | |
599 | { | |
600 | unsigned int length; | |
601 | cache_ptr->symbol.the_bfd = abfd; | |
602 | cache_ptr->symbol.value = GET_SWORD (abfd, sym_pointer->e_value); | |
603 | cache_ptr->desc = bfd_get_16 (abfd, sym_pointer->e_almod); | |
604 | cache_ptr->type = bfd_get_8 (abfd, sym_pointer->e_type); | |
605 | cache_ptr->symbol.udata.p = NULL; | |
606 | length = bfd_get_8 (abfd, sym_pointer->e_length); | |
607 | cache_ptr->other = length; /* other not used, save length here */ | |
608 | ||
609 | cache_save = *cache_ptr; | |
610 | convert_sym_type (sym_pointer, cache_ptr, abfd); | |
611 | if (!translate_from_native_sym_flags (abfd, cache_ptr)) | |
b34976b6 | 612 | return FALSE; |
252b5132 RH |
613 | |
614 | /********************************************************/ | |
7dee875e | 615 | /* for hpux, the 'length' value indicates the length of */ |
252b5132 RH |
616 | /* the symbol name which follows the nlist entry. */ |
617 | /********************************************************/ | |
618 | if (length) | |
619 | { | |
620 | /**************************************************************/ | |
621 | /* the hp string is not null terminated so we create a new one*/ | |
622 | /* by copying the string to overlap the just vacated nlist */ | |
623 | /* structure before it in memory. */ | |
624 | /**************************************************************/ | |
625 | cache_ptr->symbol.name = strings; | |
626 | memcpy (strings, sym_pointer + 1, length); | |
627 | strings[length] = '\0'; | |
628 | strings += length + 1; | |
629 | } | |
630 | else | |
631 | cache_ptr->symbol.name = (char *) NULL; | |
632 | ||
633 | /* skip over the embedded symbol. */ | |
634 | sym_pointer = (struct external_nlist *) (((char *) sym_pointer) + | |
635 | length); | |
636 | } | |
637 | } | |
638 | ||
639 | obj_aout_symbols (abfd) = cached; | |
640 | ||
b34976b6 | 641 | return TRUE; |
252b5132 RH |
642 | } |
643 | ||
252b5132 RH |
644 | void |
645 | MY (swap_std_reloc_in) (abfd, bytes, cache_ptr, symbols, symcount) | |
646 | bfd *abfd; | |
647 | struct hp300hpux_reloc *bytes; | |
648 | arelent *cache_ptr; | |
649 | asymbol **symbols; | |
5f771d47 | 650 | bfd_size_type symcount ATTRIBUTE_UNUSED; |
252b5132 RH |
651 | { |
652 | int r_index; | |
653 | int r_extern = 0; | |
654 | unsigned int r_length; | |
655 | int r_pcrel = 0; | |
656 | struct aoutdata *su = &(abfd->tdata.aout_data->a); | |
657 | ||
dc810e39 AM |
658 | cache_ptr->address = H_GET_32 (abfd, bytes->r_address); |
659 | r_index = H_GET_16 (abfd, bytes->r_index); | |
252b5132 RH |
660 | |
661 | switch (bytes->r_type[0]) | |
662 | { | |
663 | case HP_RSEGMENT_TEXT: | |
664 | r_index = N_TEXT; | |
665 | break; | |
666 | case HP_RSEGMENT_DATA: | |
667 | r_index = N_DATA; | |
668 | break; | |
669 | case HP_RSEGMENT_BSS: | |
670 | r_index = N_BSS; | |
671 | break; | |
672 | case HP_RSEGMENT_EXTERNAL: | |
673 | r_extern = 1; | |
674 | break; | |
675 | case HP_RSEGMENT_PCREL: | |
676 | r_extern = 1; | |
677 | r_pcrel = 1; | |
678 | break; | |
679 | case HP_RSEGMENT_RDLT: | |
680 | break; | |
681 | case HP_RSEGMENT_RPLT: | |
682 | break; | |
683 | case HP_RSEGMENT_NOOP: | |
684 | break; | |
685 | default: | |
686 | abort (); | |
687 | break; | |
688 | } | |
689 | ||
690 | switch (bytes->r_length[0]) | |
691 | { | |
692 | case HP_RLENGTH_BYTE: | |
693 | r_length = 0; | |
694 | break; | |
695 | case HP_RLENGTH_WORD: | |
696 | r_length = 1; | |
697 | break; | |
698 | case HP_RLENGTH_LONG: | |
699 | r_length = 2; | |
700 | break; | |
701 | default: | |
702 | abort (); | |
703 | break; | |
704 | } | |
705 | ||
706 | cache_ptr->howto = howto_table_std + r_length + 4 * r_pcrel; | |
707 | /* FIXME-soon: Roll baserel, jmptable, relative bits into howto setting */ | |
708 | ||
709 | /* This macro uses the r_index value computed above */ | |
710 | if (r_pcrel && r_extern) | |
711 | { | |
712 | /* The GNU linker assumes any offset from beginning of section */ | |
713 | /* is already incorporated into the image while the HP linker */ | |
714 | /* adds this in later. Add it in now... */ | |
715 | MOVE_ADDRESS (-cache_ptr->address); | |
716 | } | |
717 | else | |
718 | { | |
719 | MOVE_ADDRESS (0); | |
720 | } | |
721 | } | |
722 | ||
b34976b6 | 723 | bfd_boolean |
252b5132 RH |
724 | MY (slurp_reloc_table) (abfd, asect, symbols) |
725 | bfd *abfd; | |
726 | sec_ptr asect; | |
727 | asymbol **symbols; | |
728 | { | |
dc810e39 | 729 | bfd_size_type count; |
252b5132 RH |
730 | bfd_size_type reloc_size; |
731 | PTR relocs; | |
732 | arelent *reloc_cache; | |
733 | size_t each_size; | |
734 | struct hp300hpux_reloc *rptr; | |
735 | unsigned int counter; | |
736 | arelent *cache_ptr; | |
737 | ||
738 | if (asect->relocation) | |
b34976b6 | 739 | return TRUE; |
252b5132 RH |
740 | |
741 | if (asect->flags & SEC_CONSTRUCTOR) | |
b34976b6 | 742 | return TRUE; |
252b5132 RH |
743 | |
744 | if (asect == obj_datasec (abfd)) | |
745 | { | |
746 | reloc_size = exec_hdr (abfd)->a_drsize; | |
747 | goto doit; | |
748 | } | |
749 | ||
750 | if (asect == obj_textsec (abfd)) | |
751 | { | |
752 | reloc_size = exec_hdr (abfd)->a_trsize; | |
753 | goto doit; | |
754 | } | |
755 | ||
756 | bfd_set_error (bfd_error_invalid_operation); | |
b34976b6 | 757 | return FALSE; |
252b5132 RH |
758 | |
759 | doit: | |
760 | if (bfd_seek (abfd, asect->rel_filepos, SEEK_SET) != 0) | |
b34976b6 | 761 | return FALSE; |
252b5132 RH |
762 | each_size = obj_reloc_entry_size (abfd); |
763 | ||
764 | count = reloc_size / each_size; | |
765 | ||
dc810e39 | 766 | reloc_cache = (arelent *) bfd_zalloc (abfd, count * sizeof (arelent)); |
252b5132 | 767 | if (!reloc_cache && count != 0) |
b34976b6 | 768 | return FALSE; |
252b5132 RH |
769 | |
770 | relocs = (PTR) bfd_alloc (abfd, reloc_size); | |
771 | if (!relocs && reloc_size != 0) | |
772 | { | |
773 | bfd_release (abfd, reloc_cache); | |
b34976b6 | 774 | return FALSE; |
252b5132 RH |
775 | } |
776 | ||
dc810e39 | 777 | if (bfd_bread (relocs, reloc_size, abfd) != reloc_size) |
252b5132 RH |
778 | { |
779 | bfd_release (abfd, relocs); | |
780 | bfd_release (abfd, reloc_cache); | |
b34976b6 | 781 | return FALSE; |
252b5132 RH |
782 | } |
783 | ||
784 | rptr = (struct hp300hpux_reloc *) relocs; | |
785 | counter = 0; | |
786 | cache_ptr = reloc_cache; | |
787 | ||
788 | for (; counter < count; counter++, rptr++, cache_ptr++) | |
789 | { | |
790 | MY (swap_std_reloc_in) (abfd, rptr, cache_ptr, symbols, | |
dc810e39 | 791 | (bfd_size_type) bfd_get_symcount (abfd)); |
252b5132 RH |
792 | } |
793 | ||
252b5132 RH |
794 | bfd_release (abfd, relocs); |
795 | asect->relocation = reloc_cache; | |
796 | asect->reloc_count = count; | |
b34976b6 | 797 | return TRUE; |
252b5132 RH |
798 | } |
799 | ||
252b5132 RH |
800 | /************************************************************************/ |
801 | /* The following functions are identical to functions in aoutx.h except */ | |
802 | /* they refer to MY(func) rather than NAME(aout,func) and they also */ | |
803 | /* call aout_32 versions if the input file was generated by gcc */ | |
804 | /************************************************************************/ | |
805 | ||
6cee3f79 | 806 | long aout_32_canonicalize_symtab |
b34976b6 AM |
807 | PARAMS ((bfd * abfd, asymbol ** location)); |
808 | long aout_32_get_symtab_upper_bound | |
809 | PARAMS ((bfd * abfd)); | |
810 | long aout_32_canonicalize_reloc | |
811 | PARAMS ((bfd * abfd, sec_ptr section, arelent ** relptr, | |
812 | asymbol ** symbols)); | |
252b5132 RH |
813 | |
814 | long | |
6cee3f79 | 815 | MY (canonicalize_symtab) (abfd, location) |
252b5132 RH |
816 | bfd *abfd; |
817 | asymbol **location; | |
818 | { | |
819 | unsigned int counter = 0; | |
820 | aout_symbol_type *symbase; | |
821 | ||
822 | if (obj_aout_subformat (abfd) == gnu_encap_format) | |
6cee3f79 | 823 | return aout_32_canonicalize_symtab (abfd, location); |
252b5132 RH |
824 | |
825 | if (!MY (slurp_symbol_table) (abfd)) | |
826 | return -1; | |
827 | ||
828 | for (symbase = obj_aout_symbols (abfd); counter++ < bfd_get_symcount (abfd);) | |
829 | *(location++) = (asymbol *) (symbase++); | |
830 | *location++ = 0; | |
831 | return bfd_get_symcount (abfd); | |
832 | } | |
833 | ||
834 | long | |
835 | MY (get_symtab_upper_bound) (abfd) | |
836 | bfd *abfd; | |
837 | { | |
838 | if (obj_aout_subformat (abfd) == gnu_encap_format) | |
839 | return aout_32_get_symtab_upper_bound (abfd); | |
840 | if (!MY (slurp_symbol_table) (abfd)) | |
841 | return -1; | |
842 | ||
843 | return (bfd_get_symcount (abfd) + 1) * (sizeof (aout_symbol_type *)); | |
844 | } | |
845 | ||
252b5132 RH |
846 | long |
847 | MY (canonicalize_reloc) (abfd, section, relptr, symbols) | |
848 | bfd *abfd; | |
849 | sec_ptr section; | |
850 | arelent **relptr; | |
851 | asymbol **symbols; | |
852 | { | |
853 | arelent *tblptr = section->relocation; | |
854 | unsigned int count; | |
855 | if (obj_aout_subformat (abfd) == gnu_encap_format) | |
856 | return aout_32_canonicalize_reloc (abfd, section, relptr, symbols); | |
857 | ||
858 | if (!(tblptr || MY (slurp_reloc_table) (abfd, section, symbols))) | |
859 | return -1; | |
860 | ||
861 | if (section->flags & SEC_CONSTRUCTOR) | |
862 | { | |
863 | arelent_chain *chain = section->constructor_chain; | |
864 | for (count = 0; count < section->reloc_count; count++) | |
865 | { | |
866 | *relptr++ = &chain->relent; | |
867 | chain = chain->next; | |
868 | } | |
869 | } | |
870 | else | |
871 | { | |
872 | tblptr = section->relocation; | |
873 | ||
874 | for (count = 0; count++ < section->reloc_count;) | |
875 | { | |
876 | *relptr++ = tblptr++; | |
877 | } | |
878 | } | |
879 | *relptr = 0; | |
880 | ||
881 | return section->reloc_count; | |
882 | } | |
883 | ||
252b5132 | 884 | #include "aout-target.h" |