1 /* BFD back-end for IBM RS/6000 "XCOFF" files.
2 Copyright 1990-1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
4 Written by Metin G. Ozisik, Mimi Phuong-Thao Vo, and John Gilmore.
5 Archive support from Damon A. Permezel.
6 Contributed by IBM Corporation and Cygnus Support.
8 This file is part of BFD, the Binary File Descriptor library.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
23 MA 02110-1301, USA. */
29 #include "coff/internal.h"
30 #include "coff/xcoff.h"
31 #include "coff/rs6000.h"
35 extern bfd_boolean _bfd_xcoff_mkobject
37 extern bfd_boolean _bfd_xcoff_copy_private_bfd_data
38 PARAMS ((bfd
*, bfd
*));
39 extern bfd_boolean _bfd_xcoff_is_local_label_name
40 PARAMS ((bfd
*, const char *));
41 extern reloc_howto_type
*_bfd_xcoff_reloc_type_lookup
42 PARAMS ((bfd
*, bfd_reloc_code_real_type
));
43 extern bfd_boolean _bfd_xcoff_slurp_armap
45 extern const bfd_target
*_bfd_xcoff_archive_p
47 extern PTR _bfd_xcoff_read_ar_hdr
49 extern bfd
*_bfd_xcoff_openr_next_archived_file
50 PARAMS ((bfd
*, bfd
*));
51 extern int _bfd_xcoff_stat_arch_elt
52 PARAMS ((bfd
*, struct stat
*));
53 extern bfd_boolean _bfd_xcoff_write_armap
54 PARAMS ((bfd
*, unsigned int, struct orl
*, unsigned int, int));
55 extern bfd_boolean _bfd_xcoff_write_archive_contents
57 extern int _bfd_xcoff_sizeof_headers
58 PARAMS ((bfd
*, struct bfd_link_info
*));
59 extern void _bfd_xcoff_swap_sym_in
60 PARAMS ((bfd
*, PTR
, PTR
));
61 extern unsigned int _bfd_xcoff_swap_sym_out
62 PARAMS ((bfd
*, PTR
, PTR
));
63 extern void _bfd_xcoff_swap_aux_in
64 PARAMS ((bfd
*, PTR
, int, int, int, int, PTR
));
65 extern unsigned int _bfd_xcoff_swap_aux_out
66 PARAMS ((bfd
*, PTR
, int, int, int, int, PTR
));
67 static void xcoff_swap_reloc_in
68 PARAMS ((bfd
*, PTR
, PTR
));
69 static unsigned int xcoff_swap_reloc_out
70 PARAMS ((bfd
*, PTR
, PTR
));
72 /* Forward declare xcoff_rtype2howto for coffcode.h macro. */
73 void xcoff_rtype2howto
74 PARAMS ((arelent
*, struct internal_reloc
*));
76 /* coffcode.h needs these to be defined. */
77 #define RS6000COFF_C 1
79 #define SELECT_RELOC(internal, howto) \
81 internal.r_type = howto->type; \
83 ((howto->complain_on_overflow == complain_overflow_signed \
86 | (howto->bitsize - 1)); \
89 #define COFF_DEFAULT_SECTION_ALIGNMENT_POWER (3)
90 #define COFF_LONG_FILENAMES
91 #define NO_COFF_SYMBOLS
92 #define RTYPE2HOWTO(cache_ptr, dst) xcoff_rtype2howto (cache_ptr, dst)
93 #define coff_mkobject _bfd_xcoff_mkobject
94 #define coff_bfd_copy_private_bfd_data _bfd_xcoff_copy_private_bfd_data
95 #define coff_bfd_is_local_label_name _bfd_xcoff_is_local_label_name
96 #define coff_bfd_reloc_type_lookup _bfd_xcoff_reloc_type_lookup
97 #define coff_bfd_reloc_name_lookup _bfd_xcoff_reloc_name_lookup
99 extern const bfd_target
* rs6000coff_core_p
100 PARAMS ((bfd
*abfd
));
101 extern bfd_boolean rs6000coff_core_file_matches_executable_p
102 PARAMS ((bfd
*cbfd
, bfd
*ebfd
));
103 extern char *rs6000coff_core_file_failing_command
104 PARAMS ((bfd
*abfd
));
105 extern int rs6000coff_core_file_failing_signal
106 PARAMS ((bfd
*abfd
));
107 #define CORE_FILE_P rs6000coff_core_p
108 #define coff_core_file_failing_command \
109 rs6000coff_core_file_failing_command
110 #define coff_core_file_failing_signal \
111 rs6000coff_core_file_failing_signal
112 #define coff_core_file_matches_executable_p \
113 rs6000coff_core_file_matches_executable_p
115 #define CORE_FILE_P _bfd_dummy_target
116 #define coff_core_file_failing_command \
117 _bfd_nocore_core_file_failing_command
118 #define coff_core_file_failing_signal \
119 _bfd_nocore_core_file_failing_signal
120 #define coff_core_file_matches_executable_p \
121 _bfd_nocore_core_file_matches_executable_p
123 #define coff_SWAP_sym_in _bfd_xcoff_swap_sym_in
124 #define coff_SWAP_sym_out _bfd_xcoff_swap_sym_out
125 #define coff_SWAP_aux_in _bfd_xcoff_swap_aux_in
126 #define coff_SWAP_aux_out _bfd_xcoff_swap_aux_out
127 #define coff_swap_reloc_in xcoff_swap_reloc_in
128 #define coff_swap_reloc_out xcoff_swap_reloc_out
129 #define NO_COFF_RELOCS
131 #include "coffcode.h"
133 /* The main body of code is in coffcode.h. */
135 static const char *normalize_filename
137 static bfd_boolean xcoff_write_armap_old
138 PARAMS ((bfd
*, unsigned int, struct orl
*, unsigned int, int));
139 static bfd_boolean xcoff_write_armap_big
140 PARAMS ((bfd
*, unsigned int, struct orl
*, unsigned int, int));
141 static bfd_boolean xcoff_write_archive_contents_old
143 static bfd_boolean xcoff_write_archive_contents_big
145 static void xcoff_swap_ldhdr_in
146 PARAMS ((bfd
*, const PTR
, struct internal_ldhdr
*));
147 static void xcoff_swap_ldhdr_out
148 PARAMS ((bfd
*, const struct internal_ldhdr
*, PTR
));
149 static void xcoff_swap_ldsym_in
150 PARAMS ((bfd
*, const PTR
, struct internal_ldsym
*));
151 static void xcoff_swap_ldsym_out
152 PARAMS ((bfd
*, const struct internal_ldsym
*, PTR
));
153 static void xcoff_swap_ldrel_in
154 PARAMS ((bfd
*, const PTR
, struct internal_ldrel
*));
155 static void xcoff_swap_ldrel_out
156 PARAMS ((bfd
*, const struct internal_ldrel
*, PTR
));
157 static bfd_boolean xcoff_ppc_relocate_section
158 PARAMS ((bfd
*, struct bfd_link_info
*, bfd
*, asection
*, bfd_byte
*,
159 struct internal_reloc
*, struct internal_syment
*, asection
**));
160 static bfd_boolean _bfd_xcoff_put_ldsymbol_name
161 PARAMS ((bfd
*, struct xcoff_loader_info
*, struct internal_ldsym
*,
163 static asection
*xcoff_create_csect_from_smclas
164 PARAMS ((bfd
*, union internal_auxent
*, const char *));
165 static bfd_boolean xcoff_is_lineno_count_overflow
166 PARAMS ((bfd
*, bfd_vma
));
167 static bfd_boolean xcoff_is_reloc_count_overflow
168 PARAMS ((bfd
*, bfd_vma
));
169 static bfd_vma xcoff_loader_symbol_offset
170 PARAMS ((bfd
*, struct internal_ldhdr
*));
171 static bfd_vma xcoff_loader_reloc_offset
172 PARAMS ((bfd
*, struct internal_ldhdr
*));
173 static bfd_boolean xcoff_generate_rtinit
174 PARAMS ((bfd
*, const char *, const char *, bfd_boolean
));
175 static bfd_boolean do_pad
176 PARAMS ((bfd
*, unsigned int));
177 static bfd_boolean do_copy
178 PARAMS ((bfd
*, bfd
*));
179 static bfd_boolean do_shared_object_padding
180 PARAMS ((bfd
*, bfd
*, file_ptr
*, int));
182 /* Relocation functions */
183 static bfd_boolean xcoff_reloc_type_br
184 PARAMS ((XCOFF_RELOC_FUNCTION_ARGS
));
186 static bfd_boolean xcoff_complain_overflow_dont_func
187 PARAMS ((XCOFF_COMPLAIN_FUNCTION_ARGS
));
188 static bfd_boolean xcoff_complain_overflow_bitfield_func
189 PARAMS ((XCOFF_COMPLAIN_FUNCTION_ARGS
));
190 static bfd_boolean xcoff_complain_overflow_signed_func
191 PARAMS ((XCOFF_COMPLAIN_FUNCTION_ARGS
));
192 static bfd_boolean xcoff_complain_overflow_unsigned_func
193 PARAMS ((XCOFF_COMPLAIN_FUNCTION_ARGS
));
195 bfd_boolean (*xcoff_calculate_relocation
[XCOFF_MAX_CALCULATE_RELOCATION
])
196 PARAMS ((XCOFF_RELOC_FUNCTION_ARGS
)) =
198 xcoff_reloc_type_pos
, /* R_POS (0x00) */
199 xcoff_reloc_type_neg
, /* R_NEG (0x01) */
200 xcoff_reloc_type_rel
, /* R_REL (0x02) */
201 xcoff_reloc_type_toc
, /* R_TOC (0x03) */
202 xcoff_reloc_type_fail
, /* R_RTB (0x04) */
203 xcoff_reloc_type_toc
, /* R_GL (0x05) */
204 xcoff_reloc_type_toc
, /* R_TCL (0x06) */
205 xcoff_reloc_type_fail
, /* (0x07) */
206 xcoff_reloc_type_ba
, /* R_BA (0x08) */
207 xcoff_reloc_type_fail
, /* (0x09) */
208 xcoff_reloc_type_br
, /* R_BR (0x0a) */
209 xcoff_reloc_type_fail
, /* (0x0b) */
210 xcoff_reloc_type_pos
, /* R_RL (0x0c) */
211 xcoff_reloc_type_pos
, /* R_RLA (0x0d) */
212 xcoff_reloc_type_fail
, /* (0x0e) */
213 xcoff_reloc_type_noop
, /* R_REF (0x0f) */
214 xcoff_reloc_type_fail
, /* (0x10) */
215 xcoff_reloc_type_fail
, /* (0x11) */
216 xcoff_reloc_type_toc
, /* R_TRL (0x12) */
217 xcoff_reloc_type_toc
, /* R_TRLA (0x13) */
218 xcoff_reloc_type_fail
, /* R_RRTBI (0x14) */
219 xcoff_reloc_type_fail
, /* R_RRTBA (0x15) */
220 xcoff_reloc_type_ba
, /* R_CAI (0x16) */
221 xcoff_reloc_type_crel
, /* R_CREL (0x17) */
222 xcoff_reloc_type_ba
, /* R_RBA (0x18) */
223 xcoff_reloc_type_ba
, /* R_RBAC (0x19) */
224 xcoff_reloc_type_br
, /* R_RBR (0x1a) */
225 xcoff_reloc_type_ba
, /* R_RBRC (0x1b) */
228 bfd_boolean (*xcoff_complain_overflow
[XCOFF_MAX_COMPLAIN_OVERFLOW
])
229 PARAMS ((XCOFF_COMPLAIN_FUNCTION_ARGS
)) =
231 xcoff_complain_overflow_dont_func
,
232 xcoff_complain_overflow_bitfield_func
,
233 xcoff_complain_overflow_signed_func
,
234 xcoff_complain_overflow_unsigned_func
,
237 /* We use our own tdata type. Its first field is the COFF tdata type,
238 so the COFF routines are compatible. */
241 _bfd_xcoff_mkobject (abfd
)
244 coff_data_type
*coff
;
245 bfd_size_type amt
= sizeof (struct xcoff_tdata
);
247 abfd
->tdata
.xcoff_obj_data
= (struct xcoff_tdata
*) bfd_zalloc (abfd
, amt
);
248 if (abfd
->tdata
.xcoff_obj_data
== NULL
)
250 coff
= coff_data (abfd
);
251 coff
->symbols
= (coff_symbol_type
*) NULL
;
252 coff
->conversion_table
= (unsigned int *) NULL
;
253 coff
->raw_syments
= (struct coff_ptr_struct
*) NULL
;
256 xcoff_data (abfd
)->modtype
= ('1' << 8) | 'L';
258 /* We set cputype to -1 to indicate that it has not been
260 xcoff_data (abfd
)->cputype
= -1;
262 xcoff_data (abfd
)->csects
= NULL
;
263 xcoff_data (abfd
)->debug_indices
= NULL
;
265 /* text section alignment is different than the default */
266 bfd_xcoff_text_align_power (abfd
) = 2;
271 /* Copy XCOFF data from one BFD to another. */
274 _bfd_xcoff_copy_private_bfd_data (ibfd
, obfd
)
278 struct xcoff_tdata
*ix
, *ox
;
281 if (ibfd
->xvec
!= obfd
->xvec
)
283 ix
= xcoff_data (ibfd
);
284 ox
= xcoff_data (obfd
);
285 ox
->full_aouthdr
= ix
->full_aouthdr
;
291 sec
= coff_section_from_bfd_index (ibfd
, ix
->sntoc
);
295 ox
->sntoc
= sec
->output_section
->target_index
;
297 if (ix
->snentry
== 0)
301 sec
= coff_section_from_bfd_index (ibfd
, ix
->snentry
);
305 ox
->snentry
= sec
->output_section
->target_index
;
307 bfd_xcoff_text_align_power (obfd
) = bfd_xcoff_text_align_power (ibfd
);
308 bfd_xcoff_data_align_power (obfd
) = bfd_xcoff_data_align_power (ibfd
);
309 ox
->modtype
= ix
->modtype
;
310 ox
->cputype
= ix
->cputype
;
311 ox
->maxdata
= ix
->maxdata
;
312 ox
->maxstack
= ix
->maxstack
;
316 /* I don't think XCOFF really has a notion of local labels based on
317 name. This will mean that ld -X doesn't actually strip anything.
318 The AIX native linker does not have a -X option, and it ignores the
322 _bfd_xcoff_is_local_label_name (abfd
, name
)
323 bfd
*abfd ATTRIBUTE_UNUSED
;
324 const char *name ATTRIBUTE_UNUSED
;
330 _bfd_xcoff_swap_sym_in (abfd
, ext1
, in1
)
335 SYMENT
*ext
= (SYMENT
*)ext1
;
336 struct internal_syment
* in
= (struct internal_syment
*)in1
;
338 if (ext
->e
.e_name
[0] != 0)
340 memcpy (in
->_n
._n_name
, ext
->e
.e_name
, SYMNMLEN
);
344 in
->_n
._n_n
._n_zeroes
= 0;
345 in
->_n
._n_n
._n_offset
= H_GET_32 (abfd
, ext
->e
.e
.e_offset
);
348 in
->n_value
= H_GET_32 (abfd
, ext
->e_value
);
349 in
->n_scnum
= H_GET_16 (abfd
, ext
->e_scnum
);
350 in
->n_type
= H_GET_16 (abfd
, ext
->e_type
);
351 in
->n_sclass
= H_GET_8 (abfd
, ext
->e_sclass
);
352 in
->n_numaux
= H_GET_8 (abfd
, ext
->e_numaux
);
356 _bfd_xcoff_swap_sym_out (abfd
, inp
, extp
)
361 struct internal_syment
*in
= (struct internal_syment
*)inp
;
362 SYMENT
*ext
=(SYMENT
*)extp
;
364 if (in
->_n
._n_name
[0] != 0)
366 memcpy (ext
->e
.e_name
, in
->_n
._n_name
, SYMNMLEN
);
370 H_PUT_32 (abfd
, 0, ext
->e
.e
.e_zeroes
);
371 H_PUT_32 (abfd
, in
->_n
._n_n
._n_offset
, ext
->e
.e
.e_offset
);
374 H_PUT_32 (abfd
, in
->n_value
, ext
->e_value
);
375 H_PUT_16 (abfd
, in
->n_scnum
, ext
->e_scnum
);
376 H_PUT_16 (abfd
, in
->n_type
, ext
->e_type
);
377 H_PUT_8 (abfd
, in
->n_sclass
, ext
->e_sclass
);
378 H_PUT_8 (abfd
, in
->n_numaux
, ext
->e_numaux
);
379 return bfd_coff_symesz (abfd
);
383 _bfd_xcoff_swap_aux_in (abfd
, ext1
, type
, class, indx
, numaux
, in1
)
392 AUXENT
* ext
= (AUXENT
*)ext1
;
393 union internal_auxent
*in
= (union internal_auxent
*)in1
;
398 if (ext
->x_file
.x_fname
[0] == 0)
400 in
->x_file
.x_n
.x_zeroes
= 0;
401 in
->x_file
.x_n
.x_offset
=
402 H_GET_32 (abfd
, ext
->x_file
.x_n
.x_offset
);
409 memcpy (in
->x_file
.x_fname
, ext
->x_file
.x_fname
,
410 numaux
* sizeof (AUXENT
));
414 memcpy (in
->x_file
.x_fname
, ext
->x_file
.x_fname
, FILNMLEN
);
419 /* RS/6000 "csect" auxents */
422 if (indx
+ 1 == numaux
)
424 in
->x_csect
.x_scnlen
.l
= H_GET_32 (abfd
, ext
->x_csect
.x_scnlen
);
425 in
->x_csect
.x_parmhash
= H_GET_32 (abfd
, ext
->x_csect
.x_parmhash
);
426 in
->x_csect
.x_snhash
= H_GET_16 (abfd
, ext
->x_csect
.x_snhash
);
427 /* We don't have to hack bitfields in x_smtyp because it's
428 defined by shifts-and-ands, which are equivalent on all
430 in
->x_csect
.x_smtyp
= H_GET_8 (abfd
, ext
->x_csect
.x_smtyp
);
431 in
->x_csect
.x_smclas
= H_GET_8 (abfd
, ext
->x_csect
.x_smclas
);
432 in
->x_csect
.x_stab
= H_GET_32 (abfd
, ext
->x_csect
.x_stab
);
433 in
->x_csect
.x_snstab
= H_GET_16 (abfd
, ext
->x_csect
.x_snstab
);
443 in
->x_scn
.x_scnlen
= H_GET_32 (abfd
, ext
->x_scn
.x_scnlen
);
444 in
->x_scn
.x_nreloc
= H_GET_16 (abfd
, ext
->x_scn
.x_nreloc
);
445 in
->x_scn
.x_nlinno
= H_GET_16 (abfd
, ext
->x_scn
.x_nlinno
);
446 /* PE defines some extra fields; we zero them out for
448 in
->x_scn
.x_checksum
= 0;
449 in
->x_scn
.x_associated
= 0;
450 in
->x_scn
.x_comdat
= 0;
457 in
->x_sym
.x_tagndx
.l
= H_GET_32 (abfd
, ext
->x_sym
.x_tagndx
);
458 in
->x_sym
.x_tvndx
= H_GET_16 (abfd
, ext
->x_sym
.x_tvndx
);
460 if (class == C_BLOCK
|| class == C_FCN
|| ISFCN (type
) || ISTAG (class))
462 in
->x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
=
463 H_GET_32 (abfd
, ext
->x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
);
464 in
->x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
=
465 H_GET_32 (abfd
, ext
->x_sym
.x_fcnary
.x_fcn
.x_endndx
);
469 in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[0] =
470 H_GET_16 (abfd
, ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[0]);
471 in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[1] =
472 H_GET_16 (abfd
, ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[1]);
473 in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[2] =
474 H_GET_16 (abfd
, ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[2]);
475 in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[3] =
476 H_GET_16 (abfd
, ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[3]);
481 in
->x_sym
.x_misc
.x_fsize
= H_GET_32 (abfd
, ext
->x_sym
.x_misc
.x_fsize
);
485 in
->x_sym
.x_misc
.x_lnsz
.x_lnno
=
486 H_GET_16 (abfd
, ext
->x_sym
.x_misc
.x_lnsz
.x_lnno
);
487 in
->x_sym
.x_misc
.x_lnsz
.x_size
=
488 H_GET_16 (abfd
, ext
->x_sym
.x_misc
.x_lnsz
.x_size
);
492 /* The semicolon is because MSVC doesn't like labels at
497 unsigned int _bfd_xcoff_swap_aux_out
498 PARAMS ((bfd
*, PTR
, int, int, int, int, PTR
));
501 _bfd_xcoff_swap_aux_out (abfd
, inp
, type
, class, indx
, numaux
, extp
)
506 int indx ATTRIBUTE_UNUSED
;
507 int numaux ATTRIBUTE_UNUSED
;
510 union internal_auxent
*in
= (union internal_auxent
*)inp
;
511 AUXENT
*ext
= (AUXENT
*)extp
;
513 memset ((PTR
)ext
, 0, bfd_coff_auxesz (abfd
));
517 if (in
->x_file
.x_fname
[0] == 0)
519 H_PUT_32 (abfd
, 0, ext
->x_file
.x_n
.x_zeroes
);
520 H_PUT_32 (abfd
, in
->x_file
.x_n
.x_offset
, ext
->x_file
.x_n
.x_offset
);
524 memcpy (ext
->x_file
.x_fname
, in
->x_file
.x_fname
, FILNMLEN
);
528 /* RS/6000 "csect" auxents */
531 if (indx
+ 1 == numaux
)
533 H_PUT_32 (abfd
, in
->x_csect
.x_scnlen
.l
, ext
->x_csect
.x_scnlen
);
534 H_PUT_32 (abfd
, in
->x_csect
.x_parmhash
, ext
->x_csect
.x_parmhash
);
535 H_PUT_16 (abfd
, in
->x_csect
.x_snhash
, ext
->x_csect
.x_snhash
);
536 /* We don't have to hack bitfields in x_smtyp because it's
537 defined by shifts-and-ands, which are equivalent on all
539 H_PUT_8 (abfd
, in
->x_csect
.x_smtyp
, ext
->x_csect
.x_smtyp
);
540 H_PUT_8 (abfd
, in
->x_csect
.x_smclas
, ext
->x_csect
.x_smclas
);
541 H_PUT_32 (abfd
, in
->x_csect
.x_stab
, ext
->x_csect
.x_stab
);
542 H_PUT_16 (abfd
, in
->x_csect
.x_snstab
, ext
->x_csect
.x_snstab
);
552 H_PUT_32 (abfd
, in
->x_scn
.x_scnlen
, ext
->x_scn
.x_scnlen
);
553 H_PUT_16 (abfd
, in
->x_scn
.x_nreloc
, ext
->x_scn
.x_nreloc
);
554 H_PUT_16 (abfd
, in
->x_scn
.x_nlinno
, ext
->x_scn
.x_nlinno
);
560 H_PUT_32 (abfd
, in
->x_sym
.x_tagndx
.l
, ext
->x_sym
.x_tagndx
);
561 H_PUT_16 (abfd
, in
->x_sym
.x_tvndx
, ext
->x_sym
.x_tvndx
);
563 if (class == C_BLOCK
|| class == C_FCN
|| ISFCN (type
) || ISTAG (class))
565 H_PUT_32 (abfd
, in
->x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
,
566 ext
->x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
);
567 H_PUT_32 (abfd
, in
->x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
,
568 ext
->x_sym
.x_fcnary
.x_fcn
.x_endndx
);
572 H_PUT_16 (abfd
, in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[0],
573 ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[0]);
574 H_PUT_16 (abfd
, in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[1],
575 ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[1]);
576 H_PUT_16 (abfd
, in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[2],
577 ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[2]);
578 H_PUT_16 (abfd
, in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[3],
579 ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[3]);
583 H_PUT_32 (abfd
, in
->x_sym
.x_misc
.x_fsize
, ext
->x_sym
.x_misc
.x_fsize
);
586 H_PUT_16 (abfd
, in
->x_sym
.x_misc
.x_lnsz
.x_lnno
,
587 ext
->x_sym
.x_misc
.x_lnsz
.x_lnno
);
588 H_PUT_16 (abfd
, in
->x_sym
.x_misc
.x_lnsz
.x_size
,
589 ext
->x_sym
.x_misc
.x_lnsz
.x_size
);
593 return bfd_coff_auxesz (abfd
);
598 /* The XCOFF reloc table. Actually, XCOFF relocations specify the
599 bitsize and whether they are signed or not, along with a
600 conventional type. This table is for the types, which are used for
601 different algorithms for putting in the reloc. Many of these
602 relocs need special_function entries, which I have not written. */
605 reloc_howto_type xcoff_howto_table
[] =
607 /* Standard 32 bit relocation. */
608 HOWTO (R_POS
, /* type */
610 2, /* size (0 = byte, 1 = short, 2 = long) */
612 FALSE
, /* pc_relative */
614 complain_overflow_bitfield
, /* complain_on_overflow */
615 0, /* special_function */
617 TRUE
, /* partial_inplace */
618 0xffffffff, /* src_mask */
619 0xffffffff, /* dst_mask */
620 FALSE
), /* pcrel_offset */
622 /* 32 bit relocation, but store negative value. */
623 HOWTO (R_NEG
, /* type */
625 -2, /* size (0 = byte, 1 = short, 2 = long) */
627 FALSE
, /* pc_relative */
629 complain_overflow_bitfield
, /* complain_on_overflow */
630 0, /* special_function */
632 TRUE
, /* partial_inplace */
633 0xffffffff, /* src_mask */
634 0xffffffff, /* dst_mask */
635 FALSE
), /* pcrel_offset */
637 /* 32 bit PC relative relocation. */
638 HOWTO (R_REL
, /* type */
640 2, /* size (0 = byte, 1 = short, 2 = long) */
642 TRUE
, /* pc_relative */
644 complain_overflow_signed
, /* complain_on_overflow */
645 0, /* special_function */
647 TRUE
, /* partial_inplace */
648 0xffffffff, /* src_mask */
649 0xffffffff, /* dst_mask */
650 FALSE
), /* pcrel_offset */
652 /* 16 bit TOC relative relocation. */
653 HOWTO (R_TOC
, /* type */
655 1, /* size (0 = byte, 1 = short, 2 = long) */
657 FALSE
, /* pc_relative */
659 complain_overflow_bitfield
, /* complain_on_overflow */
660 0, /* special_function */
662 TRUE
, /* partial_inplace */
663 0xffff, /* src_mask */
664 0xffff, /* dst_mask */
665 FALSE
), /* pcrel_offset */
667 /* I don't really know what this is. */
668 HOWTO (R_RTB
, /* type */
670 2, /* size (0 = byte, 1 = short, 2 = long) */
672 FALSE
, /* pc_relative */
674 complain_overflow_bitfield
, /* complain_on_overflow */
675 0, /* special_function */
677 TRUE
, /* partial_inplace */
678 0xffffffff, /* src_mask */
679 0xffffffff, /* dst_mask */
680 FALSE
), /* pcrel_offset */
682 /* External TOC relative symbol. */
683 HOWTO (R_GL
, /* type */
685 1, /* size (0 = byte, 1 = short, 2 = long) */
687 FALSE
, /* pc_relative */
689 complain_overflow_bitfield
, /* complain_on_overflow */
690 0, /* special_function */
692 TRUE
, /* partial_inplace */
693 0xffff, /* src_mask */
694 0xffff, /* dst_mask */
695 FALSE
), /* pcrel_offset */
697 /* Local TOC relative symbol. */
698 HOWTO (R_TCL
, /* type */
700 1, /* size (0 = byte, 1 = short, 2 = long) */
702 FALSE
, /* pc_relative */
704 complain_overflow_bitfield
, /* complain_on_overflow */
705 0, /* special_function */
707 TRUE
, /* partial_inplace */
708 0xffff, /* src_mask */
709 0xffff, /* dst_mask */
710 FALSE
), /* pcrel_offset */
714 /* Non modifiable absolute branch. */
715 HOWTO (R_BA
, /* type */
717 2, /* size (0 = byte, 1 = short, 2 = long) */
719 FALSE
, /* pc_relative */
721 complain_overflow_bitfield
, /* complain_on_overflow */
722 0, /* special_function */
723 "R_BA_26", /* name */
724 TRUE
, /* partial_inplace */
725 0x03fffffc, /* src_mask */
726 0x03fffffc, /* dst_mask */
727 FALSE
), /* pcrel_offset */
731 /* Non modifiable relative branch. */
732 HOWTO (R_BR
, /* type */
734 2, /* size (0 = byte, 1 = short, 2 = long) */
736 TRUE
, /* pc_relative */
738 complain_overflow_signed
, /* complain_on_overflow */
739 0, /* special_function */
741 TRUE
, /* partial_inplace */
742 0x03fffffc, /* src_mask */
743 0x03fffffc, /* dst_mask */
744 FALSE
), /* pcrel_offset */
749 HOWTO (R_RL
, /* type */
751 1, /* size (0 = byte, 1 = short, 2 = long) */
753 FALSE
, /* pc_relative */
755 complain_overflow_bitfield
, /* complain_on_overflow */
756 0, /* special_function */
758 TRUE
, /* partial_inplace */
759 0xffff, /* src_mask */
760 0xffff, /* dst_mask */
761 FALSE
), /* pcrel_offset */
764 HOWTO (R_RLA
, /* type */
766 1, /* size (0 = byte, 1 = short, 2 = long) */
768 FALSE
, /* pc_relative */
770 complain_overflow_bitfield
, /* complain_on_overflow */
771 0, /* special_function */
773 TRUE
, /* partial_inplace */
774 0xffff, /* src_mask */
775 0xffff, /* dst_mask */
776 FALSE
), /* pcrel_offset */
780 /* Non-relocating reference. */
781 HOWTO (R_REF
, /* type */
783 2, /* size (0 = byte, 1 = short, 2 = long) */
785 FALSE
, /* pc_relative */
787 complain_overflow_dont
, /* complain_on_overflow */
788 0, /* special_function */
790 FALSE
, /* partial_inplace */
793 FALSE
), /* pcrel_offset */
798 /* TOC relative indirect load. */
799 HOWTO (R_TRL
, /* type */
801 1, /* size (0 = byte, 1 = short, 2 = long) */
803 FALSE
, /* pc_relative */
805 complain_overflow_bitfield
, /* complain_on_overflow */
806 0, /* special_function */
808 TRUE
, /* partial_inplace */
809 0xffff, /* src_mask */
810 0xffff, /* dst_mask */
811 FALSE
), /* pcrel_offset */
813 /* TOC relative load address. */
814 HOWTO (R_TRLA
, /* type */
816 1, /* size (0 = byte, 1 = short, 2 = long) */
818 FALSE
, /* pc_relative */
820 complain_overflow_bitfield
, /* complain_on_overflow */
821 0, /* special_function */
823 TRUE
, /* partial_inplace */
824 0xffff, /* src_mask */
825 0xffff, /* dst_mask */
826 FALSE
), /* pcrel_offset */
828 /* Modifiable relative branch. */
829 HOWTO (R_RRTBI
, /* type */
831 2, /* size (0 = byte, 1 = short, 2 = long) */
833 FALSE
, /* pc_relative */
835 complain_overflow_bitfield
, /* complain_on_overflow */
836 0, /* special_function */
837 "R_RRTBI", /* name */
838 TRUE
, /* partial_inplace */
839 0xffffffff, /* src_mask */
840 0xffffffff, /* dst_mask */
841 FALSE
), /* pcrel_offset */
843 /* Modifiable absolute branch. */
844 HOWTO (R_RRTBA
, /* type */
846 2, /* size (0 = byte, 1 = short, 2 = long) */
848 FALSE
, /* pc_relative */
850 complain_overflow_bitfield
, /* complain_on_overflow */
851 0, /* special_function */
852 "R_RRTBA", /* name */
853 TRUE
, /* partial_inplace */
854 0xffffffff, /* src_mask */
855 0xffffffff, /* dst_mask */
856 FALSE
), /* pcrel_offset */
858 /* Modifiable call absolute indirect. */
859 HOWTO (R_CAI
, /* type */
861 1, /* size (0 = byte, 1 = short, 2 = long) */
863 FALSE
, /* pc_relative */
865 complain_overflow_bitfield
, /* complain_on_overflow */
866 0, /* special_function */
868 TRUE
, /* partial_inplace */
869 0xffff, /* src_mask */
870 0xffff, /* dst_mask */
871 FALSE
), /* pcrel_offset */
873 /* Modifiable call relative. */
874 HOWTO (R_CREL
, /* type */
876 1, /* size (0 = byte, 1 = short, 2 = long) */
878 FALSE
, /* pc_relative */
880 complain_overflow_bitfield
, /* complain_on_overflow */
881 0, /* special_function */
883 TRUE
, /* partial_inplace */
884 0xffff, /* src_mask */
885 0xffff, /* dst_mask */
886 FALSE
), /* pcrel_offset */
888 /* Modifiable branch absolute. */
889 HOWTO (R_RBA
, /* type */
891 2, /* size (0 = byte, 1 = short, 2 = long) */
893 FALSE
, /* pc_relative */
895 complain_overflow_bitfield
, /* complain_on_overflow */
896 0, /* special_function */
898 TRUE
, /* partial_inplace */
899 0x03fffffc, /* src_mask */
900 0x03fffffc, /* dst_mask */
901 FALSE
), /* pcrel_offset */
903 /* Modifiable branch absolute. */
904 HOWTO (R_RBAC
, /* type */
906 2, /* size (0 = byte, 1 = short, 2 = long) */
908 FALSE
, /* pc_relative */
910 complain_overflow_bitfield
, /* complain_on_overflow */
911 0, /* special_function */
913 TRUE
, /* partial_inplace */
914 0xffffffff, /* src_mask */
915 0xffffffff, /* dst_mask */
916 FALSE
), /* pcrel_offset */
918 /* Modifiable branch relative. */
919 HOWTO (R_RBR
, /* type */
921 2, /* size (0 = byte, 1 = short, 2 = long) */
923 FALSE
, /* pc_relative */
925 complain_overflow_signed
, /* complain_on_overflow */
926 0, /* special_function */
927 "R_RBR_26", /* name */
928 TRUE
, /* partial_inplace */
929 0x03fffffc, /* src_mask */
930 0x03fffffc, /* dst_mask */
931 FALSE
), /* pcrel_offset */
933 /* Modifiable branch absolute. */
934 HOWTO (R_RBRC
, /* type */
936 1, /* size (0 = byte, 1 = short, 2 = long) */
938 FALSE
, /* pc_relative */
940 complain_overflow_bitfield
, /* complain_on_overflow */
941 0, /* special_function */
943 TRUE
, /* partial_inplace */
944 0xffff, /* src_mask */
945 0xffff, /* dst_mask */
946 FALSE
), /* pcrel_offset */
948 /* 16 bit Non modifiable absolute branch. */
949 HOWTO (R_BA
, /* type */
951 1, /* size (0 = byte, 1 = short, 2 = long) */
953 FALSE
, /* pc_relative */
955 complain_overflow_bitfield
, /* complain_on_overflow */
956 0, /* special_function */
957 "R_BA_16", /* name */
958 TRUE
, /* partial_inplace */
959 0xfffc, /* src_mask */
960 0xfffc, /* dst_mask */
961 FALSE
), /* pcrel_offset */
963 /* Modifiable branch relative. */
964 HOWTO (R_RBR
, /* type */
966 1, /* size (0 = byte, 1 = short, 2 = long) */
968 FALSE
, /* pc_relative */
970 complain_overflow_signed
, /* complain_on_overflow */
971 0, /* special_function */
972 "R_RBR_16", /* name */
973 TRUE
, /* partial_inplace */
974 0xffff, /* src_mask */
975 0xffff, /* dst_mask */
976 FALSE
), /* pcrel_offset */
978 /* Modifiable branch relative. */
979 HOWTO (R_RBA
, /* type */
981 1, /* size (0 = byte, 1 = short, 2 = long) */
983 FALSE
, /* pc_relative */
985 complain_overflow_signed
, /* complain_on_overflow */
986 0, /* special_function */
987 "R_RBA_16", /* name */
988 TRUE
, /* partial_inplace */
989 0xffff, /* src_mask */
990 0xffff, /* dst_mask */
991 FALSE
), /* pcrel_offset */
996 xcoff_rtype2howto (relent
, internal
)
998 struct internal_reloc
*internal
;
1000 if (internal
->r_type
> R_RBRC
)
1003 /* Default howto layout works most of the time */
1004 relent
->howto
= &xcoff_howto_table
[internal
->r_type
];
1006 /* Special case some 16 bit reloc */
1007 if (15 == (internal
->r_size
& 0x1f))
1009 if (R_BA
== internal
->r_type
)
1010 relent
->howto
= &xcoff_howto_table
[0x1c];
1011 else if (R_RBR
== internal
->r_type
)
1012 relent
->howto
= &xcoff_howto_table
[0x1d];
1013 else if (R_RBA
== internal
->r_type
)
1014 relent
->howto
= &xcoff_howto_table
[0x1e];
1017 /* The r_size field of an XCOFF reloc encodes the bitsize of the
1018 relocation, as well as indicating whether it is signed or not.
1019 Doublecheck that the relocation information gathered from the
1020 type matches this information. The bitsize is not significant
1021 for R_REF relocs. */
1022 if (relent
->howto
->dst_mask
!= 0
1023 && (relent
->howto
->bitsize
1024 != ((unsigned int) internal
->r_size
& 0x1f) + 1))
1029 _bfd_xcoff_reloc_type_lookup (abfd
, code
)
1030 bfd
*abfd ATTRIBUTE_UNUSED
;
1031 bfd_reloc_code_real_type code
;
1035 case BFD_RELOC_PPC_B26
:
1036 return &xcoff_howto_table
[0xa];
1037 case BFD_RELOC_PPC_BA16
:
1038 return &xcoff_howto_table
[0x1c];
1039 case BFD_RELOC_PPC_BA26
:
1040 return &xcoff_howto_table
[8];
1041 case BFD_RELOC_PPC_TOC16
:
1042 return &xcoff_howto_table
[3];
1044 case BFD_RELOC_CTOR
:
1045 return &xcoff_howto_table
[0];
1051 static reloc_howto_type
*
1052 _bfd_xcoff_reloc_name_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
1058 i
< sizeof (xcoff_howto_table
) / sizeof (xcoff_howto_table
[0]);
1060 if (xcoff_howto_table
[i
].name
!= NULL
1061 && strcasecmp (xcoff_howto_table
[i
].name
, r_name
) == 0)
1062 return &xcoff_howto_table
[i
];
1067 /* XCOFF archive support. The original version of this code was by
1068 Damon A. Permezel. It was enhanced to permit cross support, and
1069 writing archive files, by Ian Lance Taylor, Cygnus Support.
1071 XCOFF uses its own archive format. Everything is hooked together
1072 with file offset links, so it is possible to rapidly update an
1073 archive in place. Of course, we don't do that. An XCOFF archive
1074 has a real file header, not just an ARMAG string. The structure of
1075 the file header and of each archive header appear below.
1077 An XCOFF archive also has a member table, which is a list of
1078 elements in the archive (you can get that by looking through the
1079 linked list, but you have to read a lot more of the file). The
1080 member table has a normal archive header with an empty name. It is
1081 normally (and perhaps must be) the second to last entry in the
1082 archive. The member table data is almost printable ASCII. It
1083 starts with a 12 character decimal string which is the number of
1084 entries in the table. For each entry it has a 12 character decimal
1085 string which is the offset in the archive of that member. These
1086 entries are followed by a series of null terminated strings which
1087 are the member names for each entry.
1089 Finally, an XCOFF archive has a global symbol table, which is what
1090 we call the armap. The global symbol table has a normal archive
1091 header with an empty name. It is normally (and perhaps must be)
1092 the last entry in the archive. The contents start with a four byte
1093 binary number which is the number of entries. This is followed by
1094 a that many four byte binary numbers; each is the file offset of an
1095 entry in the archive. These numbers are followed by a series of
1096 null terminated strings, which are symbol names.
1098 AIX 4.3 introduced a new archive format which can handle larger
1099 files and also 32- and 64-bit objects in the same archive. The
1100 things said above remain true except that there is now more than
1101 one global symbol table. The one is used to index 32-bit objects,
1102 the other for 64-bit objects.
1104 The new archives (recognizable by the new ARMAG string) has larger
1105 field lengths so that we cannot really share any code. Also we have
1106 to take care that we are not generating the new form of archives
1107 on AIX 4.2 or earlier systems. */
1109 /* XCOFF archives use this as a magic string. Note that both strings
1110 have the same length. */
1112 /* Set the magic for archive. */
1115 bfd_xcoff_ar_archive_set_magic (abfd
, magic
)
1116 bfd
*abfd ATTRIBUTE_UNUSED
;
1117 char *magic ATTRIBUTE_UNUSED
;
1119 /* Not supported yet. */
1121 /* bfd_xcoff_archive_set_magic (abfd, magic); */
1124 /* Read in the armap of an XCOFF archive. */
1127 _bfd_xcoff_slurp_armap (abfd
)
1133 bfd_byte
*contents
, *cend
;
1138 if (xcoff_ardata (abfd
) == NULL
)
1140 bfd_has_map (abfd
) = FALSE
;
1144 if (! xcoff_big_format_p (abfd
))
1146 /* This is for the old format. */
1147 struct xcoff_ar_hdr hdr
;
1149 off
= strtol (xcoff_ardata (abfd
)->symoff
, (char **) NULL
, 10);
1152 bfd_has_map (abfd
) = FALSE
;
1156 if (bfd_seek (abfd
, off
, SEEK_SET
) != 0)
1159 /* The symbol table starts with a normal archive header. */
1160 if (bfd_bread ((PTR
) &hdr
, (bfd_size_type
) SIZEOF_AR_HDR
, abfd
)
1164 /* Skip the name (normally empty). */
1165 namlen
= strtol (hdr
.namlen
, (char **) NULL
, 10);
1166 off
= ((namlen
+ 1) & ~ (size_t) 1) + SXCOFFARFMAG
;
1167 if (bfd_seek (abfd
, off
, SEEK_CUR
) != 0)
1170 sz
= strtol (hdr
.size
, (char **) NULL
, 10);
1172 /* Read in the entire symbol table. */
1173 contents
= (bfd_byte
*) bfd_alloc (abfd
, sz
);
1174 if (contents
== NULL
)
1176 if (bfd_bread ((PTR
) contents
, sz
, abfd
) != sz
)
1179 /* The symbol table starts with a four byte count. */
1180 c
= H_GET_32 (abfd
, contents
);
1184 bfd_set_error (bfd_error_bad_value
);
1188 bfd_ardata (abfd
)->symdefs
=
1189 ((carsym
*) bfd_alloc (abfd
, c
* sizeof (carsym
)));
1190 if (bfd_ardata (abfd
)->symdefs
== NULL
)
1193 /* After the count comes a list of four byte file offsets. */
1194 for (i
= 0, arsym
= bfd_ardata (abfd
)->symdefs
, p
= contents
+ 4;
1196 ++i
, ++arsym
, p
+= 4)
1197 arsym
->file_offset
= H_GET_32 (abfd
, p
);
1201 /* This is for the new format. */
1202 struct xcoff_ar_hdr_big hdr
;
1204 off
= strtol (xcoff_ardata_big (abfd
)->symoff
, (char **) NULL
, 10);
1207 bfd_has_map (abfd
) = FALSE
;
1211 if (bfd_seek (abfd
, off
, SEEK_SET
) != 0)
1214 /* The symbol table starts with a normal archive header. */
1215 if (bfd_bread ((PTR
) &hdr
, (bfd_size_type
) SIZEOF_AR_HDR_BIG
, abfd
)
1216 != SIZEOF_AR_HDR_BIG
)
1219 /* Skip the name (normally empty). */
1220 namlen
= strtol (hdr
.namlen
, (char **) NULL
, 10);
1221 off
= ((namlen
+ 1) & ~ (size_t) 1) + SXCOFFARFMAG
;
1222 if (bfd_seek (abfd
, off
, SEEK_CUR
) != 0)
1225 /* XXX This actually has to be a call to strtoll (at least on 32-bit
1226 machines) since the field width is 20 and there numbers with more
1227 than 32 bits can be represented. */
1228 sz
= strtol (hdr
.size
, (char **) NULL
, 10);
1230 /* Read in the entire symbol table. */
1231 contents
= (bfd_byte
*) bfd_alloc (abfd
, sz
);
1232 if (contents
== NULL
)
1234 if (bfd_bread ((PTR
) contents
, sz
, abfd
) != sz
)
1237 /* The symbol table starts with an eight byte count. */
1238 c
= H_GET_64 (abfd
, contents
);
1242 bfd_set_error (bfd_error_bad_value
);
1246 bfd_ardata (abfd
)->symdefs
=
1247 ((carsym
*) bfd_alloc (abfd
, c
* sizeof (carsym
)));
1248 if (bfd_ardata (abfd
)->symdefs
== NULL
)
1251 /* After the count comes a list of eight byte file offsets. */
1252 for (i
= 0, arsym
= bfd_ardata (abfd
)->symdefs
, p
= contents
+ 8;
1254 ++i
, ++arsym
, p
+= 8)
1255 arsym
->file_offset
= H_GET_64 (abfd
, p
);
1258 /* After the file offsets come null terminated symbol names. */
1259 cend
= contents
+ sz
;
1260 for (i
= 0, arsym
= bfd_ardata (abfd
)->symdefs
;
1262 ++i
, ++arsym
, p
+= strlen ((char *) p
) + 1)
1266 bfd_set_error (bfd_error_bad_value
);
1269 arsym
->name
= (char *) p
;
1272 bfd_ardata (abfd
)->symdef_count
= c
;
1273 bfd_has_map (abfd
) = TRUE
;
1278 /* See if this is an XCOFF archive. */
1281 _bfd_xcoff_archive_p (abfd
)
1284 struct artdata
*tdata_hold
;
1285 char magic
[SXCOFFARMAG
];
1286 bfd_size_type amt
= SXCOFFARMAG
;
1288 if (bfd_bread ((PTR
) magic
, amt
, abfd
) != amt
)
1290 if (bfd_get_error () != bfd_error_system_call
)
1291 bfd_set_error (bfd_error_wrong_format
);
1295 if (strncmp (magic
, XCOFFARMAG
, SXCOFFARMAG
) != 0
1296 && strncmp (magic
, XCOFFARMAGBIG
, SXCOFFARMAG
) != 0)
1298 bfd_set_error (bfd_error_wrong_format
);
1302 tdata_hold
= bfd_ardata (abfd
);
1304 amt
= sizeof (struct artdata
);
1305 bfd_ardata (abfd
) = (struct artdata
*) bfd_zalloc (abfd
, amt
);
1306 if (bfd_ardata (abfd
) == (struct artdata
*) NULL
)
1307 goto error_ret_restore
;
1309 /* Cleared by bfd_zalloc above.
1310 bfd_ardata (abfd)->cache = NULL;
1311 bfd_ardata (abfd)->archive_head = NULL;
1312 bfd_ardata (abfd)->symdefs = NULL;
1313 bfd_ardata (abfd)->extended_names = NULL;
1314 bfd_ardata (abfd)->extended_names_size = 0; */
1316 /* Now handle the two formats. */
1317 if (magic
[1] != 'b')
1319 /* This is the old format. */
1320 struct xcoff_ar_file_hdr hdr
;
1322 /* Copy over the magic string. */
1323 memcpy (hdr
.magic
, magic
, SXCOFFARMAG
);
1325 /* Now read the rest of the file header. */
1326 amt
= SIZEOF_AR_FILE_HDR
- SXCOFFARMAG
;
1327 if (bfd_bread ((PTR
) &hdr
.memoff
, amt
, abfd
) != amt
)
1329 if (bfd_get_error () != bfd_error_system_call
)
1330 bfd_set_error (bfd_error_wrong_format
);
1334 bfd_ardata (abfd
)->first_file_filepos
= strtol (hdr
.firstmemoff
,
1335 (char **) NULL
, 10);
1337 amt
= SIZEOF_AR_FILE_HDR
;
1338 bfd_ardata (abfd
)->tdata
= bfd_zalloc (abfd
, amt
);
1339 if (bfd_ardata (abfd
)->tdata
== NULL
)
1342 memcpy (bfd_ardata (abfd
)->tdata
, &hdr
, SIZEOF_AR_FILE_HDR
);
1346 /* This is the new format. */
1347 struct xcoff_ar_file_hdr_big hdr
;
1349 /* Copy over the magic string. */
1350 memcpy (hdr
.magic
, magic
, SXCOFFARMAG
);
1352 /* Now read the rest of the file header. */
1353 amt
= SIZEOF_AR_FILE_HDR_BIG
- SXCOFFARMAG
;
1354 if (bfd_bread ((PTR
) &hdr
.memoff
, amt
, abfd
) != amt
)
1356 if (bfd_get_error () != bfd_error_system_call
)
1357 bfd_set_error (bfd_error_wrong_format
);
1361 bfd_ardata (abfd
)->first_file_filepos
= bfd_scan_vma (hdr
.firstmemoff
,
1365 amt
= SIZEOF_AR_FILE_HDR_BIG
;
1366 bfd_ardata (abfd
)->tdata
= bfd_zalloc (abfd
, amt
);
1367 if (bfd_ardata (abfd
)->tdata
== NULL
)
1370 memcpy (bfd_ardata (abfd
)->tdata
, &hdr
, SIZEOF_AR_FILE_HDR_BIG
);
1373 if (! _bfd_xcoff_slurp_armap (abfd
))
1376 bfd_release (abfd
, bfd_ardata (abfd
));
1378 bfd_ardata (abfd
) = tdata_hold
;
1385 /* Read the archive header in an XCOFF archive. */
1388 _bfd_xcoff_read_ar_hdr (abfd
)
1391 bfd_size_type namlen
;
1392 struct areltdata
*ret
;
1393 bfd_size_type amt
= sizeof (struct areltdata
);
1395 ret
= (struct areltdata
*) bfd_alloc (abfd
, amt
);
1399 if (! xcoff_big_format_p (abfd
))
1401 struct xcoff_ar_hdr hdr
;
1402 struct xcoff_ar_hdr
*hdrp
;
1404 if (bfd_bread ((PTR
) &hdr
, (bfd_size_type
) SIZEOF_AR_HDR
, abfd
)
1411 namlen
= strtol (hdr
.namlen
, (char **) NULL
, 10);
1412 amt
= SIZEOF_AR_HDR
+ namlen
+ 1;
1413 hdrp
= (struct xcoff_ar_hdr
*) bfd_alloc (abfd
, amt
);
1419 memcpy (hdrp
, &hdr
, SIZEOF_AR_HDR
);
1420 if (bfd_bread ((char *) hdrp
+ SIZEOF_AR_HDR
, namlen
, abfd
) != namlen
)
1425 ((char *) hdrp
)[SIZEOF_AR_HDR
+ namlen
] = '\0';
1427 ret
->arch_header
= (char *) hdrp
;
1428 ret
->parsed_size
= strtol (hdr
.size
, (char **) NULL
, 10);
1429 ret
->filename
= (char *) hdrp
+ SIZEOF_AR_HDR
;
1433 struct xcoff_ar_hdr_big hdr
;
1434 struct xcoff_ar_hdr_big
*hdrp
;
1436 if (bfd_bread ((PTR
) &hdr
, (bfd_size_type
) SIZEOF_AR_HDR_BIG
, abfd
)
1437 != SIZEOF_AR_HDR_BIG
)
1443 namlen
= strtol (hdr
.namlen
, (char **) NULL
, 10);
1444 amt
= SIZEOF_AR_HDR_BIG
+ namlen
+ 1;
1445 hdrp
= (struct xcoff_ar_hdr_big
*) bfd_alloc (abfd
, amt
);
1451 memcpy (hdrp
, &hdr
, SIZEOF_AR_HDR_BIG
);
1452 if (bfd_bread ((char *) hdrp
+ SIZEOF_AR_HDR_BIG
, namlen
, abfd
) != namlen
)
1457 ((char *) hdrp
)[SIZEOF_AR_HDR_BIG
+ namlen
] = '\0';
1459 ret
->arch_header
= (char *) hdrp
;
1460 /* XXX This actually has to be a call to strtoll (at least on 32-bit
1461 machines) since the field width is 20 and there numbers with more
1462 than 32 bits can be represented. */
1463 ret
->parsed_size
= strtol (hdr
.size
, (char **) NULL
, 10);
1464 ret
->filename
= (char *) hdrp
+ SIZEOF_AR_HDR_BIG
;
1467 /* Skip over the XCOFFARFMAG at the end of the file name. */
1468 if (bfd_seek (abfd
, (file_ptr
) ((namlen
& 1) + SXCOFFARFMAG
), SEEK_CUR
) != 0)
1474 /* Open the next element in an XCOFF archive. */
1477 _bfd_xcoff_openr_next_archived_file (archive
, last_file
)
1483 if (xcoff_ardata (archive
) == NULL
)
1485 bfd_set_error (bfd_error_invalid_operation
);
1489 if (! xcoff_big_format_p (archive
))
1491 if (last_file
== NULL
)
1492 filestart
= bfd_ardata (archive
)->first_file_filepos
;
1494 filestart
= strtol (arch_xhdr (last_file
)->nextoff
, (char **) NULL
,
1498 || filestart
== strtol (xcoff_ardata (archive
)->memoff
,
1500 || filestart
== strtol (xcoff_ardata (archive
)->symoff
,
1501 (char **) NULL
, 10))
1503 bfd_set_error (bfd_error_no_more_archived_files
);
1509 if (last_file
== NULL
)
1510 filestart
= bfd_ardata (archive
)->first_file_filepos
;
1512 /* XXX These actually have to be a calls to strtoll (at least
1513 on 32-bit machines) since the fields's width is 20 and
1514 there numbers with more than 32 bits can be represented. */
1515 filestart
= strtol (arch_xhdr_big (last_file
)->nextoff
, (char **) NULL
,
1518 /* XXX These actually have to be calls to strtoll (at least on 32-bit
1519 machines) since the fields's width is 20 and there numbers with more
1520 than 32 bits can be represented. */
1522 || filestart
== strtol (xcoff_ardata_big (archive
)->memoff
,
1524 || filestart
== strtol (xcoff_ardata_big (archive
)->symoff
,
1525 (char **) NULL
, 10))
1527 bfd_set_error (bfd_error_no_more_archived_files
);
1532 return _bfd_get_elt_at_filepos (archive
, filestart
);
1535 /* Stat an element in an XCOFF archive. */
1538 _bfd_xcoff_stat_arch_elt (abfd
, s
)
1542 if (abfd
->arelt_data
== NULL
)
1544 bfd_set_error (bfd_error_invalid_operation
);
1548 if (! xcoff_big_format_p (abfd
->my_archive
))
1550 struct xcoff_ar_hdr
*hdrp
= arch_xhdr (abfd
);
1552 s
->st_mtime
= strtol (hdrp
->date
, (char **) NULL
, 10);
1553 s
->st_uid
= strtol (hdrp
->uid
, (char **) NULL
, 10);
1554 s
->st_gid
= strtol (hdrp
->gid
, (char **) NULL
, 10);
1555 s
->st_mode
= strtol (hdrp
->mode
, (char **) NULL
, 8);
1556 s
->st_size
= arch_eltdata (abfd
)->parsed_size
;
1560 struct xcoff_ar_hdr_big
*hdrp
= arch_xhdr_big (abfd
);
1562 s
->st_mtime
= strtol (hdrp
->date
, (char **) NULL
, 10);
1563 s
->st_uid
= strtol (hdrp
->uid
, (char **) NULL
, 10);
1564 s
->st_gid
= strtol (hdrp
->gid
, (char **) NULL
, 10);
1565 s
->st_mode
= strtol (hdrp
->mode
, (char **) NULL
, 8);
1566 s
->st_size
= arch_eltdata (abfd
)->parsed_size
;
1572 /* Normalize a file name for inclusion in an archive. */
1575 normalize_filename (abfd
)
1579 const char *filename
;
1581 file
= bfd_get_filename (abfd
);
1582 filename
= strrchr (file
, '/');
1583 if (filename
!= NULL
)
1590 /* Write out an XCOFF armap. */
1593 xcoff_write_armap_old (abfd
, elength
, map
, orl_count
, stridx
)
1595 unsigned int elength ATTRIBUTE_UNUSED
;
1597 unsigned int orl_count
;
1600 struct xcoff_ar_hdr hdr
;
1602 unsigned char buf
[4];
1607 memset (&hdr
, 0, sizeof hdr
);
1608 sprintf (hdr
.size
, "%ld", (long) (4 + orl_count
* 4 + stridx
));
1609 sprintf (hdr
.nextoff
, "%d", 0);
1610 memcpy (hdr
.prevoff
, xcoff_ardata (abfd
)->memoff
, XCOFFARMAG_ELEMENT_SIZE
);
1611 sprintf (hdr
.date
, "%d", 0);
1612 sprintf (hdr
.uid
, "%d", 0);
1613 sprintf (hdr
.gid
, "%d", 0);
1614 sprintf (hdr
.mode
, "%d", 0);
1615 sprintf (hdr
.namlen
, "%d", 0);
1617 /* We need spaces, not null bytes, in the header. */
1618 for (p
= (char *) &hdr
; p
< (char *) &hdr
+ SIZEOF_AR_HDR
; p
++)
1622 if (bfd_bwrite ((PTR
) &hdr
, (bfd_size_type
) SIZEOF_AR_HDR
, abfd
)
1624 || (bfd_bwrite (XCOFFARFMAG
, (bfd_size_type
) SXCOFFARFMAG
, abfd
)
1628 H_PUT_32 (abfd
, orl_count
, buf
);
1629 if (bfd_bwrite (buf
, (bfd_size_type
) 4, abfd
) != 4)
1632 sub
= abfd
->archive_head
;
1633 fileoff
= SIZEOF_AR_FILE_HDR
;
1635 while (sub
!= NULL
&& i
< orl_count
)
1639 while (map
[i
].u
.abfd
== sub
)
1641 H_PUT_32 (abfd
, fileoff
, buf
);
1642 if (bfd_bwrite (buf
, (bfd_size_type
) 4, abfd
) != 4)
1646 namlen
= strlen (normalize_filename (sub
));
1647 namlen
= (namlen
+ 1) &~ (size_t) 1;
1648 fileoff
+= (SIZEOF_AR_HDR
1651 + arelt_size (sub
));
1652 fileoff
= (fileoff
+ 1) &~ 1;
1653 sub
= sub
->archive_next
;
1656 for (i
= 0; i
< orl_count
; i
++)
1661 name
= *map
[i
].name
;
1662 namlen
= strlen (name
);
1663 if (bfd_bwrite (name
, (bfd_size_type
) (namlen
+ 1), abfd
) != namlen
+ 1)
1667 if ((stridx
& 1) != 0)
1672 if (bfd_bwrite (&b
, (bfd_size_type
) 1, abfd
) != 1)
1679 static char buff20
[XCOFFARMAGBIG_ELEMENT_SIZE
+ 1];
1680 #define FMT20 "%-20lld"
1681 #define FMT12 "%-12d"
1682 #define FMT12_OCTAL "%-12o"
1684 #define PRINT20(d, v) \
1685 sprintf (buff20, FMT20, (long long)(v)), \
1686 memcpy ((void *) (d), buff20, 20)
1688 #define PRINT12(d, v) \
1689 sprintf (buff20, FMT12, (int)(v)), \
1690 memcpy ((void *) (d), buff20, 12)
1692 #define PRINT12_OCTAL(d, v) \
1693 sprintf (buff20, FMT12_OCTAL, (unsigned int)(v)), \
1694 memcpy ((void *) (d), buff20, 12)
1696 #define PRINT4(d, v) \
1697 sprintf (buff20, FMT4, (int)(v)), \
1698 memcpy ((void *) (d), buff20, 4)
1700 #define READ20(d, v) \
1702 memcpy (buff20, (d), 20), \
1703 (v) = bfd_scan_vma (buff20, (const char **) NULL, 10)
1706 do_pad (abfd
, number
)
1708 unsigned int number
;
1712 /* Limit pad to <= 4096. */
1717 if (bfd_bwrite (&b
, (bfd_size_type
) 1, abfd
) != 1)
1724 do_copy (out_bfd
, in_bfd
)
1728 bfd_size_type remaining
;
1729 bfd_byte buffer
[DEFAULT_BUFFERSIZE
];
1731 if (bfd_seek (in_bfd
, (file_ptr
) 0, SEEK_SET
) != 0)
1734 remaining
= arelt_size (in_bfd
);
1736 while (remaining
>= DEFAULT_BUFFERSIZE
)
1738 if (bfd_bread (buffer
, DEFAULT_BUFFERSIZE
, in_bfd
) != DEFAULT_BUFFERSIZE
1739 || bfd_bwrite (buffer
, DEFAULT_BUFFERSIZE
, out_bfd
) != DEFAULT_BUFFERSIZE
)
1742 remaining
-= DEFAULT_BUFFERSIZE
;
1747 if (bfd_bread (buffer
, remaining
, in_bfd
) != remaining
1748 || bfd_bwrite (buffer
, remaining
, out_bfd
) != remaining
)
1756 do_shared_object_padding (out_bfd
, in_bfd
, offset
, ar_header_size
)
1762 if (bfd_check_format (in_bfd
, bfd_object
)
1763 && bfd_get_flavour (in_bfd
) == bfd_target_xcoff_flavour
1764 && (in_bfd
->flags
& DYNAMIC
) != 0)
1766 bfd_size_type pad
= 0;
1767 int text_align_power
;
1769 text_align_power
= bfd_xcoff_text_align_power (in_bfd
);
1771 pad
= 1 << text_align_power
;
1772 pad
-= (*offset
+ ar_header_size
) & (pad
- 1);
1774 if (! do_pad (out_bfd
, pad
))
1784 xcoff_write_armap_big (abfd
, elength
, map
, orl_count
, stridx
)
1786 unsigned int elength ATTRIBUTE_UNUSED
;
1788 unsigned int orl_count
;
1791 struct xcoff_ar_file_hdr_big
*fhdr
;
1792 bfd_vma i
, sym_32
, sym_64
, str_32
, str_64
;
1793 const bfd_arch_info_type
*arch_info
= NULL
;
1795 size_t string_length
;
1796 file_ptr nextoff
, prevoff
;
1798 /* First, we look through the symbols and work out which are
1799 from 32-bit objects and which from 64-bit ones. */
1800 sym_32
= sym_64
= str_32
= str_64
= 0;
1802 current_bfd
= abfd
->archive_head
;
1803 if (current_bfd
!= NULL
)
1804 arch_info
= bfd_get_arch_info (current_bfd
);
1806 while (current_bfd
!= NULL
&& i
< orl_count
)
1808 while (map
[i
].u
.abfd
== current_bfd
)
1810 string_length
= strlen (*map
[i
].name
) + 1;
1812 if (arch_info
->bits_per_address
== 64)
1815 str_64
+= string_length
;
1820 str_32
+= string_length
;
1824 current_bfd
= current_bfd
->archive_next
;
1825 if (current_bfd
!= NULL
)
1826 arch_info
= bfd_get_arch_info (current_bfd
);
1829 /* A quick sanity check... */
1830 BFD_ASSERT (sym_64
+ sym_32
== orl_count
);
1831 /* Explicit cast to int for compiler. */
1832 BFD_ASSERT ((int)(str_64
+ str_32
) == stridx
);
1834 fhdr
= xcoff_ardata_big (abfd
);
1836 /* xcoff_write_archive_contents_big passes nextoff in symoff. */
1837 READ20 (fhdr
->memoff
, prevoff
);
1838 READ20 (fhdr
->symoff
, nextoff
);
1840 BFD_ASSERT (nextoff
== bfd_tell (abfd
));
1842 /* Write out the symbol table.
1845 standard big archive header
1846 0x0000 ar_size [0x14]
1847 0x0014 ar_nxtmem [0x14]
1848 0x0028 ar_prvmem [0x14]
1849 0x003C ar_date [0x0C]
1850 0x0048 ar_uid [0x0C]
1851 0x0054 ar_gid [0x0C]
1852 0x0060 ar_mod [0x0C]
1853 0x006C ar_namelen[0x04]
1854 0x0070 ar_fmag [SXCOFFARFMAG]
1857 0x0072 num_syms [0x08], binary
1858 0x0078 offsets [0x08 * num_syms], binary
1859 0x0086 + 0x08 * num_syms names [??]
1860 ?? pad to even bytes.
1865 struct xcoff_ar_hdr_big
*hdr
;
1870 bfd_vma symbol_table_size
=
1875 + str_32
+ (str_32
& 1);
1877 symbol_table
= bfd_zmalloc (symbol_table_size
);
1878 if (symbol_table
== NULL
)
1881 hdr
= (struct xcoff_ar_hdr_big
*) symbol_table
;
1883 PRINT20 (hdr
->size
, 8 + 8 * sym_32
+ str_32
+ (str_32
& 1));
1886 PRINT20 (hdr
->nextoff
, nextoff
+ symbol_table_size
);
1888 PRINT20 (hdr
->nextoff
, 0);
1890 PRINT20 (hdr
->prevoff
, prevoff
);
1891 PRINT12 (hdr
->date
, 0);
1892 PRINT12 (hdr
->uid
, 0);
1893 PRINT12 (hdr
->gid
, 0);
1894 PRINT12 (hdr
->mode
, 0);
1895 PRINT4 (hdr
->namlen
, 0) ;
1897 st
= symbol_table
+ SIZEOF_AR_HDR_BIG
;
1898 memcpy (st
, XCOFFARFMAG
, SXCOFFARFMAG
);
1901 bfd_h_put_64 (abfd
, sym_32
, st
);
1904 /* loop over the 32 bit offsets */
1905 current_bfd
= abfd
->archive_head
;
1906 if (current_bfd
!= NULL
)
1907 arch_info
= bfd_get_arch_info (current_bfd
);
1908 fileoff
= SIZEOF_AR_FILE_HDR_BIG
;
1910 while (current_bfd
!= NULL
&& i
< orl_count
)
1912 while (map
[i
].u
.abfd
== current_bfd
)
1914 if (arch_info
->bits_per_address
== 32)
1916 bfd_h_put_64 (abfd
, fileoff
, st
);
1921 string_length
= strlen (normalize_filename (current_bfd
));
1922 string_length
+= string_length
& 1;
1923 fileoff
+= (SIZEOF_AR_HDR_BIG
1926 + arelt_size (current_bfd
));
1927 fileoff
+= fileoff
& 1;
1928 current_bfd
= current_bfd
->archive_next
;
1929 if (current_bfd
!= NULL
)
1930 arch_info
= bfd_get_arch_info (current_bfd
);
1933 /* loop over the 32 bit symbol names */
1934 current_bfd
= abfd
->archive_head
;
1935 if (current_bfd
!= NULL
)
1936 arch_info
= bfd_get_arch_info (current_bfd
);
1938 while (current_bfd
!= NULL
&& i
< orl_count
)
1940 while (map
[i
].u
.abfd
== current_bfd
)
1942 if (arch_info
->bits_per_address
== 32)
1944 string_length
= sprintf (st
, "%s", *map
[i
].name
);
1945 st
+= string_length
+ 1;
1949 current_bfd
= current_bfd
->archive_next
;
1950 if (current_bfd
!= NULL
)
1951 arch_info
= bfd_get_arch_info (current_bfd
);
1954 bfd_bwrite (symbol_table
, symbol_table_size
, abfd
);
1956 free (symbol_table
);
1959 nextoff
= nextoff
+ symbol_table_size
;
1962 PRINT20 (fhdr
->symoff
, 0);
1966 struct xcoff_ar_hdr_big
*hdr
;
1971 bfd_vma symbol_table_size
=
1976 + str_64
+ (str_64
& 1);
1978 symbol_table
= bfd_zmalloc (symbol_table_size
);
1979 if (symbol_table
== NULL
)
1982 hdr
= (struct xcoff_ar_hdr_big
*) symbol_table
;
1984 PRINT20 (hdr
->size
, 8 + 8 * sym_64
+ str_64
+ (str_64
& 1));
1985 PRINT20 (hdr
->nextoff
, 0);
1986 PRINT20 (hdr
->prevoff
, prevoff
);
1987 PRINT12 (hdr
->date
, 0);
1988 PRINT12 (hdr
->uid
, 0);
1989 PRINT12 (hdr
->gid
, 0);
1990 PRINT12 (hdr
->mode
, 0);
1991 PRINT4 (hdr
->namlen
, 0);
1993 st
= symbol_table
+ SIZEOF_AR_HDR_BIG
;
1994 memcpy (st
, XCOFFARFMAG
, SXCOFFARFMAG
);
1997 bfd_h_put_64 (abfd
, sym_64
, st
);
2000 /* loop over the 64 bit offsets */
2001 current_bfd
= abfd
->archive_head
;
2002 if (current_bfd
!= NULL
)
2003 arch_info
= bfd_get_arch_info (current_bfd
);
2004 fileoff
= SIZEOF_AR_FILE_HDR_BIG
;
2006 while (current_bfd
!= NULL
&& i
< orl_count
)
2008 while (map
[i
].u
.abfd
== current_bfd
)
2010 if (arch_info
->bits_per_address
== 64)
2012 bfd_h_put_64 (abfd
, fileoff
, st
);
2017 string_length
= strlen (normalize_filename (current_bfd
));
2018 string_length
+= string_length
& 1;
2019 fileoff
+= (SIZEOF_AR_HDR_BIG
2022 + arelt_size (current_bfd
));
2023 fileoff
+= fileoff
& 1;
2024 current_bfd
= current_bfd
->archive_next
;
2025 if (current_bfd
!= NULL
)
2026 arch_info
= bfd_get_arch_info (current_bfd
);
2029 /* loop over the 64 bit symbol names */
2030 current_bfd
= abfd
->archive_head
;
2031 if (current_bfd
!= NULL
)
2032 arch_info
= bfd_get_arch_info (current_bfd
);
2034 while (current_bfd
!= NULL
&& i
< orl_count
)
2036 while (map
[i
].u
.abfd
== current_bfd
)
2038 if (arch_info
->bits_per_address
== 64)
2040 string_length
= sprintf (st
, "%s", *map
[i
].name
);
2041 st
+= string_length
+ 1;
2045 current_bfd
= current_bfd
->archive_next
;
2046 if (current_bfd
!= NULL
)
2047 arch_info
= bfd_get_arch_info (current_bfd
);
2050 bfd_bwrite (symbol_table
, symbol_table_size
, abfd
);
2052 free (symbol_table
);
2054 PRINT20 (fhdr
->symoff64
, nextoff
);
2057 PRINT20 (fhdr
->symoff64
, 0);
2063 _bfd_xcoff_write_armap (abfd
, elength
, map
, orl_count
, stridx
)
2065 unsigned int elength ATTRIBUTE_UNUSED
;
2067 unsigned int orl_count
;
2070 if (! xcoff_big_format_p (abfd
))
2071 return xcoff_write_armap_old (abfd
, elength
, map
, orl_count
, stridx
);
2073 return xcoff_write_armap_big (abfd
, elength
, map
, orl_count
, stridx
);
2076 /* Write out an XCOFF archive. We always write an entire archive,
2077 rather than fussing with the freelist and so forth. */
2080 xcoff_write_archive_contents_old (abfd
)
2083 struct xcoff_ar_file_hdr fhdr
;
2084 bfd_size_type count
;
2085 bfd_size_type total_namlen
;
2087 bfd_boolean makemap
;
2088 bfd_boolean hasobjects
;
2089 file_ptr prevoff
, nextoff
;
2092 struct xcoff_ar_hdr ahdr
;
2095 char decbuf
[XCOFFARMAG_ELEMENT_SIZE
+ 1];
2097 memset (&fhdr
, 0, sizeof fhdr
);
2098 (void) strncpy (fhdr
.magic
, XCOFFARMAG
, SXCOFFARMAG
);
2099 sprintf (fhdr
.firstmemoff
, "%d", SIZEOF_AR_FILE_HDR
);
2100 sprintf (fhdr
.freeoff
, "%d", 0);
2104 for (sub
= abfd
->archive_head
; sub
!= NULL
; sub
= sub
->archive_next
)
2107 total_namlen
+= strlen (normalize_filename (sub
)) + 1;
2109 offsets
= (file_ptr
*) bfd_alloc (abfd
, count
* sizeof (file_ptr
));
2110 if (offsets
== NULL
)
2113 if (bfd_seek (abfd
, (file_ptr
) SIZEOF_AR_FILE_HDR
, SEEK_SET
) != 0)
2116 makemap
= bfd_has_map (abfd
);
2119 nextoff
= SIZEOF_AR_FILE_HDR
;
2120 for (sub
= abfd
->archive_head
, i
= 0;
2122 sub
= sub
->archive_next
, i
++)
2125 bfd_size_type namlen
;
2126 struct xcoff_ar_hdr
*ahdrp
;
2127 bfd_size_type remaining
;
2129 if (makemap
&& ! hasobjects
)
2131 if (bfd_check_format (sub
, bfd_object
))
2135 name
= normalize_filename (sub
);
2136 namlen
= strlen (name
);
2138 if (sub
->arelt_data
!= NULL
)
2139 ahdrp
= arch_xhdr (sub
);
2147 memset (&ahdr
, 0, sizeof ahdr
);
2149 if (stat (bfd_get_filename (sub
), &s
) != 0)
2151 bfd_set_error (bfd_error_system_call
);
2155 sprintf (ahdrp
->size
, "%ld", (long) s
.st_size
);
2156 sprintf (ahdrp
->date
, "%ld", (long) s
.st_mtime
);
2157 sprintf (ahdrp
->uid
, "%ld", (long) s
.st_uid
);
2158 sprintf (ahdrp
->gid
, "%ld", (long) s
.st_gid
);
2159 sprintf (ahdrp
->mode
, "%o", (unsigned int) s
.st_mode
);
2161 if (sub
->arelt_data
== NULL
)
2163 size
= sizeof (struct areltdata
);
2164 sub
->arelt_data
= bfd_alloc (sub
, size
);
2165 if (sub
->arelt_data
== NULL
)
2169 arch_eltdata (sub
)->parsed_size
= s
.st_size
;
2172 sprintf (ahdrp
->prevoff
, "%ld", (long) prevoff
);
2173 sprintf (ahdrp
->namlen
, "%ld", (long) namlen
);
2175 /* If the length of the name is odd, we write out the null byte
2176 after the name as well. */
2177 namlen
= (namlen
+ 1) &~ (bfd_size_type
) 1;
2179 remaining
= arelt_size (sub
);
2180 size
= (SIZEOF_AR_HDR
2185 BFD_ASSERT (nextoff
== bfd_tell (abfd
));
2187 offsets
[i
] = nextoff
;
2190 nextoff
+= size
+ (size
& 1);
2192 sprintf (ahdrp
->nextoff
, "%ld", (long) nextoff
);
2194 /* We need spaces, not null bytes, in the header. */
2195 for (p
= (char *) ahdrp
; p
< (char *) ahdrp
+ SIZEOF_AR_HDR
; p
++)
2199 if ((bfd_bwrite ((PTR
) ahdrp
, (bfd_size_type
) SIZEOF_AR_HDR
, abfd
)
2201 || bfd_bwrite ((PTR
) name
, namlen
, abfd
) != namlen
2202 || bfd_bwrite ((PTR
) XCOFFARFMAG
, (bfd_size_type
) SXCOFFARFMAG
,
2203 abfd
) != SXCOFFARFMAG
)
2206 if (bfd_seek (sub
, (file_ptr
) 0, SEEK_SET
) != 0)
2209 if (! do_copy (abfd
, sub
))
2212 if (! do_pad (abfd
, size
& 1))
2216 sprintf (fhdr
.lastmemoff
, "%ld", (long) prevoff
);
2218 /* Write out the member table. */
2220 BFD_ASSERT (nextoff
== bfd_tell (abfd
));
2221 sprintf (fhdr
.memoff
, "%ld", (long) nextoff
);
2223 memset (&ahdr
, 0, sizeof ahdr
);
2224 sprintf (ahdr
.size
, "%ld", (long) (XCOFFARMAG_ELEMENT_SIZE
2225 + count
* XCOFFARMAG_ELEMENT_SIZE
2227 sprintf (ahdr
.prevoff
, "%ld", (long) prevoff
);
2228 sprintf (ahdr
.date
, "%d", 0);
2229 sprintf (ahdr
.uid
, "%d", 0);
2230 sprintf (ahdr
.gid
, "%d", 0);
2231 sprintf (ahdr
.mode
, "%d", 0);
2232 sprintf (ahdr
.namlen
, "%d", 0);
2234 size
= (SIZEOF_AR_HDR
2235 + XCOFFARMAG_ELEMENT_SIZE
2236 + count
* XCOFFARMAG_ELEMENT_SIZE
2241 nextoff
+= size
+ (size
& 1);
2243 if (makemap
&& hasobjects
)
2244 sprintf (ahdr
.nextoff
, "%ld", (long) nextoff
);
2246 sprintf (ahdr
.nextoff
, "%d", 0);
2248 /* We need spaces, not null bytes, in the header. */
2249 for (p
= (char *) &ahdr
; p
< (char *) &ahdr
+ SIZEOF_AR_HDR
; p
++)
2253 if ((bfd_bwrite ((PTR
) &ahdr
, (bfd_size_type
) SIZEOF_AR_HDR
, abfd
)
2255 || (bfd_bwrite ((PTR
) XCOFFARFMAG
, (bfd_size_type
) SXCOFFARFMAG
, abfd
)
2259 sprintf (decbuf
, "%-12ld", (long) count
);
2260 if (bfd_bwrite ((PTR
) decbuf
, (bfd_size_type
) XCOFFARMAG_ELEMENT_SIZE
, abfd
)
2261 != XCOFFARMAG_ELEMENT_SIZE
)
2263 for (i
= 0; i
< (size_t) count
; i
++)
2265 sprintf (decbuf
, "%-12ld", (long) offsets
[i
]);
2266 if (bfd_bwrite ((PTR
) decbuf
, (bfd_size_type
) XCOFFARMAG_ELEMENT_SIZE
,
2267 abfd
) != XCOFFARMAG_ELEMENT_SIZE
)
2270 for (sub
= abfd
->archive_head
; sub
!= NULL
; sub
= sub
->archive_next
)
2273 bfd_size_type namlen
;
2275 name
= normalize_filename (sub
);
2276 namlen
= strlen (name
);
2277 if (bfd_bwrite ((PTR
) name
, namlen
+ 1, abfd
) != namlen
+ 1)
2281 if (! do_pad (abfd
, size
& 1))
2284 /* Write out the armap, if appropriate. */
2285 if (! makemap
|| ! hasobjects
)
2286 sprintf (fhdr
.symoff
, "%d", 0);
2289 BFD_ASSERT (nextoff
== bfd_tell (abfd
));
2290 sprintf (fhdr
.symoff
, "%ld", (long) nextoff
);
2291 bfd_ardata (abfd
)->tdata
= (PTR
) &fhdr
;
2292 if (! _bfd_compute_and_write_armap (abfd
, 0))
2296 /* Write out the archive file header. */
2298 /* We need spaces, not null bytes, in the header. */
2299 for (p
= (char *) &fhdr
; p
< (char *) &fhdr
+ SIZEOF_AR_FILE_HDR
; p
++)
2303 if (bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
) != 0
2304 || (bfd_bwrite ((PTR
) &fhdr
, (bfd_size_type
) SIZEOF_AR_FILE_HDR
, abfd
)
2305 != SIZEOF_AR_FILE_HDR
))
2312 xcoff_write_archive_contents_big (abfd
)
2315 struct xcoff_ar_file_hdr_big fhdr
;
2316 bfd_size_type count
;
2317 bfd_size_type total_namlen
;
2319 bfd_boolean makemap
;
2320 bfd_boolean hasobjects
;
2321 file_ptr prevoff
, nextoff
;
2324 struct xcoff_ar_hdr_big
*hdr
, ahdr
;
2326 char *member_table
, *mt
;
2327 bfd_vma member_table_size
;
2329 memset (&fhdr
, 0, SIZEOF_AR_FILE_HDR_BIG
);
2330 memcpy (fhdr
.magic
, XCOFFARMAGBIG
, SXCOFFARMAG
);
2332 if (bfd_seek (abfd
, (file_ptr
) SIZEOF_AR_FILE_HDR_BIG
, SEEK_SET
) != 0)
2335 /* Calculate count and total_namlen. */
2336 makemap
= bfd_has_map (abfd
);
2338 for (current_bfd
= abfd
->archive_head
, count
= 0, total_namlen
= 0;
2339 current_bfd
!= NULL
;
2340 current_bfd
= current_bfd
->archive_next
, count
++)
2342 total_namlen
+= strlen (normalize_filename (current_bfd
)) + 1;
2346 && bfd_check_format (current_bfd
, bfd_object
))
2353 offsets
= (file_ptr
*) bfd_malloc (count
* sizeof (file_ptr
));
2354 if (offsets
== NULL
)
2359 nextoff
= SIZEOF_AR_FILE_HDR_BIG
;
2360 for (current_bfd
= abfd
->archive_head
, i
= 0;
2361 current_bfd
!= NULL
;
2362 current_bfd
= current_bfd
->archive_next
, i
++)
2365 bfd_size_type namlen
;
2366 struct xcoff_ar_hdr_big
*ahdrp
;
2367 bfd_size_type remaining
;
2369 name
= normalize_filename (current_bfd
);
2370 namlen
= strlen (name
);
2372 if (current_bfd
->arelt_data
!= NULL
)
2373 ahdrp
= arch_xhdr_big (current_bfd
);
2382 /* XXX This should actually be a call to stat64 (at least on
2384 XXX This call will fail if the original object is not found. */
2385 if (stat (bfd_get_filename (current_bfd
), &s
) != 0)
2387 bfd_set_error (bfd_error_system_call
);
2391 PRINT20 (ahdrp
->size
, s
.st_size
);
2392 PRINT12 (ahdrp
->date
, s
.st_mtime
);
2393 PRINT12 (ahdrp
->uid
, s
.st_uid
);
2394 PRINT12 (ahdrp
->gid
, s
.st_gid
);
2395 PRINT12_OCTAL (ahdrp
->mode
, s
.st_mode
);
2397 if (current_bfd
->arelt_data
== NULL
)
2399 size
= sizeof (struct areltdata
);
2400 current_bfd
->arelt_data
= bfd_alloc (current_bfd
, size
);
2401 if (current_bfd
->arelt_data
== NULL
)
2405 arch_eltdata (current_bfd
)->parsed_size
= s
.st_size
;
2408 PRINT20 (ahdrp
->prevoff
, prevoff
);
2409 PRINT4 (ahdrp
->namlen
, namlen
);
2411 /* If the length of the name is odd, we write out the null byte
2412 after the name as well. */
2413 namlen
= (namlen
+ 1) &~ (bfd_size_type
) 1;
2415 remaining
= arelt_size (current_bfd
);
2416 size
= (SIZEOF_AR_HDR_BIG
2421 BFD_ASSERT (nextoff
== bfd_tell (abfd
));
2423 /* Check for xcoff shared objects.
2424 Their text section needs to be aligned wrt the archive file position.
2425 This requires extra padding before the archive header. */
2426 if (! do_shared_object_padding (abfd
, current_bfd
, & nextoff
,
2427 SIZEOF_AR_HDR_BIG
+ namlen
2431 offsets
[i
] = nextoff
;
2434 nextoff
+= size
+ (size
& 1);
2436 PRINT20 (ahdrp
->nextoff
, nextoff
);
2438 if ((bfd_bwrite ((PTR
) ahdrp
, (bfd_size_type
) SIZEOF_AR_HDR_BIG
, abfd
)
2439 != SIZEOF_AR_HDR_BIG
)
2440 || bfd_bwrite ((PTR
) name
, (bfd_size_type
) namlen
, abfd
) != namlen
2441 || (bfd_bwrite ((PTR
) XCOFFARFMAG
, (bfd_size_type
) SXCOFFARFMAG
,
2442 abfd
) != SXCOFFARFMAG
))
2445 if (bfd_seek (current_bfd
, (file_ptr
) 0, SEEK_SET
) != 0)
2448 if (! do_copy (abfd
, current_bfd
))
2451 if (! do_pad (abfd
, size
& 1))
2457 PRINT20 (fhdr
.firstmemoff
, offsets
[0]);
2458 PRINT20 (fhdr
.lastmemoff
, prevoff
);
2461 /* Write out the member table.
2464 standard big archive header
2465 0x0000 ar_size [0x14]
2466 0x0014 ar_nxtmem [0x14]
2467 0x0028 ar_prvmem [0x14]
2468 0x003C ar_date [0x0C]
2469 0x0048 ar_uid [0x0C]
2470 0x0054 ar_gid [0x0C]
2471 0x0060 ar_mod [0x0C]
2472 0x006C ar_namelen[0x04]
2473 0x0070 ar_fmag [0x02]
2477 0x0086 offsets [0x14 * counts]
2478 0x0086 + 0x14 * counts names [??]
2479 ?? pad to even bytes.
2482 BFD_ASSERT (nextoff
== bfd_tell (abfd
));
2484 member_table_size
= (SIZEOF_AR_HDR_BIG
2486 + XCOFFARMAGBIG_ELEMENT_SIZE
2487 + count
* XCOFFARMAGBIG_ELEMENT_SIZE
2490 member_table_size
+= member_table_size
& 1;
2491 member_table
= bfd_zmalloc (member_table_size
);
2492 if (member_table
== NULL
)
2495 hdr
= (struct xcoff_ar_hdr_big
*) member_table
;
2497 PRINT20 (hdr
->size
, (XCOFFARMAGBIG_ELEMENT_SIZE
2498 + count
* XCOFFARMAGBIG_ELEMENT_SIZE
2499 + total_namlen
+ (total_namlen
& 1)));
2500 if (makemap
&& hasobjects
)
2501 PRINT20 (hdr
->nextoff
, nextoff
+ member_table_size
);
2503 PRINT20 (hdr
->nextoff
, 0);
2504 PRINT20 (hdr
->prevoff
, prevoff
);
2505 PRINT12 (hdr
->date
, 0);
2506 PRINT12 (hdr
->uid
, 0);
2507 PRINT12 (hdr
->gid
, 0);
2508 PRINT12 (hdr
->mode
, 0);
2509 PRINT4 (hdr
->namlen
, 0);
2511 mt
= member_table
+ SIZEOF_AR_HDR_BIG
;
2512 memcpy (mt
, XCOFFARFMAG
, SXCOFFARFMAG
);
2515 PRINT20 (mt
, count
);
2516 mt
+= XCOFFARMAGBIG_ELEMENT_SIZE
;
2517 for (i
= 0; i
< (size_t) count
; i
++)
2519 PRINT20 (mt
, offsets
[i
]);
2520 mt
+= XCOFFARMAGBIG_ELEMENT_SIZE
;
2529 for (current_bfd
= abfd
->archive_head
;
2530 current_bfd
!= NULL
;
2531 current_bfd
= current_bfd
->archive_next
)
2536 name
= normalize_filename (current_bfd
);
2537 namlen
= sprintf (mt
, "%s", name
);
2541 if (bfd_bwrite (member_table
, member_table_size
, abfd
) != member_table_size
)
2544 free (member_table
);
2546 PRINT20 (fhdr
.memoff
, nextoff
);
2549 nextoff
+= member_table_size
;
2551 /* Write out the armap, if appropriate. */
2553 if (! makemap
|| ! hasobjects
)
2554 PRINT20 (fhdr
.symoff
, 0);
2557 BFD_ASSERT (nextoff
== bfd_tell (abfd
));
2559 /* Save nextoff in fhdr.symoff so the armap routine can use it. */
2560 PRINT20 (fhdr
.symoff
, nextoff
);
2562 bfd_ardata (abfd
)->tdata
= (PTR
) &fhdr
;
2563 if (! _bfd_compute_and_write_armap (abfd
, 0))
2567 /* Write out the archive file header. */
2569 if (bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
) != 0
2570 || (bfd_bwrite ((PTR
) &fhdr
, (bfd_size_type
) SIZEOF_AR_FILE_HDR_BIG
,
2571 abfd
) != SIZEOF_AR_FILE_HDR_BIG
))
2578 _bfd_xcoff_write_archive_contents (abfd
)
2581 if (! xcoff_big_format_p (abfd
))
2582 return xcoff_write_archive_contents_old (abfd
);
2584 return xcoff_write_archive_contents_big (abfd
);
2587 /* We can't use the usual coff_sizeof_headers routine, because AIX
2588 always uses an a.out header. */
2591 _bfd_xcoff_sizeof_headers (bfd
*abfd
,
2592 struct bfd_link_info
*info ATTRIBUTE_UNUSED
)
2597 if (xcoff_data (abfd
)->full_aouthdr
)
2600 size
+= SMALL_AOUTSZ
;
2601 size
+= abfd
->section_count
* SCNHSZ
;
2605 /* Routines to swap information in the XCOFF .loader section. If we
2606 ever need to write an XCOFF loader, this stuff will need to be
2607 moved to another file shared by the linker (which XCOFF calls the
2608 ``binder'') and the loader. */
2610 /* Swap in the ldhdr structure. */
2613 xcoff_swap_ldhdr_in (abfd
, s
, dst
)
2616 struct internal_ldhdr
*dst
;
2618 const struct external_ldhdr
*src
= (const struct external_ldhdr
*) s
;
2620 dst
->l_version
= bfd_get_32 (abfd
, src
->l_version
);
2621 dst
->l_nsyms
= bfd_get_32 (abfd
, src
->l_nsyms
);
2622 dst
->l_nreloc
= bfd_get_32 (abfd
, src
->l_nreloc
);
2623 dst
->l_istlen
= bfd_get_32 (abfd
, src
->l_istlen
);
2624 dst
->l_nimpid
= bfd_get_32 (abfd
, src
->l_nimpid
);
2625 dst
->l_impoff
= bfd_get_32 (abfd
, src
->l_impoff
);
2626 dst
->l_stlen
= bfd_get_32 (abfd
, src
->l_stlen
);
2627 dst
->l_stoff
= bfd_get_32 (abfd
, src
->l_stoff
);
2630 /* Swap out the ldhdr structure. */
2633 xcoff_swap_ldhdr_out (abfd
, src
, d
)
2635 const struct internal_ldhdr
*src
;
2638 struct external_ldhdr
*dst
= (struct external_ldhdr
*) d
;
2640 bfd_put_32 (abfd
, (bfd_vma
) src
->l_version
, dst
->l_version
);
2641 bfd_put_32 (abfd
, src
->l_nsyms
, dst
->l_nsyms
);
2642 bfd_put_32 (abfd
, src
->l_nreloc
, dst
->l_nreloc
);
2643 bfd_put_32 (abfd
, src
->l_istlen
, dst
->l_istlen
);
2644 bfd_put_32 (abfd
, src
->l_nimpid
, dst
->l_nimpid
);
2645 bfd_put_32 (abfd
, src
->l_impoff
, dst
->l_impoff
);
2646 bfd_put_32 (abfd
, src
->l_stlen
, dst
->l_stlen
);
2647 bfd_put_32 (abfd
, src
->l_stoff
, dst
->l_stoff
);
2650 /* Swap in the ldsym structure. */
2653 xcoff_swap_ldsym_in (abfd
, s
, dst
)
2656 struct internal_ldsym
*dst
;
2658 const struct external_ldsym
*src
= (const struct external_ldsym
*) s
;
2660 if (bfd_get_32 (abfd
, src
->_l
._l_l
._l_zeroes
) != 0) {
2661 memcpy (dst
->_l
._l_name
, src
->_l
._l_name
, SYMNMLEN
);
2663 dst
->_l
._l_l
._l_zeroes
= 0;
2664 dst
->_l
._l_l
._l_offset
= bfd_get_32 (abfd
, src
->_l
._l_l
._l_offset
);
2666 dst
->l_value
= bfd_get_32 (abfd
, src
->l_value
);
2667 dst
->l_scnum
= bfd_get_16 (abfd
, src
->l_scnum
);
2668 dst
->l_smtype
= bfd_get_8 (abfd
, src
->l_smtype
);
2669 dst
->l_smclas
= bfd_get_8 (abfd
, src
->l_smclas
);
2670 dst
->l_ifile
= bfd_get_32 (abfd
, src
->l_ifile
);
2671 dst
->l_parm
= bfd_get_32 (abfd
, src
->l_parm
);
2674 /* Swap out the ldsym structure. */
2677 xcoff_swap_ldsym_out (abfd
, src
, d
)
2679 const struct internal_ldsym
*src
;
2682 struct external_ldsym
*dst
= (struct external_ldsym
*) d
;
2684 if (src
->_l
._l_l
._l_zeroes
!= 0)
2685 memcpy (dst
->_l
._l_name
, src
->_l
._l_name
, SYMNMLEN
);
2688 bfd_put_32 (abfd
, (bfd_vma
) 0, dst
->_l
._l_l
._l_zeroes
);
2689 bfd_put_32 (abfd
, (bfd_vma
) src
->_l
._l_l
._l_offset
,
2690 dst
->_l
._l_l
._l_offset
);
2692 bfd_put_32 (abfd
, src
->l_value
, dst
->l_value
);
2693 bfd_put_16 (abfd
, (bfd_vma
) src
->l_scnum
, dst
->l_scnum
);
2694 bfd_put_8 (abfd
, src
->l_smtype
, dst
->l_smtype
);
2695 bfd_put_8 (abfd
, src
->l_smclas
, dst
->l_smclas
);
2696 bfd_put_32 (abfd
, src
->l_ifile
, dst
->l_ifile
);
2697 bfd_put_32 (abfd
, src
->l_parm
, dst
->l_parm
);
2701 xcoff_swap_reloc_in (abfd
, s
, d
)
2706 struct external_reloc
*src
= (struct external_reloc
*) s
;
2707 struct internal_reloc
*dst
= (struct internal_reloc
*) d
;
2709 memset (dst
, 0, sizeof (struct internal_reloc
));
2711 dst
->r_vaddr
= bfd_get_32 (abfd
, src
->r_vaddr
);
2712 dst
->r_symndx
= bfd_get_32 (abfd
, src
->r_symndx
);
2713 dst
->r_size
= bfd_get_8 (abfd
, src
->r_size
);
2714 dst
->r_type
= bfd_get_8 (abfd
, src
->r_type
);
2718 xcoff_swap_reloc_out (abfd
, s
, d
)
2723 struct internal_reloc
*src
= (struct internal_reloc
*) s
;
2724 struct external_reloc
*dst
= (struct external_reloc
*) d
;
2726 bfd_put_32 (abfd
, src
->r_vaddr
, dst
->r_vaddr
);
2727 bfd_put_32 (abfd
, src
->r_symndx
, dst
->r_symndx
);
2728 bfd_put_8 (abfd
, src
->r_type
, dst
->r_type
);
2729 bfd_put_8 (abfd
, src
->r_size
, dst
->r_size
);
2731 return bfd_coff_relsz (abfd
);
2734 /* Swap in the ldrel structure. */
2737 xcoff_swap_ldrel_in (abfd
, s
, dst
)
2740 struct internal_ldrel
*dst
;
2742 const struct external_ldrel
*src
= (const struct external_ldrel
*) s
;
2744 dst
->l_vaddr
= bfd_get_32 (abfd
, src
->l_vaddr
);
2745 dst
->l_symndx
= bfd_get_32 (abfd
, src
->l_symndx
);
2746 dst
->l_rtype
= bfd_get_16 (abfd
, src
->l_rtype
);
2747 dst
->l_rsecnm
= bfd_get_16 (abfd
, src
->l_rsecnm
);
2750 /* Swap out the ldrel structure. */
2753 xcoff_swap_ldrel_out (abfd
, src
, d
)
2755 const struct internal_ldrel
*src
;
2758 struct external_ldrel
*dst
= (struct external_ldrel
*) d
;
2760 bfd_put_32 (abfd
, src
->l_vaddr
, dst
->l_vaddr
);
2761 bfd_put_32 (abfd
, src
->l_symndx
, dst
->l_symndx
);
2762 bfd_put_16 (abfd
, (bfd_vma
) src
->l_rtype
, dst
->l_rtype
);
2763 bfd_put_16 (abfd
, (bfd_vma
) src
->l_rsecnm
, dst
->l_rsecnm
);
2768 xcoff_reloc_type_noop (input_bfd
, input_section
, output_bfd
, rel
, sym
, howto
,
2769 val
, addend
, relocation
, contents
)
2770 bfd
*input_bfd ATTRIBUTE_UNUSED
;
2771 asection
*input_section ATTRIBUTE_UNUSED
;
2772 bfd
*output_bfd ATTRIBUTE_UNUSED
;
2773 struct internal_reloc
*rel ATTRIBUTE_UNUSED
;
2774 struct internal_syment
*sym ATTRIBUTE_UNUSED
;
2775 struct reloc_howto_struct
*howto ATTRIBUTE_UNUSED
;
2776 bfd_vma val ATTRIBUTE_UNUSED
;
2777 bfd_vma addend ATTRIBUTE_UNUSED
;
2778 bfd_vma
*relocation ATTRIBUTE_UNUSED
;
2779 bfd_byte
*contents ATTRIBUTE_UNUSED
;
2785 xcoff_reloc_type_fail (input_bfd
, input_section
, output_bfd
, rel
, sym
, howto
,
2786 val
, addend
, relocation
, contents
)
2788 asection
*input_section ATTRIBUTE_UNUSED
;
2789 bfd
*output_bfd ATTRIBUTE_UNUSED
;
2790 struct internal_reloc
*rel
;
2791 struct internal_syment
*sym ATTRIBUTE_UNUSED
;
2792 struct reloc_howto_struct
*howto ATTRIBUTE_UNUSED
;
2793 bfd_vma val ATTRIBUTE_UNUSED
;
2794 bfd_vma addend ATTRIBUTE_UNUSED
;
2795 bfd_vma
*relocation ATTRIBUTE_UNUSED
;
2796 bfd_byte
*contents ATTRIBUTE_UNUSED
;
2798 (*_bfd_error_handler
)
2799 (_("%s: unsupported relocation type 0x%02x"),
2800 bfd_get_filename (input_bfd
), (unsigned int) rel
->r_type
);
2801 bfd_set_error (bfd_error_bad_value
);
2806 xcoff_reloc_type_pos (input_bfd
, input_section
, output_bfd
, rel
, sym
, howto
,
2807 val
, addend
, relocation
, contents
)
2808 bfd
*input_bfd ATTRIBUTE_UNUSED
;
2809 asection
*input_section ATTRIBUTE_UNUSED
;
2810 bfd
*output_bfd ATTRIBUTE_UNUSED
;
2811 struct internal_reloc
*rel ATTRIBUTE_UNUSED
;
2812 struct internal_syment
*sym ATTRIBUTE_UNUSED
;
2813 struct reloc_howto_struct
*howto ATTRIBUTE_UNUSED
;
2816 bfd_vma
*relocation
;
2817 bfd_byte
*contents ATTRIBUTE_UNUSED
;
2819 *relocation
= val
+ addend
;
2824 xcoff_reloc_type_neg (input_bfd
, input_section
, output_bfd
, rel
, sym
, howto
,
2825 val
, addend
, relocation
, contents
)
2826 bfd
*input_bfd ATTRIBUTE_UNUSED
;
2827 asection
*input_section ATTRIBUTE_UNUSED
;
2828 bfd
*output_bfd ATTRIBUTE_UNUSED
;
2829 struct internal_reloc
*rel ATTRIBUTE_UNUSED
;
2830 struct internal_syment
*sym ATTRIBUTE_UNUSED
;
2831 struct reloc_howto_struct
*howto ATTRIBUTE_UNUSED
;
2834 bfd_vma
*relocation
;
2835 bfd_byte
*contents ATTRIBUTE_UNUSED
;
2837 *relocation
= addend
- val
;
2842 xcoff_reloc_type_rel (input_bfd
, input_section
, output_bfd
, rel
, sym
, howto
,
2843 val
, addend
, relocation
, contents
)
2844 bfd
*input_bfd ATTRIBUTE_UNUSED
;
2845 asection
*input_section
;
2846 bfd
*output_bfd ATTRIBUTE_UNUSED
;
2847 struct internal_reloc
*rel ATTRIBUTE_UNUSED
;
2848 struct internal_syment
*sym ATTRIBUTE_UNUSED
;
2849 struct reloc_howto_struct
*howto
;
2852 bfd_vma
*relocation
;
2853 bfd_byte
*contents ATTRIBUTE_UNUSED
;
2855 howto
->pc_relative
= TRUE
;
2857 /* A PC relative reloc includes the section address. */
2858 addend
+= input_section
->vma
;
2860 *relocation
= val
+ addend
;
2861 *relocation
-= (input_section
->output_section
->vma
2862 + input_section
->output_offset
);
2867 xcoff_reloc_type_toc (input_bfd
, input_section
, output_bfd
, rel
, sym
, howto
,
2868 val
, addend
, relocation
, contents
)
2870 asection
*input_section ATTRIBUTE_UNUSED
;
2872 struct internal_reloc
*rel
;
2873 struct internal_syment
*sym
;
2874 struct reloc_howto_struct
*howto ATTRIBUTE_UNUSED
;
2876 bfd_vma addend ATTRIBUTE_UNUSED
;
2877 bfd_vma
*relocation
;
2878 bfd_byte
*contents ATTRIBUTE_UNUSED
;
2880 struct xcoff_link_hash_entry
*h
;
2882 if (0 > rel
->r_symndx
)
2885 h
= obj_xcoff_sym_hashes (input_bfd
)[rel
->r_symndx
];
2887 if (h
!= NULL
&& h
->smclas
!= XMC_TD
)
2889 if (h
->toc_section
== NULL
)
2891 (*_bfd_error_handler
)
2892 (_("%s: TOC reloc at 0x%x to symbol `%s' with no TOC entry"),
2893 bfd_get_filename (input_bfd
), rel
->r_vaddr
,
2894 h
->root
.root
.string
);
2895 bfd_set_error (bfd_error_bad_value
);
2899 BFD_ASSERT ((h
->flags
& XCOFF_SET_TOC
) == 0);
2900 val
= (h
->toc_section
->output_section
->vma
2901 + h
->toc_section
->output_offset
);
2904 *relocation
= ((val
- xcoff_data (output_bfd
)->toc
)
2905 - (sym
->n_value
- xcoff_data (input_bfd
)->toc
));
2910 xcoff_reloc_type_ba (input_bfd
, input_section
, output_bfd
, rel
, sym
, howto
,
2911 val
, addend
, relocation
, contents
)
2912 bfd
*input_bfd ATTRIBUTE_UNUSED
;
2913 asection
*input_section ATTRIBUTE_UNUSED
;
2914 bfd
*output_bfd ATTRIBUTE_UNUSED
;
2915 struct internal_reloc
*rel ATTRIBUTE_UNUSED
;
2916 struct internal_syment
*sym ATTRIBUTE_UNUSED
;
2917 struct reloc_howto_struct
*howto
;
2920 bfd_vma
*relocation
;
2921 bfd_byte
*contents ATTRIBUTE_UNUSED
;
2923 howto
->src_mask
&= ~3;
2924 howto
->dst_mask
= howto
->src_mask
;
2926 *relocation
= val
+ addend
;
2932 xcoff_reloc_type_br (input_bfd
, input_section
, output_bfd
, rel
, sym
, howto
,
2933 val
, addend
, relocation
, contents
)
2935 asection
*input_section
;
2936 bfd
*output_bfd ATTRIBUTE_UNUSED
;
2937 struct internal_reloc
*rel
;
2938 struct internal_syment
*sym ATTRIBUTE_UNUSED
;
2939 struct reloc_howto_struct
*howto
;
2942 bfd_vma
*relocation
;
2945 struct xcoff_link_hash_entry
*h
;
2947 if (0 > rel
->r_symndx
)
2950 h
= obj_xcoff_sym_hashes (input_bfd
)[rel
->r_symndx
];
2952 /* If we see an R_BR or R_RBR reloc which is jumping to global
2953 linkage code, and it is followed by an appropriate cror nop
2954 instruction, we replace the cror with lwz r2,20(r1). This
2955 restores the TOC after the glink code. Contrariwise, if the
2956 call is followed by a lwz r2,20(r1), but the call is not
2957 going to global linkage code, we can replace the load with a
2960 && bfd_link_hash_defined
== h
->root
.type
2961 && rel
->r_vaddr
- input_section
->vma
+ 8 <= input_section
->size
)
2966 pnext
= contents
+ (rel
->r_vaddr
- input_section
->vma
) + 4;
2967 next
= bfd_get_32 (input_bfd
, pnext
);
2969 /* The _ptrgl function is magic. It is used by the AIX
2970 compiler to call a function through a pointer. */
2971 if (h
->smclas
== XMC_GL
|| strcmp (h
->root
.root
.string
, "._ptrgl") == 0)
2973 if (next
== 0x4def7b82 /* cror 15,15,15 */
2974 || next
== 0x4ffffb82 /* cror 31,31,31 */
2975 || next
== 0x60000000) /* ori r0,r0,0 */
2976 bfd_put_32 (input_bfd
, 0x80410014, pnext
); /* lwz r1,20(r1) */
2981 if (next
== 0x80410014) /* lwz r1,20(r1) */
2982 bfd_put_32 (input_bfd
, 0x60000000, pnext
); /* ori r0,r0,0 */
2985 else if (NULL
!= h
&& bfd_link_hash_undefined
== h
->root
.type
)
2987 /* Normally, this relocation is against a defined symbol. In the
2988 case where this is a partial link and the output section offset
2989 is greater than 2^25, the linker will return an invalid error
2990 message that the relocation has been truncated. Yes it has been
2991 truncated but no it not important. For this case, disable the
2992 overflow checking. */
2994 howto
->complain_on_overflow
= complain_overflow_dont
;
2997 howto
->pc_relative
= TRUE
;
2998 howto
->src_mask
&= ~3;
2999 howto
->dst_mask
= howto
->src_mask
;
3001 /* A PC relative reloc includes the section address. */
3002 addend
+= input_section
->vma
;
3004 *relocation
= val
+ addend
;
3005 *relocation
-= (input_section
->output_section
->vma
3006 + input_section
->output_offset
);
3011 xcoff_reloc_type_crel (input_bfd
, input_section
, output_bfd
, rel
, sym
, howto
,
3012 val
, addend
, relocation
, contents
)
3013 bfd
*input_bfd ATTRIBUTE_UNUSED
;
3014 asection
*input_section
;
3015 bfd
*output_bfd ATTRIBUTE_UNUSED
;
3016 struct internal_reloc
*rel ATTRIBUTE_UNUSED
;
3017 struct internal_syment
*sym ATTRIBUTE_UNUSED
;
3018 struct reloc_howto_struct
*howto
;
3019 bfd_vma val ATTRIBUTE_UNUSED
;
3021 bfd_vma
*relocation
;
3022 bfd_byte
*contents ATTRIBUTE_UNUSED
;
3024 howto
->pc_relative
= TRUE
;
3025 howto
->src_mask
&= ~3;
3026 howto
->dst_mask
= howto
->src_mask
;
3028 /* A PC relative reloc includes the section address. */
3029 addend
+= input_section
->vma
;
3031 *relocation
= val
+ addend
;
3032 *relocation
-= (input_section
->output_section
->vma
3033 + input_section
->output_offset
);
3038 xcoff_complain_overflow_dont_func (input_bfd
, val
, relocation
, howto
)
3039 bfd
*input_bfd ATTRIBUTE_UNUSED
;
3040 bfd_vma val ATTRIBUTE_UNUSED
;
3041 bfd_vma relocation ATTRIBUTE_UNUSED
;
3042 struct reloc_howto_struct
*howto ATTRIBUTE_UNUSED
;
3048 xcoff_complain_overflow_bitfield_func (input_bfd
, val
, relocation
, howto
)
3052 struct reloc_howto_struct
*howto
;
3054 bfd_vma addrmask
, fieldmask
, signmask
, ss
;
3057 /* Get the values to be added together. For signed and unsigned
3058 relocations, we assume that all values should be truncated to
3059 the size of an address. For bitfields, all the bits matter.
3060 See also bfd_check_overflow. */
3061 fieldmask
= N_ONES (howto
->bitsize
);
3062 addrmask
= N_ONES (bfd_arch_bits_per_address (input_bfd
)) | fieldmask
;
3064 b
= val
& howto
->src_mask
;
3066 /* Much like unsigned, except no trimming with addrmask. In
3067 addition, the sum overflows if there is a carry out of
3068 the bfd_vma, i.e., the sum is less than either input
3070 a
>>= howto
->rightshift
;
3071 b
>>= howto
->bitpos
;
3073 /* Bitfields are sometimes used for signed numbers; for
3074 example, a 13-bit field sometimes represents values in
3075 0..8191 and sometimes represents values in -4096..4095.
3076 If the field is signed and a is -4095 (0x1001) and b is
3077 -1 (0x1fff), the sum is -4096 (0x1000), but (0x1001 +
3078 0x1fff is 0x3000). It's not clear how to handle this
3079 everywhere, since there is not way to know how many bits
3080 are significant in the relocation, but the original code
3081 assumed that it was fully sign extended, and we will keep
3083 signmask
= (fieldmask
>> 1) + 1;
3085 if ((a
& ~ fieldmask
) != 0)
3087 /* Some bits out of the field are set. This might not
3088 be a problem: if this is a signed bitfield, it is OK
3089 iff all the high bits are set, including the sign
3090 bit. We'll try setting all but the most significant
3091 bit in the original relocation value: if this is all
3092 ones, we are OK, assuming a signed bitfield. */
3093 ss
= (signmask
<< howto
->rightshift
) - 1;
3094 if ((ss
| relocation
) != ~ (bfd_vma
) 0)
3099 /* We just assume (b & ~ fieldmask) == 0. */
3101 /* We explicitly permit wrap around if this relocation
3102 covers the high bit of an address. The Linux kernel
3103 relies on it, and it is the only way to write assembler
3104 code which can run when loaded at a location 0x80000000
3105 away from the location at which it is linked. */
3106 if (howto
->bitsize
+ howto
->rightshift
3107 == bfd_arch_bits_per_address (input_bfd
))
3111 if (sum
< a
|| (sum
& ~ fieldmask
) != 0)
3113 /* There was a carry out, or the field overflow. Test
3114 for signed operands again. Here is the overflow test
3115 is as for complain_overflow_signed. */
3116 if (((~ (a
^ b
)) & (a
^ sum
)) & signmask
)
3124 xcoff_complain_overflow_signed_func (input_bfd
, val
, relocation
, howto
)
3128 struct reloc_howto_struct
*howto
;
3130 bfd_vma addrmask
, fieldmask
, signmask
, ss
;
3133 /* Get the values to be added together. For signed and unsigned
3134 relocations, we assume that all values should be truncated to
3135 the size of an address. For bitfields, all the bits matter.
3136 See also bfd_check_overflow. */
3137 fieldmask
= N_ONES (howto
->bitsize
);
3138 addrmask
= N_ONES (bfd_arch_bits_per_address (input_bfd
)) | fieldmask
;
3140 b
= val
& howto
->src_mask
;
3142 a
= (a
& addrmask
) >> howto
->rightshift
;
3144 /* If any sign bits are set, all sign bits must be set.
3145 That is, A must be a valid negative address after
3147 signmask
= ~ (fieldmask
>> 1);
3149 if (ss
!= 0 && ss
!= ((addrmask
>> howto
->rightshift
) & signmask
))
3152 /* We only need this next bit of code if the sign bit of B
3153 is below the sign bit of A. This would only happen if
3154 SRC_MASK had fewer bits than BITSIZE. Note that if
3155 SRC_MASK has more bits than BITSIZE, we can get into
3156 trouble; we would need to verify that B is in range, as
3157 we do for A above. */
3158 signmask
= ((~ howto
->src_mask
) >> 1) & howto
->src_mask
;
3159 if ((b
& signmask
) != 0)
3161 /* Set all the bits above the sign bit. */
3162 b
-= signmask
<<= 1;
3165 b
= (b
& addrmask
) >> howto
->bitpos
;
3167 /* Now we can do the addition. */
3170 /* See if the result has the correct sign. Bits above the
3171 sign bit are junk now; ignore them. If the sum is
3172 positive, make sure we did not have all negative inputs;
3173 if the sum is negative, make sure we did not have all
3174 positive inputs. The test below looks only at the sign
3175 bits, and it really just
3176 SIGN (A) == SIGN (B) && SIGN (A) != SIGN (SUM)
3178 signmask
= (fieldmask
>> 1) + 1;
3179 if (((~ (a
^ b
)) & (a
^ sum
)) & signmask
)
3186 xcoff_complain_overflow_unsigned_func (input_bfd
, val
, relocation
, howto
)
3190 struct reloc_howto_struct
*howto
;
3192 bfd_vma addrmask
, fieldmask
;
3195 /* Get the values to be added together. For signed and unsigned
3196 relocations, we assume that all values should be truncated to
3197 the size of an address. For bitfields, all the bits matter.
3198 See also bfd_check_overflow. */
3199 fieldmask
= N_ONES (howto
->bitsize
);
3200 addrmask
= N_ONES (bfd_arch_bits_per_address (input_bfd
)) | fieldmask
;
3202 b
= val
& howto
->src_mask
;
3204 /* Checking for an unsigned overflow is relatively easy:
3205 trim the addresses and add, and trim the result as well.
3206 Overflow is normally indicated when the result does not
3207 fit in the field. However, we also need to consider the
3208 case when, e.g., fieldmask is 0x7fffffff or smaller, an
3209 input is 0x80000000, and bfd_vma is only 32 bits; then we
3210 will get sum == 0, but there is an overflow, since the
3211 inputs did not fit in the field. Instead of doing a
3212 separate test, we can check for this by or-ing in the
3213 operands when testing for the sum overflowing its final
3215 a
= (a
& addrmask
) >> howto
->rightshift
;
3216 b
= (b
& addrmask
) >> howto
->bitpos
;
3217 sum
= (a
+ b
) & addrmask
;
3218 if ((a
| b
| sum
) & ~ fieldmask
)
3224 /* This is the relocation function for the RS/6000/POWER/PowerPC.
3225 This is currently the only processor which uses XCOFF; I hope that
3228 I took the relocation type definitions from two documents:
3229 the PowerPC AIX Version 4 Application Binary Interface, First
3230 Edition (April 1992), and the PowerOpen ABI, Big-Endian
3231 32-Bit Hardware Implementation (June 30, 1994). Differences
3232 between the documents are noted below.
3234 Unsupported r_type's
3240 These relocs are defined by the PowerPC ABI to be
3241 relative branches which use half of the difference
3242 between the symbol and the program counter. I can't
3243 quite figure out when this is useful. These relocs are
3244 not defined by the PowerOpen ABI.
3249 Simple positive relocation.
3252 Simple negative relocation.
3255 Simple PC relative relocation.
3258 TOC relative relocation. The value in the instruction in
3259 the input file is the offset from the input file TOC to
3260 the desired location. We want the offset from the final
3261 TOC to the desired location. We have:
3266 so we must change insn by on - in.
3269 GL linkage relocation. The value of this relocation
3270 is the address of the entry in the TOC section.
3273 Local object TOC address. I can't figure out the
3274 difference between this and case R_GL.
3277 TOC relative relocation. A TOC relative load instruction
3278 which may be changed to a load address instruction.
3279 FIXME: We don't currently implement this optimization.
3282 TOC relative relocation. This is a TOC relative load
3283 address instruction which may be changed to a load
3284 instruction. FIXME: I don't know if this is the correct
3288 Absolute branch. We don't want to mess with the lower
3289 two bits of the instruction.
3292 The PowerPC ABI defines this as an absolute call which
3293 may be modified to become a relative call. The PowerOpen
3294 ABI does not define this relocation type.
3297 Absolute branch which may be modified to become a
3301 The PowerPC ABI defines this as an absolute branch to a
3302 fixed address which may be modified to an absolute branch
3303 to a symbol. The PowerOpen ABI does not define this
3307 The PowerPC ABI defines this as an absolute branch to a
3308 fixed address which may be modified to a relative branch.
3309 The PowerOpen ABI does not define this relocation type.
3312 Relative branch. We don't want to mess with the lower
3313 two bits of the instruction.
3316 The PowerPC ABI defines this as a relative call which may
3317 be modified to become an absolute call. The PowerOpen
3318 ABI does not define this relocation type.
3321 A relative branch which may be modified to become an
3322 absolute branch. FIXME: We don't implement this,
3323 although we should for symbols of storage mapping class
3327 The PowerPC AIX ABI describes this as a load which may be
3328 changed to a load address. The PowerOpen ABI says this
3329 is the same as case R_POS.
3332 The PowerPC AIX ABI describes this as a load address
3333 which may be changed to a load. The PowerOpen ABI says
3334 this is the same as R_POS.
3338 xcoff_ppc_relocate_section (output_bfd
, info
, input_bfd
,
3339 input_section
, contents
, relocs
, syms
,
3342 struct bfd_link_info
*info
;
3344 asection
*input_section
;
3346 struct internal_reloc
*relocs
;
3347 struct internal_syment
*syms
;
3348 asection
**sections
;
3350 struct internal_reloc
*rel
;
3351 struct internal_reloc
*relend
;
3354 relend
= rel
+ input_section
->reloc_count
;
3355 for (; rel
< relend
; rel
++)
3358 struct xcoff_link_hash_entry
*h
;
3359 struct internal_syment
*sym
;
3362 struct reloc_howto_struct howto
;
3364 bfd_vma value_to_relocate
;
3368 /* Relocation type R_REF is a special relocation type which is
3369 merely used to prevent garbage collection from occurring for
3370 the csect including the symbol which it references. */
3371 if (rel
->r_type
== R_REF
)
3375 howto
.type
= rel
->r_type
;
3376 howto
.rightshift
= 0;
3377 howto
.bitsize
= (rel
->r_size
& 0x1f) + 1;
3378 howto
.size
= howto
.bitsize
> 16 ? 2 : 1;
3379 howto
.pc_relative
= FALSE
;
3381 howto
.complain_on_overflow
= (rel
->r_size
& 0x80
3382 ? complain_overflow_signed
3383 : complain_overflow_bitfield
);
3384 howto
.special_function
= NULL
;
3385 howto
.name
= "internal";
3386 howto
.partial_inplace
= TRUE
;
3387 howto
.src_mask
= howto
.dst_mask
= N_ONES (howto
.bitsize
);
3388 howto
.pcrel_offset
= FALSE
;
3395 symndx
= rel
->r_symndx
;
3401 h
= obj_xcoff_sym_hashes (input_bfd
)[symndx
];
3402 sym
= syms
+ symndx
;
3403 addend
= - sym
->n_value
;
3407 sec
= sections
[symndx
];
3408 /* Hack to make sure we use the right TOC anchor value
3409 if this reloc is against the TOC anchor. */
3410 if (sec
->name
[3] == '0'
3411 && strcmp (sec
->name
, ".tc0") == 0)
3412 val
= xcoff_data (output_bfd
)->toc
;
3414 val
= (sec
->output_section
->vma
3415 + sec
->output_offset
3421 if (h
->root
.type
== bfd_link_hash_defined
3422 || h
->root
.type
== bfd_link_hash_defweak
)
3424 sec
= h
->root
.u
.def
.section
;
3425 val
= (h
->root
.u
.def
.value
3426 + sec
->output_section
->vma
3427 + sec
->output_offset
);
3429 else if (h
->root
.type
== bfd_link_hash_common
)
3431 sec
= h
->root
.u
.c
.p
->section
;
3432 val
= (sec
->output_section
->vma
3433 + sec
->output_offset
);
3436 else if ((0 == (h
->flags
& (XCOFF_DEF_DYNAMIC
| XCOFF_IMPORT
)))
3437 && ! info
->relocatable
)
3439 if (! ((*info
->callbacks
->undefined_symbol
)
3440 (info
, h
->root
.root
.string
, input_bfd
, input_section
,
3441 rel
->r_vaddr
- input_section
->vma
, TRUE
)))
3444 /* Don't try to process the reloc. It can't help, and
3445 it may generate another error. */
3451 if (rel
->r_type
>= XCOFF_MAX_CALCULATE_RELOCATION
3452 || !((*xcoff_calculate_relocation
[rel
->r_type
])
3453 (input_bfd
, input_section
, output_bfd
, rel
, sym
, &howto
, val
,
3454 addend
, &relocation
, contents
)))
3458 address
= rel
->r_vaddr
- input_section
->vma
;
3459 location
= contents
+ address
;
3461 if (address
> input_section
->size
)
3464 /* Get the value we are going to relocate. */
3465 if (1 == howto
.size
)
3466 value_to_relocate
= bfd_get_16 (input_bfd
, location
);
3468 value_to_relocate
= bfd_get_32 (input_bfd
, location
);
3472 FIXME: We may drop bits during the addition
3473 which we don't check for. We must either check at every single
3474 operation, which would be tedious, or we must do the computations
3475 in a type larger than bfd_vma, which would be inefficient. */
3477 if ((unsigned int) howto
.complain_on_overflow
3478 >= XCOFF_MAX_COMPLAIN_OVERFLOW
)
3481 if (((*xcoff_complain_overflow
[howto
.complain_on_overflow
])
3482 (input_bfd
, value_to_relocate
, relocation
, &howto
)))
3485 char buf
[SYMNMLEN
+ 1];
3486 char reloc_type_name
[10];
3498 name
= _bfd_coff_internal_syment_name (input_bfd
, sym
, buf
);
3502 sprintf (reloc_type_name
, "0x%02x", rel
->r_type
);
3504 if (! ((*info
->callbacks
->reloc_overflow
)
3505 (info
, (h
? &h
->root
: NULL
), name
, reloc_type_name
,
3506 (bfd_vma
) 0, input_bfd
, input_section
,
3507 rel
->r_vaddr
- input_section
->vma
)))
3511 /* Add RELOCATION to the right bits of VALUE_TO_RELOCATE. */
3512 value_to_relocate
= ((value_to_relocate
& ~howto
.dst_mask
)
3513 | (((value_to_relocate
& howto
.src_mask
)
3514 + relocation
) & howto
.dst_mask
));
3516 /* Put the value back in the object file. */
3517 if (1 == howto
.size
)
3518 bfd_put_16 (input_bfd
, value_to_relocate
, location
);
3520 bfd_put_32 (input_bfd
, value_to_relocate
, location
);
3527 _bfd_xcoff_put_ldsymbol_name (abfd
, ldinfo
, ldsym
, name
)
3528 bfd
*abfd ATTRIBUTE_UNUSED
;
3529 struct xcoff_loader_info
*ldinfo
;
3530 struct internal_ldsym
*ldsym
;
3534 len
= strlen (name
);
3536 if (len
<= SYMNMLEN
)
3537 strncpy (ldsym
->_l
._l_name
, name
, SYMNMLEN
);
3540 if (ldinfo
->string_size
+ len
+ 3 > ldinfo
->string_alc
)
3542 bfd_size_type newalc
;
3545 newalc
= ldinfo
->string_alc
* 2;
3548 while (ldinfo
->string_size
+ len
+ 3 > newalc
)
3551 newstrings
= bfd_realloc (ldinfo
->strings
, newalc
);
3552 if (newstrings
== NULL
)
3554 ldinfo
->failed
= TRUE
;
3557 ldinfo
->string_alc
= newalc
;
3558 ldinfo
->strings
= newstrings
;
3561 bfd_put_16 (ldinfo
->output_bfd
, (bfd_vma
) (len
+ 1),
3562 ldinfo
->strings
+ ldinfo
->string_size
);
3563 strcpy (ldinfo
->strings
+ ldinfo
->string_size
+ 2, name
);
3564 ldsym
->_l
._l_l
._l_zeroes
= 0;
3565 ldsym
->_l
._l_l
._l_offset
= ldinfo
->string_size
+ 2;
3566 ldinfo
->string_size
+= len
+ 3;
3573 _bfd_xcoff_put_symbol_name (bfd
*abfd
, struct bfd_strtab_hash
*strtab
,
3574 struct internal_syment
*sym
,
3577 if (strlen (name
) <= SYMNMLEN
)
3579 strncpy (sym
->_n
._n_name
, name
, SYMNMLEN
);
3587 if ((abfd
->flags
& BFD_TRADITIONAL_FORMAT
) != 0)
3589 indx
= _bfd_stringtab_add (strtab
, name
, hash
, FALSE
);
3590 if (indx
== (bfd_size_type
) -1)
3592 sym
->_n
._n_n
._n_zeroes
= 0;
3593 sym
->_n
._n_n
._n_offset
= STRING_SIZE_SIZE
+ indx
;
3599 xcoff_create_csect_from_smclas (abfd
, aux
, symbol_name
)
3601 union internal_auxent
*aux
;
3602 const char *symbol_name
;
3604 asection
*return_value
= NULL
;
3606 /* .sv64 = x_smclas == 17
3607 This is an invalid csect for 32 bit apps. */
3608 static const char *names
[19] =
3610 ".pr", ".ro", ".db", ".tc", ".ua", ".rw", ".gl", ".xo",
3611 ".sv", ".bs", ".ds", ".uc", ".ti", ".tb", NULL
, ".tc0",
3612 ".td", NULL
, ".sv3264"
3615 if ((19 >= aux
->x_csect
.x_smclas
)
3616 && (NULL
!= names
[aux
->x_csect
.x_smclas
]))
3618 return_value
= bfd_make_section_anyway
3619 (abfd
, names
[aux
->x_csect
.x_smclas
]);
3623 (*_bfd_error_handler
)
3624 (_("%B: symbol `%s' has unrecognized smclas %d"),
3625 abfd
, symbol_name
, aux
->x_csect
.x_smclas
);
3626 bfd_set_error (bfd_error_bad_value
);
3629 return return_value
;
3633 xcoff_is_lineno_count_overflow (abfd
, value
)
3634 bfd
*abfd ATTRIBUTE_UNUSED
;
3637 if (0xffff <= value
)
3644 xcoff_is_reloc_count_overflow (abfd
, value
)
3645 bfd
*abfd ATTRIBUTE_UNUSED
;
3648 if (0xffff <= value
)
3655 xcoff_loader_symbol_offset (abfd
, ldhdr
)
3657 struct internal_ldhdr
*ldhdr ATTRIBUTE_UNUSED
;
3659 return bfd_xcoff_ldhdrsz (abfd
);
3663 xcoff_loader_reloc_offset (abfd
, ldhdr
)
3665 struct internal_ldhdr
*ldhdr
;
3667 return bfd_xcoff_ldhdrsz (abfd
) + ldhdr
->l_nsyms
* bfd_xcoff_ldsymsz (abfd
);
3671 xcoff_generate_rtinit (abfd
, init
, fini
, rtld
)
3677 bfd_byte filehdr_ext
[FILHSZ
];
3678 bfd_byte scnhdr_ext
[SCNHSZ
];
3679 bfd_byte syment_ext
[SYMESZ
* 10];
3680 bfd_byte reloc_ext
[RELSZ
* 3];
3681 bfd_byte
*data_buffer
;
3682 bfd_size_type data_buffer_size
;
3683 bfd_byte
*string_table
= NULL
, *st_tmp
= NULL
;
3684 bfd_size_type string_table_size
;
3686 size_t initsz
, finisz
;
3687 struct internal_filehdr filehdr
;
3688 struct internal_scnhdr scnhdr
;
3689 struct internal_syment syment
;
3690 union internal_auxent auxent
;
3691 struct internal_reloc reloc
;
3693 char *data_name
= ".data";
3694 char *rtinit_name
= "__rtinit";
3695 char *rtld_name
= "__rtld";
3697 if (! bfd_xcoff_rtinit_size (abfd
))
3700 initsz
= (init
== NULL
? 0 : 1 + strlen (init
));
3701 finisz
= (fini
== NULL
? 0 : 1 + strlen (fini
));
3704 memset (filehdr_ext
, 0, FILHSZ
);
3705 memset (&filehdr
, 0, sizeof (struct internal_filehdr
));
3706 filehdr
.f_magic
= bfd_xcoff_magic_number (abfd
);
3707 filehdr
.f_nscns
= 1;
3708 filehdr
.f_timdat
= 0;
3709 filehdr
.f_nsyms
= 0; /* at least 6, no more than 10 */
3710 filehdr
.f_symptr
= 0; /* set below */
3711 filehdr
.f_opthdr
= 0;
3712 filehdr
.f_flags
= 0;
3714 /* section header */
3715 memset (scnhdr_ext
, 0, SCNHSZ
);
3716 memset (&scnhdr
, 0, sizeof (struct internal_scnhdr
));
3717 memcpy (scnhdr
.s_name
, data_name
, strlen (data_name
));
3720 scnhdr
.s_size
= 0; /* set below */
3721 scnhdr
.s_scnptr
= FILHSZ
+ SCNHSZ
;
3722 scnhdr
.s_relptr
= 0; /* set below */
3723 scnhdr
.s_lnnoptr
= 0;
3724 scnhdr
.s_nreloc
= 0; /* either 1 or 2 */
3726 scnhdr
.s_flags
= STYP_DATA
;
3729 0x0000 0x00000000 : rtl
3730 0x0004 0x00000010 : offset to init, or 0
3731 0x0008 0x00000028 : offset to fini, or 0
3732 0x000C 0x0000000C : size of descriptor
3733 0x0010 0x00000000 : init, needs a reloc
3734 0x0014 0x00000040 : offset to init name
3735 0x0018 0x00000000 : flags, padded to a word
3736 0x001C 0x00000000 : empty init
3739 0x0028 0x00000000 : fini, needs a reloc
3740 0x002C 0x00000??? : offset to fini name
3741 0x0030 0x00000000 : flags, padded to a word
3742 0x0034 0x00000000 : empty fini
3746 0x0040 + initsz fini name */
3748 data_buffer_size
= 0x0040 + initsz
+ finisz
;
3749 data_buffer_size
= (data_buffer_size
+ 7) &~ (bfd_size_type
) 7;
3751 data_buffer
= (bfd_byte
*) bfd_zmalloc (data_buffer_size
);
3752 if (data_buffer
== NULL
)
3758 bfd_h_put_32 (abfd
, val
, &data_buffer
[0x04]);
3760 bfd_h_put_32 (abfd
, val
, &data_buffer
[0x14]);
3761 memcpy (&data_buffer
[val
], init
, initsz
);
3767 bfd_h_put_32 (abfd
, val
, &data_buffer
[0x08]);
3768 val
= 0x40 + initsz
;
3769 bfd_h_put_32 (abfd
, val
, &data_buffer
[0x2C]);
3770 memcpy (&data_buffer
[val
], fini
, finisz
);
3774 bfd_h_put_32 (abfd
, val
, &data_buffer
[0x0C]);
3776 scnhdr
.s_size
= data_buffer_size
;
3779 string_table_size
= 0;
3781 string_table_size
+= initsz
;
3783 string_table_size
+= finisz
;
3784 if (string_table_size
)
3786 string_table_size
+= 4;
3787 string_table
= (bfd_byte
*) bfd_zmalloc (string_table_size
);
3788 if (string_table
== NULL
)
3791 val
= string_table_size
;
3792 bfd_h_put_32 (abfd
, val
, &string_table
[0]);
3793 st_tmp
= string_table
+ 4;
3802 memset (syment_ext
, 0, 10 * SYMESZ
);
3803 memset (reloc_ext
, 0, 3 * RELSZ
);
3806 memset (&syment
, 0, sizeof (struct internal_syment
));
3807 memset (&auxent
, 0, sizeof (union internal_auxent
));
3808 memcpy (syment
._n
._n_name
, data_name
, strlen (data_name
));
3810 syment
.n_sclass
= C_HIDEXT
;
3811 syment
.n_numaux
= 1;
3812 auxent
.x_csect
.x_scnlen
.l
= data_buffer_size
;
3813 auxent
.x_csect
.x_smtyp
= 3 << 3 | XTY_SD
;
3814 auxent
.x_csect
.x_smclas
= XMC_RW
;
3815 bfd_coff_swap_sym_out (abfd
, &syment
,
3816 &syment_ext
[filehdr
.f_nsyms
* SYMESZ
]);
3817 bfd_coff_swap_aux_out (abfd
, &auxent
, syment
.n_type
, syment
.n_sclass
, 0,
3819 &syment_ext
[(filehdr
.f_nsyms
+ 1) * SYMESZ
]);
3820 filehdr
.f_nsyms
+= 2;
3823 memset (&syment
, 0, sizeof (struct internal_syment
));
3824 memset (&auxent
, 0, sizeof (union internal_auxent
));
3825 memcpy (syment
._n
._n_name
, rtinit_name
, strlen (rtinit_name
));
3827 syment
.n_sclass
= C_EXT
;
3828 syment
.n_numaux
= 1;
3829 auxent
.x_csect
.x_smtyp
= XTY_LD
;
3830 auxent
.x_csect
.x_smclas
= XMC_RW
;
3831 bfd_coff_swap_sym_out (abfd
, &syment
,
3832 &syment_ext
[filehdr
.f_nsyms
* SYMESZ
]);
3833 bfd_coff_swap_aux_out (abfd
, &auxent
, syment
.n_type
, syment
.n_sclass
, 0,
3835 &syment_ext
[(filehdr
.f_nsyms
+ 1) * SYMESZ
]);
3836 filehdr
.f_nsyms
+= 2;
3841 memset (&syment
, 0, sizeof (struct internal_syment
));
3842 memset (&auxent
, 0, sizeof (union internal_auxent
));
3846 syment
._n
._n_n
._n_offset
= st_tmp
- string_table
;
3847 memcpy (st_tmp
, init
, initsz
);
3851 memcpy (syment
._n
._n_name
, init
, initsz
- 1);
3853 syment
.n_sclass
= C_EXT
;
3854 syment
.n_numaux
= 1;
3855 bfd_coff_swap_sym_out (abfd
, &syment
,
3856 &syment_ext
[filehdr
.f_nsyms
* SYMESZ
]);
3857 bfd_coff_swap_aux_out (abfd
, &auxent
, syment
.n_type
, syment
.n_sclass
, 0,
3859 &syment_ext
[(filehdr
.f_nsyms
+ 1) * SYMESZ
]);
3862 memset (&reloc
, 0, sizeof (struct internal_reloc
));
3863 reloc
.r_vaddr
= 0x0010;
3864 reloc
.r_symndx
= filehdr
.f_nsyms
;
3865 reloc
.r_type
= R_POS
;
3867 bfd_coff_swap_reloc_out (abfd
, &reloc
, &reloc_ext
[0]);
3869 filehdr
.f_nsyms
+= 2;
3870 scnhdr
.s_nreloc
+= 1;
3876 memset (&syment
, 0, sizeof (struct internal_syment
));
3877 memset (&auxent
, 0, sizeof (union internal_auxent
));
3881 syment
._n
._n_n
._n_offset
= st_tmp
- string_table
;
3882 memcpy (st_tmp
, fini
, finisz
);
3886 memcpy (syment
._n
._n_name
, fini
, finisz
- 1);
3888 syment
.n_sclass
= C_EXT
;
3889 syment
.n_numaux
= 1;
3890 bfd_coff_swap_sym_out (abfd
, &syment
,
3891 &syment_ext
[filehdr
.f_nsyms
* SYMESZ
]);
3892 bfd_coff_swap_aux_out (abfd
, &auxent
, syment
.n_type
, syment
.n_sclass
, 0,
3894 &syment_ext
[(filehdr
.f_nsyms
+ 1) * SYMESZ
]);
3897 memset (&reloc
, 0, sizeof (struct internal_reloc
));
3898 reloc
.r_vaddr
= 0x0028;
3899 reloc
.r_symndx
= filehdr
.f_nsyms
;
3900 reloc
.r_type
= R_POS
;
3902 bfd_coff_swap_reloc_out (abfd
, &reloc
,
3903 &reloc_ext
[scnhdr
.s_nreloc
* RELSZ
]);
3905 filehdr
.f_nsyms
+= 2;
3906 scnhdr
.s_nreloc
+= 1;
3911 memset (&syment
, 0, sizeof (struct internal_syment
));
3912 memset (&auxent
, 0, sizeof (union internal_auxent
));
3913 memcpy (syment
._n
._n_name
, rtld_name
, strlen (rtld_name
));
3914 syment
.n_sclass
= C_EXT
;
3915 syment
.n_numaux
= 1;
3916 bfd_coff_swap_sym_out (abfd
, &syment
,
3917 &syment_ext
[filehdr
.f_nsyms
* SYMESZ
]);
3918 bfd_coff_swap_aux_out (abfd
, &auxent
, syment
.n_type
, syment
.n_sclass
, 0,
3920 &syment_ext
[(filehdr
.f_nsyms
+ 1) * SYMESZ
]);
3923 memset (&reloc
, 0, sizeof (struct internal_reloc
));
3924 reloc
.r_vaddr
= 0x0000;
3925 reloc
.r_symndx
= filehdr
.f_nsyms
;
3926 reloc
.r_type
= R_POS
;
3928 bfd_coff_swap_reloc_out (abfd
, &reloc
,
3929 &reloc_ext
[scnhdr
.s_nreloc
* RELSZ
]);
3931 filehdr
.f_nsyms
+= 2;
3932 scnhdr
.s_nreloc
+= 1;
3935 scnhdr
.s_relptr
= scnhdr
.s_scnptr
+ data_buffer_size
;
3936 filehdr
.f_symptr
= scnhdr
.s_relptr
+ scnhdr
.s_nreloc
* RELSZ
;
3938 bfd_coff_swap_filehdr_out (abfd
, &filehdr
, filehdr_ext
);
3939 bfd_bwrite (filehdr_ext
, FILHSZ
, abfd
);
3940 bfd_coff_swap_scnhdr_out (abfd
, &scnhdr
, scnhdr_ext
);
3941 bfd_bwrite (scnhdr_ext
, SCNHSZ
, abfd
);
3942 bfd_bwrite (data_buffer
, data_buffer_size
, abfd
);
3943 bfd_bwrite (reloc_ext
, scnhdr
.s_nreloc
* RELSZ
, abfd
);
3944 bfd_bwrite (syment_ext
, filehdr
.f_nsyms
* SYMESZ
, abfd
);
3945 bfd_bwrite (string_table
, string_table_size
, abfd
);
3954 static reloc_howto_type xcoff_dynamic_reloc
=
3955 HOWTO (0, /* type */
3957 2, /* size (0 = byte, 1 = short, 2 = long) */
3959 FALSE
, /* pc_relative */
3961 complain_overflow_bitfield
, /* complain_on_overflow */
3962 0, /* special_function */
3964 TRUE
, /* partial_inplace */
3965 0xffffffff, /* src_mask */
3966 0xffffffff, /* dst_mask */
3967 FALSE
); /* pcrel_offset */
3971 The first word of global linkage code must be modified by filling in
3972 the correct TOC offset. */
3974 static unsigned long xcoff_glink_code
[9] =
3976 0x81820000, /* lwz r12,0(r2) */
3977 0x90410014, /* stw r2,20(r1) */
3978 0x800c0000, /* lwz r0,0(r12) */
3979 0x804c0004, /* lwz r2,4(r12) */
3980 0x7c0903a6, /* mtctr r0 */
3981 0x4e800420, /* bctr */
3982 0x00000000, /* start of traceback table */
3983 0x000c8000, /* traceback table */
3984 0x00000000, /* traceback table */
3988 static const struct xcoff_backend_data_rec bfd_xcoff_backend_data
=
3990 { /* COFF backend, defined in libcoff.h. */
3991 _bfd_xcoff_swap_aux_in
,
3992 _bfd_xcoff_swap_sym_in
,
3993 coff_swap_lineno_in
,
3994 _bfd_xcoff_swap_aux_out
,
3995 _bfd_xcoff_swap_sym_out
,
3996 coff_swap_lineno_out
,
3997 xcoff_swap_reloc_out
,
3998 coff_swap_filehdr_out
,
3999 coff_swap_aouthdr_out
,
4000 coff_swap_scnhdr_out
,
4009 TRUE
, /* _bfd_coff_long_filenames */
4010 FALSE
, /* _bfd_coff_long_section_names */
4011 3, /* _bfd_coff_default_section_alignment_power */
4012 FALSE
, /* _bfd_coff_force_symnames_in_strings */
4013 2, /* _bfd_coff_debug_string_prefix_length */
4014 coff_swap_filehdr_in
,
4015 coff_swap_aouthdr_in
,
4016 coff_swap_scnhdr_in
,
4017 xcoff_swap_reloc_in
,
4018 coff_bad_format_hook
,
4019 coff_set_arch_mach_hook
,
4022 coff_set_alignment_hook
,
4023 coff_slurp_symbol_table
,
4024 symname_in_debug_hook
,
4025 coff_pointerize_aux_hook
,
4027 dummy_reloc16_extra_cases
,
4028 dummy_reloc16_estimate
,
4029 NULL
, /* bfd_coff_sym_is_global */
4030 coff_compute_section_file_positions
,
4031 NULL
, /* _bfd_coff_start_final_link */
4032 xcoff_ppc_relocate_section
,
4033 coff_rtype_to_howto
,
4034 NULL
, /* _bfd_coff_adjust_symndx */
4035 _bfd_generic_link_add_one_symbol
,
4036 coff_link_output_has_begun
,
4037 coff_final_link_postscript
4040 0x01DF, /* magic number */
4044 /* Function pointers to xcoff specific swap routines. */
4045 xcoff_swap_ldhdr_in
,
4046 xcoff_swap_ldhdr_out
,
4047 xcoff_swap_ldsym_in
,
4048 xcoff_swap_ldsym_out
,
4049 xcoff_swap_ldrel_in
,
4050 xcoff_swap_ldrel_out
,
4056 12, /* _xcoff_function_descriptor_size */
4060 1, /* _xcoff_ldhdr_version */
4062 _bfd_xcoff_put_symbol_name
,
4063 _bfd_xcoff_put_ldsymbol_name
,
4064 &xcoff_dynamic_reloc
,
4065 xcoff_create_csect_from_smclas
,
4067 /* Lineno and reloc count overflow. */
4068 xcoff_is_lineno_count_overflow
,
4069 xcoff_is_reloc_count_overflow
,
4071 xcoff_loader_symbol_offset
,
4072 xcoff_loader_reloc_offset
,
4075 &xcoff_glink_code
[0],
4076 36, /* _xcoff_glink_size */
4079 64, /* _xcoff_rtinit_size */
4080 xcoff_generate_rtinit
,
4083 /* The transfer vector that leads the outside world to all of the above. */
4084 const bfd_target rs6000coff_vec
=
4087 bfd_target_xcoff_flavour
,
4088 BFD_ENDIAN_BIG
, /* data byte order is big */
4089 BFD_ENDIAN_BIG
, /* header byte order is big */
4091 (HAS_RELOC
| EXEC_P
| HAS_LINENO
| HAS_DEBUG
| DYNAMIC
4092 | HAS_SYMS
| HAS_LOCALS
| WP_TEXT
),
4094 SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
| SEC_CODE
| SEC_DATA
,
4095 0, /* leading char */
4096 '/', /* ar_pad_char */
4097 15, /* ar_max_namelen */
4121 { /* bfd_check_format */
4124 _bfd_xcoff_archive_p
,
4128 { /* bfd_set_format */
4131 _bfd_generic_mkarchive
,
4135 {/* bfd_write_contents */
4137 coff_write_object_contents
,
4138 _bfd_xcoff_write_archive_contents
,
4145 coff_new_section_hook
,
4146 _bfd_generic_get_section_contents
,
4147 _bfd_generic_get_section_contents_in_window
,
4150 _bfd_xcoff_copy_private_bfd_data
,
4151 ((bfd_boolean (*) (bfd
*, bfd
*)) bfd_true
),
4152 _bfd_generic_init_private_section_data
,
4153 ((bfd_boolean (*) (bfd
*, asection
*, bfd
*, asection
*)) bfd_true
),
4154 ((bfd_boolean (*) (bfd
*, asymbol
*, bfd
*, asymbol
*)) bfd_true
),
4155 ((bfd_boolean (*) (bfd
*, bfd
*)) bfd_true
),
4156 ((bfd_boolean (*) (bfd
*, flagword
)) bfd_true
),
4157 ((bfd_boolean (*) (bfd
*, void * )) bfd_true
),
4160 coff_core_file_failing_command
,
4161 coff_core_file_failing_signal
,
4162 coff_core_file_matches_executable_p
,
4165 _bfd_xcoff_slurp_armap
,
4167 ((bfd_boolean (*) (bfd
*, char **, bfd_size_type
*, const char **)) bfd_false
),
4168 bfd_dont_truncate_arname
,
4169 _bfd_xcoff_write_armap
,
4170 _bfd_xcoff_read_ar_hdr
,
4171 _bfd_xcoff_openr_next_archived_file
,
4172 _bfd_generic_get_elt_at_index
,
4173 _bfd_xcoff_stat_arch_elt
,
4177 coff_get_symtab_upper_bound
,
4178 coff_canonicalize_symtab
,
4179 coff_make_empty_symbol
,
4181 coff_get_symbol_info
,
4182 _bfd_xcoff_is_local_label_name
,
4183 coff_bfd_is_target_special_symbol
,
4185 coff_find_nearest_line
,
4186 _bfd_generic_find_line
,
4187 coff_find_inliner_info
,
4188 coff_bfd_make_debug_symbol
,
4189 _bfd_generic_read_minisymbols
,
4190 _bfd_generic_minisymbol_to_symbol
,
4193 coff_get_reloc_upper_bound
,
4194 coff_canonicalize_reloc
,
4195 _bfd_xcoff_reloc_type_lookup
,
4196 _bfd_xcoff_reloc_name_lookup
,
4200 coff_set_section_contents
,
4203 _bfd_xcoff_sizeof_headers
,
4204 bfd_generic_get_relocated_section_contents
,
4205 bfd_generic_relax_section
,
4206 _bfd_xcoff_bfd_link_hash_table_create
,
4207 _bfd_generic_link_hash_table_free
,
4208 _bfd_xcoff_bfd_link_add_symbols
,
4209 _bfd_generic_link_just_syms
,
4210 _bfd_xcoff_bfd_final_link
,
4211 _bfd_generic_link_split_section
,
4212 bfd_generic_gc_sections
,
4213 bfd_generic_merge_sections
,
4214 bfd_generic_is_group_section
,
4215 bfd_generic_discard_group
,
4216 _bfd_generic_section_already_linked
,
4219 _bfd_xcoff_get_dynamic_symtab_upper_bound
,
4220 _bfd_xcoff_canonicalize_dynamic_symtab
,
4221 _bfd_nodynamic_get_synthetic_symtab
,
4222 _bfd_xcoff_get_dynamic_reloc_upper_bound
,
4223 _bfd_xcoff_canonicalize_dynamic_reloc
,
4225 /* Opposite endian version, none exists */
4228 (void *) &bfd_xcoff_backend_data
,
4231 /* xcoff-powermac target
4233 Only difference between this target and the rs6000 target is the
4234 the default architecture and machine type used in coffcode.h
4236 PowerPC Macs use the same magic numbers as RS/6000
4237 (because that's how they were bootstrapped originally),
4238 but they are always PowerPC architecture. */
4239 static const struct xcoff_backend_data_rec bfd_pmac_xcoff_backend_data
=
4241 { /* COFF backend, defined in libcoff.h. */
4242 _bfd_xcoff_swap_aux_in
,
4243 _bfd_xcoff_swap_sym_in
,
4244 coff_swap_lineno_in
,
4245 _bfd_xcoff_swap_aux_out
,
4246 _bfd_xcoff_swap_sym_out
,
4247 coff_swap_lineno_out
,
4248 xcoff_swap_reloc_out
,
4249 coff_swap_filehdr_out
,
4250 coff_swap_aouthdr_out
,
4251 coff_swap_scnhdr_out
,
4260 TRUE
, /* _bfd_coff_long_filenames */
4261 FALSE
, /* _bfd_coff_long_section_names */
4262 3, /* _bfd_coff_default_section_alignment_power */
4263 FALSE
, /* _bfd_coff_force_symnames_in_strings */
4264 2, /* _bfd_coff_debug_string_prefix_length */
4265 coff_swap_filehdr_in
,
4266 coff_swap_aouthdr_in
,
4267 coff_swap_scnhdr_in
,
4268 xcoff_swap_reloc_in
,
4269 coff_bad_format_hook
,
4270 coff_set_arch_mach_hook
,
4273 coff_set_alignment_hook
,
4274 coff_slurp_symbol_table
,
4275 symname_in_debug_hook
,
4276 coff_pointerize_aux_hook
,
4278 dummy_reloc16_extra_cases
,
4279 dummy_reloc16_estimate
,
4280 NULL
, /* bfd_coff_sym_is_global */
4281 coff_compute_section_file_positions
,
4282 NULL
, /* _bfd_coff_start_final_link */
4283 xcoff_ppc_relocate_section
,
4284 coff_rtype_to_howto
,
4285 NULL
, /* _bfd_coff_adjust_symndx */
4286 _bfd_generic_link_add_one_symbol
,
4287 coff_link_output_has_begun
,
4288 coff_final_link_postscript
4291 0x01DF, /* magic number */
4295 /* Function pointers to xcoff specific swap routines. */
4296 xcoff_swap_ldhdr_in
,
4297 xcoff_swap_ldhdr_out
,
4298 xcoff_swap_ldsym_in
,
4299 xcoff_swap_ldsym_out
,
4300 xcoff_swap_ldrel_in
,
4301 xcoff_swap_ldrel_out
,
4307 12, /* _xcoff_function_descriptor_size */
4311 1, /* _xcoff_ldhdr_version */
4313 _bfd_xcoff_put_symbol_name
,
4314 _bfd_xcoff_put_ldsymbol_name
,
4315 &xcoff_dynamic_reloc
,
4316 xcoff_create_csect_from_smclas
,
4318 /* Lineno and reloc count overflow. */
4319 xcoff_is_lineno_count_overflow
,
4320 xcoff_is_reloc_count_overflow
,
4322 xcoff_loader_symbol_offset
,
4323 xcoff_loader_reloc_offset
,
4326 &xcoff_glink_code
[0],
4327 36, /* _xcoff_glink_size */
4330 0, /* _xcoff_rtinit_size */
4331 xcoff_generate_rtinit
,
4334 /* The transfer vector that leads the outside world to all of the above. */
4335 const bfd_target pmac_xcoff_vec
=
4338 bfd_target_xcoff_flavour
,
4339 BFD_ENDIAN_BIG
, /* data byte order is big */
4340 BFD_ENDIAN_BIG
, /* header byte order is big */
4342 (HAS_RELOC
| EXEC_P
| HAS_LINENO
| HAS_DEBUG
| DYNAMIC
4343 | HAS_SYMS
| HAS_LOCALS
| WP_TEXT
),
4345 SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
| SEC_CODE
| SEC_DATA
,
4346 0, /* leading char */
4347 '/', /* ar_pad_char */
4348 15, /* ar_max_namelen */
4372 { /* bfd_check_format */
4375 _bfd_xcoff_archive_p
,
4379 { /* bfd_set_format */
4382 _bfd_generic_mkarchive
,
4386 {/* bfd_write_contents */
4388 coff_write_object_contents
,
4389 _bfd_xcoff_write_archive_contents
,
4396 coff_new_section_hook
,
4397 _bfd_generic_get_section_contents
,
4398 _bfd_generic_get_section_contents_in_window
,
4401 _bfd_xcoff_copy_private_bfd_data
,
4402 ((bfd_boolean (*) (bfd
*, bfd
*)) bfd_true
),
4403 _bfd_generic_init_private_section_data
,
4404 ((bfd_boolean (*) (bfd
*, asection
*, bfd
*, asection
*)) bfd_true
),
4405 ((bfd_boolean (*) (bfd
*, asymbol
*, bfd
*, asymbol
*)) bfd_true
),
4406 ((bfd_boolean (*) (bfd
*, bfd
*)) bfd_true
),
4407 ((bfd_boolean (*) (bfd
*, flagword
)) bfd_true
),
4408 ((bfd_boolean (*) (bfd
*, void * )) bfd_true
),
4411 coff_core_file_failing_command
,
4412 coff_core_file_failing_signal
,
4413 coff_core_file_matches_executable_p
,
4416 _bfd_xcoff_slurp_armap
,
4418 ((bfd_boolean (*) (bfd
*, char **, bfd_size_type
*, const char **)) bfd_false
),
4419 bfd_dont_truncate_arname
,
4420 _bfd_xcoff_write_armap
,
4421 _bfd_xcoff_read_ar_hdr
,
4422 _bfd_xcoff_openr_next_archived_file
,
4423 _bfd_generic_get_elt_at_index
,
4424 _bfd_xcoff_stat_arch_elt
,
4428 coff_get_symtab_upper_bound
,
4429 coff_canonicalize_symtab
,
4430 coff_make_empty_symbol
,
4432 coff_get_symbol_info
,
4433 _bfd_xcoff_is_local_label_name
,
4434 coff_bfd_is_target_special_symbol
,
4436 coff_find_nearest_line
,
4437 _bfd_generic_find_line
,
4438 coff_find_inliner_info
,
4439 coff_bfd_make_debug_symbol
,
4440 _bfd_generic_read_minisymbols
,
4441 _bfd_generic_minisymbol_to_symbol
,
4444 coff_get_reloc_upper_bound
,
4445 coff_canonicalize_reloc
,
4446 _bfd_xcoff_reloc_type_lookup
,
4447 _bfd_xcoff_reloc_name_lookup
,
4451 coff_set_section_contents
,
4454 _bfd_xcoff_sizeof_headers
,
4455 bfd_generic_get_relocated_section_contents
,
4456 bfd_generic_relax_section
,
4457 _bfd_xcoff_bfd_link_hash_table_create
,
4458 _bfd_generic_link_hash_table_free
,
4459 _bfd_xcoff_bfd_link_add_symbols
,
4460 _bfd_generic_link_just_syms
,
4461 _bfd_xcoff_bfd_final_link
,
4462 _bfd_generic_link_split_section
,
4463 bfd_generic_gc_sections
,
4464 bfd_generic_merge_sections
,
4465 bfd_generic_is_group_section
,
4466 bfd_generic_discard_group
,
4467 _bfd_generic_section_already_linked
,
4470 _bfd_xcoff_get_dynamic_symtab_upper_bound
,
4471 _bfd_xcoff_canonicalize_dynamic_symtab
,
4472 _bfd_nodynamic_get_synthetic_symtab
,
4473 _bfd_xcoff_get_dynamic_reloc_upper_bound
,
4474 _bfd_xcoff_canonicalize_dynamic_reloc
,
4476 /* Opposite endian version, none exists */
4479 (void *) &bfd_pmac_xcoff_backend_data
,