1 /* BFD semi-generic back-end for a.out binaries.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005
4 Free Software Foundation, Inc.
5 Written by Cygnus Support.
7 This file is part of BFD, the Binary File Descriptor library.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
29 BFD supports a number of different flavours of a.out format,
30 though the major differences are only the sizes of the
31 structures on disk, and the shape of the relocation
34 The support is split into a basic support file @file{aoutx.h}
35 and other files which derive functions from the base. One
36 derivation file is @file{aoutf1.h} (for a.out flavour 1), and
37 adds to the basic a.out functions support for sun3, sun4, 386
38 and 29k a.out files, to create a target jump vector for a
41 This information is further split out into more specific files
42 for each machine, including @file{sunos.c} for sun3 and sun4,
43 @file{newsos3.c} for the Sony NEWS, and @file{demo64.c} for a
44 demonstration of a 64 bit a.out format.
46 The base file @file{aoutx.h} defines general mechanisms for
47 reading and writing records to and from disk and various
48 other methods which BFD requires. It is included by
49 @file{aout32.c} and @file{aout64.c} to form the names
50 <<aout_32_swap_exec_header_in>>, <<aout_64_swap_exec_header_in>>, etc.
52 As an example, this is what goes on to make the back end for a
53 sun4, from @file{aout32.c}:
55 | #define ARCH_SIZE 32
61 | aout_32_canonicalize_reloc
62 | aout_32_find_nearest_line
64 | aout_32_get_reloc_upper_bound
69 | #define TARGET_NAME "a.out-sunos-big"
70 | #define VECNAME sunos_big_vec
73 requires all the names from @file{aout32.c}, and produces the jump vector
77 The file @file{host-aout.c} is a special case. It is for a large set
78 of hosts that use ``more or less standard'' a.out files, and
79 for which cross-debugging is not interesting. It uses the
80 standard 32-bit a.out support routines, but determines the
81 file offsets and addresses of the text, data, and BSS
82 sections, the machine architecture and machine type, and the
83 entry point address, in a host-dependent manner. Once these
84 values have been determined, generic code is used to handle
87 When porting it to run on a new system, you must supply:
91 | HOST_MACHINE_ARCH (optional)
92 | HOST_MACHINE_MACHINE (optional)
93 | HOST_TEXT_START_ADDR
96 in the file @file{../include/sys/h-@var{XXX}.h} (for your host). These
97 values, plus the structures and macros defined in @file{a.out.h} on
98 your host system, will produce a BFD target that will access
99 ordinary a.out files on your host. To configure a new machine
100 to use @file{host-aout.c}, specify:
102 | TDEFAULTS = -DDEFAULT_VECTOR=host_aout_big_vec
103 | TDEPFILES= host-aout.o trad-core.o
105 in the @file{config/@var{XXX}.mt} file, and modify @file{configure.in}
107 @file{@var{XXX}.mt} file (by setting "<<bfd_target=XXX>>") when your
108 configuration is selected. */
111 * Any BFD with D_PAGED set is ZMAGIC, and vice versa.
112 Doesn't matter what the setting of WP_TEXT is on output, but it'll
114 * Any BFD with D_PAGED clear and WP_TEXT set is NMAGIC.
115 * Any BFD with both flags clear is OMAGIC.
116 (Just want to make these explicit, so the conditions tested in this
117 file make sense if you're more familiar with a.out than with BFD.) */
119 #define KEEPIT udata.i
123 #include "safe-ctype.h"
128 #include "aout/aout64.h"
129 #include "aout/stab_gnu.h"
132 reloc_howto_type
* NAME (aout
, reloc_type_lookup
) (bfd
*, bfd_reloc_code_real_type
);
139 The file @file{aoutx.h} provides for both the @emph{standard}
140 and @emph{extended} forms of a.out relocation records.
142 The standard records contain only an
143 address, a symbol index, and a type field. The extended records
144 (used on 29ks and sparcs) also have a full integer for an
147 #ifndef CTOR_TABLE_RELOC_HOWTO
148 #define CTOR_TABLE_RELOC_IDX 2
149 #define CTOR_TABLE_RELOC_HOWTO(BFD) \
150 ((obj_reloc_entry_size (BFD) == RELOC_EXT_SIZE \
151 ? howto_table_ext : howto_table_std) \
152 + CTOR_TABLE_RELOC_IDX)
155 #ifndef MY_swap_std_reloc_in
156 #define MY_swap_std_reloc_in NAME (aout, swap_std_reloc_in)
159 #ifndef MY_swap_ext_reloc_in
160 #define MY_swap_ext_reloc_in NAME (aout, swap_ext_reloc_in)
163 #ifndef MY_swap_std_reloc_out
164 #define MY_swap_std_reloc_out NAME (aout, swap_std_reloc_out)
167 #ifndef MY_swap_ext_reloc_out
168 #define MY_swap_ext_reloc_out NAME (aout, swap_ext_reloc_out)
171 #ifndef MY_final_link_relocate
172 #define MY_final_link_relocate _bfd_final_link_relocate
175 #ifndef MY_relocate_contents
176 #define MY_relocate_contents _bfd_relocate_contents
179 #define howto_table_ext NAME (aout, ext_howto_table)
180 #define howto_table_std NAME (aout, std_howto_table)
182 reloc_howto_type howto_table_ext
[] =
184 /* Type rs size bsz pcrel bitpos ovrf sf name part_inpl readmask setmask pcdone. */
185 HOWTO (RELOC_8
, 0, 0, 8, FALSE
, 0, complain_overflow_bitfield
, 0, "8", FALSE
, 0, 0x000000ff, FALSE
),
186 HOWTO (RELOC_16
, 0, 1, 16, FALSE
, 0, complain_overflow_bitfield
, 0, "16", FALSE
, 0, 0x0000ffff, FALSE
),
187 HOWTO (RELOC_32
, 0, 2, 32, FALSE
, 0, complain_overflow_bitfield
, 0, "32", FALSE
, 0, 0xffffffff, FALSE
),
188 HOWTO (RELOC_DISP8
, 0, 0, 8, TRUE
, 0, complain_overflow_signed
, 0, "DISP8", FALSE
, 0, 0x000000ff, FALSE
),
189 HOWTO (RELOC_DISP16
, 0, 1, 16, TRUE
, 0, complain_overflow_signed
, 0, "DISP16", FALSE
, 0, 0x0000ffff, FALSE
),
190 HOWTO (RELOC_DISP32
, 0, 2, 32, TRUE
, 0, complain_overflow_signed
, 0, "DISP32", FALSE
, 0, 0xffffffff, FALSE
),
191 HOWTO (RELOC_WDISP30
, 2, 2, 30, TRUE
, 0, complain_overflow_signed
, 0, "WDISP30", FALSE
, 0, 0x3fffffff, FALSE
),
192 HOWTO (RELOC_WDISP22
, 2, 2, 22, TRUE
, 0, complain_overflow_signed
, 0, "WDISP22", FALSE
, 0, 0x003fffff, FALSE
),
193 HOWTO (RELOC_HI22
, 10, 2, 22, FALSE
, 0, complain_overflow_bitfield
, 0, "HI22", FALSE
, 0, 0x003fffff, FALSE
),
194 HOWTO (RELOC_22
, 0, 2, 22, FALSE
, 0, complain_overflow_bitfield
, 0, "22", FALSE
, 0, 0x003fffff, FALSE
),
195 HOWTO (RELOC_13
, 0, 2, 13, FALSE
, 0, complain_overflow_bitfield
, 0, "13", FALSE
, 0, 0x00001fff, FALSE
),
196 HOWTO (RELOC_LO10
, 0, 2, 10, FALSE
, 0, complain_overflow_dont
, 0, "LO10", FALSE
, 0, 0x000003ff, FALSE
),
197 HOWTO (RELOC_SFA_BASE
,0, 2, 32, FALSE
, 0, complain_overflow_bitfield
, 0, "SFA_BASE", FALSE
, 0, 0xffffffff, FALSE
),
198 HOWTO (RELOC_SFA_OFF13
,0, 2, 32, FALSE
, 0, complain_overflow_bitfield
, 0, "SFA_OFF13", FALSE
, 0, 0xffffffff, FALSE
),
199 HOWTO (RELOC_BASE10
, 0, 2, 10, FALSE
, 0, complain_overflow_dont
, 0, "BASE10", FALSE
, 0, 0x000003ff, FALSE
),
200 HOWTO (RELOC_BASE13
, 0, 2, 13, FALSE
, 0, complain_overflow_signed
, 0, "BASE13", FALSE
, 0, 0x00001fff, FALSE
),
201 HOWTO (RELOC_BASE22
, 10, 2, 22, FALSE
, 0, complain_overflow_bitfield
, 0, "BASE22", FALSE
, 0, 0x003fffff, FALSE
),
202 HOWTO (RELOC_PC10
, 0, 2, 10, TRUE
, 0, complain_overflow_dont
, 0, "PC10", FALSE
, 0, 0x000003ff, TRUE
),
203 HOWTO (RELOC_PC22
, 10, 2, 22, TRUE
, 0, complain_overflow_signed
, 0, "PC22", FALSE
, 0, 0x003fffff, TRUE
),
204 HOWTO (RELOC_JMP_TBL
, 2, 2, 30, TRUE
, 0, complain_overflow_signed
, 0, "JMP_TBL", FALSE
, 0, 0x3fffffff, FALSE
),
205 HOWTO (RELOC_SEGOFF16
,0, 2, 0, FALSE
, 0, complain_overflow_bitfield
, 0, "SEGOFF16", FALSE
, 0, 0x00000000, FALSE
),
206 HOWTO (RELOC_GLOB_DAT
,0, 2, 0, FALSE
, 0, complain_overflow_bitfield
, 0, "GLOB_DAT", FALSE
, 0, 0x00000000, FALSE
),
207 HOWTO (RELOC_JMP_SLOT
,0, 2, 0, FALSE
, 0, complain_overflow_bitfield
, 0, "JMP_SLOT", FALSE
, 0, 0x00000000, FALSE
),
208 HOWTO (RELOC_RELATIVE
,0, 2, 0, FALSE
, 0, complain_overflow_bitfield
, 0, "RELATIVE", FALSE
, 0, 0x00000000, FALSE
),
209 HOWTO (0, 0, 0, 0, FALSE
, 0, complain_overflow_dont
, 0, "R_SPARC_NONE",FALSE
, 0, 0x00000000, TRUE
),
210 HOWTO (0, 0, 0, 0, FALSE
, 0, complain_overflow_dont
, 0, "R_SPARC_NONE",FALSE
, 0, 0x00000000, TRUE
),
211 #define RELOC_SPARC_REV32 RELOC_WDISP19
212 HOWTO (RELOC_SPARC_REV32
, 0, 2, 32, FALSE
, 0, complain_overflow_dont
, 0,"R_SPARC_REV32",FALSE
, 0, 0xffffffff, FALSE
),
215 /* Convert standard reloc records to "arelent" format (incl byte swap). */
217 reloc_howto_type howto_table_std
[] =
219 /* type rs size bsz pcrel bitpos ovrf sf name part_inpl readmask setmask pcdone. */
220 HOWTO ( 0, 0, 0, 8, FALSE
, 0, complain_overflow_bitfield
,0,"8", TRUE
, 0x000000ff,0x000000ff, FALSE
),
221 HOWTO ( 1, 0, 1, 16, FALSE
, 0, complain_overflow_bitfield
,0,"16", TRUE
, 0x0000ffff,0x0000ffff, FALSE
),
222 HOWTO ( 2, 0, 2, 32, FALSE
, 0, complain_overflow_bitfield
,0,"32", TRUE
, 0xffffffff,0xffffffff, FALSE
),
223 HOWTO ( 3, 0, 4, 64, FALSE
, 0, complain_overflow_bitfield
,0,"64", TRUE
, 0xdeaddead,0xdeaddead, FALSE
),
224 HOWTO ( 4, 0, 0, 8, TRUE
, 0, complain_overflow_signed
, 0,"DISP8", TRUE
, 0x000000ff,0x000000ff, FALSE
),
225 HOWTO ( 5, 0, 1, 16, TRUE
, 0, complain_overflow_signed
, 0,"DISP16", TRUE
, 0x0000ffff,0x0000ffff, FALSE
),
226 HOWTO ( 6, 0, 2, 32, TRUE
, 0, complain_overflow_signed
, 0,"DISP32", TRUE
, 0xffffffff,0xffffffff, FALSE
),
227 HOWTO ( 7, 0, 4, 64, TRUE
, 0, complain_overflow_signed
, 0,"DISP64", TRUE
, 0xfeedface,0xfeedface, FALSE
),
228 HOWTO ( 8, 0, 2, 0, FALSE
, 0, complain_overflow_bitfield
,0,"GOT_REL", FALSE
, 0,0x00000000, FALSE
),
229 HOWTO ( 9, 0, 1, 16, FALSE
, 0, complain_overflow_bitfield
,0,"BASE16", FALSE
,0xffffffff,0xffffffff, FALSE
),
230 HOWTO (10, 0, 2, 32, FALSE
, 0, complain_overflow_bitfield
,0,"BASE32", FALSE
,0xffffffff,0xffffffff, FALSE
),
236 HOWTO (16, 0, 2, 0, FALSE
, 0, complain_overflow_bitfield
,0,"JMP_TABLE", FALSE
, 0,0x00000000, FALSE
),
252 HOWTO (32, 0, 2, 0, FALSE
, 0, complain_overflow_bitfield
,0,"RELATIVE", FALSE
, 0,0x00000000, FALSE
),
260 HOWTO (40, 0, 2, 0, FALSE
, 0, complain_overflow_bitfield
,0,"BASEREL", FALSE
, 0,0x00000000, FALSE
),
263 #define TABLE_SIZE(TABLE) (sizeof (TABLE) / sizeof (TABLE[0]))
266 NAME (aout
, reloc_type_lookup
) (bfd
*abfd
, bfd_reloc_code_real_type code
)
268 #define EXT(i, j) case i: return & howto_table_ext [j]
269 #define STD(i, j) case i: return & howto_table_std [j]
270 int ext
= obj_reloc_entry_size (abfd
) == RELOC_EXT_SIZE
;
272 if (code
== BFD_RELOC_CTOR
)
273 switch (bfd_get_arch_info (abfd
)->bits_per_address
)
286 EXT (BFD_RELOC_8
, 0);
287 EXT (BFD_RELOC_16
, 1);
288 EXT (BFD_RELOC_32
, 2);
289 EXT (BFD_RELOC_HI22
, 8);
290 EXT (BFD_RELOC_LO10
, 11);
291 EXT (BFD_RELOC_32_PCREL_S2
, 6);
292 EXT (BFD_RELOC_SPARC_WDISP22
, 7);
293 EXT (BFD_RELOC_SPARC13
, 10);
294 EXT (BFD_RELOC_SPARC_GOT10
, 14);
295 EXT (BFD_RELOC_SPARC_BASE13
, 15);
296 EXT (BFD_RELOC_SPARC_GOT13
, 15);
297 EXT (BFD_RELOC_SPARC_GOT22
, 16);
298 EXT (BFD_RELOC_SPARC_PC10
, 17);
299 EXT (BFD_RELOC_SPARC_PC22
, 18);
300 EXT (BFD_RELOC_SPARC_WPLT30
, 19);
301 EXT (BFD_RELOC_SPARC_REV32
, 26);
309 STD (BFD_RELOC_8
, 0);
310 STD (BFD_RELOC_16
, 1);
311 STD (BFD_RELOC_32
, 2);
312 STD (BFD_RELOC_8_PCREL
, 4);
313 STD (BFD_RELOC_16_PCREL
, 5);
314 STD (BFD_RELOC_32_PCREL
, 6);
315 STD (BFD_RELOC_16_BASEREL
, 9);
316 STD (BFD_RELOC_32_BASEREL
, 10);
324 Internal entry points
327 @file{aoutx.h} exports several routines for accessing the
328 contents of an a.out file, which are gathered and exported in
329 turn by various format specific files (eg sunos.c).
334 aout_@var{size}_swap_exec_header_in
337 void aout_@var{size}_swap_exec_header_in,
339 struct external_exec *bytes,
340 struct internal_exec *execp);
343 Swap the information in an executable header @var{raw_bytes} taken
344 from a raw byte stream memory image into the internal exec header
345 structure @var{execp}.
348 #ifndef NAME_swap_exec_header_in
350 NAME (aout
, swap_exec_header_in
) (bfd
*abfd
,
351 struct external_exec
*bytes
,
352 struct internal_exec
*execp
)
354 /* The internal_exec structure has some fields that are unused in this
355 configuration (IE for i960), so ensure that all such uninitialized
356 fields are zero'd out. There are places where two of these structs
357 are memcmp'd, and thus the contents do matter. */
358 memset ((void *) execp
, 0, sizeof (struct internal_exec
));
359 /* Now fill in fields in the execp, from the bytes in the raw data. */
360 execp
->a_info
= H_GET_32 (abfd
, bytes
->e_info
);
361 execp
->a_text
= GET_WORD (abfd
, bytes
->e_text
);
362 execp
->a_data
= GET_WORD (abfd
, bytes
->e_data
);
363 execp
->a_bss
= GET_WORD (abfd
, bytes
->e_bss
);
364 execp
->a_syms
= GET_WORD (abfd
, bytes
->e_syms
);
365 execp
->a_entry
= GET_WORD (abfd
, bytes
->e_entry
);
366 execp
->a_trsize
= GET_WORD (abfd
, bytes
->e_trsize
);
367 execp
->a_drsize
= GET_WORD (abfd
, bytes
->e_drsize
);
369 #define NAME_swap_exec_header_in NAME (aout, swap_exec_header_in)
374 aout_@var{size}_swap_exec_header_out
377 void aout_@var{size}_swap_exec_header_out
379 struct internal_exec *execp,
380 struct external_exec *raw_bytes);
383 Swap the information in an internal exec header structure
384 @var{execp} into the buffer @var{raw_bytes} ready for writing to disk.
387 NAME (aout
, swap_exec_header_out
) (bfd
*abfd
,
388 struct internal_exec
*execp
,
389 struct external_exec
*bytes
)
391 /* Now fill in fields in the raw data, from the fields in the exec struct. */
392 H_PUT_32 (abfd
, execp
->a_info
, bytes
->e_info
);
393 PUT_WORD (abfd
, execp
->a_text
, bytes
->e_text
);
394 PUT_WORD (abfd
, execp
->a_data
, bytes
->e_data
);
395 PUT_WORD (abfd
, execp
->a_bss
, bytes
->e_bss
);
396 PUT_WORD (abfd
, execp
->a_syms
, bytes
->e_syms
);
397 PUT_WORD (abfd
, execp
->a_entry
, bytes
->e_entry
);
398 PUT_WORD (abfd
, execp
->a_trsize
, bytes
->e_trsize
);
399 PUT_WORD (abfd
, execp
->a_drsize
, bytes
->e_drsize
);
402 /* Make all the section for an a.out file. */
405 NAME (aout
, make_sections
) (bfd
*abfd
)
407 if (obj_textsec (abfd
) == NULL
&& bfd_make_section (abfd
, ".text") == NULL
)
409 if (obj_datasec (abfd
) == NULL
&& bfd_make_section (abfd
, ".data") == NULL
)
411 if (obj_bsssec (abfd
) == NULL
&& bfd_make_section (abfd
, ".bss") == NULL
)
418 aout_@var{size}_some_aout_object_p
421 const bfd_target *aout_@var{size}_some_aout_object_p
423 struct internal_exec *execp,
424 const bfd_target *(*callback_to_real_object_p) (bfd *));
427 Some a.out variant thinks that the file open in @var{abfd}
428 checking is an a.out file. Do some more checking, and set up
429 for access if it really is. Call back to the calling
430 environment's "finish up" function just before returning, to
431 handle any last-minute setup.
435 NAME (aout
, some_aout_object_p
) (bfd
*abfd
,
436 struct internal_exec
*execp
,
437 const bfd_target
*(*callback_to_real_object_p
) (bfd
*))
439 struct aout_data_struct
*rawptr
, *oldrawptr
;
440 const bfd_target
*result
;
441 bfd_size_type amt
= sizeof (* rawptr
);
443 rawptr
= bfd_zalloc (abfd
, amt
);
447 oldrawptr
= abfd
->tdata
.aout_data
;
448 abfd
->tdata
.aout_data
= rawptr
;
450 /* Copy the contents of the old tdata struct.
451 In particular, we want the subformat, since for hpux it was set in
452 hp300hpux.c:swap_exec_header_in and will be used in
453 hp300hpux.c:callback. */
454 if (oldrawptr
!= NULL
)
455 *abfd
->tdata
.aout_data
= *oldrawptr
;
457 abfd
->tdata
.aout_data
->a
.hdr
= &rawptr
->e
;
458 /* Copy in the internal_exec struct. */
459 *(abfd
->tdata
.aout_data
->a
.hdr
) = *execp
;
460 execp
= abfd
->tdata
.aout_data
->a
.hdr
;
462 /* Set the file flags. */
463 abfd
->flags
= BFD_NO_FLAGS
;
464 if (execp
->a_drsize
|| execp
->a_trsize
)
465 abfd
->flags
|= HAS_RELOC
;
466 /* Setting of EXEC_P has been deferred to the bottom of this function. */
468 abfd
->flags
|= HAS_LINENO
| HAS_DEBUG
| HAS_SYMS
| HAS_LOCALS
;
469 if (N_DYNAMIC (*execp
))
470 abfd
->flags
|= DYNAMIC
;
472 if (N_MAGIC (*execp
) == ZMAGIC
)
474 abfd
->flags
|= D_PAGED
| WP_TEXT
;
475 adata (abfd
).magic
= z_magic
;
477 else if (N_MAGIC (*execp
) == QMAGIC
)
479 abfd
->flags
|= D_PAGED
| WP_TEXT
;
480 adata (abfd
).magic
= z_magic
;
481 adata (abfd
).subformat
= q_magic_format
;
483 else if (N_MAGIC (*execp
) == NMAGIC
)
485 abfd
->flags
|= WP_TEXT
;
486 adata (abfd
).magic
= n_magic
;
488 else if (N_MAGIC (*execp
) == OMAGIC
489 || N_MAGIC (*execp
) == BMAGIC
)
490 adata (abfd
).magic
= o_magic
;
492 /* Should have been checked with N_BADMAG before this routine
496 bfd_get_start_address (abfd
) = execp
->a_entry
;
498 obj_aout_symbols (abfd
) = NULL
;
499 bfd_get_symcount (abfd
) = execp
->a_syms
/ sizeof (struct external_nlist
);
501 /* The default relocation entry size is that of traditional V7 Unix. */
502 obj_reloc_entry_size (abfd
) = RELOC_STD_SIZE
;
504 /* The default symbol entry size is that of traditional Unix. */
505 obj_symbol_entry_size (abfd
) = EXTERNAL_NLIST_SIZE
;
508 bfd_init_window (&obj_aout_sym_window (abfd
));
509 bfd_init_window (&obj_aout_string_window (abfd
));
511 obj_aout_external_syms (abfd
) = NULL
;
512 obj_aout_external_strings (abfd
) = NULL
;
513 obj_aout_sym_hashes (abfd
) = NULL
;
515 if (! NAME (aout
, make_sections
) (abfd
))
518 obj_datasec (abfd
)->size
= execp
->a_data
;
519 obj_bsssec (abfd
)->size
= execp
->a_bss
;
521 obj_textsec (abfd
)->flags
=
522 (execp
->a_trsize
!= 0
523 ? (SEC_ALLOC
| SEC_LOAD
| SEC_CODE
| SEC_HAS_CONTENTS
| SEC_RELOC
)
524 : (SEC_ALLOC
| SEC_LOAD
| SEC_CODE
| SEC_HAS_CONTENTS
));
525 obj_datasec (abfd
)->flags
=
526 (execp
->a_drsize
!= 0
527 ? (SEC_ALLOC
| SEC_LOAD
| SEC_DATA
| SEC_HAS_CONTENTS
| SEC_RELOC
)
528 : (SEC_ALLOC
| SEC_LOAD
| SEC_DATA
| SEC_HAS_CONTENTS
));
529 obj_bsssec (abfd
)->flags
= SEC_ALLOC
;
531 #ifdef THIS_IS_ONLY_DOCUMENTATION
532 /* The common code can't fill in these things because they depend
533 on either the start address of the text segment, the rounding
534 up of virtual addresses between segments, or the starting file
535 position of the text segment -- all of which varies among different
536 versions of a.out. */
538 /* Call back to the format-dependent code to fill in the rest of the
539 fields and do any further cleanup. Things that should be filled
540 in by the callback: */
542 struct exec
*execp
= exec_hdr (abfd
);
544 obj_textsec (abfd
)->size
= N_TXTSIZE (*execp
);
545 /* Data and bss are already filled in since they're so standard. */
547 /* The virtual memory addresses of the sections. */
548 obj_textsec (abfd
)->vma
= N_TXTADDR (*execp
);
549 obj_datasec (abfd
)->vma
= N_DATADDR (*execp
);
550 obj_bsssec (abfd
)->vma
= N_BSSADDR (*execp
);
552 /* The file offsets of the sections. */
553 obj_textsec (abfd
)->filepos
= N_TXTOFF (*execp
);
554 obj_datasec (abfd
)->filepos
= N_DATOFF (*execp
);
556 /* The file offsets of the relocation info. */
557 obj_textsec (abfd
)->rel_filepos
= N_TRELOFF (*execp
);
558 obj_datasec (abfd
)->rel_filepos
= N_DRELOFF (*execp
);
560 /* The file offsets of the string table and symbol table. */
561 obj_str_filepos (abfd
) = N_STROFF (*execp
);
562 obj_sym_filepos (abfd
) = N_SYMOFF (*execp
);
564 /* Determine the architecture and machine type of the object file. */
565 switch (N_MACHTYPE (*exec_hdr (abfd
)))
568 abfd
->obj_arch
= bfd_arch_obscure
;
572 adata (abfd
)->page_size
= TARGET_PAGE_SIZE
;
573 adata (abfd
)->segment_size
= SEGMENT_SIZE
;
574 adata (abfd
)->exec_bytes_size
= EXEC_BYTES_SIZE
;
578 /* The architecture is encoded in various ways in various a.out variants,
579 or is not encoded at all in some of them. The relocation size depends
580 on the architecture and the a.out variant. Finally, the return value
581 is the bfd_target vector in use. If an error occurs, return zero and
582 set bfd_error to the appropriate error code.
584 Formats such as b.out, which have additional fields in the a.out
585 header, should cope with them in this callback as well. */
586 #endif /* DOCUMENTATION */
588 result
= (*callback_to_real_object_p
) (abfd
);
590 /* Now that the segment addresses have been worked out, take a better
591 guess at whether the file is executable. If the entry point
592 is within the text segment, assume it is. (This makes files
593 executable even if their entry point address is 0, as long as
594 their text starts at zero.).
596 This test had to be changed to deal with systems where the text segment
597 runs at a different location than the default. The problem is that the
598 entry address can appear to be outside the text segment, thus causing an
599 erroneous conclusion that the file isn't executable.
601 To fix this, we now accept any non-zero entry point as an indication of
602 executability. This will work most of the time, since only the linker
603 sets the entry point, and that is likely to be non-zero for most systems. */
605 if (execp
->a_entry
!= 0
606 || (execp
->a_entry
>= obj_textsec (abfd
)->vma
607 && execp
->a_entry
< (obj_textsec (abfd
)->vma
608 + obj_textsec (abfd
)->size
)))
609 abfd
->flags
|= EXEC_P
;
613 struct stat stat_buf
;
615 /* The original heuristic doesn't work in some important cases.
616 The a.out file has no information about the text start
617 address. For files (like kernels) linked to non-standard
618 addresses (ld -Ttext nnn) the entry point may not be between
619 the default text start (obj_textsec(abfd)->vma) and
620 (obj_textsec(abfd)->vma) + text size. This is not just a mach
621 issue. Many kernels are loaded at non standard addresses. */
622 if (abfd
->iostream
!= NULL
623 && (abfd
->flags
& BFD_IN_MEMORY
) == 0
624 && (fstat (fileno ((FILE *) (abfd
->iostream
)), &stat_buf
) == 0)
625 && ((stat_buf
.st_mode
& 0111) != 0))
626 abfd
->flags
|= EXEC_P
;
628 #endif /* STAT_FOR_EXEC */
634 bfd_release (abfd
, rawptr
);
635 abfd
->tdata
.aout_data
= oldrawptr
;
641 aout_@var{size}_mkobject
644 bfd_boolean aout_@var{size}_mkobject, (bfd *abfd);
647 Initialize BFD @var{abfd} for use with a.out files.
651 NAME (aout
, mkobject
) (bfd
*abfd
)
653 struct aout_data_struct
*rawptr
;
654 bfd_size_type amt
= sizeof (* rawptr
);
656 bfd_set_error (bfd_error_system_call
);
658 rawptr
= bfd_zalloc (abfd
, amt
);
662 abfd
->tdata
.aout_data
= rawptr
;
663 exec_hdr (abfd
) = &(rawptr
->e
);
665 obj_textsec (abfd
) = NULL
;
666 obj_datasec (abfd
) = NULL
;
667 obj_bsssec (abfd
) = NULL
;
674 aout_@var{size}_machine_type
677 enum machine_type aout_@var{size}_machine_type
678 (enum bfd_architecture arch,
679 unsigned long machine,
680 bfd_boolean *unknown);
683 Keep track of machine architecture and machine type for
684 a.out's. Return the <<machine_type>> for a particular
685 architecture and machine, or <<M_UNKNOWN>> if that exact architecture
686 and machine can't be represented in a.out format.
688 If the architecture is understood, machine type 0 (default)
689 is always understood.
693 NAME (aout
, machine_type
) (enum bfd_architecture arch
,
694 unsigned long machine
,
695 bfd_boolean
*unknown
)
697 enum machine_type arch_flags
;
699 arch_flags
= M_UNKNOWN
;
706 || machine
== bfd_mach_sparc
707 || machine
== bfd_mach_sparc_sparclite
708 || machine
== bfd_mach_sparc_sparclite_le
709 || machine
== bfd_mach_sparc_v9
)
710 arch_flags
= M_SPARC
;
711 else if (machine
== bfd_mach_sparc_sparclet
)
712 arch_flags
= M_SPARCLET
;
718 case 0: arch_flags
= M_68010
; break;
719 case bfd_mach_m68000
: arch_flags
= M_UNKNOWN
; *unknown
= FALSE
; break;
720 case bfd_mach_m68010
: arch_flags
= M_68010
; break;
721 case bfd_mach_m68020
: arch_flags
= M_68020
; break;
722 default: arch_flags
= M_UNKNOWN
; break;
728 || machine
== bfd_mach_i386_i386
729 || machine
== bfd_mach_i386_i386_intel_syntax
)
742 case bfd_mach_mips3000
:
743 case bfd_mach_mips3900
:
744 arch_flags
= M_MIPS1
;
746 case bfd_mach_mips6000
:
747 arch_flags
= M_MIPS2
;
749 case bfd_mach_mips4000
:
750 case bfd_mach_mips4010
:
751 case bfd_mach_mips4100
:
752 case bfd_mach_mips4300
:
753 case bfd_mach_mips4400
:
754 case bfd_mach_mips4600
:
755 case bfd_mach_mips4650
:
756 case bfd_mach_mips8000
:
757 case bfd_mach_mips9000
:
758 case bfd_mach_mips10000
:
759 case bfd_mach_mips12000
:
760 case bfd_mach_mips16
:
761 case bfd_mach_mipsisa32
:
762 case bfd_mach_mipsisa32r2
:
764 case bfd_mach_mipsisa64
:
765 case bfd_mach_mipsisa64r2
:
766 case bfd_mach_mips_sb1
:
767 /* FIXME: These should be MIPS3, MIPS4, MIPS16, MIPS32, etc. */
768 arch_flags
= M_MIPS2
;
771 arch_flags
= M_UNKNOWN
;
779 case 0: arch_flags
= M_NS32532
; break;
780 case 32032: arch_flags
= M_NS32032
; break;
781 case 32532: arch_flags
= M_NS32532
; break;
782 default: arch_flags
= M_UNKNOWN
; break;
791 if (machine
== 0 || machine
== 255)
800 arch_flags
= M_UNKNOWN
;
803 if (arch_flags
!= M_UNKNOWN
)
811 aout_@var{size}_set_arch_mach
814 bfd_boolean aout_@var{size}_set_arch_mach,
816 enum bfd_architecture arch,
817 unsigned long machine);
820 Set the architecture and the machine of the BFD @var{abfd} to the
821 values @var{arch} and @var{machine}. Verify that @var{abfd}'s format
822 can support the architecture required.
826 NAME (aout
, set_arch_mach
) (bfd
*abfd
,
827 enum bfd_architecture arch
,
828 unsigned long machine
)
830 if (! bfd_default_set_arch_mach (abfd
, arch
, machine
))
833 if (arch
!= bfd_arch_unknown
)
837 NAME (aout
, machine_type
) (arch
, machine
, &unknown
);
842 /* Determine the size of a relocation entry. */
847 obj_reloc_entry_size (abfd
) = RELOC_EXT_SIZE
;
850 obj_reloc_entry_size (abfd
) = RELOC_STD_SIZE
;
854 return (*aout_backend_info (abfd
)->set_sizes
) (abfd
);
858 adjust_o_magic (bfd
*abfd
, struct internal_exec
*execp
)
860 file_ptr pos
= adata (abfd
).exec_bytes_size
;
865 obj_textsec (abfd
)->filepos
= pos
;
866 if (!obj_textsec (abfd
)->user_set_vma
)
867 obj_textsec (abfd
)->vma
= vma
;
869 vma
= obj_textsec (abfd
)->vma
;
871 pos
+= obj_textsec (abfd
)->size
;
872 vma
+= obj_textsec (abfd
)->size
;
875 if (!obj_datasec (abfd
)->user_set_vma
)
877 obj_textsec (abfd
)->size
+= pad
;
880 obj_datasec (abfd
)->vma
= vma
;
883 vma
= obj_datasec (abfd
)->vma
;
884 obj_datasec (abfd
)->filepos
= pos
;
885 pos
+= obj_datasec (abfd
)->size
;
886 vma
+= obj_datasec (abfd
)->size
;
889 if (!obj_bsssec (abfd
)->user_set_vma
)
891 obj_datasec (abfd
)->size
+= pad
;
894 obj_bsssec (abfd
)->vma
= vma
;
898 /* The VMA of the .bss section is set by the VMA of the
899 .data section plus the size of the .data section. We may
900 need to add padding bytes to make this true. */
901 pad
= obj_bsssec (abfd
)->vma
- vma
;
904 obj_datasec (abfd
)->size
+= pad
;
908 obj_bsssec (abfd
)->filepos
= pos
;
910 /* Fix up the exec header. */
911 execp
->a_text
= obj_textsec (abfd
)->size
;
912 execp
->a_data
= obj_datasec (abfd
)->size
;
913 execp
->a_bss
= obj_bsssec (abfd
)->size
;
914 N_SET_MAGIC (*execp
, OMAGIC
);
918 adjust_z_magic (bfd
*abfd
, struct internal_exec
*execp
)
920 bfd_size_type data_pad
, text_pad
;
922 const struct aout_backend_data
*abdp
;
923 /* TRUE if text includes exec header. */
926 abdp
= aout_backend_info (abfd
);
930 && (abdp
->text_includes_header
931 || obj_aout_subformat (abfd
) == q_magic_format
));
932 obj_textsec (abfd
)->filepos
= (ztih
933 ? adata (abfd
).exec_bytes_size
934 : adata (abfd
).zmagic_disk_block_size
);
935 if (! obj_textsec (abfd
)->user_set_vma
)
937 /* ?? Do we really need to check for relocs here? */
938 obj_textsec (abfd
)->vma
= ((abfd
->flags
& HAS_RELOC
)
941 ? (abdp
->default_text_vma
942 + adata (abfd
).exec_bytes_size
)
943 : abdp
->default_text_vma
));
948 /* The .text section is being loaded at an unusual address. We
949 may need to pad it such that the .data section starts at a page
952 text_pad
= ((obj_textsec (abfd
)->filepos
- obj_textsec (abfd
)->vma
)
953 & (adata (abfd
).page_size
- 1));
955 text_pad
= ((- obj_textsec (abfd
)->vma
)
956 & (adata (abfd
).page_size
- 1));
959 /* Find start of data. */
962 text_end
= obj_textsec (abfd
)->filepos
+ obj_textsec (abfd
)->size
;
963 text_pad
+= BFD_ALIGN (text_end
, adata (abfd
).page_size
) - text_end
;
967 /* Note that if page_size == zmagic_disk_block_size, then
968 filepos == page_size, and this case is the same as the ztih
970 text_end
= obj_textsec (abfd
)->size
;
971 text_pad
+= BFD_ALIGN (text_end
, adata (abfd
).page_size
) - text_end
;
972 text_end
+= obj_textsec (abfd
)->filepos
;
974 obj_textsec (abfd
)->size
+= text_pad
;
975 text_end
+= text_pad
;
978 if (!obj_datasec (abfd
)->user_set_vma
)
981 vma
= obj_textsec (abfd
)->vma
+ obj_textsec (abfd
)->size
;
982 obj_datasec (abfd
)->vma
= BFD_ALIGN (vma
, adata (abfd
).segment_size
);
984 if (abdp
&& abdp
->zmagic_mapped_contiguous
)
986 asection
* text
= obj_textsec (abfd
);
987 asection
* data
= obj_datasec (abfd
);
989 text_pad
= data
->vma
- (text
->vma
+ text
->size
);
990 /* Only pad the text section if the data
991 section is going to be placed after it. */
993 text
->size
+= text_pad
;
995 obj_datasec (abfd
)->filepos
= (obj_textsec (abfd
)->filepos
996 + obj_textsec (abfd
)->size
);
998 /* Fix up exec header while we're at it. */
999 execp
->a_text
= obj_textsec (abfd
)->size
;
1000 if (ztih
&& (!abdp
|| (abdp
&& !abdp
->exec_header_not_counted
)))
1001 execp
->a_text
+= adata (abfd
).exec_bytes_size
;
1002 if (obj_aout_subformat (abfd
) == q_magic_format
)
1003 N_SET_MAGIC (*execp
, QMAGIC
);
1005 N_SET_MAGIC (*execp
, ZMAGIC
);
1007 /* Spec says data section should be rounded up to page boundary. */
1008 obj_datasec (abfd
)->size
1009 = align_power (obj_datasec (abfd
)->size
,
1010 obj_bsssec (abfd
)->alignment_power
);
1011 execp
->a_data
= BFD_ALIGN (obj_datasec (abfd
)->size
,
1012 adata (abfd
).page_size
);
1013 data_pad
= execp
->a_data
- obj_datasec (abfd
)->size
;
1016 if (!obj_bsssec (abfd
)->user_set_vma
)
1017 obj_bsssec (abfd
)->vma
= (obj_datasec (abfd
)->vma
1018 + obj_datasec (abfd
)->size
);
1019 /* If the BSS immediately follows the data section and extra space
1020 in the page is left after the data section, fudge data
1021 in the header so that the bss section looks smaller by that
1022 amount. We'll start the bss section there, and lie to the OS.
1023 (Note that a linker script, as well as the above assignment,
1024 could have explicitly set the BSS vma to immediately follow
1025 the data section.) */
1026 if (align_power (obj_bsssec (abfd
)->vma
, obj_bsssec (abfd
)->alignment_power
)
1027 == obj_datasec (abfd
)->vma
+ obj_datasec (abfd
)->size
)
1028 execp
->a_bss
= (data_pad
> obj_bsssec (abfd
)->size
1029 ? 0 : obj_bsssec (abfd
)->size
- data_pad
);
1031 execp
->a_bss
= obj_bsssec (abfd
)->size
;
1035 adjust_n_magic (bfd
*abfd
, struct internal_exec
*execp
)
1037 file_ptr pos
= adata (abfd
).exec_bytes_size
;
1042 obj_textsec (abfd
)->filepos
= pos
;
1043 if (!obj_textsec (abfd
)->user_set_vma
)
1044 obj_textsec (abfd
)->vma
= vma
;
1046 vma
= obj_textsec (abfd
)->vma
;
1047 pos
+= obj_textsec (abfd
)->size
;
1048 vma
+= obj_textsec (abfd
)->size
;
1051 obj_datasec (abfd
)->filepos
= pos
;
1052 if (!obj_datasec (abfd
)->user_set_vma
)
1053 obj_datasec (abfd
)->vma
= BFD_ALIGN (vma
, adata (abfd
).segment_size
);
1054 vma
= obj_datasec (abfd
)->vma
;
1056 /* Since BSS follows data immediately, see if it needs alignment. */
1057 vma
+= obj_datasec (abfd
)->size
;
1058 pad
= align_power (vma
, obj_bsssec (abfd
)->alignment_power
) - vma
;
1059 obj_datasec (abfd
)->size
+= pad
;
1060 pos
+= obj_datasec (abfd
)->size
;
1063 if (!obj_bsssec (abfd
)->user_set_vma
)
1064 obj_bsssec (abfd
)->vma
= vma
;
1066 vma
= obj_bsssec (abfd
)->vma
;
1068 /* Fix up exec header. */
1069 execp
->a_text
= obj_textsec (abfd
)->size
;
1070 execp
->a_data
= obj_datasec (abfd
)->size
;
1071 execp
->a_bss
= obj_bsssec (abfd
)->size
;
1072 N_SET_MAGIC (*execp
, NMAGIC
);
1076 NAME (aout
, adjust_sizes_and_vmas
) (bfd
*abfd
,
1077 bfd_size_type
*text_size
,
1078 file_ptr
*text_end ATTRIBUTE_UNUSED
)
1080 struct internal_exec
*execp
= exec_hdr (abfd
);
1082 if (! NAME (aout
, make_sections
) (abfd
))
1085 if (adata (abfd
).magic
!= undecided_magic
)
1088 obj_textsec (abfd
)->size
=
1089 align_power (obj_textsec (abfd
)->size
,
1090 obj_textsec (abfd
)->alignment_power
);
1092 *text_size
= obj_textsec (abfd
)->size
;
1093 /* Rule (heuristic) for when to pad to a new page. Note that there
1094 are (at least) two ways demand-paged (ZMAGIC) files have been
1095 handled. Most Berkeley-based systems start the text segment at
1096 (TARGET_PAGE_SIZE). However, newer versions of SUNOS start the text
1097 segment right after the exec header; the latter is counted in the
1098 text segment size, and is paged in by the kernel with the rest of
1101 /* This perhaps isn't the right way to do this, but made it simpler for me
1102 to understand enough to implement it. Better would probably be to go
1103 right from BFD flags to alignment/positioning characteristics. But the
1104 old code was sloppy enough about handling the flags, and had enough
1105 other magic, that it was a little hard for me to understand. I think
1106 I understand it better now, but I haven't time to do the cleanup this
1109 if (abfd
->flags
& D_PAGED
)
1110 /* Whether or not WP_TEXT is set -- let D_PAGED override. */
1111 adata (abfd
).magic
= z_magic
;
1112 else if (abfd
->flags
& WP_TEXT
)
1113 adata (abfd
).magic
= n_magic
;
1115 adata (abfd
).magic
= o_magic
;
1117 #ifdef BFD_AOUT_DEBUG /* requires gcc2 */
1119 fprintf (stderr
, "%s text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x,%x>\n",
1121 switch (adata (abfd
).magic
)
1123 case n_magic
: str
= "NMAGIC"; break;
1124 case o_magic
: str
= "OMAGIC"; break;
1125 case z_magic
: str
= "ZMAGIC"; break;
1130 obj_textsec (abfd
)->vma
, obj_textsec (abfd
)->size
,
1131 obj_textsec (abfd
)->alignment_power
,
1132 obj_datasec (abfd
)->vma
, obj_datasec (abfd
)->size
,
1133 obj_datasec (abfd
)->alignment_power
,
1134 obj_bsssec (abfd
)->vma
, obj_bsssec (abfd
)->size
,
1135 obj_bsssec (abfd
)->alignment_power
);
1139 switch (adata (abfd
).magic
)
1142 adjust_o_magic (abfd
, execp
);
1145 adjust_z_magic (abfd
, execp
);
1148 adjust_n_magic (abfd
, execp
);
1154 #ifdef BFD_AOUT_DEBUG
1155 fprintf (stderr
, " text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x>\n",
1156 obj_textsec (abfd
)->vma
, obj_textsec (abfd
)->size
,
1157 obj_textsec (abfd
)->filepos
,
1158 obj_datasec (abfd
)->vma
, obj_datasec (abfd
)->size
,
1159 obj_datasec (abfd
)->filepos
,
1160 obj_bsssec (abfd
)->vma
, obj_bsssec (abfd
)->size
);
1168 aout_@var{size}_new_section_hook
1171 bfd_boolean aout_@var{size}_new_section_hook,
1176 Called by the BFD in response to a @code{bfd_make_section}
1180 NAME (aout
, new_section_hook
) (bfd
*abfd
, asection
*newsect
)
1182 /* Align to double at least. */
1183 newsect
->alignment_power
= bfd_get_arch_info (abfd
)->section_align_power
;
1185 if (bfd_get_format (abfd
) == bfd_object
)
1187 if (obj_textsec (abfd
) == NULL
&& !strcmp (newsect
->name
, ".text"))
1189 obj_textsec (abfd
)= newsect
;
1190 newsect
->target_index
= N_TEXT
;
1194 if (obj_datasec (abfd
) == NULL
&& !strcmp (newsect
->name
, ".data"))
1196 obj_datasec (abfd
) = newsect
;
1197 newsect
->target_index
= N_DATA
;
1201 if (obj_bsssec (abfd
) == NULL
&& !strcmp (newsect
->name
, ".bss"))
1203 obj_bsssec (abfd
) = newsect
;
1204 newsect
->target_index
= N_BSS
;
1209 /* We allow more than three sections internally. */
1214 NAME (aout
, set_section_contents
) (bfd
*abfd
,
1216 const void * location
,
1218 bfd_size_type count
)
1221 bfd_size_type text_size
;
1223 if (! abfd
->output_has_begun
)
1225 if (! NAME (aout
, adjust_sizes_and_vmas
) (abfd
, &text_size
, &text_end
))
1229 if (section
== obj_bsssec (abfd
))
1231 bfd_set_error (bfd_error_no_contents
);
1235 if (section
!= obj_textsec (abfd
)
1236 && section
!= obj_datasec (abfd
))
1238 if (aout_section_merge_with_text_p (abfd
, section
))
1239 section
->filepos
= obj_textsec (abfd
)->filepos
+
1240 (section
->vma
- obj_textsec (abfd
)->vma
);
1243 (*_bfd_error_handler
)
1244 (_("%s: can not represent section `%s' in a.out object file format"),
1245 bfd_get_filename (abfd
), bfd_get_section_name (abfd
, section
));
1246 bfd_set_error (bfd_error_nonrepresentable_section
);
1253 if (bfd_seek (abfd
, section
->filepos
+ offset
, SEEK_SET
) != 0
1254 || bfd_bwrite (location
, count
, abfd
) != count
)
1261 /* Read the external symbols from an a.out file. */
1264 aout_get_external_symbols (bfd
*abfd
)
1266 if (obj_aout_external_syms (abfd
) == NULL
)
1268 bfd_size_type count
;
1269 struct external_nlist
*syms
;
1272 count
= exec_hdr (abfd
)->a_syms
/ EXTERNAL_NLIST_SIZE
;
1275 if (! bfd_get_file_window (abfd
, obj_sym_filepos (abfd
),
1276 exec_hdr (abfd
)->a_syms
,
1277 &obj_aout_sym_window (abfd
), TRUE
))
1279 syms
= (struct external_nlist
*) obj_aout_sym_window (abfd
).data
;
1281 /* We allocate using malloc to make the values easy to free
1282 later on. If we put them on the objalloc it might not be
1283 possible to free them. */
1284 syms
= bfd_malloc (count
* EXTERNAL_NLIST_SIZE
);
1285 if (syms
== NULL
&& count
!= 0)
1288 amt
= exec_hdr (abfd
)->a_syms
;
1289 if (bfd_seek (abfd
, obj_sym_filepos (abfd
), SEEK_SET
) != 0
1290 || bfd_bread (syms
, amt
, abfd
) != amt
)
1297 obj_aout_external_syms (abfd
) = syms
;
1298 obj_aout_external_sym_count (abfd
) = count
;
1301 if (obj_aout_external_strings (abfd
) == NULL
1302 && exec_hdr (abfd
)->a_syms
!= 0)
1304 unsigned char string_chars
[BYTES_IN_WORD
];
1305 bfd_size_type stringsize
;
1307 bfd_size_type amt
= BYTES_IN_WORD
;
1309 /* Get the size of the strings. */
1310 if (bfd_seek (abfd
, obj_str_filepos (abfd
), SEEK_SET
) != 0
1311 || bfd_bread ((void *) string_chars
, amt
, abfd
) != amt
)
1313 stringsize
= GET_WORD (abfd
, string_chars
);
1316 if (! bfd_get_file_window (abfd
, obj_str_filepos (abfd
), stringsize
,
1317 &obj_aout_string_window (abfd
), TRUE
))
1319 strings
= (char *) obj_aout_string_window (abfd
).data
;
1321 strings
= bfd_malloc (stringsize
+ 1);
1322 if (strings
== NULL
)
1325 /* Skip space for the string count in the buffer for convenience
1326 when using indexes. */
1327 amt
= stringsize
- BYTES_IN_WORD
;
1328 if (bfd_bread (strings
+ BYTES_IN_WORD
, amt
, abfd
) != amt
)
1335 /* Ensure that a zero index yields an empty string. */
1338 strings
[stringsize
- 1] = 0;
1340 obj_aout_external_strings (abfd
) = strings
;
1341 obj_aout_external_string_size (abfd
) = stringsize
;
1347 /* Translate an a.out symbol into a BFD symbol. The desc, other, type
1348 and symbol->value fields of CACHE_PTR will be set from the a.out
1349 nlist structure. This function is responsible for setting
1350 symbol->flags and symbol->section, and adjusting symbol->value. */
1353 translate_from_native_sym_flags (bfd
*abfd
, aout_symbol_type
*cache_ptr
)
1357 if ((cache_ptr
->type
& N_STAB
) != 0
1358 || cache_ptr
->type
== N_FN
)
1362 /* This is a debugging symbol. */
1363 cache_ptr
->symbol
.flags
= BSF_DEBUGGING
;
1365 /* Work out the symbol section. */
1366 switch (cache_ptr
->type
& N_TYPE
)
1370 sec
= obj_textsec (abfd
);
1373 sec
= obj_datasec (abfd
);
1376 sec
= obj_bsssec (abfd
);
1380 sec
= bfd_abs_section_ptr
;
1384 cache_ptr
->symbol
.section
= sec
;
1385 cache_ptr
->symbol
.value
-= sec
->vma
;
1390 /* Get the default visibility. This does not apply to all types, so
1391 we just hold it in a local variable to use if wanted. */
1392 if ((cache_ptr
->type
& N_EXT
) == 0)
1393 visible
= BSF_LOCAL
;
1395 visible
= BSF_GLOBAL
;
1397 switch (cache_ptr
->type
)
1400 case N_ABS
: case N_ABS
| N_EXT
:
1401 cache_ptr
->symbol
.section
= bfd_abs_section_ptr
;
1402 cache_ptr
->symbol
.flags
= visible
;
1405 case N_UNDF
| N_EXT
:
1406 if (cache_ptr
->symbol
.value
!= 0)
1408 /* This is a common symbol. */
1409 cache_ptr
->symbol
.flags
= BSF_GLOBAL
;
1410 cache_ptr
->symbol
.section
= bfd_com_section_ptr
;
1414 cache_ptr
->symbol
.flags
= 0;
1415 cache_ptr
->symbol
.section
= bfd_und_section_ptr
;
1419 case N_TEXT
: case N_TEXT
| N_EXT
:
1420 cache_ptr
->symbol
.section
= obj_textsec (abfd
);
1421 cache_ptr
->symbol
.value
-= cache_ptr
->symbol
.section
->vma
;
1422 cache_ptr
->symbol
.flags
= visible
;
1425 /* N_SETV symbols used to represent set vectors placed in the
1426 data section. They are no longer generated. Theoretically,
1427 it was possible to extract the entries and combine them with
1428 new ones, although I don't know if that was ever actually
1429 done. Unless that feature is restored, treat them as data
1431 case N_SETV
: case N_SETV
| N_EXT
:
1432 case N_DATA
: case N_DATA
| N_EXT
:
1433 cache_ptr
->symbol
.section
= obj_datasec (abfd
);
1434 cache_ptr
->symbol
.value
-= cache_ptr
->symbol
.section
->vma
;
1435 cache_ptr
->symbol
.flags
= visible
;
1438 case N_BSS
: case N_BSS
| N_EXT
:
1439 cache_ptr
->symbol
.section
= obj_bsssec (abfd
);
1440 cache_ptr
->symbol
.value
-= cache_ptr
->symbol
.section
->vma
;
1441 cache_ptr
->symbol
.flags
= visible
;
1444 case N_SETA
: case N_SETA
| N_EXT
:
1445 case N_SETT
: case N_SETT
| N_EXT
:
1446 case N_SETD
: case N_SETD
| N_EXT
:
1447 case N_SETB
: case N_SETB
| N_EXT
:
1449 /* This code is no longer needed. It used to be used to make
1450 the linker handle set symbols, but they are now handled in
1451 the add_symbols routine instead. */
1452 switch (cache_ptr
->type
& N_TYPE
)
1455 cache_ptr
->symbol
.section
= bfd_abs_section_ptr
;
1458 cache_ptr
->symbol
.section
= obj_textsec (abfd
);
1461 cache_ptr
->symbol
.section
= obj_datasec (abfd
);
1464 cache_ptr
->symbol
.section
= obj_bsssec (abfd
);
1468 cache_ptr
->symbol
.flags
|= BSF_CONSTRUCTOR
;
1473 /* This symbol is the text of a warning message. The next
1474 symbol is the symbol to associate the warning with. If a
1475 reference is made to that symbol, a warning is issued. */
1476 cache_ptr
->symbol
.flags
= BSF_DEBUGGING
| BSF_WARNING
;
1477 cache_ptr
->symbol
.section
= bfd_abs_section_ptr
;
1480 case N_INDR
: case N_INDR
| N_EXT
:
1481 /* An indirect symbol. This consists of two symbols in a row.
1482 The first symbol is the name of the indirection. The second
1483 symbol is the name of the target. A reference to the first
1484 symbol becomes a reference to the second. */
1485 cache_ptr
->symbol
.flags
= BSF_DEBUGGING
| BSF_INDIRECT
| visible
;
1486 cache_ptr
->symbol
.section
= bfd_ind_section_ptr
;
1490 cache_ptr
->symbol
.section
= bfd_und_section_ptr
;
1491 cache_ptr
->symbol
.flags
= BSF_WEAK
;
1495 cache_ptr
->symbol
.section
= bfd_abs_section_ptr
;
1496 cache_ptr
->symbol
.flags
= BSF_WEAK
;
1500 cache_ptr
->symbol
.section
= obj_textsec (abfd
);
1501 cache_ptr
->symbol
.value
-= cache_ptr
->symbol
.section
->vma
;
1502 cache_ptr
->symbol
.flags
= BSF_WEAK
;
1506 cache_ptr
->symbol
.section
= obj_datasec (abfd
);
1507 cache_ptr
->symbol
.value
-= cache_ptr
->symbol
.section
->vma
;
1508 cache_ptr
->symbol
.flags
= BSF_WEAK
;
1512 cache_ptr
->symbol
.section
= obj_bsssec (abfd
);
1513 cache_ptr
->symbol
.value
-= cache_ptr
->symbol
.section
->vma
;
1514 cache_ptr
->symbol
.flags
= BSF_WEAK
;
1521 /* Set the fields of SYM_POINTER according to CACHE_PTR. */
1524 translate_to_native_sym_flags (bfd
*abfd
,
1526 struct external_nlist
*sym_pointer
)
1528 bfd_vma value
= cache_ptr
->value
;
1532 /* Mask out any existing type bits in case copying from one section
1534 sym_pointer
->e_type
[0] &= ~N_TYPE
;
1536 sec
= bfd_get_section (cache_ptr
);
1541 /* This case occurs, e.g., for the *DEBUG* section of a COFF
1543 (*_bfd_error_handler
)
1544 (_("%s: can not represent section for symbol `%s' in a.out object file format"),
1545 bfd_get_filename (abfd
),
1546 cache_ptr
->name
!= NULL
? cache_ptr
->name
: _("*unknown*"));
1547 bfd_set_error (bfd_error_nonrepresentable_section
);
1551 if (sec
->output_section
!= NULL
)
1553 off
= sec
->output_offset
;
1554 sec
= sec
->output_section
;
1557 if (bfd_is_abs_section (sec
))
1558 sym_pointer
->e_type
[0] |= N_ABS
;
1559 else if (sec
== obj_textsec (abfd
))
1560 sym_pointer
->e_type
[0] |= N_TEXT
;
1561 else if (sec
== obj_datasec (abfd
))
1562 sym_pointer
->e_type
[0] |= N_DATA
;
1563 else if (sec
== obj_bsssec (abfd
))
1564 sym_pointer
->e_type
[0] |= N_BSS
;
1565 else if (bfd_is_und_section (sec
))
1566 sym_pointer
->e_type
[0] = N_UNDF
| N_EXT
;
1567 else if (bfd_is_ind_section (sec
))
1568 sym_pointer
->e_type
[0] = N_INDR
;
1569 else if (bfd_is_com_section (sec
))
1570 sym_pointer
->e_type
[0] = N_UNDF
| N_EXT
;
1573 if (aout_section_merge_with_text_p (abfd
, sec
))
1574 sym_pointer
->e_type
[0] |= N_TEXT
;
1577 (*_bfd_error_handler
)
1578 (_("%s: can not represent section `%s' in a.out object file format"),
1579 bfd_get_filename (abfd
), bfd_get_section_name (abfd
, sec
));
1580 bfd_set_error (bfd_error_nonrepresentable_section
);
1585 /* Turn the symbol from section relative to absolute again. */
1586 value
+= sec
->vma
+ off
;
1588 if ((cache_ptr
->flags
& BSF_WARNING
) != 0)
1589 sym_pointer
->e_type
[0] = N_WARNING
;
1591 if ((cache_ptr
->flags
& BSF_DEBUGGING
) != 0)
1592 sym_pointer
->e_type
[0] = ((aout_symbol_type
*) cache_ptr
)->type
;
1593 else if ((cache_ptr
->flags
& BSF_GLOBAL
) != 0)
1594 sym_pointer
->e_type
[0] |= N_EXT
;
1595 else if ((cache_ptr
->flags
& BSF_LOCAL
) != 0)
1596 sym_pointer
->e_type
[0] &= ~N_EXT
;
1598 if ((cache_ptr
->flags
& BSF_CONSTRUCTOR
) != 0)
1600 int type
= ((aout_symbol_type
*) cache_ptr
)->type
;
1604 case N_ABS
: type
= N_SETA
; break;
1605 case N_TEXT
: type
= N_SETT
; break;
1606 case N_DATA
: type
= N_SETD
; break;
1607 case N_BSS
: type
= N_SETB
; break;
1609 sym_pointer
->e_type
[0] = type
;
1612 if ((cache_ptr
->flags
& BSF_WEAK
) != 0)
1616 switch (sym_pointer
->e_type
[0] & N_TYPE
)
1619 case N_ABS
: type
= N_WEAKA
; break;
1620 case N_TEXT
: type
= N_WEAKT
; break;
1621 case N_DATA
: type
= N_WEAKD
; break;
1622 case N_BSS
: type
= N_WEAKB
; break;
1623 case N_UNDF
: type
= N_WEAKU
; break;
1625 sym_pointer
->e_type
[0] = type
;
1628 PUT_WORD (abfd
, value
, sym_pointer
->e_value
);
1633 /* Native-level interface to symbols. */
1636 NAME (aout
, make_empty_symbol
) (bfd
*abfd
)
1638 bfd_size_type amt
= sizeof (aout_symbol_type
);
1640 aout_symbol_type
*new = bfd_zalloc (abfd
, amt
);
1643 new->symbol
.the_bfd
= abfd
;
1645 return &new->symbol
;
1648 /* Translate a set of internal symbols into external symbols. */
1651 NAME (aout
, translate_symbol_table
) (bfd
*abfd
,
1652 aout_symbol_type
*in
,
1653 struct external_nlist
*ext
,
1654 bfd_size_type count
,
1656 bfd_size_type strsize
,
1657 bfd_boolean dynamic
)
1659 struct external_nlist
*ext_end
;
1661 ext_end
= ext
+ count
;
1662 for (; ext
< ext_end
; ext
++, in
++)
1666 x
= GET_WORD (abfd
, ext
->e_strx
);
1667 in
->symbol
.the_bfd
= abfd
;
1669 /* For the normal symbols, the zero index points at the number
1670 of bytes in the string table but is to be interpreted as the
1671 null string. For the dynamic symbols, the number of bytes in
1672 the string table is stored in the __DYNAMIC structure and the
1673 zero index points at an actual string. */
1674 if (x
== 0 && ! dynamic
)
1675 in
->symbol
.name
= "";
1676 else if (x
< strsize
)
1677 in
->symbol
.name
= str
+ x
;
1681 in
->symbol
.value
= GET_SWORD (abfd
, ext
->e_value
);
1682 in
->desc
= H_GET_16 (abfd
, ext
->e_desc
);
1683 in
->other
= H_GET_8 (abfd
, ext
->e_other
);
1684 in
->type
= H_GET_8 (abfd
, ext
->e_type
);
1685 in
->symbol
.udata
.p
= NULL
;
1687 if (! translate_from_native_sym_flags (abfd
, in
))
1691 in
->symbol
.flags
|= BSF_DYNAMIC
;
1697 /* We read the symbols into a buffer, which is discarded when this
1698 function exits. We read the strings into a buffer large enough to
1699 hold them all plus all the cached symbol entries. */
1702 NAME (aout
, slurp_symbol_table
) (bfd
*abfd
)
1704 struct external_nlist
*old_external_syms
;
1705 aout_symbol_type
*cached
;
1706 bfd_size_type cached_size
;
1708 /* If there's no work to be done, don't do any. */
1709 if (obj_aout_symbols (abfd
) != NULL
)
1712 old_external_syms
= obj_aout_external_syms (abfd
);
1714 if (! aout_get_external_symbols (abfd
))
1717 cached_size
= obj_aout_external_sym_count (abfd
);
1718 cached_size
*= sizeof (aout_symbol_type
);
1719 cached
= bfd_zmalloc (cached_size
);
1720 if (cached
== NULL
&& cached_size
!= 0)
1723 /* Convert from external symbol information to internal. */
1724 if (! (NAME (aout
, translate_symbol_table
)
1726 obj_aout_external_syms (abfd
),
1727 obj_aout_external_sym_count (abfd
),
1728 obj_aout_external_strings (abfd
),
1729 obj_aout_external_string_size (abfd
),
1736 bfd_get_symcount (abfd
) = obj_aout_external_sym_count (abfd
);
1738 obj_aout_symbols (abfd
) = cached
;
1740 /* It is very likely that anybody who calls this function will not
1741 want the external symbol information, so if it was allocated
1742 because of our call to aout_get_external_symbols, we free it up
1743 right away to save space. */
1744 if (old_external_syms
== NULL
1745 && obj_aout_external_syms (abfd
) != NULL
)
1748 bfd_free_window (&obj_aout_sym_window (abfd
));
1750 free (obj_aout_external_syms (abfd
));
1752 obj_aout_external_syms (abfd
) = NULL
;
1758 /* We use a hash table when writing out symbols so that we only write
1759 out a particular string once. This helps particularly when the
1760 linker writes out stabs debugging entries, because each different
1761 contributing object file tends to have many duplicate stabs
1764 This hash table code breaks dbx on SunOS 4.1.3, so we don't do it
1765 if BFD_TRADITIONAL_FORMAT is set. */
1767 /* Get the index of a string in a strtab, adding it if it is not
1770 static inline bfd_size_type
1771 add_to_stringtab (bfd
*abfd
,
1772 struct bfd_strtab_hash
*tab
,
1777 bfd_size_type index
;
1779 /* An index of 0 always means the empty string. */
1780 if (str
== 0 || *str
== '\0')
1783 /* Don't hash if BFD_TRADITIONAL_FORMAT is set, because SunOS dbx
1784 doesn't understand a hashed string table. */
1786 if ((abfd
->flags
& BFD_TRADITIONAL_FORMAT
) != 0)
1789 index
= _bfd_stringtab_add (tab
, str
, hash
, copy
);
1791 if (index
!= (bfd_size_type
) -1)
1792 /* Add BYTES_IN_WORD to the return value to account for the
1793 space taken up by the string table size. */
1794 index
+= BYTES_IN_WORD
;
1799 /* Write out a strtab. ABFD is already at the right location in the
1803 emit_stringtab (bfd
*abfd
, struct bfd_strtab_hash
*tab
)
1805 bfd_byte buffer
[BYTES_IN_WORD
];
1806 bfd_size_type amt
= BYTES_IN_WORD
;
1808 /* The string table starts with the size. */
1809 PUT_WORD (abfd
, _bfd_stringtab_size (tab
) + BYTES_IN_WORD
, buffer
);
1810 if (bfd_bwrite ((void *) buffer
, amt
, abfd
) != amt
)
1813 return _bfd_stringtab_emit (abfd
, tab
);
1817 NAME (aout
, write_syms
) (bfd
*abfd
)
1819 unsigned int count
;
1820 asymbol
**generic
= bfd_get_outsymbols (abfd
);
1821 struct bfd_strtab_hash
*strtab
;
1823 strtab
= _bfd_stringtab_init ();
1827 for (count
= 0; count
< bfd_get_symcount (abfd
); count
++)
1829 asymbol
*g
= generic
[count
];
1831 struct external_nlist nsp
;
1834 indx
= add_to_stringtab (abfd
, strtab
, g
->name
, FALSE
);
1835 if (indx
== (bfd_size_type
) -1)
1837 PUT_WORD (abfd
, indx
, (bfd_byte
*) nsp
.e_strx
);
1839 if (bfd_asymbol_flavour (g
) == abfd
->xvec
->flavour
)
1841 H_PUT_16 (abfd
, aout_symbol (g
)->desc
, nsp
.e_desc
);
1842 H_PUT_8 (abfd
, aout_symbol (g
)->other
, nsp
.e_other
);
1843 H_PUT_8 (abfd
, aout_symbol (g
)->type
, nsp
.e_type
);
1847 H_PUT_16 (abfd
, 0, nsp
.e_desc
);
1848 H_PUT_8 (abfd
, 0, nsp
.e_other
);
1849 H_PUT_8 (abfd
, 0, nsp
.e_type
);
1852 if (! translate_to_native_sym_flags (abfd
, g
, &nsp
))
1855 amt
= EXTERNAL_NLIST_SIZE
;
1856 if (bfd_bwrite ((void *) &nsp
, amt
, abfd
) != amt
)
1859 /* NB: `KEEPIT' currently overlays `udata.p', so set this only
1860 here, at the end. */
1864 if (! emit_stringtab (abfd
, strtab
))
1867 _bfd_stringtab_free (strtab
);
1872 _bfd_stringtab_free (strtab
);
1877 NAME (aout
, canonicalize_symtab
) (bfd
*abfd
, asymbol
**location
)
1879 unsigned int counter
= 0;
1880 aout_symbol_type
*symbase
;
1882 if (!NAME (aout
, slurp_symbol_table
) (abfd
))
1885 for (symbase
= obj_aout_symbols (abfd
);
1886 counter
++ < bfd_get_symcount (abfd
);
1888 *(location
++) = (asymbol
*) (symbase
++);
1890 return bfd_get_symcount (abfd
);
1893 /* Standard reloc stuff. */
1894 /* Output standard relocation information to a file in target byte order. */
1896 extern void NAME (aout
, swap_std_reloc_out
)
1897 (bfd
*, arelent
*, struct reloc_std_external
*);
1900 NAME (aout
, swap_std_reloc_out
) (bfd
*abfd
,
1902 struct reloc_std_external
*natptr
)
1905 asymbol
*sym
= *(g
->sym_ptr_ptr
);
1907 unsigned int r_length
;
1909 int r_baserel
, r_jmptable
, r_relative
;
1910 asection
*output_section
= sym
->section
->output_section
;
1912 PUT_WORD (abfd
, g
->address
, natptr
->r_address
);
1914 r_length
= g
->howto
->size
; /* Size as a power of two. */
1915 r_pcrel
= (int) g
->howto
->pc_relative
; /* Relative to PC? */
1916 /* XXX This relies on relocs coming from a.out files. */
1917 r_baserel
= (g
->howto
->type
& 8) != 0;
1918 r_jmptable
= (g
->howto
->type
& 16) != 0;
1919 r_relative
= (g
->howto
->type
& 32) != 0;
1921 /* Name was clobbered by aout_write_syms to be symbol index. */
1923 /* If this relocation is relative to a symbol then set the
1924 r_index to the symbols index, and the r_extern bit.
1926 Absolute symbols can come in in two ways, either as an offset
1927 from the abs section, or as a symbol which has an abs value.
1928 check for that here. */
1930 if (bfd_is_com_section (output_section
)
1931 || bfd_is_abs_section (output_section
)
1932 || bfd_is_und_section (output_section
))
1934 if (bfd_abs_section_ptr
->symbol
== sym
)
1936 /* Whoops, looked like an abs symbol, but is
1937 really an offset from the abs section. */
1943 /* Fill in symbol. */
1945 r_index
= (*(g
->sym_ptr_ptr
))->KEEPIT
;
1950 /* Just an ordinary section. */
1952 r_index
= output_section
->target_index
;
1955 /* Now the fun stuff. */
1956 if (bfd_header_big_endian (abfd
))
1958 natptr
->r_index
[0] = r_index
>> 16;
1959 natptr
->r_index
[1] = r_index
>> 8;
1960 natptr
->r_index
[2] = r_index
;
1961 natptr
->r_type
[0] = ((r_extern
? RELOC_STD_BITS_EXTERN_BIG
: 0)
1962 | (r_pcrel
? RELOC_STD_BITS_PCREL_BIG
: 0)
1963 | (r_baserel
? RELOC_STD_BITS_BASEREL_BIG
: 0)
1964 | (r_jmptable
? RELOC_STD_BITS_JMPTABLE_BIG
: 0)
1965 | (r_relative
? RELOC_STD_BITS_RELATIVE_BIG
: 0)
1966 | (r_length
<< RELOC_STD_BITS_LENGTH_SH_BIG
));
1970 natptr
->r_index
[2] = r_index
>> 16;
1971 natptr
->r_index
[1] = r_index
>> 8;
1972 natptr
->r_index
[0] = r_index
;
1973 natptr
->r_type
[0] = ((r_extern
? RELOC_STD_BITS_EXTERN_LITTLE
: 0)
1974 | (r_pcrel
? RELOC_STD_BITS_PCREL_LITTLE
: 0)
1975 | (r_baserel
? RELOC_STD_BITS_BASEREL_LITTLE
: 0)
1976 | (r_jmptable
? RELOC_STD_BITS_JMPTABLE_LITTLE
: 0)
1977 | (r_relative
? RELOC_STD_BITS_RELATIVE_LITTLE
: 0)
1978 | (r_length
<< RELOC_STD_BITS_LENGTH_SH_LITTLE
));
1982 /* Extended stuff. */
1983 /* Output extended relocation information to a file in target byte order. */
1985 extern void NAME (aout
, swap_ext_reloc_out
)
1986 (bfd
*, arelent
*, struct reloc_ext_external
*);
1989 NAME (aout
, swap_ext_reloc_out
) (bfd
*abfd
,
1991 struct reloc_ext_external
*natptr
)
1995 unsigned int r_type
;
1997 asymbol
*sym
= *(g
->sym_ptr_ptr
);
1998 asection
*output_section
= sym
->section
->output_section
;
2000 PUT_WORD (abfd
, g
->address
, natptr
->r_address
);
2002 r_type
= (unsigned int) g
->howto
->type
;
2004 r_addend
= g
->addend
;
2005 if ((sym
->flags
& BSF_SECTION_SYM
) != 0)
2006 r_addend
+= (*(g
->sym_ptr_ptr
))->section
->output_section
->vma
;
2008 /* If this relocation is relative to a symbol then set the
2009 r_index to the symbols index, and the r_extern bit.
2011 Absolute symbols can come in in two ways, either as an offset
2012 from the abs section, or as a symbol which has an abs value.
2013 check for that here. */
2014 if (bfd_is_abs_section (bfd_get_section (sym
)))
2019 else if ((sym
->flags
& BSF_SECTION_SYM
) == 0)
2021 if (bfd_is_und_section (bfd_get_section (sym
))
2022 || (sym
->flags
& BSF_GLOBAL
) != 0)
2026 r_index
= (*(g
->sym_ptr_ptr
))->KEEPIT
;
2030 /* Just an ordinary section. */
2032 r_index
= output_section
->target_index
;
2035 /* Now the fun stuff. */
2036 if (bfd_header_big_endian (abfd
))
2038 natptr
->r_index
[0] = r_index
>> 16;
2039 natptr
->r_index
[1] = r_index
>> 8;
2040 natptr
->r_index
[2] = r_index
;
2041 natptr
->r_type
[0] = ((r_extern
? RELOC_EXT_BITS_EXTERN_BIG
: 0)
2042 | (r_type
<< RELOC_EXT_BITS_TYPE_SH_BIG
));
2046 natptr
->r_index
[2] = r_index
>> 16;
2047 natptr
->r_index
[1] = r_index
>> 8;
2048 natptr
->r_index
[0] = r_index
;
2049 natptr
->r_type
[0] = ((r_extern
? RELOC_EXT_BITS_EXTERN_LITTLE
: 0)
2050 | (r_type
<< RELOC_EXT_BITS_TYPE_SH_LITTLE
));
2053 PUT_WORD (abfd
, r_addend
, natptr
->r_addend
);
2056 /* BFD deals internally with all things based from the section they're
2057 in. so, something in 10 bytes into a text section with a base of
2058 50 would have a symbol (.text+10) and know .text vma was 50.
2060 Aout keeps all it's symbols based from zero, so the symbol would
2061 contain 60. This macro subs the base of each section from the value
2062 to give the true offset from the section. */
2064 #define MOVE_ADDRESS(ad) \
2067 /* Undefined symbol. */ \
2068 cache_ptr->sym_ptr_ptr = symbols + r_index; \
2069 cache_ptr->addend = ad; \
2073 /* Defined, section relative. Replace symbol with pointer to \
2074 symbol which points to section. */ \
2078 case N_TEXT | N_EXT: \
2079 cache_ptr->sym_ptr_ptr = obj_textsec (abfd)->symbol_ptr_ptr; \
2080 cache_ptr->addend = ad - su->textsec->vma; \
2083 case N_DATA | N_EXT: \
2084 cache_ptr->sym_ptr_ptr = obj_datasec (abfd)->symbol_ptr_ptr; \
2085 cache_ptr->addend = ad - su->datasec->vma; \
2088 case N_BSS | N_EXT: \
2089 cache_ptr->sym_ptr_ptr = obj_bsssec (abfd)->symbol_ptr_ptr; \
2090 cache_ptr->addend = ad - su->bsssec->vma; \
2094 case N_ABS | N_EXT: \
2095 cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr; \
2096 cache_ptr->addend = ad; \
2102 NAME (aout
, swap_ext_reloc_in
) (bfd
*abfd
,
2103 struct reloc_ext_external
*bytes
,
2106 bfd_size_type symcount
)
2108 unsigned int r_index
;
2110 unsigned int r_type
;
2111 struct aoutdata
*su
= &(abfd
->tdata
.aout_data
->a
);
2113 cache_ptr
->address
= (GET_SWORD (abfd
, bytes
->r_address
));
2115 /* Now the fun stuff. */
2116 if (bfd_header_big_endian (abfd
))
2118 r_index
= (((unsigned int) bytes
->r_index
[0] << 16)
2119 | ((unsigned int) bytes
->r_index
[1] << 8)
2120 | bytes
->r_index
[2]);
2121 r_extern
= (0 != (bytes
->r_type
[0] & RELOC_EXT_BITS_EXTERN_BIG
));
2122 r_type
= ((bytes
->r_type
[0] & RELOC_EXT_BITS_TYPE_BIG
)
2123 >> RELOC_EXT_BITS_TYPE_SH_BIG
);
2127 r_index
= (((unsigned int) bytes
->r_index
[2] << 16)
2128 | ((unsigned int) bytes
->r_index
[1] << 8)
2129 | bytes
->r_index
[0]);
2130 r_extern
= (0 != (bytes
->r_type
[0] & RELOC_EXT_BITS_EXTERN_LITTLE
));
2131 r_type
= ((bytes
->r_type
[0] & RELOC_EXT_BITS_TYPE_LITTLE
)
2132 >> RELOC_EXT_BITS_TYPE_SH_LITTLE
);
2135 cache_ptr
->howto
= howto_table_ext
+ r_type
;
2137 /* Base relative relocs are always against the symbol table,
2138 regardless of the setting of r_extern. r_extern just reflects
2139 whether the symbol the reloc is against is local or global. */
2140 if (r_type
== (unsigned int) RELOC_BASE10
2141 || r_type
== (unsigned int) RELOC_BASE13
2142 || r_type
== (unsigned int) RELOC_BASE22
)
2145 if (r_extern
&& r_index
> symcount
)
2147 /* We could arrange to return an error, but it might be useful
2148 to see the file even if it is bad. */
2153 MOVE_ADDRESS (GET_SWORD (abfd
, bytes
->r_addend
));
2157 NAME (aout
, swap_std_reloc_in
) (bfd
*abfd
,
2158 struct reloc_std_external
*bytes
,
2161 bfd_size_type symcount
)
2163 unsigned int r_index
;
2165 unsigned int r_length
;
2167 int r_baserel
, r_jmptable
, r_relative
;
2168 struct aoutdata
*su
= &(abfd
->tdata
.aout_data
->a
);
2169 unsigned int howto_idx
;
2171 cache_ptr
->address
= H_GET_32 (abfd
, bytes
->r_address
);
2173 /* Now the fun stuff. */
2174 if (bfd_header_big_endian (abfd
))
2176 r_index
= (((unsigned int) bytes
->r_index
[0] << 16)
2177 | ((unsigned int) bytes
->r_index
[1] << 8)
2178 | bytes
->r_index
[2]);
2179 r_extern
= (0 != (bytes
->r_type
[0] & RELOC_STD_BITS_EXTERN_BIG
));
2180 r_pcrel
= (0 != (bytes
->r_type
[0] & RELOC_STD_BITS_PCREL_BIG
));
2181 r_baserel
= (0 != (bytes
->r_type
[0] & RELOC_STD_BITS_BASEREL_BIG
));
2182 r_jmptable
= (0 != (bytes
->r_type
[0] & RELOC_STD_BITS_JMPTABLE_BIG
));
2183 r_relative
= (0 != (bytes
->r_type
[0] & RELOC_STD_BITS_RELATIVE_BIG
));
2184 r_length
= ((bytes
->r_type
[0] & RELOC_STD_BITS_LENGTH_BIG
)
2185 >> RELOC_STD_BITS_LENGTH_SH_BIG
);
2189 r_index
= (((unsigned int) bytes
->r_index
[2] << 16)
2190 | ((unsigned int) bytes
->r_index
[1] << 8)
2191 | bytes
->r_index
[0]);
2192 r_extern
= (0 != (bytes
->r_type
[0] & RELOC_STD_BITS_EXTERN_LITTLE
));
2193 r_pcrel
= (0 != (bytes
->r_type
[0] & RELOC_STD_BITS_PCREL_LITTLE
));
2194 r_baserel
= (0 != (bytes
->r_type
[0] & RELOC_STD_BITS_BASEREL_LITTLE
));
2195 r_jmptable
= (0 != (bytes
->r_type
[0] & RELOC_STD_BITS_JMPTABLE_LITTLE
));
2196 r_relative
= (0 != (bytes
->r_type
[0] & RELOC_STD_BITS_RELATIVE_LITTLE
));
2197 r_length
= ((bytes
->r_type
[0] & RELOC_STD_BITS_LENGTH_LITTLE
)
2198 >> RELOC_STD_BITS_LENGTH_SH_LITTLE
);
2201 howto_idx
= (r_length
+ 4 * r_pcrel
+ 8 * r_baserel
2202 + 16 * r_jmptable
+ 32 * r_relative
);
2203 BFD_ASSERT (howto_idx
< TABLE_SIZE (howto_table_std
));
2204 cache_ptr
->howto
= howto_table_std
+ howto_idx
;
2205 BFD_ASSERT (cache_ptr
->howto
->type
!= (unsigned int) -1);
2207 /* Base relative relocs are always against the symbol table,
2208 regardless of the setting of r_extern. r_extern just reflects
2209 whether the symbol the reloc is against is local or global. */
2213 if (r_extern
&& r_index
> symcount
)
2215 /* We could arrange to return an error, but it might be useful
2216 to see the file even if it is bad. */
2224 /* Read and swap the relocs for a section. */
2227 NAME (aout
, slurp_reloc_table
) (bfd
*abfd
, sec_ptr asect
, asymbol
**symbols
)
2229 bfd_size_type count
;
2230 bfd_size_type reloc_size
;
2232 arelent
*reloc_cache
;
2234 unsigned int counter
= 0;
2238 if (asect
->relocation
)
2241 if (asect
->flags
& SEC_CONSTRUCTOR
)
2244 if (asect
== obj_datasec (abfd
))
2245 reloc_size
= exec_hdr (abfd
)->a_drsize
;
2246 else if (asect
== obj_textsec (abfd
))
2247 reloc_size
= exec_hdr (abfd
)->a_trsize
;
2248 else if (asect
== obj_bsssec (abfd
))
2252 bfd_set_error (bfd_error_invalid_operation
);
2256 if (bfd_seek (abfd
, asect
->rel_filepos
, SEEK_SET
) != 0)
2259 each_size
= obj_reloc_entry_size (abfd
);
2261 count
= reloc_size
/ each_size
;
2263 amt
= count
* sizeof (arelent
);
2264 reloc_cache
= bfd_zmalloc (amt
);
2265 if (reloc_cache
== NULL
&& count
!= 0)
2268 relocs
= bfd_malloc (reloc_size
);
2269 if (relocs
== NULL
&& reloc_size
!= 0)
2275 if (bfd_bread (relocs
, reloc_size
, abfd
) != reloc_size
)
2282 cache_ptr
= reloc_cache
;
2283 if (each_size
== RELOC_EXT_SIZE
)
2285 struct reloc_ext_external
*rptr
= (struct reloc_ext_external
*) relocs
;
2287 for (; counter
< count
; counter
++, rptr
++, cache_ptr
++)
2288 MY_swap_ext_reloc_in (abfd
, rptr
, cache_ptr
, symbols
,
2289 (bfd_size_type
) bfd_get_symcount (abfd
));
2293 struct reloc_std_external
*rptr
= (struct reloc_std_external
*) relocs
;
2295 for (; counter
< count
; counter
++, rptr
++, cache_ptr
++)
2296 MY_swap_std_reloc_in (abfd
, rptr
, cache_ptr
, symbols
,
2297 (bfd_size_type
) bfd_get_symcount (abfd
));
2302 asect
->relocation
= reloc_cache
;
2303 asect
->reloc_count
= cache_ptr
- reloc_cache
;
2308 /* Write out a relocation section into an object file. */
2311 NAME (aout
, squirt_out_relocs
) (bfd
*abfd
, asection
*section
)
2314 unsigned char *native
, *natptr
;
2317 unsigned int count
= section
->reloc_count
;
2318 bfd_size_type natsize
;
2320 if (count
== 0 || section
->orelocation
== NULL
)
2323 each_size
= obj_reloc_entry_size (abfd
);
2324 natsize
= (bfd_size_type
) each_size
* count
;
2325 native
= bfd_zalloc (abfd
, natsize
);
2329 generic
= section
->orelocation
;
2331 if (each_size
== RELOC_EXT_SIZE
)
2333 for (natptr
= native
;
2335 --count
, natptr
+= each_size
, ++generic
)
2336 MY_swap_ext_reloc_out (abfd
, *generic
,
2337 (struct reloc_ext_external
*) natptr
);
2341 for (natptr
= native
;
2343 --count
, natptr
+= each_size
, ++generic
)
2344 MY_swap_std_reloc_out (abfd
, *generic
,
2345 (struct reloc_std_external
*) natptr
);
2348 if (bfd_bwrite ((void *) native
, natsize
, abfd
) != natsize
)
2350 bfd_release (abfd
, native
);
2353 bfd_release (abfd
, native
);
2358 /* This is stupid. This function should be a boolean predicate. */
2361 NAME (aout
, canonicalize_reloc
) (bfd
*abfd
,
2366 arelent
*tblptr
= section
->relocation
;
2369 if (section
== obj_bsssec (abfd
))
2375 if (!(tblptr
|| NAME (aout
, slurp_reloc_table
) (abfd
, section
, symbols
)))
2378 if (section
->flags
& SEC_CONSTRUCTOR
)
2380 arelent_chain
*chain
= section
->constructor_chain
;
2381 for (count
= 0; count
< section
->reloc_count
; count
++)
2383 *relptr
++ = &chain
->relent
;
2384 chain
= chain
->next
;
2389 tblptr
= section
->relocation
;
2391 for (count
= 0; count
++ < section
->reloc_count
; )
2393 *relptr
++ = tblptr
++;
2398 return section
->reloc_count
;
2402 NAME (aout
, get_reloc_upper_bound
) (bfd
*abfd
, sec_ptr asect
)
2404 if (bfd_get_format (abfd
) != bfd_object
)
2406 bfd_set_error (bfd_error_invalid_operation
);
2410 if (asect
->flags
& SEC_CONSTRUCTOR
)
2411 return sizeof (arelent
*) * (asect
->reloc_count
+ 1);
2413 if (asect
== obj_datasec (abfd
))
2414 return sizeof (arelent
*)
2415 * ((exec_hdr (abfd
)->a_drsize
/ obj_reloc_entry_size (abfd
))
2418 if (asect
== obj_textsec (abfd
))
2419 return sizeof (arelent
*)
2420 * ((exec_hdr (abfd
)->a_trsize
/ obj_reloc_entry_size (abfd
))
2423 if (asect
== obj_bsssec (abfd
))
2424 return sizeof (arelent
*);
2426 if (asect
== obj_bsssec (abfd
))
2429 bfd_set_error (bfd_error_invalid_operation
);
2434 NAME (aout
, get_symtab_upper_bound
) (bfd
*abfd
)
2436 if (!NAME (aout
, slurp_symbol_table
) (abfd
))
2439 return (bfd_get_symcount (abfd
)+1) * (sizeof (aout_symbol_type
*));
2443 NAME (aout
, get_lineno
) (bfd
*ignore_abfd ATTRIBUTE_UNUSED
,
2444 asymbol
*ignore_symbol ATTRIBUTE_UNUSED
)
2450 NAME (aout
, get_symbol_info
) (bfd
*ignore_abfd ATTRIBUTE_UNUSED
,
2454 bfd_symbol_info (symbol
, ret
);
2456 if (ret
->type
== '?')
2458 int type_code
= aout_symbol (symbol
)->type
& 0xff;
2459 const char *stab_name
= bfd_get_stab_name (type_code
);
2460 static char buf
[10];
2462 if (stab_name
== NULL
)
2464 sprintf (buf
, "(%d)", type_code
);
2468 ret
->stab_type
= type_code
;
2469 ret
->stab_other
= (unsigned) (aout_symbol (symbol
)->other
& 0xff);
2470 ret
->stab_desc
= (unsigned) (aout_symbol (symbol
)->desc
& 0xffff);
2471 ret
->stab_name
= stab_name
;
2476 NAME (aout
, print_symbol
) (bfd
*abfd
,
2479 bfd_print_symbol_type how
)
2481 FILE *file
= (FILE *)afile
;
2485 case bfd_print_symbol_name
:
2487 fprintf (file
,"%s", symbol
->name
);
2489 case bfd_print_symbol_more
:
2490 fprintf (file
,"%4x %2x %2x",
2491 (unsigned) (aout_symbol (symbol
)->desc
& 0xffff),
2492 (unsigned) (aout_symbol (symbol
)->other
& 0xff),
2493 (unsigned) (aout_symbol (symbol
)->type
));
2495 case bfd_print_symbol_all
:
2497 const char *section_name
= symbol
->section
->name
;
2499 bfd_print_symbol_vandf (abfd
, (void *)file
, symbol
);
2501 fprintf (file
," %-5s %04x %02x %02x",
2503 (unsigned) (aout_symbol (symbol
)->desc
& 0xffff),
2504 (unsigned) (aout_symbol (symbol
)->other
& 0xff),
2505 (unsigned) (aout_symbol (symbol
)->type
& 0xff));
2507 fprintf (file
," %s", symbol
->name
);
2513 /* If we don't have to allocate more than 1MB to hold the generic
2514 symbols, we use the generic minisymbol methord: it's faster, since
2515 it only translates the symbols once, not multiple times. */
2516 #define MINISYM_THRESHOLD (1000000 / sizeof (asymbol))
2518 /* Read minisymbols. For minisymbols, we use the unmodified a.out
2519 symbols. The minisymbol_to_symbol function translates these into
2520 BFD asymbol structures. */
2523 NAME (aout
, read_minisymbols
) (bfd
*abfd
,
2524 bfd_boolean dynamic
,
2526 unsigned int *sizep
)
2529 /* We could handle the dynamic symbols here as well, but it's
2530 easier to hand them off. */
2531 return _bfd_generic_read_minisymbols (abfd
, dynamic
, minisymsp
, sizep
);
2533 if (! aout_get_external_symbols (abfd
))
2536 if (obj_aout_external_sym_count (abfd
) < MINISYM_THRESHOLD
)
2537 return _bfd_generic_read_minisymbols (abfd
, dynamic
, minisymsp
, sizep
);
2539 *minisymsp
= (void *) obj_aout_external_syms (abfd
);
2541 /* By passing the external symbols back from this routine, we are
2542 giving up control over the memory block. Clear
2543 obj_aout_external_syms, so that we do not try to free it
2545 obj_aout_external_syms (abfd
) = NULL
;
2547 *sizep
= EXTERNAL_NLIST_SIZE
;
2548 return obj_aout_external_sym_count (abfd
);
2551 /* Convert a minisymbol to a BFD asymbol. A minisymbol is just an
2552 unmodified a.out symbol. The SYM argument is a structure returned
2553 by bfd_make_empty_symbol, which we fill in here. */
2556 NAME (aout
, minisymbol_to_symbol
) (bfd
*abfd
,
2557 bfd_boolean dynamic
,
2558 const void * minisym
,
2562 || obj_aout_external_sym_count (abfd
) < MINISYM_THRESHOLD
)
2563 return _bfd_generic_minisymbol_to_symbol (abfd
, dynamic
, minisym
, sym
);
2565 memset (sym
, 0, sizeof (aout_symbol_type
));
2567 /* We call translate_symbol_table to translate a single symbol. */
2568 if (! (NAME (aout
, translate_symbol_table
)
2570 (aout_symbol_type
*) sym
,
2571 (struct external_nlist
*) minisym
,
2573 obj_aout_external_strings (abfd
),
2574 obj_aout_external_string_size (abfd
),
2581 /* Provided a BFD, a section and an offset into the section, calculate
2582 and return the name of the source file and the line nearest to the
2586 NAME (aout
, find_nearest_line
) (bfd
*abfd
,
2590 const char **filename_ptr
,
2591 const char **functionname_ptr
,
2592 unsigned int *line_ptr
)
2594 /* Run down the file looking for the filename, function and linenumber. */
2596 const char *directory_name
= NULL
;
2597 const char *main_file_name
= NULL
;
2598 const char *current_file_name
= NULL
;
2599 const char *line_file_name
= NULL
; /* Value of current_file_name at line number. */
2600 const char *line_directory_name
= NULL
; /* Value of directory_name at line number. */
2601 bfd_vma low_line_vma
= 0;
2602 bfd_vma low_func_vma
= 0;
2604 bfd_size_type filelen
, funclen
;
2607 *filename_ptr
= abfd
->filename
;
2608 *functionname_ptr
= 0;
2611 if (symbols
!= NULL
)
2613 for (p
= symbols
; *p
; p
++)
2615 aout_symbol_type
*q
= (aout_symbol_type
*) (*p
);
2620 /* If this looks like a file name symbol, and it comes after
2621 the line number we have found so far, but before the
2622 offset, then we have probably not found the right line
2624 if (q
->symbol
.value
<= offset
2625 && ((q
->symbol
.value
> low_line_vma
2626 && (line_file_name
!= NULL
2628 || (q
->symbol
.value
> low_func_vma
2631 const char *symname
;
2633 symname
= q
->symbol
.name
;
2634 if (strcmp (symname
+ strlen (symname
) - 2, ".o") == 0)
2636 if (q
->symbol
.value
> low_line_vma
)
2639 line_file_name
= NULL
;
2641 if (q
->symbol
.value
> low_func_vma
)
2648 /* If this symbol is less than the offset, but greater than
2649 the line number we have found so far, then we have not
2650 found the right line number. */
2651 if (q
->symbol
.value
<= offset
)
2653 if (q
->symbol
.value
> low_line_vma
)
2656 line_file_name
= NULL
;
2658 if (q
->symbol
.value
> low_func_vma
)
2662 main_file_name
= current_file_name
= q
->symbol
.name
;
2663 /* Look ahead to next symbol to check if that too is an N_SO. */
2667 q
= (aout_symbol_type
*) (*p
);
2668 if (q
->type
!= (int)N_SO
)
2671 /* Found a second N_SO First is directory; second is filename. */
2672 directory_name
= current_file_name
;
2673 main_file_name
= current_file_name
= q
->symbol
.name
;
2674 if (obj_textsec (abfd
) != section
)
2678 current_file_name
= q
->symbol
.name
;
2685 /* We'll keep this if it resolves nearer than the one we have
2687 if (q
->symbol
.value
>= low_line_vma
2688 && q
->symbol
.value
<= offset
)
2690 *line_ptr
= q
->desc
;
2691 low_line_vma
= q
->symbol
.value
;
2692 line_file_name
= current_file_name
;
2693 line_directory_name
= directory_name
;
2698 /* We'll keep this if it is nearer than the one we have already. */
2699 if (q
->symbol
.value
>= low_func_vma
&&
2700 q
->symbol
.value
<= offset
)
2702 low_func_vma
= q
->symbol
.value
;
2703 func
= (asymbol
*)q
;
2705 else if (q
->symbol
.value
> offset
)
2716 main_file_name
= line_file_name
;
2717 directory_name
= line_directory_name
;
2720 if (main_file_name
== NULL
2721 || IS_ABSOLUTE_PATH (main_file_name
)
2722 || directory_name
== NULL
)
2725 filelen
= strlen (directory_name
) + strlen (main_file_name
);
2730 funclen
= strlen (bfd_asymbol_name (func
));
2732 if (adata (abfd
).line_buf
!= NULL
)
2733 free (adata (abfd
).line_buf
);
2735 if (filelen
+ funclen
== 0)
2736 adata (abfd
).line_buf
= buf
= NULL
;
2739 buf
= bfd_malloc (filelen
+ funclen
+ 3);
2740 adata (abfd
).line_buf
= buf
;
2745 if (main_file_name
!= NULL
)
2747 if (IS_ABSOLUTE_PATH (main_file_name
) || directory_name
== NULL
)
2748 *filename_ptr
= main_file_name
;
2751 sprintf (buf
, "%s%s", directory_name
, main_file_name
);
2752 *filename_ptr
= buf
;
2759 const char *function
= func
->name
;
2762 /* The caller expects a symbol name. We actually have a
2763 function name, without the leading underscore. Put the
2764 underscore back in, so that the caller gets a symbol name. */
2765 if (bfd_get_symbol_leading_char (abfd
) == '\0')
2766 strcpy (buf
, function
);
2769 buf
[0] = bfd_get_symbol_leading_char (abfd
);
2770 strcpy (buf
+ 1, function
);
2772 /* Have to remove : stuff. */
2773 colon
= strchr (buf
, ':');
2776 *functionname_ptr
= buf
;
2783 NAME (aout
, sizeof_headers
) (bfd
*abfd
, bfd_boolean execable ATTRIBUTE_UNUSED
)
2785 return adata (abfd
).exec_bytes_size
;
2788 /* Free all information we have cached for this BFD. We can always
2789 read it again later if we need it. */
2792 NAME (aout
, bfd_free_cached_info
) (bfd
*abfd
)
2796 if (bfd_get_format (abfd
) != bfd_object
2797 || abfd
->tdata
.aout_data
== NULL
)
2800 #define BFCI_FREE(x) if (x != NULL) { free (x); x = NULL; }
2801 BFCI_FREE (obj_aout_symbols (abfd
));
2803 obj_aout_external_syms (abfd
) = 0;
2804 bfd_free_window (&obj_aout_sym_window (abfd
));
2805 bfd_free_window (&obj_aout_string_window (abfd
));
2806 obj_aout_external_strings (abfd
) = 0;
2808 BFCI_FREE (obj_aout_external_syms (abfd
));
2809 BFCI_FREE (obj_aout_external_strings (abfd
));
2811 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
2812 BFCI_FREE (o
->relocation
);
2818 /* a.out link code. */
2820 /* Routine to create an entry in an a.out link hash table. */
2822 struct bfd_hash_entry
*
2823 NAME (aout
, link_hash_newfunc
) (struct bfd_hash_entry
*entry
,
2824 struct bfd_hash_table
*table
,
2827 struct aout_link_hash_entry
*ret
= (struct aout_link_hash_entry
*) entry
;
2829 /* Allocate the structure if it has not already been allocated by a
2832 ret
= bfd_hash_allocate (table
, sizeof (* ret
));
2836 /* Call the allocation method of the superclass. */
2837 ret
= ((struct aout_link_hash_entry
*)
2838 _bfd_link_hash_newfunc ((struct bfd_hash_entry
*) ret
,
2842 /* Set local fields. */
2843 ret
->written
= FALSE
;
2847 return (struct bfd_hash_entry
*) ret
;
2850 /* Initialize an a.out link hash table. */
2853 NAME (aout
, link_hash_table_init
) (struct aout_link_hash_table
*table
,
2855 struct bfd_hash_entry
*(*newfunc
)
2856 (struct bfd_hash_entry
*, struct bfd_hash_table
*,
2859 return _bfd_link_hash_table_init (&table
->root
, abfd
, newfunc
);
2862 /* Create an a.out link hash table. */
2864 struct bfd_link_hash_table
*
2865 NAME (aout
, link_hash_table_create
) (bfd
*abfd
)
2867 struct aout_link_hash_table
*ret
;
2868 bfd_size_type amt
= sizeof (* ret
);
2870 ret
= bfd_malloc (amt
);
2874 if (! NAME (aout
, link_hash_table_init
) (ret
, abfd
,
2875 NAME (aout
, link_hash_newfunc
)))
2883 /* Add all symbols from an object file to the hash table. */
2886 aout_link_add_symbols (bfd
*abfd
, struct bfd_link_info
*info
)
2888 bfd_boolean (*add_one_symbol
)
2889 (struct bfd_link_info
*, bfd
*, const char *, flagword
, asection
*,
2890 bfd_vma
, const char *, bfd_boolean
, bfd_boolean
,
2891 struct bfd_link_hash_entry
**);
2892 struct external_nlist
*syms
;
2893 bfd_size_type sym_count
;
2896 struct aout_link_hash_entry
**sym_hash
;
2897 struct external_nlist
*p
;
2898 struct external_nlist
*pend
;
2901 syms
= obj_aout_external_syms (abfd
);
2902 sym_count
= obj_aout_external_sym_count (abfd
);
2903 strings
= obj_aout_external_strings (abfd
);
2904 if (info
->keep_memory
)
2909 if (aout_backend_info (abfd
)->add_dynamic_symbols
!= NULL
)
2911 if (! ((*aout_backend_info (abfd
)->add_dynamic_symbols
)
2912 (abfd
, info
, &syms
, &sym_count
, &strings
)))
2916 /* We keep a list of the linker hash table entries that correspond
2917 to particular symbols. We could just look them up in the hash
2918 table, but keeping the list is more efficient. Perhaps this
2919 should be conditional on info->keep_memory. */
2920 amt
= sym_count
* sizeof (struct aout_link_hash_entry
*);
2921 sym_hash
= bfd_alloc (abfd
, amt
);
2922 if (sym_hash
== NULL
&& sym_count
!= 0)
2924 obj_aout_sym_hashes (abfd
) = sym_hash
;
2926 add_one_symbol
= aout_backend_info (abfd
)->add_one_symbol
;
2927 if (add_one_symbol
== NULL
)
2928 add_one_symbol
= _bfd_generic_link_add_one_symbol
;
2931 pend
= p
+ sym_count
;
2932 for (; p
< pend
; p
++, sym_hash
++)
2943 type
= H_GET_8 (abfd
, p
->e_type
);
2945 /* Ignore debugging symbols. */
2946 if ((type
& N_STAB
) != 0)
2949 name
= strings
+ GET_WORD (abfd
, p
->e_strx
);
2950 value
= GET_WORD (abfd
, p
->e_value
);
2967 /* Ignore symbols that are not externally visible. */
2970 /* Ignore local indirect symbol. */
2975 case N_UNDF
| N_EXT
:
2978 section
= bfd_und_section_ptr
;
2982 section
= bfd_com_section_ptr
;
2985 section
= bfd_abs_section_ptr
;
2987 case N_TEXT
| N_EXT
:
2988 section
= obj_textsec (abfd
);
2989 value
-= bfd_get_section_vma (abfd
, section
);
2991 case N_DATA
| N_EXT
:
2992 case N_SETV
| N_EXT
:
2993 /* Treat N_SETV symbols as N_DATA symbol; see comment in
2994 translate_from_native_sym_flags. */
2995 section
= obj_datasec (abfd
);
2996 value
-= bfd_get_section_vma (abfd
, section
);
2999 section
= obj_bsssec (abfd
);
3000 value
-= bfd_get_section_vma (abfd
, section
);
3002 case N_INDR
| N_EXT
:
3003 /* An indirect symbol. The next symbol is the symbol
3004 which this one really is. */
3005 BFD_ASSERT (p
+ 1 < pend
);
3007 string
= strings
+ GET_WORD (abfd
, p
->e_strx
);
3008 section
= bfd_ind_section_ptr
;
3009 flags
|= BSF_INDIRECT
;
3011 case N_COMM
| N_EXT
:
3012 section
= bfd_com_section_ptr
;
3014 case N_SETA
: case N_SETA
| N_EXT
:
3015 section
= bfd_abs_section_ptr
;
3016 flags
|= BSF_CONSTRUCTOR
;
3018 case N_SETT
: case N_SETT
| N_EXT
:
3019 section
= obj_textsec (abfd
);
3020 flags
|= BSF_CONSTRUCTOR
;
3021 value
-= bfd_get_section_vma (abfd
, section
);
3023 case N_SETD
: case N_SETD
| N_EXT
:
3024 section
= obj_datasec (abfd
);
3025 flags
|= BSF_CONSTRUCTOR
;
3026 value
-= bfd_get_section_vma (abfd
, section
);
3028 case N_SETB
: case N_SETB
| N_EXT
:
3029 section
= obj_bsssec (abfd
);
3030 flags
|= BSF_CONSTRUCTOR
;
3031 value
-= bfd_get_section_vma (abfd
, section
);
3034 /* A warning symbol. The next symbol is the one to warn
3035 about. If there is no next symbol, just look away. */
3040 name
= strings
+ GET_WORD (abfd
, p
->e_strx
);
3041 section
= bfd_und_section_ptr
;
3042 flags
|= BSF_WARNING
;
3045 section
= bfd_und_section_ptr
;
3049 section
= bfd_abs_section_ptr
;
3053 section
= obj_textsec (abfd
);
3054 value
-= bfd_get_section_vma (abfd
, section
);
3058 section
= obj_datasec (abfd
);
3059 value
-= bfd_get_section_vma (abfd
, section
);
3063 section
= obj_bsssec (abfd
);
3064 value
-= bfd_get_section_vma (abfd
, section
);
3069 if (! ((*add_one_symbol
)
3070 (info
, abfd
, name
, flags
, section
, value
, string
, copy
, FALSE
,
3071 (struct bfd_link_hash_entry
**) sym_hash
)))
3074 /* Restrict the maximum alignment of a common symbol based on
3075 the architecture, since a.out has no way to represent
3076 alignment requirements of a section in a .o file. FIXME:
3077 This isn't quite right: it should use the architecture of the
3078 output file, not the input files. */
3079 if ((*sym_hash
)->root
.type
== bfd_link_hash_common
3080 && ((*sym_hash
)->root
.u
.c
.p
->alignment_power
>
3081 bfd_get_arch_info (abfd
)->section_align_power
))
3082 (*sym_hash
)->root
.u
.c
.p
->alignment_power
=
3083 bfd_get_arch_info (abfd
)->section_align_power
;
3085 /* If this is a set symbol, and we are not building sets, then
3086 it is possible for the hash entry to not have been set. In
3087 such a case, treat the symbol as not globally defined. */
3088 if ((*sym_hash
)->root
.type
== bfd_link_hash_new
)
3090 BFD_ASSERT ((flags
& BSF_CONSTRUCTOR
) != 0);
3094 if (type
== (N_INDR
| N_EXT
) || type
== N_WARNING
)
3101 /* Free up the internal symbols read from an a.out file. */
3104 aout_link_free_symbols (bfd
*abfd
)
3106 if (obj_aout_external_syms (abfd
) != NULL
)
3109 bfd_free_window (&obj_aout_sym_window (abfd
));
3111 free ((void *) obj_aout_external_syms (abfd
));
3113 obj_aout_external_syms (abfd
) = NULL
;
3115 if (obj_aout_external_strings (abfd
) != NULL
)
3118 bfd_free_window (&obj_aout_string_window (abfd
));
3120 free ((void *) obj_aout_external_strings (abfd
));
3122 obj_aout_external_strings (abfd
) = NULL
;
3127 /* Add symbols from an a.out object file. */
3130 aout_link_add_object_symbols (bfd
*abfd
, struct bfd_link_info
*info
)
3132 if (! aout_get_external_symbols (abfd
))
3134 if (! aout_link_add_symbols (abfd
, info
))
3136 if (! info
->keep_memory
)
3138 if (! aout_link_free_symbols (abfd
))
3144 /* Look through the internal symbols to see if this object file should
3145 be included in the link. We should include this object file if it
3146 defines any symbols which are currently undefined. If this object
3147 file defines a common symbol, then we may adjust the size of the
3148 known symbol but we do not include the object file in the link
3149 (unless there is some other reason to include it). */
3152 aout_link_check_ar_symbols (bfd
*abfd
,
3153 struct bfd_link_info
*info
,
3154 bfd_boolean
*pneeded
)
3156 struct external_nlist
*p
;
3157 struct external_nlist
*pend
;
3162 /* Look through all the symbols. */
3163 p
= obj_aout_external_syms (abfd
);
3164 pend
= p
+ obj_aout_external_sym_count (abfd
);
3165 strings
= obj_aout_external_strings (abfd
);
3166 for (; p
< pend
; p
++)
3168 int type
= H_GET_8 (abfd
, p
->e_type
);
3170 struct bfd_link_hash_entry
*h
;
3172 /* Ignore symbols that are not externally visible. This is an
3173 optimization only, as we check the type more thoroughly
3175 if (((type
& N_EXT
) == 0
3176 || (type
& N_STAB
) != 0
3183 if (type
== N_WARNING
3189 name
= strings
+ GET_WORD (abfd
, p
->e_strx
);
3190 h
= bfd_link_hash_lookup (info
->hash
, name
, FALSE
, FALSE
, TRUE
);
3192 /* We are only interested in symbols that are currently
3193 undefined or common. */
3195 || (h
->type
!= bfd_link_hash_undefined
3196 && h
->type
!= bfd_link_hash_common
))
3198 if (type
== (N_INDR
| N_EXT
))
3203 if (type
== (N_TEXT
| N_EXT
)
3204 || type
== (N_DATA
| N_EXT
)
3205 || type
== (N_BSS
| N_EXT
)
3206 || type
== (N_ABS
| N_EXT
)
3207 || type
== (N_INDR
| N_EXT
))
3209 /* This object file defines this symbol. We must link it
3210 in. This is true regardless of whether the current
3211 definition of the symbol is undefined or common.
3213 If the current definition is common, we have a case in
3214 which we have already seen an object file including:
3216 and this object file from the archive includes:
3218 In such a case, whether to include this object is target
3219 dependant for backward compatibility.
3221 FIXME: The SunOS 4.1.3 linker will pull in the archive
3222 element if the symbol is defined in the .data section,
3223 but not if it is defined in the .text section. That
3224 seems a bit crazy to me, and it has not been implemented
3225 yet. However, it might be correct. */
3226 if (h
->type
== bfd_link_hash_common
)
3230 switch (info
->common_skip_ar_aymbols
)
3232 case bfd_link_common_skip_text
:
3233 skip
= (type
== (N_TEXT
| N_EXT
));
3235 case bfd_link_common_skip_data
:
3236 skip
= (type
== (N_DATA
| N_EXT
));
3239 case bfd_link_common_skip_all
:
3248 if (! (*info
->callbacks
->add_archive_element
) (info
, abfd
, name
))
3254 if (type
== (N_UNDF
| N_EXT
))
3258 value
= GET_WORD (abfd
, p
->e_value
);
3261 /* This symbol is common in the object from the archive
3263 if (h
->type
== bfd_link_hash_undefined
)
3268 symbfd
= h
->u
.undef
.abfd
;
3271 /* This symbol was created as undefined from
3272 outside BFD. We assume that we should link
3273 in the object file. This is done for the -u
3274 option in the linker. */
3275 if (! (*info
->callbacks
->add_archive_element
) (info
,
3282 /* Turn the current link symbol into a common
3283 symbol. It is already on the undefs list. */
3284 h
->type
= bfd_link_hash_common
;
3285 h
->u
.c
.p
= bfd_hash_allocate (&info
->hash
->table
,
3286 sizeof (struct bfd_link_hash_common_entry
));
3287 if (h
->u
.c
.p
== NULL
)
3290 h
->u
.c
.size
= value
;
3292 /* FIXME: This isn't quite right. The maximum
3293 alignment of a common symbol should be set by the
3294 architecture of the output file, not of the input
3296 power
= bfd_log2 (value
);
3297 if (power
> bfd_get_arch_info (abfd
)->section_align_power
)
3298 power
= bfd_get_arch_info (abfd
)->section_align_power
;
3299 h
->u
.c
.p
->alignment_power
= power
;
3301 h
->u
.c
.p
->section
= bfd_make_section_old_way (symbfd
,
3306 /* Adjust the size of the common symbol if
3308 if (value
> h
->u
.c
.size
)
3309 h
->u
.c
.size
= value
;
3319 /* This symbol is weak but defined. We must pull it in if
3320 the current link symbol is undefined, but we don't want
3321 it if the current link symbol is common. */
3322 if (h
->type
== bfd_link_hash_undefined
)
3324 if (! (*info
->callbacks
->add_archive_element
) (info
, abfd
, name
))
3332 /* We do not need this object file. */
3335 /* Check a single archive element to see if we need to include it in
3336 the link. *PNEEDED is set according to whether this element is
3337 needed in the link or not. This is called from
3338 _bfd_generic_link_add_archive_symbols. */
3341 aout_link_check_archive_element (bfd
*abfd
,
3342 struct bfd_link_info
*info
,
3343 bfd_boolean
*pneeded
)
3345 if (! aout_get_external_symbols (abfd
))
3348 if (! aout_link_check_ar_symbols (abfd
, info
, pneeded
))
3353 if (! aout_link_add_symbols (abfd
, info
))
3357 if (! info
->keep_memory
|| ! *pneeded
)
3359 if (! aout_link_free_symbols (abfd
))
3366 /* Given an a.out BFD, add symbols to the global hash table as
3370 NAME (aout
, link_add_symbols
) (bfd
*abfd
, struct bfd_link_info
*info
)
3372 switch (bfd_get_format (abfd
))
3375 return aout_link_add_object_symbols (abfd
, info
);
3377 return _bfd_generic_link_add_archive_symbols
3378 (abfd
, info
, aout_link_check_archive_element
);
3380 bfd_set_error (bfd_error_wrong_format
);
3385 /* A hash table used for header files with N_BINCL entries. */
3387 struct aout_link_includes_table
3389 struct bfd_hash_table root
;
3392 /* A linked list of totals that we have found for a particular header
3395 struct aout_link_includes_totals
3397 struct aout_link_includes_totals
*next
;
3401 /* An entry in the header file hash table. */
3403 struct aout_link_includes_entry
3405 struct bfd_hash_entry root
;
3406 /* List of totals we have found for this file. */
3407 struct aout_link_includes_totals
*totals
;
3410 /* Look up an entry in an the header file hash table. */
3412 #define aout_link_includes_lookup(table, string, create, copy) \
3413 ((struct aout_link_includes_entry *) \
3414 bfd_hash_lookup (&(table)->root, (string), (create), (copy)))
3416 /* During the final link step we need to pass around a bunch of
3417 information, so we do it in an instance of this structure. */
3419 struct aout_final_link_info
3421 /* General link information. */
3422 struct bfd_link_info
*info
;
3425 /* Reloc file positions. */
3426 file_ptr treloff
, dreloff
;
3427 /* File position of symbols. */
3430 struct bfd_strtab_hash
*strtab
;
3431 /* Header file hash table. */
3432 struct aout_link_includes_table includes
;
3433 /* A buffer large enough to hold the contents of any section. */
3435 /* A buffer large enough to hold the relocs of any section. */
3437 /* A buffer large enough to hold the symbol map of any input BFD. */
3439 /* A buffer large enough to hold output symbols of any input BFD. */
3440 struct external_nlist
*output_syms
;
3443 /* The function to create a new entry in the header file hash table. */
3445 static struct bfd_hash_entry
*
3446 aout_link_includes_newfunc (struct bfd_hash_entry
*entry
,
3447 struct bfd_hash_table
*table
,
3450 struct aout_link_includes_entry
*ret
=
3451 (struct aout_link_includes_entry
*) entry
;
3453 /* Allocate the structure if it has not already been allocated by a
3456 ret
= bfd_hash_allocate (table
, sizeof (* ret
));
3460 /* Call the allocation method of the superclass. */
3461 ret
= ((struct aout_link_includes_entry
*)
3462 bfd_hash_newfunc ((struct bfd_hash_entry
*) ret
, table
, string
));
3465 /* Set local fields. */
3469 return (struct bfd_hash_entry
*) ret
;
3472 /* Write out a symbol that was not associated with an a.out input
3476 aout_link_write_other_symbol (struct aout_link_hash_entry
*h
, void * data
)
3478 struct aout_final_link_info
*finfo
= (struct aout_final_link_info
*) data
;
3482 struct external_nlist outsym
;
3486 if (h
->root
.type
== bfd_link_hash_warning
)
3488 h
= (struct aout_link_hash_entry
*) h
->root
.u
.i
.link
;
3489 if (h
->root
.type
== bfd_link_hash_new
)
3493 output_bfd
= finfo
->output_bfd
;
3495 if (aout_backend_info (output_bfd
)->write_dynamic_symbol
!= NULL
)
3497 if (! ((*aout_backend_info (output_bfd
)->write_dynamic_symbol
)
3498 (output_bfd
, finfo
->info
, h
)))
3500 /* FIXME: No way to handle errors. */
3510 /* An indx of -2 means the symbol must be written. */
3512 && (finfo
->info
->strip
== strip_all
3513 || (finfo
->info
->strip
== strip_some
3514 && bfd_hash_lookup (finfo
->info
->keep_hash
, h
->root
.root
.string
,
3515 FALSE
, FALSE
) == NULL
)))
3518 switch (h
->root
.type
)
3521 case bfd_link_hash_warning
:
3523 /* Avoid variable not initialized warnings. */
3525 case bfd_link_hash_new
:
3526 /* This can happen for set symbols when sets are not being
3529 case bfd_link_hash_undefined
:
3530 type
= N_UNDF
| N_EXT
;
3533 case bfd_link_hash_defined
:
3534 case bfd_link_hash_defweak
:
3538 sec
= h
->root
.u
.def
.section
->output_section
;
3539 BFD_ASSERT (bfd_is_abs_section (sec
)
3540 || sec
->owner
== output_bfd
);
3541 if (sec
== obj_textsec (output_bfd
))
3542 type
= h
->root
.type
== bfd_link_hash_defined
? N_TEXT
: N_WEAKT
;
3543 else if (sec
== obj_datasec (output_bfd
))
3544 type
= h
->root
.type
== bfd_link_hash_defined
? N_DATA
: N_WEAKD
;
3545 else if (sec
== obj_bsssec (output_bfd
))
3546 type
= h
->root
.type
== bfd_link_hash_defined
? N_BSS
: N_WEAKB
;
3548 type
= h
->root
.type
== bfd_link_hash_defined
? N_ABS
: N_WEAKA
;
3550 val
= (h
->root
.u
.def
.value
3552 + h
->root
.u
.def
.section
->output_offset
);
3555 case bfd_link_hash_common
:
3556 type
= N_UNDF
| N_EXT
;
3557 val
= h
->root
.u
.c
.size
;
3559 case bfd_link_hash_undefweak
:
3562 case bfd_link_hash_indirect
:
3563 /* We ignore these symbols, since the indirected symbol is
3564 already in the hash table. */
3568 H_PUT_8 (output_bfd
, type
, outsym
.e_type
);
3569 H_PUT_8 (output_bfd
, 0, outsym
.e_other
);
3570 H_PUT_16 (output_bfd
, 0, outsym
.e_desc
);
3571 indx
= add_to_stringtab (output_bfd
, finfo
->strtab
, h
->root
.root
.string
,
3573 if (indx
== - (bfd_size_type
) 1)
3574 /* FIXME: No way to handle errors. */
3577 PUT_WORD (output_bfd
, indx
, outsym
.e_strx
);
3578 PUT_WORD (output_bfd
, val
, outsym
.e_value
);
3580 amt
= EXTERNAL_NLIST_SIZE
;
3581 if (bfd_seek (output_bfd
, finfo
->symoff
, SEEK_SET
) != 0
3582 || bfd_bwrite ((void *) &outsym
, amt
, output_bfd
) != amt
)
3583 /* FIXME: No way to handle errors. */
3586 finfo
->symoff
+= EXTERNAL_NLIST_SIZE
;
3587 h
->indx
= obj_aout_external_sym_count (output_bfd
);
3588 ++obj_aout_external_sym_count (output_bfd
);
3593 /* Handle a link order which is supposed to generate a reloc. */
3596 aout_link_reloc_link_order (struct aout_final_link_info
*finfo
,
3598 struct bfd_link_order
*p
)
3600 struct bfd_link_order_reloc
*pr
;
3603 reloc_howto_type
*howto
;
3604 file_ptr
*reloff_ptr
= NULL
;
3605 struct reloc_std_external srel
;
3606 struct reloc_ext_external erel
;
3612 if (p
->type
== bfd_section_reloc_link_order
)
3615 if (bfd_is_abs_section (pr
->u
.section
))
3616 r_index
= N_ABS
| N_EXT
;
3619 BFD_ASSERT (pr
->u
.section
->owner
== finfo
->output_bfd
);
3620 r_index
= pr
->u
.section
->target_index
;
3625 struct aout_link_hash_entry
*h
;
3627 BFD_ASSERT (p
->type
== bfd_symbol_reloc_link_order
);
3629 h
= ((struct aout_link_hash_entry
*)
3630 bfd_wrapped_link_hash_lookup (finfo
->output_bfd
, finfo
->info
,
3631 pr
->u
.name
, FALSE
, FALSE
, TRUE
));
3637 /* We decided to strip this symbol, but it turns out that we
3638 can't. Note that we lose the other and desc information
3639 here. I don't think that will ever matter for a global
3643 if (! aout_link_write_other_symbol (h
, (void *) finfo
))
3649 if (! ((*finfo
->info
->callbacks
->unattached_reloc
)
3650 (finfo
->info
, pr
->u
.name
, NULL
, NULL
, (bfd_vma
) 0)))
3656 howto
= bfd_reloc_type_lookup (finfo
->output_bfd
, pr
->reloc
);
3659 bfd_set_error (bfd_error_bad_value
);
3663 if (o
== obj_textsec (finfo
->output_bfd
))
3664 reloff_ptr
= &finfo
->treloff
;
3665 else if (o
== obj_datasec (finfo
->output_bfd
))
3666 reloff_ptr
= &finfo
->dreloff
;
3670 if (obj_reloc_entry_size (finfo
->output_bfd
) == RELOC_STD_SIZE
)
3673 MY_put_reloc (finfo
->output_bfd
, r_extern
, r_index
, p
->offset
, howto
,
3683 r_pcrel
= (int) howto
->pc_relative
;
3684 r_baserel
= (howto
->type
& 8) != 0;
3685 r_jmptable
= (howto
->type
& 16) != 0;
3686 r_relative
= (howto
->type
& 32) != 0;
3687 r_length
= howto
->size
;
3689 PUT_WORD (finfo
->output_bfd
, p
->offset
, srel
.r_address
);
3690 if (bfd_header_big_endian (finfo
->output_bfd
))
3692 srel
.r_index
[0] = r_index
>> 16;
3693 srel
.r_index
[1] = r_index
>> 8;
3694 srel
.r_index
[2] = r_index
;
3696 ((r_extern
? RELOC_STD_BITS_EXTERN_BIG
: 0)
3697 | (r_pcrel
? RELOC_STD_BITS_PCREL_BIG
: 0)
3698 | (r_baserel
? RELOC_STD_BITS_BASEREL_BIG
: 0)
3699 | (r_jmptable
? RELOC_STD_BITS_JMPTABLE_BIG
: 0)
3700 | (r_relative
? RELOC_STD_BITS_RELATIVE_BIG
: 0)
3701 | (r_length
<< RELOC_STD_BITS_LENGTH_SH_BIG
));
3705 srel
.r_index
[2] = r_index
>> 16;
3706 srel
.r_index
[1] = r_index
>> 8;
3707 srel
.r_index
[0] = r_index
;
3709 ((r_extern
? RELOC_STD_BITS_EXTERN_LITTLE
: 0)
3710 | (r_pcrel
? RELOC_STD_BITS_PCREL_LITTLE
: 0)
3711 | (r_baserel
? RELOC_STD_BITS_BASEREL_LITTLE
: 0)
3712 | (r_jmptable
? RELOC_STD_BITS_JMPTABLE_LITTLE
: 0)
3713 | (r_relative
? RELOC_STD_BITS_RELATIVE_LITTLE
: 0)
3714 | (r_length
<< RELOC_STD_BITS_LENGTH_SH_LITTLE
));
3718 rel_ptr
= (void *) &srel
;
3720 /* We have to write the addend into the object file, since
3721 standard a.out relocs are in place. It would be more
3722 reliable if we had the current contents of the file here,
3723 rather than assuming zeroes, but we can't read the file since
3724 it was opened using bfd_openw. */
3725 if (pr
->addend
!= 0)
3728 bfd_reloc_status_type r
;
3732 size
= bfd_get_reloc_size (howto
);
3733 buf
= bfd_zmalloc (size
);
3736 r
= MY_relocate_contents (howto
, finfo
->output_bfd
,
3737 (bfd_vma
) pr
->addend
, buf
);
3743 case bfd_reloc_outofrange
:
3745 case bfd_reloc_overflow
:
3746 if (! ((*finfo
->info
->callbacks
->reloc_overflow
)
3748 (p
->type
== bfd_section_reloc_link_order
3749 ? bfd_section_name (finfo
->output_bfd
,
3752 howto
->name
, pr
->addend
, NULL
, NULL
, (bfd_vma
) 0)))
3759 ok
= bfd_set_section_contents (finfo
->output_bfd
, o
, (void *) buf
,
3760 (file_ptr
) p
->offset
, size
);
3768 #ifdef MY_put_ext_reloc
3769 MY_put_ext_reloc (finfo
->output_bfd
, r_extern
, r_index
, p
->offset
,
3770 howto
, &erel
, pr
->addend
);
3772 PUT_WORD (finfo
->output_bfd
, p
->offset
, erel
.r_address
);
3774 if (bfd_header_big_endian (finfo
->output_bfd
))
3776 erel
.r_index
[0] = r_index
>> 16;
3777 erel
.r_index
[1] = r_index
>> 8;
3778 erel
.r_index
[2] = r_index
;
3780 ((r_extern
? RELOC_EXT_BITS_EXTERN_BIG
: 0)
3781 | (howto
->type
<< RELOC_EXT_BITS_TYPE_SH_BIG
));
3785 erel
.r_index
[2] = r_index
>> 16;
3786 erel
.r_index
[1] = r_index
>> 8;
3787 erel
.r_index
[0] = r_index
;
3789 (r_extern
? RELOC_EXT_BITS_EXTERN_LITTLE
: 0)
3790 | (howto
->type
<< RELOC_EXT_BITS_TYPE_SH_LITTLE
);
3793 PUT_WORD (finfo
->output_bfd
, (bfd_vma
) pr
->addend
, erel
.r_addend
);
3794 #endif /* MY_put_ext_reloc */
3796 rel_ptr
= (void *) &erel
;
3799 amt
= obj_reloc_entry_size (finfo
->output_bfd
);
3800 if (bfd_seek (finfo
->output_bfd
, *reloff_ptr
, SEEK_SET
) != 0
3801 || bfd_bwrite (rel_ptr
, amt
, finfo
->output_bfd
) != amt
)
3804 *reloff_ptr
+= obj_reloc_entry_size (finfo
->output_bfd
);
3806 /* Assert that the relocs have not run into the symbols, and that n
3807 the text relocs have not run into the data relocs. */
3808 BFD_ASSERT (*reloff_ptr
<= obj_sym_filepos (finfo
->output_bfd
)
3809 && (reloff_ptr
!= &finfo
->treloff
3811 <= obj_datasec (finfo
->output_bfd
)->rel_filepos
)));
3816 /* Get the section corresponding to a reloc index. */
3818 static INLINE asection
*
3819 aout_reloc_index_to_section (bfd
*abfd
, int indx
)
3821 switch (indx
& N_TYPE
)
3823 case N_TEXT
: return obj_textsec (abfd
);
3824 case N_DATA
: return obj_datasec (abfd
);
3825 case N_BSS
: return obj_bsssec (abfd
);
3827 case N_UNDF
: return bfd_abs_section_ptr
;
3833 /* Relocate an a.out section using standard a.out relocs. */
3836 aout_link_input_section_std (struct aout_final_link_info
*finfo
,
3838 asection
*input_section
,
3839 struct reloc_std_external
*relocs
,
3840 bfd_size_type rel_size
,
3843 bfd_boolean (*check_dynamic_reloc
)
3844 (struct bfd_link_info
*, bfd
*, asection
*,
3845 struct aout_link_hash_entry
*, void *, bfd_byte
*, bfd_boolean
*,
3848 bfd_boolean relocatable
;
3849 struct external_nlist
*syms
;
3851 struct aout_link_hash_entry
**sym_hashes
;
3853 bfd_size_type reloc_count
;
3854 struct reloc_std_external
*rel
;
3855 struct reloc_std_external
*rel_end
;
3857 output_bfd
= finfo
->output_bfd
;
3858 check_dynamic_reloc
= aout_backend_info (output_bfd
)->check_dynamic_reloc
;
3860 BFD_ASSERT (obj_reloc_entry_size (input_bfd
) == RELOC_STD_SIZE
);
3861 BFD_ASSERT (input_bfd
->xvec
->header_byteorder
3862 == output_bfd
->xvec
->header_byteorder
);
3864 relocatable
= finfo
->info
->relocatable
;
3865 syms
= obj_aout_external_syms (input_bfd
);
3866 strings
= obj_aout_external_strings (input_bfd
);
3867 sym_hashes
= obj_aout_sym_hashes (input_bfd
);
3868 symbol_map
= finfo
->symbol_map
;
3870 reloc_count
= rel_size
/ RELOC_STD_SIZE
;
3872 rel_end
= rel
+ reloc_count
;
3873 for (; rel
< rel_end
; rel
++)
3880 reloc_howto_type
*howto
;
3881 struct aout_link_hash_entry
*h
= NULL
;
3883 bfd_reloc_status_type r
;
3885 r_addr
= GET_SWORD (input_bfd
, rel
->r_address
);
3887 #ifdef MY_reloc_howto
3888 howto
= MY_reloc_howto (input_bfd
, rel
, r_index
, r_extern
, r_pcrel
);
3894 unsigned int howto_idx
;
3896 if (bfd_header_big_endian (input_bfd
))
3898 r_index
= (((unsigned int) rel
->r_index
[0] << 16)
3899 | ((unsigned int) rel
->r_index
[1] << 8)
3901 r_extern
= (0 != (rel
->r_type
[0] & RELOC_STD_BITS_EXTERN_BIG
));
3902 r_pcrel
= (0 != (rel
->r_type
[0] & RELOC_STD_BITS_PCREL_BIG
));
3903 r_baserel
= (0 != (rel
->r_type
[0] & RELOC_STD_BITS_BASEREL_BIG
));
3904 r_jmptable
= (0 != (rel
->r_type
[0] & RELOC_STD_BITS_JMPTABLE_BIG
));
3905 r_relative
= (0 != (rel
->r_type
[0] & RELOC_STD_BITS_RELATIVE_BIG
));
3906 r_length
= ((rel
->r_type
[0] & RELOC_STD_BITS_LENGTH_BIG
)
3907 >> RELOC_STD_BITS_LENGTH_SH_BIG
);
3911 r_index
= (((unsigned int) rel
->r_index
[2] << 16)
3912 | ((unsigned int) rel
->r_index
[1] << 8)
3914 r_extern
= (0 != (rel
->r_type
[0] & RELOC_STD_BITS_EXTERN_LITTLE
));
3915 r_pcrel
= (0 != (rel
->r_type
[0] & RELOC_STD_BITS_PCREL_LITTLE
));
3916 r_baserel
= (0 != (rel
->r_type
[0]
3917 & RELOC_STD_BITS_BASEREL_LITTLE
));
3918 r_jmptable
= (0 != (rel
->r_type
[0]
3919 & RELOC_STD_BITS_JMPTABLE_LITTLE
));
3920 r_relative
= (0 != (rel
->r_type
[0]
3921 & RELOC_STD_BITS_RELATIVE_LITTLE
));
3922 r_length
= ((rel
->r_type
[0] & RELOC_STD_BITS_LENGTH_LITTLE
)
3923 >> RELOC_STD_BITS_LENGTH_SH_LITTLE
);
3926 howto_idx
= (r_length
+ 4 * r_pcrel
+ 8 * r_baserel
3927 + 16 * r_jmptable
+ 32 * r_relative
);
3928 BFD_ASSERT (howto_idx
< TABLE_SIZE (howto_table_std
));
3929 howto
= howto_table_std
+ howto_idx
;
3935 /* We are generating a relocatable output file, and must
3936 modify the reloc accordingly. */
3939 /* If we know the symbol this relocation is against,
3940 convert it into a relocation against a section. This
3941 is what the native linker does. */
3942 h
= sym_hashes
[r_index
];
3944 && (h
->root
.type
== bfd_link_hash_defined
3945 || h
->root
.type
== bfd_link_hash_defweak
))
3947 asection
*output_section
;
3949 /* Change the r_extern value. */
3950 if (bfd_header_big_endian (output_bfd
))
3951 rel
->r_type
[0] &=~ RELOC_STD_BITS_EXTERN_BIG
;
3953 rel
->r_type
[0] &=~ RELOC_STD_BITS_EXTERN_LITTLE
;
3955 /* Compute a new r_index. */
3956 output_section
= h
->root
.u
.def
.section
->output_section
;
3957 if (output_section
== obj_textsec (output_bfd
))
3959 else if (output_section
== obj_datasec (output_bfd
))
3961 else if (output_section
== obj_bsssec (output_bfd
))
3966 /* Add the symbol value and the section VMA to the
3967 addend stored in the contents. */
3968 relocation
= (h
->root
.u
.def
.value
3969 + output_section
->vma
3970 + h
->root
.u
.def
.section
->output_offset
);
3974 /* We must change r_index according to the symbol
3976 r_index
= symbol_map
[r_index
];
3982 /* We decided to strip this symbol, but it
3983 turns out that we can't. Note that we
3984 lose the other and desc information here.
3985 I don't think that will ever matter for a
3991 if (! aout_link_write_other_symbol (h
,
4001 name
= strings
+ GET_WORD (input_bfd
,
4002 syms
[r_index
].e_strx
);
4003 if (! ((*finfo
->info
->callbacks
->unattached_reloc
)
4004 (finfo
->info
, name
, input_bfd
, input_section
,
4014 /* Write out the new r_index value. */
4015 if (bfd_header_big_endian (output_bfd
))
4017 rel
->r_index
[0] = r_index
>> 16;
4018 rel
->r_index
[1] = r_index
>> 8;
4019 rel
->r_index
[2] = r_index
;
4023 rel
->r_index
[2] = r_index
>> 16;
4024 rel
->r_index
[1] = r_index
>> 8;
4025 rel
->r_index
[0] = r_index
;
4032 /* This is a relocation against a section. We must
4033 adjust by the amount that the section moved. */
4034 section
= aout_reloc_index_to_section (input_bfd
, r_index
);
4035 relocation
= (section
->output_section
->vma
4036 + section
->output_offset
4040 /* Change the address of the relocation. */
4041 PUT_WORD (output_bfd
,
4042 r_addr
+ input_section
->output_offset
,
4045 /* Adjust a PC relative relocation by removing the reference
4046 to the original address in the section and including the
4047 reference to the new address. */
4049 relocation
-= (input_section
->output_section
->vma
4050 + input_section
->output_offset
4051 - input_section
->vma
);
4053 #ifdef MY_relocatable_reloc
4054 MY_relocatable_reloc (howto
, output_bfd
, rel
, relocation
, r_addr
);
4057 if (relocation
== 0)
4060 r
= MY_relocate_contents (howto
,
4061 input_bfd
, relocation
,
4068 /* We are generating an executable, and must do a full
4074 h
= sym_hashes
[r_index
];
4077 && (h
->root
.type
== bfd_link_hash_defined
4078 || h
->root
.type
== bfd_link_hash_defweak
))
4080 relocation
= (h
->root
.u
.def
.value
4081 + h
->root
.u
.def
.section
->output_section
->vma
4082 + h
->root
.u
.def
.section
->output_offset
);
4085 && h
->root
.type
== bfd_link_hash_undefweak
)
4097 section
= aout_reloc_index_to_section (input_bfd
, r_index
);
4098 relocation
= (section
->output_section
->vma
4099 + section
->output_offset
4102 relocation
+= input_section
->vma
;
4105 if (check_dynamic_reloc
!= NULL
)
4109 if (! ((*check_dynamic_reloc
)
4110 (finfo
->info
, input_bfd
, input_section
, h
,
4111 (void *) rel
, contents
, &skip
, &relocation
)))
4117 /* Now warn if a global symbol is undefined. We could not
4118 do this earlier, because check_dynamic_reloc might want
4119 to skip this reloc. */
4120 if (hundef
&& ! finfo
->info
->shared
&& ! r_baserel
)
4125 name
= h
->root
.root
.string
;
4127 name
= strings
+ GET_WORD (input_bfd
, syms
[r_index
].e_strx
);
4128 if (! ((*finfo
->info
->callbacks
->undefined_symbol
)
4129 (finfo
->info
, name
, input_bfd
, input_section
,
4134 r
= MY_final_link_relocate (howto
,
4135 input_bfd
, input_section
,
4136 contents
, r_addr
, relocation
,
4140 if (r
!= bfd_reloc_ok
)
4145 case bfd_reloc_outofrange
:
4147 case bfd_reloc_overflow
:
4154 name
= strings
+ GET_WORD (input_bfd
,
4155 syms
[r_index
].e_strx
);
4160 s
= aout_reloc_index_to_section (input_bfd
, r_index
);
4161 name
= bfd_section_name (input_bfd
, s
);
4163 if (! ((*finfo
->info
->callbacks
->reloc_overflow
)
4164 (finfo
->info
, (h
? &h
->root
: NULL
), name
,
4165 howto
->name
, (bfd_vma
) 0, input_bfd
,
4166 input_section
, r_addr
)))
4177 /* Relocate an a.out section using extended a.out relocs. */
4180 aout_link_input_section_ext (struct aout_final_link_info
*finfo
,
4182 asection
*input_section
,
4183 struct reloc_ext_external
*relocs
,
4184 bfd_size_type rel_size
,
4187 bfd_boolean (*check_dynamic_reloc
)
4188 (struct bfd_link_info
*, bfd
*, asection
*,
4189 struct aout_link_hash_entry
*, void *, bfd_byte
*, bfd_boolean
*,
4192 bfd_boolean relocatable
;
4193 struct external_nlist
*syms
;
4195 struct aout_link_hash_entry
**sym_hashes
;
4197 bfd_size_type reloc_count
;
4198 struct reloc_ext_external
*rel
;
4199 struct reloc_ext_external
*rel_end
;
4201 output_bfd
= finfo
->output_bfd
;
4202 check_dynamic_reloc
= aout_backend_info (output_bfd
)->check_dynamic_reloc
;
4204 BFD_ASSERT (obj_reloc_entry_size (input_bfd
) == RELOC_EXT_SIZE
);
4205 BFD_ASSERT (input_bfd
->xvec
->header_byteorder
4206 == output_bfd
->xvec
->header_byteorder
);
4208 relocatable
= finfo
->info
->relocatable
;
4209 syms
= obj_aout_external_syms (input_bfd
);
4210 strings
= obj_aout_external_strings (input_bfd
);
4211 sym_hashes
= obj_aout_sym_hashes (input_bfd
);
4212 symbol_map
= finfo
->symbol_map
;
4214 reloc_count
= rel_size
/ RELOC_EXT_SIZE
;
4216 rel_end
= rel
+ reloc_count
;
4217 for (; rel
< rel_end
; rel
++)
4222 unsigned int r_type
;
4224 struct aout_link_hash_entry
*h
= NULL
;
4225 asection
*r_section
= NULL
;
4228 r_addr
= GET_SWORD (input_bfd
, rel
->r_address
);
4230 if (bfd_header_big_endian (input_bfd
))
4232 r_index
= (((unsigned int) rel
->r_index
[0] << 16)
4233 | ((unsigned int) rel
->r_index
[1] << 8)
4235 r_extern
= (0 != (rel
->r_type
[0] & RELOC_EXT_BITS_EXTERN_BIG
));
4236 r_type
= ((rel
->r_type
[0] & RELOC_EXT_BITS_TYPE_BIG
)
4237 >> RELOC_EXT_BITS_TYPE_SH_BIG
);
4241 r_index
= (((unsigned int) rel
->r_index
[2] << 16)
4242 | ((unsigned int) rel
->r_index
[1] << 8)
4244 r_extern
= (0 != (rel
->r_type
[0] & RELOC_EXT_BITS_EXTERN_LITTLE
));
4245 r_type
= ((rel
->r_type
[0] & RELOC_EXT_BITS_TYPE_LITTLE
)
4246 >> RELOC_EXT_BITS_TYPE_SH_LITTLE
);
4249 r_addend
= GET_SWORD (input_bfd
, rel
->r_addend
);
4251 BFD_ASSERT (r_type
< TABLE_SIZE (howto_table_ext
));
4255 /* We are generating a relocatable output file, and must
4256 modify the reloc accordingly. */
4258 || r_type
== (unsigned int) RELOC_BASE10
4259 || r_type
== (unsigned int) RELOC_BASE13
4260 || r_type
== (unsigned int) RELOC_BASE22
)
4262 /* If we know the symbol this relocation is against,
4263 convert it into a relocation against a section. This
4264 is what the native linker does. */
4265 if (r_type
== (unsigned int) RELOC_BASE10
4266 || r_type
== (unsigned int) RELOC_BASE13
4267 || r_type
== (unsigned int) RELOC_BASE22
)
4270 h
= sym_hashes
[r_index
];
4272 && (h
->root
.type
== bfd_link_hash_defined
4273 || h
->root
.type
== bfd_link_hash_defweak
))
4275 asection
*output_section
;
4277 /* Change the r_extern value. */
4278 if (bfd_header_big_endian (output_bfd
))
4279 rel
->r_type
[0] &=~ RELOC_EXT_BITS_EXTERN_BIG
;
4281 rel
->r_type
[0] &=~ RELOC_EXT_BITS_EXTERN_LITTLE
;
4283 /* Compute a new r_index. */
4284 output_section
= h
->root
.u
.def
.section
->output_section
;
4285 if (output_section
== obj_textsec (output_bfd
))
4287 else if (output_section
== obj_datasec (output_bfd
))
4289 else if (output_section
== obj_bsssec (output_bfd
))
4294 /* Add the symbol value and the section VMA to the
4296 relocation
= (h
->root
.u
.def
.value
4297 + output_section
->vma
4298 + h
->root
.u
.def
.section
->output_offset
);
4300 /* Now RELOCATION is the VMA of the final
4301 destination. If this is a PC relative reloc,
4302 then ADDEND is the negative of the source VMA.
4303 We want to set ADDEND to the difference between
4304 the destination VMA and the source VMA, which
4305 means we must adjust RELOCATION by the change in
4306 the source VMA. This is done below. */
4310 /* We must change r_index according to the symbol
4312 r_index
= symbol_map
[r_index
];
4318 /* We decided to strip this symbol, but it
4319 turns out that we can't. Note that we
4320 lose the other and desc information here.
4321 I don't think that will ever matter for a
4327 if (! aout_link_write_other_symbol (h
,
4337 name
= strings
+ GET_WORD (input_bfd
,
4338 syms
[r_index
].e_strx
);
4339 if (! ((*finfo
->info
->callbacks
->unattached_reloc
)
4340 (finfo
->info
, name
, input_bfd
, input_section
,
4349 /* If this is a PC relative reloc, then the addend
4350 is the negative of the source VMA. We must
4351 adjust it by the change in the source VMA. This
4355 /* Write out the new r_index value. */
4356 if (bfd_header_big_endian (output_bfd
))
4358 rel
->r_index
[0] = r_index
>> 16;
4359 rel
->r_index
[1] = r_index
>> 8;
4360 rel
->r_index
[2] = r_index
;
4364 rel
->r_index
[2] = r_index
>> 16;
4365 rel
->r_index
[1] = r_index
>> 8;
4366 rel
->r_index
[0] = r_index
;
4371 /* This is a relocation against a section. We must
4372 adjust by the amount that the section moved. */
4373 r_section
= aout_reloc_index_to_section (input_bfd
, r_index
);
4374 relocation
= (r_section
->output_section
->vma
4375 + r_section
->output_offset
4378 /* If this is a PC relative reloc, then the addend is
4379 the difference in VMA between the destination and the
4380 source. We have just adjusted for the change in VMA
4381 of the destination, so we must also adjust by the
4382 change in VMA of the source. This is done below. */
4385 /* As described above, we must always adjust a PC relative
4386 reloc by the change in VMA of the source. However, if
4387 pcrel_offset is set, then the addend does not include the
4388 location within the section, in which case we don't need
4389 to adjust anything. */
4390 if (howto_table_ext
[r_type
].pc_relative
4391 && ! howto_table_ext
[r_type
].pcrel_offset
)
4392 relocation
-= (input_section
->output_section
->vma
4393 + input_section
->output_offset
4394 - input_section
->vma
);
4396 /* Change the addend if necessary. */
4397 if (relocation
!= 0)
4398 PUT_WORD (output_bfd
, r_addend
+ relocation
, rel
->r_addend
);
4400 /* Change the address of the relocation. */
4401 PUT_WORD (output_bfd
,
4402 r_addr
+ input_section
->output_offset
,
4408 bfd_reloc_status_type r
;
4410 /* We are generating an executable, and must do a full
4416 h
= sym_hashes
[r_index
];
4419 && (h
->root
.type
== bfd_link_hash_defined
4420 || h
->root
.type
== bfd_link_hash_defweak
))
4422 relocation
= (h
->root
.u
.def
.value
4423 + h
->root
.u
.def
.section
->output_section
->vma
4424 + h
->root
.u
.def
.section
->output_offset
);
4427 && h
->root
.type
== bfd_link_hash_undefweak
)
4435 else if (r_type
== (unsigned int) RELOC_BASE10
4436 || r_type
== (unsigned int) RELOC_BASE13
4437 || r_type
== (unsigned int) RELOC_BASE22
)
4439 struct external_nlist
*sym
;
4442 /* For base relative relocs, r_index is always an index
4443 into the symbol table, even if r_extern is 0. */
4444 sym
= syms
+ r_index
;
4445 type
= H_GET_8 (input_bfd
, sym
->e_type
);
4446 if ((type
& N_TYPE
) == N_TEXT
4448 r_section
= obj_textsec (input_bfd
);
4449 else if ((type
& N_TYPE
) == N_DATA
4451 r_section
= obj_datasec (input_bfd
);
4452 else if ((type
& N_TYPE
) == N_BSS
4454 r_section
= obj_bsssec (input_bfd
);
4455 else if ((type
& N_TYPE
) == N_ABS
4457 r_section
= bfd_abs_section_ptr
;
4460 relocation
= (r_section
->output_section
->vma
4461 + r_section
->output_offset
4462 + (GET_WORD (input_bfd
, sym
->e_value
)
4467 r_section
= aout_reloc_index_to_section (input_bfd
, r_index
);
4469 /* If this is a PC relative reloc, then R_ADDEND is the
4470 difference between the two vmas, or
4471 old_dest_sec + old_dest_off - (old_src_sec + old_src_off)
4473 old_dest_sec == section->vma
4475 old_src_sec == input_section->vma
4477 old_src_off == r_addr
4479 _bfd_final_link_relocate expects RELOCATION +
4480 R_ADDEND to be the VMA of the destination minus
4481 r_addr (the minus r_addr is because this relocation
4482 is not pcrel_offset, which is a bit confusing and
4483 should, perhaps, be changed), or
4486 new_dest_sec == output_section->vma + output_offset
4487 We arrange for this to happen by setting RELOCATION to
4488 new_dest_sec + old_src_sec - old_dest_sec
4490 If this is not a PC relative reloc, then R_ADDEND is
4491 simply the VMA of the destination, so we set
4492 RELOCATION to the change in the destination VMA, or
4493 new_dest_sec - old_dest_sec
4495 relocation
= (r_section
->output_section
->vma
4496 + r_section
->output_offset
4498 if (howto_table_ext
[r_type
].pc_relative
)
4499 relocation
+= input_section
->vma
;
4502 if (check_dynamic_reloc
!= NULL
)
4506 if (! ((*check_dynamic_reloc
)
4507 (finfo
->info
, input_bfd
, input_section
, h
,
4508 (void *) rel
, contents
, &skip
, &relocation
)))
4514 /* Now warn if a global symbol is undefined. We could not
4515 do this earlier, because check_dynamic_reloc might want
4516 to skip this reloc. */
4518 && ! finfo
->info
->shared
4519 && r_type
!= (unsigned int) RELOC_BASE10
4520 && r_type
!= (unsigned int) RELOC_BASE13
4521 && r_type
!= (unsigned int) RELOC_BASE22
)
4526 name
= h
->root
.root
.string
;
4528 name
= strings
+ GET_WORD (input_bfd
, syms
[r_index
].e_strx
);
4529 if (! ((*finfo
->info
->callbacks
->undefined_symbol
)
4530 (finfo
->info
, name
, input_bfd
, input_section
,
4535 if (r_type
!= (unsigned int) RELOC_SPARC_REV32
)
4536 r
= MY_final_link_relocate (howto_table_ext
+ r_type
,
4537 input_bfd
, input_section
,
4538 contents
, r_addr
, relocation
,
4544 x
= bfd_get_32 (input_bfd
, contents
+ r_addr
);
4545 x
= x
+ relocation
+ r_addend
;
4546 bfd_putl32 (/*input_bfd,*/ x
, contents
+ r_addr
);
4550 if (r
!= bfd_reloc_ok
)
4555 case bfd_reloc_outofrange
:
4557 case bfd_reloc_overflow
:
4564 || r_type
== (unsigned int) RELOC_BASE10
4565 || r_type
== (unsigned int) RELOC_BASE13
4566 || r_type
== (unsigned int) RELOC_BASE22
)
4567 name
= strings
+ GET_WORD (input_bfd
,
4568 syms
[r_index
].e_strx
);
4573 s
= aout_reloc_index_to_section (input_bfd
, r_index
);
4574 name
= bfd_section_name (input_bfd
, s
);
4576 if (! ((*finfo
->info
->callbacks
->reloc_overflow
)
4577 (finfo
->info
, (h
? &h
->root
: NULL
), name
,
4578 howto_table_ext
[r_type
].name
,
4579 r_addend
, input_bfd
, input_section
, r_addr
)))
4591 /* Link an a.out section into the output file. */
4594 aout_link_input_section (struct aout_final_link_info
*finfo
,
4596 asection
*input_section
,
4597 file_ptr
*reloff_ptr
,
4598 bfd_size_type rel_size
)
4600 bfd_size_type input_size
;
4603 /* Get the section contents. */
4604 input_size
= input_section
->size
;
4605 if (! bfd_get_section_contents (input_bfd
, input_section
,
4606 (void *) finfo
->contents
,
4607 (file_ptr
) 0, input_size
))
4610 /* Read in the relocs if we haven't already done it. */
4611 if (aout_section_data (input_section
) != NULL
4612 && aout_section_data (input_section
)->relocs
!= NULL
)
4613 relocs
= aout_section_data (input_section
)->relocs
;
4616 relocs
= finfo
->relocs
;
4619 if (bfd_seek (input_bfd
, input_section
->rel_filepos
, SEEK_SET
) != 0
4620 || bfd_bread (relocs
, rel_size
, input_bfd
) != rel_size
)
4625 /* Relocate the section contents. */
4626 if (obj_reloc_entry_size (input_bfd
) == RELOC_STD_SIZE
)
4628 if (! aout_link_input_section_std (finfo
, input_bfd
, input_section
,
4629 (struct reloc_std_external
*) relocs
,
4630 rel_size
, finfo
->contents
))
4635 if (! aout_link_input_section_ext (finfo
, input_bfd
, input_section
,
4636 (struct reloc_ext_external
*) relocs
,
4637 rel_size
, finfo
->contents
))
4641 /* Write out the section contents. */
4642 if (! bfd_set_section_contents (finfo
->output_bfd
,
4643 input_section
->output_section
,
4644 (void *) finfo
->contents
,
4645 (file_ptr
) input_section
->output_offset
,
4649 /* If we are producing relocatable output, the relocs were
4650 modified, and we now write them out. */
4651 if (finfo
->info
->relocatable
&& rel_size
> 0)
4653 if (bfd_seek (finfo
->output_bfd
, *reloff_ptr
, SEEK_SET
) != 0)
4655 if (bfd_bwrite (relocs
, rel_size
, finfo
->output_bfd
) != rel_size
)
4657 *reloff_ptr
+= rel_size
;
4659 /* Assert that the relocs have not run into the symbols, and
4660 that if these are the text relocs they have not run into the
4662 BFD_ASSERT (*reloff_ptr
<= obj_sym_filepos (finfo
->output_bfd
)
4663 && (reloff_ptr
!= &finfo
->treloff
4665 <= obj_datasec (finfo
->output_bfd
)->rel_filepos
)));
4671 /* Adjust and write out the symbols for an a.out file. Set the new
4672 symbol indices into a symbol_map. */
4675 aout_link_write_symbols (struct aout_final_link_info
*finfo
, bfd
*input_bfd
)
4678 bfd_size_type sym_count
;
4680 enum bfd_link_strip strip
;
4681 enum bfd_link_discard discard
;
4682 struct external_nlist
*outsym
;
4683 bfd_size_type strtab_index
;
4684 struct external_nlist
*sym
;
4685 struct external_nlist
*sym_end
;
4686 struct aout_link_hash_entry
**sym_hash
;
4689 bfd_boolean skip_next
;
4691 output_bfd
= finfo
->output_bfd
;
4692 sym_count
= obj_aout_external_sym_count (input_bfd
);
4693 strings
= obj_aout_external_strings (input_bfd
);
4694 strip
= finfo
->info
->strip
;
4695 discard
= finfo
->info
->discard
;
4696 outsym
= finfo
->output_syms
;
4698 /* First write out a symbol for this object file, unless we are
4699 discarding such symbols. */
4700 if (strip
!= strip_all
4701 && (strip
!= strip_some
4702 || bfd_hash_lookup (finfo
->info
->keep_hash
, input_bfd
->filename
,
4703 FALSE
, FALSE
) != NULL
)
4704 && discard
!= discard_all
)
4706 H_PUT_8 (output_bfd
, N_TEXT
, outsym
->e_type
);
4707 H_PUT_8 (output_bfd
, 0, outsym
->e_other
);
4708 H_PUT_16 (output_bfd
, 0, outsym
->e_desc
);
4709 strtab_index
= add_to_stringtab (output_bfd
, finfo
->strtab
,
4710 input_bfd
->filename
, FALSE
);
4711 if (strtab_index
== (bfd_size_type
) -1)
4713 PUT_WORD (output_bfd
, strtab_index
, outsym
->e_strx
);
4714 PUT_WORD (output_bfd
,
4715 (bfd_get_section_vma (output_bfd
,
4716 obj_textsec (input_bfd
)->output_section
)
4717 + obj_textsec (input_bfd
)->output_offset
),
4719 ++obj_aout_external_sym_count (output_bfd
);
4725 sym
= obj_aout_external_syms (input_bfd
);
4726 sym_end
= sym
+ sym_count
;
4727 sym_hash
= obj_aout_sym_hashes (input_bfd
);
4728 symbol_map
= finfo
->symbol_map
;
4729 memset (symbol_map
, 0, (size_t) sym_count
* sizeof *symbol_map
);
4730 for (; sym
< sym_end
; sym
++, sym_hash
++, symbol_map
++)
4734 struct aout_link_hash_entry
*h
;
4740 /* We set *symbol_map to 0 above for all symbols. If it has
4741 already been set to -1 for this symbol, it means that we are
4742 discarding it because it appears in a duplicate header file.
4743 See the N_BINCL code below. */
4744 if (*symbol_map
== -1)
4747 /* Initialize *symbol_map to -1, which means that the symbol was
4748 not copied into the output file. We will change it later if
4749 we do copy the symbol over. */
4752 type
= H_GET_8 (input_bfd
, sym
->e_type
);
4753 name
= strings
+ GET_WORD (input_bfd
, sym
->e_strx
);
4759 /* Pass this symbol through. It is the target of an
4760 indirect or warning symbol. */
4761 val
= GET_WORD (input_bfd
, sym
->e_value
);
4766 /* Skip this symbol, which is the target of an indirect
4767 symbol that we have changed to no longer be an indirect
4774 struct aout_link_hash_entry
*hresolve
;
4776 /* We have saved the hash table entry for this symbol, if
4777 there is one. Note that we could just look it up again
4778 in the hash table, provided we first check that it is an
4782 /* Use the name from the hash table, in case the symbol was
4785 && h
->root
.type
!= bfd_link_hash_warning
)
4786 name
= h
->root
.root
.string
;
4788 /* If this is an indirect or warning symbol, then change
4789 hresolve to the base symbol. We also change *sym_hash so
4790 that the relocation routines relocate against the real
4793 if (h
!= (struct aout_link_hash_entry
*) NULL
4794 && (h
->root
.type
== bfd_link_hash_indirect
4795 || h
->root
.type
== bfd_link_hash_warning
))
4797 hresolve
= (struct aout_link_hash_entry
*) h
->root
.u
.i
.link
;
4798 while (hresolve
->root
.type
== bfd_link_hash_indirect
4799 || hresolve
->root
.type
== bfd_link_hash_warning
)
4800 hresolve
= ((struct aout_link_hash_entry
*)
4801 hresolve
->root
.u
.i
.link
);
4802 *sym_hash
= hresolve
;
4805 /* If the symbol has already been written out, skip it. */
4809 if ((type
& N_TYPE
) == N_INDR
4810 || type
== N_WARNING
)
4812 *symbol_map
= h
->indx
;
4816 /* See if we are stripping this symbol. */
4822 case strip_debugger
:
4823 if ((type
& N_STAB
) != 0)
4827 if (bfd_hash_lookup (finfo
->info
->keep_hash
, name
, FALSE
, FALSE
)
4842 /* Get the value of the symbol. */
4843 if ((type
& N_TYPE
) == N_TEXT
4845 symsec
= obj_textsec (input_bfd
);
4846 else if ((type
& N_TYPE
) == N_DATA
4848 symsec
= obj_datasec (input_bfd
);
4849 else if ((type
& N_TYPE
) == N_BSS
4851 symsec
= obj_bsssec (input_bfd
);
4852 else if ((type
& N_TYPE
) == N_ABS
4854 symsec
= bfd_abs_section_ptr
;
4855 else if (((type
& N_TYPE
) == N_INDR
4856 && (hresolve
== NULL
4857 || (hresolve
->root
.type
!= bfd_link_hash_defined
4858 && hresolve
->root
.type
!= bfd_link_hash_defweak
4859 && hresolve
->root
.type
!= bfd_link_hash_common
)))
4860 || type
== N_WARNING
)
4862 /* Pass the next symbol through unchanged. The
4863 condition above for indirect symbols is so that if
4864 the indirect symbol was defined, we output it with
4865 the correct definition so the debugger will
4868 val
= GET_WORD (input_bfd
, sym
->e_value
);
4871 else if ((type
& N_STAB
) != 0)
4873 val
= GET_WORD (input_bfd
, sym
->e_value
);
4878 /* If we get here with an indirect symbol, it means that
4879 we are outputting it with a real definition. In such
4880 a case we do not want to output the next symbol,
4881 which is the target of the indirection. */
4882 if ((type
& N_TYPE
) == N_INDR
)
4887 /* We need to get the value from the hash table. We use
4888 hresolve so that if we have defined an indirect
4889 symbol we output the final definition. */
4892 switch (type
& N_TYPE
)
4895 symsec
= obj_textsec (input_bfd
);
4898 symsec
= obj_datasec (input_bfd
);
4901 symsec
= obj_bsssec (input_bfd
);
4904 symsec
= bfd_abs_section_ptr
;
4911 else if (hresolve
->root
.type
== bfd_link_hash_defined
4912 || hresolve
->root
.type
== bfd_link_hash_defweak
)
4914 asection
*input_section
;
4915 asection
*output_section
;
4917 /* This case usually means a common symbol which was
4918 turned into a defined symbol. */
4919 input_section
= hresolve
->root
.u
.def
.section
;
4920 output_section
= input_section
->output_section
;
4921 BFD_ASSERT (bfd_is_abs_section (output_section
)
4922 || output_section
->owner
== output_bfd
);
4923 val
= (hresolve
->root
.u
.def
.value
4924 + bfd_get_section_vma (output_bfd
, output_section
)
4925 + input_section
->output_offset
);
4927 /* Get the correct type based on the section. If
4928 this is a constructed set, force it to be
4929 globally visible. */
4938 if (output_section
== obj_textsec (output_bfd
))
4939 type
|= (hresolve
->root
.type
== bfd_link_hash_defined
4942 else if (output_section
== obj_datasec (output_bfd
))
4943 type
|= (hresolve
->root
.type
== bfd_link_hash_defined
4946 else if (output_section
== obj_bsssec (output_bfd
))
4947 type
|= (hresolve
->root
.type
== bfd_link_hash_defined
4951 type
|= (hresolve
->root
.type
== bfd_link_hash_defined
4955 else if (hresolve
->root
.type
== bfd_link_hash_common
)
4956 val
= hresolve
->root
.u
.c
.size
;
4957 else if (hresolve
->root
.type
== bfd_link_hash_undefweak
)
4966 val
= (symsec
->output_section
->vma
4967 + symsec
->output_offset
4968 + (GET_WORD (input_bfd
, sym
->e_value
)
4971 /* If this is a global symbol set the written flag, and if
4972 it is a local symbol see if we should discard it. */
4976 h
->indx
= obj_aout_external_sym_count (output_bfd
);
4978 else if ((type
& N_TYPE
) != N_SETT
4979 && (type
& N_TYPE
) != N_SETD
4980 && (type
& N_TYPE
) != N_SETB
4981 && (type
& N_TYPE
) != N_SETA
)
4986 case discard_sec_merge
:
4989 if ((type
& N_STAB
) == 0
4990 && bfd_is_local_label_name (input_bfd
, name
))
5004 /* An N_BINCL symbol indicates the start of the stabs
5005 entries for a header file. We need to scan ahead to the
5006 next N_EINCL symbol, ignoring nesting, adding up all the
5007 characters in the symbol names, not including the file
5008 numbers in types (the first number after an open
5010 if (type
== (int) N_BINCL
)
5012 struct external_nlist
*incl_sym
;
5014 struct aout_link_includes_entry
*incl_entry
;
5015 struct aout_link_includes_totals
*t
;
5019 for (incl_sym
= sym
+ 1; incl_sym
< sym_end
; incl_sym
++)
5023 incl_type
= H_GET_8 (input_bfd
, incl_sym
->e_type
);
5024 if (incl_type
== (int) N_EINCL
)
5030 else if (incl_type
== (int) N_BINCL
)
5036 s
= strings
+ GET_WORD (input_bfd
, incl_sym
->e_strx
);
5037 for (; *s
!= '\0'; s
++)
5042 /* Skip the file number. */
5044 while (ISDIGIT (*s
))
5052 /* If we have already included a header file with the
5053 same value, then replace this one with an N_EXCL
5055 copy
= (bfd_boolean
) (! finfo
->info
->keep_memory
);
5056 incl_entry
= aout_link_includes_lookup (&finfo
->includes
,
5058 if (incl_entry
== NULL
)
5060 for (t
= incl_entry
->totals
; t
!= NULL
; t
= t
->next
)
5061 if (t
->total
== val
)
5065 /* This is the first time we have seen this header
5066 file with this set of stabs strings. */
5067 t
= bfd_hash_allocate (&finfo
->includes
.root
,
5072 t
->next
= incl_entry
->totals
;
5073 incl_entry
->totals
= t
;
5079 /* This is a duplicate header file. We must change
5080 it to be an N_EXCL entry, and mark all the
5081 included symbols to prevent outputting them. */
5082 type
= (int) N_EXCL
;
5085 for (incl_sym
= sym
+ 1, incl_map
= symbol_map
+ 1;
5087 incl_sym
++, incl_map
++)
5091 incl_type
= H_GET_8 (input_bfd
, incl_sym
->e_type
);
5092 if (incl_type
== (int) N_EINCL
)
5101 else if (incl_type
== (int) N_BINCL
)
5110 /* Copy this symbol into the list of symbols we are going to
5112 H_PUT_8 (output_bfd
, type
, outsym
->e_type
);
5113 H_PUT_8 (output_bfd
, H_GET_8 (input_bfd
, sym
->e_other
), outsym
->e_other
);
5114 H_PUT_16 (output_bfd
, H_GET_16 (input_bfd
, sym
->e_desc
), outsym
->e_desc
);
5116 if (! finfo
->info
->keep_memory
)
5118 /* name points into a string table which we are going to
5119 free. If there is a hash table entry, use that string.
5120 Otherwise, copy name into memory. */
5122 name
= h
->root
.root
.string
;
5126 strtab_index
= add_to_stringtab (output_bfd
, finfo
->strtab
,
5128 if (strtab_index
== (bfd_size_type
) -1)
5130 PUT_WORD (output_bfd
, strtab_index
, outsym
->e_strx
);
5131 PUT_WORD (output_bfd
, val
, outsym
->e_value
);
5132 *symbol_map
= obj_aout_external_sym_count (output_bfd
);
5133 ++obj_aout_external_sym_count (output_bfd
);
5137 /* Write out the output symbols we have just constructed. */
5138 if (outsym
> finfo
->output_syms
)
5140 bfd_size_type outsym_size
;
5142 if (bfd_seek (output_bfd
, finfo
->symoff
, SEEK_SET
) != 0)
5144 outsym_size
= outsym
- finfo
->output_syms
;
5145 outsym_size
*= EXTERNAL_NLIST_SIZE
;
5146 if (bfd_bwrite ((void *) finfo
->output_syms
, outsym_size
, output_bfd
)
5149 finfo
->symoff
+= outsym_size
;
5155 /* Link an a.out input BFD into the output file. */
5158 aout_link_input_bfd (struct aout_final_link_info
*finfo
, bfd
*input_bfd
)
5160 bfd_size_type sym_count
;
5162 BFD_ASSERT (bfd_get_format (input_bfd
) == bfd_object
);
5164 /* If this is a dynamic object, it may need special handling. */
5165 if ((input_bfd
->flags
& DYNAMIC
) != 0
5166 && aout_backend_info (input_bfd
)->link_dynamic_object
!= NULL
)
5167 return ((*aout_backend_info (input_bfd
)->link_dynamic_object
)
5168 (finfo
->info
, input_bfd
));
5170 /* Get the symbols. We probably have them already, unless
5171 finfo->info->keep_memory is FALSE. */
5172 if (! aout_get_external_symbols (input_bfd
))
5175 sym_count
= obj_aout_external_sym_count (input_bfd
);
5177 /* Write out the symbols and get a map of the new indices. The map
5178 is placed into finfo->symbol_map. */
5179 if (! aout_link_write_symbols (finfo
, input_bfd
))
5182 /* Relocate and write out the sections. These functions use the
5183 symbol map created by aout_link_write_symbols. The linker_mark
5184 field will be set if these sections are to be included in the
5185 link, which will normally be the case. */
5186 if (obj_textsec (input_bfd
)->linker_mark
)
5188 if (! aout_link_input_section (finfo
, input_bfd
,
5189 obj_textsec (input_bfd
),
5191 exec_hdr (input_bfd
)->a_trsize
))
5194 if (obj_datasec (input_bfd
)->linker_mark
)
5196 if (! aout_link_input_section (finfo
, input_bfd
,
5197 obj_datasec (input_bfd
),
5199 exec_hdr (input_bfd
)->a_drsize
))
5203 /* If we are not keeping memory, we don't need the symbols any
5204 longer. We still need them if we are keeping memory, because the
5205 strings in the hash table point into them. */
5206 if (! finfo
->info
->keep_memory
)
5208 if (! aout_link_free_symbols (input_bfd
))
5215 /* Do the final link step. This is called on the output BFD. The
5216 INFO structure should point to a list of BFDs linked through the
5217 link_next field which can be used to find each BFD which takes part
5218 in the output. Also, each section in ABFD should point to a list
5219 of bfd_link_order structures which list all the input sections for
5220 the output section. */
5223 NAME (aout
, final_link
) (bfd
*abfd
,
5224 struct bfd_link_info
*info
,
5225 void (*callback
) (bfd
*, file_ptr
*, file_ptr
*, file_ptr
*))
5227 struct aout_final_link_info aout_info
;
5228 bfd_boolean includes_hash_initialized
= FALSE
;
5230 bfd_size_type trsize
, drsize
;
5231 bfd_size_type max_contents_size
;
5232 bfd_size_type max_relocs_size
;
5233 bfd_size_type max_sym_count
;
5234 bfd_size_type text_size
;
5236 struct bfd_link_order
*p
;
5238 bfd_boolean have_link_order_relocs
;
5241 abfd
->flags
|= DYNAMIC
;
5243 aout_info
.info
= info
;
5244 aout_info
.output_bfd
= abfd
;
5245 aout_info
.contents
= NULL
;
5246 aout_info
.relocs
= NULL
;
5247 aout_info
.symbol_map
= NULL
;
5248 aout_info
.output_syms
= NULL
;
5250 if (! bfd_hash_table_init_n (&aout_info
.includes
.root
,
5251 aout_link_includes_newfunc
,
5254 includes_hash_initialized
= TRUE
;
5256 /* Figure out the largest section size. Also, if generating
5257 relocatable output, count the relocs. */
5260 max_contents_size
= 0;
5261 max_relocs_size
= 0;
5263 for (sub
= info
->input_bfds
; sub
!= NULL
; sub
= sub
->link_next
)
5267 if (info
->relocatable
)
5269 if (bfd_get_flavour (sub
) == bfd_target_aout_flavour
)
5271 trsize
+= exec_hdr (sub
)->a_trsize
;
5272 drsize
+= exec_hdr (sub
)->a_drsize
;
5276 /* FIXME: We need to identify the .text and .data sections
5277 and call get_reloc_upper_bound and canonicalize_reloc to
5278 work out the number of relocs needed, and then multiply
5279 by the reloc size. */
5280 (*_bfd_error_handler
)
5281 (_("%s: relocatable link from %s to %s not supported"),
5282 bfd_get_filename (abfd
),
5283 sub
->xvec
->name
, abfd
->xvec
->name
);
5284 bfd_set_error (bfd_error_invalid_operation
);
5289 if (bfd_get_flavour (sub
) == bfd_target_aout_flavour
)
5291 sz
= obj_textsec (sub
)->size
;
5292 if (sz
> max_contents_size
)
5293 max_contents_size
= sz
;
5294 sz
= obj_datasec (sub
)->size
;
5295 if (sz
> max_contents_size
)
5296 max_contents_size
= sz
;
5298 sz
= exec_hdr (sub
)->a_trsize
;
5299 if (sz
> max_relocs_size
)
5300 max_relocs_size
= sz
;
5301 sz
= exec_hdr (sub
)->a_drsize
;
5302 if (sz
> max_relocs_size
)
5303 max_relocs_size
= sz
;
5305 sz
= obj_aout_external_sym_count (sub
);
5306 if (sz
> max_sym_count
)
5311 if (info
->relocatable
)
5313 if (obj_textsec (abfd
) != NULL
)
5314 trsize
+= (_bfd_count_link_order_relocs (obj_textsec (abfd
)
5315 ->map_head
.link_order
)
5316 * obj_reloc_entry_size (abfd
));
5317 if (obj_datasec (abfd
) != NULL
)
5318 drsize
+= (_bfd_count_link_order_relocs (obj_datasec (abfd
)
5319 ->map_head
.link_order
)
5320 * obj_reloc_entry_size (abfd
));
5323 exec_hdr (abfd
)->a_trsize
= trsize
;
5324 exec_hdr (abfd
)->a_drsize
= drsize
;
5326 exec_hdr (abfd
)->a_entry
= bfd_get_start_address (abfd
);
5328 /* Adjust the section sizes and vmas according to the magic number.
5329 This sets a_text, a_data and a_bss in the exec_hdr and sets the
5330 filepos for each section. */
5331 if (! NAME (aout
, adjust_sizes_and_vmas
) (abfd
, &text_size
, &text_end
))
5334 /* The relocation and symbol file positions differ among a.out
5335 targets. We are passed a callback routine from the backend
5336 specific code to handle this.
5337 FIXME: At this point we do not know how much space the symbol
5338 table will require. This will not work for any (nonstandard)
5339 a.out target that needs to know the symbol table size before it
5340 can compute the relocation file positions. This may or may not
5341 be the case for the hp300hpux target, for example. */
5342 (*callback
) (abfd
, &aout_info
.treloff
, &aout_info
.dreloff
,
5344 obj_textsec (abfd
)->rel_filepos
= aout_info
.treloff
;
5345 obj_datasec (abfd
)->rel_filepos
= aout_info
.dreloff
;
5346 obj_sym_filepos (abfd
) = aout_info
.symoff
;
5348 /* We keep a count of the symbols as we output them. */
5349 obj_aout_external_sym_count (abfd
) = 0;
5351 /* We accumulate the string table as we write out the symbols. */
5352 aout_info
.strtab
= _bfd_stringtab_init ();
5353 if (aout_info
.strtab
== NULL
)
5356 /* Allocate buffers to hold section contents and relocs. */
5357 aout_info
.contents
= bfd_malloc (max_contents_size
);
5358 aout_info
.relocs
= bfd_malloc (max_relocs_size
);
5359 aout_info
.symbol_map
= bfd_malloc (max_sym_count
* sizeof (int *));
5360 aout_info
.output_syms
= bfd_malloc ((max_sym_count
+ 1)
5361 * sizeof (struct external_nlist
));
5362 if ((aout_info
.contents
== NULL
&& max_contents_size
!= 0)
5363 || (aout_info
.relocs
== NULL
&& max_relocs_size
!= 0)
5364 || (aout_info
.symbol_map
== NULL
&& max_sym_count
!= 0)
5365 || aout_info
.output_syms
== NULL
)
5368 /* If we have a symbol named __DYNAMIC, force it out now. This is
5369 required by SunOS. Doing this here rather than in sunos.c is a
5370 hack, but it's easier than exporting everything which would be
5373 struct aout_link_hash_entry
*h
;
5375 h
= aout_link_hash_lookup (aout_hash_table (info
), "__DYNAMIC",
5376 FALSE
, FALSE
, FALSE
);
5378 aout_link_write_other_symbol (h
, &aout_info
);
5381 /* The most time efficient way to do the link would be to read all
5382 the input object files into memory and then sort out the
5383 information into the output file. Unfortunately, that will
5384 probably use too much memory. Another method would be to step
5385 through everything that composes the text section and write it
5386 out, and then everything that composes the data section and write
5387 it out, and then write out the relocs, and then write out the
5388 symbols. Unfortunately, that requires reading stuff from each
5389 input file several times, and we will not be able to keep all the
5390 input files open simultaneously, and reopening them will be slow.
5392 What we do is basically process one input file at a time. We do
5393 everything we need to do with an input file once--copy over the
5394 section contents, handle the relocation information, and write
5395 out the symbols--and then we throw away the information we read
5396 from it. This approach requires a lot of lseeks of the output
5397 file, which is unfortunate but still faster than reopening a lot
5400 We use the output_has_begun field of the input BFDs to see
5401 whether we have already handled it. */
5402 for (sub
= info
->input_bfds
; sub
!= NULL
; sub
= sub
->link_next
)
5403 sub
->output_has_begun
= FALSE
;
5405 /* Mark all sections which are to be included in the link. This
5406 will normally be every section. We need to do this so that we
5407 can identify any sections which the linker has decided to not
5409 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
5411 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
5412 if (p
->type
== bfd_indirect_link_order
)
5413 p
->u
.indirect
.section
->linker_mark
= TRUE
;
5416 have_link_order_relocs
= FALSE
;
5417 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
5419 for (p
= o
->map_head
.link_order
;
5423 if (p
->type
== bfd_indirect_link_order
5424 && (bfd_get_flavour (p
->u
.indirect
.section
->owner
)
5425 == bfd_target_aout_flavour
))
5429 input_bfd
= p
->u
.indirect
.section
->owner
;
5430 if (! input_bfd
->output_has_begun
)
5432 if (! aout_link_input_bfd (&aout_info
, input_bfd
))
5434 input_bfd
->output_has_begun
= TRUE
;
5437 else if (p
->type
== bfd_section_reloc_link_order
5438 || p
->type
== bfd_symbol_reloc_link_order
)
5440 /* These are handled below. */
5441 have_link_order_relocs
= TRUE
;
5445 if (! _bfd_default_link_order (abfd
, info
, o
, p
))
5451 /* Write out any symbols that we have not already written out. */
5452 aout_link_hash_traverse (aout_hash_table (info
),
5453 aout_link_write_other_symbol
,
5454 (void *) &aout_info
);
5456 /* Now handle any relocs we were asked to create by the linker.
5457 These did not come from any input file. We must do these after
5458 we have written out all the symbols, so that we know the symbol
5460 if (have_link_order_relocs
)
5462 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
5464 for (p
= o
->map_head
.link_order
;
5468 if (p
->type
== bfd_section_reloc_link_order
5469 || p
->type
== bfd_symbol_reloc_link_order
)
5471 if (! aout_link_reloc_link_order (&aout_info
, o
, p
))
5478 if (aout_info
.contents
!= NULL
)
5480 free (aout_info
.contents
);
5481 aout_info
.contents
= NULL
;
5483 if (aout_info
.relocs
!= NULL
)
5485 free (aout_info
.relocs
);
5486 aout_info
.relocs
= NULL
;
5488 if (aout_info
.symbol_map
!= NULL
)
5490 free (aout_info
.symbol_map
);
5491 aout_info
.symbol_map
= NULL
;
5493 if (aout_info
.output_syms
!= NULL
)
5495 free (aout_info
.output_syms
);
5496 aout_info
.output_syms
= NULL
;
5498 if (includes_hash_initialized
)
5500 bfd_hash_table_free (&aout_info
.includes
.root
);
5501 includes_hash_initialized
= FALSE
;
5504 /* Finish up any dynamic linking we may be doing. */
5505 if (aout_backend_info (abfd
)->finish_dynamic_link
!= NULL
)
5507 if (! (*aout_backend_info (abfd
)->finish_dynamic_link
) (abfd
, info
))
5511 /* Update the header information. */
5512 abfd
->symcount
= obj_aout_external_sym_count (abfd
);
5513 exec_hdr (abfd
)->a_syms
= abfd
->symcount
* EXTERNAL_NLIST_SIZE
;
5514 obj_str_filepos (abfd
) = obj_sym_filepos (abfd
) + exec_hdr (abfd
)->a_syms
;
5515 obj_textsec (abfd
)->reloc_count
=
5516 exec_hdr (abfd
)->a_trsize
/ obj_reloc_entry_size (abfd
);
5517 obj_datasec (abfd
)->reloc_count
=
5518 exec_hdr (abfd
)->a_drsize
/ obj_reloc_entry_size (abfd
);
5520 /* Write out the string table, unless there are no symbols. */
5521 if (abfd
->symcount
> 0)
5523 if (bfd_seek (abfd
, obj_str_filepos (abfd
), SEEK_SET
) != 0
5524 || ! emit_stringtab (abfd
, aout_info
.strtab
))
5527 else if (obj_textsec (abfd
)->reloc_count
== 0
5528 && obj_datasec (abfd
)->reloc_count
== 0)
5534 pos
= obj_datasec (abfd
)->filepos
+ exec_hdr (abfd
)->a_data
- 1;
5535 if (bfd_seek (abfd
, pos
, SEEK_SET
) != 0
5536 || bfd_bwrite (&b
, (bfd_size_type
) 1, abfd
) != 1)
5543 if (aout_info
.contents
!= NULL
)
5544 free (aout_info
.contents
);
5545 if (aout_info
.relocs
!= NULL
)
5546 free (aout_info
.relocs
);
5547 if (aout_info
.symbol_map
!= NULL
)
5548 free (aout_info
.symbol_map
);
5549 if (aout_info
.output_syms
!= NULL
)
5550 free (aout_info
.output_syms
);
5551 if (includes_hash_initialized
)
5552 bfd_hash_table_free (&aout_info
.includes
.root
);