1 /* BFD semi-generic back-end for a.out binaries.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000,
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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.
113 * Any BFD with D_PAGED set is ZMAGIC, and vice versa.
114 Doesn't matter what the setting of WP_TEXT is on output, but it'll
116 * Any BFD with D_PAGED clear and WP_TEXT set is NMAGIC.
117 * Any BFD with both flags clear is OMAGIC.
118 (Just want to make these explicit, so the conditions tested in this
119 file make sense if you're more familiar with a.out than with BFD.) */
121 #define KEEPIT udata.i
125 #include "safe-ctype.h"
130 #include "aout/aout64.h"
131 #include "aout/stab_gnu.h"
134 static bfd_boolean aout_get_external_symbols
136 static bfd_boolean translate_from_native_sym_flags
137 PARAMS ((bfd *, aout_symbol_type *));
138 static bfd_boolean translate_to_native_sym_flags
139 PARAMS ((bfd *, asymbol *, struct external_nlist *));
140 static void adjust_o_magic
141 PARAMS ((bfd *, struct internal_exec *));
142 static void adjust_z_magic
143 PARAMS ((bfd *, struct internal_exec *));
144 static void adjust_n_magic
145 PARAMS ((bfd *, struct internal_exec *));
146 reloc_howto_type * NAME(aout,reloc_type_lookup)
147 PARAMS ((bfd *, bfd_reloc_code_real_type));
154 The file @file{aoutx.h} provides for both the @emph{standard}
155 and @emph{extended} forms of a.out relocation records.
157 The standard records contain only an
158 address, a symbol index, and a type field. The extended records
159 (used on 29ks and sparcs) also have a full integer for an
163 #ifndef CTOR_TABLE_RELOC_HOWTO
164 #define CTOR_TABLE_RELOC_IDX 2
165 #define CTOR_TABLE_RELOC_HOWTO(BFD) \
166 ((obj_reloc_entry_size (BFD) == RELOC_EXT_SIZE \
167 ? howto_table_ext : howto_table_std) \
168 + CTOR_TABLE_RELOC_IDX)
171 #ifndef MY_swap_std_reloc_in
172 #define MY_swap_std_reloc_in NAME(aout,swap_std_reloc_in)
175 #ifndef MY_swap_ext_reloc_in
176 #define MY_swap_ext_reloc_in NAME(aout,swap_ext_reloc_in)
179 #ifndef MY_swap_std_reloc_out
180 #define MY_swap_std_reloc_out NAME(aout,swap_std_reloc_out)
183 #ifndef MY_swap_ext_reloc_out
184 #define MY_swap_ext_reloc_out NAME(aout,swap_ext_reloc_out)
187 #ifndef MY_final_link_relocate
188 #define MY_final_link_relocate _bfd_final_link_relocate
191 #ifndef MY_relocate_contents
192 #define MY_relocate_contents _bfd_relocate_contents
195 #define howto_table_ext NAME(aout,ext_howto_table)
196 #define howto_table_std NAME(aout,std_howto_table)
198 reloc_howto_type howto_table_ext[] =
200 /* type rs size bsz pcrel bitpos ovrf sf name part_inpl readmask setmask pcdone. */
201 HOWTO(RELOC_8, 0, 0, 8, FALSE, 0, complain_overflow_bitfield,0,"8", FALSE, 0,0x000000ff, FALSE),
202 HOWTO(RELOC_16, 0, 1, 16, FALSE, 0, complain_overflow_bitfield,0,"16", FALSE, 0,0x0000ffff, FALSE),
203 HOWTO(RELOC_32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,0,"32", FALSE, 0,0xffffffff, FALSE),
204 HOWTO(RELOC_DISP8, 0, 0, 8, TRUE, 0, complain_overflow_signed,0,"DISP8", FALSE, 0,0x000000ff, FALSE),
205 HOWTO(RELOC_DISP16, 0, 1, 16, TRUE, 0, complain_overflow_signed,0,"DISP16", FALSE, 0,0x0000ffff, FALSE),
206 HOWTO(RELOC_DISP32, 0, 2, 32, TRUE, 0, complain_overflow_signed,0,"DISP32", FALSE, 0,0xffffffff, FALSE),
207 HOWTO(RELOC_WDISP30,2, 2, 30, TRUE, 0, complain_overflow_signed,0,"WDISP30", FALSE, 0,0x3fffffff, FALSE),
208 HOWTO(RELOC_WDISP22,2, 2, 22, TRUE, 0, complain_overflow_signed,0,"WDISP22", FALSE, 0,0x003fffff, FALSE),
209 HOWTO(RELOC_HI22, 10, 2, 22, FALSE, 0, complain_overflow_bitfield,0,"HI22", FALSE, 0,0x003fffff, FALSE),
210 HOWTO(RELOC_22, 0, 2, 22, FALSE, 0, complain_overflow_bitfield,0,"22", FALSE, 0,0x003fffff, FALSE),
211 HOWTO(RELOC_13, 0, 2, 13, FALSE, 0, complain_overflow_bitfield,0,"13", FALSE, 0,0x00001fff, FALSE),
212 HOWTO(RELOC_LO10, 0, 2, 10, FALSE, 0, complain_overflow_dont,0,"LO10", FALSE, 0,0x000003ff, FALSE),
213 HOWTO(RELOC_SFA_BASE,0, 2, 32, FALSE, 0, complain_overflow_bitfield,0,"SFA_BASE", FALSE, 0,0xffffffff, FALSE),
214 HOWTO(RELOC_SFA_OFF13,0,2, 32, FALSE, 0, complain_overflow_bitfield,0,"SFA_OFF13",FALSE, 0,0xffffffff, FALSE),
215 HOWTO(RELOC_BASE10, 0, 2, 10, FALSE, 0, complain_overflow_dont,0,"BASE10", FALSE, 0,0x000003ff, FALSE),
216 HOWTO(RELOC_BASE13, 0, 2, 13, FALSE, 0, complain_overflow_signed,0,"BASE13", FALSE, 0,0x00001fff, FALSE),
217 HOWTO(RELOC_BASE22, 10, 2, 22, FALSE, 0, complain_overflow_bitfield,0,"BASE22", FALSE, 0,0x003fffff, FALSE),
218 HOWTO(RELOC_PC10, 0, 2, 10, TRUE, 0, complain_overflow_dont,0,"PC10", FALSE, 0,0x000003ff, TRUE),
219 HOWTO(RELOC_PC22, 10, 2, 22, TRUE, 0, complain_overflow_signed,0,"PC22", FALSE, 0,0x003fffff, TRUE),
220 HOWTO(RELOC_JMP_TBL,2, 2, 30, TRUE, 0, complain_overflow_signed,0,"JMP_TBL", FALSE, 0,0x3fffffff, FALSE),
221 HOWTO(RELOC_SEGOFF16,0, 2, 0, FALSE, 0, complain_overflow_bitfield,0,"SEGOFF16", FALSE, 0,0x00000000, FALSE),
222 HOWTO(RELOC_GLOB_DAT,0, 2, 0, FALSE, 0, complain_overflow_bitfield,0,"GLOB_DAT", FALSE, 0,0x00000000, FALSE),
223 HOWTO(RELOC_JMP_SLOT,0, 2, 0, FALSE, 0, complain_overflow_bitfield,0,"JMP_SLOT", FALSE, 0,0x00000000, FALSE),
224 HOWTO(RELOC_RELATIVE,0, 2, 0, FALSE, 0, complain_overflow_bitfield,0,"RELATIVE", FALSE, 0,0x00000000, FALSE),
225 HOWTO(0, 0, 0, 0, FALSE, 0, complain_overflow_dont, 0, "R_SPARC_NONE", FALSE,0,0x00000000,TRUE),
226 HOWTO(0, 0, 0, 0, FALSE, 0, complain_overflow_dont, 0, "R_SPARC_NONE", FALSE,0,0x00000000,TRUE),
227 #define RELOC_SPARC_REV32 RELOC_WDISP19
228 HOWTO(RELOC_SPARC_REV32, 0, 2, 32, FALSE, 0, complain_overflow_dont,0,"R_SPARC_REV32", FALSE, 0,0xffffffff, FALSE),
231 /* Convert standard reloc records to "arelent" format (incl byte swap). */
233 reloc_howto_type howto_table_std[] = {
234 /* type rs size bsz pcrel bitpos ovrf sf name part_inpl readmask setmask pcdone. */
235 HOWTO ( 0, 0, 0, 8, FALSE, 0, complain_overflow_bitfield,0,"8", TRUE, 0x000000ff,0x000000ff, FALSE),
236 HOWTO ( 1, 0, 1, 16, FALSE, 0, complain_overflow_bitfield,0,"16", TRUE, 0x0000ffff,0x0000ffff, FALSE),
237 HOWTO ( 2, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,0,"32", TRUE, 0xffffffff,0xffffffff, FALSE),
238 HOWTO ( 3, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,0,"64", TRUE, 0xdeaddead,0xdeaddead, FALSE),
239 HOWTO ( 4, 0, 0, 8, TRUE, 0, complain_overflow_signed, 0,"DISP8", TRUE, 0x000000ff,0x000000ff, FALSE),
240 HOWTO ( 5, 0, 1, 16, TRUE, 0, complain_overflow_signed, 0,"DISP16", TRUE, 0x0000ffff,0x0000ffff, FALSE),
241 HOWTO ( 6, 0, 2, 32, TRUE, 0, complain_overflow_signed, 0,"DISP32", TRUE, 0xffffffff,0xffffffff, FALSE),
242 HOWTO ( 7, 0, 4, 64, TRUE, 0, complain_overflow_signed, 0,"DISP64", TRUE, 0xfeedface,0xfeedface, FALSE),
243 HOWTO ( 8, 0, 2, 0, FALSE, 0, complain_overflow_bitfield,0,"GOT_REL", FALSE, 0,0x00000000, FALSE),
244 HOWTO ( 9, 0, 1, 16, FALSE, 0, complain_overflow_bitfield,0,"BASE16", FALSE,0xffffffff,0xffffffff, FALSE),
245 HOWTO (10, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,0,"BASE32", FALSE,0xffffffff,0xffffffff, FALSE),
251 HOWTO (16, 0, 2, 0, FALSE, 0, complain_overflow_bitfield,0,"JMP_TABLE", FALSE, 0,0x00000000, FALSE),
267 HOWTO (32, 0, 2, 0, FALSE, 0, complain_overflow_bitfield,0,"RELATIVE", FALSE, 0,0x00000000, FALSE),
275 HOWTO (40, 0, 2, 0, FALSE, 0, complain_overflow_bitfield,0,"BASEREL", FALSE, 0,0x00000000, FALSE),
278 #define TABLE_SIZE(TABLE) (sizeof (TABLE) / sizeof (TABLE[0]))
281 NAME(aout,reloc_type_lookup) (abfd,code)
283 bfd_reloc_code_real_type code;
285 #define EXT(i, j) case i: return &howto_table_ext[j]
286 #define STD(i, j) case i: return &howto_table_std[j]
287 int ext = obj_reloc_entry_size (abfd) == RELOC_EXT_SIZE;
289 if (code == BFD_RELOC_CTOR)
290 switch (bfd_get_arch_info (abfd)->bits_per_address)
303 EXT (BFD_RELOC_8, 0);
304 EXT (BFD_RELOC_16, 1);
305 EXT (BFD_RELOC_32, 2);
306 EXT (BFD_RELOC_HI22, 8);
307 EXT (BFD_RELOC_LO10, 11);
308 EXT (BFD_RELOC_32_PCREL_S2, 6);
309 EXT (BFD_RELOC_SPARC_WDISP22, 7);
310 EXT (BFD_RELOC_SPARC13, 10);
311 EXT (BFD_RELOC_SPARC_GOT10, 14);
312 EXT (BFD_RELOC_SPARC_BASE13, 15);
313 EXT (BFD_RELOC_SPARC_GOT13, 15);
314 EXT (BFD_RELOC_SPARC_GOT22, 16);
315 EXT (BFD_RELOC_SPARC_PC10, 17);
316 EXT (BFD_RELOC_SPARC_PC22, 18);
317 EXT (BFD_RELOC_SPARC_WPLT30, 19);
318 EXT (BFD_RELOC_SPARC_REV32, 26);
319 default: return (reloc_howto_type *) NULL;
325 STD (BFD_RELOC_8, 0);
326 STD (BFD_RELOC_16, 1);
327 STD (BFD_RELOC_32, 2);
328 STD (BFD_RELOC_8_PCREL, 4);
329 STD (BFD_RELOC_16_PCREL, 5);
330 STD (BFD_RELOC_32_PCREL, 6);
331 STD (BFD_RELOC_16_BASEREL, 9);
332 STD (BFD_RELOC_32_BASEREL, 10);
333 default: return (reloc_howto_type *) NULL;
339 Internal entry points
342 @file{aoutx.h} exports several routines for accessing the
343 contents of an a.out file, which are gathered and exported in
344 turn by various format specific files (eg sunos.c).
350 aout_@var{size}_swap_exec_header_in
353 void aout_@var{size}_swap_exec_header_in,
355 struct external_exec *raw_bytes,
356 struct internal_exec *execp);
359 Swap the information in an executable header @var{raw_bytes} taken
360 from a raw byte stream memory image into the internal exec header
361 structure @var{execp}.
364 #ifndef NAME_swap_exec_header_in
366 NAME(aout,swap_exec_header_in) (abfd, raw_bytes, execp)
368 struct external_exec *raw_bytes;
369 struct internal_exec *execp;
371 struct external_exec *bytes = (struct external_exec *)raw_bytes;
373 /* The internal_exec structure has some fields that are unused in this
374 configuration (IE for i960), so ensure that all such uninitialized
375 fields are zero'd out. There are places where two of these structs
376 are memcmp'd, and thus the contents do matter. */
377 memset ((PTR) execp, 0, sizeof (struct internal_exec));
378 /* Now fill in fields in the execp, from the bytes in the raw data. */
379 execp->a_info = H_GET_32 (abfd, bytes->e_info);
380 execp->a_text = GET_WORD (abfd, bytes->e_text);
381 execp->a_data = GET_WORD (abfd, bytes->e_data);
382 execp->a_bss = GET_WORD (abfd, bytes->e_bss);
383 execp->a_syms = GET_WORD (abfd, bytes->e_syms);
384 execp->a_entry = GET_WORD (abfd, bytes->e_entry);
385 execp->a_trsize = GET_WORD (abfd, bytes->e_trsize);
386 execp->a_drsize = GET_WORD (abfd, bytes->e_drsize);
388 #define NAME_swap_exec_header_in NAME(aout,swap_exec_header_in)
393 aout_@var{size}_swap_exec_header_out
396 void aout_@var{size}_swap_exec_header_out
398 struct internal_exec *execp,
399 struct external_exec *raw_bytes);
402 Swap the information in an internal exec header structure
403 @var{execp} into the buffer @var{raw_bytes} ready for writing to disk.
406 NAME(aout,swap_exec_header_out) (abfd, execp, raw_bytes)
408 struct internal_exec *execp;
409 struct external_exec *raw_bytes;
411 struct external_exec *bytes = (struct external_exec *)raw_bytes;
413 /* Now fill in fields in the raw data, from the fields in the exec struct. */
414 H_PUT_32 (abfd, execp->a_info , bytes->e_info);
415 PUT_WORD (abfd, execp->a_text , bytes->e_text);
416 PUT_WORD (abfd, execp->a_data , bytes->e_data);
417 PUT_WORD (abfd, execp->a_bss , bytes->e_bss);
418 PUT_WORD (abfd, execp->a_syms , bytes->e_syms);
419 PUT_WORD (abfd, execp->a_entry , bytes->e_entry);
420 PUT_WORD (abfd, execp->a_trsize, bytes->e_trsize);
421 PUT_WORD (abfd, execp->a_drsize, bytes->e_drsize);
424 /* Make all the section for an a.out file. */
427 NAME(aout,make_sections) (abfd)
430 if (obj_textsec (abfd) == (asection *) NULL
431 && bfd_make_section (abfd, ".text") == (asection *) NULL)
433 if (obj_datasec (abfd) == (asection *) NULL
434 && bfd_make_section (abfd, ".data") == (asection *) NULL)
436 if (obj_bsssec (abfd) == (asection *) NULL
437 && bfd_make_section (abfd, ".bss") == (asection *) NULL)
444 aout_@var{size}_some_aout_object_p
447 const bfd_target *aout_@var{size}_some_aout_object_p
449 const bfd_target *(*callback_to_real_object_p) ());
452 Some a.out variant thinks that the file open in @var{abfd}
453 checking is an a.out file. Do some more checking, and set up
454 for access if it really is. Call back to the calling
455 environment's "finish up" function just before returning, to
456 handle any last-minute setup.
460 NAME(aout,some_aout_object_p) (abfd, execp, callback_to_real_object_p)
462 struct internal_exec *execp;
463 const bfd_target *(*callback_to_real_object_p) PARAMS ((bfd *));
465 struct aout_data_struct *rawptr, *oldrawptr;
466 const bfd_target *result;
467 bfd_size_type amt = sizeof (struct aout_data_struct);
469 rawptr = (struct aout_data_struct *) bfd_zalloc (abfd, amt);
473 oldrawptr = abfd->tdata.aout_data;
474 abfd->tdata.aout_data = rawptr;
476 /* Copy the contents of the old tdata struct.
477 In particular, we want the subformat, since for hpux it was set in
478 hp300hpux.c:swap_exec_header_in and will be used in
479 hp300hpux.c:callback. */
480 if (oldrawptr != NULL)
481 *abfd->tdata.aout_data = *oldrawptr;
483 abfd->tdata.aout_data->a.hdr = &rawptr->e;
484 /* Copy in the internal_exec struct. */
485 *(abfd->tdata.aout_data->a.hdr) = *execp;
486 execp = abfd->tdata.aout_data->a.hdr;
488 /* Set the file flags. */
489 abfd->flags = BFD_NO_FLAGS;
490 if (execp->a_drsize || execp->a_trsize)
491 abfd->flags |= HAS_RELOC;
492 /* Setting of EXEC_P has been deferred to the bottom of this function. */
494 abfd->flags |= HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS;
495 if (N_DYNAMIC (*execp))
496 abfd->flags |= DYNAMIC;
498 if (N_MAGIC (*execp) == ZMAGIC)
500 abfd->flags |= D_PAGED | WP_TEXT;
501 adata (abfd).magic = z_magic;
503 else if (N_MAGIC (*execp) == QMAGIC)
505 abfd->flags |= D_PAGED | WP_TEXT;
506 adata (abfd).magic = z_magic;
507 adata (abfd).subformat = q_magic_format;
509 else if (N_MAGIC (*execp) == NMAGIC)
511 abfd->flags |= WP_TEXT;
512 adata (abfd).magic = n_magic;
514 else if (N_MAGIC (*execp) == OMAGIC
515 || N_MAGIC (*execp) == BMAGIC)
516 adata (abfd).magic = o_magic;
519 /* Should have been checked with N_BADMAG before this routine
524 bfd_get_start_address (abfd) = execp->a_entry;
526 obj_aout_symbols (abfd) = (aout_symbol_type *)NULL;
527 bfd_get_symcount (abfd) = execp->a_syms / sizeof (struct external_nlist);
529 /* The default relocation entry size is that of traditional V7 Unix. */
530 obj_reloc_entry_size (abfd) = RELOC_STD_SIZE;
532 /* The default symbol entry size is that of traditional Unix. */
533 obj_symbol_entry_size (abfd) = EXTERNAL_NLIST_SIZE;
536 bfd_init_window (&obj_aout_sym_window (abfd));
537 bfd_init_window (&obj_aout_string_window (abfd));
539 obj_aout_external_syms (abfd) = NULL;
540 obj_aout_external_strings (abfd) = NULL;
541 obj_aout_sym_hashes (abfd) = NULL;
543 if (! NAME(aout,make_sections) (abfd))
546 obj_datasec (abfd)->_raw_size = execp->a_data;
547 obj_bsssec (abfd)->_raw_size = execp->a_bss;
549 obj_textsec (abfd)->flags =
550 (execp->a_trsize != 0
551 ? (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS | SEC_RELOC)
552 : (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS));
553 obj_datasec (abfd)->flags =
554 (execp->a_drsize != 0
555 ? (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS | SEC_RELOC)
556 : (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS));
557 obj_bsssec (abfd)->flags = SEC_ALLOC;
559 #ifdef THIS_IS_ONLY_DOCUMENTATION
560 /* The common code can't fill in these things because they depend
561 on either the start address of the text segment, the rounding
562 up of virtual addresses between segments, or the starting file
563 position of the text segment -- all of which varies among different
564 versions of a.out. */
566 /* Call back to the format-dependent code to fill in the rest of the
567 fields and do any further cleanup. Things that should be filled
568 in by the callback: */
570 struct exec *execp = exec_hdr (abfd);
572 obj_textsec (abfd)->size = N_TXTSIZE (*execp);
573 obj_textsec (abfd)->raw_size = N_TXTSIZE (*execp);
574 /* Data and bss are already filled in since they're so standard. */
576 /* The virtual memory addresses of the sections. */
577 obj_textsec (abfd)->vma = N_TXTADDR (*execp);
578 obj_datasec (abfd)->vma = N_DATADDR (*execp);
579 obj_bsssec (abfd)->vma = N_BSSADDR (*execp);
581 /* The file offsets of the sections. */
582 obj_textsec (abfd)->filepos = N_TXTOFF (*execp);
583 obj_datasec (abfd)->filepos = N_DATOFF (*execp);
585 /* The file offsets of the relocation info. */
586 obj_textsec (abfd)->rel_filepos = N_TRELOFF (*execp);
587 obj_datasec (abfd)->rel_filepos = N_DRELOFF (*execp);
589 /* The file offsets of the string table and symbol table. */
590 obj_str_filepos (abfd) = N_STROFF (*execp);
591 obj_sym_filepos (abfd) = N_SYMOFF (*execp);
593 /* Determine the architecture and machine type of the object file. */
594 switch (N_MACHTYPE (*exec_hdr (abfd)))
597 abfd->obj_arch = bfd_arch_obscure;
601 adata (abfd)->page_size = TARGET_PAGE_SIZE;
602 adata (abfd)->segment_size = SEGMENT_SIZE;
603 adata (abfd)->exec_bytes_size = EXEC_BYTES_SIZE;
607 /* The architecture is encoded in various ways in various a.out variants,
608 or is not encoded at all in some of them. The relocation size depends
609 on the architecture and the a.out variant. Finally, the return value
610 is the bfd_target vector in use. If an error occurs, return zero and
611 set bfd_error to the appropriate error code.
613 Formats such as b.out, which have additional fields in the a.out
614 header, should cope with them in this callback as well. */
615 #endif /* DOCUMENTATION */
617 result = (*callback_to_real_object_p) (abfd);
619 /* Now that the segment addresses have been worked out, take a better
620 guess at whether the file is executable. If the entry point
621 is within the text segment, assume it is. (This makes files
622 executable even if their entry point address is 0, as long as
623 their text starts at zero.).
625 This test had to be changed to deal with systems where the text segment
626 runs at a different location than the default. The problem is that the
627 entry address can appear to be outside the text segment, thus causing an
628 erroneous conclusion that the file isn't executable.
630 To fix this, we now accept any non-zero entry point as an indication of
631 executability. This will work most of the time, since only the linker
632 sets the entry point, and that is likely to be non-zero for most systems. */
634 if (execp->a_entry != 0
635 || (execp->a_entry >= obj_textsec (abfd)->vma
636 && execp->a_entry < (obj_textsec (abfd)->vma
637 + obj_textsec (abfd)->_raw_size)))
638 abfd->flags |= EXEC_P;
642 struct stat stat_buf;
644 /* The original heuristic doesn't work in some important cases.
645 The a.out file has no information about the text start
646 address. For files (like kernels) linked to non-standard
647 addresses (ld -Ttext nnn) the entry point may not be between
648 the default text start (obj_textsec(abfd)->vma) and
649 (obj_textsec(abfd)->vma) + text size. This is not just a mach
650 issue. Many kernels are loaded at non standard addresses. */
651 if (abfd->iostream != NULL
652 && (abfd->flags & BFD_IN_MEMORY) == 0
653 && (fstat (fileno ((FILE *) (abfd->iostream)), &stat_buf) == 0)
654 && ((stat_buf.st_mode & 0111) != 0))
655 abfd->flags |= EXEC_P;
657 #endif /* STAT_FOR_EXEC */
661 #if 0 /* These should be set correctly anyways. */
662 abfd->sections = obj_textsec (abfd);
663 obj_textsec (abfd)->next = obj_datasec (abfd);
664 obj_datasec (abfd)->next = obj_bsssec (abfd);
670 bfd_release (abfd, rawptr);
671 abfd->tdata.aout_data = oldrawptr;
677 aout_@var{size}_mkobject
680 bfd_boolean aout_@var{size}_mkobject, (bfd *abfd);
683 Initialize BFD @var{abfd} for use with a.out files.
687 NAME(aout,mkobject) (abfd)
690 struct aout_data_struct *rawptr;
691 bfd_size_type amt = sizeof (struct aout_data_struct);
693 bfd_set_error (bfd_error_system_call);
695 rawptr = (struct aout_data_struct *) bfd_zalloc (abfd, amt);
699 abfd->tdata.aout_data = rawptr;
700 exec_hdr (abfd) = &(rawptr->e);
702 obj_textsec (abfd) = (asection *) NULL;
703 obj_datasec (abfd) = (asection *) NULL;
704 obj_bsssec (abfd) = (asection *) NULL;
711 aout_@var{size}_machine_type
714 enum machine_type aout_@var{size}_machine_type
715 (enum bfd_architecture arch,
716 unsigned long machine));
719 Keep track of machine architecture and machine type for
720 a.out's. Return the <<machine_type>> for a particular
721 architecture and machine, or <<M_UNKNOWN>> if that exact architecture
722 and machine can't be represented in a.out format.
724 If the architecture is understood, machine type 0 (default)
725 is always understood.
729 NAME(aout,machine_type) (arch, machine, unknown)
730 enum bfd_architecture arch;
731 unsigned long machine;
732 bfd_boolean *unknown;
734 enum machine_type arch_flags;
736 arch_flags = M_UNKNOWN;
743 || machine == bfd_mach_sparc
744 || machine == bfd_mach_sparc_sparclite
745 || machine == bfd_mach_sparc_sparclite_le
746 || machine == bfd_mach_sparc_v9)
747 arch_flags = M_SPARC;
748 else if (machine == bfd_mach_sparc_sparclet)
749 arch_flags = M_SPARCLET;
755 case 0: arch_flags = M_68010; break;
756 case bfd_mach_m68000: arch_flags = M_UNKNOWN; *unknown = FALSE; break;
757 case bfd_mach_m68010: arch_flags = M_68010; break;
758 case bfd_mach_m68020: arch_flags = M_68020; break;
759 default: arch_flags = M_UNKNOWN; break;
765 || machine == bfd_mach_i386_i386
766 || machine == bfd_mach_i386_i386_intel_syntax)
784 case bfd_mach_mips3000:
785 case bfd_mach_mips3900:
786 arch_flags = M_MIPS1;
788 case bfd_mach_mips6000:
789 arch_flags = M_MIPS2;
791 case bfd_mach_mips4000:
792 case bfd_mach_mips4010:
793 case bfd_mach_mips4100:
794 case bfd_mach_mips4300:
795 case bfd_mach_mips4400:
796 case bfd_mach_mips4600:
797 case bfd_mach_mips4650:
798 case bfd_mach_mips8000:
799 case bfd_mach_mips10000:
800 case bfd_mach_mips12000:
801 case bfd_mach_mips16:
802 case bfd_mach_mipsisa32:
804 case bfd_mach_mipsisa64:
805 case bfd_mach_mips_sb1:
806 /* FIXME: These should be MIPS3, MIPS4, MIPS16, MIPS32, etc. */
807 arch_flags = M_MIPS2;
810 arch_flags = M_UNKNOWN;
818 case 0: arch_flags = M_NS32532; break;
819 case 32032: arch_flags = M_NS32032; break;
820 case 32532: arch_flags = M_NS32532; break;
821 default: arch_flags = M_UNKNOWN; break;
830 if (machine == 0 || machine == 255)
835 arch_flags = M_UNKNOWN;
838 if (arch_flags != M_UNKNOWN)
846 aout_@var{size}_set_arch_mach
849 bfd_boolean aout_@var{size}_set_arch_mach,
851 enum bfd_architecture arch,
852 unsigned long machine));
855 Set the architecture and the machine of the BFD @var{abfd} to the
856 values @var{arch} and @var{machine}. Verify that @var{abfd}'s format
857 can support the architecture required.
861 NAME(aout,set_arch_mach) (abfd, arch, machine)
863 enum bfd_architecture arch;
864 unsigned long machine;
866 if (! bfd_default_set_arch_mach (abfd, arch, machine))
869 if (arch != bfd_arch_unknown)
873 NAME(aout,machine_type) (arch, machine, &unknown);
878 /* Determine the size of a relocation entry. */
884 obj_reloc_entry_size (abfd) = RELOC_EXT_SIZE;
887 obj_reloc_entry_size (abfd) = RELOC_STD_SIZE;
891 return (*aout_backend_info (abfd)->set_sizes) (abfd);
895 adjust_o_magic (abfd, execp)
897 struct internal_exec *execp;
899 file_ptr pos = adata (abfd).exec_bytes_size;
904 obj_textsec (abfd)->filepos = pos;
905 if (!obj_textsec (abfd)->user_set_vma)
906 obj_textsec (abfd)->vma = vma;
908 vma = obj_textsec (abfd)->vma;
910 pos += obj_textsec (abfd)->_raw_size;
911 vma += obj_textsec (abfd)->_raw_size;
914 if (!obj_datasec (abfd)->user_set_vma)
916 #if 0 /* ?? Does alignment in the file image really matter? */
917 pad = align_power (vma, obj_datasec (abfd)->alignment_power) - vma;
919 obj_textsec (abfd)->_raw_size += pad;
922 obj_datasec (abfd)->vma = vma;
925 vma = obj_datasec (abfd)->vma;
926 obj_datasec (abfd)->filepos = pos;
927 pos += obj_datasec (abfd)->_raw_size;
928 vma += obj_datasec (abfd)->_raw_size;
931 if (!obj_bsssec (abfd)->user_set_vma)
934 pad = align_power (vma, obj_bsssec (abfd)->alignment_power) - vma;
936 obj_datasec (abfd)->_raw_size += pad;
939 obj_bsssec (abfd)->vma = vma;
943 /* The VMA of the .bss section is set by the VMA of the
944 .data section plus the size of the .data section. We may
945 need to add padding bytes to make this true. */
946 pad = obj_bsssec (abfd)->vma - vma;
949 obj_datasec (abfd)->_raw_size += pad;
953 obj_bsssec (abfd)->filepos = pos;
955 /* Fix up the exec header. */
956 execp->a_text = obj_textsec (abfd)->_raw_size;
957 execp->a_data = obj_datasec (abfd)->_raw_size;
958 execp->a_bss = obj_bsssec (abfd)->_raw_size;
959 N_SET_MAGIC (*execp, OMAGIC);
963 adjust_z_magic (abfd, execp)
965 struct internal_exec *execp;
967 bfd_size_type data_pad, text_pad;
969 const struct aout_backend_data *abdp;
970 int ztih; /* Nonzero if text includes exec header. */
972 abdp = aout_backend_info (abfd);
976 && (abdp->text_includes_header
977 || obj_aout_subformat (abfd) == q_magic_format));
978 obj_textsec (abfd)->filepos = (ztih
979 ? adata (abfd).exec_bytes_size
980 : adata (abfd).zmagic_disk_block_size);
981 if (! obj_textsec (abfd)->user_set_vma)
983 /* ?? Do we really need to check for relocs here? */
984 obj_textsec (abfd)->vma = ((abfd->flags & HAS_RELOC)
987 ? (abdp->default_text_vma
988 + adata (abfd).exec_bytes_size)
989 : abdp->default_text_vma));
994 /* The .text section is being loaded at an unusual address. We
995 may need to pad it such that the .data section starts at a page
998 text_pad = ((obj_textsec (abfd)->filepos - obj_textsec (abfd)->vma)
999 & (adata (abfd).page_size - 1));
1001 text_pad = ((- obj_textsec (abfd)->vma)
1002 & (adata (abfd).page_size - 1));
1005 /* Find start of data. */
1008 text_end = obj_textsec (abfd)->filepos + obj_textsec (abfd)->_raw_size;
1009 text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end;
1013 /* Note that if page_size == zmagic_disk_block_size, then
1014 filepos == page_size, and this case is the same as the ztih
1016 text_end = obj_textsec (abfd)->_raw_size;
1017 text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end;
1018 text_end += obj_textsec (abfd)->filepos;
1020 obj_textsec (abfd)->_raw_size += text_pad;
1021 text_end += text_pad;
1024 if (!obj_datasec (abfd)->user_set_vma)
1027 vma = obj_textsec (abfd)->vma + obj_textsec (abfd)->_raw_size;
1028 obj_datasec (abfd)->vma = BFD_ALIGN (vma, adata (abfd).segment_size);
1030 if (abdp && abdp->zmagic_mapped_contiguous)
1032 asection * text = obj_textsec (abfd);
1033 asection * data = obj_datasec (abfd);
1035 text_pad = data->vma - (text->vma + text->_raw_size);
1036 /* Only pad the text section if the data
1037 section is going to be placed after it. */
1039 text->_raw_size += text_pad;
1041 obj_datasec (abfd)->filepos = (obj_textsec (abfd)->filepos
1042 + obj_textsec (abfd)->_raw_size);
1044 /* Fix up exec header while we're at it. */
1045 execp->a_text = obj_textsec (abfd)->_raw_size;
1046 if (ztih && (!abdp || (abdp && !abdp->exec_header_not_counted)))
1047 execp->a_text += adata (abfd).exec_bytes_size;
1048 if (obj_aout_subformat (abfd) == q_magic_format)
1049 N_SET_MAGIC (*execp, QMAGIC);
1051 N_SET_MAGIC (*execp, ZMAGIC);
1053 /* Spec says data section should be rounded up to page boundary. */
1054 obj_datasec (abfd)->_raw_size
1055 = align_power (obj_datasec (abfd)->_raw_size,
1056 obj_bsssec (abfd)->alignment_power);
1057 execp->a_data = BFD_ALIGN (obj_datasec (abfd)->_raw_size,
1058 adata (abfd).page_size);
1059 data_pad = execp->a_data - obj_datasec (abfd)->_raw_size;
1062 if (!obj_bsssec (abfd)->user_set_vma)
1063 obj_bsssec (abfd)->vma = (obj_datasec (abfd)->vma
1064 + obj_datasec (abfd)->_raw_size);
1065 /* If the BSS immediately follows the data section and extra space
1066 in the page is left after the data section, fudge data
1067 in the header so that the bss section looks smaller by that
1068 amount. We'll start the bss section there, and lie to the OS.
1069 (Note that a linker script, as well as the above assignment,
1070 could have explicitly set the BSS vma to immediately follow
1071 the data section.) */
1072 if (align_power (obj_bsssec (abfd)->vma, obj_bsssec (abfd)->alignment_power)
1073 == obj_datasec (abfd)->vma + obj_datasec (abfd)->_raw_size)
1074 execp->a_bss = (data_pad > obj_bsssec (abfd)->_raw_size
1075 ? 0 : obj_bsssec (abfd)->_raw_size - data_pad);
1077 execp->a_bss = obj_bsssec (abfd)->_raw_size;
1081 adjust_n_magic (abfd, execp)
1083 struct internal_exec *execp;
1085 file_ptr pos = adata (abfd).exec_bytes_size;
1090 obj_textsec (abfd)->filepos = pos;
1091 if (!obj_textsec (abfd)->user_set_vma)
1092 obj_textsec (abfd)->vma = vma;
1094 vma = obj_textsec (abfd)->vma;
1095 pos += obj_textsec (abfd)->_raw_size;
1096 vma += obj_textsec (abfd)->_raw_size;
1099 obj_datasec (abfd)->filepos = pos;
1100 if (!obj_datasec (abfd)->user_set_vma)
1101 obj_datasec (abfd)->vma = BFD_ALIGN (vma, adata (abfd).segment_size);
1102 vma = obj_datasec (abfd)->vma;
1104 /* Since BSS follows data immediately, see if it needs alignment. */
1105 vma += obj_datasec (abfd)->_raw_size;
1106 pad = align_power (vma, obj_bsssec (abfd)->alignment_power) - vma;
1107 obj_datasec (abfd)->_raw_size += pad;
1108 pos += obj_datasec (abfd)->_raw_size;
1111 if (!obj_bsssec (abfd)->user_set_vma)
1112 obj_bsssec (abfd)->vma = vma;
1114 vma = obj_bsssec (abfd)->vma;
1116 /* Fix up exec header. */
1117 execp->a_text = obj_textsec (abfd)->_raw_size;
1118 execp->a_data = obj_datasec (abfd)->_raw_size;
1119 execp->a_bss = obj_bsssec (abfd)->_raw_size;
1120 N_SET_MAGIC (*execp, NMAGIC);
1124 NAME(aout,adjust_sizes_and_vmas) (abfd, text_size, text_end)
1126 bfd_size_type *text_size;
1127 file_ptr *text_end ATTRIBUTE_UNUSED;
1129 struct internal_exec *execp = exec_hdr (abfd);
1131 if (! NAME(aout,make_sections) (abfd))
1134 if (adata (abfd).magic != undecided_magic)
1137 obj_textsec (abfd)->_raw_size =
1138 align_power (obj_textsec (abfd)->_raw_size,
1139 obj_textsec (abfd)->alignment_power);
1141 *text_size = obj_textsec (abfd)->_raw_size;
1142 /* Rule (heuristic) for when to pad to a new page. Note that there
1143 are (at least) two ways demand-paged (ZMAGIC) files have been
1144 handled. Most Berkeley-based systems start the text segment at
1145 (TARGET_PAGE_SIZE). However, newer versions of SUNOS start the text
1146 segment right after the exec header; the latter is counted in the
1147 text segment size, and is paged in by the kernel with the rest of
1150 /* This perhaps isn't the right way to do this, but made it simpler for me
1151 to understand enough to implement it. Better would probably be to go
1152 right from BFD flags to alignment/positioning characteristics. But the
1153 old code was sloppy enough about handling the flags, and had enough
1154 other magic, that it was a little hard for me to understand. I think
1155 I understand it better now, but I haven't time to do the cleanup this
1158 if (abfd->flags & D_PAGED)
1159 /* Whether or not WP_TEXT is set -- let D_PAGED override. */
1160 adata (abfd).magic = z_magic;
1161 else if (abfd->flags & WP_TEXT)
1162 adata (abfd).magic = n_magic;
1164 adata (abfd).magic = o_magic;
1166 #ifdef BFD_AOUT_DEBUG /* requires gcc2 */
1168 fprintf (stderr, "%s text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x,%x>\n",
1170 switch (adata (abfd).magic)
1172 case n_magic: str = "NMAGIC"; break;
1173 case o_magic: str = "OMAGIC"; break;
1174 case z_magic: str = "ZMAGIC"; break;
1179 obj_textsec (abfd)->vma, obj_textsec (abfd)->_raw_size,
1180 obj_textsec (abfd)->alignment_power,
1181 obj_datasec (abfd)->vma, obj_datasec (abfd)->_raw_size,
1182 obj_datasec (abfd)->alignment_power,
1183 obj_bsssec (abfd)->vma, obj_bsssec (abfd)->_raw_size,
1184 obj_bsssec (abfd)->alignment_power);
1188 switch (adata (abfd).magic)
1191 adjust_o_magic (abfd, execp);
1194 adjust_z_magic (abfd, execp);
1197 adjust_n_magic (abfd, execp);
1203 #ifdef BFD_AOUT_DEBUG
1204 fprintf (stderr, " text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x>\n",
1205 obj_textsec (abfd)->vma, obj_textsec (abfd)->_raw_size,
1206 obj_textsec (abfd)->filepos,
1207 obj_datasec (abfd)->vma, obj_datasec (abfd)->_raw_size,
1208 obj_datasec (abfd)->filepos,
1209 obj_bsssec (abfd)->vma, obj_bsssec (abfd)->_raw_size);
1217 aout_@var{size}_new_section_hook
1220 bfd_boolean aout_@var{size}_new_section_hook,
1222 asection *newsect));
1225 Called by the BFD in response to a @code{bfd_make_section}
1229 NAME(aout,new_section_hook) (abfd, newsect)
1233 /* Align to double at least. */
1234 newsect->alignment_power = bfd_get_arch_info (abfd)->section_align_power;
1236 if (bfd_get_format (abfd) == bfd_object)
1238 if (obj_textsec (abfd) == NULL && !strcmp (newsect->name, ".text"))
1240 obj_textsec (abfd)= newsect;
1241 newsect->target_index = N_TEXT;
1245 if (obj_datasec (abfd) == NULL && !strcmp (newsect->name, ".data"))
1247 obj_datasec (abfd) = newsect;
1248 newsect->target_index = N_DATA;
1252 if (obj_bsssec (abfd) == NULL && !strcmp (newsect->name, ".bss"))
1254 obj_bsssec (abfd) = newsect;
1255 newsect->target_index = N_BSS;
1260 /* We allow more than three sections internally. */
1265 NAME(aout,set_section_contents) (abfd, section, location, offset, count)
1270 bfd_size_type count;
1273 bfd_size_type text_size;
1275 if (! abfd->output_has_begun)
1277 if (! NAME(aout,adjust_sizes_and_vmas) (abfd, &text_size, &text_end))
1281 if (section == obj_bsssec (abfd))
1283 bfd_set_error (bfd_error_no_contents);
1287 if (section != obj_textsec (abfd)
1288 && section != obj_datasec (abfd))
1290 (*_bfd_error_handler)
1291 (_("%s: can not represent section `%s' in a.out object file format"),
1292 bfd_get_filename (abfd), bfd_get_section_name (abfd, section));
1293 bfd_set_error (bfd_error_nonrepresentable_section);
1299 if (bfd_seek (abfd, section->filepos + offset, SEEK_SET) != 0
1300 || bfd_bwrite (location, count, abfd) != count)
1307 /* Read the external symbols from an a.out file. */
1310 aout_get_external_symbols (abfd)
1313 if (obj_aout_external_syms (abfd) == (struct external_nlist *) NULL)
1315 bfd_size_type count;
1316 struct external_nlist *syms;
1319 count = exec_hdr (abfd)->a_syms / EXTERNAL_NLIST_SIZE;
1322 if (! bfd_get_file_window (abfd, obj_sym_filepos (abfd),
1323 exec_hdr (abfd)->a_syms,
1324 &obj_aout_sym_window (abfd), TRUE))
1326 syms = (struct external_nlist *) obj_aout_sym_window (abfd).data;
1328 /* We allocate using malloc to make the values easy to free
1329 later on. If we put them on the objalloc it might not be
1330 possible to free them. */
1331 syms = ((struct external_nlist *)
1332 bfd_malloc (count * EXTERNAL_NLIST_SIZE));
1333 if (syms == (struct external_nlist *) NULL && count != 0)
1336 amt = exec_hdr (abfd)->a_syms;
1337 if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0
1338 || bfd_bread (syms, amt, abfd) != amt)
1345 obj_aout_external_syms (abfd) = syms;
1346 obj_aout_external_sym_count (abfd) = count;
1349 if (obj_aout_external_strings (abfd) == NULL
1350 && exec_hdr (abfd)->a_syms != 0)
1352 unsigned char string_chars[BYTES_IN_WORD];
1353 bfd_size_type stringsize;
1355 bfd_size_type amt = BYTES_IN_WORD;
1357 /* Get the size of the strings. */
1358 if (bfd_seek (abfd, obj_str_filepos (abfd), SEEK_SET) != 0
1359 || bfd_bread ((PTR) string_chars, amt, abfd) != amt)
1361 stringsize = GET_WORD (abfd, string_chars);
1364 if (! bfd_get_file_window (abfd, obj_str_filepos (abfd), stringsize,
1365 &obj_aout_string_window (abfd), TRUE))
1367 strings = (char *) obj_aout_string_window (abfd).data;
1369 strings = (char *) bfd_malloc (stringsize + 1);
1370 if (strings == NULL)
1373 /* Skip space for the string count in the buffer for convenience
1374 when using indexes. */
1375 amt = stringsize - BYTES_IN_WORD;
1376 if (bfd_bread (strings + BYTES_IN_WORD, amt, abfd) != amt)
1383 /* Ensure that a zero index yields an empty string. */
1386 strings[stringsize - 1] = 0;
1388 obj_aout_external_strings (abfd) = strings;
1389 obj_aout_external_string_size (abfd) = stringsize;
1395 /* Translate an a.out symbol into a BFD symbol. The desc, other, type
1396 and symbol->value fields of CACHE_PTR will be set from the a.out
1397 nlist structure. This function is responsible for setting
1398 symbol->flags and symbol->section, and adjusting symbol->value. */
1401 translate_from_native_sym_flags (abfd, cache_ptr)
1403 aout_symbol_type *cache_ptr;
1407 if ((cache_ptr->type & N_STAB) != 0
1408 || cache_ptr->type == N_FN)
1412 /* This is a debugging symbol. */
1413 cache_ptr->symbol.flags = BSF_DEBUGGING;
1415 /* Work out the symbol section. */
1416 switch (cache_ptr->type & N_TYPE)
1420 sec = obj_textsec (abfd);
1423 sec = obj_datasec (abfd);
1426 sec = obj_bsssec (abfd);
1430 sec = bfd_abs_section_ptr;
1434 cache_ptr->symbol.section = sec;
1435 cache_ptr->symbol.value -= sec->vma;
1440 /* Get the default visibility. This does not apply to all types, so
1441 we just hold it in a local variable to use if wanted. */
1442 if ((cache_ptr->type & N_EXT) == 0)
1443 visible = BSF_LOCAL;
1445 visible = BSF_GLOBAL;
1447 switch (cache_ptr->type)
1450 case N_ABS: case N_ABS | N_EXT:
1451 cache_ptr->symbol.section = bfd_abs_section_ptr;
1452 cache_ptr->symbol.flags = visible;
1455 case N_UNDF | N_EXT:
1456 if (cache_ptr->symbol.value != 0)
1458 /* This is a common symbol. */
1459 cache_ptr->symbol.flags = BSF_GLOBAL;
1460 cache_ptr->symbol.section = bfd_com_section_ptr;
1464 cache_ptr->symbol.flags = 0;
1465 cache_ptr->symbol.section = bfd_und_section_ptr;
1469 case N_TEXT: case N_TEXT | N_EXT:
1470 cache_ptr->symbol.section = obj_textsec (abfd);
1471 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1472 cache_ptr->symbol.flags = visible;
1475 /* N_SETV symbols used to represent set vectors placed in the
1476 data section. They are no longer generated. Theoretically,
1477 it was possible to extract the entries and combine them with
1478 new ones, although I don't know if that was ever actually
1479 done. Unless that feature is restored, treat them as data
1481 case N_SETV: case N_SETV | N_EXT:
1482 case N_DATA: case N_DATA | N_EXT:
1483 cache_ptr->symbol.section = obj_datasec (abfd);
1484 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1485 cache_ptr->symbol.flags = visible;
1488 case N_BSS: case N_BSS | N_EXT:
1489 cache_ptr->symbol.section = obj_bsssec (abfd);
1490 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1491 cache_ptr->symbol.flags = visible;
1494 case N_SETA: case N_SETA | N_EXT:
1495 case N_SETT: case N_SETT | N_EXT:
1496 case N_SETD: case N_SETD | N_EXT:
1497 case N_SETB: case N_SETB | N_EXT:
1499 /* This code is no longer needed. It used to be used to make
1500 the linker handle set symbols, but they are now handled in
1501 the add_symbols routine instead. */
1504 arelent_chain *reloc;
1505 asection *into_section;
1508 /* This is a set symbol. The name of the symbol is the name
1509 of the set (e.g., __CTOR_LIST__). The value of the symbol
1510 is the value to add to the set. We create a section with
1511 the same name as the symbol, and add a reloc to insert the
1512 appropriate value into the section.
1514 This action is actually obsolete; it used to make the
1515 linker do the right thing, but the linker no longer uses
1518 section = bfd_get_section_by_name (abfd, cache_ptr->symbol.name);
1519 if (section == NULL)
1523 amt = strlen (cache_ptr->symbol.name) + 1;
1524 copy = bfd_alloc (abfd, amt);
1528 strcpy (copy, cache_ptr->symbol.name);
1529 section = bfd_make_section (abfd, copy);
1530 if (section == NULL)
1534 amt = sizeof (arelent_chain);
1535 reloc = (arelent_chain *) bfd_alloc (abfd, amt);
1539 /* Build a relocation entry for the constructor. */
1540 switch (cache_ptr->type & N_TYPE)
1543 into_section = bfd_abs_section_ptr;
1544 cache_ptr->type = N_ABS;
1547 into_section = obj_textsec (abfd);
1548 cache_ptr->type = N_TEXT;
1551 into_section = obj_datasec (abfd);
1552 cache_ptr->type = N_DATA;
1555 into_section = obj_bsssec (abfd);
1556 cache_ptr->type = N_BSS;
1560 /* Build a relocation pointing into the constructor section
1561 pointing at the symbol in the set vector specified. */
1562 reloc->relent.addend = cache_ptr->symbol.value;
1563 cache_ptr->symbol.section = into_section;
1564 reloc->relent.sym_ptr_ptr = into_section->symbol_ptr_ptr;
1566 /* We modify the symbol to belong to a section depending upon
1567 the name of the symbol, and add to the size of the section
1568 to contain a pointer to the symbol. Build a reloc entry to
1569 relocate to this symbol attached to this section. */
1570 section->flags = SEC_CONSTRUCTOR | SEC_RELOC;
1572 section->reloc_count++;
1573 section->alignment_power = 2;
1575 reloc->next = section->constructor_chain;
1576 section->constructor_chain = reloc;
1577 reloc->relent.address = section->_raw_size;
1578 section->_raw_size += BYTES_IN_WORD;
1580 reloc->relent.howto = CTOR_TABLE_RELOC_HOWTO (abfd);
1584 switch (cache_ptr->type & N_TYPE)
1587 cache_ptr->symbol.section = bfd_abs_section_ptr;
1590 cache_ptr->symbol.section = obj_textsec (abfd);
1593 cache_ptr->symbol.section = obj_datasec (abfd);
1596 cache_ptr->symbol.section = obj_bsssec (abfd);
1600 cache_ptr->symbol.flags |= BSF_CONSTRUCTOR;
1605 /* This symbol is the text of a warning message. The next
1606 symbol is the symbol to associate the warning with. If a
1607 reference is made to that symbol, a warning is issued. */
1608 cache_ptr->symbol.flags = BSF_DEBUGGING | BSF_WARNING;
1609 cache_ptr->symbol.section = bfd_abs_section_ptr;
1612 case N_INDR: case N_INDR | N_EXT:
1613 /* An indirect symbol. This consists of two symbols in a row.
1614 The first symbol is the name of the indirection. The second
1615 symbol is the name of the target. A reference to the first
1616 symbol becomes a reference to the second. */
1617 cache_ptr->symbol.flags = BSF_DEBUGGING | BSF_INDIRECT | visible;
1618 cache_ptr->symbol.section = bfd_ind_section_ptr;
1622 cache_ptr->symbol.section = bfd_und_section_ptr;
1623 cache_ptr->symbol.flags = BSF_WEAK;
1627 cache_ptr->symbol.section = bfd_abs_section_ptr;
1628 cache_ptr->symbol.flags = BSF_WEAK;
1632 cache_ptr->symbol.section = obj_textsec (abfd);
1633 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1634 cache_ptr->symbol.flags = BSF_WEAK;
1638 cache_ptr->symbol.section = obj_datasec (abfd);
1639 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1640 cache_ptr->symbol.flags = BSF_WEAK;
1644 cache_ptr->symbol.section = obj_bsssec (abfd);
1645 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1646 cache_ptr->symbol.flags = BSF_WEAK;
1653 /* Set the fields of SYM_POINTER according to CACHE_PTR. */
1656 translate_to_native_sym_flags (abfd, cache_ptr, sym_pointer)
1659 struct external_nlist *sym_pointer;
1661 bfd_vma value = cache_ptr->value;
1665 /* Mask out any existing type bits in case copying from one section
1667 sym_pointer->e_type[0] &= ~N_TYPE;
1669 sec = bfd_get_section (cache_ptr);
1674 /* This case occurs, e.g., for the *DEBUG* section of a COFF
1676 (*_bfd_error_handler)
1677 (_("%s: can not represent section for symbol `%s' in a.out object file format"),
1678 bfd_get_filename (abfd),
1679 cache_ptr->name != NULL ? cache_ptr->name : _("*unknown*"));
1680 bfd_set_error (bfd_error_nonrepresentable_section);
1684 if (sec->output_section != NULL)
1686 off = sec->output_offset;
1687 sec = sec->output_section;
1690 if (bfd_is_abs_section (sec))
1691 sym_pointer->e_type[0] |= N_ABS;
1692 else if (sec == obj_textsec (abfd))
1693 sym_pointer->e_type[0] |= N_TEXT;
1694 else if (sec == obj_datasec (abfd))
1695 sym_pointer->e_type[0] |= N_DATA;
1696 else if (sec == obj_bsssec (abfd))
1697 sym_pointer->e_type[0] |= N_BSS;
1698 else if (bfd_is_und_section (sec))
1699 sym_pointer->e_type[0] = N_UNDF | N_EXT;
1700 else if (bfd_is_ind_section (sec))
1701 sym_pointer->e_type[0] = N_INDR;
1702 else if (bfd_is_com_section (sec))
1703 sym_pointer->e_type[0] = N_UNDF | N_EXT;
1706 (*_bfd_error_handler)
1707 (_("%s: can not represent section `%s' in a.out object file format"),
1708 bfd_get_filename (abfd), bfd_get_section_name (abfd, sec));
1709 bfd_set_error (bfd_error_nonrepresentable_section);
1713 /* Turn the symbol from section relative to absolute again. */
1714 value += sec->vma + off;
1716 if ((cache_ptr->flags & BSF_WARNING) != 0)
1717 sym_pointer->e_type[0] = N_WARNING;
1719 if ((cache_ptr->flags & BSF_DEBUGGING) != 0)
1720 sym_pointer->e_type[0] = ((aout_symbol_type *) cache_ptr)->type;
1721 else if ((cache_ptr->flags & BSF_GLOBAL) != 0)
1722 sym_pointer->e_type[0] |= N_EXT;
1723 else if ((cache_ptr->flags & BSF_LOCAL) != 0)
1724 sym_pointer->e_type[0] &= ~N_EXT;
1726 if ((cache_ptr->flags & BSF_CONSTRUCTOR) != 0)
1728 int type = ((aout_symbol_type *) cache_ptr)->type;
1732 case N_ABS: type = N_SETA; break;
1733 case N_TEXT: type = N_SETT; break;
1734 case N_DATA: type = N_SETD; break;
1735 case N_BSS: type = N_SETB; break;
1737 sym_pointer->e_type[0] = type;
1740 if ((cache_ptr->flags & BSF_WEAK) != 0)
1744 switch (sym_pointer->e_type[0] & N_TYPE)
1747 case N_ABS: type = N_WEAKA; break;
1748 case N_TEXT: type = N_WEAKT; break;
1749 case N_DATA: type = N_WEAKD; break;
1750 case N_BSS: type = N_WEAKB; break;
1751 case N_UNDF: type = N_WEAKU; break;
1753 sym_pointer->e_type[0] = type;
1756 PUT_WORD (abfd, value, sym_pointer->e_value);
1761 /* Native-level interface to symbols. */
1764 NAME(aout,make_empty_symbol) (abfd)
1767 bfd_size_type amt = sizeof (aout_symbol_type);
1768 aout_symbol_type *new = (aout_symbol_type *) bfd_zalloc (abfd, amt);
1771 new->symbol.the_bfd = abfd;
1773 return &new->symbol;
1776 /* Translate a set of internal symbols into external symbols. */
1779 NAME(aout,translate_symbol_table) (abfd, in, ext, count, str, strsize, dynamic)
1781 aout_symbol_type *in;
1782 struct external_nlist *ext;
1783 bfd_size_type count;
1785 bfd_size_type strsize;
1786 bfd_boolean dynamic;
1788 struct external_nlist *ext_end;
1790 ext_end = ext + count;
1791 for (; ext < ext_end; ext++, in++)
1795 x = GET_WORD (abfd, ext->e_strx);
1796 in->symbol.the_bfd = abfd;
1798 /* For the normal symbols, the zero index points at the number
1799 of bytes in the string table but is to be interpreted as the
1800 null string. For the dynamic symbols, the number of bytes in
1801 the string table is stored in the __DYNAMIC structure and the
1802 zero index points at an actual string. */
1803 if (x == 0 && ! dynamic)
1804 in->symbol.name = "";
1805 else if (x < strsize)
1806 in->symbol.name = str + x;
1810 in->symbol.value = GET_SWORD (abfd, ext->e_value);
1811 in->desc = H_GET_16 (abfd, ext->e_desc);
1812 in->other = H_GET_8 (abfd, ext->e_other);
1813 in->type = H_GET_8 (abfd, ext->e_type);
1814 in->symbol.udata.p = NULL;
1816 if (! translate_from_native_sym_flags (abfd, in))
1820 in->symbol.flags |= BSF_DYNAMIC;
1826 /* We read the symbols into a buffer, which is discarded when this
1827 function exits. We read the strings into a buffer large enough to
1828 hold them all plus all the cached symbol entries. */
1831 NAME(aout,slurp_symbol_table) (abfd)
1834 struct external_nlist *old_external_syms;
1835 aout_symbol_type *cached;
1836 bfd_size_type cached_size;
1838 /* If there's no work to be done, don't do any. */
1839 if (obj_aout_symbols (abfd) != (aout_symbol_type *) NULL)
1842 old_external_syms = obj_aout_external_syms (abfd);
1844 if (! aout_get_external_symbols (abfd))
1847 cached_size = obj_aout_external_sym_count (abfd);
1848 cached_size *= sizeof (aout_symbol_type);
1849 cached = (aout_symbol_type *) bfd_zmalloc (cached_size);
1850 if (cached == NULL && cached_size != 0)
1853 /* Convert from external symbol information to internal. */
1854 if (! (NAME(aout,translate_symbol_table)
1856 obj_aout_external_syms (abfd),
1857 obj_aout_external_sym_count (abfd),
1858 obj_aout_external_strings (abfd),
1859 obj_aout_external_string_size (abfd),
1866 bfd_get_symcount (abfd) = obj_aout_external_sym_count (abfd);
1868 obj_aout_symbols (abfd) = cached;
1870 /* It is very likely that anybody who calls this function will not
1871 want the external symbol information, so if it was allocated
1872 because of our call to aout_get_external_symbols, we free it up
1873 right away to save space. */
1874 if (old_external_syms == (struct external_nlist *) NULL
1875 && obj_aout_external_syms (abfd) != (struct external_nlist *) NULL)
1878 bfd_free_window (&obj_aout_sym_window (abfd));
1880 free (obj_aout_external_syms (abfd));
1882 obj_aout_external_syms (abfd) = NULL;
1888 /* We use a hash table when writing out symbols so that we only write
1889 out a particular string once. This helps particularly when the
1890 linker writes out stabs debugging entries, because each different
1891 contributing object file tends to have many duplicate stabs
1894 This hash table code breaks dbx on SunOS 4.1.3, so we don't do it
1895 if BFD_TRADITIONAL_FORMAT is set. */
1897 static bfd_size_type add_to_stringtab
1898 PARAMS ((bfd *, struct bfd_strtab_hash *, const char *, bfd_boolean));
1899 static bfd_boolean emit_stringtab
1900 PARAMS ((bfd *, struct bfd_strtab_hash *));
1902 /* Get the index of a string in a strtab, adding it if it is not
1905 static INLINE bfd_size_type
1906 add_to_stringtab (abfd, tab, str, copy)
1908 struct bfd_strtab_hash *tab;
1913 bfd_size_type index;
1915 /* An index of 0 always means the empty string. */
1916 if (str == 0 || *str == '\0')
1919 /* Don't hash if BFD_TRADITIONAL_FORMAT is set, because SunOS dbx
1920 doesn't understand a hashed string table. */
1922 if ((abfd->flags & BFD_TRADITIONAL_FORMAT) != 0)
1925 index = _bfd_stringtab_add (tab, str, hash, copy);
1927 if (index != (bfd_size_type) -1)
1929 /* Add BYTES_IN_WORD to the return value to account for the
1930 space taken up by the string table size. */
1931 index += BYTES_IN_WORD;
1937 /* Write out a strtab. ABFD is already at the right location in the
1941 emit_stringtab (abfd, tab)
1943 struct bfd_strtab_hash *tab;
1945 bfd_byte buffer[BYTES_IN_WORD];
1946 bfd_size_type amt = BYTES_IN_WORD;
1948 /* The string table starts with the size. */
1949 PUT_WORD (abfd, _bfd_stringtab_size (tab) + BYTES_IN_WORD, buffer);
1950 if (bfd_bwrite ((PTR) buffer, amt, abfd) != amt)
1953 return _bfd_stringtab_emit (abfd, tab);
1957 NAME(aout,write_syms) (abfd)
1960 unsigned int count ;
1961 asymbol **generic = bfd_get_outsymbols (abfd);
1962 struct bfd_strtab_hash *strtab;
1964 strtab = _bfd_stringtab_init ();
1968 for (count = 0; count < bfd_get_symcount (abfd); count++)
1970 asymbol *g = generic[count];
1972 struct external_nlist nsp;
1975 indx = add_to_stringtab (abfd, strtab, g->name, FALSE);
1976 if (indx == (bfd_size_type) -1)
1978 PUT_WORD (abfd, indx, (bfd_byte *) nsp.e_strx);
1980 if (bfd_asymbol_flavour (g) == abfd->xvec->flavour)
1982 H_PUT_16 (abfd, aout_symbol (g)->desc, nsp.e_desc);
1983 H_PUT_8 (abfd, aout_symbol (g)->other, nsp.e_other);
1984 H_PUT_8 (abfd, aout_symbol (g)->type, nsp.e_type);
1988 H_PUT_16 (abfd, 0, nsp.e_desc);
1989 H_PUT_8 (abfd, 0, nsp.e_other);
1990 H_PUT_8 (abfd, 0, nsp.e_type);
1993 if (! translate_to_native_sym_flags (abfd, g, &nsp))
1996 amt = EXTERNAL_NLIST_SIZE;
1997 if (bfd_bwrite ((PTR) &nsp, amt, abfd) != amt)
2000 /* NB: `KEEPIT' currently overlays `udata.p', so set this only
2001 here, at the end. */
2005 if (! emit_stringtab (abfd, strtab))
2008 _bfd_stringtab_free (strtab);
2013 _bfd_stringtab_free (strtab);
2018 NAME(aout,get_symtab) (abfd, location)
2022 unsigned int counter = 0;
2023 aout_symbol_type *symbase;
2025 if (!NAME(aout,slurp_symbol_table) (abfd))
2028 for (symbase = obj_aout_symbols (abfd);
2029 counter++ < bfd_get_symcount (abfd);
2031 *(location++) = (asymbol *) (symbase++);
2033 return bfd_get_symcount (abfd);
2036 /* Standard reloc stuff. */
2037 /* Output standard relocation information to a file in target byte order. */
2039 extern void NAME(aout,swap_std_reloc_out)
2040 PARAMS ((bfd *, arelent *, struct reloc_std_external *));
2043 NAME(aout,swap_std_reloc_out) (abfd, g, natptr)
2046 struct reloc_std_external *natptr;
2049 asymbol *sym = *(g->sym_ptr_ptr);
2051 unsigned int r_length;
2053 int r_baserel, r_jmptable, r_relative;
2054 asection *output_section = sym->section->output_section;
2056 PUT_WORD (abfd, g->address, natptr->r_address);
2058 r_length = g->howto->size ; /* Size as a power of two. */
2059 r_pcrel = (int) g->howto->pc_relative; /* Relative to PC? */
2060 /* XXX This relies on relocs coming from a.out files. */
2061 r_baserel = (g->howto->type & 8) != 0;
2062 r_jmptable = (g->howto->type & 16) != 0;
2063 r_relative = (g->howto->type & 32) != 0;
2066 /* For a standard reloc, the addend is in the object file. */
2067 r_addend = g->addend + (*(g->sym_ptr_ptr))->section->output_section->vma;
2070 /* Name was clobbered by aout_write_syms to be symbol index. */
2072 /* If this relocation is relative to a symbol then set the
2073 r_index to the symbols index, and the r_extern bit.
2075 Absolute symbols can come in in two ways, either as an offset
2076 from the abs section, or as a symbol which has an abs value.
2077 check for that here. */
2079 if (bfd_is_com_section (output_section)
2080 || bfd_is_abs_section (output_section)
2081 || bfd_is_und_section (output_section))
2083 if (bfd_abs_section_ptr->symbol == sym)
2085 /* Whoops, looked like an abs symbol, but is
2086 really an offset from the abs section. */
2092 /* Fill in symbol. */
2094 r_index = (*(g->sym_ptr_ptr))->KEEPIT;
2099 /* Just an ordinary section. */
2101 r_index = output_section->target_index;
2104 /* Now the fun stuff. */
2105 if (bfd_header_big_endian (abfd))
2107 natptr->r_index[0] = r_index >> 16;
2108 natptr->r_index[1] = r_index >> 8;
2109 natptr->r_index[2] = r_index;
2110 natptr->r_type[0] = ((r_extern ? RELOC_STD_BITS_EXTERN_BIG : 0)
2111 | (r_pcrel ? RELOC_STD_BITS_PCREL_BIG : 0)
2112 | (r_baserel ? RELOC_STD_BITS_BASEREL_BIG : 0)
2113 | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_BIG : 0)
2114 | (r_relative ? RELOC_STD_BITS_RELATIVE_BIG : 0)
2115 | (r_length << RELOC_STD_BITS_LENGTH_SH_BIG));
2119 natptr->r_index[2] = r_index >> 16;
2120 natptr->r_index[1] = r_index >> 8;
2121 natptr->r_index[0] = r_index;
2122 natptr->r_type[0] = ((r_extern ? RELOC_STD_BITS_EXTERN_LITTLE : 0)
2123 | (r_pcrel ? RELOC_STD_BITS_PCREL_LITTLE : 0)
2124 | (r_baserel ? RELOC_STD_BITS_BASEREL_LITTLE : 0)
2125 | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_LITTLE : 0)
2126 | (r_relative ? RELOC_STD_BITS_RELATIVE_LITTLE : 0)
2127 | (r_length << RELOC_STD_BITS_LENGTH_SH_LITTLE));
2131 /* Extended stuff. */
2132 /* Output extended relocation information to a file in target byte order. */
2134 extern void NAME(aout,swap_ext_reloc_out)
2135 PARAMS ((bfd *, arelent *, struct reloc_ext_external *));
2138 NAME(aout,swap_ext_reloc_out) (abfd, g, natptr)
2141 register struct reloc_ext_external *natptr;
2145 unsigned int r_type;
2147 asymbol *sym = *(g->sym_ptr_ptr);
2148 asection *output_section = sym->section->output_section;
2150 PUT_WORD (abfd, g->address, natptr->r_address);
2152 r_type = (unsigned int) g->howto->type;
2154 r_addend = g->addend;
2155 if ((sym->flags & BSF_SECTION_SYM) != 0)
2156 r_addend += (*(g->sym_ptr_ptr))->section->output_section->vma;
2158 /* If this relocation is relative to a symbol then set the
2159 r_index to the symbols index, and the r_extern bit.
2161 Absolute symbols can come in in two ways, either as an offset
2162 from the abs section, or as a symbol which has an abs value.
2163 check for that here. */
2164 if (bfd_is_abs_section (bfd_get_section (sym)))
2169 else if ((sym->flags & BSF_SECTION_SYM) == 0)
2171 if (bfd_is_und_section (bfd_get_section (sym))
2172 || (sym->flags & BSF_GLOBAL) != 0)
2176 r_index = (*(g->sym_ptr_ptr))->KEEPIT;
2180 /* Just an ordinary section. */
2182 r_index = output_section->target_index;
2185 /* Now the fun stuff. */
2186 if (bfd_header_big_endian (abfd))
2188 natptr->r_index[0] = r_index >> 16;
2189 natptr->r_index[1] = r_index >> 8;
2190 natptr->r_index[2] = r_index;
2191 natptr->r_type[0] = ((r_extern ? RELOC_EXT_BITS_EXTERN_BIG : 0)
2192 | (r_type << RELOC_EXT_BITS_TYPE_SH_BIG));
2196 natptr->r_index[2] = r_index >> 16;
2197 natptr->r_index[1] = r_index >> 8;
2198 natptr->r_index[0] = r_index;
2199 natptr->r_type[0] = ((r_extern ? RELOC_EXT_BITS_EXTERN_LITTLE : 0)
2200 | (r_type << RELOC_EXT_BITS_TYPE_SH_LITTLE));
2203 PUT_WORD (abfd, r_addend, natptr->r_addend);
2206 /* BFD deals internally with all things based from the section they're
2207 in. so, something in 10 bytes into a text section with a base of
2208 50 would have a symbol (.text+10) and know .text vma was 50.
2210 Aout keeps all it's symbols based from zero, so the symbol would
2211 contain 60. This macro subs the base of each section from the value
2212 to give the true offset from the section. */
2214 #define MOVE_ADDRESS(ad) \
2217 /* Undefined symbol. */ \
2218 cache_ptr->sym_ptr_ptr = symbols + r_index; \
2219 cache_ptr->addend = ad; \
2223 /* Defined, section relative. Replace symbol with pointer to \
2224 symbol which points to section. */ \
2228 case N_TEXT | N_EXT: \
2229 cache_ptr->sym_ptr_ptr = obj_textsec (abfd)->symbol_ptr_ptr; \
2230 cache_ptr->addend = ad - su->textsec->vma; \
2233 case N_DATA | N_EXT: \
2234 cache_ptr->sym_ptr_ptr = obj_datasec (abfd)->symbol_ptr_ptr; \
2235 cache_ptr->addend = ad - su->datasec->vma; \
2238 case N_BSS | N_EXT: \
2239 cache_ptr->sym_ptr_ptr = obj_bsssec (abfd)->symbol_ptr_ptr; \
2240 cache_ptr->addend = ad - su->bsssec->vma; \
2244 case N_ABS | N_EXT: \
2245 cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr; \
2246 cache_ptr->addend = ad; \
2252 NAME(aout,swap_ext_reloc_in) (abfd, bytes, cache_ptr, symbols, symcount)
2254 struct reloc_ext_external *bytes;
2257 bfd_size_type symcount;
2259 unsigned int r_index;
2261 unsigned int r_type;
2262 struct aoutdata *su = &(abfd->tdata.aout_data->a);
2264 cache_ptr->address = (GET_SWORD (abfd, bytes->r_address));
2266 /* Now the fun stuff. */
2267 if (bfd_header_big_endian (abfd))
2269 r_index = (((unsigned int) bytes->r_index[0] << 16)
2270 | ((unsigned int) bytes->r_index[1] << 8)
2271 | bytes->r_index[2]);
2272 r_extern = (0 != (bytes->r_type[0] & RELOC_EXT_BITS_EXTERN_BIG));
2273 r_type = ((bytes->r_type[0] & RELOC_EXT_BITS_TYPE_BIG)
2274 >> RELOC_EXT_BITS_TYPE_SH_BIG);
2278 r_index = (((unsigned int) bytes->r_index[2] << 16)
2279 | ((unsigned int) bytes->r_index[1] << 8)
2280 | bytes->r_index[0]);
2281 r_extern = (0 != (bytes->r_type[0] & RELOC_EXT_BITS_EXTERN_LITTLE));
2282 r_type = ((bytes->r_type[0] & RELOC_EXT_BITS_TYPE_LITTLE)
2283 >> RELOC_EXT_BITS_TYPE_SH_LITTLE);
2286 cache_ptr->howto = howto_table_ext + r_type;
2288 /* Base relative relocs are always against the symbol table,
2289 regardless of the setting of r_extern. r_extern just reflects
2290 whether the symbol the reloc is against is local or global. */
2291 if (r_type == (unsigned int) RELOC_BASE10
2292 || r_type == (unsigned int) RELOC_BASE13
2293 || r_type == (unsigned int) RELOC_BASE22)
2296 if (r_extern && r_index > symcount)
2298 /* We could arrange to return an error, but it might be useful
2299 to see the file even if it is bad. */
2304 MOVE_ADDRESS (GET_SWORD (abfd, bytes->r_addend));
2308 NAME(aout,swap_std_reloc_in) (abfd, bytes, cache_ptr, symbols, symcount)
2310 struct reloc_std_external *bytes;
2313 bfd_size_type symcount;
2315 unsigned int r_index;
2317 unsigned int r_length;
2319 int r_baserel, r_jmptable, r_relative;
2320 struct aoutdata *su = &(abfd->tdata.aout_data->a);
2321 unsigned int howto_idx;
2323 cache_ptr->address = H_GET_32 (abfd, bytes->r_address);
2325 /* Now the fun stuff. */
2326 if (bfd_header_big_endian (abfd))
2328 r_index = (((unsigned int) bytes->r_index[0] << 16)
2329 | ((unsigned int) bytes->r_index[1] << 8)
2330 | bytes->r_index[2]);
2331 r_extern = (0 != (bytes->r_type[0] & RELOC_STD_BITS_EXTERN_BIG));
2332 r_pcrel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_PCREL_BIG));
2333 r_baserel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_BASEREL_BIG));
2334 r_jmptable= (0 != (bytes->r_type[0] & RELOC_STD_BITS_JMPTABLE_BIG));
2335 r_relative= (0 != (bytes->r_type[0] & RELOC_STD_BITS_RELATIVE_BIG));
2336 r_length = ((bytes->r_type[0] & RELOC_STD_BITS_LENGTH_BIG)
2337 >> RELOC_STD_BITS_LENGTH_SH_BIG);
2341 r_index = (((unsigned int) bytes->r_index[2] << 16)
2342 | ((unsigned int) bytes->r_index[1] << 8)
2343 | bytes->r_index[0]);
2344 r_extern = (0 != (bytes->r_type[0] & RELOC_STD_BITS_EXTERN_LITTLE));
2345 r_pcrel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_PCREL_LITTLE));
2346 r_baserel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_BASEREL_LITTLE));
2347 r_jmptable= (0 != (bytes->r_type[0] & RELOC_STD_BITS_JMPTABLE_LITTLE));
2348 r_relative= (0 != (bytes->r_type[0] & RELOC_STD_BITS_RELATIVE_LITTLE));
2349 r_length = ((bytes->r_type[0] & RELOC_STD_BITS_LENGTH_LITTLE)
2350 >> RELOC_STD_BITS_LENGTH_SH_LITTLE);
2353 howto_idx = (r_length + 4 * r_pcrel + 8 * r_baserel
2354 + 16 * r_jmptable + 32 * r_relative);
2355 BFD_ASSERT (howto_idx < TABLE_SIZE (howto_table_std));
2356 cache_ptr->howto = howto_table_std + howto_idx;
2357 BFD_ASSERT (cache_ptr->howto->type != (unsigned int) -1);
2359 /* Base relative relocs are always against the symbol table,
2360 regardless of the setting of r_extern. r_extern just reflects
2361 whether the symbol the reloc is against is local or global. */
2365 if (r_extern && r_index > symcount)
2367 /* We could arrange to return an error, but it might be useful
2368 to see the file even if it is bad. */
2376 /* Read and swap the relocs for a section. */
2379 NAME(aout,slurp_reloc_table) (abfd, asect, symbols)
2384 bfd_size_type count;
2385 bfd_size_type reloc_size;
2387 arelent *reloc_cache;
2389 unsigned int counter = 0;
2393 if (asect->relocation)
2396 if (asect->flags & SEC_CONSTRUCTOR)
2399 if (asect == obj_datasec (abfd))
2400 reloc_size = exec_hdr (abfd)->a_drsize;
2401 else if (asect == obj_textsec (abfd))
2402 reloc_size = exec_hdr (abfd)->a_trsize;
2403 else if (asect == obj_bsssec (abfd))
2407 bfd_set_error (bfd_error_invalid_operation);
2411 if (bfd_seek (abfd, asect->rel_filepos, SEEK_SET) != 0)
2414 each_size = obj_reloc_entry_size (abfd);
2416 count = reloc_size / each_size;
2418 amt = count * sizeof (arelent);
2419 reloc_cache = (arelent *) bfd_zmalloc (amt);
2420 if (reloc_cache == NULL && count != 0)
2423 relocs = bfd_malloc (reloc_size);
2424 if (relocs == NULL && reloc_size != 0)
2430 if (bfd_bread (relocs, reloc_size, abfd) != reloc_size)
2437 cache_ptr = reloc_cache;
2438 if (each_size == RELOC_EXT_SIZE)
2440 struct reloc_ext_external *rptr = (struct reloc_ext_external *) relocs;
2442 for (; counter < count; counter++, rptr++, cache_ptr++)
2443 MY_swap_ext_reloc_in (abfd, rptr, cache_ptr, symbols,
2444 (bfd_size_type) bfd_get_symcount (abfd));
2448 struct reloc_std_external *rptr = (struct reloc_std_external *) relocs;
2450 for (; counter < count; counter++, rptr++, cache_ptr++)
2451 MY_swap_std_reloc_in (abfd, rptr, cache_ptr, symbols,
2452 (bfd_size_type) bfd_get_symcount (abfd));
2457 asect->relocation = reloc_cache;
2458 asect->reloc_count = cache_ptr - reloc_cache;
2463 /* Write out a relocation section into an object file. */
2466 NAME(aout,squirt_out_relocs) (abfd, section)
2471 unsigned char *native, *natptr;
2474 unsigned int count = section->reloc_count;
2475 bfd_size_type natsize;
2477 if (count == 0 || section->orelocation == NULL)
2480 each_size = obj_reloc_entry_size (abfd);
2481 natsize = (bfd_size_type) each_size * count;
2482 native = (unsigned char *) bfd_zalloc (abfd, natsize);
2486 generic = section->orelocation;
2488 if (each_size == RELOC_EXT_SIZE)
2490 for (natptr = native;
2492 --count, natptr += each_size, ++generic)
2493 MY_swap_ext_reloc_out (abfd, *generic,
2494 (struct reloc_ext_external *) natptr);
2498 for (natptr = native;
2500 --count, natptr += each_size, ++generic)
2501 MY_swap_std_reloc_out (abfd, *generic,
2502 (struct reloc_std_external *) natptr);
2505 if (bfd_bwrite ((PTR) native, natsize, abfd) != natsize)
2507 bfd_release (abfd, native);
2510 bfd_release (abfd, native);
2515 /* This is stupid. This function should be a boolean predicate. */
2518 NAME(aout,canonicalize_reloc) (abfd, section, relptr, symbols)
2524 arelent *tblptr = section->relocation;
2527 if (section == obj_bsssec (abfd))
2533 if (!(tblptr || NAME(aout,slurp_reloc_table) (abfd, section, symbols)))
2536 if (section->flags & SEC_CONSTRUCTOR)
2538 arelent_chain *chain = section->constructor_chain;
2539 for (count = 0; count < section->reloc_count; count ++)
2541 *relptr ++ = &chain->relent;
2542 chain = chain->next;
2547 tblptr = section->relocation;
2549 for (count = 0; count++ < section->reloc_count; )
2551 *relptr++ = tblptr++;
2556 return section->reloc_count;
2560 NAME(aout,get_reloc_upper_bound) (abfd, asect)
2564 if (bfd_get_format (abfd) != bfd_object)
2566 bfd_set_error (bfd_error_invalid_operation);
2570 if (asect->flags & SEC_CONSTRUCTOR)
2571 return (sizeof (arelent *) * (asect->reloc_count+1));
2573 if (asect == obj_datasec (abfd))
2574 return (sizeof (arelent *)
2575 * ((exec_hdr (abfd)->a_drsize / obj_reloc_entry_size (abfd))
2578 if (asect == obj_textsec (abfd))
2579 return (sizeof (arelent *)
2580 * ((exec_hdr (abfd)->a_trsize / obj_reloc_entry_size (abfd))
2583 if (asect == obj_bsssec (abfd))
2584 return sizeof (arelent *);
2586 if (asect == obj_bsssec (abfd))
2589 bfd_set_error (bfd_error_invalid_operation);
2594 NAME(aout,get_symtab_upper_bound) (abfd)
2597 if (!NAME(aout,slurp_symbol_table) (abfd))
2600 return (bfd_get_symcount (abfd)+1) * (sizeof (aout_symbol_type *));
2604 NAME(aout,get_lineno) (ignore_abfd, ignore_symbol)
2605 bfd *ignore_abfd ATTRIBUTE_UNUSED;
2606 asymbol *ignore_symbol ATTRIBUTE_UNUSED;
2608 return (alent *)NULL;
2612 NAME(aout,get_symbol_info) (ignore_abfd, symbol, ret)
2613 bfd *ignore_abfd ATTRIBUTE_UNUSED;
2617 bfd_symbol_info (symbol, ret);
2619 if (ret->type == '?')
2621 int type_code = aout_symbol (symbol)->type & 0xff;
2622 const char *stab_name = bfd_get_stab_name (type_code);
2623 static char buf[10];
2625 if (stab_name == NULL)
2627 sprintf (buf, "(%d)", type_code);
2631 ret->stab_type = type_code;
2632 ret->stab_other = (unsigned) (aout_symbol (symbol)->other & 0xff);
2633 ret->stab_desc = (unsigned) (aout_symbol (symbol)->desc & 0xffff);
2634 ret->stab_name = stab_name;
2639 NAME(aout,print_symbol) (abfd, afile, symbol, how)
2643 bfd_print_symbol_type how;
2645 FILE *file = (FILE *)afile;
2649 case bfd_print_symbol_name:
2651 fprintf (file,"%s", symbol->name);
2653 case bfd_print_symbol_more:
2654 fprintf (file,"%4x %2x %2x",
2655 (unsigned) (aout_symbol (symbol)->desc & 0xffff),
2656 (unsigned) (aout_symbol (symbol)->other & 0xff),
2657 (unsigned) (aout_symbol (symbol)->type));
2659 case bfd_print_symbol_all:
2661 const char *section_name = symbol->section->name;
2663 bfd_print_symbol_vandf (abfd, (PTR)file, symbol);
2665 fprintf (file," %-5s %04x %02x %02x",
2667 (unsigned) (aout_symbol (symbol)->desc & 0xffff),
2668 (unsigned) (aout_symbol (symbol)->other & 0xff),
2669 (unsigned) (aout_symbol (symbol)->type & 0xff));
2671 fprintf (file," %s", symbol->name);
2677 /* If we don't have to allocate more than 1MB to hold the generic
2678 symbols, we use the generic minisymbol methord: it's faster, since
2679 it only translates the symbols once, not multiple times. */
2680 #define MINISYM_THRESHOLD (1000000 / sizeof (asymbol))
2682 /* Read minisymbols. For minisymbols, we use the unmodified a.out
2683 symbols. The minisymbol_to_symbol function translates these into
2684 BFD asymbol structures. */
2687 NAME(aout,read_minisymbols) (abfd, dynamic, minisymsp, sizep)
2689 bfd_boolean dynamic;
2691 unsigned int *sizep;
2695 /* We could handle the dynamic symbols here as well, but it's
2696 easier to hand them off. */
2697 return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep);
2700 if (! aout_get_external_symbols (abfd))
2703 if (obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD)
2704 return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep);
2706 *minisymsp = (PTR) obj_aout_external_syms (abfd);
2708 /* By passing the external symbols back from this routine, we are
2709 giving up control over the memory block. Clear
2710 obj_aout_external_syms, so that we do not try to free it
2712 obj_aout_external_syms (abfd) = NULL;
2714 *sizep = EXTERNAL_NLIST_SIZE;
2715 return obj_aout_external_sym_count (abfd);
2718 /* Convert a minisymbol to a BFD asymbol. A minisymbol is just an
2719 unmodified a.out symbol. The SYM argument is a structure returned
2720 by bfd_make_empty_symbol, which we fill in here. */
2723 NAME(aout,minisymbol_to_symbol) (abfd, dynamic, minisym, sym)
2725 bfd_boolean dynamic;
2730 || obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD)
2731 return _bfd_generic_minisymbol_to_symbol (abfd, dynamic, minisym, sym);
2733 memset (sym, 0, sizeof (aout_symbol_type));
2735 /* We call translate_symbol_table to translate a single symbol. */
2736 if (! (NAME(aout,translate_symbol_table)
2738 (aout_symbol_type *) sym,
2739 (struct external_nlist *) minisym,
2741 obj_aout_external_strings (abfd),
2742 obj_aout_external_string_size (abfd),
2749 /* Provided a BFD, a section and an offset into the section, calculate
2750 and return the name of the source file and the line nearest to the
2754 NAME(aout,find_nearest_line)
2755 (abfd, section, symbols, offset, filename_ptr, functionname_ptr, line_ptr)
2760 const char **filename_ptr;
2761 const char **functionname_ptr;
2762 unsigned int *line_ptr;
2764 /* Run down the file looking for the filename, function and linenumber. */
2766 const char *directory_name = NULL;
2767 const char *main_file_name = NULL;
2768 const char *current_file_name = NULL;
2769 const char *line_file_name = NULL; /* Value of current_file_name at line number. */
2770 const char *line_directory_name = NULL; /* Value of directory_name at line number. */
2771 bfd_vma low_line_vma = 0;
2772 bfd_vma low_func_vma = 0;
2774 bfd_size_type filelen, funclen;
2777 *filename_ptr = abfd->filename;
2778 *functionname_ptr = 0;
2781 if (symbols != (asymbol **)NULL)
2783 for (p = symbols; *p; p++)
2785 aout_symbol_type *q = (aout_symbol_type *) (*p);
2790 /* If this looks like a file name symbol, and it comes after
2791 the line number we have found so far, but before the
2792 offset, then we have probably not found the right line
2794 if (q->symbol.value <= offset
2795 && ((q->symbol.value > low_line_vma
2796 && (line_file_name != NULL
2798 || (q->symbol.value > low_func_vma
2801 const char *symname;
2803 symname = q->symbol.name;
2804 if (strcmp (symname + strlen (symname) - 2, ".o") == 0)
2806 if (q->symbol.value > low_line_vma)
2809 line_file_name = NULL;
2811 if (q->symbol.value > low_func_vma)
2818 /* If this symbol is less than the offset, but greater than
2819 the line number we have found so far, then we have not
2820 found the right line number. */
2821 if (q->symbol.value <= offset)
2823 if (q->symbol.value > low_line_vma)
2826 line_file_name = NULL;
2828 if (q->symbol.value > low_func_vma)
2832 main_file_name = current_file_name = q->symbol.name;
2833 /* Look ahead to next symbol to check if that too is an N_SO. */
2837 q = (aout_symbol_type *) (*p);
2838 if (q->type != (int)N_SO)
2841 /* Found a second N_SO First is directory; second is filename. */
2842 directory_name = current_file_name;
2843 main_file_name = current_file_name = q->symbol.name;
2844 if (obj_textsec (abfd) != section)
2848 current_file_name = q->symbol.name;
2855 /* We'll keep this if it resolves nearer than the one we have
2857 if (q->symbol.value >= low_line_vma
2858 && q->symbol.value <= offset)
2860 *line_ptr = q->desc;
2861 low_line_vma = q->symbol.value;
2862 line_file_name = current_file_name;
2863 line_directory_name = directory_name;
2868 /* We'll keep this if it is nearer than the one we have already. */
2869 if (q->symbol.value >= low_func_vma &&
2870 q->symbol.value <= offset)
2872 low_func_vma = q->symbol.value;
2873 func = (asymbol *)q;
2875 else if (q->symbol.value > offset)
2886 main_file_name = line_file_name;
2887 directory_name = line_directory_name;
2890 if (main_file_name == NULL
2891 || IS_ABSOLUTE_PATH (main_file_name)
2892 || directory_name == NULL)
2895 filelen = strlen (directory_name) + strlen (main_file_name);
2900 funclen = strlen (bfd_asymbol_name (func));
2902 if (adata (abfd).line_buf != NULL)
2903 free (adata (abfd).line_buf);
2905 if (filelen + funclen == 0)
2906 adata (abfd).line_buf = buf = NULL;
2909 buf = (char *) bfd_malloc (filelen + funclen + 3);
2910 adata (abfd).line_buf = buf;
2915 if (main_file_name != NULL)
2917 if (IS_ABSOLUTE_PATH (main_file_name) || directory_name == NULL)
2918 *filename_ptr = main_file_name;
2921 sprintf (buf, "%s%s", directory_name, main_file_name);
2922 *filename_ptr = buf;
2929 const char *function = func->name;
2932 /* The caller expects a symbol name. We actually have a
2933 function name, without the leading underscore. Put the
2934 underscore back in, so that the caller gets a symbol name. */
2935 if (bfd_get_symbol_leading_char (abfd) == '\0')
2936 strcpy (buf, function);
2939 buf[0] = bfd_get_symbol_leading_char (abfd);
2940 strcpy (buf + 1, function);
2942 /* Have to remove : stuff. */
2943 colon = strchr (buf, ':');
2946 *functionname_ptr = buf;
2953 NAME(aout,sizeof_headers) (abfd, execable)
2955 bfd_boolean execable ATTRIBUTE_UNUSED;
2957 return adata (abfd).exec_bytes_size;
2960 /* Free all information we have cached for this BFD. We can always
2961 read it again later if we need it. */
2964 NAME(aout,bfd_free_cached_info) (abfd)
2969 if (bfd_get_format (abfd) != bfd_object
2970 || abfd->tdata.aout_data == NULL)
2973 #define BFCI_FREE(x) if (x != NULL) { free (x); x = NULL; }
2974 BFCI_FREE (obj_aout_symbols (abfd));
2976 obj_aout_external_syms (abfd) = 0;
2977 bfd_free_window (&obj_aout_sym_window (abfd));
2978 bfd_free_window (&obj_aout_string_window (abfd));
2979 obj_aout_external_strings (abfd) = 0;
2981 BFCI_FREE (obj_aout_external_syms (abfd));
2982 BFCI_FREE (obj_aout_external_strings (abfd));
2984 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
2985 BFCI_FREE (o->relocation);
2991 /* a.out link code. */
2993 static bfd_boolean aout_link_add_object_symbols
2994 PARAMS ((bfd *, struct bfd_link_info *));
2995 static bfd_boolean aout_link_check_archive_element
2996 PARAMS ((bfd *, struct bfd_link_info *, bfd_boolean *));
2997 static bfd_boolean aout_link_free_symbols
2999 static bfd_boolean aout_link_check_ar_symbols
3000 PARAMS ((bfd *, struct bfd_link_info *, bfd_boolean *pneeded));
3001 static bfd_boolean aout_link_add_symbols
3002 PARAMS ((bfd *, struct bfd_link_info *));
3004 /* Routine to create an entry in an a.out link hash table. */
3006 struct bfd_hash_entry *
3007 NAME(aout,link_hash_newfunc) (entry, table, string)
3008 struct bfd_hash_entry *entry;
3009 struct bfd_hash_table *table;
3012 struct aout_link_hash_entry *ret = (struct aout_link_hash_entry *) entry;
3014 /* Allocate the structure if it has not already been allocated by a
3016 if (ret == (struct aout_link_hash_entry *) NULL)
3017 ret = ((struct aout_link_hash_entry *)
3018 bfd_hash_allocate (table, sizeof (struct aout_link_hash_entry)));
3019 if (ret == (struct aout_link_hash_entry *) NULL)
3020 return (struct bfd_hash_entry *) ret;
3022 /* Call the allocation method of the superclass. */
3023 ret = ((struct aout_link_hash_entry *)
3024 _bfd_link_hash_newfunc ((struct bfd_hash_entry *) ret,
3028 /* Set local fields. */
3029 ret->written = FALSE;
3033 return (struct bfd_hash_entry *) ret;
3036 /* Initialize an a.out link hash table. */
3039 NAME(aout,link_hash_table_init) (table, abfd, newfunc)
3040 struct aout_link_hash_table *table;
3042 struct bfd_hash_entry *(*newfunc)
3043 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *,
3046 return _bfd_link_hash_table_init (&table->root, abfd, newfunc);
3049 /* Create an a.out link hash table. */
3051 struct bfd_link_hash_table *
3052 NAME(aout,link_hash_table_create) (abfd)
3055 struct aout_link_hash_table *ret;
3056 bfd_size_type amt = sizeof (struct aout_link_hash_table);
3058 ret = (struct aout_link_hash_table *) bfd_alloc (abfd, amt);
3060 return (struct bfd_link_hash_table *) NULL;
3061 if (! NAME(aout,link_hash_table_init) (ret, abfd,
3062 NAME(aout,link_hash_newfunc)))
3065 return (struct bfd_link_hash_table *) NULL;
3070 /* Given an a.out BFD, add symbols to the global hash table as
3074 NAME(aout,link_add_symbols) (abfd, info)
3076 struct bfd_link_info *info;
3078 switch (bfd_get_format (abfd))
3081 return aout_link_add_object_symbols (abfd, info);
3083 return _bfd_generic_link_add_archive_symbols
3084 (abfd, info, aout_link_check_archive_element);
3086 bfd_set_error (bfd_error_wrong_format);
3091 /* Add symbols from an a.out object file. */
3094 aout_link_add_object_symbols (abfd, info)
3096 struct bfd_link_info *info;
3098 if (! aout_get_external_symbols (abfd))
3100 if (! aout_link_add_symbols (abfd, info))
3102 if (! info->keep_memory)
3104 if (! aout_link_free_symbols (abfd))
3110 /* Check a single archive element to see if we need to include it in
3111 the link. *PNEEDED is set according to whether this element is
3112 needed in the link or not. This is called from
3113 _bfd_generic_link_add_archive_symbols. */
3116 aout_link_check_archive_element (abfd, info, pneeded)
3118 struct bfd_link_info *info;
3119 bfd_boolean *pneeded;
3121 if (! aout_get_external_symbols (abfd))
3124 if (! aout_link_check_ar_symbols (abfd, info, pneeded))
3129 if (! aout_link_add_symbols (abfd, info))
3133 if (! info->keep_memory || ! *pneeded)
3135 if (! aout_link_free_symbols (abfd))
3142 /* Free up the internal symbols read from an a.out file. */
3145 aout_link_free_symbols (abfd)
3148 if (obj_aout_external_syms (abfd) != (struct external_nlist *) NULL)
3151 bfd_free_window (&obj_aout_sym_window (abfd));
3153 free ((PTR) obj_aout_external_syms (abfd));
3155 obj_aout_external_syms (abfd) = (struct external_nlist *) NULL;
3157 if (obj_aout_external_strings (abfd) != (char *) NULL)
3160 bfd_free_window (&obj_aout_string_window (abfd));
3162 free ((PTR) obj_aout_external_strings (abfd));
3164 obj_aout_external_strings (abfd) = (char *) NULL;
3169 /* Look through the internal symbols to see if this object file should
3170 be included in the link. We should include this object file if it
3171 defines any symbols which are currently undefined. If this object
3172 file defines a common symbol, then we may adjust the size of the
3173 known symbol but we do not include the object file in the link
3174 (unless there is some other reason to include it). */
3177 aout_link_check_ar_symbols (abfd, info, pneeded)
3179 struct bfd_link_info *info;
3180 bfd_boolean *pneeded;
3182 register struct external_nlist *p;
3183 struct external_nlist *pend;
3188 /* Look through all the symbols. */
3189 p = obj_aout_external_syms (abfd);
3190 pend = p + obj_aout_external_sym_count (abfd);
3191 strings = obj_aout_external_strings (abfd);
3192 for (; p < pend; p++)
3194 int type = H_GET_8 (abfd, p->e_type);
3196 struct bfd_link_hash_entry *h;
3198 /* Ignore symbols that are not externally visible. This is an
3199 optimization only, as we check the type more thoroughly
3201 if (((type & N_EXT) == 0
3202 || (type & N_STAB) != 0
3209 if (type == N_WARNING
3215 name = strings + GET_WORD (abfd, p->e_strx);
3216 h = bfd_link_hash_lookup (info->hash, name, FALSE, FALSE, TRUE);
3218 /* We are only interested in symbols that are currently
3219 undefined or common. */
3220 if (h == (struct bfd_link_hash_entry *) NULL
3221 || (h->type != bfd_link_hash_undefined
3222 && h->type != bfd_link_hash_common))
3224 if (type == (N_INDR | N_EXT))
3229 if (type == (N_TEXT | N_EXT)
3230 || type == (N_DATA | N_EXT)
3231 || type == (N_BSS | N_EXT)
3232 || type == (N_ABS | N_EXT)
3233 || type == (N_INDR | N_EXT))
3235 /* This object file defines this symbol. We must link it
3236 in. This is true regardless of whether the current
3237 definition of the symbol is undefined or common.
3239 If the current definition is common, we have a case in
3240 which we have already seen an object file including:
3242 and this object file from the archive includes:
3244 In such a case, whether to include this object is target
3245 dependant for backward compatability.
3247 FIXME: The SunOS 4.1.3 linker will pull in the archive
3248 element if the symbol is defined in the .data section,
3249 but not if it is defined in the .text section. That
3250 seems a bit crazy to me, and it has not been implemented
3251 yet. However, it might be correct. */
3252 if (h->type == bfd_link_hash_common)
3256 switch (info->common_skip_ar_aymbols)
3258 case bfd_link_common_skip_text:
3259 skip = (type == (N_TEXT | N_EXT));
3261 case bfd_link_common_skip_data:
3262 skip = (type == (N_DATA | N_EXT));
3265 case bfd_link_common_skip_all:
3274 if (! (*info->callbacks->add_archive_element) (info, abfd, name))
3280 if (type == (N_UNDF | N_EXT))
3284 value = GET_WORD (abfd, p->e_value);
3287 /* This symbol is common in the object from the archive
3289 if (h->type == bfd_link_hash_undefined)
3294 symbfd = h->u.undef.abfd;
3295 if (symbfd == (bfd *) NULL)
3297 /* This symbol was created as undefined from
3298 outside BFD. We assume that we should link
3299 in the object file. This is done for the -u
3300 option in the linker. */
3301 if (! (*info->callbacks->add_archive_element) (info,
3308 /* Turn the current link symbol into a common
3309 symbol. It is already on the undefs list. */
3310 h->type = bfd_link_hash_common;
3311 h->u.c.p = ((struct bfd_link_hash_common_entry *)
3312 bfd_hash_allocate (&info->hash->table,
3313 sizeof (struct bfd_link_hash_common_entry)));
3314 if (h->u.c.p == NULL)
3317 h->u.c.size = value;
3319 /* FIXME: This isn't quite right. The maximum
3320 alignment of a common symbol should be set by the
3321 architecture of the output file, not of the input
3323 power = bfd_log2 (value);
3324 if (power > bfd_get_arch_info (abfd)->section_align_power)
3325 power = bfd_get_arch_info (abfd)->section_align_power;
3326 h->u.c.p->alignment_power = power;
3328 h->u.c.p->section = bfd_make_section_old_way (symbfd,
3333 /* Adjust the size of the common symbol if
3335 if (value > h->u.c.size)
3336 h->u.c.size = value;
3346 /* This symbol is weak but defined. We must pull it in if
3347 the current link symbol is undefined, but we don't want
3348 it if the current link symbol is common. */
3349 if (h->type == bfd_link_hash_undefined)
3351 if (! (*info->callbacks->add_archive_element) (info, abfd, name))
3359 /* We do not need this object file. */
3363 /* Add all symbols from an object file to the hash table. */
3366 aout_link_add_symbols (abfd, info)
3368 struct bfd_link_info *info;
3370 bfd_boolean (*add_one_symbol)
3371 PARAMS ((struct bfd_link_info *, bfd *, const char *, flagword, asection *,
3372 bfd_vma, const char *, bfd_boolean, bfd_boolean,
3373 struct bfd_link_hash_entry **));
3374 struct external_nlist *syms;
3375 bfd_size_type sym_count;
3378 struct aout_link_hash_entry **sym_hash;
3379 register struct external_nlist *p;
3380 struct external_nlist *pend;
3383 syms = obj_aout_external_syms (abfd);
3384 sym_count = obj_aout_external_sym_count (abfd);
3385 strings = obj_aout_external_strings (abfd);
3386 if (info->keep_memory)
3391 if (aout_backend_info (abfd)->add_dynamic_symbols != NULL)
3393 if (! ((*aout_backend_info (abfd)->add_dynamic_symbols)
3394 (abfd, info, &syms, &sym_count, &strings)))
3398 /* We keep a list of the linker hash table entries that correspond
3399 to particular symbols. We could just look them up in the hash
3400 table, but keeping the list is more efficient. Perhaps this
3401 should be conditional on info->keep_memory. */
3402 amt = sym_count * sizeof (struct aout_link_hash_entry *);
3403 sym_hash = (struct aout_link_hash_entry **) bfd_alloc (abfd, amt);
3404 if (sym_hash == NULL && sym_count != 0)
3406 obj_aout_sym_hashes (abfd) = sym_hash;
3408 add_one_symbol = aout_backend_info (abfd)->add_one_symbol;
3409 if (add_one_symbol == NULL)
3410 add_one_symbol = _bfd_generic_link_add_one_symbol;
3413 pend = p + sym_count;
3414 for (; p < pend; p++, sym_hash++)
3425 type = H_GET_8 (abfd, p->e_type);
3427 /* Ignore debugging symbols. */
3428 if ((type & N_STAB) != 0)
3431 name = strings + GET_WORD (abfd, p->e_strx);
3432 value = GET_WORD (abfd, p->e_value);
3449 /* Ignore symbols that are not externally visible. */
3452 /* Ignore local indirect symbol. */
3457 case N_UNDF | N_EXT:
3460 section = bfd_und_section_ptr;
3464 section = bfd_com_section_ptr;
3467 section = bfd_abs_section_ptr;
3469 case N_TEXT | N_EXT:
3470 section = obj_textsec (abfd);
3471 value -= bfd_get_section_vma (abfd, section);
3473 case N_DATA | N_EXT:
3474 case N_SETV | N_EXT:
3475 /* Treat N_SETV symbols as N_DATA symbol; see comment in
3476 translate_from_native_sym_flags. */
3477 section = obj_datasec (abfd);
3478 value -= bfd_get_section_vma (abfd, section);
3481 section = obj_bsssec (abfd);
3482 value -= bfd_get_section_vma (abfd, section);
3484 case N_INDR | N_EXT:
3485 /* An indirect symbol. The next symbol is the symbol
3486 which this one really is. */
3487 BFD_ASSERT (p + 1 < pend);
3489 string = strings + GET_WORD (abfd, p->e_strx);
3490 section = bfd_ind_section_ptr;
3491 flags |= BSF_INDIRECT;
3493 case N_COMM | N_EXT:
3494 section = bfd_com_section_ptr;
3496 case N_SETA: case N_SETA | N_EXT:
3497 section = bfd_abs_section_ptr;
3498 flags |= BSF_CONSTRUCTOR;
3500 case N_SETT: case N_SETT | N_EXT:
3501 section = obj_textsec (abfd);
3502 flags |= BSF_CONSTRUCTOR;
3503 value -= bfd_get_section_vma (abfd, section);
3505 case N_SETD: case N_SETD | N_EXT:
3506 section = obj_datasec (abfd);
3507 flags |= BSF_CONSTRUCTOR;
3508 value -= bfd_get_section_vma (abfd, section);
3510 case N_SETB: case N_SETB | N_EXT:
3511 section = obj_bsssec (abfd);
3512 flags |= BSF_CONSTRUCTOR;
3513 value -= bfd_get_section_vma (abfd, section);
3516 /* A warning symbol. The next symbol is the one to warn
3518 BFD_ASSERT (p + 1 < pend);
3521 name = strings + GET_WORD (abfd, p->e_strx);
3522 section = bfd_und_section_ptr;
3523 flags |= BSF_WARNING;
3526 section = bfd_und_section_ptr;
3530 section = bfd_abs_section_ptr;
3534 section = obj_textsec (abfd);
3535 value -= bfd_get_section_vma (abfd, section);
3539 section = obj_datasec (abfd);
3540 value -= bfd_get_section_vma (abfd, section);
3544 section = obj_bsssec (abfd);
3545 value -= bfd_get_section_vma (abfd, section);
3550 if (! ((*add_one_symbol)
3551 (info, abfd, name, flags, section, value, string, copy, FALSE,
3552 (struct bfd_link_hash_entry **) sym_hash)))
3555 /* Restrict the maximum alignment of a common symbol based on
3556 the architecture, since a.out has no way to represent
3557 alignment requirements of a section in a .o file. FIXME:
3558 This isn't quite right: it should use the architecture of the
3559 output file, not the input files. */
3560 if ((*sym_hash)->root.type == bfd_link_hash_common
3561 && ((*sym_hash)->root.u.c.p->alignment_power >
3562 bfd_get_arch_info (abfd)->section_align_power))
3563 (*sym_hash)->root.u.c.p->alignment_power =
3564 bfd_get_arch_info (abfd)->section_align_power;
3566 /* If this is a set symbol, and we are not building sets, then
3567 it is possible for the hash entry to not have been set. In
3568 such a case, treat the symbol as not globally defined. */
3569 if ((*sym_hash)->root.type == bfd_link_hash_new)
3571 BFD_ASSERT ((flags & BSF_CONSTRUCTOR) != 0);
3575 if (type == (N_INDR | N_EXT) || type == N_WARNING)
3582 /* A hash table used for header files with N_BINCL entries. */
3584 struct aout_link_includes_table
3586 struct bfd_hash_table root;
3589 /* A linked list of totals that we have found for a particular header
3592 struct aout_link_includes_totals
3594 struct aout_link_includes_totals *next;
3598 /* An entry in the header file hash table. */
3600 struct aout_link_includes_entry
3602 struct bfd_hash_entry root;
3603 /* List of totals we have found for this file. */
3604 struct aout_link_includes_totals *totals;
3607 /* Look up an entry in an the header file hash table. */
3609 #define aout_link_includes_lookup(table, string, create, copy) \
3610 ((struct aout_link_includes_entry *) \
3611 bfd_hash_lookup (&(table)->root, (string), (create), (copy)))
3613 /* During the final link step we need to pass around a bunch of
3614 information, so we do it in an instance of this structure. */
3616 struct aout_final_link_info
3618 /* General link information. */
3619 struct bfd_link_info *info;
3622 /* Reloc file positions. */
3623 file_ptr treloff, dreloff;
3624 /* File position of symbols. */
3627 struct bfd_strtab_hash *strtab;
3628 /* Header file hash table. */
3629 struct aout_link_includes_table includes;
3630 /* A buffer large enough to hold the contents of any section. */
3632 /* A buffer large enough to hold the relocs of any section. */
3634 /* A buffer large enough to hold the symbol map of any input BFD. */
3636 /* A buffer large enough to hold output symbols of any input BFD. */
3637 struct external_nlist *output_syms;
3640 static struct bfd_hash_entry *aout_link_includes_newfunc
3641 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
3642 static bfd_boolean aout_link_input_bfd
3643 PARAMS ((struct aout_final_link_info *, bfd *input_bfd));
3644 static bfd_boolean aout_link_write_symbols
3645 PARAMS ((struct aout_final_link_info *, bfd *input_bfd));
3646 static bfd_boolean aout_link_write_other_symbol
3647 PARAMS ((struct aout_link_hash_entry *, PTR));
3648 static bfd_boolean aout_link_input_section
3649 PARAMS ((struct aout_final_link_info *, bfd *input_bfd,
3650 asection *input_section, file_ptr *reloff_ptr,
3651 bfd_size_type rel_size));
3652 static bfd_boolean aout_link_input_section_std
3653 PARAMS ((struct aout_final_link_info *, bfd *input_bfd,
3654 asection *input_section, struct reloc_std_external *,
3655 bfd_size_type rel_size, bfd_byte *contents));
3656 static bfd_boolean aout_link_input_section_ext
3657 PARAMS ((struct aout_final_link_info *, bfd *input_bfd,
3658 asection *input_section, struct reloc_ext_external *,
3659 bfd_size_type rel_size, bfd_byte *contents));
3660 static INLINE asection *aout_reloc_index_to_section
3661 PARAMS ((bfd *, int));
3662 static bfd_boolean aout_link_reloc_link_order
3663 PARAMS ((struct aout_final_link_info *, asection *,
3664 struct bfd_link_order *));
3666 /* The function to create a new entry in the header file hash table. */
3668 static struct bfd_hash_entry *
3669 aout_link_includes_newfunc (entry, table, string)
3670 struct bfd_hash_entry *entry;
3671 struct bfd_hash_table *table;
3674 struct aout_link_includes_entry *ret =
3675 (struct aout_link_includes_entry *) entry;
3677 /* Allocate the structure if it has not already been allocated by a
3679 if (ret == (struct aout_link_includes_entry *) NULL)
3680 ret = ((struct aout_link_includes_entry *)
3681 bfd_hash_allocate (table,
3682 sizeof (struct aout_link_includes_entry)));
3683 if (ret == (struct aout_link_includes_entry *) NULL)
3684 return (struct bfd_hash_entry *) ret;
3686 /* Call the allocation method of the superclass. */
3687 ret = ((struct aout_link_includes_entry *)
3688 bfd_hash_newfunc ((struct bfd_hash_entry *) ret, table, string));
3691 /* Set local fields. */
3695 return (struct bfd_hash_entry *) ret;
3698 /* Do the final link step. This is called on the output BFD. The
3699 INFO structure should point to a list of BFDs linked through the
3700 link_next field which can be used to find each BFD which takes part
3701 in the output. Also, each section in ABFD should point to a list
3702 of bfd_link_order structures which list all the input sections for
3703 the output section. */
3706 NAME(aout,final_link) (abfd, info, callback)
3708 struct bfd_link_info *info;
3709 void (*callback) PARAMS ((bfd *, file_ptr *, file_ptr *, file_ptr *));
3711 struct aout_final_link_info aout_info;
3712 bfd_boolean includes_hash_initialized = FALSE;
3714 bfd_size_type trsize, drsize;
3715 bfd_size_type max_contents_size;
3716 bfd_size_type max_relocs_size;
3717 bfd_size_type max_sym_count;
3718 bfd_size_type text_size;
3720 register struct bfd_link_order *p;
3722 bfd_boolean have_link_order_relocs;
3725 abfd->flags |= DYNAMIC;
3727 aout_info.info = info;
3728 aout_info.output_bfd = abfd;
3729 aout_info.contents = NULL;
3730 aout_info.relocs = NULL;
3731 aout_info.symbol_map = NULL;
3732 aout_info.output_syms = NULL;
3734 if (! bfd_hash_table_init_n (&aout_info.includes.root,
3735 aout_link_includes_newfunc,
3738 includes_hash_initialized = TRUE;
3740 /* Figure out the largest section size. Also, if generating
3741 relocateable output, count the relocs. */
3744 max_contents_size = 0;
3745 max_relocs_size = 0;
3747 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
3751 if (info->relocateable)
3753 if (bfd_get_flavour (sub) == bfd_target_aout_flavour)
3755 trsize += exec_hdr (sub)->a_trsize;
3756 drsize += exec_hdr (sub)->a_drsize;
3760 /* FIXME: We need to identify the .text and .data sections
3761 and call get_reloc_upper_bound and canonicalize_reloc to
3762 work out the number of relocs needed, and then multiply
3763 by the reloc size. */
3764 (*_bfd_error_handler)
3765 (_("%s: relocateable link from %s to %s not supported"),
3766 bfd_get_filename (abfd),
3767 sub->xvec->name, abfd->xvec->name);
3768 bfd_set_error (bfd_error_invalid_operation);
3773 if (bfd_get_flavour (sub) == bfd_target_aout_flavour)
3775 sz = bfd_section_size (sub, obj_textsec (sub));
3776 if (sz > max_contents_size)
3777 max_contents_size = sz;
3778 sz = bfd_section_size (sub, obj_datasec (sub));
3779 if (sz > max_contents_size)
3780 max_contents_size = sz;
3782 sz = exec_hdr (sub)->a_trsize;
3783 if (sz > max_relocs_size)
3784 max_relocs_size = sz;
3785 sz = exec_hdr (sub)->a_drsize;
3786 if (sz > max_relocs_size)
3787 max_relocs_size = sz;
3789 sz = obj_aout_external_sym_count (sub);
3790 if (sz > max_sym_count)
3795 if (info->relocateable)
3797 if (obj_textsec (abfd) != (asection *) NULL)
3798 trsize += (_bfd_count_link_order_relocs (obj_textsec (abfd)
3800 * obj_reloc_entry_size (abfd));
3801 if (obj_datasec (abfd) != (asection *) NULL)
3802 drsize += (_bfd_count_link_order_relocs (obj_datasec (abfd)
3804 * obj_reloc_entry_size (abfd));
3807 exec_hdr (abfd)->a_trsize = trsize;
3808 exec_hdr (abfd)->a_drsize = drsize;
3810 exec_hdr (abfd)->a_entry = bfd_get_start_address (abfd);
3812 /* Adjust the section sizes and vmas according to the magic number.
3813 This sets a_text, a_data and a_bss in the exec_hdr and sets the
3814 filepos for each section. */
3815 if (! NAME(aout,adjust_sizes_and_vmas) (abfd, &text_size, &text_end))
3818 /* The relocation and symbol file positions differ among a.out
3819 targets. We are passed a callback routine from the backend
3820 specific code to handle this.
3821 FIXME: At this point we do not know how much space the symbol
3822 table will require. This will not work for any (nonstandard)
3823 a.out target that needs to know the symbol table size before it
3824 can compute the relocation file positions. This may or may not
3825 be the case for the hp300hpux target, for example. */
3826 (*callback) (abfd, &aout_info.treloff, &aout_info.dreloff,
3828 obj_textsec (abfd)->rel_filepos = aout_info.treloff;
3829 obj_datasec (abfd)->rel_filepos = aout_info.dreloff;
3830 obj_sym_filepos (abfd) = aout_info.symoff;
3832 /* We keep a count of the symbols as we output them. */
3833 obj_aout_external_sym_count (abfd) = 0;
3835 /* We accumulate the string table as we write out the symbols. */
3836 aout_info.strtab = _bfd_stringtab_init ();
3837 if (aout_info.strtab == NULL)
3840 /* Allocate buffers to hold section contents and relocs. */
3841 aout_info.contents = (bfd_byte *) bfd_malloc (max_contents_size);
3842 aout_info.relocs = (PTR) bfd_malloc (max_relocs_size);
3843 aout_info.symbol_map = (int *) bfd_malloc (max_sym_count * sizeof (int *));
3844 aout_info.output_syms = ((struct external_nlist *)
3845 bfd_malloc ((max_sym_count + 1)
3846 * sizeof (struct external_nlist)));
3847 if ((aout_info.contents == NULL && max_contents_size != 0)
3848 || (aout_info.relocs == NULL && max_relocs_size != 0)
3849 || (aout_info.symbol_map == NULL && max_sym_count != 0)
3850 || aout_info.output_syms == NULL)
3853 /* If we have a symbol named __DYNAMIC, force it out now. This is
3854 required by SunOS. Doing this here rather than in sunos.c is a
3855 hack, but it's easier than exporting everything which would be
3858 struct aout_link_hash_entry *h;
3860 h = aout_link_hash_lookup (aout_hash_table (info), "__DYNAMIC",
3861 FALSE, FALSE, FALSE);
3863 aout_link_write_other_symbol (h, &aout_info);
3866 /* The most time efficient way to do the link would be to read all
3867 the input object files into memory and then sort out the
3868 information into the output file. Unfortunately, that will
3869 probably use too much memory. Another method would be to step
3870 through everything that composes the text section and write it
3871 out, and then everything that composes the data section and write
3872 it out, and then write out the relocs, and then write out the
3873 symbols. Unfortunately, that requires reading stuff from each
3874 input file several times, and we will not be able to keep all the
3875 input files open simultaneously, and reopening them will be slow.
3877 What we do is basically process one input file at a time. We do
3878 everything we need to do with an input file once--copy over the
3879 section contents, handle the relocation information, and write
3880 out the symbols--and then we throw away the information we read
3881 from it. This approach requires a lot of lseeks of the output
3882 file, which is unfortunate but still faster than reopening a lot
3885 We use the output_has_begun field of the input BFDs to see
3886 whether we have already handled it. */
3887 for (sub = info->input_bfds; sub != (bfd *) NULL; sub = sub->link_next)
3888 sub->output_has_begun = FALSE;
3890 /* Mark all sections which are to be included in the link. This
3891 will normally be every section. We need to do this so that we
3892 can identify any sections which the linker has decided to not
3894 for (o = abfd->sections; o != NULL; o = o->next)
3896 for (p = o->link_order_head; p != NULL; p = p->next)
3898 if (p->type == bfd_indirect_link_order)
3899 p->u.indirect.section->linker_mark = TRUE;
3903 have_link_order_relocs = FALSE;
3904 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
3906 for (p = o->link_order_head;
3907 p != (struct bfd_link_order *) NULL;
3910 if (p->type == bfd_indirect_link_order
3911 && (bfd_get_flavour (p->u.indirect.section->owner)
3912 == bfd_target_aout_flavour))
3916 input_bfd = p->u.indirect.section->owner;
3917 if (! input_bfd->output_has_begun)
3919 if (! aout_link_input_bfd (&aout_info, input_bfd))
3921 input_bfd->output_has_begun = TRUE;
3924 else if (p->type == bfd_section_reloc_link_order
3925 || p->type == bfd_symbol_reloc_link_order)
3927 /* These are handled below. */
3928 have_link_order_relocs = TRUE;
3932 if (! _bfd_default_link_order (abfd, info, o, p))
3938 /* Write out any symbols that we have not already written out. */
3939 aout_link_hash_traverse (aout_hash_table (info),
3940 aout_link_write_other_symbol,
3943 /* Now handle any relocs we were asked to create by the linker.
3944 These did not come from any input file. We must do these after
3945 we have written out all the symbols, so that we know the symbol
3947 if (have_link_order_relocs)
3949 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
3951 for (p = o->link_order_head;
3952 p != (struct bfd_link_order *) NULL;
3955 if (p->type == bfd_section_reloc_link_order
3956 || p->type == bfd_symbol_reloc_link_order)
3958 if (! aout_link_reloc_link_order (&aout_info, o, p))
3965 if (aout_info.contents != NULL)
3967 free (aout_info.contents);
3968 aout_info.contents = NULL;
3970 if (aout_info.relocs != NULL)
3972 free (aout_info.relocs);
3973 aout_info.relocs = NULL;
3975 if (aout_info.symbol_map != NULL)
3977 free (aout_info.symbol_map);
3978 aout_info.symbol_map = NULL;
3980 if (aout_info.output_syms != NULL)
3982 free (aout_info.output_syms);
3983 aout_info.output_syms = NULL;
3985 if (includes_hash_initialized)
3987 bfd_hash_table_free (&aout_info.includes.root);
3988 includes_hash_initialized = FALSE;
3991 /* Finish up any dynamic linking we may be doing. */
3992 if (aout_backend_info (abfd)->finish_dynamic_link != NULL)
3994 if (! (*aout_backend_info (abfd)->finish_dynamic_link) (abfd, info))
3998 /* Update the header information. */
3999 abfd->symcount = obj_aout_external_sym_count (abfd);
4000 exec_hdr (abfd)->a_syms = abfd->symcount * EXTERNAL_NLIST_SIZE;
4001 obj_str_filepos (abfd) = obj_sym_filepos (abfd) + exec_hdr (abfd)->a_syms;
4002 obj_textsec (abfd)->reloc_count =
4003 exec_hdr (abfd)->a_trsize / obj_reloc_entry_size (abfd);
4004 obj_datasec (abfd)->reloc_count =
4005 exec_hdr (abfd)->a_drsize / obj_reloc_entry_size (abfd);
4007 /* Write out the string table, unless there are no symbols. */
4008 if (abfd->symcount > 0)
4010 if (bfd_seek (abfd, obj_str_filepos (abfd), SEEK_SET) != 0
4011 || ! emit_stringtab (abfd, aout_info.strtab))
4014 else if (obj_textsec (abfd)->reloc_count == 0
4015 && obj_datasec (abfd)->reloc_count == 0)
4021 pos = obj_datasec (abfd)->filepos + exec_hdr (abfd)->a_data - 1;
4022 if (bfd_seek (abfd, pos, SEEK_SET) != 0
4023 || bfd_bwrite (&b, (bfd_size_type) 1, abfd) != 1)
4030 if (aout_info.contents != NULL)
4031 free (aout_info.contents);
4032 if (aout_info.relocs != NULL)
4033 free (aout_info.relocs);
4034 if (aout_info.symbol_map != NULL)
4035 free (aout_info.symbol_map);
4036 if (aout_info.output_syms != NULL)
4037 free (aout_info.output_syms);
4038 if (includes_hash_initialized)
4039 bfd_hash_table_free (&aout_info.includes.root);
4043 /* Link an a.out input BFD into the output file. */
4046 aout_link_input_bfd (finfo, input_bfd)
4047 struct aout_final_link_info *finfo;
4050 bfd_size_type sym_count;
4052 BFD_ASSERT (bfd_get_format (input_bfd) == bfd_object);
4054 /* If this is a dynamic object, it may need special handling. */
4055 if ((input_bfd->flags & DYNAMIC) != 0
4056 && aout_backend_info (input_bfd)->link_dynamic_object != NULL)
4058 return ((*aout_backend_info (input_bfd)->link_dynamic_object)
4059 (finfo->info, input_bfd));
4062 /* Get the symbols. We probably have them already, unless
4063 finfo->info->keep_memory is FALSE. */
4064 if (! aout_get_external_symbols (input_bfd))
4067 sym_count = obj_aout_external_sym_count (input_bfd);
4069 /* Write out the symbols and get a map of the new indices. The map
4070 is placed into finfo->symbol_map. */
4071 if (! aout_link_write_symbols (finfo, input_bfd))
4074 /* Relocate and write out the sections. These functions use the
4075 symbol map created by aout_link_write_symbols. The linker_mark
4076 field will be set if these sections are to be included in the
4077 link, which will normally be the case. */
4078 if (obj_textsec (input_bfd)->linker_mark)
4080 if (! aout_link_input_section (finfo, input_bfd,
4081 obj_textsec (input_bfd),
4083 exec_hdr (input_bfd)->a_trsize))
4086 if (obj_datasec (input_bfd)->linker_mark)
4088 if (! aout_link_input_section (finfo, input_bfd,
4089 obj_datasec (input_bfd),
4091 exec_hdr (input_bfd)->a_drsize))
4095 /* If we are not keeping memory, we don't need the symbols any
4096 longer. We still need them if we are keeping memory, because the
4097 strings in the hash table point into them. */
4098 if (! finfo->info->keep_memory)
4100 if (! aout_link_free_symbols (input_bfd))
4107 /* Adjust and write out the symbols for an a.out file. Set the new
4108 symbol indices into a symbol_map. */
4111 aout_link_write_symbols (finfo, input_bfd)
4112 struct aout_final_link_info *finfo;
4116 bfd_size_type sym_count;
4118 enum bfd_link_strip strip;
4119 enum bfd_link_discard discard;
4120 struct external_nlist *outsym;
4121 bfd_size_type strtab_index;
4122 register struct external_nlist *sym;
4123 struct external_nlist *sym_end;
4124 struct aout_link_hash_entry **sym_hash;
4127 bfd_boolean skip_next;
4129 output_bfd = finfo->output_bfd;
4130 sym_count = obj_aout_external_sym_count (input_bfd);
4131 strings = obj_aout_external_strings (input_bfd);
4132 strip = finfo->info->strip;
4133 discard = finfo->info->discard;
4134 outsym = finfo->output_syms;
4136 /* First write out a symbol for this object file, unless we are
4137 discarding such symbols. */
4138 if (strip != strip_all
4139 && (strip != strip_some
4140 || bfd_hash_lookup (finfo->info->keep_hash, input_bfd->filename,
4141 FALSE, FALSE) != NULL)
4142 && discard != discard_all)
4144 H_PUT_8 (output_bfd, N_TEXT, outsym->e_type);
4145 H_PUT_8 (output_bfd, 0, outsym->e_other);
4146 H_PUT_16 (output_bfd, 0, outsym->e_desc);
4147 strtab_index = add_to_stringtab (output_bfd, finfo->strtab,
4148 input_bfd->filename, FALSE);
4149 if (strtab_index == (bfd_size_type) -1)
4151 PUT_WORD (output_bfd, strtab_index, outsym->e_strx);
4152 PUT_WORD (output_bfd,
4153 (bfd_get_section_vma (output_bfd,
4154 obj_textsec (input_bfd)->output_section)
4155 + obj_textsec (input_bfd)->output_offset),
4157 ++obj_aout_external_sym_count (output_bfd);
4163 sym = obj_aout_external_syms (input_bfd);
4164 sym_end = sym + sym_count;
4165 sym_hash = obj_aout_sym_hashes (input_bfd);
4166 symbol_map = finfo->symbol_map;
4167 memset (symbol_map, 0, (size_t) sym_count * sizeof *symbol_map);
4168 for (; sym < sym_end; sym++, sym_hash++, symbol_map++)
4172 struct aout_link_hash_entry *h;
4178 /* We set *symbol_map to 0 above for all symbols. If it has
4179 already been set to -1 for this symbol, it means that we are
4180 discarding it because it appears in a duplicate header file.
4181 See the N_BINCL code below. */
4182 if (*symbol_map == -1)
4185 /* Initialize *symbol_map to -1, which means that the symbol was
4186 not copied into the output file. We will change it later if
4187 we do copy the symbol over. */
4190 type = H_GET_8 (input_bfd, sym->e_type);
4191 name = strings + GET_WORD (input_bfd, sym->e_strx);
4197 /* Pass this symbol through. It is the target of an
4198 indirect or warning symbol. */
4199 val = GET_WORD (input_bfd, sym->e_value);
4204 /* Skip this symbol, which is the target of an indirect
4205 symbol that we have changed to no longer be an indirect
4212 struct aout_link_hash_entry *hresolve;
4214 /* We have saved the hash table entry for this symbol, if
4215 there is one. Note that we could just look it up again
4216 in the hash table, provided we first check that it is an
4220 /* Use the name from the hash table, in case the symbol was
4223 && h->root.type != bfd_link_hash_warning)
4224 name = h->root.root.string;
4226 /* If this is an indirect or warning symbol, then change
4227 hresolve to the base symbol. We also change *sym_hash so
4228 that the relocation routines relocate against the real
4231 if (h != (struct aout_link_hash_entry *) NULL
4232 && (h->root.type == bfd_link_hash_indirect
4233 || h->root.type == bfd_link_hash_warning))
4235 hresolve = (struct aout_link_hash_entry *) h->root.u.i.link;
4236 while (hresolve->root.type == bfd_link_hash_indirect
4237 || hresolve->root.type == bfd_link_hash_warning)
4238 hresolve = ((struct aout_link_hash_entry *)
4239 hresolve->root.u.i.link);
4240 *sym_hash = hresolve;
4243 /* If the symbol has already been written out, skip it. */
4244 if (h != (struct aout_link_hash_entry *) NULL
4247 if ((type & N_TYPE) == N_INDR
4248 || type == N_WARNING)
4250 *symbol_map = h->indx;
4254 /* See if we are stripping this symbol. */
4260 case strip_debugger:
4261 if ((type & N_STAB) != 0)
4265 if (bfd_hash_lookup (finfo->info->keep_hash, name, FALSE, FALSE)
4275 if (h != (struct aout_link_hash_entry *) NULL)
4280 /* Get the value of the symbol. */
4281 if ((type & N_TYPE) == N_TEXT
4283 symsec = obj_textsec (input_bfd);
4284 else if ((type & N_TYPE) == N_DATA
4286 symsec = obj_datasec (input_bfd);
4287 else if ((type & N_TYPE) == N_BSS
4289 symsec = obj_bsssec (input_bfd);
4290 else if ((type & N_TYPE) == N_ABS
4292 symsec = bfd_abs_section_ptr;
4293 else if (((type & N_TYPE) == N_INDR
4294 && (hresolve == (struct aout_link_hash_entry *) NULL
4295 || (hresolve->root.type != bfd_link_hash_defined
4296 && hresolve->root.type != bfd_link_hash_defweak
4297 && hresolve->root.type != bfd_link_hash_common)))
4298 || type == N_WARNING)
4300 /* Pass the next symbol through unchanged. The
4301 condition above for indirect symbols is so that if
4302 the indirect symbol was defined, we output it with
4303 the correct definition so the debugger will
4306 val = GET_WORD (input_bfd, sym->e_value);
4309 else if ((type & N_STAB) != 0)
4311 val = GET_WORD (input_bfd, sym->e_value);
4316 /* If we get here with an indirect symbol, it means that
4317 we are outputting it with a real definition. In such
4318 a case we do not want to output the next symbol,
4319 which is the target of the indirection. */
4320 if ((type & N_TYPE) == N_INDR)
4325 /* We need to get the value from the hash table. We use
4326 hresolve so that if we have defined an indirect
4327 symbol we output the final definition. */
4328 if (h == (struct aout_link_hash_entry *) NULL)
4330 switch (type & N_TYPE)
4333 symsec = obj_textsec (input_bfd);
4336 symsec = obj_datasec (input_bfd);
4339 symsec = obj_bsssec (input_bfd);
4342 symsec = bfd_abs_section_ptr;
4349 else if (hresolve->root.type == bfd_link_hash_defined
4350 || hresolve->root.type == bfd_link_hash_defweak)
4352 asection *input_section;
4353 asection *output_section;
4355 /* This case usually means a common symbol which was
4356 turned into a defined symbol. */
4357 input_section = hresolve->root.u.def.section;
4358 output_section = input_section->output_section;
4359 BFD_ASSERT (bfd_is_abs_section (output_section)
4360 || output_section->owner == output_bfd);
4361 val = (hresolve->root.u.def.value
4362 + bfd_get_section_vma (output_bfd, output_section)
4363 + input_section->output_offset);
4365 /* Get the correct type based on the section. If
4366 this is a constructed set, force it to be
4367 globally visible. */
4376 if (output_section == obj_textsec (output_bfd))
4377 type |= (hresolve->root.type == bfd_link_hash_defined
4380 else if (output_section == obj_datasec (output_bfd))
4381 type |= (hresolve->root.type == bfd_link_hash_defined
4384 else if (output_section == obj_bsssec (output_bfd))
4385 type |= (hresolve->root.type == bfd_link_hash_defined
4389 type |= (hresolve->root.type == bfd_link_hash_defined
4393 else if (hresolve->root.type == bfd_link_hash_common)
4394 val = hresolve->root.u.c.size;
4395 else if (hresolve->root.type == bfd_link_hash_undefweak)
4403 if (symsec != (asection *) NULL)
4404 val = (symsec->output_section->vma
4405 + symsec->output_offset
4406 + (GET_WORD (input_bfd, sym->e_value)
4409 /* If this is a global symbol set the written flag, and if
4410 it is a local symbol see if we should discard it. */
4411 if (h != (struct aout_link_hash_entry *) NULL)
4414 h->indx = obj_aout_external_sym_count (output_bfd);
4416 else if ((type & N_TYPE) != N_SETT
4417 && (type & N_TYPE) != N_SETD
4418 && (type & N_TYPE) != N_SETB
4419 && (type & N_TYPE) != N_SETA)
4424 case discard_sec_merge:
4427 if ((type & N_STAB) == 0
4428 && bfd_is_local_label_name (input_bfd, name))
4442 /* An N_BINCL symbol indicates the start of the stabs
4443 entries for a header file. We need to scan ahead to the
4444 next N_EINCL symbol, ignoring nesting, adding up all the
4445 characters in the symbol names, not including the file
4446 numbers in types (the first number after an open
4448 if (type == (int) N_BINCL)
4450 struct external_nlist *incl_sym;
4452 struct aout_link_includes_entry *incl_entry;
4453 struct aout_link_includes_totals *t;
4457 for (incl_sym = sym + 1; incl_sym < sym_end; incl_sym++)
4461 incl_type = H_GET_8 (input_bfd, incl_sym->e_type);
4462 if (incl_type == (int) N_EINCL)
4468 else if (incl_type == (int) N_BINCL)
4474 s = strings + GET_WORD (input_bfd, incl_sym->e_strx);
4475 for (; *s != '\0'; s++)
4480 /* Skip the file number. */
4482 while (ISDIGIT (*s))
4490 /* If we have already included a header file with the
4491 same value, then replace this one with an N_EXCL
4493 copy = (bfd_boolean) (! finfo->info->keep_memory);
4494 incl_entry = aout_link_includes_lookup (&finfo->includes,
4496 if (incl_entry == NULL)
4498 for (t = incl_entry->totals; t != NULL; t = t->next)
4499 if (t->total == val)
4503 /* This is the first time we have seen this header
4504 file with this set of stabs strings. */
4505 t = ((struct aout_link_includes_totals *)
4506 bfd_hash_allocate (&finfo->includes.root,
4511 t->next = incl_entry->totals;
4512 incl_entry->totals = t;
4518 /* This is a duplicate header file. We must change
4519 it to be an N_EXCL entry, and mark all the
4520 included symbols to prevent outputting them. */
4521 type = (int) N_EXCL;
4524 for (incl_sym = sym + 1, incl_map = symbol_map + 1;
4526 incl_sym++, incl_map++)
4530 incl_type = H_GET_8 (input_bfd, incl_sym->e_type);
4531 if (incl_type == (int) N_EINCL)
4540 else if (incl_type == (int) N_BINCL)
4549 /* Copy this symbol into the list of symbols we are going to
4551 H_PUT_8 (output_bfd, type, outsym->e_type);
4552 H_PUT_8 (output_bfd, H_GET_8 (input_bfd, sym->e_other), outsym->e_other);
4553 H_PUT_16 (output_bfd, H_GET_16 (input_bfd, sym->e_desc), outsym->e_desc);
4555 if (! finfo->info->keep_memory)
4557 /* name points into a string table which we are going to
4558 free. If there is a hash table entry, use that string.
4559 Otherwise, copy name into memory. */
4560 if (h != (struct aout_link_hash_entry *) NULL)
4561 name = h->root.root.string;
4565 strtab_index = add_to_stringtab (output_bfd, finfo->strtab,
4567 if (strtab_index == (bfd_size_type) -1)
4569 PUT_WORD (output_bfd, strtab_index, outsym->e_strx);
4570 PUT_WORD (output_bfd, val, outsym->e_value);
4571 *symbol_map = obj_aout_external_sym_count (output_bfd);
4572 ++obj_aout_external_sym_count (output_bfd);
4576 /* Write out the output symbols we have just constructed. */
4577 if (outsym > finfo->output_syms)
4579 bfd_size_type outsym_size;
4581 if (bfd_seek (output_bfd, finfo->symoff, SEEK_SET) != 0)
4583 outsym_size = outsym - finfo->output_syms;
4584 outsym_size *= EXTERNAL_NLIST_SIZE;
4585 if (bfd_bwrite ((PTR) finfo->output_syms, outsym_size, output_bfd)
4588 finfo->symoff += outsym_size;
4594 /* Write out a symbol that was not associated with an a.out input
4598 aout_link_write_other_symbol (h, data)
4599 struct aout_link_hash_entry *h;
4602 struct aout_final_link_info *finfo = (struct aout_final_link_info *) data;
4606 struct external_nlist outsym;
4610 if (h->root.type == bfd_link_hash_warning)
4612 h = (struct aout_link_hash_entry *) h->root.u.i.link;
4613 if (h->root.type == bfd_link_hash_new)
4617 output_bfd = finfo->output_bfd;
4619 if (aout_backend_info (output_bfd)->write_dynamic_symbol != NULL)
4621 if (! ((*aout_backend_info (output_bfd)->write_dynamic_symbol)
4622 (output_bfd, finfo->info, h)))
4624 /* FIXME: No way to handle errors. */
4634 /* An indx of -2 means the symbol must be written. */
4636 && (finfo->info->strip == strip_all
4637 || (finfo->info->strip == strip_some
4638 && bfd_hash_lookup (finfo->info->keep_hash, h->root.root.string,
4639 FALSE, FALSE) == NULL)))
4642 switch (h->root.type)
4645 case bfd_link_hash_warning:
4647 /* Avoid variable not initialized warnings. */
4649 case bfd_link_hash_new:
4650 /* This can happen for set symbols when sets are not being
4653 case bfd_link_hash_undefined:
4654 type = N_UNDF | N_EXT;
4657 case bfd_link_hash_defined:
4658 case bfd_link_hash_defweak:
4662 sec = h->root.u.def.section->output_section;
4663 BFD_ASSERT (bfd_is_abs_section (sec)
4664 || sec->owner == output_bfd);
4665 if (sec == obj_textsec (output_bfd))
4666 type = h->root.type == bfd_link_hash_defined ? N_TEXT : N_WEAKT;
4667 else if (sec == obj_datasec (output_bfd))
4668 type = h->root.type == bfd_link_hash_defined ? N_DATA : N_WEAKD;
4669 else if (sec == obj_bsssec (output_bfd))
4670 type = h->root.type == bfd_link_hash_defined ? N_BSS : N_WEAKB;
4672 type = h->root.type == bfd_link_hash_defined ? N_ABS : N_WEAKA;
4674 val = (h->root.u.def.value
4676 + h->root.u.def.section->output_offset);
4679 case bfd_link_hash_common:
4680 type = N_UNDF | N_EXT;
4681 val = h->root.u.c.size;
4683 case bfd_link_hash_undefweak:
4686 case bfd_link_hash_indirect:
4687 /* We ignore these symbols, since the indirected symbol is
4688 already in the hash table. */
4692 H_PUT_8 (output_bfd, type, outsym.e_type);
4693 H_PUT_8 (output_bfd, 0, outsym.e_other);
4694 H_PUT_16 (output_bfd, 0, outsym.e_desc);
4695 indx = add_to_stringtab (output_bfd, finfo->strtab, h->root.root.string,
4697 if (indx == - (bfd_size_type) 1)
4699 /* FIXME: No way to handle errors. */
4702 PUT_WORD (output_bfd, indx, outsym.e_strx);
4703 PUT_WORD (output_bfd, val, outsym.e_value);
4705 amt = EXTERNAL_NLIST_SIZE;
4706 if (bfd_seek (output_bfd, finfo->symoff, SEEK_SET) != 0
4707 || bfd_bwrite ((PTR) &outsym, amt, output_bfd) != amt)
4709 /* FIXME: No way to handle errors. */
4713 finfo->symoff += EXTERNAL_NLIST_SIZE;
4714 h->indx = obj_aout_external_sym_count (output_bfd);
4715 ++obj_aout_external_sym_count (output_bfd);
4720 /* Link an a.out section into the output file. */
4723 aout_link_input_section (finfo, input_bfd, input_section, reloff_ptr,
4725 struct aout_final_link_info *finfo;
4727 asection *input_section;
4728 file_ptr *reloff_ptr;
4729 bfd_size_type rel_size;
4731 bfd_size_type input_size;
4734 /* Get the section contents. */
4735 input_size = bfd_section_size (input_bfd, input_section);
4736 if (! bfd_get_section_contents (input_bfd, input_section,
4737 (PTR) finfo->contents,
4738 (file_ptr) 0, input_size))
4741 /* Read in the relocs if we haven't already done it. */
4742 if (aout_section_data (input_section) != NULL
4743 && aout_section_data (input_section)->relocs != NULL)
4744 relocs = aout_section_data (input_section)->relocs;
4747 relocs = finfo->relocs;
4750 if (bfd_seek (input_bfd, input_section->rel_filepos, SEEK_SET) != 0
4751 || bfd_bread (relocs, rel_size, input_bfd) != rel_size)
4756 /* Relocate the section contents. */
4757 if (obj_reloc_entry_size (input_bfd) == RELOC_STD_SIZE)
4759 if (! aout_link_input_section_std (finfo, input_bfd, input_section,
4760 (struct reloc_std_external *) relocs,
4761 rel_size, finfo->contents))
4766 if (! aout_link_input_section_ext (finfo, input_bfd, input_section,
4767 (struct reloc_ext_external *) relocs,
4768 rel_size, finfo->contents))
4772 /* Write out the section contents. */
4773 if (! bfd_set_section_contents (finfo->output_bfd,
4774 input_section->output_section,
4775 (PTR) finfo->contents,
4776 (file_ptr) input_section->output_offset,
4780 /* If we are producing relocateable output, the relocs were
4781 modified, and we now write them out. */
4782 if (finfo->info->relocateable && rel_size > 0)
4784 if (bfd_seek (finfo->output_bfd, *reloff_ptr, SEEK_SET) != 0)
4786 if (bfd_bwrite (relocs, rel_size, finfo->output_bfd) != rel_size)
4788 *reloff_ptr += rel_size;
4790 /* Assert that the relocs have not run into the symbols, and
4791 that if these are the text relocs they have not run into the
4793 BFD_ASSERT (*reloff_ptr <= obj_sym_filepos (finfo->output_bfd)
4794 && (reloff_ptr != &finfo->treloff
4796 <= obj_datasec (finfo->output_bfd)->rel_filepos)));
4802 /* Get the section corresponding to a reloc index. */
4804 static INLINE asection *
4805 aout_reloc_index_to_section (abfd, indx)
4809 switch (indx & N_TYPE)
4812 return obj_textsec (abfd);
4814 return obj_datasec (abfd);
4816 return obj_bsssec (abfd);
4819 return bfd_abs_section_ptr;
4827 /* Relocate an a.out section using standard a.out relocs. */
4830 aout_link_input_section_std (finfo, input_bfd, input_section, relocs,
4832 struct aout_final_link_info *finfo;
4834 asection *input_section;
4835 struct reloc_std_external *relocs;
4836 bfd_size_type rel_size;
4839 bfd_boolean (*check_dynamic_reloc)
4840 PARAMS ((struct bfd_link_info *, bfd *, asection *,
4841 struct aout_link_hash_entry *, PTR, bfd_byte *, bfd_boolean *,
4844 bfd_boolean relocateable;
4845 struct external_nlist *syms;
4847 struct aout_link_hash_entry **sym_hashes;
4849 bfd_size_type reloc_count;
4850 register struct reloc_std_external *rel;
4851 struct reloc_std_external *rel_end;
4853 output_bfd = finfo->output_bfd;
4854 check_dynamic_reloc = aout_backend_info (output_bfd)->check_dynamic_reloc;
4856 BFD_ASSERT (obj_reloc_entry_size (input_bfd) == RELOC_STD_SIZE);
4857 BFD_ASSERT (input_bfd->xvec->header_byteorder
4858 == output_bfd->xvec->header_byteorder);
4860 relocateable = finfo->info->relocateable;
4861 syms = obj_aout_external_syms (input_bfd);
4862 strings = obj_aout_external_strings (input_bfd);
4863 sym_hashes = obj_aout_sym_hashes (input_bfd);
4864 symbol_map = finfo->symbol_map;
4866 reloc_count = rel_size / RELOC_STD_SIZE;
4868 rel_end = rel + reloc_count;
4869 for (; rel < rel_end; rel++)
4876 reloc_howto_type *howto;
4877 struct aout_link_hash_entry *h = NULL;
4879 bfd_reloc_status_type r;
4881 r_addr = GET_SWORD (input_bfd, rel->r_address);
4883 #ifdef MY_reloc_howto
4884 howto = MY_reloc_howto (input_bfd, rel, r_index, r_extern, r_pcrel);
4890 unsigned int howto_idx;
4892 if (bfd_header_big_endian (input_bfd))
4894 r_index = (((unsigned int) rel->r_index[0] << 16)
4895 | ((unsigned int) rel->r_index[1] << 8)
4897 r_extern = (0 != (rel->r_type[0] & RELOC_STD_BITS_EXTERN_BIG));
4898 r_pcrel = (0 != (rel->r_type[0] & RELOC_STD_BITS_PCREL_BIG));
4899 r_baserel = (0 != (rel->r_type[0] & RELOC_STD_BITS_BASEREL_BIG));
4900 r_jmptable= (0 != (rel->r_type[0] & RELOC_STD_BITS_JMPTABLE_BIG));
4901 r_relative= (0 != (rel->r_type[0] & RELOC_STD_BITS_RELATIVE_BIG));
4902 r_length = ((rel->r_type[0] & RELOC_STD_BITS_LENGTH_BIG)
4903 >> RELOC_STD_BITS_LENGTH_SH_BIG);
4907 r_index = (((unsigned int) rel->r_index[2] << 16)
4908 | ((unsigned int) rel->r_index[1] << 8)
4910 r_extern = (0 != (rel->r_type[0] & RELOC_STD_BITS_EXTERN_LITTLE));
4911 r_pcrel = (0 != (rel->r_type[0] & RELOC_STD_BITS_PCREL_LITTLE));
4912 r_baserel = (0 != (rel->r_type[0]
4913 & RELOC_STD_BITS_BASEREL_LITTLE));
4914 r_jmptable= (0 != (rel->r_type[0]
4915 & RELOC_STD_BITS_JMPTABLE_LITTLE));
4916 r_relative= (0 != (rel->r_type[0]
4917 & RELOC_STD_BITS_RELATIVE_LITTLE));
4918 r_length = ((rel->r_type[0] & RELOC_STD_BITS_LENGTH_LITTLE)
4919 >> RELOC_STD_BITS_LENGTH_SH_LITTLE);
4922 howto_idx = (r_length + 4 * r_pcrel + 8 * r_baserel
4923 + 16 * r_jmptable + 32 * r_relative);
4924 BFD_ASSERT (howto_idx < TABLE_SIZE (howto_table_std));
4925 howto = howto_table_std + howto_idx;
4931 /* We are generating a relocateable output file, and must
4932 modify the reloc accordingly. */
4935 /* If we know the symbol this relocation is against,
4936 convert it into a relocation against a section. This
4937 is what the native linker does. */
4938 h = sym_hashes[r_index];
4939 if (h != (struct aout_link_hash_entry *) NULL
4940 && (h->root.type == bfd_link_hash_defined
4941 || h->root.type == bfd_link_hash_defweak))
4943 asection *output_section;
4945 /* Change the r_extern value. */
4946 if (bfd_header_big_endian (output_bfd))
4947 rel->r_type[0] &=~ RELOC_STD_BITS_EXTERN_BIG;
4949 rel->r_type[0] &=~ RELOC_STD_BITS_EXTERN_LITTLE;
4951 /* Compute a new r_index. */
4952 output_section = h->root.u.def.section->output_section;
4953 if (output_section == obj_textsec (output_bfd))
4955 else if (output_section == obj_datasec (output_bfd))
4957 else if (output_section == obj_bsssec (output_bfd))
4962 /* Add the symbol value and the section VMA to the
4963 addend stored in the contents. */
4964 relocation = (h->root.u.def.value
4965 + output_section->vma
4966 + h->root.u.def.section->output_offset);
4970 /* We must change r_index according to the symbol
4972 r_index = symbol_map[r_index];
4978 /* We decided to strip this symbol, but it
4979 turns out that we can't. Note that we
4980 lose the other and desc information here.
4981 I don't think that will ever matter for a
4987 if (! aout_link_write_other_symbol (h,
4997 name = strings + GET_WORD (input_bfd,
4998 syms[r_index].e_strx);
4999 if (! ((*finfo->info->callbacks->unattached_reloc)
5000 (finfo->info, name, input_bfd, input_section,
5010 /* Write out the new r_index value. */
5011 if (bfd_header_big_endian (output_bfd))
5013 rel->r_index[0] = r_index >> 16;
5014 rel->r_index[1] = r_index >> 8;
5015 rel->r_index[2] = r_index;
5019 rel->r_index[2] = r_index >> 16;
5020 rel->r_index[1] = r_index >> 8;
5021 rel->r_index[0] = r_index;
5028 /* This is a relocation against a section. We must
5029 adjust by the amount that the section moved. */
5030 section = aout_reloc_index_to_section (input_bfd, r_index);
5031 relocation = (section->output_section->vma
5032 + section->output_offset
5036 /* Change the address of the relocation. */
5037 PUT_WORD (output_bfd,
5038 r_addr + input_section->output_offset,
5041 /* Adjust a PC relative relocation by removing the reference
5042 to the original address in the section and including the
5043 reference to the new address. */
5045 relocation -= (input_section->output_section->vma
5046 + input_section->output_offset
5047 - input_section->vma);
5049 #ifdef MY_relocatable_reloc
5050 MY_relocatable_reloc (howto, output_bfd, rel, relocation, r_addr);
5053 if (relocation == 0)
5056 r = MY_relocate_contents (howto,
5057 input_bfd, relocation,
5064 /* We are generating an executable, and must do a full
5070 h = sym_hashes[r_index];
5072 if (h != (struct aout_link_hash_entry *) NULL
5073 && (h->root.type == bfd_link_hash_defined
5074 || h->root.type == bfd_link_hash_defweak))
5076 relocation = (h->root.u.def.value
5077 + h->root.u.def.section->output_section->vma
5078 + h->root.u.def.section->output_offset);
5080 else if (h != (struct aout_link_hash_entry *) NULL
5081 && h->root.type == bfd_link_hash_undefweak)
5093 section = aout_reloc_index_to_section (input_bfd, r_index);
5094 relocation = (section->output_section->vma
5095 + section->output_offset
5098 relocation += input_section->vma;
5101 if (check_dynamic_reloc != NULL)
5105 if (! ((*check_dynamic_reloc)
5106 (finfo->info, input_bfd, input_section, h,
5107 (PTR) rel, contents, &skip, &relocation)))
5113 /* Now warn if a global symbol is undefined. We could not
5114 do this earlier, because check_dynamic_reloc might want
5115 to skip this reloc. */
5116 if (hundef && ! finfo->info->shared && ! r_baserel)
5121 name = h->root.root.string;
5123 name = strings + GET_WORD (input_bfd, syms[r_index].e_strx);
5124 if (! ((*finfo->info->callbacks->undefined_symbol)
5125 (finfo->info, name, input_bfd, input_section,
5130 r = MY_final_link_relocate (howto,
5131 input_bfd, input_section,
5132 contents, r_addr, relocation,
5136 if (r != bfd_reloc_ok)
5141 case bfd_reloc_outofrange:
5143 case bfd_reloc_overflow:
5148 name = h->root.root.string;
5150 name = strings + GET_WORD (input_bfd,
5151 syms[r_index].e_strx);
5156 s = aout_reloc_index_to_section (input_bfd, r_index);
5157 name = bfd_section_name (input_bfd, s);
5159 if (! ((*finfo->info->callbacks->reloc_overflow)
5160 (finfo->info, name, howto->name,
5161 (bfd_vma) 0, input_bfd, input_section, r_addr)))
5172 /* Relocate an a.out section using extended a.out relocs. */
5175 aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
5177 struct aout_final_link_info *finfo;
5179 asection *input_section;
5180 struct reloc_ext_external *relocs;
5181 bfd_size_type rel_size;
5184 bfd_boolean (*check_dynamic_reloc)
5185 PARAMS ((struct bfd_link_info *, bfd *, asection *,
5186 struct aout_link_hash_entry *, PTR, bfd_byte *, bfd_boolean *,
5189 bfd_boolean relocateable;
5190 struct external_nlist *syms;
5192 struct aout_link_hash_entry **sym_hashes;
5194 bfd_size_type reloc_count;
5195 register struct reloc_ext_external *rel;
5196 struct reloc_ext_external *rel_end;
5198 output_bfd = finfo->output_bfd;
5199 check_dynamic_reloc = aout_backend_info (output_bfd)->check_dynamic_reloc;
5201 BFD_ASSERT (obj_reloc_entry_size (input_bfd) == RELOC_EXT_SIZE);
5202 BFD_ASSERT (input_bfd->xvec->header_byteorder
5203 == output_bfd->xvec->header_byteorder);
5205 relocateable = finfo->info->relocateable;
5206 syms = obj_aout_external_syms (input_bfd);
5207 strings = obj_aout_external_strings (input_bfd);
5208 sym_hashes = obj_aout_sym_hashes (input_bfd);
5209 symbol_map = finfo->symbol_map;
5211 reloc_count = rel_size / RELOC_EXT_SIZE;
5213 rel_end = rel + reloc_count;
5214 for (; rel < rel_end; rel++)
5219 unsigned int r_type;
5221 struct aout_link_hash_entry *h = NULL;
5222 asection *r_section = NULL;
5225 r_addr = GET_SWORD (input_bfd, rel->r_address);
5227 if (bfd_header_big_endian (input_bfd))
5229 r_index = (((unsigned int) rel->r_index[0] << 16)
5230 | ((unsigned int) rel->r_index[1] << 8)
5232 r_extern = (0 != (rel->r_type[0] & RELOC_EXT_BITS_EXTERN_BIG));
5233 r_type = ((rel->r_type[0] & RELOC_EXT_BITS_TYPE_BIG)
5234 >> RELOC_EXT_BITS_TYPE_SH_BIG);
5238 r_index = (((unsigned int) rel->r_index[2] << 16)
5239 | ((unsigned int) rel->r_index[1] << 8)
5241 r_extern = (0 != (rel->r_type[0] & RELOC_EXT_BITS_EXTERN_LITTLE));
5242 r_type = ((rel->r_type[0] & RELOC_EXT_BITS_TYPE_LITTLE)
5243 >> RELOC_EXT_BITS_TYPE_SH_LITTLE);
5246 r_addend = GET_SWORD (input_bfd, rel->r_addend);
5248 BFD_ASSERT (r_type < TABLE_SIZE (howto_table_ext));
5252 /* We are generating a relocateable output file, and must
5253 modify the reloc accordingly. */
5255 || r_type == (unsigned int) RELOC_BASE10
5256 || r_type == (unsigned int) RELOC_BASE13
5257 || r_type == (unsigned int) RELOC_BASE22)
5259 /* If we know the symbol this relocation is against,
5260 convert it into a relocation against a section. This
5261 is what the native linker does. */
5262 if (r_type == (unsigned int) RELOC_BASE10
5263 || r_type == (unsigned int) RELOC_BASE13
5264 || r_type == (unsigned int) RELOC_BASE22)
5267 h = sym_hashes[r_index];
5268 if (h != (struct aout_link_hash_entry *) NULL
5269 && (h->root.type == bfd_link_hash_defined
5270 || h->root.type == bfd_link_hash_defweak))
5272 asection *output_section;
5274 /* Change the r_extern value. */
5275 if (bfd_header_big_endian (output_bfd))
5276 rel->r_type[0] &=~ RELOC_EXT_BITS_EXTERN_BIG;
5278 rel->r_type[0] &=~ RELOC_EXT_BITS_EXTERN_LITTLE;
5280 /* Compute a new r_index. */
5281 output_section = h->root.u.def.section->output_section;
5282 if (output_section == obj_textsec (output_bfd))
5284 else if (output_section == obj_datasec (output_bfd))
5286 else if (output_section == obj_bsssec (output_bfd))
5291 /* Add the symbol value and the section VMA to the
5293 relocation = (h->root.u.def.value
5294 + output_section->vma
5295 + h->root.u.def.section->output_offset);
5297 /* Now RELOCATION is the VMA of the final
5298 destination. If this is a PC relative reloc,
5299 then ADDEND is the negative of the source VMA.
5300 We want to set ADDEND to the difference between
5301 the destination VMA and the source VMA, which
5302 means we must adjust RELOCATION by the change in
5303 the source VMA. This is done below. */
5307 /* We must change r_index according to the symbol
5309 r_index = symbol_map[r_index];
5315 /* We decided to strip this symbol, but it
5316 turns out that we can't. Note that we
5317 lose the other and desc information here.
5318 I don't think that will ever matter for a
5324 if (! aout_link_write_other_symbol (h,
5334 name = strings + GET_WORD (input_bfd,
5335 syms[r_index].e_strx);
5336 if (! ((*finfo->info->callbacks->unattached_reloc)
5337 (finfo->info, name, input_bfd, input_section,
5346 /* If this is a PC relative reloc, then the addend
5347 is the negative of the source VMA. We must
5348 adjust it by the change in the source VMA. This
5352 /* Write out the new r_index value. */
5353 if (bfd_header_big_endian (output_bfd))
5355 rel->r_index[0] = r_index >> 16;
5356 rel->r_index[1] = r_index >> 8;
5357 rel->r_index[2] = r_index;
5361 rel->r_index[2] = r_index >> 16;
5362 rel->r_index[1] = r_index >> 8;
5363 rel->r_index[0] = r_index;
5368 /* This is a relocation against a section. We must
5369 adjust by the amount that the section moved. */
5370 r_section = aout_reloc_index_to_section (input_bfd, r_index);
5371 relocation = (r_section->output_section->vma
5372 + r_section->output_offset
5375 /* If this is a PC relative reloc, then the addend is
5376 the difference in VMA between the destination and the
5377 source. We have just adjusted for the change in VMA
5378 of the destination, so we must also adjust by the
5379 change in VMA of the source. This is done below. */
5382 /* As described above, we must always adjust a PC relative
5383 reloc by the change in VMA of the source. However, if
5384 pcrel_offset is set, then the addend does not include the
5385 location within the section, in which case we don't need
5386 to adjust anything. */
5387 if (howto_table_ext[r_type].pc_relative
5388 && ! howto_table_ext[r_type].pcrel_offset)
5389 relocation -= (input_section->output_section->vma
5390 + input_section->output_offset
5391 - input_section->vma);
5393 /* Change the addend if necessary. */
5394 if (relocation != 0)
5395 PUT_WORD (output_bfd, r_addend + relocation, rel->r_addend);
5397 /* Change the address of the relocation. */
5398 PUT_WORD (output_bfd,
5399 r_addr + input_section->output_offset,
5405 bfd_reloc_status_type r;
5407 /* We are generating an executable, and must do a full
5413 h = sym_hashes[r_index];
5415 if (h != (struct aout_link_hash_entry *) NULL
5416 && (h->root.type == bfd_link_hash_defined
5417 || h->root.type == bfd_link_hash_defweak))
5419 relocation = (h->root.u.def.value
5420 + h->root.u.def.section->output_section->vma
5421 + h->root.u.def.section->output_offset);
5423 else if (h != (struct aout_link_hash_entry *) NULL
5424 && h->root.type == bfd_link_hash_undefweak)
5432 else if (r_type == (unsigned int) RELOC_BASE10
5433 || r_type == (unsigned int) RELOC_BASE13
5434 || r_type == (unsigned int) RELOC_BASE22)
5436 struct external_nlist *sym;
5439 /* For base relative relocs, r_index is always an index
5440 into the symbol table, even if r_extern is 0. */
5441 sym = syms + r_index;
5442 type = H_GET_8 (input_bfd, sym->e_type);
5443 if ((type & N_TYPE) == N_TEXT
5445 r_section = obj_textsec (input_bfd);
5446 else if ((type & N_TYPE) == N_DATA
5448 r_section = obj_datasec (input_bfd);
5449 else if ((type & N_TYPE) == N_BSS
5451 r_section = obj_bsssec (input_bfd);
5452 else if ((type & N_TYPE) == N_ABS
5454 r_section = bfd_abs_section_ptr;
5457 relocation = (r_section->output_section->vma
5458 + r_section->output_offset
5459 + (GET_WORD (input_bfd, sym->e_value)
5464 r_section = aout_reloc_index_to_section (input_bfd, r_index);
5466 /* If this is a PC relative reloc, then R_ADDEND is the
5467 difference between the two vmas, or
5468 old_dest_sec + old_dest_off - (old_src_sec + old_src_off)
5470 old_dest_sec == section->vma
5472 old_src_sec == input_section->vma
5474 old_src_off == r_addr
5476 _bfd_final_link_relocate expects RELOCATION +
5477 R_ADDEND to be the VMA of the destination minus
5478 r_addr (the minus r_addr is because this relocation
5479 is not pcrel_offset, which is a bit confusing and
5480 should, perhaps, be changed), or
5483 new_dest_sec == output_section->vma + output_offset
5484 We arrange for this to happen by setting RELOCATION to
5485 new_dest_sec + old_src_sec - old_dest_sec
5487 If this is not a PC relative reloc, then R_ADDEND is
5488 simply the VMA of the destination, so we set
5489 RELOCATION to the change in the destination VMA, or
5490 new_dest_sec - old_dest_sec
5492 relocation = (r_section->output_section->vma
5493 + r_section->output_offset
5495 if (howto_table_ext[r_type].pc_relative)
5496 relocation += input_section->vma;
5499 if (check_dynamic_reloc != NULL)
5503 if (! ((*check_dynamic_reloc)
5504 (finfo->info, input_bfd, input_section, h,
5505 (PTR) rel, contents, &skip, &relocation)))
5511 /* Now warn if a global symbol is undefined. We could not
5512 do this earlier, because check_dynamic_reloc might want
5513 to skip this reloc. */
5515 && ! finfo->info->shared
5516 && r_type != (unsigned int) RELOC_BASE10
5517 && r_type != (unsigned int) RELOC_BASE13
5518 && r_type != (unsigned int) RELOC_BASE22)
5523 name = h->root.root.string;
5525 name = strings + GET_WORD (input_bfd, syms[r_index].e_strx);
5526 if (! ((*finfo->info->callbacks->undefined_symbol)
5527 (finfo->info, name, input_bfd, input_section,
5532 if (r_type != (unsigned int) RELOC_SPARC_REV32)
5533 r = MY_final_link_relocate (howto_table_ext + r_type,
5534 input_bfd, input_section,
5535 contents, r_addr, relocation,
5541 x = bfd_get_32 (input_bfd, contents + r_addr);
5542 x = x + relocation + r_addend;
5543 bfd_putl32 (/*input_bfd,*/ x, contents + r_addr);
5547 if (r != bfd_reloc_ok)
5552 case bfd_reloc_outofrange:
5554 case bfd_reloc_overflow:
5559 name = h->root.root.string;
5561 || r_type == (unsigned int) RELOC_BASE10
5562 || r_type == (unsigned int) RELOC_BASE13
5563 || r_type == (unsigned int) RELOC_BASE22)
5564 name = strings + GET_WORD (input_bfd,
5565 syms[r_index].e_strx);
5570 s = aout_reloc_index_to_section (input_bfd, r_index);
5571 name = bfd_section_name (input_bfd, s);
5573 if (! ((*finfo->info->callbacks->reloc_overflow)
5574 (finfo->info, name, howto_table_ext[r_type].name,
5575 r_addend, input_bfd, input_section, r_addr)))
5587 /* Handle a link order which is supposed to generate a reloc. */
5590 aout_link_reloc_link_order (finfo, o, p)
5591 struct aout_final_link_info *finfo;
5593 struct bfd_link_order *p;
5595 struct bfd_link_order_reloc *pr;
5598 reloc_howto_type *howto;
5599 file_ptr *reloff_ptr = NULL;
5600 struct reloc_std_external srel;
5601 struct reloc_ext_external erel;
5607 if (p->type == bfd_section_reloc_link_order)
5610 if (bfd_is_abs_section (pr->u.section))
5611 r_index = N_ABS | N_EXT;
5614 BFD_ASSERT (pr->u.section->owner == finfo->output_bfd);
5615 r_index = pr->u.section->target_index;
5620 struct aout_link_hash_entry *h;
5622 BFD_ASSERT (p->type == bfd_symbol_reloc_link_order);
5624 h = ((struct aout_link_hash_entry *)
5625 bfd_wrapped_link_hash_lookup (finfo->output_bfd, finfo->info,
5626 pr->u.name, FALSE, FALSE, TRUE));
5627 if (h != (struct aout_link_hash_entry *) NULL
5632 /* We decided to strip this symbol, but it turns out that we
5633 can't. Note that we lose the other and desc information
5634 here. I don't think that will ever matter for a global
5638 if (! aout_link_write_other_symbol (h, (PTR) finfo))
5644 if (! ((*finfo->info->callbacks->unattached_reloc)
5645 (finfo->info, pr->u.name, (bfd *) NULL,
5646 (asection *) NULL, (bfd_vma) 0)))
5652 howto = bfd_reloc_type_lookup (finfo->output_bfd, pr->reloc);
5655 bfd_set_error (bfd_error_bad_value);
5659 if (o == obj_textsec (finfo->output_bfd))
5660 reloff_ptr = &finfo->treloff;
5661 else if (o == obj_datasec (finfo->output_bfd))
5662 reloff_ptr = &finfo->dreloff;
5666 if (obj_reloc_entry_size (finfo->output_bfd) == RELOC_STD_SIZE)
5669 MY_put_reloc (finfo->output_bfd, r_extern, r_index, p->offset, howto,
5679 r_pcrel = (int) howto->pc_relative;
5680 r_baserel = (howto->type & 8) != 0;
5681 r_jmptable = (howto->type & 16) != 0;
5682 r_relative = (howto->type & 32) != 0;
5683 r_length = howto->size;
5685 PUT_WORD (finfo->output_bfd, p->offset, srel.r_address);
5686 if (bfd_header_big_endian (finfo->output_bfd))
5688 srel.r_index[0] = r_index >> 16;
5689 srel.r_index[1] = r_index >> 8;
5690 srel.r_index[2] = r_index;
5692 ((r_extern ? RELOC_STD_BITS_EXTERN_BIG : 0)
5693 | (r_pcrel ? RELOC_STD_BITS_PCREL_BIG : 0)
5694 | (r_baserel ? RELOC_STD_BITS_BASEREL_BIG : 0)
5695 | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_BIG : 0)
5696 | (r_relative ? RELOC_STD_BITS_RELATIVE_BIG : 0)
5697 | (r_length << RELOC_STD_BITS_LENGTH_SH_BIG));
5701 srel.r_index[2] = r_index >> 16;
5702 srel.r_index[1] = r_index >> 8;
5703 srel.r_index[0] = r_index;
5705 ((r_extern ? RELOC_STD_BITS_EXTERN_LITTLE : 0)
5706 | (r_pcrel ? RELOC_STD_BITS_PCREL_LITTLE : 0)
5707 | (r_baserel ? RELOC_STD_BITS_BASEREL_LITTLE : 0)
5708 | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_LITTLE : 0)
5709 | (r_relative ? RELOC_STD_BITS_RELATIVE_LITTLE : 0)
5710 | (r_length << RELOC_STD_BITS_LENGTH_SH_LITTLE));
5714 rel_ptr = (PTR) &srel;
5716 /* We have to write the addend into the object file, since
5717 standard a.out relocs are in place. It would be more
5718 reliable if we had the current contents of the file here,
5719 rather than assuming zeroes, but we can't read the file since
5720 it was opened using bfd_openw. */
5721 if (pr->addend != 0)
5724 bfd_reloc_status_type r;
5728 size = bfd_get_reloc_size (howto);
5729 buf = (bfd_byte *) bfd_zmalloc (size);
5730 if (buf == (bfd_byte *) NULL)
5732 r = MY_relocate_contents (howto, finfo->output_bfd,
5733 (bfd_vma) pr->addend, buf);
5739 case bfd_reloc_outofrange:
5741 case bfd_reloc_overflow:
5742 if (! ((*finfo->info->callbacks->reloc_overflow)
5744 (p->type == bfd_section_reloc_link_order
5745 ? bfd_section_name (finfo->output_bfd,
5748 howto->name, pr->addend, (bfd *) NULL,
5749 (asection *) NULL, (bfd_vma) 0)))
5756 ok = bfd_set_section_contents (finfo->output_bfd, o, (PTR) buf,
5757 (file_ptr) p->offset, size);
5765 #ifdef MY_put_ext_reloc
5766 MY_put_ext_reloc (finfo->output_bfd, r_extern, r_index, p->offset,
5767 howto, &erel, pr->addend);
5769 PUT_WORD (finfo->output_bfd, p->offset, erel.r_address);
5771 if (bfd_header_big_endian (finfo->output_bfd))
5773 erel.r_index[0] = r_index >> 16;
5774 erel.r_index[1] = r_index >> 8;
5775 erel.r_index[2] = r_index;
5777 ((r_extern ? RELOC_EXT_BITS_EXTERN_BIG : 0)
5778 | (howto->type << RELOC_EXT_BITS_TYPE_SH_BIG));
5782 erel.r_index[2] = r_index >> 16;
5783 erel.r_index[1] = r_index >> 8;
5784 erel.r_index[0] = r_index;
5786 (r_extern ? RELOC_EXT_BITS_EXTERN_LITTLE : 0)
5787 | (howto->type << RELOC_EXT_BITS_TYPE_SH_LITTLE);
5790 PUT_WORD (finfo->output_bfd, (bfd_vma) pr->addend, erel.r_addend);
5791 #endif /* MY_put_ext_reloc */
5793 rel_ptr = (PTR) &erel;
5796 amt = obj_reloc_entry_size (finfo->output_bfd);
5797 if (bfd_seek (finfo->output_bfd, *reloff_ptr, SEEK_SET) != 0
5798 || bfd_bwrite (rel_ptr, amt, finfo->output_bfd) != amt)
5801 *reloff_ptr += obj_reloc_entry_size (finfo->output_bfd);
5803 /* Assert that the relocs have not run into the symbols, and that n
5804 the text relocs have not run into the data relocs. */
5805 BFD_ASSERT (*reloff_ptr <= obj_sym_filepos (finfo->output_bfd)
5806 && (reloff_ptr != &finfo->treloff
5808 <= obj_datasec (finfo->output_bfd)->rel_filepos)));