1 /* BFD back-end for IBM RS/6000 "XCOFF" files.
2 Copyright (C) 1990-2016 Free Software Foundation, Inc.
3 Written by Metin G. Ozisik, Mimi Phuong-Thao Vo, and John Gilmore.
4 Archive support from Damon A. Permezel.
5 Contributed by IBM Corporation and 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 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
25 #include "libiberty.h"
29 #include "coff/internal.h"
30 #include "coff/xcoff.h"
31 #include "coff/rs6000.h"
35 extern bfd_boolean
_bfd_xcoff_mkobject (bfd
*);
36 extern bfd_boolean
_bfd_xcoff_copy_private_bfd_data (bfd
*, bfd
*);
37 extern bfd_boolean
_bfd_xcoff_is_local_label_name (bfd
*, const char *);
38 extern reloc_howto_type
*_bfd_xcoff_reloc_type_lookup
39 (bfd
*, bfd_reloc_code_real_type
);
40 extern bfd_boolean
_bfd_xcoff_slurp_armap (bfd
*);
41 extern const bfd_target
*_bfd_xcoff_archive_p (bfd
*);
42 extern void * _bfd_xcoff_read_ar_hdr (bfd
*);
43 extern bfd
*_bfd_xcoff_openr_next_archived_file (bfd
*, bfd
*);
44 extern int _bfd_xcoff_stat_arch_elt (bfd
*, struct stat
*);
45 extern bfd_boolean _bfd_xcoff_write_armap
46 (bfd
*, unsigned int, struct orl
*, unsigned int, int);
47 extern bfd_boolean
_bfd_xcoff_write_archive_contents (bfd
*);
48 extern int _bfd_xcoff_sizeof_headers (bfd
*, struct bfd_link_info
*);
49 extern void _bfd_xcoff_swap_sym_in (bfd
*, void *, void *);
50 extern unsigned int _bfd_xcoff_swap_sym_out (bfd
*, void *, void *);
51 extern void _bfd_xcoff_swap_aux_in (bfd
*, void *, int, int, int, int, void *);
52 extern unsigned int _bfd_xcoff_swap_aux_out
53 (bfd
*, void *, int, int, int, int, void *);
54 static void xcoff_swap_reloc_in (bfd
*, void *, void *);
55 static unsigned int xcoff_swap_reloc_out (bfd
*, void *, void *);
57 /* Forward declare xcoff_rtype2howto for coffcode.h macro. */
58 void xcoff_rtype2howto (arelent
*, struct internal_reloc
*);
60 /* coffcode.h needs these to be defined. */
61 #define RS6000COFF_C 1
63 #define SELECT_RELOC(internal, howto) \
65 internal.r_type = howto->type; \
67 ((howto->complain_on_overflow == complain_overflow_signed \
70 | (howto->bitsize - 1)); \
73 #define COFF_DEFAULT_SECTION_ALIGNMENT_POWER (3)
74 #define COFF_LONG_FILENAMES
75 #define NO_COFF_SYMBOLS
76 #define RTYPE2HOWTO(cache_ptr, dst) xcoff_rtype2howto (cache_ptr, dst)
77 #define coff_mkobject _bfd_xcoff_mkobject
78 #define coff_bfd_is_local_label_name _bfd_xcoff_is_local_label_name
80 extern const bfd_target
* rs6000coff_core_p (bfd
*abfd
);
81 extern bfd_boolean rs6000coff_core_file_matches_executable_p
82 (bfd
*cbfd
, bfd
*ebfd
);
83 extern char *rs6000coff_core_file_failing_command (bfd
*abfd
);
84 extern int rs6000coff_core_file_failing_signal (bfd
*abfd
);
85 #define CORE_FILE_P rs6000coff_core_p
86 #define coff_core_file_failing_command \
87 rs6000coff_core_file_failing_command
88 #define coff_core_file_failing_signal \
89 rs6000coff_core_file_failing_signal
90 #define coff_core_file_matches_executable_p \
91 rs6000coff_core_file_matches_executable_p
92 #define coff_core_file_pid \
93 _bfd_nocore_core_file_pid
95 #define CORE_FILE_P _bfd_dummy_target
96 #define coff_core_file_failing_command \
97 _bfd_nocore_core_file_failing_command
98 #define coff_core_file_failing_signal \
99 _bfd_nocore_core_file_failing_signal
100 #define coff_core_file_matches_executable_p \
101 _bfd_nocore_core_file_matches_executable_p
102 #define coff_core_file_pid \
103 _bfd_nocore_core_file_pid
105 #define coff_SWAP_sym_in _bfd_xcoff_swap_sym_in
106 #define coff_SWAP_sym_out _bfd_xcoff_swap_sym_out
107 #define coff_SWAP_aux_in _bfd_xcoff_swap_aux_in
108 #define coff_SWAP_aux_out _bfd_xcoff_swap_aux_out
109 #define coff_swap_reloc_in xcoff_swap_reloc_in
110 #define coff_swap_reloc_out xcoff_swap_reloc_out
111 #define NO_COFF_RELOCS
113 #ifndef bfd_pe_print_pdata
114 #define bfd_pe_print_pdata NULL
118 #include "coffcode.h"
120 /* The main body of code is in coffcode.h. */
122 static const char *normalize_filename (bfd
*);
123 static bfd_boolean xcoff_write_armap_old
124 (bfd
*, unsigned int, struct orl
*, unsigned int, int);
125 static bfd_boolean xcoff_write_armap_big
126 (bfd
*, unsigned int, struct orl
*, unsigned int, int);
127 static bfd_boolean
xcoff_write_archive_contents_old (bfd
*);
128 static bfd_boolean
xcoff_write_archive_contents_big (bfd
*);
129 static void xcoff_swap_ldhdr_in (bfd
*, const void *, struct internal_ldhdr
*);
130 static void xcoff_swap_ldhdr_out (bfd
*, const struct internal_ldhdr
*, void *);
131 static void xcoff_swap_ldsym_in (bfd
*, const void *, struct internal_ldsym
*);
132 static void xcoff_swap_ldsym_out (bfd
*, const struct internal_ldsym
*, void *);
133 static void xcoff_swap_ldrel_in (bfd
*, const void *, struct internal_ldrel
*);
134 static void xcoff_swap_ldrel_out (bfd
*, const struct internal_ldrel
*, void *);
135 static bfd_boolean xcoff_ppc_relocate_section
136 (bfd
*, struct bfd_link_info
*, bfd
*, asection
*, bfd_byte
*,
137 struct internal_reloc
*, struct internal_syment
*, asection
**);
138 static bfd_boolean _bfd_xcoff_put_ldsymbol_name
139 (bfd
*, struct xcoff_loader_info
*, struct internal_ldsym
*, const char *);
140 static asection
*xcoff_create_csect_from_smclas
141 (bfd
*, union internal_auxent
*, const char *);
142 static bfd_boolean
xcoff_is_lineno_count_overflow (bfd
*, bfd_vma
);
143 static bfd_boolean
xcoff_is_reloc_count_overflow (bfd
*, bfd_vma
);
144 static bfd_vma
xcoff_loader_symbol_offset (bfd
*, struct internal_ldhdr
*);
145 static bfd_vma
xcoff_loader_reloc_offset (bfd
*, struct internal_ldhdr
*);
146 static bfd_boolean xcoff_generate_rtinit
147 (bfd
*, const char *, const char *, bfd_boolean
);
148 static bfd_boolean
do_pad (bfd
*, unsigned int);
149 static bfd_boolean
do_copy (bfd
*, bfd
*);
151 /* Relocation functions */
152 static bfd_boolean
xcoff_reloc_type_br (XCOFF_RELOC_FUNCTION_ARGS
);
154 static bfd_boolean xcoff_complain_overflow_dont_func
155 (XCOFF_COMPLAIN_FUNCTION_ARGS
);
156 static bfd_boolean xcoff_complain_overflow_bitfield_func
157 (XCOFF_COMPLAIN_FUNCTION_ARGS
);
158 static bfd_boolean xcoff_complain_overflow_signed_func
159 (XCOFF_COMPLAIN_FUNCTION_ARGS
);
160 static bfd_boolean xcoff_complain_overflow_unsigned_func
161 (XCOFF_COMPLAIN_FUNCTION_ARGS
);
163 bfd_boolean (*xcoff_calculate_relocation
[XCOFF_MAX_CALCULATE_RELOCATION
])
164 (XCOFF_RELOC_FUNCTION_ARGS
) =
166 xcoff_reloc_type_pos
, /* R_POS (0x00) */
167 xcoff_reloc_type_neg
, /* R_NEG (0x01) */
168 xcoff_reloc_type_rel
, /* R_REL (0x02) */
169 xcoff_reloc_type_toc
, /* R_TOC (0x03) */
170 xcoff_reloc_type_fail
, /* R_RTB (0x04) */
171 xcoff_reloc_type_toc
, /* R_GL (0x05) */
172 xcoff_reloc_type_toc
, /* R_TCL (0x06) */
173 xcoff_reloc_type_fail
, /* (0x07) */
174 xcoff_reloc_type_ba
, /* R_BA (0x08) */
175 xcoff_reloc_type_fail
, /* (0x09) */
176 xcoff_reloc_type_br
, /* R_BR (0x0a) */
177 xcoff_reloc_type_fail
, /* (0x0b) */
178 xcoff_reloc_type_pos
, /* R_RL (0x0c) */
179 xcoff_reloc_type_pos
, /* R_RLA (0x0d) */
180 xcoff_reloc_type_fail
, /* (0x0e) */
181 xcoff_reloc_type_noop
, /* R_REF (0x0f) */
182 xcoff_reloc_type_fail
, /* (0x10) */
183 xcoff_reloc_type_fail
, /* (0x11) */
184 xcoff_reloc_type_toc
, /* R_TRL (0x12) */
185 xcoff_reloc_type_toc
, /* R_TRLA (0x13) */
186 xcoff_reloc_type_fail
, /* R_RRTBI (0x14) */
187 xcoff_reloc_type_fail
, /* R_RRTBA (0x15) */
188 xcoff_reloc_type_ba
, /* R_CAI (0x16) */
189 xcoff_reloc_type_crel
, /* R_CREL (0x17) */
190 xcoff_reloc_type_ba
, /* R_RBA (0x18) */
191 xcoff_reloc_type_ba
, /* R_RBAC (0x19) */
192 xcoff_reloc_type_br
, /* R_RBR (0x1a) */
193 xcoff_reloc_type_ba
, /* R_RBRC (0x1b) */
196 bfd_boolean (*xcoff_complain_overflow
[XCOFF_MAX_COMPLAIN_OVERFLOW
])
197 (XCOFF_COMPLAIN_FUNCTION_ARGS
) =
199 xcoff_complain_overflow_dont_func
,
200 xcoff_complain_overflow_bitfield_func
,
201 xcoff_complain_overflow_signed_func
,
202 xcoff_complain_overflow_unsigned_func
,
205 /* Information about one member of an archive. */
206 struct member_layout
{
207 /* The archive member that this structure describes. */
210 /* The number of bytes of padding that must be inserted before the
211 start of the member in order to ensure that the section contents
212 are correctly aligned. */
213 unsigned int leading_padding
;
215 /* The offset of MEMBER from the start of the archive (i.e. the end
216 of the leading padding). */
219 /* The normalized name of MEMBER. */
222 /* The length of NAME, without padding. */
223 bfd_size_type namlen
;
225 /* The length of NAME, with padding. */
226 bfd_size_type padded_namlen
;
228 /* The size of MEMBER's header, including the name and magic sequence. */
229 bfd_size_type header_size
;
231 /* The size of the MEMBER's contents. */
232 bfd_size_type contents_size
;
234 /* The number of bytes of padding that must be inserted after MEMBER
235 in order to preserve even alignment. */
236 bfd_size_type trailing_padding
;
239 /* A structure used for iterating over the members of an archive. */
240 struct archive_iterator
{
241 /* The archive itself. */
244 /* Information about the current archive member. */
245 struct member_layout current
;
247 /* Information about the next archive member. MEMBER is null if there
248 are no more archive members, in which case OFFSET is the offset of
249 the first unused byte. */
250 struct member_layout next
;
253 /* Initialize INFO so that it describes member MEMBER of archive ARCHIVE.
254 OFFSET is the even-padded offset of MEMBER, not including any leading
255 padding needed for section alignment. */
258 member_layout_init (struct member_layout
*info
, bfd
*archive
,
259 bfd
*member
, file_ptr offset
)
261 info
->member
= member
;
262 info
->leading_padding
= 0;
265 info
->name
= normalize_filename (member
);
266 info
->namlen
= strlen (info
->name
);
267 info
->padded_namlen
= info
->namlen
+ (info
->namlen
& 1);
268 if (xcoff_big_format_p (archive
))
269 info
->header_size
= SIZEOF_AR_HDR_BIG
;
271 info
->header_size
= SIZEOF_AR_HDR
;
272 info
->header_size
+= info
->padded_namlen
+ SXCOFFARFMAG
;
273 info
->contents_size
= arelt_size (member
);
274 info
->trailing_padding
= info
->contents_size
& 1;
276 if (bfd_check_format (member
, bfd_object
)
277 && bfd_get_flavour (member
) == bfd_target_xcoff_flavour
278 && (member
->flags
& DYNAMIC
) != 0)
279 info
->leading_padding
280 = (-(offset
+ info
->header_size
)
281 & ((1 << bfd_xcoff_text_align_power (member
)) - 1));
283 info
->offset
= offset
+ info
->leading_padding
;
286 /* Set up ITERATOR to iterate through archive ARCHIVE. */
289 archive_iterator_begin (struct archive_iterator
*iterator
,
292 iterator
->archive
= archive
;
293 member_layout_init (&iterator
->next
, archive
, archive
->archive_head
,
294 xcoff_big_format_p (archive
)
295 ? SIZEOF_AR_FILE_HDR_BIG
296 : SIZEOF_AR_FILE_HDR
);
299 /* Make ITERATOR visit the first unvisited archive member. Return true
300 on success; return false if all members have been visited. */
303 archive_iterator_next (struct archive_iterator
*iterator
)
305 if (!iterator
->next
.member
)
308 iterator
->current
= iterator
->next
;
309 member_layout_init (&iterator
->next
, iterator
->archive
,
310 iterator
->current
.member
->archive_next
,
311 iterator
->current
.offset
312 + iterator
->current
.header_size
313 + iterator
->current
.contents_size
314 + iterator
->current
.trailing_padding
);
318 /* We use our own tdata type. Its first field is the COFF tdata type,
319 so the COFF routines are compatible. */
322 _bfd_xcoff_mkobject (bfd
*abfd
)
324 coff_data_type
*coff
;
325 bfd_size_type amt
= sizeof (struct xcoff_tdata
);
327 abfd
->tdata
.xcoff_obj_data
= (struct xcoff_tdata
*) bfd_zalloc (abfd
, amt
);
328 if (abfd
->tdata
.xcoff_obj_data
== NULL
)
330 coff
= coff_data (abfd
);
331 coff
->symbols
= (coff_symbol_type
*) NULL
;
332 coff
->conversion_table
= (unsigned int *) NULL
;
333 coff
->raw_syments
= (struct coff_ptr_struct
*) NULL
;
336 xcoff_data (abfd
)->modtype
= ('1' << 8) | 'L';
338 /* We set cputype to -1 to indicate that it has not been
340 xcoff_data (abfd
)->cputype
= -1;
342 xcoff_data (abfd
)->csects
= NULL
;
343 xcoff_data (abfd
)->debug_indices
= NULL
;
345 /* text section alignment is different than the default */
346 bfd_xcoff_text_align_power (abfd
) = 2;
351 /* Copy XCOFF data from one BFD to another. */
354 _bfd_xcoff_copy_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
356 struct xcoff_tdata
*ix
, *ox
;
359 if (ibfd
->xvec
!= obfd
->xvec
)
361 ix
= xcoff_data (ibfd
);
362 ox
= xcoff_data (obfd
);
363 ox
->full_aouthdr
= ix
->full_aouthdr
;
369 sec
= coff_section_from_bfd_index (ibfd
, ix
->sntoc
);
373 ox
->sntoc
= sec
->output_section
->target_index
;
375 if (ix
->snentry
== 0)
379 sec
= coff_section_from_bfd_index (ibfd
, ix
->snentry
);
383 ox
->snentry
= sec
->output_section
->target_index
;
385 bfd_xcoff_text_align_power (obfd
) = bfd_xcoff_text_align_power (ibfd
);
386 bfd_xcoff_data_align_power (obfd
) = bfd_xcoff_data_align_power (ibfd
);
387 ox
->modtype
= ix
->modtype
;
388 ox
->cputype
= ix
->cputype
;
389 ox
->maxdata
= ix
->maxdata
;
390 ox
->maxstack
= ix
->maxstack
;
394 /* I don't think XCOFF really has a notion of local labels based on
395 name. This will mean that ld -X doesn't actually strip anything.
396 The AIX native linker does not have a -X option, and it ignores the
400 _bfd_xcoff_is_local_label_name (bfd
*abfd ATTRIBUTE_UNUSED
,
401 const char *name ATTRIBUTE_UNUSED
)
407 _bfd_xcoff_swap_sym_in (bfd
*abfd
, void * ext1
, void * in1
)
409 SYMENT
*ext
= (SYMENT
*)ext1
;
410 struct internal_syment
* in
= (struct internal_syment
*)in1
;
412 if (ext
->e
.e_name
[0] != 0)
414 memcpy (in
->_n
._n_name
, ext
->e
.e_name
, SYMNMLEN
);
418 in
->_n
._n_n
._n_zeroes
= 0;
419 in
->_n
._n_n
._n_offset
= H_GET_32 (abfd
, ext
->e
.e
.e_offset
);
422 in
->n_value
= H_GET_32 (abfd
, ext
->e_value
);
423 in
->n_scnum
= (short) H_GET_16 (abfd
, ext
->e_scnum
);
424 in
->n_type
= H_GET_16 (abfd
, ext
->e_type
);
425 in
->n_sclass
= H_GET_8 (abfd
, ext
->e_sclass
);
426 in
->n_numaux
= H_GET_8 (abfd
, ext
->e_numaux
);
430 _bfd_xcoff_swap_sym_out (bfd
*abfd
, void * inp
, void * extp
)
432 struct internal_syment
*in
= (struct internal_syment
*)inp
;
433 SYMENT
*ext
=(SYMENT
*)extp
;
435 if (in
->_n
._n_name
[0] != 0)
437 memcpy (ext
->e
.e_name
, in
->_n
._n_name
, SYMNMLEN
);
441 H_PUT_32 (abfd
, 0, ext
->e
.e
.e_zeroes
);
442 H_PUT_32 (abfd
, in
->_n
._n_n
._n_offset
, ext
->e
.e
.e_offset
);
445 H_PUT_32 (abfd
, in
->n_value
, ext
->e_value
);
446 H_PUT_16 (abfd
, in
->n_scnum
, ext
->e_scnum
);
447 H_PUT_16 (abfd
, in
->n_type
, ext
->e_type
);
448 H_PUT_8 (abfd
, in
->n_sclass
, ext
->e_sclass
);
449 H_PUT_8 (abfd
, in
->n_numaux
, ext
->e_numaux
);
450 return bfd_coff_symesz (abfd
);
454 _bfd_xcoff_swap_aux_in (bfd
*abfd
, void * ext1
, int type
, int in_class
,
455 int indx
, int numaux
, void * in1
)
457 AUXENT
* ext
= (AUXENT
*)ext1
;
458 union internal_auxent
*in
= (union internal_auxent
*)in1
;
463 if (ext
->x_file
.x_n
.x_fname
[0] == 0)
465 in
->x_file
.x_n
.x_zeroes
= 0;
466 in
->x_file
.x_n
.x_offset
=
467 H_GET_32 (abfd
, ext
->x_file
.x_n
.x_n
.x_offset
);
474 memcpy (in
->x_file
.x_fname
, ext
->x_file
.x_n
.x_fname
,
475 numaux
* sizeof (AUXENT
));
479 memcpy (in
->x_file
.x_fname
, ext
->x_file
.x_n
.x_fname
, FILNMLEN
);
484 /* RS/6000 "csect" auxents */
488 if (indx
+ 1 == numaux
)
490 in
->x_csect
.x_scnlen
.l
= H_GET_32 (abfd
, ext
->x_csect
.x_scnlen
);
491 in
->x_csect
.x_parmhash
= H_GET_32 (abfd
, ext
->x_csect
.x_parmhash
);
492 in
->x_csect
.x_snhash
= H_GET_16 (abfd
, ext
->x_csect
.x_snhash
);
493 /* We don't have to hack bitfields in x_smtyp because it's
494 defined by shifts-and-ands, which are equivalent on all
496 in
->x_csect
.x_smtyp
= H_GET_8 (abfd
, ext
->x_csect
.x_smtyp
);
497 in
->x_csect
.x_smclas
= H_GET_8 (abfd
, ext
->x_csect
.x_smclas
);
498 in
->x_csect
.x_stab
= H_GET_32 (abfd
, ext
->x_csect
.x_stab
);
499 in
->x_csect
.x_snstab
= H_GET_16 (abfd
, ext
->x_csect
.x_snstab
);
509 in
->x_scn
.x_scnlen
= H_GET_32 (abfd
, ext
->x_scn
.x_scnlen
);
510 in
->x_scn
.x_nreloc
= H_GET_16 (abfd
, ext
->x_scn
.x_nreloc
);
511 in
->x_scn
.x_nlinno
= H_GET_16 (abfd
, ext
->x_scn
.x_nlinno
);
512 /* PE defines some extra fields; we zero them out for
514 in
->x_scn
.x_checksum
= 0;
515 in
->x_scn
.x_associated
= 0;
516 in
->x_scn
.x_comdat
= 0;
523 in
->x_sym
.x_tagndx
.l
= H_GET_32 (abfd
, ext
->x_sym
.x_tagndx
);
524 in
->x_sym
.x_tvndx
= H_GET_16 (abfd
, ext
->x_sym
.x_tvndx
);
526 if (in_class
== C_BLOCK
|| in_class
== C_FCN
|| ISFCN (type
)
529 in
->x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
=
530 H_GET_32 (abfd
, ext
->x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
);
531 in
->x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
=
532 H_GET_32 (abfd
, ext
->x_sym
.x_fcnary
.x_fcn
.x_endndx
);
536 in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[0] =
537 H_GET_16 (abfd
, ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[0]);
538 in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[1] =
539 H_GET_16 (abfd
, ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[1]);
540 in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[2] =
541 H_GET_16 (abfd
, ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[2]);
542 in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[3] =
543 H_GET_16 (abfd
, ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[3]);
548 in
->x_sym
.x_misc
.x_fsize
= H_GET_32 (abfd
, ext
->x_sym
.x_misc
.x_fsize
);
552 in
->x_sym
.x_misc
.x_lnsz
.x_lnno
=
553 H_GET_16 (abfd
, ext
->x_sym
.x_misc
.x_lnsz
.x_lnno
);
554 in
->x_sym
.x_misc
.x_lnsz
.x_size
=
555 H_GET_16 (abfd
, ext
->x_sym
.x_misc
.x_lnsz
.x_size
);
559 /* The semicolon is because MSVC doesn't like labels at
564 _bfd_xcoff_swap_aux_out (bfd
*abfd
, void * inp
, int type
, int in_class
,
565 int indx ATTRIBUTE_UNUSED
,
566 int numaux ATTRIBUTE_UNUSED
,
569 union internal_auxent
*in
= (union internal_auxent
*)inp
;
570 AUXENT
*ext
= (AUXENT
*)extp
;
572 memset (ext
, 0, bfd_coff_auxesz (abfd
));
576 if (in
->x_file
.x_fname
[0] == 0)
578 H_PUT_32 (abfd
, 0, ext
->x_file
.x_n
.x_n
.x_zeroes
);
579 H_PUT_32 (abfd
, in
->x_file
.x_n
.x_offset
,
580 ext
->x_file
.x_n
.x_n
.x_offset
);
584 memcpy (ext
->x_file
.x_n
.x_fname
, in
->x_file
.x_fname
, FILNMLEN
);
588 /* RS/6000 "csect" auxents */
592 if (indx
+ 1 == numaux
)
594 H_PUT_32 (abfd
, in
->x_csect
.x_scnlen
.l
, ext
->x_csect
.x_scnlen
);
595 H_PUT_32 (abfd
, in
->x_csect
.x_parmhash
, ext
->x_csect
.x_parmhash
);
596 H_PUT_16 (abfd
, in
->x_csect
.x_snhash
, ext
->x_csect
.x_snhash
);
597 /* We don't have to hack bitfields in x_smtyp because it's
598 defined by shifts-and-ands, which are equivalent on all
600 H_PUT_8 (abfd
, in
->x_csect
.x_smtyp
, ext
->x_csect
.x_smtyp
);
601 H_PUT_8 (abfd
, in
->x_csect
.x_smclas
, ext
->x_csect
.x_smclas
);
602 H_PUT_32 (abfd
, in
->x_csect
.x_stab
, ext
->x_csect
.x_stab
);
603 H_PUT_16 (abfd
, in
->x_csect
.x_snstab
, ext
->x_csect
.x_snstab
);
613 H_PUT_32 (abfd
, in
->x_scn
.x_scnlen
, ext
->x_scn
.x_scnlen
);
614 H_PUT_16 (abfd
, in
->x_scn
.x_nreloc
, ext
->x_scn
.x_nreloc
);
615 H_PUT_16 (abfd
, in
->x_scn
.x_nlinno
, ext
->x_scn
.x_nlinno
);
621 H_PUT_32 (abfd
, in
->x_sym
.x_tagndx
.l
, ext
->x_sym
.x_tagndx
);
622 H_PUT_16 (abfd
, in
->x_sym
.x_tvndx
, ext
->x_sym
.x_tvndx
);
624 if (in_class
== C_BLOCK
|| in_class
== C_FCN
|| ISFCN (type
)
627 H_PUT_32 (abfd
, in
->x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
,
628 ext
->x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
);
629 H_PUT_32 (abfd
, in
->x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
,
630 ext
->x_sym
.x_fcnary
.x_fcn
.x_endndx
);
634 H_PUT_16 (abfd
, in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[0],
635 ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[0]);
636 H_PUT_16 (abfd
, in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[1],
637 ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[1]);
638 H_PUT_16 (abfd
, in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[2],
639 ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[2]);
640 H_PUT_16 (abfd
, in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[3],
641 ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[3]);
645 H_PUT_32 (abfd
, in
->x_sym
.x_misc
.x_fsize
, ext
->x_sym
.x_misc
.x_fsize
);
648 H_PUT_16 (abfd
, in
->x_sym
.x_misc
.x_lnsz
.x_lnno
,
649 ext
->x_sym
.x_misc
.x_lnsz
.x_lnno
);
650 H_PUT_16 (abfd
, in
->x_sym
.x_misc
.x_lnsz
.x_size
,
651 ext
->x_sym
.x_misc
.x_lnsz
.x_size
);
655 return bfd_coff_auxesz (abfd
);
660 /* The XCOFF reloc table. Actually, XCOFF relocations specify the
661 bitsize and whether they are signed or not, along with a
662 conventional type. This table is for the types, which are used for
663 different algorithms for putting in the reloc. Many of these
664 relocs need special_function entries, which I have not written. */
667 reloc_howto_type xcoff_howto_table
[] =
669 /* 0x00: Standard 32 bit relocation. */
670 HOWTO (R_POS
, /* type */
672 2, /* size (0 = byte, 1 = short, 2 = long) */
674 FALSE
, /* pc_relative */
676 complain_overflow_bitfield
, /* complain_on_overflow */
677 0, /* special_function */
679 TRUE
, /* partial_inplace */
680 0xffffffff, /* src_mask */
681 0xffffffff, /* dst_mask */
682 FALSE
), /* pcrel_offset */
684 /* 0x01: 32 bit relocation, but store negative value. */
685 HOWTO (R_NEG
, /* type */
687 -2, /* size (0 = byte, 1 = short, 2 = long) */
689 FALSE
, /* pc_relative */
691 complain_overflow_bitfield
, /* complain_on_overflow */
692 0, /* special_function */
694 TRUE
, /* partial_inplace */
695 0xffffffff, /* src_mask */
696 0xffffffff, /* dst_mask */
697 FALSE
), /* pcrel_offset */
699 /* 0x02: 32 bit PC relative relocation. */
700 HOWTO (R_REL
, /* type */
702 2, /* size (0 = byte, 1 = short, 2 = long) */
704 TRUE
, /* pc_relative */
706 complain_overflow_signed
, /* complain_on_overflow */
707 0, /* special_function */
709 TRUE
, /* partial_inplace */
710 0xffffffff, /* src_mask */
711 0xffffffff, /* dst_mask */
712 FALSE
), /* pcrel_offset */
714 /* 0x03: 16 bit TOC relative relocation. */
715 HOWTO (R_TOC
, /* type */
717 1, /* size (0 = byte, 1 = short, 2 = long) */
719 FALSE
, /* pc_relative */
721 complain_overflow_bitfield
, /* complain_on_overflow */
722 0, /* special_function */
724 TRUE
, /* partial_inplace */
725 0xffff, /* src_mask */
726 0xffff, /* dst_mask */
727 FALSE
), /* pcrel_offset */
729 /* 0x04: I don't really know what this is. */
730 HOWTO (R_RTB
, /* type */
732 2, /* size (0 = byte, 1 = short, 2 = long) */
734 FALSE
, /* pc_relative */
736 complain_overflow_bitfield
, /* complain_on_overflow */
737 0, /* special_function */
739 TRUE
, /* partial_inplace */
740 0xffffffff, /* src_mask */
741 0xffffffff, /* dst_mask */
742 FALSE
), /* pcrel_offset */
744 /* 0x05: External TOC relative symbol. */
745 HOWTO (R_GL
, /* type */
747 1, /* size (0 = byte, 1 = short, 2 = long) */
749 FALSE
, /* pc_relative */
751 complain_overflow_bitfield
, /* complain_on_overflow */
752 0, /* special_function */
754 TRUE
, /* partial_inplace */
755 0xffff, /* src_mask */
756 0xffff, /* dst_mask */
757 FALSE
), /* pcrel_offset */
759 /* 0x06: Local TOC relative symbol. */
760 HOWTO (R_TCL
, /* type */
762 1, /* size (0 = byte, 1 = short, 2 = long) */
764 FALSE
, /* pc_relative */
766 complain_overflow_bitfield
, /* complain_on_overflow */
767 0, /* special_function */
769 TRUE
, /* partial_inplace */
770 0xffff, /* src_mask */
771 0xffff, /* dst_mask */
772 FALSE
), /* pcrel_offset */
776 /* 0x08: Non modifiable absolute branch. */
777 HOWTO (R_BA
, /* type */
779 2, /* size (0 = byte, 1 = short, 2 = long) */
781 FALSE
, /* pc_relative */
783 complain_overflow_bitfield
, /* complain_on_overflow */
784 0, /* special_function */
785 "R_BA_26", /* name */
786 TRUE
, /* partial_inplace */
787 0x03fffffc, /* src_mask */
788 0x03fffffc, /* dst_mask */
789 FALSE
), /* pcrel_offset */
793 /* 0x0a: Non modifiable relative branch. */
794 HOWTO (R_BR
, /* type */
796 2, /* size (0 = byte, 1 = short, 2 = long) */
798 TRUE
, /* pc_relative */
800 complain_overflow_signed
, /* complain_on_overflow */
801 0, /* special_function */
803 TRUE
, /* partial_inplace */
804 0x03fffffc, /* src_mask */
805 0x03fffffc, /* dst_mask */
806 FALSE
), /* pcrel_offset */
810 /* 0x0c: Indirect load. */
811 HOWTO (R_RL
, /* type */
813 1, /* size (0 = byte, 1 = short, 2 = long) */
815 FALSE
, /* pc_relative */
817 complain_overflow_bitfield
, /* complain_on_overflow */
818 0, /* special_function */
820 TRUE
, /* partial_inplace */
821 0xffff, /* src_mask */
822 0xffff, /* dst_mask */
823 FALSE
), /* pcrel_offset */
825 /* 0x0d: Load address. */
826 HOWTO (R_RLA
, /* type */
828 1, /* size (0 = byte, 1 = short, 2 = long) */
830 FALSE
, /* pc_relative */
832 complain_overflow_bitfield
, /* complain_on_overflow */
833 0, /* special_function */
835 TRUE
, /* partial_inplace */
836 0xffff, /* src_mask */
837 0xffff, /* dst_mask */
838 FALSE
), /* pcrel_offset */
842 /* 0x0f: Non-relocating reference. Bitsize is 1 so that r_rsize is 0. */
843 HOWTO (R_REF
, /* type */
845 0, /* size (0 = byte, 1 = short, 2 = long) */
847 FALSE
, /* pc_relative */
849 complain_overflow_dont
, /* complain_on_overflow */
850 0, /* special_function */
852 FALSE
, /* partial_inplace */
855 FALSE
), /* pcrel_offset */
860 /* 0x12: TOC relative indirect load. */
861 HOWTO (R_TRL
, /* type */
863 1, /* size (0 = byte, 1 = short, 2 = long) */
865 FALSE
, /* pc_relative */
867 complain_overflow_bitfield
, /* complain_on_overflow */
868 0, /* special_function */
870 TRUE
, /* partial_inplace */
871 0xffff, /* src_mask */
872 0xffff, /* dst_mask */
873 FALSE
), /* pcrel_offset */
875 /* 0x13: TOC relative load address. */
876 HOWTO (R_TRLA
, /* type */
878 1, /* size (0 = byte, 1 = short, 2 = long) */
880 FALSE
, /* pc_relative */
882 complain_overflow_bitfield
, /* complain_on_overflow */
883 0, /* special_function */
885 TRUE
, /* partial_inplace */
886 0xffff, /* src_mask */
887 0xffff, /* dst_mask */
888 FALSE
), /* pcrel_offset */
890 /* 0x14: Modifiable relative branch. */
891 HOWTO (R_RRTBI
, /* type */
893 2, /* size (0 = byte, 1 = short, 2 = long) */
895 FALSE
, /* pc_relative */
897 complain_overflow_bitfield
, /* complain_on_overflow */
898 0, /* special_function */
899 "R_RRTBI", /* name */
900 TRUE
, /* partial_inplace */
901 0xffffffff, /* src_mask */
902 0xffffffff, /* dst_mask */
903 FALSE
), /* pcrel_offset */
905 /* 0x15: Modifiable absolute branch. */
906 HOWTO (R_RRTBA
, /* type */
908 2, /* size (0 = byte, 1 = short, 2 = long) */
910 FALSE
, /* pc_relative */
912 complain_overflow_bitfield
, /* complain_on_overflow */
913 0, /* special_function */
914 "R_RRTBA", /* name */
915 TRUE
, /* partial_inplace */
916 0xffffffff, /* src_mask */
917 0xffffffff, /* dst_mask */
918 FALSE
), /* pcrel_offset */
920 /* 0x16: Modifiable call absolute indirect. */
921 HOWTO (R_CAI
, /* type */
923 1, /* size (0 = byte, 1 = short, 2 = long) */
925 FALSE
, /* pc_relative */
927 complain_overflow_bitfield
, /* complain_on_overflow */
928 0, /* special_function */
930 TRUE
, /* partial_inplace */
931 0xffff, /* src_mask */
932 0xffff, /* dst_mask */
933 FALSE
), /* pcrel_offset */
935 /* 0x17: Modifiable call relative. */
936 HOWTO (R_CREL
, /* type */
938 1, /* size (0 = byte, 1 = short, 2 = long) */
940 FALSE
, /* pc_relative */
942 complain_overflow_bitfield
, /* complain_on_overflow */
943 0, /* special_function */
945 TRUE
, /* partial_inplace */
946 0xffff, /* src_mask */
947 0xffff, /* dst_mask */
948 FALSE
), /* pcrel_offset */
950 /* 0x18: Modifiable branch absolute. */
951 HOWTO (R_RBA
, /* type */
953 2, /* size (0 = byte, 1 = short, 2 = long) */
955 FALSE
, /* pc_relative */
957 complain_overflow_bitfield
, /* complain_on_overflow */
958 0, /* special_function */
960 TRUE
, /* partial_inplace */
961 0x03fffffc, /* src_mask */
962 0x03fffffc, /* dst_mask */
963 FALSE
), /* pcrel_offset */
965 /* 0x19: Modifiable branch absolute. */
966 HOWTO (R_RBAC
, /* type */
968 2, /* size (0 = byte, 1 = short, 2 = long) */
970 FALSE
, /* pc_relative */
972 complain_overflow_bitfield
, /* complain_on_overflow */
973 0, /* special_function */
975 TRUE
, /* partial_inplace */
976 0xffffffff, /* src_mask */
977 0xffffffff, /* dst_mask */
978 FALSE
), /* pcrel_offset */
980 /* 0x1a: Modifiable branch relative. */
981 HOWTO (R_RBR
, /* type */
983 2, /* size (0 = byte, 1 = short, 2 = long) */
985 FALSE
, /* pc_relative */
987 complain_overflow_signed
, /* complain_on_overflow */
988 0, /* special_function */
989 "R_RBR_26", /* name */
990 TRUE
, /* partial_inplace */
991 0x03fffffc, /* src_mask */
992 0x03fffffc, /* dst_mask */
993 FALSE
), /* pcrel_offset */
995 /* 0x1b: Modifiable branch absolute. */
996 HOWTO (R_RBRC
, /* type */
998 1, /* size (0 = byte, 1 = short, 2 = long) */
1000 FALSE
, /* pc_relative */
1002 complain_overflow_bitfield
, /* complain_on_overflow */
1003 0, /* special_function */
1004 "R_RBRC", /* name */
1005 TRUE
, /* partial_inplace */
1006 0xffff, /* src_mask */
1007 0xffff, /* dst_mask */
1008 FALSE
), /* pcrel_offset */
1010 /* 0x1c: 16 bit Non modifiable absolute branch. */
1011 HOWTO (R_BA
, /* type */
1013 1, /* size (0 = byte, 1 = short, 2 = long) */
1015 FALSE
, /* pc_relative */
1017 complain_overflow_bitfield
, /* complain_on_overflow */
1018 0, /* special_function */
1019 "R_BA_16", /* name */
1020 TRUE
, /* partial_inplace */
1021 0xfffc, /* src_mask */
1022 0xfffc, /* dst_mask */
1023 FALSE
), /* pcrel_offset */
1025 /* 0x1d: Modifiable branch relative. */
1026 HOWTO (R_RBR
, /* type */
1028 1, /* size (0 = byte, 1 = short, 2 = long) */
1030 TRUE
, /* pc_relative */
1032 complain_overflow_signed
, /* complain_on_overflow */
1033 0, /* special_function */
1034 "R_RBR_16", /* name */
1035 TRUE
, /* partial_inplace */
1036 0xfffc, /* src_mask */
1037 0xfffc, /* dst_mask */
1038 FALSE
), /* pcrel_offset */
1040 /* 0x1e: Modifiable branch relative. */
1041 HOWTO (R_RBA
, /* type */
1043 1, /* size (0 = byte, 1 = short, 2 = long) */
1045 FALSE
, /* pc_relative */
1047 complain_overflow_signed
, /* complain_on_overflow */
1048 0, /* special_function */
1049 "R_RBA_16", /* name */
1050 TRUE
, /* partial_inplace */
1051 0xffff, /* src_mask */
1052 0xffff, /* dst_mask */
1053 FALSE
), /* pcrel_offset */
1057 xcoff_rtype2howto (arelent
*relent
, struct internal_reloc
*internal
)
1059 if (internal
->r_type
> R_RBRC
)
1062 /* Default howto layout works most of the time */
1063 relent
->howto
= &xcoff_howto_table
[internal
->r_type
];
1065 /* Special case some 16 bit reloc */
1066 if (15 == (internal
->r_size
& 0x1f))
1068 if (R_BA
== internal
->r_type
)
1069 relent
->howto
= &xcoff_howto_table
[0x1c];
1070 else if (R_RBR
== internal
->r_type
)
1071 relent
->howto
= &xcoff_howto_table
[0x1d];
1072 else if (R_RBA
== internal
->r_type
)
1073 relent
->howto
= &xcoff_howto_table
[0x1e];
1076 /* The r_size field of an XCOFF reloc encodes the bitsize of the
1077 relocation, as well as indicating whether it is signed or not.
1078 Doublecheck that the relocation information gathered from the
1079 type matches this information. The bitsize is not significant
1080 for R_REF relocs. */
1081 if (relent
->howto
->dst_mask
!= 0
1082 && (relent
->howto
->bitsize
1083 != ((unsigned int) internal
->r_size
& 0x1f) + 1))
1088 _bfd_xcoff_reloc_type_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
1089 bfd_reloc_code_real_type code
)
1093 case BFD_RELOC_PPC_B26
:
1094 return &xcoff_howto_table
[0xa];
1095 case BFD_RELOC_PPC_BA16
:
1096 return &xcoff_howto_table
[0x1c];
1097 case BFD_RELOC_PPC_BA26
:
1098 return &xcoff_howto_table
[8];
1099 case BFD_RELOC_PPC_TOC16
:
1100 return &xcoff_howto_table
[3];
1102 /* Note that this relocation is only internally used by gas. */
1103 return &xcoff_howto_table
[0xc];
1104 case BFD_RELOC_PPC_B16
:
1105 return &xcoff_howto_table
[0x1d];
1107 case BFD_RELOC_CTOR
:
1108 return &xcoff_howto_table
[0];
1109 case BFD_RELOC_NONE
:
1110 return &xcoff_howto_table
[0xf];
1116 static reloc_howto_type
*
1117 _bfd_xcoff_reloc_name_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
1123 i
< sizeof (xcoff_howto_table
) / sizeof (xcoff_howto_table
[0]);
1125 if (xcoff_howto_table
[i
].name
!= NULL
1126 && strcasecmp (xcoff_howto_table
[i
].name
, r_name
) == 0)
1127 return &xcoff_howto_table
[i
];
1132 /* XCOFF archive support. The original version of this code was by
1133 Damon A. Permezel. It was enhanced to permit cross support, and
1134 writing archive files, by Ian Lance Taylor, Cygnus Support.
1136 XCOFF uses its own archive format. Everything is hooked together
1137 with file offset links, so it is possible to rapidly update an
1138 archive in place. Of course, we don't do that. An XCOFF archive
1139 has a real file header, not just an ARMAG string. The structure of
1140 the file header and of each archive header appear below.
1142 An XCOFF archive also has a member table, which is a list of
1143 elements in the archive (you can get that by looking through the
1144 linked list, but you have to read a lot more of the file). The
1145 member table has a normal archive header with an empty name. It is
1146 normally (and perhaps must be) the second to last entry in the
1147 archive. The member table data is almost printable ASCII. It
1148 starts with a 12 character decimal string which is the number of
1149 entries in the table. For each entry it has a 12 character decimal
1150 string which is the offset in the archive of that member. These
1151 entries are followed by a series of null terminated strings which
1152 are the member names for each entry.
1154 Finally, an XCOFF archive has a global symbol table, which is what
1155 we call the armap. The global symbol table has a normal archive
1156 header with an empty name. It is normally (and perhaps must be)
1157 the last entry in the archive. The contents start with a four byte
1158 binary number which is the number of entries. This is followed by
1159 a that many four byte binary numbers; each is the file offset of an
1160 entry in the archive. These numbers are followed by a series of
1161 null terminated strings, which are symbol names.
1163 AIX 4.3 introduced a new archive format which can handle larger
1164 files and also 32- and 64-bit objects in the same archive. The
1165 things said above remain true except that there is now more than
1166 one global symbol table. The one is used to index 32-bit objects,
1167 the other for 64-bit objects.
1169 The new archives (recognizable by the new ARMAG string) has larger
1170 field lengths so that we cannot really share any code. Also we have
1171 to take care that we are not generating the new form of archives
1172 on AIX 4.2 or earlier systems. */
1174 /* XCOFF archives use this as a magic string. Note that both strings
1175 have the same length. */
1177 /* Set the magic for archive. */
1180 bfd_xcoff_ar_archive_set_magic (bfd
*abfd ATTRIBUTE_UNUSED
,
1181 char *magic ATTRIBUTE_UNUSED
)
1183 /* Not supported yet. */
1185 /* bfd_xcoff_archive_set_magic (abfd, magic); */
1188 /* Read in the armap of an XCOFF archive. */
1191 _bfd_xcoff_slurp_armap (bfd
*abfd
)
1196 bfd_byte
*contents
, *cend
;
1201 if (xcoff_ardata (abfd
) == NULL
)
1203 bfd_has_map (abfd
) = FALSE
;
1207 if (! xcoff_big_format_p (abfd
))
1209 /* This is for the old format. */
1210 struct xcoff_ar_hdr hdr
;
1212 off
= strtol (xcoff_ardata (abfd
)->symoff
, (char **) NULL
, 10);
1215 bfd_has_map (abfd
) = FALSE
;
1219 if (bfd_seek (abfd
, off
, SEEK_SET
) != 0)
1222 /* The symbol table starts with a normal archive header. */
1223 if (bfd_bread (&hdr
, (bfd_size_type
) SIZEOF_AR_HDR
, abfd
)
1227 /* Skip the name (normally empty). */
1228 namlen
= strtol (hdr
.namlen
, (char **) NULL
, 10);
1229 off
= ((namlen
+ 1) & ~ (size_t) 1) + SXCOFFARFMAG
;
1230 if (bfd_seek (abfd
, off
, SEEK_CUR
) != 0)
1233 sz
= strtol (hdr
.size
, (char **) NULL
, 10);
1235 /* Read in the entire symbol table. */
1236 contents
= (bfd_byte
*) bfd_alloc (abfd
, sz
);
1237 if (contents
== NULL
)
1239 if (bfd_bread (contents
, sz
, abfd
) != sz
)
1242 /* The symbol table starts with a four byte count. */
1243 c
= H_GET_32 (abfd
, contents
);
1247 bfd_set_error (bfd_error_bad_value
);
1251 bfd_ardata (abfd
)->symdefs
=
1252 ((carsym
*) bfd_alloc (abfd
, c
* sizeof (carsym
)));
1253 if (bfd_ardata (abfd
)->symdefs
== NULL
)
1256 /* After the count comes a list of four byte file offsets. */
1257 for (i
= 0, arsym
= bfd_ardata (abfd
)->symdefs
, p
= contents
+ 4;
1259 ++i
, ++arsym
, p
+= 4)
1260 arsym
->file_offset
= H_GET_32 (abfd
, p
);
1264 /* This is for the new format. */
1265 struct xcoff_ar_hdr_big hdr
;
1267 off
= strtol (xcoff_ardata_big (abfd
)->symoff
, (char **) NULL
, 10);
1270 bfd_has_map (abfd
) = FALSE
;
1274 if (bfd_seek (abfd
, off
, SEEK_SET
) != 0)
1277 /* The symbol table starts with a normal archive header. */
1278 if (bfd_bread (&hdr
, (bfd_size_type
) SIZEOF_AR_HDR_BIG
, abfd
)
1279 != SIZEOF_AR_HDR_BIG
)
1282 /* Skip the name (normally empty). */
1283 namlen
= strtol (hdr
.namlen
, (char **) NULL
, 10);
1284 off
= ((namlen
+ 1) & ~ (size_t) 1) + SXCOFFARFMAG
;
1285 if (bfd_seek (abfd
, off
, SEEK_CUR
) != 0)
1288 /* XXX This actually has to be a call to strtoll (at least on 32-bit
1289 machines) since the field width is 20 and there numbers with more
1290 than 32 bits can be represented. */
1291 sz
= strtol (hdr
.size
, (char **) NULL
, 10);
1293 /* Read in the entire symbol table. */
1294 contents
= (bfd_byte
*) bfd_alloc (abfd
, sz
);
1295 if (contents
== NULL
)
1297 if (bfd_bread (contents
, sz
, abfd
) != sz
)
1300 /* The symbol table starts with an eight byte count. */
1301 c
= H_GET_64 (abfd
, contents
);
1305 bfd_set_error (bfd_error_bad_value
);
1309 bfd_ardata (abfd
)->symdefs
=
1310 ((carsym
*) bfd_alloc (abfd
, c
* sizeof (carsym
)));
1311 if (bfd_ardata (abfd
)->symdefs
== NULL
)
1314 /* After the count comes a list of eight byte file offsets. */
1315 for (i
= 0, arsym
= bfd_ardata (abfd
)->symdefs
, p
= contents
+ 8;
1317 ++i
, ++arsym
, p
+= 8)
1318 arsym
->file_offset
= H_GET_64 (abfd
, p
);
1321 /* After the file offsets come null terminated symbol names. */
1322 cend
= contents
+ sz
;
1323 for (i
= 0, arsym
= bfd_ardata (abfd
)->symdefs
;
1325 ++i
, ++arsym
, p
+= strlen ((char *) p
) + 1)
1329 bfd_set_error (bfd_error_bad_value
);
1332 arsym
->name
= (char *) p
;
1335 bfd_ardata (abfd
)->symdef_count
= c
;
1336 bfd_has_map (abfd
) = TRUE
;
1341 /* See if this is an XCOFF archive. */
1344 _bfd_xcoff_archive_p (bfd
*abfd
)
1346 struct artdata
*tdata_hold
;
1347 char magic
[SXCOFFARMAG
];
1348 bfd_size_type amt
= SXCOFFARMAG
;
1350 if (bfd_bread (magic
, amt
, abfd
) != amt
)
1352 if (bfd_get_error () != bfd_error_system_call
)
1353 bfd_set_error (bfd_error_wrong_format
);
1357 if (strncmp (magic
, XCOFFARMAG
, SXCOFFARMAG
) != 0
1358 && strncmp (magic
, XCOFFARMAGBIG
, SXCOFFARMAG
) != 0)
1360 bfd_set_error (bfd_error_wrong_format
);
1364 tdata_hold
= bfd_ardata (abfd
);
1366 amt
= sizeof (struct artdata
);
1367 bfd_ardata (abfd
) = (struct artdata
*) bfd_zalloc (abfd
, amt
);
1368 if (bfd_ardata (abfd
) == (struct artdata
*) NULL
)
1369 goto error_ret_restore
;
1371 /* Cleared by bfd_zalloc above.
1372 bfd_ardata (abfd)->cache = NULL;
1373 bfd_ardata (abfd)->archive_head = NULL;
1374 bfd_ardata (abfd)->symdefs = NULL;
1375 bfd_ardata (abfd)->extended_names = NULL;
1376 bfd_ardata (abfd)->extended_names_size = 0; */
1378 /* Now handle the two formats. */
1379 if (magic
[1] != 'b')
1381 /* This is the old format. */
1382 struct xcoff_ar_file_hdr hdr
;
1384 /* Copy over the magic string. */
1385 memcpy (hdr
.magic
, magic
, SXCOFFARMAG
);
1387 /* Now read the rest of the file header. */
1388 amt
= SIZEOF_AR_FILE_HDR
- SXCOFFARMAG
;
1389 if (bfd_bread (&hdr
.memoff
, amt
, abfd
) != amt
)
1391 if (bfd_get_error () != bfd_error_system_call
)
1392 bfd_set_error (bfd_error_wrong_format
);
1396 bfd_ardata (abfd
)->first_file_filepos
= strtol (hdr
.firstmemoff
,
1397 (char **) NULL
, 10);
1399 amt
= SIZEOF_AR_FILE_HDR
;
1400 bfd_ardata (abfd
)->tdata
= bfd_zalloc (abfd
, amt
);
1401 if (bfd_ardata (abfd
)->tdata
== NULL
)
1404 memcpy (bfd_ardata (abfd
)->tdata
, &hdr
, SIZEOF_AR_FILE_HDR
);
1408 /* This is the new format. */
1409 struct xcoff_ar_file_hdr_big hdr
;
1411 /* Copy over the magic string. */
1412 memcpy (hdr
.magic
, magic
, SXCOFFARMAG
);
1414 /* Now read the rest of the file header. */
1415 amt
= SIZEOF_AR_FILE_HDR_BIG
- SXCOFFARMAG
;
1416 if (bfd_bread (&hdr
.memoff
, amt
, abfd
) != amt
)
1418 if (bfd_get_error () != bfd_error_system_call
)
1419 bfd_set_error (bfd_error_wrong_format
);
1423 bfd_ardata (abfd
)->first_file_filepos
= bfd_scan_vma (hdr
.firstmemoff
,
1427 amt
= SIZEOF_AR_FILE_HDR_BIG
;
1428 bfd_ardata (abfd
)->tdata
= bfd_zalloc (abfd
, amt
);
1429 if (bfd_ardata (abfd
)->tdata
== NULL
)
1432 memcpy (bfd_ardata (abfd
)->tdata
, &hdr
, SIZEOF_AR_FILE_HDR_BIG
);
1435 if (! _bfd_xcoff_slurp_armap (abfd
))
1438 bfd_release (abfd
, bfd_ardata (abfd
));
1440 bfd_ardata (abfd
) = tdata_hold
;
1447 /* Read the archive header in an XCOFF archive. */
1450 _bfd_xcoff_read_ar_hdr (bfd
*abfd
)
1452 bfd_size_type namlen
;
1453 struct areltdata
*ret
;
1454 bfd_size_type amt
= sizeof (struct areltdata
);
1456 ret
= (struct areltdata
*) bfd_zmalloc (amt
);
1460 if (! xcoff_big_format_p (abfd
))
1462 struct xcoff_ar_hdr hdr
;
1463 struct xcoff_ar_hdr
*hdrp
;
1465 if (bfd_bread (&hdr
, (bfd_size_type
) SIZEOF_AR_HDR
, abfd
)
1472 namlen
= strtol (hdr
.namlen
, (char **) NULL
, 10);
1473 amt
= SIZEOF_AR_HDR
+ namlen
+ 1;
1474 hdrp
= (struct xcoff_ar_hdr
*) bfd_alloc (abfd
, amt
);
1480 memcpy (hdrp
, &hdr
, SIZEOF_AR_HDR
);
1481 if (bfd_bread ((char *) hdrp
+ SIZEOF_AR_HDR
, namlen
, abfd
) != namlen
)
1486 ((char *) hdrp
)[SIZEOF_AR_HDR
+ namlen
] = '\0';
1488 ret
->arch_header
= (char *) hdrp
;
1489 ret
->parsed_size
= strtol (hdr
.size
, (char **) NULL
, 10);
1490 ret
->filename
= (char *) hdrp
+ SIZEOF_AR_HDR
;
1494 struct xcoff_ar_hdr_big hdr
;
1495 struct xcoff_ar_hdr_big
*hdrp
;
1497 if (bfd_bread (&hdr
, (bfd_size_type
) SIZEOF_AR_HDR_BIG
, abfd
)
1498 != SIZEOF_AR_HDR_BIG
)
1504 namlen
= strtol (hdr
.namlen
, (char **) NULL
, 10);
1505 amt
= SIZEOF_AR_HDR_BIG
+ namlen
+ 1;
1506 hdrp
= (struct xcoff_ar_hdr_big
*) bfd_alloc (abfd
, amt
);
1512 memcpy (hdrp
, &hdr
, SIZEOF_AR_HDR_BIG
);
1513 if (bfd_bread ((char *) hdrp
+ SIZEOF_AR_HDR_BIG
, namlen
, abfd
) != namlen
)
1518 ((char *) hdrp
)[SIZEOF_AR_HDR_BIG
+ namlen
] = '\0';
1520 ret
->arch_header
= (char *) hdrp
;
1521 /* XXX This actually has to be a call to strtoll (at least on 32-bit
1522 machines) since the field width is 20 and there numbers with more
1523 than 32 bits can be represented. */
1524 ret
->parsed_size
= strtol (hdr
.size
, (char **) NULL
, 10);
1525 ret
->filename
= (char *) hdrp
+ SIZEOF_AR_HDR_BIG
;
1528 /* Skip over the XCOFFARFMAG at the end of the file name. */
1529 if (bfd_seek (abfd
, (file_ptr
) ((namlen
& 1) + SXCOFFARFMAG
), SEEK_CUR
) != 0)
1535 /* Open the next element in an XCOFF archive. */
1538 _bfd_xcoff_openr_next_archived_file (bfd
*archive
, bfd
*last_file
)
1542 if (xcoff_ardata (archive
) == NULL
)
1544 bfd_set_error (bfd_error_invalid_operation
);
1548 if (! xcoff_big_format_p (archive
))
1550 if (last_file
== NULL
)
1551 filestart
= bfd_ardata (archive
)->first_file_filepos
;
1553 filestart
= strtol (arch_xhdr (last_file
)->nextoff
, (char **) NULL
,
1557 || filestart
== strtol (xcoff_ardata (archive
)->memoff
,
1559 || filestart
== strtol (xcoff_ardata (archive
)->symoff
,
1560 (char **) NULL
, 10))
1562 bfd_set_error (bfd_error_no_more_archived_files
);
1568 if (last_file
== NULL
)
1569 filestart
= bfd_ardata (archive
)->first_file_filepos
;
1571 /* XXX These actually have to be a calls to strtoll (at least
1572 on 32-bit machines) since the fields's width is 20 and
1573 there numbers with more than 32 bits can be represented. */
1574 filestart
= strtol (arch_xhdr_big (last_file
)->nextoff
, (char **) NULL
,
1577 /* XXX These actually have to be calls to strtoll (at least on 32-bit
1578 machines) since the fields's width is 20 and there numbers with more
1579 than 32 bits can be represented. */
1581 || filestart
== strtol (xcoff_ardata_big (archive
)->memoff
,
1583 || filestart
== strtol (xcoff_ardata_big (archive
)->symoff
,
1584 (char **) NULL
, 10))
1586 bfd_set_error (bfd_error_no_more_archived_files
);
1591 return _bfd_get_elt_at_filepos (archive
, filestart
);
1594 /* Stat an element in an XCOFF archive. */
1597 _bfd_xcoff_stat_arch_elt (bfd
*abfd
, struct stat
*s
)
1599 if (abfd
->arelt_data
== NULL
)
1601 bfd_set_error (bfd_error_invalid_operation
);
1605 if (! xcoff_big_format_p (abfd
->my_archive
))
1607 struct xcoff_ar_hdr
*hdrp
= arch_xhdr (abfd
);
1609 s
->st_mtime
= strtol (hdrp
->date
, (char **) NULL
, 10);
1610 s
->st_uid
= strtol (hdrp
->uid
, (char **) NULL
, 10);
1611 s
->st_gid
= strtol (hdrp
->gid
, (char **) NULL
, 10);
1612 s
->st_mode
= strtol (hdrp
->mode
, (char **) NULL
, 8);
1613 s
->st_size
= arch_eltdata (abfd
)->parsed_size
;
1617 struct xcoff_ar_hdr_big
*hdrp
= arch_xhdr_big (abfd
);
1619 s
->st_mtime
= strtol (hdrp
->date
, (char **) NULL
, 10);
1620 s
->st_uid
= strtol (hdrp
->uid
, (char **) NULL
, 10);
1621 s
->st_gid
= strtol (hdrp
->gid
, (char **) NULL
, 10);
1622 s
->st_mode
= strtol (hdrp
->mode
, (char **) NULL
, 8);
1623 s
->st_size
= arch_eltdata (abfd
)->parsed_size
;
1629 /* Normalize a file name for inclusion in an archive. */
1632 normalize_filename (bfd
*abfd
)
1635 const char *filename
;
1637 file
= bfd_get_filename (abfd
);
1638 filename
= strrchr (file
, '/');
1639 if (filename
!= NULL
)
1646 /* Write out an XCOFF armap. */
1649 xcoff_write_armap_old (bfd
*abfd
, unsigned int elength ATTRIBUTE_UNUSED
,
1650 struct orl
*map
, unsigned int orl_count
, int stridx
)
1652 struct archive_iterator iterator
;
1653 struct xcoff_ar_hdr hdr
;
1655 unsigned char buf
[4];
1658 memset (&hdr
, 0, sizeof hdr
);
1659 sprintf (hdr
.size
, "%ld", (long) (4 + orl_count
* 4 + stridx
));
1660 sprintf (hdr
.nextoff
, "%d", 0);
1661 memcpy (hdr
.prevoff
, xcoff_ardata (abfd
)->memoff
, XCOFFARMAG_ELEMENT_SIZE
);
1662 sprintf (hdr
.date
, "%d", 0);
1663 sprintf (hdr
.uid
, "%d", 0);
1664 sprintf (hdr
.gid
, "%d", 0);
1665 sprintf (hdr
.mode
, "%d", 0);
1666 sprintf (hdr
.namlen
, "%d", 0);
1668 /* We need spaces, not null bytes, in the header. */
1669 for (p
= (char *) &hdr
; p
< (char *) &hdr
+ SIZEOF_AR_HDR
; p
++)
1673 if (bfd_bwrite (&hdr
, (bfd_size_type
) SIZEOF_AR_HDR
, abfd
)
1675 || (bfd_bwrite (XCOFFARFMAG
, (bfd_size_type
) SXCOFFARFMAG
, abfd
)
1679 H_PUT_32 (abfd
, orl_count
, buf
);
1680 if (bfd_bwrite (buf
, (bfd_size_type
) 4, abfd
) != 4)
1684 archive_iterator_begin (&iterator
, abfd
);
1685 while (i
< orl_count
&& archive_iterator_next (&iterator
))
1686 while (map
[i
].u
.abfd
== iterator
.current
.member
)
1688 H_PUT_32 (abfd
, iterator
.current
.offset
, buf
);
1689 if (bfd_bwrite (buf
, (bfd_size_type
) 4, abfd
) != 4)
1694 for (i
= 0; i
< orl_count
; i
++)
1699 name
= *map
[i
].name
;
1700 namlen
= strlen (name
);
1701 if (bfd_bwrite (name
, (bfd_size_type
) (namlen
+ 1), abfd
) != namlen
+ 1)
1705 if ((stridx
& 1) != 0)
1710 if (bfd_bwrite (&b
, (bfd_size_type
) 1, abfd
) != 1)
1717 static char buff20
[XCOFFARMAGBIG_ELEMENT_SIZE
+ 1];
1718 #define FMT20 "%-20lld"
1719 #define FMT12 "%-12d"
1720 #define FMT12_OCTAL "%-12o"
1722 #define PRINT20(d, v) \
1723 sprintf (buff20, FMT20, (long long)(v)), \
1724 memcpy ((void *) (d), buff20, 20)
1726 #define PRINT12(d, v) \
1727 sprintf (buff20, FMT12, (int)(v)), \
1728 memcpy ((void *) (d), buff20, 12)
1730 #define PRINT12_OCTAL(d, v) \
1731 sprintf (buff20, FMT12_OCTAL, (unsigned int)(v)), \
1732 memcpy ((void *) (d), buff20, 12)
1734 #define PRINT4(d, v) \
1735 sprintf (buff20, FMT4, (int)(v)), \
1736 memcpy ((void *) (d), buff20, 4)
1738 #define READ20(d, v) \
1740 memcpy (buff20, (d), 20), \
1741 (v) = bfd_scan_vma (buff20, (const char **) NULL, 10)
1744 do_pad (bfd
*abfd
, unsigned int number
)
1748 /* Limit pad to <= 4096. */
1753 if (bfd_bwrite (&b
, (bfd_size_type
) 1, abfd
) != 1)
1760 do_copy (bfd
*out_bfd
, bfd
*in_bfd
)
1762 bfd_size_type remaining
;
1763 bfd_byte buffer
[DEFAULT_BUFFERSIZE
];
1765 if (bfd_seek (in_bfd
, (file_ptr
) 0, SEEK_SET
) != 0)
1768 remaining
= arelt_size (in_bfd
);
1770 while (remaining
>= DEFAULT_BUFFERSIZE
)
1772 if (bfd_bread (buffer
, DEFAULT_BUFFERSIZE
, in_bfd
) != DEFAULT_BUFFERSIZE
1773 || bfd_bwrite (buffer
, DEFAULT_BUFFERSIZE
, out_bfd
) != DEFAULT_BUFFERSIZE
)
1776 remaining
-= DEFAULT_BUFFERSIZE
;
1781 if (bfd_bread (buffer
, remaining
, in_bfd
) != remaining
1782 || bfd_bwrite (buffer
, remaining
, out_bfd
) != remaining
)
1790 xcoff_write_armap_big (bfd
*abfd
, unsigned int elength ATTRIBUTE_UNUSED
,
1791 struct orl
*map
, unsigned int orl_count
, int stridx
)
1793 struct archive_iterator iterator
;
1794 struct xcoff_ar_file_hdr_big
*fhdr
;
1795 bfd_vma i
, sym_32
, sym_64
, str_32
, str_64
;
1796 const bfd_arch_info_type
*arch_info
;
1798 size_t string_length
;
1799 file_ptr nextoff
, prevoff
;
1801 /* First, we look through the symbols and work out which are
1802 from 32-bit objects and which from 64-bit ones. */
1803 sym_32
= sym_64
= str_32
= str_64
= 0;
1806 for (current_bfd
= abfd
->archive_head
;
1807 current_bfd
!= NULL
&& i
< orl_count
;
1808 current_bfd
= current_bfd
->archive_next
)
1810 arch_info
= bfd_get_arch_info (current_bfd
);
1811 while (map
[i
].u
.abfd
== current_bfd
)
1813 string_length
= strlen (*map
[i
].name
) + 1;
1814 if (arch_info
->bits_per_address
== 64)
1817 str_64
+= string_length
;
1822 str_32
+= string_length
;
1828 /* A quick sanity check... */
1829 BFD_ASSERT (sym_64
+ sym_32
== orl_count
);
1830 /* Explicit cast to int for compiler. */
1831 BFD_ASSERT ((int)(str_64
+ str_32
) == stridx
);
1833 fhdr
= xcoff_ardata_big (abfd
);
1835 /* xcoff_write_archive_contents_big passes nextoff in symoff. */
1836 READ20 (fhdr
->memoff
, prevoff
);
1837 READ20 (fhdr
->symoff
, nextoff
);
1839 BFD_ASSERT (nextoff
== bfd_tell (abfd
));
1841 /* Write out the symbol table.
1844 standard big archive header
1845 0x0000 ar_size [0x14]
1846 0x0014 ar_nxtmem [0x14]
1847 0x0028 ar_prvmem [0x14]
1848 0x003C ar_date [0x0C]
1849 0x0048 ar_uid [0x0C]
1850 0x0054 ar_gid [0x0C]
1851 0x0060 ar_mod [0x0C]
1852 0x006C ar_namelen[0x04]
1853 0x0070 ar_fmag [SXCOFFARFMAG]
1856 0x0072 num_syms [0x08], binary
1857 0x0078 offsets [0x08 * num_syms], binary
1858 0x0086 + 0x08 * num_syms names [??]
1859 ?? pad to even bytes.
1864 struct xcoff_ar_hdr_big
*hdr
;
1868 bfd_vma symbol_table_size
=
1873 + str_32
+ (str_32
& 1);
1875 symbol_table
= bfd_zmalloc (symbol_table_size
);
1876 if (symbol_table
== NULL
)
1879 hdr
= (struct xcoff_ar_hdr_big
*) symbol_table
;
1881 PRINT20 (hdr
->size
, 8 + 8 * sym_32
+ str_32
+ (str_32
& 1));
1884 PRINT20 (hdr
->nextoff
, nextoff
+ symbol_table_size
);
1886 PRINT20 (hdr
->nextoff
, 0);
1888 PRINT20 (hdr
->prevoff
, prevoff
);
1889 PRINT12 (hdr
->date
, 0);
1890 PRINT12 (hdr
->uid
, 0);
1891 PRINT12 (hdr
->gid
, 0);
1892 PRINT12 (hdr
->mode
, 0);
1893 PRINT4 (hdr
->namlen
, 0) ;
1895 st
= symbol_table
+ SIZEOF_AR_HDR_BIG
;
1896 memcpy (st
, XCOFFARFMAG
, SXCOFFARFMAG
);
1899 bfd_h_put_64 (abfd
, sym_32
, st
);
1902 /* loop over the 32 bit offsets */
1904 archive_iterator_begin (&iterator
, abfd
);
1905 while (i
< orl_count
&& archive_iterator_next (&iterator
))
1907 arch_info
= bfd_get_arch_info (iterator
.current
.member
);
1908 while (map
[i
].u
.abfd
== iterator
.current
.member
)
1910 if (arch_info
->bits_per_address
== 32)
1912 bfd_h_put_64 (abfd
, iterator
.current
.offset
, st
);
1919 /* loop over the 32 bit symbol names */
1921 for (current_bfd
= abfd
->archive_head
;
1922 current_bfd
!= NULL
&& i
< orl_count
;
1923 current_bfd
= current_bfd
->archive_next
)
1925 arch_info
= bfd_get_arch_info (current_bfd
);
1926 while (map
[i
].u
.abfd
== current_bfd
)
1928 if (arch_info
->bits_per_address
== 32)
1930 string_length
= sprintf (st
, "%s", *map
[i
].name
);
1931 st
+= string_length
+ 1;
1937 bfd_bwrite (symbol_table
, symbol_table_size
, abfd
);
1939 free (symbol_table
);
1942 nextoff
= nextoff
+ symbol_table_size
;
1945 PRINT20 (fhdr
->symoff
, 0);
1949 struct xcoff_ar_hdr_big
*hdr
;
1953 bfd_vma symbol_table_size
=
1958 + str_64
+ (str_64
& 1);
1960 symbol_table
= bfd_zmalloc (symbol_table_size
);
1961 if (symbol_table
== NULL
)
1964 hdr
= (struct xcoff_ar_hdr_big
*) symbol_table
;
1966 PRINT20 (hdr
->size
, 8 + 8 * sym_64
+ str_64
+ (str_64
& 1));
1967 PRINT20 (hdr
->nextoff
, 0);
1968 PRINT20 (hdr
->prevoff
, prevoff
);
1969 PRINT12 (hdr
->date
, 0);
1970 PRINT12 (hdr
->uid
, 0);
1971 PRINT12 (hdr
->gid
, 0);
1972 PRINT12 (hdr
->mode
, 0);
1973 PRINT4 (hdr
->namlen
, 0);
1975 st
= symbol_table
+ SIZEOF_AR_HDR_BIG
;
1976 memcpy (st
, XCOFFARFMAG
, SXCOFFARFMAG
);
1979 bfd_h_put_64 (abfd
, sym_64
, st
);
1982 /* loop over the 64 bit offsets */
1984 archive_iterator_begin (&iterator
, abfd
);
1985 while (i
< orl_count
&& archive_iterator_next (&iterator
))
1987 arch_info
= bfd_get_arch_info (iterator
.current
.member
);
1988 while (map
[i
].u
.abfd
== iterator
.current
.member
)
1990 if (arch_info
->bits_per_address
== 64)
1992 bfd_h_put_64 (abfd
, iterator
.current
.offset
, st
);
1999 /* loop over the 64 bit symbol names */
2001 for (current_bfd
= abfd
->archive_head
;
2002 current_bfd
!= NULL
&& i
< orl_count
;
2003 current_bfd
= current_bfd
->archive_next
)
2005 arch_info
= bfd_get_arch_info (current_bfd
);
2006 while (map
[i
].u
.abfd
== current_bfd
)
2008 if (arch_info
->bits_per_address
== 64)
2010 string_length
= sprintf (st
, "%s", *map
[i
].name
);
2011 st
+= string_length
+ 1;
2017 bfd_bwrite (symbol_table
, symbol_table_size
, abfd
);
2019 free (symbol_table
);
2021 PRINT20 (fhdr
->symoff64
, nextoff
);
2024 PRINT20 (fhdr
->symoff64
, 0);
2030 _bfd_xcoff_write_armap (bfd
*abfd
, unsigned int elength ATTRIBUTE_UNUSED
,
2031 struct orl
*map
, unsigned int orl_count
, int stridx
)
2033 if (! xcoff_big_format_p (abfd
))
2034 return xcoff_write_armap_old (abfd
, elength
, map
, orl_count
, stridx
);
2036 return xcoff_write_armap_big (abfd
, elength
, map
, orl_count
, stridx
);
2039 /* Write out an XCOFF archive. We always write an entire archive,
2040 rather than fussing with the freelist and so forth. */
2043 xcoff_write_archive_contents_old (bfd
*abfd
)
2045 struct archive_iterator iterator
;
2046 struct xcoff_ar_file_hdr fhdr
;
2047 bfd_size_type count
;
2048 bfd_size_type total_namlen
;
2050 bfd_boolean makemap
;
2051 bfd_boolean hasobjects
;
2052 file_ptr prevoff
, nextoff
;
2055 struct xcoff_ar_hdr ahdr
;
2058 char decbuf
[XCOFFARMAG_ELEMENT_SIZE
+ 1];
2060 memset (&fhdr
, 0, sizeof fhdr
);
2061 (void) strncpy (fhdr
.magic
, XCOFFARMAG
, SXCOFFARMAG
);
2062 sprintf (fhdr
.firstmemoff
, "%d", SIZEOF_AR_FILE_HDR
);
2063 sprintf (fhdr
.freeoff
, "%d", 0);
2067 for (sub
= abfd
->archive_head
; sub
!= NULL
; sub
= sub
->archive_next
)
2070 total_namlen
+= strlen (normalize_filename (sub
)) + 1;
2071 if (sub
->arelt_data
== NULL
)
2073 sub
->arelt_data
= bfd_zmalloc (sizeof (struct areltdata
));
2074 if (sub
->arelt_data
== NULL
)
2077 if (arch_xhdr (sub
) == NULL
)
2079 struct xcoff_ar_hdr
*ahdrp
;
2082 if (stat (bfd_get_filename (sub
), &s
) != 0)
2084 bfd_set_error (bfd_error_system_call
);
2088 ahdrp
= bfd_zalloc (sub
, sizeof (*ahdrp
));
2092 sprintf (ahdrp
->size
, "%ld", (long) s
.st_size
);
2093 sprintf (ahdrp
->date
, "%ld", (long) s
.st_mtime
);
2094 sprintf (ahdrp
->uid
, "%ld", (long) s
.st_uid
);
2095 sprintf (ahdrp
->gid
, "%ld", (long) s
.st_gid
);
2096 sprintf (ahdrp
->mode
, "%o", (unsigned int) s
.st_mode
);
2098 arch_eltdata (sub
)->arch_header
= (char *) ahdrp
;
2099 arch_eltdata (sub
)->parsed_size
= s
.st_size
;
2102 offsets
= (file_ptr
*) bfd_alloc (abfd
, count
* sizeof (file_ptr
));
2103 if (offsets
== NULL
)
2106 if (bfd_seek (abfd
, (file_ptr
) SIZEOF_AR_FILE_HDR
, SEEK_SET
) != 0)
2109 makemap
= bfd_has_map (abfd
);
2112 for (archive_iterator_begin (&iterator
, abfd
), i
= 0;
2113 archive_iterator_next (&iterator
);
2116 bfd_size_type namlen
;
2117 struct xcoff_ar_hdr
*ahdrp
;
2119 if (makemap
&& ! hasobjects
)
2121 if (bfd_check_format (iterator
.current
.member
, bfd_object
))
2125 ahdrp
= arch_xhdr (iterator
.current
.member
);
2126 sprintf (ahdrp
->prevoff
, "%ld", (long) prevoff
);
2127 sprintf (ahdrp
->namlen
, "%ld", (long) iterator
.current
.namlen
);
2128 sprintf (ahdrp
->nextoff
, "%ld", (long) iterator
.next
.offset
);
2130 /* We need spaces, not null bytes, in the header. */
2131 for (p
= (char *) ahdrp
; p
< (char *) ahdrp
+ SIZEOF_AR_HDR
; p
++)
2135 if (!do_pad (abfd
, iterator
.current
.leading_padding
))
2138 BFD_ASSERT (iterator
.current
.offset
== bfd_tell (abfd
));
2139 namlen
= iterator
.current
.padded_namlen
;
2140 if (bfd_bwrite (ahdrp
, SIZEOF_AR_HDR
, abfd
) != SIZEOF_AR_HDR
2141 || bfd_bwrite (iterator
.current
.name
, namlen
, abfd
) != namlen
2142 || bfd_bwrite (XCOFFARFMAG
, SXCOFFARFMAG
, abfd
) != SXCOFFARFMAG
2143 || bfd_seek (iterator
.current
.member
, 0, SEEK_SET
) != 0
2144 || !do_copy (abfd
, iterator
.current
.member
)
2145 || !do_pad (abfd
, iterator
.current
.trailing_padding
))
2148 offsets
[i
] = iterator
.current
.offset
;
2149 prevoff
= iterator
.current
.offset
;
2152 sprintf (fhdr
.lastmemoff
, "%ld", (long) prevoff
);
2154 /* Write out the member table. */
2156 nextoff
= iterator
.next
.offset
;
2157 BFD_ASSERT (nextoff
== bfd_tell (abfd
));
2158 sprintf (fhdr
.memoff
, "%ld", (long) nextoff
);
2160 memset (&ahdr
, 0, sizeof ahdr
);
2161 sprintf (ahdr
.size
, "%ld", (long) (XCOFFARMAG_ELEMENT_SIZE
2162 + count
* XCOFFARMAG_ELEMENT_SIZE
2164 sprintf (ahdr
.prevoff
, "%ld", (long) prevoff
);
2165 sprintf (ahdr
.date
, "%d", 0);
2166 sprintf (ahdr
.uid
, "%d", 0);
2167 sprintf (ahdr
.gid
, "%d", 0);
2168 sprintf (ahdr
.mode
, "%d", 0);
2169 sprintf (ahdr
.namlen
, "%d", 0);
2171 size
= (SIZEOF_AR_HDR
2172 + XCOFFARMAG_ELEMENT_SIZE
2173 + count
* XCOFFARMAG_ELEMENT_SIZE
2178 nextoff
+= size
+ (size
& 1);
2180 if (makemap
&& hasobjects
)
2181 sprintf (ahdr
.nextoff
, "%ld", (long) nextoff
);
2183 sprintf (ahdr
.nextoff
, "%d", 0);
2185 /* We need spaces, not null bytes, in the header. */
2186 for (p
= (char *) &ahdr
; p
< (char *) &ahdr
+ SIZEOF_AR_HDR
; p
++)
2190 if ((bfd_bwrite (&ahdr
, (bfd_size_type
) SIZEOF_AR_HDR
, abfd
)
2192 || (bfd_bwrite (XCOFFARFMAG
, (bfd_size_type
) SXCOFFARFMAG
, abfd
)
2196 sprintf (decbuf
, "%-12ld", (long) count
);
2197 if (bfd_bwrite (decbuf
, (bfd_size_type
) XCOFFARMAG_ELEMENT_SIZE
, abfd
)
2198 != XCOFFARMAG_ELEMENT_SIZE
)
2200 for (i
= 0; i
< (size_t) count
; i
++)
2202 sprintf (decbuf
, "%-12ld", (long) offsets
[i
]);
2203 if (bfd_bwrite (decbuf
, (bfd_size_type
) XCOFFARMAG_ELEMENT_SIZE
,
2204 abfd
) != XCOFFARMAG_ELEMENT_SIZE
)
2207 for (sub
= abfd
->archive_head
; sub
!= NULL
; sub
= sub
->archive_next
)
2210 bfd_size_type namlen
;
2212 name
= normalize_filename (sub
);
2213 namlen
= strlen (name
);
2214 if (bfd_bwrite (name
, namlen
+ 1, abfd
) != namlen
+ 1)
2218 if (! do_pad (abfd
, size
& 1))
2221 /* Write out the armap, if appropriate. */
2222 if (! makemap
|| ! hasobjects
)
2223 sprintf (fhdr
.symoff
, "%d", 0);
2226 BFD_ASSERT (nextoff
== bfd_tell (abfd
));
2227 sprintf (fhdr
.symoff
, "%ld", (long) nextoff
);
2228 bfd_ardata (abfd
)->tdata
= &fhdr
;
2229 if (! _bfd_compute_and_write_armap (abfd
, 0))
2233 /* Write out the archive file header. */
2235 /* We need spaces, not null bytes, in the header. */
2236 for (p
= (char *) &fhdr
; p
< (char *) &fhdr
+ SIZEOF_AR_FILE_HDR
; p
++)
2240 if (bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
) != 0
2241 || (bfd_bwrite (&fhdr
, (bfd_size_type
) SIZEOF_AR_FILE_HDR
, abfd
)
2242 != SIZEOF_AR_FILE_HDR
))
2249 xcoff_write_archive_contents_big (bfd
*abfd
)
2251 struct xcoff_ar_file_hdr_big fhdr
;
2252 bfd_size_type count
;
2253 bfd_size_type total_namlen
;
2255 bfd_boolean makemap
;
2256 bfd_boolean hasobjects
;
2257 file_ptr prevoff
, nextoff
;
2260 struct xcoff_ar_hdr_big
*hdr
;
2262 char *member_table
, *mt
;
2263 bfd_vma member_table_size
;
2264 struct archive_iterator iterator
;
2266 memset (&fhdr
, 0, SIZEOF_AR_FILE_HDR_BIG
);
2267 memcpy (fhdr
.magic
, XCOFFARMAGBIG
, SXCOFFARMAG
);
2269 if (bfd_seek (abfd
, (file_ptr
) SIZEOF_AR_FILE_HDR_BIG
, SEEK_SET
) != 0)
2272 /* Calculate count and total_namlen. */
2273 makemap
= bfd_has_map (abfd
);
2275 for (current_bfd
= abfd
->archive_head
, count
= 0, total_namlen
= 0;
2276 current_bfd
!= NULL
;
2277 current_bfd
= current_bfd
->archive_next
, count
++)
2279 total_namlen
+= strlen (normalize_filename (current_bfd
)) + 1;
2283 && bfd_check_format (current_bfd
, bfd_object
))
2286 if (current_bfd
->arelt_data
== NULL
)
2288 size
= sizeof (struct areltdata
);
2289 current_bfd
->arelt_data
= bfd_zmalloc (size
);
2290 if (current_bfd
->arelt_data
== NULL
)
2294 if (arch_xhdr_big (current_bfd
) == NULL
)
2296 struct xcoff_ar_hdr_big
*ahdrp
;
2299 /* XXX This should actually be a call to stat64 (at least on
2301 XXX This call will fail if the original object is not found. */
2302 if (stat (bfd_get_filename (current_bfd
), &s
) != 0)
2304 bfd_set_error (bfd_error_system_call
);
2308 ahdrp
= bfd_zalloc (current_bfd
, sizeof (*ahdrp
));
2312 PRINT20 (ahdrp
->size
, s
.st_size
);
2313 PRINT12 (ahdrp
->date
, s
.st_mtime
);
2314 PRINT12 (ahdrp
->uid
, s
.st_uid
);
2315 PRINT12 (ahdrp
->gid
, s
.st_gid
);
2316 PRINT12_OCTAL (ahdrp
->mode
, s
.st_mode
);
2318 arch_eltdata (current_bfd
)->arch_header
= (char *) ahdrp
;
2319 arch_eltdata (current_bfd
)->parsed_size
= s
.st_size
;
2326 offsets
= (file_ptr
*) bfd_malloc (count
* sizeof (file_ptr
));
2327 if (offsets
== NULL
)
2332 for (archive_iterator_begin (&iterator
, abfd
), i
= 0;
2333 archive_iterator_next (&iterator
);
2336 bfd_size_type namlen
;
2337 struct xcoff_ar_hdr_big
*ahdrp
;
2339 ahdrp
= arch_xhdr_big (iterator
.current
.member
);
2340 PRINT20 (ahdrp
->prevoff
, prevoff
);
2341 PRINT4 (ahdrp
->namlen
, iterator
.current
.namlen
);
2342 PRINT20 (ahdrp
->nextoff
, iterator
.next
.offset
);
2344 if (!do_pad (abfd
, iterator
.current
.leading_padding
))
2350 BFD_ASSERT (iterator
.current
.offset
== bfd_tell (abfd
));
2351 namlen
= iterator
.current
.padded_namlen
;
2352 if (bfd_bwrite (ahdrp
, SIZEOF_AR_HDR_BIG
, abfd
) != SIZEOF_AR_HDR_BIG
2353 || bfd_bwrite (iterator
.current
.name
, namlen
, abfd
) != namlen
2354 || bfd_bwrite (XCOFFARFMAG
, SXCOFFARFMAG
, abfd
) != SXCOFFARFMAG
2355 || bfd_seek (iterator
.current
.member
, 0, SEEK_SET
) != 0
2356 || !do_copy (abfd
, iterator
.current
.member
)
2357 || !do_pad (abfd
, iterator
.current
.trailing_padding
))
2363 offsets
[i
] = iterator
.current
.offset
;
2364 prevoff
= iterator
.current
.offset
;
2369 PRINT20 (fhdr
.firstmemoff
, offsets
[0]);
2370 PRINT20 (fhdr
.lastmemoff
, prevoff
);
2373 /* Write out the member table.
2376 standard big archive header
2377 0x0000 ar_size [0x14]
2378 0x0014 ar_nxtmem [0x14]
2379 0x0028 ar_prvmem [0x14]
2380 0x003C ar_date [0x0C]
2381 0x0048 ar_uid [0x0C]
2382 0x0054 ar_gid [0x0C]
2383 0x0060 ar_mod [0x0C]
2384 0x006C ar_namelen[0x04]
2385 0x0070 ar_fmag [0x02]
2389 0x0086 offsets [0x14 * counts]
2390 0x0086 + 0x14 * counts names [??]
2391 ?? pad to even bytes.
2394 nextoff
= iterator
.next
.offset
;
2395 BFD_ASSERT (nextoff
== bfd_tell (abfd
));
2397 member_table_size
= (SIZEOF_AR_HDR_BIG
2399 + XCOFFARMAGBIG_ELEMENT_SIZE
2400 + count
* XCOFFARMAGBIG_ELEMENT_SIZE
2403 member_table_size
+= member_table_size
& 1;
2404 member_table
= bfd_zmalloc (member_table_size
);
2405 if (member_table
== NULL
)
2411 hdr
= (struct xcoff_ar_hdr_big
*) member_table
;
2413 PRINT20 (hdr
->size
, (XCOFFARMAGBIG_ELEMENT_SIZE
2414 + count
* XCOFFARMAGBIG_ELEMENT_SIZE
2415 + total_namlen
+ (total_namlen
& 1)));
2416 if (makemap
&& hasobjects
)
2417 PRINT20 (hdr
->nextoff
, nextoff
+ member_table_size
);
2419 PRINT20 (hdr
->nextoff
, 0);
2420 PRINT20 (hdr
->prevoff
, prevoff
);
2421 PRINT12 (hdr
->date
, 0);
2422 PRINT12 (hdr
->uid
, 0);
2423 PRINT12 (hdr
->gid
, 0);
2424 PRINT12 (hdr
->mode
, 0);
2425 PRINT4 (hdr
->namlen
, 0);
2427 mt
= member_table
+ SIZEOF_AR_HDR_BIG
;
2428 memcpy (mt
, XCOFFARFMAG
, SXCOFFARFMAG
);
2431 PRINT20 (mt
, count
);
2432 mt
+= XCOFFARMAGBIG_ELEMENT_SIZE
;
2433 for (i
= 0; i
< (size_t) count
; i
++)
2435 PRINT20 (mt
, offsets
[i
]);
2436 mt
+= XCOFFARMAGBIG_ELEMENT_SIZE
;
2445 for (current_bfd
= abfd
->archive_head
;
2446 current_bfd
!= NULL
;
2447 current_bfd
= current_bfd
->archive_next
)
2452 name
= normalize_filename (current_bfd
);
2453 namlen
= sprintf (mt
, "%s", name
);
2457 if (bfd_bwrite (member_table
, member_table_size
, abfd
) != member_table_size
)
2460 free (member_table
);
2462 PRINT20 (fhdr
.memoff
, nextoff
);
2465 nextoff
+= member_table_size
;
2467 /* Write out the armap, if appropriate. */
2469 if (! makemap
|| ! hasobjects
)
2470 PRINT20 (fhdr
.symoff
, 0);
2473 BFD_ASSERT (nextoff
== bfd_tell (abfd
));
2475 /* Save nextoff in fhdr.symoff so the armap routine can use it. */
2476 PRINT20 (fhdr
.symoff
, nextoff
);
2478 bfd_ardata (abfd
)->tdata
= &fhdr
;
2479 if (! _bfd_compute_and_write_armap (abfd
, 0))
2483 /* Write out the archive file header. */
2485 if (bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
) != 0
2486 || (bfd_bwrite (&fhdr
, (bfd_size_type
) SIZEOF_AR_FILE_HDR_BIG
,
2487 abfd
) != SIZEOF_AR_FILE_HDR_BIG
))
2494 _bfd_xcoff_write_archive_contents (bfd
*abfd
)
2496 if (! xcoff_big_format_p (abfd
))
2497 return xcoff_write_archive_contents_old (abfd
);
2499 return xcoff_write_archive_contents_big (abfd
);
2502 /* We can't use the usual coff_sizeof_headers routine, because AIX
2503 always uses an a.out header. */
2506 _bfd_xcoff_sizeof_headers (bfd
*abfd
,
2507 struct bfd_link_info
*info ATTRIBUTE_UNUSED
)
2512 if (xcoff_data (abfd
)->full_aouthdr
)
2515 size
+= SMALL_AOUTSZ
;
2516 size
+= abfd
->section_count
* SCNHSZ
;
2518 if (info
->strip
!= strip_all
)
2520 /* There can be additional sections just for dealing with overflow in
2521 reloc and lineno counts. But the numbers of relocs and lineno aren't
2522 known when bfd_sizeof_headers is called, so we compute them by
2523 summing the numbers from input sections. */
2524 struct nbr_reloc_lineno
2526 unsigned int reloc_count
;
2527 unsigned int lineno_count
;
2529 struct nbr_reloc_lineno
*n_rl
;
2531 unsigned int max_index
;
2534 /* Although the number of sections is known, the maximum value of
2535 section->index isn't (because some sections may have been removed).
2536 Don't try to renumber sections, just compute the upper bound. */
2538 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
2539 if (s
->index
> max_index
)
2540 max_index
= s
->index
;
2542 /* Allocate the per section counters. It could be possible to use a
2543 preallocated array as the number of sections is limited on XCOFF,
2544 but this creates a maintainance issue. */
2545 n_rl
= bfd_zmalloc ((max_index
+ 1) * sizeof (*n_rl
));
2550 for (sub
= info
->input_bfds
; sub
!= NULL
; sub
= sub
->link
.next
)
2551 for (s
= sub
->sections
; s
!= NULL
; s
= s
->next
)
2553 struct nbr_reloc_lineno
*e
= &n_rl
[s
->output_section
->index
];
2554 e
->reloc_count
+= s
->reloc_count
;
2555 e
->lineno_count
+= s
->lineno_count
;
2558 /* Add the size of a section for each section with an overflow. */
2559 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
2561 struct nbr_reloc_lineno
*e
= &n_rl
[s
->index
];
2563 if (e
->reloc_count
>= 0xffff
2564 || (e
->lineno_count
>= 0xffff && info
->strip
!= strip_debugger
))
2574 /* Routines to swap information in the XCOFF .loader section. If we
2575 ever need to write an XCOFF loader, this stuff will need to be
2576 moved to another file shared by the linker (which XCOFF calls the
2577 ``binder'') and the loader. */
2579 /* Swap in the ldhdr structure. */
2582 xcoff_swap_ldhdr_in (bfd
*abfd
, const void * s
, struct internal_ldhdr
*dst
)
2584 const struct external_ldhdr
*src
= (const struct external_ldhdr
*) s
;
2586 dst
->l_version
= bfd_get_32 (abfd
, src
->l_version
);
2587 dst
->l_nsyms
= bfd_get_32 (abfd
, src
->l_nsyms
);
2588 dst
->l_nreloc
= bfd_get_32 (abfd
, src
->l_nreloc
);
2589 dst
->l_istlen
= bfd_get_32 (abfd
, src
->l_istlen
);
2590 dst
->l_nimpid
= bfd_get_32 (abfd
, src
->l_nimpid
);
2591 dst
->l_impoff
= bfd_get_32 (abfd
, src
->l_impoff
);
2592 dst
->l_stlen
= bfd_get_32 (abfd
, src
->l_stlen
);
2593 dst
->l_stoff
= bfd_get_32 (abfd
, src
->l_stoff
);
2596 /* Swap out the ldhdr structure. */
2599 xcoff_swap_ldhdr_out (bfd
*abfd
, const struct internal_ldhdr
*src
, void * d
)
2601 struct external_ldhdr
*dst
= (struct external_ldhdr
*) d
;
2603 bfd_put_32 (abfd
, (bfd_vma
) src
->l_version
, dst
->l_version
);
2604 bfd_put_32 (abfd
, src
->l_nsyms
, dst
->l_nsyms
);
2605 bfd_put_32 (abfd
, src
->l_nreloc
, dst
->l_nreloc
);
2606 bfd_put_32 (abfd
, src
->l_istlen
, dst
->l_istlen
);
2607 bfd_put_32 (abfd
, src
->l_nimpid
, dst
->l_nimpid
);
2608 bfd_put_32 (abfd
, src
->l_impoff
, dst
->l_impoff
);
2609 bfd_put_32 (abfd
, src
->l_stlen
, dst
->l_stlen
);
2610 bfd_put_32 (abfd
, src
->l_stoff
, dst
->l_stoff
);
2613 /* Swap in the ldsym structure. */
2616 xcoff_swap_ldsym_in (bfd
*abfd
, const void * s
, struct internal_ldsym
*dst
)
2618 const struct external_ldsym
*src
= (const struct external_ldsym
*) s
;
2620 if (bfd_get_32 (abfd
, src
->_l
._l_l
._l_zeroes
) != 0) {
2621 memcpy (dst
->_l
._l_name
, src
->_l
._l_name
, SYMNMLEN
);
2623 dst
->_l
._l_l
._l_zeroes
= 0;
2624 dst
->_l
._l_l
._l_offset
= bfd_get_32 (abfd
, src
->_l
._l_l
._l_offset
);
2626 dst
->l_value
= bfd_get_32 (abfd
, src
->l_value
);
2627 dst
->l_scnum
= bfd_get_16 (abfd
, src
->l_scnum
);
2628 dst
->l_smtype
= bfd_get_8 (abfd
, src
->l_smtype
);
2629 dst
->l_smclas
= bfd_get_8 (abfd
, src
->l_smclas
);
2630 dst
->l_ifile
= bfd_get_32 (abfd
, src
->l_ifile
);
2631 dst
->l_parm
= bfd_get_32 (abfd
, src
->l_parm
);
2634 /* Swap out the ldsym structure. */
2637 xcoff_swap_ldsym_out (bfd
*abfd
, const struct internal_ldsym
*src
, void * d
)
2639 struct external_ldsym
*dst
= (struct external_ldsym
*) d
;
2641 if (src
->_l
._l_l
._l_zeroes
!= 0)
2642 memcpy (dst
->_l
._l_name
, src
->_l
._l_name
, SYMNMLEN
);
2645 bfd_put_32 (abfd
, (bfd_vma
) 0, dst
->_l
._l_l
._l_zeroes
);
2646 bfd_put_32 (abfd
, (bfd_vma
) src
->_l
._l_l
._l_offset
,
2647 dst
->_l
._l_l
._l_offset
);
2649 bfd_put_32 (abfd
, src
->l_value
, dst
->l_value
);
2650 bfd_put_16 (abfd
, (bfd_vma
) src
->l_scnum
, dst
->l_scnum
);
2651 bfd_put_8 (abfd
, src
->l_smtype
, dst
->l_smtype
);
2652 bfd_put_8 (abfd
, src
->l_smclas
, dst
->l_smclas
);
2653 bfd_put_32 (abfd
, src
->l_ifile
, dst
->l_ifile
);
2654 bfd_put_32 (abfd
, src
->l_parm
, dst
->l_parm
);
2658 xcoff_swap_reloc_in (bfd
*abfd
, void * s
, void * d
)
2660 struct external_reloc
*src
= (struct external_reloc
*) s
;
2661 struct internal_reloc
*dst
= (struct internal_reloc
*) d
;
2663 memset (dst
, 0, sizeof (struct internal_reloc
));
2665 dst
->r_vaddr
= bfd_get_32 (abfd
, src
->r_vaddr
);
2666 dst
->r_symndx
= bfd_get_32 (abfd
, src
->r_symndx
);
2667 dst
->r_size
= bfd_get_8 (abfd
, src
->r_size
);
2668 dst
->r_type
= bfd_get_8 (abfd
, src
->r_type
);
2672 xcoff_swap_reloc_out (bfd
*abfd
, void * s
, void * d
)
2674 struct internal_reloc
*src
= (struct internal_reloc
*) s
;
2675 struct external_reloc
*dst
= (struct external_reloc
*) d
;
2677 bfd_put_32 (abfd
, src
->r_vaddr
, dst
->r_vaddr
);
2678 bfd_put_32 (abfd
, src
->r_symndx
, dst
->r_symndx
);
2679 bfd_put_8 (abfd
, src
->r_type
, dst
->r_type
);
2680 bfd_put_8 (abfd
, src
->r_size
, dst
->r_size
);
2682 return bfd_coff_relsz (abfd
);
2685 /* Swap in the ldrel structure. */
2688 xcoff_swap_ldrel_in (bfd
*abfd
, const void * s
, struct internal_ldrel
*dst
)
2690 const struct external_ldrel
*src
= (const struct external_ldrel
*) s
;
2692 dst
->l_vaddr
= bfd_get_32 (abfd
, src
->l_vaddr
);
2693 dst
->l_symndx
= bfd_get_32 (abfd
, src
->l_symndx
);
2694 dst
->l_rtype
= bfd_get_16 (abfd
, src
->l_rtype
);
2695 dst
->l_rsecnm
= bfd_get_16 (abfd
, src
->l_rsecnm
);
2698 /* Swap out the ldrel structure. */
2701 xcoff_swap_ldrel_out (bfd
*abfd
, const struct internal_ldrel
*src
, void * d
)
2703 struct external_ldrel
*dst
= (struct external_ldrel
*) d
;
2705 bfd_put_32 (abfd
, src
->l_vaddr
, dst
->l_vaddr
);
2706 bfd_put_32 (abfd
, src
->l_symndx
, dst
->l_symndx
);
2707 bfd_put_16 (abfd
, (bfd_vma
) src
->l_rtype
, dst
->l_rtype
);
2708 bfd_put_16 (abfd
, (bfd_vma
) src
->l_rsecnm
, dst
->l_rsecnm
);
2713 xcoff_reloc_type_noop (bfd
*input_bfd ATTRIBUTE_UNUSED
,
2714 asection
*input_section ATTRIBUTE_UNUSED
,
2715 bfd
*output_bfd ATTRIBUTE_UNUSED
,
2716 struct internal_reloc
*rel ATTRIBUTE_UNUSED
,
2717 struct internal_syment
*sym ATTRIBUTE_UNUSED
,
2718 struct reloc_howto_struct
*howto ATTRIBUTE_UNUSED
,
2719 bfd_vma val ATTRIBUTE_UNUSED
,
2720 bfd_vma addend ATTRIBUTE_UNUSED
,
2721 bfd_vma
*relocation ATTRIBUTE_UNUSED
,
2722 bfd_byte
*contents ATTRIBUTE_UNUSED
)
2728 xcoff_reloc_type_fail (bfd
*input_bfd
,
2729 asection
*input_section ATTRIBUTE_UNUSED
,
2730 bfd
*output_bfd ATTRIBUTE_UNUSED
,
2731 struct internal_reloc
*rel
,
2732 struct internal_syment
*sym ATTRIBUTE_UNUSED
,
2733 struct reloc_howto_struct
*howto ATTRIBUTE_UNUSED
,
2734 bfd_vma val ATTRIBUTE_UNUSED
,
2735 bfd_vma addend ATTRIBUTE_UNUSED
,
2736 bfd_vma
*relocation ATTRIBUTE_UNUSED
,
2737 bfd_byte
*contents ATTRIBUTE_UNUSED
)
2739 (*_bfd_error_handler
)
2740 (_("%s: unsupported relocation type 0x%02x"),
2741 bfd_get_filename (input_bfd
), (unsigned int) rel
->r_type
);
2742 bfd_set_error (bfd_error_bad_value
);
2747 xcoff_reloc_type_pos (bfd
*input_bfd ATTRIBUTE_UNUSED
,
2748 asection
*input_section ATTRIBUTE_UNUSED
,
2749 bfd
*output_bfd ATTRIBUTE_UNUSED
,
2750 struct internal_reloc
*rel ATTRIBUTE_UNUSED
,
2751 struct internal_syment
*sym ATTRIBUTE_UNUSED
,
2752 struct reloc_howto_struct
*howto ATTRIBUTE_UNUSED
,
2755 bfd_vma
*relocation
,
2756 bfd_byte
*contents ATTRIBUTE_UNUSED
)
2758 *relocation
= val
+ addend
;
2763 xcoff_reloc_type_neg (bfd
*input_bfd ATTRIBUTE_UNUSED
,
2764 asection
*input_section ATTRIBUTE_UNUSED
,
2765 bfd
*output_bfd ATTRIBUTE_UNUSED
,
2766 struct internal_reloc
*rel ATTRIBUTE_UNUSED
,
2767 struct internal_syment
*sym ATTRIBUTE_UNUSED
,
2768 struct reloc_howto_struct
*howto ATTRIBUTE_UNUSED
,
2771 bfd_vma
*relocation
,
2772 bfd_byte
*contents ATTRIBUTE_UNUSED
)
2774 *relocation
= addend
- val
;
2779 xcoff_reloc_type_rel (bfd
*input_bfd ATTRIBUTE_UNUSED
,
2780 asection
*input_section
,
2781 bfd
*output_bfd ATTRIBUTE_UNUSED
,
2782 struct internal_reloc
*rel ATTRIBUTE_UNUSED
,
2783 struct internal_syment
*sym ATTRIBUTE_UNUSED
,
2784 struct reloc_howto_struct
*howto
,
2787 bfd_vma
*relocation
,
2788 bfd_byte
*contents ATTRIBUTE_UNUSED
)
2790 howto
->pc_relative
= TRUE
;
2792 /* A PC relative reloc includes the section address. */
2793 addend
+= input_section
->vma
;
2795 *relocation
= val
+ addend
;
2796 *relocation
-= (input_section
->output_section
->vma
2797 + input_section
->output_offset
);
2802 xcoff_reloc_type_toc (bfd
*input_bfd
,
2803 asection
*input_section ATTRIBUTE_UNUSED
,
2805 struct internal_reloc
*rel
,
2806 struct internal_syment
*sym
,
2807 struct reloc_howto_struct
*howto ATTRIBUTE_UNUSED
,
2809 bfd_vma addend ATTRIBUTE_UNUSED
,
2810 bfd_vma
*relocation
,
2811 bfd_byte
*contents ATTRIBUTE_UNUSED
)
2813 struct xcoff_link_hash_entry
*h
;
2815 if (0 > rel
->r_symndx
)
2818 h
= obj_xcoff_sym_hashes (input_bfd
)[rel
->r_symndx
];
2820 if (h
!= NULL
&& h
->smclas
!= XMC_TD
)
2822 if (h
->toc_section
== NULL
)
2824 (*_bfd_error_handler
)
2825 (_("%s: TOC reloc at 0x%x to symbol `%s' with no TOC entry"),
2826 bfd_get_filename (input_bfd
), rel
->r_vaddr
,
2827 h
->root
.root
.string
);
2828 bfd_set_error (bfd_error_bad_value
);
2832 BFD_ASSERT ((h
->flags
& XCOFF_SET_TOC
) == 0);
2833 val
= (h
->toc_section
->output_section
->vma
2834 + h
->toc_section
->output_offset
);
2837 *relocation
= ((val
- xcoff_data (output_bfd
)->toc
)
2838 - (sym
->n_value
- xcoff_data (input_bfd
)->toc
));
2843 xcoff_reloc_type_ba (bfd
*input_bfd ATTRIBUTE_UNUSED
,
2844 asection
*input_section ATTRIBUTE_UNUSED
,
2845 bfd
*output_bfd ATTRIBUTE_UNUSED
,
2846 struct internal_reloc
*rel ATTRIBUTE_UNUSED
,
2847 struct internal_syment
*sym ATTRIBUTE_UNUSED
,
2848 struct reloc_howto_struct
*howto
,
2851 bfd_vma
*relocation
,
2852 bfd_byte
*contents ATTRIBUTE_UNUSED
)
2854 howto
->src_mask
&= ~3;
2855 howto
->dst_mask
= howto
->src_mask
;
2857 *relocation
= val
+ addend
;
2863 xcoff_reloc_type_br (bfd
*input_bfd
,
2864 asection
*input_section
,
2865 bfd
*output_bfd ATTRIBUTE_UNUSED
,
2866 struct internal_reloc
*rel
,
2867 struct internal_syment
*sym ATTRIBUTE_UNUSED
,
2868 struct reloc_howto_struct
*howto
,
2871 bfd_vma
*relocation
,
2874 struct xcoff_link_hash_entry
*h
;
2875 bfd_vma section_offset
;
2877 if (0 > rel
->r_symndx
)
2880 h
= obj_xcoff_sym_hashes (input_bfd
)[rel
->r_symndx
];
2881 section_offset
= rel
->r_vaddr
- input_section
->vma
;
2883 /* If we see an R_BR or R_RBR reloc which is jumping to global
2884 linkage code, and it is followed by an appropriate cror nop
2885 instruction, we replace the cror with lwz r2,20(r1). This
2886 restores the TOC after the glink code. Contrariwise, if the
2887 call is followed by a lwz r2,20(r1), but the call is not
2888 going to global linkage code, we can replace the load with a
2891 && (bfd_link_hash_defined
== h
->root
.type
2892 || bfd_link_hash_defweak
== h
->root
.type
)
2893 && section_offset
+ 8 <= input_section
->size
)
2898 pnext
= contents
+ section_offset
+ 4;
2899 next
= bfd_get_32 (input_bfd
, pnext
);
2901 /* The _ptrgl function is magic. It is used by the AIX
2902 compiler to call a function through a pointer. */
2903 if (h
->smclas
== XMC_GL
|| strcmp (h
->root
.root
.string
, "._ptrgl") == 0)
2905 if (next
== 0x4def7b82 /* cror 15,15,15 */
2906 || next
== 0x4ffffb82 /* cror 31,31,31 */
2907 || next
== 0x60000000) /* ori r0,r0,0 */
2908 bfd_put_32 (input_bfd
, 0x80410014, pnext
); /* lwz r2,20(r1) */
2913 if (next
== 0x80410014) /* lwz r2,20(r1) */
2914 bfd_put_32 (input_bfd
, 0x60000000, pnext
); /* ori r0,r0,0 */
2917 else if (NULL
!= h
&& bfd_link_hash_undefined
== h
->root
.type
)
2919 /* Normally, this relocation is against a defined symbol. In the
2920 case where this is a partial link and the output section offset
2921 is greater than 2^25, the linker will return an invalid error
2922 message that the relocation has been truncated. Yes it has been
2923 truncated but no it not important. For this case, disable the
2924 overflow checking. */
2926 howto
->complain_on_overflow
= complain_overflow_dont
;
2929 /* The original PC-relative relocation is biased by -r_vaddr, so adding
2930 the value below will give the absolute target address. */
2931 *relocation
= val
+ addend
+ rel
->r_vaddr
;
2933 howto
->src_mask
&= ~3;
2934 howto
->dst_mask
= howto
->src_mask
;
2937 && (h
->root
.type
== bfd_link_hash_defined
2938 || h
->root
.type
== bfd_link_hash_defweak
)
2939 && bfd_is_abs_section (h
->root
.u
.def
.section
)
2940 && section_offset
+ 4 <= input_section
->size
)
2945 /* Turn the relative branch into an absolute one by setting the
2947 ptr
= contents
+ section_offset
;
2948 insn
= bfd_get_32 (input_bfd
, ptr
);
2950 bfd_put_32 (input_bfd
, insn
, ptr
);
2952 /* Make the howto absolute too. */
2953 howto
->pc_relative
= FALSE
;
2954 howto
->complain_on_overflow
= complain_overflow_bitfield
;
2958 /* Use a PC-relative howto and subtract the instruction's address
2959 from the target address we calculated above. */
2960 howto
->pc_relative
= TRUE
;
2961 *relocation
-= (input_section
->output_section
->vma
2962 + input_section
->output_offset
2969 xcoff_reloc_type_crel (bfd
*input_bfd ATTRIBUTE_UNUSED
,
2970 asection
*input_section
,
2971 bfd
*output_bfd ATTRIBUTE_UNUSED
,
2972 struct internal_reloc
*rel ATTRIBUTE_UNUSED
,
2973 struct internal_syment
*sym ATTRIBUTE_UNUSED
,
2974 struct reloc_howto_struct
*howto
,
2975 bfd_vma val ATTRIBUTE_UNUSED
,
2977 bfd_vma
*relocation
,
2978 bfd_byte
*contents ATTRIBUTE_UNUSED
)
2980 howto
->pc_relative
= TRUE
;
2981 howto
->src_mask
&= ~3;
2982 howto
->dst_mask
= howto
->src_mask
;
2984 /* A PC relative reloc includes the section address. */
2985 addend
+= input_section
->vma
;
2987 *relocation
= val
+ addend
;
2988 *relocation
-= (input_section
->output_section
->vma
2989 + input_section
->output_offset
);
2994 xcoff_complain_overflow_dont_func (bfd
*input_bfd ATTRIBUTE_UNUSED
,
2995 bfd_vma val ATTRIBUTE_UNUSED
,
2996 bfd_vma relocation ATTRIBUTE_UNUSED
,
2997 struct reloc_howto_struct
*
2998 howto ATTRIBUTE_UNUSED
)
3004 xcoff_complain_overflow_bitfield_func (bfd
*input_bfd
,
3007 struct reloc_howto_struct
*howto
)
3009 bfd_vma fieldmask
, signmask
, ss
;
3012 /* Get the values to be added together. For signed and unsigned
3013 relocations, we assume that all values should be truncated to
3014 the size of an address. For bitfields, all the bits matter.
3015 See also bfd_check_overflow. */
3016 fieldmask
= N_ONES (howto
->bitsize
);
3018 b
= val
& howto
->src_mask
;
3020 /* Much like unsigned, except no trimming with addrmask. In
3021 addition, the sum overflows if there is a carry out of
3022 the bfd_vma, i.e., the sum is less than either input
3024 a
>>= howto
->rightshift
;
3025 b
>>= howto
->bitpos
;
3027 /* Bitfields are sometimes used for signed numbers; for
3028 example, a 13-bit field sometimes represents values in
3029 0..8191 and sometimes represents values in -4096..4095.
3030 If the field is signed and a is -4095 (0x1001) and b is
3031 -1 (0x1fff), the sum is -4096 (0x1000), but (0x1001 +
3032 0x1fff is 0x3000). It's not clear how to handle this
3033 everywhere, since there is not way to know how many bits
3034 are significant in the relocation, but the original code
3035 assumed that it was fully sign extended, and we will keep
3037 signmask
= (fieldmask
>> 1) + 1;
3039 if ((a
& ~ fieldmask
) != 0)
3041 /* Some bits out of the field are set. This might not
3042 be a problem: if this is a signed bitfield, it is OK
3043 iff all the high bits are set, including the sign
3044 bit. We'll try setting all but the most significant
3045 bit in the original relocation value: if this is all
3046 ones, we are OK, assuming a signed bitfield. */
3047 ss
= (signmask
<< howto
->rightshift
) - 1;
3048 if ((ss
| relocation
) != ~ (bfd_vma
) 0)
3053 /* We just assume (b & ~ fieldmask) == 0. */
3055 /* We explicitly permit wrap around if this relocation
3056 covers the high bit of an address. The Linux kernel
3057 relies on it, and it is the only way to write assembler
3058 code which can run when loaded at a location 0x80000000
3059 away from the location at which it is linked. */
3060 if (howto
->bitsize
+ howto
->rightshift
3061 == bfd_arch_bits_per_address (input_bfd
))
3065 if (sum
< a
|| (sum
& ~ fieldmask
) != 0)
3067 /* There was a carry out, or the field overflow. Test
3068 for signed operands again. Here is the overflow test
3069 is as for complain_overflow_signed. */
3070 if (((~ (a
^ b
)) & (a
^ sum
)) & signmask
)
3078 xcoff_complain_overflow_signed_func (bfd
*input_bfd
,
3081 struct reloc_howto_struct
*howto
)
3083 bfd_vma addrmask
, fieldmask
, signmask
, ss
;
3086 /* Get the values to be added together. For signed and unsigned
3087 relocations, we assume that all values should be truncated to
3088 the size of an address. For bitfields, all the bits matter.
3089 See also bfd_check_overflow. */
3090 fieldmask
= N_ONES (howto
->bitsize
);
3091 addrmask
= N_ONES (bfd_arch_bits_per_address (input_bfd
)) | fieldmask
;
3093 b
= val
& howto
->src_mask
;
3095 a
= (a
& addrmask
) >> howto
->rightshift
;
3097 /* If any sign bits are set, all sign bits must be set.
3098 That is, A must be a valid negative address after
3100 signmask
= ~ (fieldmask
>> 1);
3102 if (ss
!= 0 && ss
!= ((addrmask
>> howto
->rightshift
) & signmask
))
3105 /* We only need this next bit of code if the sign bit of B
3106 is below the sign bit of A. This would only happen if
3107 SRC_MASK had fewer bits than BITSIZE. Note that if
3108 SRC_MASK has more bits than BITSIZE, we can get into
3109 trouble; we would need to verify that B is in range, as
3110 we do for A above. */
3111 signmask
= ((~ howto
->src_mask
) >> 1) & howto
->src_mask
;
3112 if ((b
& signmask
) != 0)
3114 /* Set all the bits above the sign bit. */
3115 b
-= signmask
<<= 1;
3118 b
= (b
& addrmask
) >> howto
->bitpos
;
3120 /* Now we can do the addition. */
3123 /* See if the result has the correct sign. Bits above the
3124 sign bit are junk now; ignore them. If the sum is
3125 positive, make sure we did not have all negative inputs;
3126 if the sum is negative, make sure we did not have all
3127 positive inputs. The test below looks only at the sign
3128 bits, and it really just
3129 SIGN (A) == SIGN (B) && SIGN (A) != SIGN (SUM)
3131 signmask
= (fieldmask
>> 1) + 1;
3132 if (((~ (a
^ b
)) & (a
^ sum
)) & signmask
)
3139 xcoff_complain_overflow_unsigned_func (bfd
*input_bfd
,
3142 struct reloc_howto_struct
*howto
)
3144 bfd_vma addrmask
, fieldmask
;
3147 /* Get the values to be added together. For signed and unsigned
3148 relocations, we assume that all values should be truncated to
3149 the size of an address. For bitfields, all the bits matter.
3150 See also bfd_check_overflow. */
3151 fieldmask
= N_ONES (howto
->bitsize
);
3152 addrmask
= N_ONES (bfd_arch_bits_per_address (input_bfd
)) | fieldmask
;
3154 b
= val
& howto
->src_mask
;
3156 /* Checking for an unsigned overflow is relatively easy:
3157 trim the addresses and add, and trim the result as well.
3158 Overflow is normally indicated when the result does not
3159 fit in the field. However, we also need to consider the
3160 case when, e.g., fieldmask is 0x7fffffff or smaller, an
3161 input is 0x80000000, and bfd_vma is only 32 bits; then we
3162 will get sum == 0, but there is an overflow, since the
3163 inputs did not fit in the field. Instead of doing a
3164 separate test, we can check for this by or-ing in the
3165 operands when testing for the sum overflowing its final
3167 a
= (a
& addrmask
) >> howto
->rightshift
;
3168 b
= (b
& addrmask
) >> howto
->bitpos
;
3169 sum
= (a
+ b
) & addrmask
;
3170 if ((a
| b
| sum
) & ~ fieldmask
)
3176 /* This is the relocation function for the RS/6000/POWER/PowerPC.
3177 This is currently the only processor which uses XCOFF; I hope that
3180 I took the relocation type definitions from two documents:
3181 the PowerPC AIX Version 4 Application Binary Interface, First
3182 Edition (April 1992), and the PowerOpen ABI, Big-Endian
3183 32-Bit Hardware Implementation (June 30, 1994). Differences
3184 between the documents are noted below.
3186 Unsupported r_type's
3192 These relocs are defined by the PowerPC ABI to be
3193 relative branches which use half of the difference
3194 between the symbol and the program counter. I can't
3195 quite figure out when this is useful. These relocs are
3196 not defined by the PowerOpen ABI.
3201 Simple positive relocation.
3204 Simple negative relocation.
3207 Simple PC relative relocation.
3210 TOC relative relocation. The value in the instruction in
3211 the input file is the offset from the input file TOC to
3212 the desired location. We want the offset from the final
3213 TOC to the desired location. We have:
3218 so we must change insn by on - in.
3221 GL linkage relocation. The value of this relocation
3222 is the address of the entry in the TOC section.
3225 Local object TOC address. I can't figure out the
3226 difference between this and case R_GL.
3229 TOC relative relocation. A TOC relative load instruction
3230 which may be changed to a load address instruction.
3231 FIXME: We don't currently implement this optimization.
3234 TOC relative relocation. This is a TOC relative load
3235 address instruction which may be changed to a load
3236 instruction. FIXME: I don't know if this is the correct
3240 Absolute branch. We don't want to mess with the lower
3241 two bits of the instruction.
3244 The PowerPC ABI defines this as an absolute call which
3245 may be modified to become a relative call. The PowerOpen
3246 ABI does not define this relocation type.
3249 Absolute branch which may be modified to become a
3253 The PowerPC ABI defines this as an absolute branch to a
3254 fixed address which may be modified to an absolute branch
3255 to a symbol. The PowerOpen ABI does not define this
3259 The PowerPC ABI defines this as an absolute branch to a
3260 fixed address which may be modified to a relative branch.
3261 The PowerOpen ABI does not define this relocation type.
3264 Relative branch. We don't want to mess with the lower
3265 two bits of the instruction.
3268 The PowerPC ABI defines this as a relative call which may
3269 be modified to become an absolute call. The PowerOpen
3270 ABI does not define this relocation type.
3273 A relative branch which may be modified to become an
3277 The PowerPC AIX ABI describes this as a load which may be
3278 changed to a load address. The PowerOpen ABI says this
3279 is the same as case R_POS.
3282 The PowerPC AIX ABI describes this as a load address
3283 which may be changed to a load. The PowerOpen ABI says
3284 this is the same as R_POS.
3288 xcoff_ppc_relocate_section (bfd
*output_bfd
,
3289 struct bfd_link_info
*info
,
3291 asection
*input_section
,
3293 struct internal_reloc
*relocs
,
3294 struct internal_syment
*syms
,
3295 asection
**sections
)
3297 struct internal_reloc
*rel
;
3298 struct internal_reloc
*relend
;
3301 relend
= rel
+ input_section
->reloc_count
;
3302 for (; rel
< relend
; rel
++)
3305 struct xcoff_link_hash_entry
*h
;
3306 struct internal_syment
*sym
;
3309 struct reloc_howto_struct howto
;
3311 bfd_vma value_to_relocate
;
3315 /* Relocation type R_REF is a special relocation type which is
3316 merely used to prevent garbage collection from occurring for
3317 the csect including the symbol which it references. */
3318 if (rel
->r_type
== R_REF
)
3322 howto
.type
= rel
->r_type
;
3323 howto
.rightshift
= 0;
3324 howto
.bitsize
= (rel
->r_size
& 0x1f) + 1;
3325 howto
.size
= howto
.bitsize
> 16 ? 2 : 1;
3326 howto
.pc_relative
= FALSE
;
3328 howto
.complain_on_overflow
= (rel
->r_size
& 0x80
3329 ? complain_overflow_signed
3330 : complain_overflow_bitfield
);
3331 howto
.special_function
= NULL
;
3332 howto
.name
= "internal";
3333 howto
.partial_inplace
= TRUE
;
3334 howto
.src_mask
= howto
.dst_mask
= N_ONES (howto
.bitsize
);
3335 howto
.pcrel_offset
= FALSE
;
3342 symndx
= rel
->r_symndx
;
3348 h
= obj_xcoff_sym_hashes (input_bfd
)[symndx
];
3349 sym
= syms
+ symndx
;
3350 addend
= - sym
->n_value
;
3354 sec
= sections
[symndx
];
3355 /* Hack to make sure we use the right TOC anchor value
3356 if this reloc is against the TOC anchor. */
3357 if (sec
->name
[3] == '0'
3358 && strcmp (sec
->name
, ".tc0") == 0)
3359 val
= xcoff_data (output_bfd
)->toc
;
3361 val
= (sec
->output_section
->vma
3362 + sec
->output_offset
3368 if (info
->unresolved_syms_in_objects
!= RM_IGNORE
3369 && (h
->flags
& XCOFF_WAS_UNDEFINED
) != 0)
3370 (*info
->callbacks
->undefined_symbol
)
3371 (info
, h
->root
.root
.string
,
3372 input_bfd
, input_section
,
3373 rel
->r_vaddr
- input_section
->vma
,
3374 info
->unresolved_syms_in_objects
== RM_GENERATE_ERROR
);
3376 if (h
->root
.type
== bfd_link_hash_defined
3377 || h
->root
.type
== bfd_link_hash_defweak
)
3379 sec
= h
->root
.u
.def
.section
;
3380 val
= (h
->root
.u
.def
.value
3381 + sec
->output_section
->vma
3382 + sec
->output_offset
);
3384 else if (h
->root
.type
== bfd_link_hash_common
)
3386 sec
= h
->root
.u
.c
.p
->section
;
3387 val
= (sec
->output_section
->vma
3388 + sec
->output_offset
);
3393 BFD_ASSERT (bfd_link_relocatable (info
)
3394 || (info
->static_link
3395 && (h
->flags
& XCOFF_WAS_UNDEFINED
) != 0)
3396 || (h
->flags
& XCOFF_DEF_DYNAMIC
) != 0
3397 || (h
->flags
& XCOFF_IMPORT
) != 0);
3402 if (rel
->r_type
>= XCOFF_MAX_CALCULATE_RELOCATION
3403 || !((*xcoff_calculate_relocation
[rel
->r_type
])
3404 (input_bfd
, input_section
, output_bfd
, rel
, sym
, &howto
, val
,
3405 addend
, &relocation
, contents
)))
3409 address
= rel
->r_vaddr
- input_section
->vma
;
3410 location
= contents
+ address
;
3412 if (address
> input_section
->size
)
3415 /* Get the value we are going to relocate. */
3416 if (1 == howto
.size
)
3417 value_to_relocate
= bfd_get_16 (input_bfd
, location
);
3419 value_to_relocate
= bfd_get_32 (input_bfd
, location
);
3423 FIXME: We may drop bits during the addition
3424 which we don't check for. We must either check at every single
3425 operation, which would be tedious, or we must do the computations
3426 in a type larger than bfd_vma, which would be inefficient. */
3428 if ((unsigned int) howto
.complain_on_overflow
3429 >= XCOFF_MAX_COMPLAIN_OVERFLOW
)
3432 if (((*xcoff_complain_overflow
[howto
.complain_on_overflow
])
3433 (input_bfd
, value_to_relocate
, relocation
, &howto
)))
3436 char buf
[SYMNMLEN
+ 1];
3437 char reloc_type_name
[10];
3449 name
= _bfd_coff_internal_syment_name (input_bfd
, sym
, buf
);
3453 sprintf (reloc_type_name
, "0x%02x", rel
->r_type
);
3455 (*info
->callbacks
->reloc_overflow
)
3456 (info
, (h
? &h
->root
: NULL
), name
, reloc_type_name
,
3457 (bfd_vma
) 0, input_bfd
, input_section
,
3458 rel
->r_vaddr
- input_section
->vma
);
3461 /* Add RELOCATION to the right bits of VALUE_TO_RELOCATE. */
3462 value_to_relocate
= ((value_to_relocate
& ~howto
.dst_mask
)
3463 | (((value_to_relocate
& howto
.src_mask
)
3464 + relocation
) & howto
.dst_mask
));
3466 /* Put the value back in the object file. */
3467 if (1 == howto
.size
)
3468 bfd_put_16 (input_bfd
, value_to_relocate
, location
);
3470 bfd_put_32 (input_bfd
, value_to_relocate
, location
);
3477 _bfd_xcoff_put_ldsymbol_name (bfd
*abfd ATTRIBUTE_UNUSED
,
3478 struct xcoff_loader_info
*ldinfo
,
3479 struct internal_ldsym
*ldsym
,
3483 len
= strlen (name
);
3485 if (len
<= SYMNMLEN
)
3486 strncpy (ldsym
->_l
._l_name
, name
, SYMNMLEN
);
3489 if (ldinfo
->string_size
+ len
+ 3 > ldinfo
->string_alc
)
3491 bfd_size_type newalc
;
3494 newalc
= ldinfo
->string_alc
* 2;
3497 while (ldinfo
->string_size
+ len
+ 3 > newalc
)
3500 newstrings
= bfd_realloc (ldinfo
->strings
, newalc
);
3501 if (newstrings
== NULL
)
3503 ldinfo
->failed
= TRUE
;
3506 ldinfo
->string_alc
= newalc
;
3507 ldinfo
->strings
= newstrings
;
3510 bfd_put_16 (ldinfo
->output_bfd
, (bfd_vma
) (len
+ 1),
3511 ldinfo
->strings
+ ldinfo
->string_size
);
3512 strcpy (ldinfo
->strings
+ ldinfo
->string_size
+ 2, name
);
3513 ldsym
->_l
._l_l
._l_zeroes
= 0;
3514 ldsym
->_l
._l_l
._l_offset
= ldinfo
->string_size
+ 2;
3515 ldinfo
->string_size
+= len
+ 3;
3522 _bfd_xcoff_put_symbol_name (struct bfd_link_info
*info
,
3523 struct bfd_strtab_hash
*strtab
,
3524 struct internal_syment
*sym
,
3527 if (strlen (name
) <= SYMNMLEN
)
3529 strncpy (sym
->_n
._n_name
, name
, SYMNMLEN
);
3536 hash
= !info
->traditional_format
;
3537 indx
= _bfd_stringtab_add (strtab
, name
, hash
, FALSE
);
3538 if (indx
== (bfd_size_type
) -1)
3540 sym
->_n
._n_n
._n_zeroes
= 0;
3541 sym
->_n
._n_n
._n_offset
= STRING_SIZE_SIZE
+ indx
;
3547 xcoff_create_csect_from_smclas (bfd
*abfd
,
3548 union internal_auxent
*aux
,
3549 const char *symbol_name
)
3551 asection
*return_value
= NULL
;
3553 /* .sv64 = x_smclas == 17
3554 This is an invalid csect for 32 bit apps. */
3555 static const char * const names
[] =
3557 ".pr", ".ro", ".db", ".tc", ".ua", ".rw", ".gl", ".xo", /* 0 - 7 */
3558 ".sv", ".bs", ".ds", ".uc", ".ti", ".tb", NULL
, ".tc0", /* 8 - 15 */
3559 ".td", NULL
, ".sv3264", NULL
, ".tl", ".ul", ".te"
3562 if ((aux
->x_csect
.x_smclas
< ARRAY_SIZE (names
))
3563 && (NULL
!= names
[aux
->x_csect
.x_smclas
]))
3565 return_value
= bfd_make_section_anyway
3566 (abfd
, names
[aux
->x_csect
.x_smclas
]);
3570 (*_bfd_error_handler
)
3571 (_("%B: symbol `%s' has unrecognized smclas %d"),
3572 abfd
, symbol_name
, aux
->x_csect
.x_smclas
);
3573 bfd_set_error (bfd_error_bad_value
);
3576 return return_value
;
3580 xcoff_is_lineno_count_overflow (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_vma value
)
3582 if (0xffff <= value
)
3589 xcoff_is_reloc_count_overflow (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_vma value
)
3591 if (0xffff <= value
)
3598 xcoff_loader_symbol_offset (bfd
*abfd
,
3599 struct internal_ldhdr
*ldhdr ATTRIBUTE_UNUSED
)
3601 return bfd_xcoff_ldhdrsz (abfd
);
3605 xcoff_loader_reloc_offset (bfd
*abfd
, struct internal_ldhdr
*ldhdr
)
3607 return bfd_xcoff_ldhdrsz (abfd
) + ldhdr
->l_nsyms
* bfd_xcoff_ldsymsz (abfd
);
3611 xcoff_generate_rtinit (bfd
*abfd
, const char *init
, const char *fini
,
3614 bfd_byte filehdr_ext
[FILHSZ
];
3615 bfd_byte scnhdr_ext
[SCNHSZ
];
3616 bfd_byte syment_ext
[SYMESZ
* 10];
3617 bfd_byte reloc_ext
[RELSZ
* 3];
3618 bfd_byte
*data_buffer
;
3619 bfd_size_type data_buffer_size
;
3620 bfd_byte
*string_table
= NULL
, *st_tmp
= NULL
;
3621 bfd_size_type string_table_size
;
3623 size_t initsz
, finisz
;
3624 struct internal_filehdr filehdr
;
3625 struct internal_scnhdr scnhdr
;
3626 struct internal_syment syment
;
3627 union internal_auxent auxent
;
3628 struct internal_reloc reloc
;
3630 char *data_name
= ".data";
3631 char *rtinit_name
= "__rtinit";
3632 char *rtld_name
= "__rtld";
3634 if (! bfd_xcoff_rtinit_size (abfd
))
3637 initsz
= (init
== NULL
? 0 : 1 + strlen (init
));
3638 finisz
= (fini
== NULL
? 0 : 1 + strlen (fini
));
3641 memset (filehdr_ext
, 0, FILHSZ
);
3642 memset (&filehdr
, 0, sizeof (struct internal_filehdr
));
3643 filehdr
.f_magic
= bfd_xcoff_magic_number (abfd
);
3644 filehdr
.f_nscns
= 1;
3645 filehdr
.f_timdat
= 0;
3646 filehdr
.f_nsyms
= 0; /* at least 6, no more than 10 */
3647 filehdr
.f_symptr
= 0; /* set below */
3648 filehdr
.f_opthdr
= 0;
3649 filehdr
.f_flags
= 0;
3651 /* section header */
3652 memset (scnhdr_ext
, 0, SCNHSZ
);
3653 memset (&scnhdr
, 0, sizeof (struct internal_scnhdr
));
3654 memcpy (scnhdr
.s_name
, data_name
, strlen (data_name
));
3657 scnhdr
.s_size
= 0; /* set below */
3658 scnhdr
.s_scnptr
= FILHSZ
+ SCNHSZ
;
3659 scnhdr
.s_relptr
= 0; /* set below */
3660 scnhdr
.s_lnnoptr
= 0;
3661 scnhdr
.s_nreloc
= 0; /* either 1 or 2 */
3663 scnhdr
.s_flags
= STYP_DATA
;
3666 0x0000 0x00000000 : rtl
3667 0x0004 0x00000010 : offset to init, or 0
3668 0x0008 0x00000028 : offset to fini, or 0
3669 0x000C 0x0000000C : size of descriptor
3670 0x0010 0x00000000 : init, needs a reloc
3671 0x0014 0x00000040 : offset to init name
3672 0x0018 0x00000000 : flags, padded to a word
3673 0x001C 0x00000000 : empty init
3676 0x0028 0x00000000 : fini, needs a reloc
3677 0x002C 0x00000??? : offset to fini name
3678 0x0030 0x00000000 : flags, padded to a word
3679 0x0034 0x00000000 : empty fini
3683 0x0040 + initsz fini name */
3685 data_buffer_size
= 0x0040 + initsz
+ finisz
;
3686 data_buffer_size
= (data_buffer_size
+ 7) &~ (bfd_size_type
) 7;
3688 data_buffer
= (bfd_byte
*) bfd_zmalloc (data_buffer_size
);
3689 if (data_buffer
== NULL
)
3695 bfd_h_put_32 (abfd
, val
, &data_buffer
[0x04]);
3697 bfd_h_put_32 (abfd
, val
, &data_buffer
[0x14]);
3698 memcpy (&data_buffer
[val
], init
, initsz
);
3704 bfd_h_put_32 (abfd
, val
, &data_buffer
[0x08]);
3705 val
= 0x40 + initsz
;
3706 bfd_h_put_32 (abfd
, val
, &data_buffer
[0x2C]);
3707 memcpy (&data_buffer
[val
], fini
, finisz
);
3711 bfd_h_put_32 (abfd
, val
, &data_buffer
[0x0C]);
3713 scnhdr
.s_size
= data_buffer_size
;
3716 string_table_size
= 0;
3718 string_table_size
+= initsz
;
3720 string_table_size
+= finisz
;
3721 if (string_table_size
)
3723 string_table_size
+= 4;
3724 string_table
= (bfd_byte
*) bfd_zmalloc (string_table_size
);
3725 if (string_table
== NULL
)
3728 val
= string_table_size
;
3729 bfd_h_put_32 (abfd
, val
, &string_table
[0]);
3730 st_tmp
= string_table
+ 4;
3739 memset (syment_ext
, 0, 10 * SYMESZ
);
3740 memset (reloc_ext
, 0, 3 * RELSZ
);
3743 memset (&syment
, 0, sizeof (struct internal_syment
));
3744 memset (&auxent
, 0, sizeof (union internal_auxent
));
3745 memcpy (syment
._n
._n_name
, data_name
, strlen (data_name
));
3747 syment
.n_sclass
= C_HIDEXT
;
3748 syment
.n_numaux
= 1;
3749 auxent
.x_csect
.x_scnlen
.l
= data_buffer_size
;
3750 auxent
.x_csect
.x_smtyp
= 3 << 3 | XTY_SD
;
3751 auxent
.x_csect
.x_smclas
= XMC_RW
;
3752 bfd_coff_swap_sym_out (abfd
, &syment
,
3753 &syment_ext
[filehdr
.f_nsyms
* SYMESZ
]);
3754 bfd_coff_swap_aux_out (abfd
, &auxent
, syment
.n_type
, syment
.n_sclass
, 0,
3756 &syment_ext
[(filehdr
.f_nsyms
+ 1) * SYMESZ
]);
3757 filehdr
.f_nsyms
+= 2;
3760 memset (&syment
, 0, sizeof (struct internal_syment
));
3761 memset (&auxent
, 0, sizeof (union internal_auxent
));
3762 memcpy (syment
._n
._n_name
, rtinit_name
, strlen (rtinit_name
));
3764 syment
.n_sclass
= C_EXT
;
3765 syment
.n_numaux
= 1;
3766 auxent
.x_csect
.x_smtyp
= XTY_LD
;
3767 auxent
.x_csect
.x_smclas
= XMC_RW
;
3768 bfd_coff_swap_sym_out (abfd
, &syment
,
3769 &syment_ext
[filehdr
.f_nsyms
* SYMESZ
]);
3770 bfd_coff_swap_aux_out (abfd
, &auxent
, syment
.n_type
, syment
.n_sclass
, 0,
3772 &syment_ext
[(filehdr
.f_nsyms
+ 1) * SYMESZ
]);
3773 filehdr
.f_nsyms
+= 2;
3778 memset (&syment
, 0, sizeof (struct internal_syment
));
3779 memset (&auxent
, 0, sizeof (union internal_auxent
));
3783 syment
._n
._n_n
._n_offset
= st_tmp
- string_table
;
3784 memcpy (st_tmp
, init
, initsz
);
3788 memcpy (syment
._n
._n_name
, init
, initsz
- 1);
3790 syment
.n_sclass
= C_EXT
;
3791 syment
.n_numaux
= 1;
3792 bfd_coff_swap_sym_out (abfd
, &syment
,
3793 &syment_ext
[filehdr
.f_nsyms
* SYMESZ
]);
3794 bfd_coff_swap_aux_out (abfd
, &auxent
, syment
.n_type
, syment
.n_sclass
, 0,
3796 &syment_ext
[(filehdr
.f_nsyms
+ 1) * SYMESZ
]);
3799 memset (&reloc
, 0, sizeof (struct internal_reloc
));
3800 reloc
.r_vaddr
= 0x0010;
3801 reloc
.r_symndx
= filehdr
.f_nsyms
;
3802 reloc
.r_type
= R_POS
;
3804 bfd_coff_swap_reloc_out (abfd
, &reloc
, &reloc_ext
[0]);
3806 filehdr
.f_nsyms
+= 2;
3807 scnhdr
.s_nreloc
+= 1;
3813 memset (&syment
, 0, sizeof (struct internal_syment
));
3814 memset (&auxent
, 0, sizeof (union internal_auxent
));
3818 syment
._n
._n_n
._n_offset
= st_tmp
- string_table
;
3819 memcpy (st_tmp
, fini
, finisz
);
3823 memcpy (syment
._n
._n_name
, fini
, finisz
- 1);
3825 syment
.n_sclass
= C_EXT
;
3826 syment
.n_numaux
= 1;
3827 bfd_coff_swap_sym_out (abfd
, &syment
,
3828 &syment_ext
[filehdr
.f_nsyms
* SYMESZ
]);
3829 bfd_coff_swap_aux_out (abfd
, &auxent
, syment
.n_type
, syment
.n_sclass
, 0,
3831 &syment_ext
[(filehdr
.f_nsyms
+ 1) * SYMESZ
]);
3834 memset (&reloc
, 0, sizeof (struct internal_reloc
));
3835 reloc
.r_vaddr
= 0x0028;
3836 reloc
.r_symndx
= filehdr
.f_nsyms
;
3837 reloc
.r_type
= R_POS
;
3839 bfd_coff_swap_reloc_out (abfd
, &reloc
,
3840 &reloc_ext
[scnhdr
.s_nreloc
* RELSZ
]);
3842 filehdr
.f_nsyms
+= 2;
3843 scnhdr
.s_nreloc
+= 1;
3848 memset (&syment
, 0, sizeof (struct internal_syment
));
3849 memset (&auxent
, 0, sizeof (union internal_auxent
));
3850 memcpy (syment
._n
._n_name
, rtld_name
, strlen (rtld_name
));
3851 syment
.n_sclass
= C_EXT
;
3852 syment
.n_numaux
= 1;
3853 bfd_coff_swap_sym_out (abfd
, &syment
,
3854 &syment_ext
[filehdr
.f_nsyms
* SYMESZ
]);
3855 bfd_coff_swap_aux_out (abfd
, &auxent
, syment
.n_type
, syment
.n_sclass
, 0,
3857 &syment_ext
[(filehdr
.f_nsyms
+ 1) * SYMESZ
]);
3860 memset (&reloc
, 0, sizeof (struct internal_reloc
));
3861 reloc
.r_vaddr
= 0x0000;
3862 reloc
.r_symndx
= filehdr
.f_nsyms
;
3863 reloc
.r_type
= R_POS
;
3865 bfd_coff_swap_reloc_out (abfd
, &reloc
,
3866 &reloc_ext
[scnhdr
.s_nreloc
* RELSZ
]);
3868 filehdr
.f_nsyms
+= 2;
3869 scnhdr
.s_nreloc
+= 1;
3872 scnhdr
.s_relptr
= scnhdr
.s_scnptr
+ data_buffer_size
;
3873 filehdr
.f_symptr
= scnhdr
.s_relptr
+ scnhdr
.s_nreloc
* RELSZ
;
3875 bfd_coff_swap_filehdr_out (abfd
, &filehdr
, filehdr_ext
);
3876 bfd_bwrite (filehdr_ext
, FILHSZ
, abfd
);
3877 bfd_coff_swap_scnhdr_out (abfd
, &scnhdr
, scnhdr_ext
);
3878 bfd_bwrite (scnhdr_ext
, SCNHSZ
, abfd
);
3879 bfd_bwrite (data_buffer
, data_buffer_size
, abfd
);
3880 bfd_bwrite (reloc_ext
, scnhdr
.s_nreloc
* RELSZ
, abfd
);
3881 bfd_bwrite (syment_ext
, filehdr
.f_nsyms
* SYMESZ
, abfd
);
3882 bfd_bwrite (string_table
, string_table_size
, abfd
);
3891 static reloc_howto_type xcoff_dynamic_reloc
=
3892 HOWTO (0, /* type */
3894 2, /* size (0 = byte, 1 = short, 2 = long) */
3896 FALSE
, /* pc_relative */
3898 complain_overflow_bitfield
, /* complain_on_overflow */
3899 0, /* special_function */
3901 TRUE
, /* partial_inplace */
3902 0xffffffff, /* src_mask */
3903 0xffffffff, /* dst_mask */
3904 FALSE
); /* pcrel_offset */
3908 The first word of global linkage code must be modified by filling in
3909 the correct TOC offset. */
3911 static unsigned long xcoff_glink_code
[9] =
3913 0x81820000, /* lwz r12,0(r2) */
3914 0x90410014, /* stw r2,20(r1) */
3915 0x800c0000, /* lwz r0,0(r12) */
3916 0x804c0004, /* lwz r2,4(r12) */
3917 0x7c0903a6, /* mtctr r0 */
3918 0x4e800420, /* bctr */
3919 0x00000000, /* start of traceback table */
3920 0x000c8000, /* traceback table */
3921 0x00000000, /* traceback table */
3924 /* Table to convert DWARF flags to section names. */
3926 const struct xcoff_dwsect_name xcoff_dwsect_names
[] = {
3927 { SSUBTYP_DWINFO
, ".dwinfo", TRUE
},
3928 { SSUBTYP_DWLINE
, ".dwline", TRUE
},
3929 { SSUBTYP_DWPBNMS
, ".dwpbnms", TRUE
},
3930 { SSUBTYP_DWPBTYP
, ".dwpbtyp", TRUE
},
3931 { SSUBTYP_DWARNGE
, ".dwarnge", TRUE
},
3932 { SSUBTYP_DWABREV
, ".dwabrev", FALSE
},
3933 { SSUBTYP_DWSTR
, ".dwstr", TRUE
},
3934 { SSUBTYP_DWRNGES
, ".dwrnges", TRUE
}
3937 /* For generic entry points. */
3938 #define _bfd_xcoff_close_and_cleanup _bfd_archive_close_and_cleanup
3939 #define _bfd_xcoff_bfd_free_cached_info bfd_true
3940 #define _bfd_xcoff_new_section_hook coff_new_section_hook
3941 #define _bfd_xcoff_get_section_contents _bfd_generic_get_section_contents
3942 #define _bfd_xcoff_get_section_contents_in_window \
3943 _bfd_generic_get_section_contents_in_window
3945 /* For copy private data entry points. */
3946 #define _bfd_xcoff_bfd_copy_private_bfd_data \
3947 _bfd_xcoff_copy_private_bfd_data
3948 #define _bfd_xcoff_bfd_merge_private_bfd_data \
3949 _bfd_generic_bfd_merge_private_bfd_data
3950 #define _bfd_xcoff_bfd_copy_private_section_data \
3951 _bfd_generic_bfd_copy_private_section_data
3952 #define _bfd_xcoff_bfd_copy_private_symbol_data \
3953 _bfd_generic_bfd_copy_private_symbol_data
3954 #define _bfd_xcoff_bfd_copy_private_header_data \
3955 _bfd_generic_bfd_copy_private_header_data
3956 #define _bfd_xcoff_bfd_set_private_flags \
3957 _bfd_generic_bfd_set_private_flags
3958 #define _bfd_xcoff_bfd_print_private_bfd_data \
3959 _bfd_generic_bfd_print_private_bfd_data
3961 /* For archive entry points. */
3962 #define _bfd_xcoff_slurp_extended_name_table \
3963 _bfd_noarchive_slurp_extended_name_table
3964 #define _bfd_xcoff_construct_extended_name_table \
3965 _bfd_noarchive_construct_extended_name_table
3966 #define _bfd_xcoff_truncate_arname bfd_dont_truncate_arname
3967 #define _bfd_xcoff_write_ar_hdr _bfd_generic_write_ar_hdr
3968 #define _bfd_xcoff_get_elt_at_index _bfd_generic_get_elt_at_index
3969 #define _bfd_xcoff_generic_stat_arch_elt _bfd_xcoff_stat_arch_elt
3970 #define _bfd_xcoff_update_armap_timestamp bfd_true
3972 /* For symbols entry points. */
3973 #define _bfd_xcoff_get_symtab_upper_bound coff_get_symtab_upper_bound
3974 #define _bfd_xcoff_canonicalize_symtab coff_canonicalize_symtab
3975 #define _bfd_xcoff_make_empty_symbol coff_make_empty_symbol
3976 #define _bfd_xcoff_print_symbol coff_print_symbol
3977 #define _bfd_xcoff_get_symbol_info coff_get_symbol_info
3978 #define _bfd_xcoff_get_symbol_version_string \
3979 _bfd_nosymbols_get_symbol_version_string
3980 #define _bfd_xcoff_bfd_is_local_label_name _bfd_xcoff_is_local_label_name
3981 #define _bfd_xcoff_bfd_is_target_special_symbol \
3982 coff_bfd_is_target_special_symbol
3983 #define _bfd_xcoff_get_lineno coff_get_lineno
3984 #define _bfd_xcoff_find_nearest_line coff_find_nearest_line
3985 #define _bfd_xcoff_find_line coff_find_line
3986 #define _bfd_xcoff_find_inliner_info coff_find_inliner_info
3987 #define _bfd_xcoff_bfd_make_debug_symbol coff_bfd_make_debug_symbol
3988 #define _bfd_xcoff_read_minisymbols _bfd_generic_read_minisymbols
3989 #define _bfd_xcoff_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
3991 /* For reloc entry points. */
3992 #define _bfd_xcoff_get_reloc_upper_bound coff_get_reloc_upper_bound
3993 #define _bfd_xcoff_canonicalize_reloc coff_canonicalize_reloc
3994 #define _bfd_xcoff_bfd_reloc_type_lookup _bfd_xcoff_reloc_type_lookup
3995 #define _bfd_xcoff_bfd_reloc_name_lookup _bfd_xcoff_reloc_name_lookup
3997 /* For link entry points. */
3998 #define _bfd_xcoff_bfd_get_relocated_section_contents \
3999 bfd_generic_get_relocated_section_contents
4000 #define _bfd_xcoff_bfd_relax_section bfd_generic_relax_section
4001 #define _bfd_xcoff_bfd_link_hash_table_free _bfd_generic_link_hash_table_free
4002 #define _bfd_xcoff_bfd_link_just_syms _bfd_generic_link_just_syms
4003 #define _bfd_xcoff_bfd_copy_link_hash_symbol_type \
4004 _bfd_generic_copy_link_hash_symbol_type
4005 #define _bfd_xcoff_bfd_link_split_section _bfd_generic_link_split_section
4006 #define _bfd_xcoff_bfd_gc_sections bfd_generic_gc_sections
4007 #define _bfd_xcoff_bfd_lookup_section_flags bfd_generic_lookup_section_flags
4008 #define _bfd_xcoff_bfd_merge_sections bfd_generic_merge_sections
4009 #define _bfd_xcoff_bfd_is_group_section bfd_generic_is_group_section
4010 #define _bfd_xcoff_bfd_discard_group bfd_generic_discard_group
4011 #define _bfd_xcoff_section_already_linked _bfd_generic_section_already_linked
4012 #define _bfd_xcoff_bfd_define_common_symbol _bfd_xcoff_define_common_symbol
4013 #define _bfd_xcoff_bfd_link_check_relocs _bfd_generic_link_check_relocs
4015 /* For dynamic symbols and relocs entry points. */
4016 #define _bfd_xcoff_get_synthetic_symtab _bfd_nodynamic_get_synthetic_symtab
4018 static const struct xcoff_backend_data_rec bfd_xcoff_backend_data
=
4020 { /* COFF backend, defined in libcoff.h. */
4021 _bfd_xcoff_swap_aux_in
,
4022 _bfd_xcoff_swap_sym_in
,
4023 coff_swap_lineno_in
,
4024 _bfd_xcoff_swap_aux_out
,
4025 _bfd_xcoff_swap_sym_out
,
4026 coff_swap_lineno_out
,
4027 xcoff_swap_reloc_out
,
4028 coff_swap_filehdr_out
,
4029 coff_swap_aouthdr_out
,
4030 coff_swap_scnhdr_out
,
4039 TRUE
, /* _bfd_coff_long_filenames */
4040 XCOFF_NO_LONG_SECTION_NAMES
, /* _bfd_coff_long_section_names */
4041 3, /* _bfd_coff_default_section_alignment_power */
4042 FALSE
, /* _bfd_coff_force_symnames_in_strings */
4043 2, /* _bfd_coff_debug_string_prefix_length */
4044 32768, /* _bfd_coff_max_nscns */
4045 coff_swap_filehdr_in
,
4046 coff_swap_aouthdr_in
,
4047 coff_swap_scnhdr_in
,
4048 xcoff_swap_reloc_in
,
4049 coff_bad_format_hook
,
4050 coff_set_arch_mach_hook
,
4053 coff_set_alignment_hook
,
4054 coff_slurp_symbol_table
,
4055 symname_in_debug_hook
,
4056 coff_pointerize_aux_hook
,
4058 dummy_reloc16_extra_cases
,
4059 dummy_reloc16_estimate
,
4060 NULL
, /* bfd_coff_sym_is_global */
4061 coff_compute_section_file_positions
,
4062 NULL
, /* _bfd_coff_start_final_link */
4063 xcoff_ppc_relocate_section
,
4064 coff_rtype_to_howto
,
4065 NULL
, /* _bfd_coff_adjust_symndx */
4066 _bfd_generic_link_add_one_symbol
,
4067 coff_link_output_has_begun
,
4068 coff_final_link_postscript
,
4069 NULL
/* print_pdata. */
4072 0x01DF, /* magic number */
4076 /* Function pointers to xcoff specific swap routines. */
4077 xcoff_swap_ldhdr_in
,
4078 xcoff_swap_ldhdr_out
,
4079 xcoff_swap_ldsym_in
,
4080 xcoff_swap_ldsym_out
,
4081 xcoff_swap_ldrel_in
,
4082 xcoff_swap_ldrel_out
,
4088 12, /* _xcoff_function_descriptor_size */
4092 1, /* _xcoff_ldhdr_version */
4094 _bfd_xcoff_put_symbol_name
,
4095 _bfd_xcoff_put_ldsymbol_name
,
4096 &xcoff_dynamic_reloc
,
4097 xcoff_create_csect_from_smclas
,
4099 /* Lineno and reloc count overflow. */
4100 xcoff_is_lineno_count_overflow
,
4101 xcoff_is_reloc_count_overflow
,
4103 xcoff_loader_symbol_offset
,
4104 xcoff_loader_reloc_offset
,
4107 &xcoff_glink_code
[0],
4108 36, /* _xcoff_glink_size */
4111 64, /* _xcoff_rtinit_size */
4112 xcoff_generate_rtinit
,
4115 /* The transfer vector that leads the outside world to all of the above. */
4116 const bfd_target rs6000_xcoff_vec
=
4119 bfd_target_xcoff_flavour
,
4120 BFD_ENDIAN_BIG
, /* data byte order is big */
4121 BFD_ENDIAN_BIG
, /* header byte order is big */
4123 (HAS_RELOC
| EXEC_P
| HAS_LINENO
| HAS_DEBUG
| DYNAMIC
4124 | HAS_SYMS
| HAS_LOCALS
| WP_TEXT
),
4126 SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
| SEC_CODE
| SEC_DATA
,
4127 0, /* leading char */
4128 '/', /* ar_pad_char */
4129 15, /* ar_max_namelen */
4130 0, /* match priority. */
4154 { /* bfd_check_format */
4157 _bfd_xcoff_archive_p
,
4161 { /* bfd_set_format */
4164 _bfd_generic_mkarchive
,
4168 {/* bfd_write_contents */
4170 coff_write_object_contents
,
4171 _bfd_xcoff_write_archive_contents
,
4175 BFD_JUMP_TABLE_GENERIC (_bfd_xcoff
),
4176 BFD_JUMP_TABLE_COPY (_bfd_xcoff
),
4177 BFD_JUMP_TABLE_CORE (coff
),
4178 BFD_JUMP_TABLE_ARCHIVE (_bfd_xcoff
),
4179 BFD_JUMP_TABLE_SYMBOLS (_bfd_xcoff
),
4180 BFD_JUMP_TABLE_RELOCS (_bfd_xcoff
),
4181 BFD_JUMP_TABLE_WRITE (coff
),
4182 BFD_JUMP_TABLE_LINK (_bfd_xcoff
),
4183 BFD_JUMP_TABLE_DYNAMIC (_bfd_xcoff
),
4185 /* Opposite endian version, none exists */
4188 & bfd_xcoff_backend_data
,
4191 /* xcoff-powermac target
4193 Only difference between this target and the rs6000 target is the
4194 the default architecture and machine type used in coffcode.h
4196 PowerPC Macs use the same magic numbers as RS/6000
4197 (because that's how they were bootstrapped originally),
4198 but they are always PowerPC architecture. */
4199 static const struct xcoff_backend_data_rec bfd_pmac_xcoff_backend_data
=
4201 { /* COFF backend, defined in libcoff.h. */
4202 _bfd_xcoff_swap_aux_in
,
4203 _bfd_xcoff_swap_sym_in
,
4204 coff_swap_lineno_in
,
4205 _bfd_xcoff_swap_aux_out
,
4206 _bfd_xcoff_swap_sym_out
,
4207 coff_swap_lineno_out
,
4208 xcoff_swap_reloc_out
,
4209 coff_swap_filehdr_out
,
4210 coff_swap_aouthdr_out
,
4211 coff_swap_scnhdr_out
,
4220 TRUE
, /* _bfd_coff_long_filenames */
4221 XCOFF_NO_LONG_SECTION_NAMES
, /* _bfd_coff_long_section_names */
4222 3, /* _bfd_coff_default_section_alignment_power */
4223 FALSE
, /* _bfd_coff_force_symnames_in_strings */
4224 2, /* _bfd_coff_debug_string_prefix_length */
4225 32768, /* _bfd_coff_max_nscns */
4226 coff_swap_filehdr_in
,
4227 coff_swap_aouthdr_in
,
4228 coff_swap_scnhdr_in
,
4229 xcoff_swap_reloc_in
,
4230 coff_bad_format_hook
,
4231 coff_set_arch_mach_hook
,
4234 coff_set_alignment_hook
,
4235 coff_slurp_symbol_table
,
4236 symname_in_debug_hook
,
4237 coff_pointerize_aux_hook
,
4239 dummy_reloc16_extra_cases
,
4240 dummy_reloc16_estimate
,
4241 NULL
, /* bfd_coff_sym_is_global */
4242 coff_compute_section_file_positions
,
4243 NULL
, /* _bfd_coff_start_final_link */
4244 xcoff_ppc_relocate_section
,
4245 coff_rtype_to_howto
,
4246 NULL
, /* _bfd_coff_adjust_symndx */
4247 _bfd_generic_link_add_one_symbol
,
4248 coff_link_output_has_begun
,
4249 coff_final_link_postscript
,
4250 NULL
/* print_pdata. */
4253 0x01DF, /* magic number */
4257 /* Function pointers to xcoff specific swap routines. */
4258 xcoff_swap_ldhdr_in
,
4259 xcoff_swap_ldhdr_out
,
4260 xcoff_swap_ldsym_in
,
4261 xcoff_swap_ldsym_out
,
4262 xcoff_swap_ldrel_in
,
4263 xcoff_swap_ldrel_out
,
4269 12, /* _xcoff_function_descriptor_size */
4273 1, /* _xcoff_ldhdr_version */
4275 _bfd_xcoff_put_symbol_name
,
4276 _bfd_xcoff_put_ldsymbol_name
,
4277 &xcoff_dynamic_reloc
,
4278 xcoff_create_csect_from_smclas
,
4280 /* Lineno and reloc count overflow. */
4281 xcoff_is_lineno_count_overflow
,
4282 xcoff_is_reloc_count_overflow
,
4284 xcoff_loader_symbol_offset
,
4285 xcoff_loader_reloc_offset
,
4288 &xcoff_glink_code
[0],
4289 36, /* _xcoff_glink_size */
4292 0, /* _xcoff_rtinit_size */
4293 xcoff_generate_rtinit
,
4296 /* The transfer vector that leads the outside world to all of the above. */
4297 const bfd_target powerpc_xcoff_vec
=
4300 bfd_target_xcoff_flavour
,
4301 BFD_ENDIAN_BIG
, /* data byte order is big */
4302 BFD_ENDIAN_BIG
, /* header byte order is big */
4304 (HAS_RELOC
| EXEC_P
| HAS_LINENO
| HAS_DEBUG
| DYNAMIC
4305 | HAS_SYMS
| HAS_LOCALS
| WP_TEXT
),
4307 SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
| SEC_CODE
| SEC_DATA
,
4308 0, /* leading char */
4309 '/', /* ar_pad_char */
4310 15, /* ar_max_namelen */
4311 0, /* match priority. */
4335 { /* bfd_check_format */
4338 _bfd_xcoff_archive_p
,
4342 { /* bfd_set_format */
4345 _bfd_generic_mkarchive
,
4349 {/* bfd_write_contents */
4351 coff_write_object_contents
,
4352 _bfd_xcoff_write_archive_contents
,
4356 BFD_JUMP_TABLE_GENERIC (_bfd_xcoff
),
4357 BFD_JUMP_TABLE_COPY (_bfd_xcoff
),
4358 BFD_JUMP_TABLE_CORE (coff
),
4359 BFD_JUMP_TABLE_ARCHIVE (_bfd_xcoff
),
4360 BFD_JUMP_TABLE_SYMBOLS (_bfd_xcoff
),
4361 BFD_JUMP_TABLE_RELOCS (_bfd_xcoff
),
4362 BFD_JUMP_TABLE_WRITE (coff
),
4363 BFD_JUMP_TABLE_LINK (_bfd_xcoff
),
4364 BFD_JUMP_TABLE_DYNAMIC (_bfd_xcoff
),
4366 /* Opposite endian version, none exists */
4369 & bfd_pmac_xcoff_backend_data
,