/src/binutils-gdb/bfd/aoutx.h
Line | Count | Source |
1 | | /* BFD semi-generic back-end for a.out binaries. |
2 | | Copyright (C) 1990-2026 Free Software Foundation, Inc. |
3 | | Written by Cygnus Support. |
4 | | |
5 | | This file is part of BFD, the Binary File Descriptor library. |
6 | | |
7 | | This program is free software; you can redistribute it and/or modify |
8 | | it under the terms of the GNU General Public License as published by |
9 | | the Free Software Foundation; either version 3 of the License, or |
10 | | (at your option) any later version. |
11 | | |
12 | | This program is distributed in the hope that it will be useful, |
13 | | but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | | GNU General Public License for more details. |
16 | | |
17 | | You should have received a copy of the GNU General Public License |
18 | | along with this program; if not, write to the Free Software |
19 | | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, |
20 | | MA 02110-1301, USA. */ |
21 | | |
22 | | /* |
23 | | SECTION |
24 | | a.out backends |
25 | | |
26 | | DESCRIPTION |
27 | | |
28 | | BFD supports a number of different flavours of a.out format, |
29 | | though the major differences are only the sizes of the |
30 | | structures on disk, and the shape of the relocation |
31 | | information. |
32 | | |
33 | | The support is split into a basic support file @file{aoutx.h} |
34 | | and other files which derive functions from the base. One |
35 | | derivation file is @file{aoutf1.h} (for a.out flavour 1), and |
36 | | adds to the basic a.out functions support for sun3, sun4, and |
37 | | 386 a.out files, to create a target jump vector for a specific |
38 | | target. |
39 | | |
40 | | This information is further split out into more specific files |
41 | | for each machine, including @file{sunos.c} for sun3 and sun4, |
42 | | and @file{demo64.c} for a demonstration of a 64 bit a.out format. |
43 | | |
44 | | The base file @file{aoutx.h} defines general mechanisms for |
45 | | reading and writing records to and from disk and various |
46 | | other methods which BFD requires. It is included by |
47 | | @file{aout32.c} and @file{aout64.c} to form the names |
48 | | <<aout_32_swap_exec_header_in>>, <<aout_64_swap_exec_header_in>>, etc. |
49 | | |
50 | | As an example, this is what goes on to make the back end for a |
51 | | sun4, from @file{aout32.c}: |
52 | | |
53 | | | #define ARCH_SIZE 32 |
54 | | | #include "aoutx.h" |
55 | | |
56 | | Which exports names: |
57 | | |
58 | | | ... |
59 | | | aout_32_canonicalize_reloc |
60 | | | aout_32_find_nearest_line |
61 | | | aout_32_get_lineno |
62 | | | aout_32_get_reloc_upper_bound |
63 | | | ... |
64 | | |
65 | | from @file{sunos.c}: |
66 | | |
67 | | | #define TARGET_NAME "a.out-sunos-big" |
68 | | | #define VECNAME sparc_aout_sunos_be_vec |
69 | | | #include "aoutf1.h" |
70 | | |
71 | | requires all the names from @file{aout32.c}, and produces the jump vector |
72 | | |
73 | | | sparc_aout_sunos_be_vec |
74 | | |
75 | | The file @file{host-aout.c} is a special case. It is for a large set |
76 | | of hosts that use ``more or less standard'' a.out files, and |
77 | | for which cross-debugging is not interesting. It uses the |
78 | | standard 32-bit a.out support routines, but determines the |
79 | | file offsets and addresses of the text, data, and BSS |
80 | | sections, the machine architecture and machine type, and the |
81 | | entry point address, in a host-dependent manner. Once these |
82 | | values have been determined, generic code is used to handle |
83 | | the object file. |
84 | | |
85 | | When porting it to run on a new system, you must supply: |
86 | | |
87 | | | HOST_PAGE_SIZE |
88 | | | HOST_SEGMENT_SIZE |
89 | | | HOST_MACHINE_ARCH (optional) |
90 | | | HOST_MACHINE_MACHINE (optional) |
91 | | | HOST_TEXT_START_ADDR |
92 | | | HOST_STACK_END_ADDR |
93 | | |
94 | | in the file @file{../include/sys/h-@var{XXX}.h} (for your host). These |
95 | | values, plus the structures and macros defined in @file{a.out.h} on |
96 | | your host system, will produce a BFD target that will access |
97 | | ordinary a.out files on your host. To configure a new machine |
98 | | to use @file{host-aout.c}, specify: |
99 | | |
100 | | | TDEFAULTS = -DDEFAULT_VECTOR=host_aout_big_vec |
101 | | | TDEPFILES= host-aout.o trad-core.o |
102 | | |
103 | | in the @file{config/@var{XXX}.mt} file, and modify @file{configure.ac} |
104 | | to use the |
105 | | @file{@var{XXX}.mt} file (by setting "<<bfd_target=XXX>>") when your |
106 | | configuration is selected. */ |
107 | | |
108 | | /* Some assumptions: |
109 | | * Any BFD with D_PAGED set is ZMAGIC, and vice versa. |
110 | | Doesn't matter what the setting of WP_TEXT is on output, but it'll |
111 | | get set on input. |
112 | | * Any BFD with D_PAGED clear and WP_TEXT set is NMAGIC. |
113 | | * Any BFD with both flags clear is OMAGIC. |
114 | | (Just want to make these explicit, so the conditions tested in this |
115 | | file make sense if you're more familiar with a.out than with BFD.) */ |
116 | | |
117 | 570 | #define KEEPIT udata.i |
118 | | |
119 | | #include "sysdep.h" |
120 | | #include <limits.h> |
121 | | #include "bfd.h" |
122 | | #include "safe-ctype.h" |
123 | | #include "bfdlink.h" |
124 | | |
125 | | #include "libaout.h" |
126 | | #include "libbfd.h" |
127 | | #include "aout/aout64.h" |
128 | | #include "aout/stab_gnu.h" |
129 | | #include "aout/ar.h" |
130 | | |
131 | | #ifdef BMAGIC |
132 | 0 | #define N_IS_BMAGIC(x) (N_MAGIC (x) == BMAGIC) |
133 | | #else |
134 | | #define N_IS_BMAGIC(x) (0) |
135 | | #endif |
136 | | |
137 | | #ifdef QMAGIC |
138 | 10 | #define N_SET_QMAGIC(x) N_SET_MAGIC (x, QMAGIC) |
139 | | #else |
140 | | #define N_SET_QMAGIC(x) do { /**/ } while (0) |
141 | | #endif |
142 | | |
143 | | /* |
144 | | SUBSECTION |
145 | | Relocations |
146 | | |
147 | | DESCRIPTION |
148 | | The file @file{aoutx.h} provides for both the @emph{standard} |
149 | | and @emph{extended} forms of a.out relocation records. |
150 | | |
151 | | The standard records contain only an address, a symbol index, |
152 | | and a type field. The extended records also have a full |
153 | | integer for an addend. */ |
154 | | |
155 | | #ifndef CTOR_TABLE_RELOC_HOWTO |
156 | | #define CTOR_TABLE_RELOC_IDX 2 |
157 | | #define CTOR_TABLE_RELOC_HOWTO(BFD) \ |
158 | | ((obj_reloc_entry_size (BFD) == RELOC_EXT_SIZE \ |
159 | | ? howto_table_ext : howto_table_std) \ |
160 | | + CTOR_TABLE_RELOC_IDX) |
161 | | #endif |
162 | | |
163 | | #ifndef MY_swap_std_reloc_in |
164 | 2.92k | #define MY_swap_std_reloc_in NAME (aout, swap_std_reloc_in) |
165 | | #endif |
166 | | |
167 | | #ifndef MY_swap_ext_reloc_in |
168 | 0 | #define MY_swap_ext_reloc_in NAME (aout, swap_ext_reloc_in) |
169 | | #endif |
170 | | |
171 | | #ifndef MY_swap_std_reloc_out |
172 | 20 | #define MY_swap_std_reloc_out NAME (aout, swap_std_reloc_out) |
173 | | #endif |
174 | | |
175 | | #ifndef MY_swap_ext_reloc_out |
176 | 0 | #define MY_swap_ext_reloc_out NAME (aout, swap_ext_reloc_out) |
177 | | #endif |
178 | | |
179 | | #ifndef MY_final_link_relocate |
180 | 0 | #define MY_final_link_relocate _bfd_final_link_relocate |
181 | | #endif |
182 | | |
183 | | #ifndef MY_relocate_contents |
184 | 0 | #define MY_relocate_contents _bfd_relocate_contents |
185 | | #endif |
186 | | |
187 | 0 | #define howto_table_ext NAME (aout, ext_howto_table) |
188 | 2.34k | #define howto_table_std NAME (aout, std_howto_table) |
189 | | |
190 | | reloc_howto_type howto_table_ext[] = |
191 | | { |
192 | | /* Type rs size bsz pcrel bitpos ovrf sf name part_inpl readmask setmask pcdone. */ |
193 | | HOWTO (RELOC_8, 0, 1, 8, false, 0, complain_overflow_bitfield, 0, "8", false, 0, 0x000000ff, false), |
194 | | HOWTO (RELOC_16, 0, 2, 16, false, 0, complain_overflow_bitfield, 0, "16", false, 0, 0x0000ffff, false), |
195 | | HOWTO (RELOC_32, 0, 4, 32, false, 0, complain_overflow_bitfield, 0, "32", false, 0, 0xffffffff, false), |
196 | | HOWTO (RELOC_DISP8, 0, 1, 8, true, 0, complain_overflow_signed, 0, "DISP8", false, 0, 0x000000ff, false), |
197 | | HOWTO (RELOC_DISP16, 0, 2, 16, true, 0, complain_overflow_signed, 0, "DISP16", false, 0, 0x0000ffff, false), |
198 | | HOWTO (RELOC_DISP32, 0, 4, 32, true, 0, complain_overflow_signed, 0, "DISP32", false, 0, 0xffffffff, false), |
199 | | HOWTO (RELOC_WDISP30, 2, 4, 30, true, 0, complain_overflow_signed, 0, "WDISP30", false, 0, 0x3fffffff, false), |
200 | | HOWTO (RELOC_WDISP22, 2, 4, 22, true, 0, complain_overflow_signed, 0, "WDISP22", false, 0, 0x003fffff, false), |
201 | | HOWTO (RELOC_HI22, 10, 4, 22, false, 0, complain_overflow_bitfield, 0, "HI22", false, 0, 0x003fffff, false), |
202 | | HOWTO (RELOC_22, 0, 4, 22, false, 0, complain_overflow_bitfield, 0, "22", false, 0, 0x003fffff, false), |
203 | | HOWTO (RELOC_13, 0, 4, 13, false, 0, complain_overflow_bitfield, 0, "13", false, 0, 0x00001fff, false), |
204 | | HOWTO (RELOC_LO10, 0, 4, 10, false, 0, complain_overflow_dont, 0, "LO10", false, 0, 0x000003ff, false), |
205 | | HOWTO (RELOC_SFA_BASE,0, 4, 32, false, 0, complain_overflow_bitfield, 0, "SFA_BASE", false, 0, 0xffffffff, false), |
206 | | HOWTO (RELOC_SFA_OFF13,0, 4, 32, false, 0, complain_overflow_bitfield, 0, "SFA_OFF13", false, 0, 0xffffffff, false), |
207 | | HOWTO (RELOC_BASE10, 0, 4, 10, false, 0, complain_overflow_dont, 0, "BASE10", false, 0, 0x000003ff, false), |
208 | | HOWTO (RELOC_BASE13, 0, 4, 13, false, 0, complain_overflow_signed, 0, "BASE13", false, 0, 0x00001fff, false), |
209 | | HOWTO (RELOC_BASE22, 10, 4, 22, false, 0, complain_overflow_bitfield, 0, "BASE22", false, 0, 0x003fffff, false), |
210 | | HOWTO (RELOC_PC10, 0, 4, 10, true, 0, complain_overflow_dont, 0, "PC10", false, 0, 0x000003ff, true), |
211 | | HOWTO (RELOC_PC22, 10, 4, 22, true, 0, complain_overflow_signed, 0, "PC22", false, 0, 0x003fffff, true), |
212 | | HOWTO (RELOC_JMP_TBL, 2, 4, 30, true, 0, complain_overflow_signed, 0, "JMP_TBL", false, 0, 0x3fffffff, false), |
213 | | HOWTO (RELOC_SEGOFF16,0, 4, 0, false, 0, complain_overflow_bitfield, 0, "SEGOFF16", false, 0, 0x00000000, false), |
214 | | HOWTO (RELOC_GLOB_DAT,0, 4, 0, false, 0, complain_overflow_bitfield, 0, "GLOB_DAT", false, 0, 0x00000000, false), |
215 | | HOWTO (RELOC_JMP_SLOT,0, 4, 0, false, 0, complain_overflow_bitfield, 0, "JMP_SLOT", false, 0, 0x00000000, false), |
216 | | HOWTO (RELOC_RELATIVE,0, 4, 0, false, 0, complain_overflow_bitfield, 0, "RELATIVE", false, 0, 0x00000000, false), |
217 | | HOWTO (0, 0, 0, 0, false, 0, complain_overflow_dont, 0, "R_SPARC_NONE",false, 0, 0x00000000, true), |
218 | | HOWTO (0, 0, 0, 0, false, 0, complain_overflow_dont, 0, "R_SPARC_NONE",false, 0, 0x00000000, true), |
219 | 0 | #define RELOC_SPARC_REV32 RELOC_WDISP19 |
220 | | HOWTO (RELOC_SPARC_REV32, 0, 4, 32, false, 0, complain_overflow_dont, 0,"R_SPARC_REV32",false, 0, 0xffffffff, false), |
221 | | }; |
222 | | |
223 | | /* Convert standard reloc records to "arelent" format (incl byte swap). */ |
224 | | |
225 | | reloc_howto_type howto_table_std[] = |
226 | | { |
227 | | /* type rs size bsz pcrel bitpos ovrf sf name part_inpl readmask setmask pcdone. */ |
228 | | HOWTO ( 0, 0, 1, 8, false, 0, complain_overflow_bitfield,0,"8", true, 0x000000ff,0x000000ff, false), |
229 | | HOWTO ( 1, 0, 2, 16, false, 0, complain_overflow_bitfield,0,"16", true, 0x0000ffff,0x0000ffff, false), |
230 | | HOWTO ( 2, 0, 4, 32, false, 0, complain_overflow_bitfield,0,"32", true, 0xffffffff,0xffffffff, false), |
231 | | HOWTO ( 3, 0, 8, 64, false, 0, complain_overflow_bitfield,0,"64", true, 0xdeaddead,0xdeaddead, false), |
232 | | HOWTO ( 4, 0, 1, 8, true, 0, complain_overflow_signed, 0,"DISP8", true, 0x000000ff,0x000000ff, false), |
233 | | HOWTO ( 5, 0, 2, 16, true, 0, complain_overflow_signed, 0,"DISP16", true, 0x0000ffff,0x0000ffff, false), |
234 | | HOWTO ( 6, 0, 4, 32, true, 0, complain_overflow_signed, 0,"DISP32", true, 0xffffffff,0xffffffff, false), |
235 | | HOWTO ( 7, 0, 8, 64, true, 0, complain_overflow_signed, 0,"DISP64", true, 0xfeedface,0xfeedface, false), |
236 | | HOWTO ( 8, 0, 4, 0, false, 0, complain_overflow_bitfield,0,"GOT_REL", false, 0,0x00000000, false), |
237 | | HOWTO ( 9, 0, 2, 16, false, 0, complain_overflow_bitfield,0,"BASE16", false,0xffffffff,0xffffffff, false), |
238 | | HOWTO (10, 0, 4, 32, false, 0, complain_overflow_bitfield,0,"BASE32", false,0xffffffff,0xffffffff, false), |
239 | | EMPTY_HOWTO (-1), |
240 | | EMPTY_HOWTO (-1), |
241 | | EMPTY_HOWTO (-1), |
242 | | EMPTY_HOWTO (-1), |
243 | | EMPTY_HOWTO (-1), |
244 | | HOWTO (16, 0, 4, 0, false, 0, complain_overflow_bitfield,0,"JMP_TABLE", false, 0,0x00000000, false), |
245 | | EMPTY_HOWTO (-1), |
246 | | EMPTY_HOWTO (-1), |
247 | | EMPTY_HOWTO (-1), |
248 | | EMPTY_HOWTO (-1), |
249 | | EMPTY_HOWTO (-1), |
250 | | EMPTY_HOWTO (-1), |
251 | | EMPTY_HOWTO (-1), |
252 | | EMPTY_HOWTO (-1), |
253 | | EMPTY_HOWTO (-1), |
254 | | EMPTY_HOWTO (-1), |
255 | | EMPTY_HOWTO (-1), |
256 | | EMPTY_HOWTO (-1), |
257 | | EMPTY_HOWTO (-1), |
258 | | EMPTY_HOWTO (-1), |
259 | | EMPTY_HOWTO (-1), |
260 | | HOWTO (32, 0, 4, 0, false, 0, complain_overflow_bitfield,0,"RELATIVE", false, 0,0x00000000, false), |
261 | | EMPTY_HOWTO (-1), |
262 | | EMPTY_HOWTO (-1), |
263 | | EMPTY_HOWTO (-1), |
264 | | EMPTY_HOWTO (-1), |
265 | | EMPTY_HOWTO (-1), |
266 | | EMPTY_HOWTO (-1), |
267 | | EMPTY_HOWTO (-1), |
268 | | HOWTO (40, 0, 4, 0, false, 0, complain_overflow_bitfield,0,"BASEREL", false, 0,0x00000000, false), |
269 | | }; |
270 | | |
271 | 2.92k | #define TABLE_SIZE(TABLE) (sizeof (TABLE) / sizeof (TABLE[0])) |
272 | | |
273 | | reloc_howto_type * |
274 | | NAME (aout, reloc_type_lookup) (bfd *abfd, bfd_reloc_code_real_type code) |
275 | 0 | { |
276 | 0 | #define EXT(i, j) case i: return & howto_table_ext [j] |
277 | 0 | #define STD(i, j) case i: return & howto_table_std [j] |
278 | 0 | int ext = obj_reloc_entry_size (abfd) == RELOC_EXT_SIZE; |
279 | |
|
280 | 0 | if (code == BFD_RELOC_CTOR) |
281 | 0 | switch (bfd_arch_bits_per_address (abfd)) |
282 | 0 | { |
283 | 0 | case 32: |
284 | 0 | code = BFD_RELOC_32; |
285 | 0 | break; |
286 | 0 | case 64: |
287 | 0 | code = BFD_RELOC_64; |
288 | 0 | break; |
289 | 0 | } |
290 | | |
291 | 0 | if (ext) |
292 | 0 | switch (code) |
293 | 0 | { |
294 | 0 | EXT (BFD_RELOC_8, 0); |
295 | 0 | EXT (BFD_RELOC_16, 1); |
296 | 0 | EXT (BFD_RELOC_32, 2); |
297 | 0 | EXT (BFD_RELOC_HI22, 8); |
298 | 0 | EXT (BFD_RELOC_LO10, 11); |
299 | 0 | EXT (BFD_RELOC_32_PCREL_S2, 6); |
300 | 0 | EXT (BFD_RELOC_SPARC_WDISP22, 7); |
301 | 0 | EXT (BFD_RELOC_SPARC13, 10); |
302 | 0 | EXT (BFD_RELOC_SPARC_GOT10, 14); |
303 | 0 | EXT (BFD_RELOC_SPARC_BASE13, 15); |
304 | 0 | EXT (BFD_RELOC_SPARC_GOT13, 15); |
305 | 0 | EXT (BFD_RELOC_SPARC_GOT22, 16); |
306 | 0 | EXT (BFD_RELOC_SPARC_PC10, 17); |
307 | 0 | EXT (BFD_RELOC_SPARC_PC22, 18); |
308 | 0 | EXT (BFD_RELOC_SPARC_WPLT30, 19); |
309 | 0 | EXT (BFD_RELOC_SPARC_REV32, 26); |
310 | 0 | default: |
311 | 0 | return NULL; |
312 | 0 | } |
313 | 0 | else |
314 | | /* std relocs. */ |
315 | 0 | switch (code) |
316 | 0 | { |
317 | 0 | STD (BFD_RELOC_8, 0); |
318 | 0 | STD (BFD_RELOC_16, 1); |
319 | 0 | STD (BFD_RELOC_32, 2); |
320 | 0 | STD (BFD_RELOC_8_PCREL, 4); |
321 | 0 | STD (BFD_RELOC_16_PCREL, 5); |
322 | 0 | STD (BFD_RELOC_32_PCREL, 6); |
323 | 0 | STD (BFD_RELOC_16_BASEREL, 9); |
324 | 0 | STD (BFD_RELOC_32_BASEREL, 10); |
325 | 0 | default: |
326 | 0 | return NULL; |
327 | 0 | } |
328 | 0 | } Unexecuted instantiation: cris_aout_32_reloc_type_lookup Unexecuted instantiation: ns32kaout_32_reloc_type_lookup Unexecuted instantiation: aout_32_reloc_type_lookup |
329 | | |
330 | | reloc_howto_type * |
331 | | NAME (aout, reloc_name_lookup) (bfd *abfd, const char *r_name) |
332 | 0 | { |
333 | 0 | unsigned int i, size; |
334 | 0 | reloc_howto_type *howto_table; |
335 | |
|
336 | 0 | if (obj_reloc_entry_size (abfd) == RELOC_EXT_SIZE) |
337 | 0 | { |
338 | 0 | howto_table = howto_table_ext; |
339 | 0 | size = sizeof (howto_table_ext) / sizeof (howto_table_ext[0]); |
340 | 0 | } |
341 | 0 | else |
342 | 0 | { |
343 | 0 | howto_table = howto_table_std; |
344 | 0 | size = sizeof (howto_table_std) / sizeof (howto_table_std[0]); |
345 | 0 | } |
346 | |
|
347 | 0 | for (i = 0; i < size; i++) |
348 | 0 | if (howto_table[i].name != NULL |
349 | 0 | && strcasecmp (howto_table[i].name, r_name) == 0) |
350 | 0 | return &howto_table[i]; |
351 | | |
352 | 0 | return NULL; |
353 | 0 | } Unexecuted instantiation: cris_aout_32_reloc_name_lookup Unexecuted instantiation: ns32kaout_32_reloc_name_lookup Unexecuted instantiation: aout_32_reloc_name_lookup |
354 | | |
355 | | /* |
356 | | SUBSECTION |
357 | | Internal entry points |
358 | | |
359 | | DESCRIPTION |
360 | | @file{aoutx.h} exports several routines for accessing the |
361 | | contents of an a.out file, which are gathered and exported in |
362 | | turn by various format specific files (eg sunos.c). |
363 | | */ |
364 | | |
365 | | /* |
366 | | FUNCTION |
367 | | aout_@var{size}_swap_exec_header_in |
368 | | |
369 | | SYNOPSIS |
370 | | void aout_@var{size}_swap_exec_header_in, |
371 | | (bfd *abfd, |
372 | | struct external_exec *bytes, |
373 | | struct internal_exec *execp); |
374 | | |
375 | | DESCRIPTION |
376 | | Swap the information in an executable header @var{raw_bytes} taken |
377 | | from a raw byte stream memory image into the internal exec header |
378 | | structure @var{execp}. |
379 | | */ |
380 | | |
381 | | #ifndef NAME_swap_exec_header_in |
382 | | void |
383 | | NAME (aout, swap_exec_header_in) (bfd *abfd, |
384 | | struct external_exec *bytes, |
385 | | struct internal_exec *execp) |
386 | 8.64k | { |
387 | | /* The internal_exec structure has some fields that are unused in this |
388 | | configuration (IE for i960), so ensure that all such uninitialized |
389 | | fields are zero'd out. There are places where two of these structs |
390 | | are memcmp'd, and thus the contents do matter. */ |
391 | 8.64k | memset ((void *) execp, 0, sizeof (struct internal_exec)); |
392 | | /* Now fill in fields in the execp, from the bytes in the raw data. */ |
393 | 8.64k | execp->a_info = H_GET_32 (abfd, bytes->e_info); |
394 | 8.64k | execp->a_text = GET_WORD (abfd, bytes->e_text); |
395 | 8.64k | execp->a_data = GET_WORD (abfd, bytes->e_data); |
396 | 8.64k | execp->a_bss = GET_WORD (abfd, bytes->e_bss); |
397 | 8.64k | execp->a_syms = GET_WORD (abfd, bytes->e_syms); |
398 | 8.64k | execp->a_entry = GET_WORD (abfd, bytes->e_entry); |
399 | 8.64k | execp->a_trsize = GET_WORD (abfd, bytes->e_trsize); |
400 | 8.64k | execp->a_drsize = GET_WORD (abfd, bytes->e_drsize); |
401 | 8.64k | } cris_aout_32_swap_exec_header_in Line | Count | Source | 386 | 810 | { | 387 | | /* The internal_exec structure has some fields that are unused in this | 388 | | configuration (IE for i960), so ensure that all such uninitialized | 389 | | fields are zero'd out. There are places where two of these structs | 390 | | are memcmp'd, and thus the contents do matter. */ | 391 | 810 | memset ((void *) execp, 0, sizeof (struct internal_exec)); | 392 | | /* Now fill in fields in the execp, from the bytes in the raw data. */ | 393 | 810 | execp->a_info = H_GET_32 (abfd, bytes->e_info); | 394 | 810 | execp->a_text = GET_WORD (abfd, bytes->e_text); | 395 | 810 | execp->a_data = GET_WORD (abfd, bytes->e_data); | 396 | 810 | execp->a_bss = GET_WORD (abfd, bytes->e_bss); | 397 | 810 | execp->a_syms = GET_WORD (abfd, bytes->e_syms); | 398 | 810 | execp->a_entry = GET_WORD (abfd, bytes->e_entry); | 399 | 810 | execp->a_trsize = GET_WORD (abfd, bytes->e_trsize); | 400 | 810 | execp->a_drsize = GET_WORD (abfd, bytes->e_drsize); | 401 | 810 | } |
ns32kaout_32_swap_exec_header_in Line | Count | Source | 386 | 2.53k | { | 387 | | /* The internal_exec structure has some fields that are unused in this | 388 | | configuration (IE for i960), so ensure that all such uninitialized | 389 | | fields are zero'd out. There are places where two of these structs | 390 | | are memcmp'd, and thus the contents do matter. */ | 391 | 2.53k | memset ((void *) execp, 0, sizeof (struct internal_exec)); | 392 | | /* Now fill in fields in the execp, from the bytes in the raw data. */ | 393 | 2.53k | execp->a_info = H_GET_32 (abfd, bytes->e_info); | 394 | 2.53k | execp->a_text = GET_WORD (abfd, bytes->e_text); | 395 | 2.53k | execp->a_data = GET_WORD (abfd, bytes->e_data); | 396 | 2.53k | execp->a_bss = GET_WORD (abfd, bytes->e_bss); | 397 | 2.53k | execp->a_syms = GET_WORD (abfd, bytes->e_syms); | 398 | 2.53k | execp->a_entry = GET_WORD (abfd, bytes->e_entry); | 399 | 2.53k | execp->a_trsize = GET_WORD (abfd, bytes->e_trsize); | 400 | 2.53k | execp->a_drsize = GET_WORD (abfd, bytes->e_drsize); | 401 | 2.53k | } |
aout_32_swap_exec_header_in Line | Count | Source | 386 | 5.29k | { | 387 | | /* The internal_exec structure has some fields that are unused in this | 388 | | configuration (IE for i960), so ensure that all such uninitialized | 389 | | fields are zero'd out. There are places where two of these structs | 390 | | are memcmp'd, and thus the contents do matter. */ | 391 | 5.29k | memset ((void *) execp, 0, sizeof (struct internal_exec)); | 392 | | /* Now fill in fields in the execp, from the bytes in the raw data. */ | 393 | 5.29k | execp->a_info = H_GET_32 (abfd, bytes->e_info); | 394 | 5.29k | execp->a_text = GET_WORD (abfd, bytes->e_text); | 395 | 5.29k | execp->a_data = GET_WORD (abfd, bytes->e_data); | 396 | 5.29k | execp->a_bss = GET_WORD (abfd, bytes->e_bss); | 397 | 5.29k | execp->a_syms = GET_WORD (abfd, bytes->e_syms); | 398 | 5.29k | execp->a_entry = GET_WORD (abfd, bytes->e_entry); | 399 | 5.29k | execp->a_trsize = GET_WORD (abfd, bytes->e_trsize); | 400 | 5.29k | execp->a_drsize = GET_WORD (abfd, bytes->e_drsize); | 401 | 5.29k | } |
|
402 | | #define NAME_swap_exec_header_in NAME (aout, swap_exec_header_in) |
403 | | #endif |
404 | | |
405 | | /* |
406 | | FUNCTION |
407 | | aout_@var{size}_swap_exec_header_out |
408 | | |
409 | | SYNOPSIS |
410 | | bool aout_@var{size}_swap_exec_header_out |
411 | | (bfd *abfd, |
412 | | struct internal_exec *execp, |
413 | | struct external_exec *raw_bytes); |
414 | | |
415 | | DESCRIPTION |
416 | | Swap the information in an internal exec header structure |
417 | | @var{execp} into the buffer @var{raw_bytes} ready for writing to disk. |
418 | | */ |
419 | | bool |
420 | | NAME (aout, swap_exec_header_out) (bfd *abfd, |
421 | | struct internal_exec *execp, |
422 | | struct external_exec *bytes) |
423 | 127 | { |
424 | 127 | const char *err = NULL; |
425 | 127 | uint64_t val; |
426 | 889 | #define MAXVAL(x) ((UINT64_C (1) << (8 * sizeof (x) - 1) << 1) - 1) |
427 | 127 | if ((val = execp->a_text) > MAXVAL (bytes->e_text)) |
428 | 0 | err = "e_text"; |
429 | 127 | else if ((val = execp->a_data) > MAXVAL (bytes->e_data)) |
430 | 0 | err = "e_data"; |
431 | 127 | else if ((val = execp->a_bss) > MAXVAL (bytes->e_bss)) |
432 | 0 | err = "e_bss"; |
433 | 127 | else if ((val = execp->a_syms) > MAXVAL (bytes->e_syms)) |
434 | 0 | err = "e_syms"; |
435 | 127 | else if ((val = execp->a_entry) > MAXVAL (bytes->e_entry)) |
436 | 0 | err = "e_entry"; |
437 | 127 | else if ((val = execp->a_trsize) > MAXVAL (bytes->e_trsize)) |
438 | 0 | err = "e_trsize"; |
439 | 127 | else if ((val = execp->a_drsize) > MAXVAL (bytes->e_drsize)) |
440 | 0 | err = "e_drsize"; |
441 | 127 | #undef MAXVAL |
442 | 127 | if (err) |
443 | 0 | { |
444 | 0 | _bfd_error_handler (_("%pB: %#" PRIx64 " overflows header %s field"), |
445 | 0 | abfd, val, err); |
446 | 0 | bfd_set_error (bfd_error_file_too_big); |
447 | 0 | return false; |
448 | 0 | } |
449 | | |
450 | | /* Now fill in fields in the raw data, from the fields in the exec struct. */ |
451 | 127 | H_PUT_32 (abfd, execp->a_info , bytes->e_info); |
452 | 127 | PUT_WORD (abfd, execp->a_text , bytes->e_text); |
453 | 127 | PUT_WORD (abfd, execp->a_data , bytes->e_data); |
454 | 127 | PUT_WORD (abfd, execp->a_bss , bytes->e_bss); |
455 | 127 | PUT_WORD (abfd, execp->a_syms , bytes->e_syms); |
456 | 127 | PUT_WORD (abfd, execp->a_entry , bytes->e_entry); |
457 | 127 | PUT_WORD (abfd, execp->a_trsize, bytes->e_trsize); |
458 | 127 | PUT_WORD (abfd, execp->a_drsize, bytes->e_drsize); |
459 | 127 | return true; |
460 | 127 | } Unexecuted instantiation: cris_aout_32_swap_exec_header_out ns32kaout_32_swap_exec_header_out Line | Count | Source | 423 | 62 | { | 424 | 62 | const char *err = NULL; | 425 | 62 | uint64_t val; | 426 | 62 | #define MAXVAL(x) ((UINT64_C (1) << (8 * sizeof (x) - 1) << 1) - 1) | 427 | 62 | if ((val = execp->a_text) > MAXVAL (bytes->e_text)) | 428 | 0 | err = "e_text"; | 429 | 62 | else if ((val = execp->a_data) > MAXVAL (bytes->e_data)) | 430 | 0 | err = "e_data"; | 431 | 62 | else if ((val = execp->a_bss) > MAXVAL (bytes->e_bss)) | 432 | 0 | err = "e_bss"; | 433 | 62 | else if ((val = execp->a_syms) > MAXVAL (bytes->e_syms)) | 434 | 0 | err = "e_syms"; | 435 | 62 | else if ((val = execp->a_entry) > MAXVAL (bytes->e_entry)) | 436 | 0 | err = "e_entry"; | 437 | 62 | else if ((val = execp->a_trsize) > MAXVAL (bytes->e_trsize)) | 438 | 0 | err = "e_trsize"; | 439 | 62 | else if ((val = execp->a_drsize) > MAXVAL (bytes->e_drsize)) | 440 | 0 | err = "e_drsize"; | 441 | 62 | #undef MAXVAL | 442 | 62 | if (err) | 443 | 0 | { | 444 | 0 | _bfd_error_handler (_("%pB: %#" PRIx64 " overflows header %s field"), | 445 | 0 | abfd, val, err); | 446 | 0 | bfd_set_error (bfd_error_file_too_big); | 447 | 0 | return false; | 448 | 0 | } | 449 | | | 450 | | /* Now fill in fields in the raw data, from the fields in the exec struct. */ | 451 | 62 | H_PUT_32 (abfd, execp->a_info , bytes->e_info); | 452 | 62 | PUT_WORD (abfd, execp->a_text , bytes->e_text); | 453 | 62 | PUT_WORD (abfd, execp->a_data , bytes->e_data); | 454 | 62 | PUT_WORD (abfd, execp->a_bss , bytes->e_bss); | 455 | 62 | PUT_WORD (abfd, execp->a_syms , bytes->e_syms); | 456 | 62 | PUT_WORD (abfd, execp->a_entry , bytes->e_entry); | 457 | 62 | PUT_WORD (abfd, execp->a_trsize, bytes->e_trsize); | 458 | 62 | PUT_WORD (abfd, execp->a_drsize, bytes->e_drsize); | 459 | | return true; | 460 | 62 | } |
aout_32_swap_exec_header_out Line | Count | Source | 423 | 65 | { | 424 | 65 | const char *err = NULL; | 425 | 65 | uint64_t val; | 426 | 65 | #define MAXVAL(x) ((UINT64_C (1) << (8 * sizeof (x) - 1) << 1) - 1) | 427 | 65 | if ((val = execp->a_text) > MAXVAL (bytes->e_text)) | 428 | 0 | err = "e_text"; | 429 | 65 | else if ((val = execp->a_data) > MAXVAL (bytes->e_data)) | 430 | 0 | err = "e_data"; | 431 | 65 | else if ((val = execp->a_bss) > MAXVAL (bytes->e_bss)) | 432 | 0 | err = "e_bss"; | 433 | 65 | else if ((val = execp->a_syms) > MAXVAL (bytes->e_syms)) | 434 | 0 | err = "e_syms"; | 435 | 65 | else if ((val = execp->a_entry) > MAXVAL (bytes->e_entry)) | 436 | 0 | err = "e_entry"; | 437 | 65 | else if ((val = execp->a_trsize) > MAXVAL (bytes->e_trsize)) | 438 | 0 | err = "e_trsize"; | 439 | 65 | else if ((val = execp->a_drsize) > MAXVAL (bytes->e_drsize)) | 440 | 0 | err = "e_drsize"; | 441 | 65 | #undef MAXVAL | 442 | 65 | if (err) | 443 | 0 | { | 444 | 0 | _bfd_error_handler (_("%pB: %#" PRIx64 " overflows header %s field"), | 445 | 0 | abfd, val, err); | 446 | 0 | bfd_set_error (bfd_error_file_too_big); | 447 | 0 | return false; | 448 | 0 | } | 449 | | | 450 | | /* Now fill in fields in the raw data, from the fields in the exec struct. */ | 451 | 65 | H_PUT_32 (abfd, execp->a_info , bytes->e_info); | 452 | 65 | PUT_WORD (abfd, execp->a_text , bytes->e_text); | 453 | 65 | PUT_WORD (abfd, execp->a_data , bytes->e_data); | 454 | 65 | PUT_WORD (abfd, execp->a_bss , bytes->e_bss); | 455 | 65 | PUT_WORD (abfd, execp->a_syms , bytes->e_syms); | 456 | 65 | PUT_WORD (abfd, execp->a_entry , bytes->e_entry); | 457 | 65 | PUT_WORD (abfd, execp->a_trsize, bytes->e_trsize); | 458 | 65 | PUT_WORD (abfd, execp->a_drsize, bytes->e_drsize); | 459 | | return true; | 460 | 65 | } |
|
461 | | |
462 | | /* Make all the section for an a.out file. */ |
463 | | |
464 | | bool |
465 | | NAME (aout, make_sections) (bfd *abfd) |
466 | 8.77k | { |
467 | 8.77k | if (obj_textsec (abfd) == NULL && bfd_make_section (abfd, ".text") == NULL) |
468 | 0 | return false; |
469 | 8.77k | if (obj_datasec (abfd) == NULL && bfd_make_section (abfd, ".data") == NULL) |
470 | 0 | return false; |
471 | 8.77k | if (obj_bsssec (abfd) == NULL && bfd_make_section (abfd, ".bss") == NULL) |
472 | 0 | return false; |
473 | 8.77k | return true; |
474 | 8.77k | } cris_aout_32_make_sections Line | Count | Source | 466 | 810 | { | 467 | 810 | if (obj_textsec (abfd) == NULL && bfd_make_section (abfd, ".text") == NULL) | 468 | 0 | return false; | 469 | 810 | if (obj_datasec (abfd) == NULL && bfd_make_section (abfd, ".data") == NULL) | 470 | 0 | return false; | 471 | 810 | if (obj_bsssec (abfd) == NULL && bfd_make_section (abfd, ".bss") == NULL) | 472 | 0 | return false; | 473 | 810 | return true; | 474 | 810 | } |
ns32kaout_32_make_sections Line | Count | Source | 466 | 2.59k | { | 467 | 2.59k | if (obj_textsec (abfd) == NULL && bfd_make_section (abfd, ".text") == NULL) | 468 | 0 | return false; | 469 | 2.59k | if (obj_datasec (abfd) == NULL && bfd_make_section (abfd, ".data") == NULL) | 470 | 0 | return false; | 471 | 2.59k | if (obj_bsssec (abfd) == NULL && bfd_make_section (abfd, ".bss") == NULL) | 472 | 0 | return false; | 473 | 2.59k | return true; | 474 | 2.59k | } |
Line | Count | Source | 466 | 5.36k | { | 467 | 5.36k | if (obj_textsec (abfd) == NULL && bfd_make_section (abfd, ".text") == NULL) | 468 | 0 | return false; | 469 | 5.36k | if (obj_datasec (abfd) == NULL && bfd_make_section (abfd, ".data") == NULL) | 470 | 0 | return false; | 471 | 5.36k | if (obj_bsssec (abfd) == NULL && bfd_make_section (abfd, ".bss") == NULL) | 472 | 0 | return false; | 473 | 5.36k | return true; | 474 | 5.36k | } |
|
475 | | |
476 | | /* |
477 | | FUNCTION |
478 | | aout_@var{size}_some_aout_object_p |
479 | | |
480 | | SYNOPSIS |
481 | | bfd_cleanup aout_@var{size}_some_aout_object_p |
482 | | (bfd *abfd, |
483 | | struct internal_exec *execp, |
484 | | bfd_cleanup (*callback_to_real_object_p) (bfd *)); |
485 | | |
486 | | DESCRIPTION |
487 | | Some a.out variant thinks that the file open in @var{abfd} |
488 | | checking is an a.out file. Do some more checking, and set up |
489 | | for access if it really is. Call back to the calling |
490 | | environment's "finish up" function just before returning, to |
491 | | handle any last-minute setup. |
492 | | */ |
493 | | |
494 | | bfd_cleanup |
495 | | NAME (aout, some_aout_object_p) (bfd *abfd, |
496 | | struct internal_exec *execp, |
497 | | bfd_cleanup (*callback_to_real_object_p) (bfd *)) |
498 | 8.64k | { |
499 | 8.64k | struct aout_data_struct *rawptr; |
500 | 8.64k | bfd_cleanup result; |
501 | | |
502 | 8.64k | rawptr = bfd_zalloc (abfd, sizeof (*rawptr)); |
503 | 8.64k | if (rawptr == NULL) |
504 | 0 | return NULL; |
505 | 8.64k | abfd->tdata.aout_data = rawptr; |
506 | | |
507 | 8.64k | abfd->tdata.aout_data->a.hdr = &rawptr->e; |
508 | | /* Copy in the internal_exec struct. */ |
509 | 8.64k | *(abfd->tdata.aout_data->a.hdr) = *execp; |
510 | 8.64k | execp = abfd->tdata.aout_data->a.hdr; |
511 | | |
512 | | /* Set the file flags. */ |
513 | 8.64k | abfd->flags = BFD_NO_FLAGS; |
514 | 8.64k | if (execp->a_drsize || execp->a_trsize) |
515 | 7.55k | abfd->flags |= HAS_RELOC; |
516 | | /* Setting of EXEC_P has been deferred to the bottom of this function. */ |
517 | 8.64k | if (execp->a_syms) |
518 | 7.46k | abfd->flags |= HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS; |
519 | 8.64k | if (N_DYNAMIC (execp)) |
520 | 4.48k | abfd->flags |= DYNAMIC; |
521 | | |
522 | 8.64k | if (N_MAGIC (execp) == ZMAGIC) |
523 | 1.47k | { |
524 | 1.47k | abfd->flags |= D_PAGED | WP_TEXT; |
525 | 1.47k | adata (abfd).magic = z_magic; |
526 | 1.47k | } |
527 | 7.16k | else if (N_IS_QMAGIC (execp)) |
528 | 1.96k | { |
529 | 1.96k | abfd->flags |= D_PAGED | WP_TEXT; |
530 | 1.96k | adata (abfd).magic = z_magic; |
531 | 1.96k | adata (abfd).subformat = q_magic_format; |
532 | 1.96k | } |
533 | 5.20k | else if (N_MAGIC (execp) == NMAGIC) |
534 | 3.39k | { |
535 | 3.39k | abfd->flags |= WP_TEXT; |
536 | 3.39k | adata (abfd).magic = n_magic; |
537 | 3.39k | } |
538 | 1.80k | else if (N_MAGIC (execp) == OMAGIC || N_IS_BMAGIC (execp)) |
539 | 1.80k | adata (abfd).magic = o_magic; |
540 | 0 | else |
541 | | /* Should have been checked with N_BADMAG before this routine |
542 | | was called. */ |
543 | 0 | abort (); |
544 | | |
545 | 8.64k | abfd->start_address = execp->a_entry; |
546 | | |
547 | 8.64k | abfd->symcount = execp->a_syms / sizeof (struct external_nlist); |
548 | | |
549 | | /* The default relocation entry size is that of traditional V7 Unix. */ |
550 | 8.64k | obj_reloc_entry_size (abfd) = RELOC_STD_SIZE; |
551 | | |
552 | | /* The default symbol entry size is that of traditional Unix. */ |
553 | 8.64k | obj_symbol_entry_size (abfd) = EXTERNAL_NLIST_SIZE; |
554 | | |
555 | 8.64k | if (! NAME (aout, make_sections) (abfd)) |
556 | 0 | goto error_ret; |
557 | | |
558 | 8.64k | obj_datasec (abfd)->size = execp->a_data; |
559 | 8.64k | obj_bsssec (abfd)->size = execp->a_bss; |
560 | | |
561 | 8.64k | obj_textsec (abfd)->flags = |
562 | 8.64k | (execp->a_trsize != 0 |
563 | 8.64k | ? (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS | SEC_RELOC) |
564 | 8.64k | : (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS)); |
565 | 8.64k | obj_datasec (abfd)->flags = |
566 | 8.64k | (execp->a_drsize != 0 |
567 | 8.64k | ? (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS | SEC_RELOC) |
568 | 8.64k | : (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS)); |
569 | 8.64k | obj_bsssec (abfd)->flags = SEC_ALLOC; |
570 | | |
571 | | #ifdef THIS_IS_ONLY_DOCUMENTATION |
572 | | /* The common code can't fill in these things because they depend |
573 | | on either the start address of the text segment, the rounding |
574 | | up of virtual addresses between segments, or the starting file |
575 | | position of the text segment -- all of which varies among different |
576 | | versions of a.out. */ |
577 | | |
578 | | /* Call back to the format-dependent code to fill in the rest of the |
579 | | fields and do any further cleanup. Things that should be filled |
580 | | in by the callback: */ |
581 | | struct exec *execp = exec_hdr (abfd); |
582 | | |
583 | | obj_textsec (abfd)->size = N_TXTSIZE (execp); |
584 | | /* Data and bss are already filled in since they're so standard. */ |
585 | | |
586 | | /* The virtual memory addresses of the sections. */ |
587 | | obj_textsec (abfd)->vma = N_TXTADDR (execp); |
588 | | obj_datasec (abfd)->vma = N_DATADDR (execp); |
589 | | obj_bsssec (abfd)->vma = N_BSSADDR (execp); |
590 | | |
591 | | /* The file offsets of the sections. */ |
592 | | obj_textsec (abfd)->filepos = N_TXTOFF (execp); |
593 | | obj_datasec (abfd)->filepos = N_DATOFF (execp); |
594 | | |
595 | | /* The file offsets of the relocation info. */ |
596 | | obj_textsec (abfd)->rel_filepos = N_TRELOFF (execp); |
597 | | obj_datasec (abfd)->rel_filepos = N_DRELOFF (execp); |
598 | | |
599 | | /* The file offsets of the string table and symbol table. */ |
600 | | obj_str_filepos (abfd) = N_STROFF (execp); |
601 | | obj_sym_filepos (abfd) = N_SYMOFF (execp); |
602 | | |
603 | | /* Determine the architecture and machine type of the object file. */ |
604 | | abfd->obj_arch = bfd_arch_obscure; |
605 | | |
606 | | adata (abfd)->page_size = TARGET_PAGE_SIZE; |
607 | | adata (abfd)->segment_size = SEGMENT_SIZE; |
608 | | adata (abfd)->exec_bytes_size = EXEC_BYTES_SIZE; |
609 | | |
610 | | return _bfd_no_cleanup; |
611 | | |
612 | | /* The architecture is encoded in various ways in various a.out variants, |
613 | | or is not encoded at all in some of them. The relocation size depends |
614 | | on the architecture and the a.out variant. Finally, the return value |
615 | | is the bfd_target vector in use. If an error occurs, return zero and |
616 | | set bfd_error to the appropriate error code. |
617 | | |
618 | | Formats such as b.out, which have additional fields in the a.out |
619 | | header, should cope with them in this callback as well. */ |
620 | | #endif /* DOCUMENTATION */ |
621 | | |
622 | 8.64k | result = (*callback_to_real_object_p) (abfd); |
623 | | |
624 | | /* Now that the segment addresses have been worked out, take a better |
625 | | guess at whether the file is executable. If the entry point |
626 | | is within the text segment, assume it is. (This makes files |
627 | | executable even if their entry point address is 0, as long as |
628 | | their text starts at zero.). |
629 | | |
630 | | This test had to be changed to deal with systems where the text segment |
631 | | runs at a different location than the default. The problem is that the |
632 | | entry address can appear to be outside the text segment, thus causing an |
633 | | erroneous conclusion that the file isn't executable. |
634 | | |
635 | | To fix this, we now accept any non-zero entry point as an indication of |
636 | | executability. This will work most of the time, since only the linker |
637 | | sets the entry point, and that is likely to be non-zero for most systems. */ |
638 | | |
639 | 8.64k | if (execp->a_entry != 0 |
640 | 1.88k | || (execp->a_entry >= obj_textsec (abfd)->vma |
641 | 1.37k | && execp->a_entry < (obj_textsec (abfd)->vma |
642 | 1.37k | + obj_textsec (abfd)->size) |
643 | 1.25k | && execp->a_trsize == 0 |
644 | 546 | && execp->a_drsize == 0)) |
645 | 6.86k | abfd->flags |= EXEC_P; |
646 | | #ifdef STAT_FOR_EXEC |
647 | | else |
648 | 536 | { |
649 | 536 | struct stat stat_buf; |
650 | | |
651 | | /* The original heuristic doesn't work in some important cases. |
652 | | The a.out file has no information about the text start |
653 | | address. For files (like kernels) linked to non-standard |
654 | | addresses (ld -Ttext nnn) the entry point may not be between |
655 | | the default text start (obj_textsec(abfd)->vma) and |
656 | | (obj_textsec(abfd)->vma) + text size. This is not just a mach |
657 | | issue. Many kernels are loaded at non standard addresses. */ |
658 | 536 | if (abfd->iostream != NULL |
659 | 180 | && (abfd->flags & BFD_IN_MEMORY) == 0 |
660 | 180 | && (fstat (fileno ((FILE *) (abfd->iostream)), &stat_buf) == 0) |
661 | 180 | && ((stat_buf.st_mode & 0111) != 0)) |
662 | 1 | abfd->flags |= EXEC_P; |
663 | 536 | } |
664 | | #endif /* STAT_FOR_EXEC */ |
665 | | |
666 | 8.64k | if (result) |
667 | 8.64k | return result; |
668 | | |
669 | 0 | error_ret: |
670 | 0 | bfd_release (abfd, rawptr); |
671 | 0 | return NULL; |
672 | 8.64k | } cris_aout_32_some_aout_object_p Line | Count | Source | 498 | 810 | { | 499 | 810 | struct aout_data_struct *rawptr; | 500 | 810 | bfd_cleanup result; | 501 | | | 502 | 810 | rawptr = bfd_zalloc (abfd, sizeof (*rawptr)); | 503 | 810 | if (rawptr == NULL) | 504 | 0 | return NULL; | 505 | 810 | abfd->tdata.aout_data = rawptr; | 506 | | | 507 | 810 | abfd->tdata.aout_data->a.hdr = &rawptr->e; | 508 | | /* Copy in the internal_exec struct. */ | 509 | 810 | *(abfd->tdata.aout_data->a.hdr) = *execp; | 510 | 810 | execp = abfd->tdata.aout_data->a.hdr; | 511 | | | 512 | | /* Set the file flags. */ | 513 | 810 | abfd->flags = BFD_NO_FLAGS; | 514 | 810 | if (execp->a_drsize || execp->a_trsize) | 515 | 637 | abfd->flags |= HAS_RELOC; | 516 | | /* Setting of EXEC_P has been deferred to the bottom of this function. */ | 517 | 810 | if (execp->a_syms) | 518 | 696 | abfd->flags |= HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS; | 519 | 810 | if (N_DYNAMIC (execp)) | 520 | 496 | abfd->flags |= DYNAMIC; | 521 | | | 522 | 810 | if (N_MAGIC (execp) == ZMAGIC) | 523 | 156 | { | 524 | 156 | abfd->flags |= D_PAGED | WP_TEXT; | 525 | 156 | adata (abfd).magic = z_magic; | 526 | 156 | } | 527 | 654 | else if (N_IS_QMAGIC (execp)) | 528 | 74 | { | 529 | 74 | abfd->flags |= D_PAGED | WP_TEXT; | 530 | 74 | adata (abfd).magic = z_magic; | 531 | 74 | adata (abfd).subformat = q_magic_format; | 532 | 74 | } | 533 | 580 | else if (N_MAGIC (execp) == NMAGIC) | 534 | 398 | { | 535 | 398 | abfd->flags |= WP_TEXT; | 536 | 398 | adata (abfd).magic = n_magic; | 537 | 398 | } | 538 | 182 | else if (N_MAGIC (execp) == OMAGIC || N_IS_BMAGIC (execp)) | 539 | 182 | adata (abfd).magic = o_magic; | 540 | 0 | else | 541 | | /* Should have been checked with N_BADMAG before this routine | 542 | | was called. */ | 543 | 0 | abort (); | 544 | | | 545 | 810 | abfd->start_address = execp->a_entry; | 546 | | | 547 | 810 | abfd->symcount = execp->a_syms / sizeof (struct external_nlist); | 548 | | | 549 | | /* The default relocation entry size is that of traditional V7 Unix. */ | 550 | 810 | obj_reloc_entry_size (abfd) = RELOC_STD_SIZE; | 551 | | | 552 | | /* The default symbol entry size is that of traditional Unix. */ | 553 | 810 | obj_symbol_entry_size (abfd) = EXTERNAL_NLIST_SIZE; | 554 | | | 555 | 810 | if (! NAME (aout, make_sections) (abfd)) | 556 | 0 | goto error_ret; | 557 | | | 558 | 810 | obj_datasec (abfd)->size = execp->a_data; | 559 | 810 | obj_bsssec (abfd)->size = execp->a_bss; | 560 | | | 561 | 810 | obj_textsec (abfd)->flags = | 562 | 810 | (execp->a_trsize != 0 | 563 | 810 | ? (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS | SEC_RELOC) | 564 | 810 | : (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS)); | 565 | 810 | obj_datasec (abfd)->flags = | 566 | 810 | (execp->a_drsize != 0 | 567 | 810 | ? (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS | SEC_RELOC) | 568 | 810 | : (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS)); | 569 | 810 | obj_bsssec (abfd)->flags = SEC_ALLOC; | 570 | | | 571 | | #ifdef THIS_IS_ONLY_DOCUMENTATION | 572 | | /* The common code can't fill in these things because they depend | 573 | | on either the start address of the text segment, the rounding | 574 | | up of virtual addresses between segments, or the starting file | 575 | | position of the text segment -- all of which varies among different | 576 | | versions of a.out. */ | 577 | | | 578 | | /* Call back to the format-dependent code to fill in the rest of the | 579 | | fields and do any further cleanup. Things that should be filled | 580 | | in by the callback: */ | 581 | | struct exec *execp = exec_hdr (abfd); | 582 | | | 583 | | obj_textsec (abfd)->size = N_TXTSIZE (execp); | 584 | | /* Data and bss are already filled in since they're so standard. */ | 585 | | | 586 | | /* The virtual memory addresses of the sections. */ | 587 | | obj_textsec (abfd)->vma = N_TXTADDR (execp); | 588 | | obj_datasec (abfd)->vma = N_DATADDR (execp); | 589 | | obj_bsssec (abfd)->vma = N_BSSADDR (execp); | 590 | | | 591 | | /* The file offsets of the sections. */ | 592 | | obj_textsec (abfd)->filepos = N_TXTOFF (execp); | 593 | | obj_datasec (abfd)->filepos = N_DATOFF (execp); | 594 | | | 595 | | /* The file offsets of the relocation info. */ | 596 | | obj_textsec (abfd)->rel_filepos = N_TRELOFF (execp); | 597 | | obj_datasec (abfd)->rel_filepos = N_DRELOFF (execp); | 598 | | | 599 | | /* The file offsets of the string table and symbol table. */ | 600 | | obj_str_filepos (abfd) = N_STROFF (execp); | 601 | | obj_sym_filepos (abfd) = N_SYMOFF (execp); | 602 | | | 603 | | /* Determine the architecture and machine type of the object file. */ | 604 | | abfd->obj_arch = bfd_arch_obscure; | 605 | | | 606 | | adata (abfd)->page_size = TARGET_PAGE_SIZE; | 607 | | adata (abfd)->segment_size = SEGMENT_SIZE; | 608 | | adata (abfd)->exec_bytes_size = EXEC_BYTES_SIZE; | 609 | | | 610 | | return _bfd_no_cleanup; | 611 | | | 612 | | /* The architecture is encoded in various ways in various a.out variants, | 613 | | or is not encoded at all in some of them. The relocation size depends | 614 | | on the architecture and the a.out variant. Finally, the return value | 615 | | is the bfd_target vector in use. If an error occurs, return zero and | 616 | | set bfd_error to the appropriate error code. | 617 | | | 618 | | Formats such as b.out, which have additional fields in the a.out | 619 | | header, should cope with them in this callback as well. */ | 620 | | #endif /* DOCUMENTATION */ | 621 | | | 622 | 810 | result = (*callback_to_real_object_p) (abfd); | 623 | | | 624 | | /* Now that the segment addresses have been worked out, take a better | 625 | | guess at whether the file is executable. If the entry point | 626 | | is within the text segment, assume it is. (This makes files | 627 | | executable even if their entry point address is 0, as long as | 628 | | their text starts at zero.). | 629 | | | 630 | | This test had to be changed to deal with systems where the text segment | 631 | | runs at a different location than the default. The problem is that the | 632 | | entry address can appear to be outside the text segment, thus causing an | 633 | | erroneous conclusion that the file isn't executable. | 634 | | | 635 | | To fix this, we now accept any non-zero entry point as an indication of | 636 | | executability. This will work most of the time, since only the linker | 637 | | sets the entry point, and that is likely to be non-zero for most systems. */ | 638 | | | 639 | 810 | if (execp->a_entry != 0 | 640 | 219 | || (execp->a_entry >= obj_textsec (abfd)->vma | 641 | 219 | && execp->a_entry < (obj_textsec (abfd)->vma | 642 | 219 | + obj_textsec (abfd)->size) | 643 | 212 | && execp->a_trsize == 0 | 644 | 98 | && execp->a_drsize == 0)) | 645 | 600 | abfd->flags |= EXEC_P; | 646 | | #ifdef STAT_FOR_EXEC | 647 | | else | 648 | | { | 649 | | struct stat stat_buf; | 650 | | | 651 | | /* The original heuristic doesn't work in some important cases. | 652 | | The a.out file has no information about the text start | 653 | | address. For files (like kernels) linked to non-standard | 654 | | addresses (ld -Ttext nnn) the entry point may not be between | 655 | | the default text start (obj_textsec(abfd)->vma) and | 656 | | (obj_textsec(abfd)->vma) + text size. This is not just a mach | 657 | | issue. Many kernels are loaded at non standard addresses. */ | 658 | | if (abfd->iostream != NULL | 659 | | && (abfd->flags & BFD_IN_MEMORY) == 0 | 660 | | && (fstat (fileno ((FILE *) (abfd->iostream)), &stat_buf) == 0) | 661 | | && ((stat_buf.st_mode & 0111) != 0)) | 662 | | abfd->flags |= EXEC_P; | 663 | | } | 664 | | #endif /* STAT_FOR_EXEC */ | 665 | | | 666 | 810 | if (result) | 667 | 810 | return result; | 668 | | | 669 | 0 | error_ret: | 670 | 0 | bfd_release (abfd, rawptr); | 671 | | return NULL; | 672 | 810 | } |
ns32kaout_32_some_aout_object_p Line | Count | Source | 498 | 2.53k | { | 499 | 2.53k | struct aout_data_struct *rawptr; | 500 | 2.53k | bfd_cleanup result; | 501 | | | 502 | 2.53k | rawptr = bfd_zalloc (abfd, sizeof (*rawptr)); | 503 | 2.53k | if (rawptr == NULL) | 504 | 0 | return NULL; | 505 | 2.53k | abfd->tdata.aout_data = rawptr; | 506 | | | 507 | 2.53k | abfd->tdata.aout_data->a.hdr = &rawptr->e; | 508 | | /* Copy in the internal_exec struct. */ | 509 | 2.53k | *(abfd->tdata.aout_data->a.hdr) = *execp; | 510 | 2.53k | execp = abfd->tdata.aout_data->a.hdr; | 511 | | | 512 | | /* Set the file flags. */ | 513 | 2.53k | abfd->flags = BFD_NO_FLAGS; | 514 | 2.53k | if (execp->a_drsize || execp->a_trsize) | 515 | 2.21k | abfd->flags |= HAS_RELOC; | 516 | | /* Setting of EXEC_P has been deferred to the bottom of this function. */ | 517 | 2.53k | if (execp->a_syms) | 518 | 2.18k | abfd->flags |= HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS; | 519 | 2.53k | if (N_DYNAMIC (execp)) | 520 | 1.29k | abfd->flags |= DYNAMIC; | 521 | | | 522 | 2.53k | if (N_MAGIC (execp) == ZMAGIC) | 523 | 421 | { | 524 | 421 | abfd->flags |= D_PAGED | WP_TEXT; | 525 | 421 | adata (abfd).magic = z_magic; | 526 | 421 | } | 527 | 2.11k | else if (N_IS_QMAGIC (execp)) | 528 | 626 | { | 529 | 626 | abfd->flags |= D_PAGED | WP_TEXT; | 530 | 626 | adata (abfd).magic = z_magic; | 531 | 626 | adata (abfd).subformat = q_magic_format; | 532 | 626 | } | 533 | 1.48k | else if (N_MAGIC (execp) == NMAGIC) | 534 | 954 | { | 535 | 954 | abfd->flags |= WP_TEXT; | 536 | 954 | adata (abfd).magic = n_magic; | 537 | 954 | } | 538 | 534 | else if (N_MAGIC (execp) == OMAGIC || N_IS_BMAGIC (execp)) | 539 | 534 | adata (abfd).magic = o_magic; | 540 | 0 | else | 541 | | /* Should have been checked with N_BADMAG before this routine | 542 | | was called. */ | 543 | 0 | abort (); | 544 | | | 545 | 2.53k | abfd->start_address = execp->a_entry; | 546 | | | 547 | 2.53k | abfd->symcount = execp->a_syms / sizeof (struct external_nlist); | 548 | | | 549 | | /* The default relocation entry size is that of traditional V7 Unix. */ | 550 | 2.53k | obj_reloc_entry_size (abfd) = RELOC_STD_SIZE; | 551 | | | 552 | | /* The default symbol entry size is that of traditional Unix. */ | 553 | 2.53k | obj_symbol_entry_size (abfd) = EXTERNAL_NLIST_SIZE; | 554 | | | 555 | 2.53k | if (! NAME (aout, make_sections) (abfd)) | 556 | 0 | goto error_ret; | 557 | | | 558 | 2.53k | obj_datasec (abfd)->size = execp->a_data; | 559 | 2.53k | obj_bsssec (abfd)->size = execp->a_bss; | 560 | | | 561 | 2.53k | obj_textsec (abfd)->flags = | 562 | 2.53k | (execp->a_trsize != 0 | 563 | 2.53k | ? (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS | SEC_RELOC) | 564 | 2.53k | : (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS)); | 565 | 2.53k | obj_datasec (abfd)->flags = | 566 | 2.53k | (execp->a_drsize != 0 | 567 | 2.53k | ? (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS | SEC_RELOC) | 568 | 2.53k | : (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS)); | 569 | 2.53k | obj_bsssec (abfd)->flags = SEC_ALLOC; | 570 | | | 571 | | #ifdef THIS_IS_ONLY_DOCUMENTATION | 572 | | /* The common code can't fill in these things because they depend | 573 | | on either the start address of the text segment, the rounding | 574 | | up of virtual addresses between segments, or the starting file | 575 | | position of the text segment -- all of which varies among different | 576 | | versions of a.out. */ | 577 | | | 578 | | /* Call back to the format-dependent code to fill in the rest of the | 579 | | fields and do any further cleanup. Things that should be filled | 580 | | in by the callback: */ | 581 | | struct exec *execp = exec_hdr (abfd); | 582 | | | 583 | | obj_textsec (abfd)->size = N_TXTSIZE (execp); | 584 | | /* Data and bss are already filled in since they're so standard. */ | 585 | | | 586 | | /* The virtual memory addresses of the sections. */ | 587 | | obj_textsec (abfd)->vma = N_TXTADDR (execp); | 588 | | obj_datasec (abfd)->vma = N_DATADDR (execp); | 589 | | obj_bsssec (abfd)->vma = N_BSSADDR (execp); | 590 | | | 591 | | /* The file offsets of the sections. */ | 592 | | obj_textsec (abfd)->filepos = N_TXTOFF (execp); | 593 | | obj_datasec (abfd)->filepos = N_DATOFF (execp); | 594 | | | 595 | | /* The file offsets of the relocation info. */ | 596 | | obj_textsec (abfd)->rel_filepos = N_TRELOFF (execp); | 597 | | obj_datasec (abfd)->rel_filepos = N_DRELOFF (execp); | 598 | | | 599 | | /* The file offsets of the string table and symbol table. */ | 600 | | obj_str_filepos (abfd) = N_STROFF (execp); | 601 | | obj_sym_filepos (abfd) = N_SYMOFF (execp); | 602 | | | 603 | | /* Determine the architecture and machine type of the object file. */ | 604 | | abfd->obj_arch = bfd_arch_obscure; | 605 | | | 606 | | adata (abfd)->page_size = TARGET_PAGE_SIZE; | 607 | | adata (abfd)->segment_size = SEGMENT_SIZE; | 608 | | adata (abfd)->exec_bytes_size = EXEC_BYTES_SIZE; | 609 | | | 610 | | return _bfd_no_cleanup; | 611 | | | 612 | | /* The architecture is encoded in various ways in various a.out variants, | 613 | | or is not encoded at all in some of them. The relocation size depends | 614 | | on the architecture and the a.out variant. Finally, the return value | 615 | | is the bfd_target vector in use. If an error occurs, return zero and | 616 | | set bfd_error to the appropriate error code. | 617 | | | 618 | | Formats such as b.out, which have additional fields in the a.out | 619 | | header, should cope with them in this callback as well. */ | 620 | | #endif /* DOCUMENTATION */ | 621 | | | 622 | 2.53k | result = (*callback_to_real_object_p) (abfd); | 623 | | | 624 | | /* Now that the segment addresses have been worked out, take a better | 625 | | guess at whether the file is executable. If the entry point | 626 | | is within the text segment, assume it is. (This makes files | 627 | | executable even if their entry point address is 0, as long as | 628 | | their text starts at zero.). | 629 | | | 630 | | This test had to be changed to deal with systems where the text segment | 631 | | runs at a different location than the default. The problem is that the | 632 | | entry address can appear to be outside the text segment, thus causing an | 633 | | erroneous conclusion that the file isn't executable. | 634 | | | 635 | | To fix this, we now accept any non-zero entry point as an indication of | 636 | | executability. This will work most of the time, since only the linker | 637 | | sets the entry point, and that is likely to be non-zero for most systems. */ | 638 | | | 639 | 2.53k | if (execp->a_entry != 0 | 640 | 563 | || (execp->a_entry >= obj_textsec (abfd)->vma | 641 | 257 | && execp->a_entry < (obj_textsec (abfd)->vma | 642 | 257 | + obj_textsec (abfd)->size) | 643 | 233 | && execp->a_trsize == 0 | 644 | 97 | && execp->a_drsize == 0)) | 645 | 1.99k | abfd->flags |= EXEC_P; | 646 | 536 | #ifdef STAT_FOR_EXEC | 647 | 536 | else | 648 | 536 | { | 649 | 536 | struct stat stat_buf; | 650 | | | 651 | | /* The original heuristic doesn't work in some important cases. | 652 | | The a.out file has no information about the text start | 653 | | address. For files (like kernels) linked to non-standard | 654 | | addresses (ld -Ttext nnn) the entry point may not be between | 655 | | the default text start (obj_textsec(abfd)->vma) and | 656 | | (obj_textsec(abfd)->vma) + text size. This is not just a mach | 657 | | issue. Many kernels are loaded at non standard addresses. */ | 658 | 536 | if (abfd->iostream != NULL | 659 | 180 | && (abfd->flags & BFD_IN_MEMORY) == 0 | 660 | 180 | && (fstat (fileno ((FILE *) (abfd->iostream)), &stat_buf) == 0) | 661 | 180 | && ((stat_buf.st_mode & 0111) != 0)) | 662 | 1 | abfd->flags |= EXEC_P; | 663 | 536 | } | 664 | 2.53k | #endif /* STAT_FOR_EXEC */ | 665 | | | 666 | 2.53k | if (result) | 667 | 2.53k | return result; | 668 | | | 669 | 0 | error_ret: | 670 | 0 | bfd_release (abfd, rawptr); | 671 | | return NULL; | 672 | 2.53k | } |
aout_32_some_aout_object_p Line | Count | Source | 498 | 5.29k | { | 499 | 5.29k | struct aout_data_struct *rawptr; | 500 | 5.29k | bfd_cleanup result; | 501 | | | 502 | 5.29k | rawptr = bfd_zalloc (abfd, sizeof (*rawptr)); | 503 | 5.29k | if (rawptr == NULL) | 504 | 0 | return NULL; | 505 | 5.29k | abfd->tdata.aout_data = rawptr; | 506 | | | 507 | 5.29k | abfd->tdata.aout_data->a.hdr = &rawptr->e; | 508 | | /* Copy in the internal_exec struct. */ | 509 | 5.29k | *(abfd->tdata.aout_data->a.hdr) = *execp; | 510 | 5.29k | execp = abfd->tdata.aout_data->a.hdr; | 511 | | | 512 | | /* Set the file flags. */ | 513 | 5.29k | abfd->flags = BFD_NO_FLAGS; | 514 | 5.29k | if (execp->a_drsize || execp->a_trsize) | 515 | 4.70k | abfd->flags |= HAS_RELOC; | 516 | | /* Setting of EXEC_P has been deferred to the bottom of this function. */ | 517 | 5.29k | if (execp->a_syms) | 518 | 4.57k | abfd->flags |= HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS; | 519 | 5.29k | if (N_DYNAMIC (execp)) | 520 | 2.69k | abfd->flags |= DYNAMIC; | 521 | | | 522 | 5.29k | if (N_MAGIC (execp) == ZMAGIC) | 523 | 900 | { | 524 | 900 | abfd->flags |= D_PAGED | WP_TEXT; | 525 | 900 | adata (abfd).magic = z_magic; | 526 | 900 | } | 527 | 4.39k | else if (N_IS_QMAGIC (execp)) | 528 | 1.26k | { | 529 | 1.26k | abfd->flags |= D_PAGED | WP_TEXT; | 530 | 1.26k | adata (abfd).magic = z_magic; | 531 | 1.26k | adata (abfd).subformat = q_magic_format; | 532 | 1.26k | } | 533 | 3.13k | else if (N_MAGIC (execp) == NMAGIC) | 534 | 2.04k | { | 535 | 2.04k | abfd->flags |= WP_TEXT; | 536 | 2.04k | adata (abfd).magic = n_magic; | 537 | 2.04k | } | 538 | 1.09k | else if (N_MAGIC (execp) == OMAGIC || N_IS_BMAGIC (execp)) | 539 | 1.09k | adata (abfd).magic = o_magic; | 540 | 0 | else | 541 | | /* Should have been checked with N_BADMAG before this routine | 542 | | was called. */ | 543 | 0 | abort (); | 544 | | | 545 | 5.29k | abfd->start_address = execp->a_entry; | 546 | | | 547 | 5.29k | abfd->symcount = execp->a_syms / sizeof (struct external_nlist); | 548 | | | 549 | | /* The default relocation entry size is that of traditional V7 Unix. */ | 550 | 5.29k | obj_reloc_entry_size (abfd) = RELOC_STD_SIZE; | 551 | | | 552 | | /* The default symbol entry size is that of traditional Unix. */ | 553 | 5.29k | obj_symbol_entry_size (abfd) = EXTERNAL_NLIST_SIZE; | 554 | | | 555 | 5.29k | if (! NAME (aout, make_sections) (abfd)) | 556 | 0 | goto error_ret; | 557 | | | 558 | 5.29k | obj_datasec (abfd)->size = execp->a_data; | 559 | 5.29k | obj_bsssec (abfd)->size = execp->a_bss; | 560 | | | 561 | 5.29k | obj_textsec (abfd)->flags = | 562 | 5.29k | (execp->a_trsize != 0 | 563 | 5.29k | ? (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS | SEC_RELOC) | 564 | 5.29k | : (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS)); | 565 | 5.29k | obj_datasec (abfd)->flags = | 566 | 5.29k | (execp->a_drsize != 0 | 567 | 5.29k | ? (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS | SEC_RELOC) | 568 | 5.29k | : (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS)); | 569 | 5.29k | obj_bsssec (abfd)->flags = SEC_ALLOC; | 570 | | | 571 | | #ifdef THIS_IS_ONLY_DOCUMENTATION | 572 | | /* The common code can't fill in these things because they depend | 573 | | on either the start address of the text segment, the rounding | 574 | | up of virtual addresses between segments, or the starting file | 575 | | position of the text segment -- all of which varies among different | 576 | | versions of a.out. */ | 577 | | | 578 | | /* Call back to the format-dependent code to fill in the rest of the | 579 | | fields and do any further cleanup. Things that should be filled | 580 | | in by the callback: */ | 581 | | struct exec *execp = exec_hdr (abfd); | 582 | | | 583 | | obj_textsec (abfd)->size = N_TXTSIZE (execp); | 584 | | /* Data and bss are already filled in since they're so standard. */ | 585 | | | 586 | | /* The virtual memory addresses of the sections. */ | 587 | | obj_textsec (abfd)->vma = N_TXTADDR (execp); | 588 | | obj_datasec (abfd)->vma = N_DATADDR (execp); | 589 | | obj_bsssec (abfd)->vma = N_BSSADDR (execp); | 590 | | | 591 | | /* The file offsets of the sections. */ | 592 | | obj_textsec (abfd)->filepos = N_TXTOFF (execp); | 593 | | obj_datasec (abfd)->filepos = N_DATOFF (execp); | 594 | | | 595 | | /* The file offsets of the relocation info. */ | 596 | | obj_textsec (abfd)->rel_filepos = N_TRELOFF (execp); | 597 | | obj_datasec (abfd)->rel_filepos = N_DRELOFF (execp); | 598 | | | 599 | | /* The file offsets of the string table and symbol table. */ | 600 | | obj_str_filepos (abfd) = N_STROFF (execp); | 601 | | obj_sym_filepos (abfd) = N_SYMOFF (execp); | 602 | | | 603 | | /* Determine the architecture and machine type of the object file. */ | 604 | | abfd->obj_arch = bfd_arch_obscure; | 605 | | | 606 | | adata (abfd)->page_size = TARGET_PAGE_SIZE; | 607 | | adata (abfd)->segment_size = SEGMENT_SIZE; | 608 | | adata (abfd)->exec_bytes_size = EXEC_BYTES_SIZE; | 609 | | | 610 | | return _bfd_no_cleanup; | 611 | | | 612 | | /* The architecture is encoded in various ways in various a.out variants, | 613 | | or is not encoded at all in some of them. The relocation size depends | 614 | | on the architecture and the a.out variant. Finally, the return value | 615 | | is the bfd_target vector in use. If an error occurs, return zero and | 616 | | set bfd_error to the appropriate error code. | 617 | | | 618 | | Formats such as b.out, which have additional fields in the a.out | 619 | | header, should cope with them in this callback as well. */ | 620 | | #endif /* DOCUMENTATION */ | 621 | | | 622 | 5.29k | result = (*callback_to_real_object_p) (abfd); | 623 | | | 624 | | /* Now that the segment addresses have been worked out, take a better | 625 | | guess at whether the file is executable. If the entry point | 626 | | is within the text segment, assume it is. (This makes files | 627 | | executable even if their entry point address is 0, as long as | 628 | | their text starts at zero.). | 629 | | | 630 | | This test had to be changed to deal with systems where the text segment | 631 | | runs at a different location than the default. The problem is that the | 632 | | entry address can appear to be outside the text segment, thus causing an | 633 | | erroneous conclusion that the file isn't executable. | 634 | | | 635 | | To fix this, we now accept any non-zero entry point as an indication of | 636 | | executability. This will work most of the time, since only the linker | 637 | | sets the entry point, and that is likely to be non-zero for most systems. */ | 638 | | | 639 | 5.29k | if (execp->a_entry != 0 | 640 | 1.09k | || (execp->a_entry >= obj_textsec (abfd)->vma | 641 | 896 | && execp->a_entry < (obj_textsec (abfd)->vma | 642 | 896 | + obj_textsec (abfd)->size) | 643 | 807 | && execp->a_trsize == 0 | 644 | 351 | && execp->a_drsize == 0)) | 645 | 4.26k | abfd->flags |= EXEC_P; | 646 | | #ifdef STAT_FOR_EXEC | 647 | | else | 648 | | { | 649 | | struct stat stat_buf; | 650 | | | 651 | | /* The original heuristic doesn't work in some important cases. | 652 | | The a.out file has no information about the text start | 653 | | address. For files (like kernels) linked to non-standard | 654 | | addresses (ld -Ttext nnn) the entry point may not be between | 655 | | the default text start (obj_textsec(abfd)->vma) and | 656 | | (obj_textsec(abfd)->vma) + text size. This is not just a mach | 657 | | issue. Many kernels are loaded at non standard addresses. */ | 658 | | if (abfd->iostream != NULL | 659 | | && (abfd->flags & BFD_IN_MEMORY) == 0 | 660 | | && (fstat (fileno ((FILE *) (abfd->iostream)), &stat_buf) == 0) | 661 | | && ((stat_buf.st_mode & 0111) != 0)) | 662 | | abfd->flags |= EXEC_P; | 663 | | } | 664 | | #endif /* STAT_FOR_EXEC */ | 665 | | | 666 | 5.29k | if (result) | 667 | 5.29k | return result; | 668 | | | 669 | 0 | error_ret: | 670 | 0 | bfd_release (abfd, rawptr); | 671 | | return NULL; | 672 | 5.29k | } |
|
673 | | |
674 | | /* |
675 | | FUNCTION |
676 | | aout_@var{size}_mkobject |
677 | | |
678 | | SYNOPSIS |
679 | | bool aout_@var{size}_mkobject, (bfd *abfd); |
680 | | |
681 | | DESCRIPTION |
682 | | Initialize BFD @var{abfd} for use with a.out files. |
683 | | */ |
684 | | |
685 | | bool |
686 | | NAME (aout, mkobject) (bfd *abfd) |
687 | 14.6k | { |
688 | 14.6k | struct aout_data_struct *rawptr; |
689 | 14.6k | size_t amt = sizeof (* rawptr); |
690 | | |
691 | 14.6k | bfd_set_error (bfd_error_system_call); |
692 | | |
693 | 14.6k | rawptr = (struct aout_data_struct *) bfd_zalloc (abfd, amt); |
694 | 14.6k | if (rawptr == NULL) |
695 | 0 | return false; |
696 | | |
697 | 14.6k | abfd->tdata.aout_data = rawptr; |
698 | 14.6k | exec_hdr (abfd) = &(rawptr->e); |
699 | | |
700 | 14.6k | obj_textsec (abfd) = NULL; |
701 | 14.6k | obj_datasec (abfd) = NULL; |
702 | 14.6k | obj_bsssec (abfd) = NULL; |
703 | | |
704 | 14.6k | return true; |
705 | 14.6k | } Unexecuted instantiation: cris_aout_32_mkobject Line | Count | Source | 687 | 186 | { | 688 | 186 | struct aout_data_struct *rawptr; | 689 | 186 | size_t amt = sizeof (* rawptr); | 690 | | | 691 | 186 | bfd_set_error (bfd_error_system_call); | 692 | | | 693 | 186 | rawptr = (struct aout_data_struct *) bfd_zalloc (abfd, amt); | 694 | 186 | if (rawptr == NULL) | 695 | 0 | return false; | 696 | | | 697 | 186 | abfd->tdata.aout_data = rawptr; | 698 | 186 | exec_hdr (abfd) = &(rawptr->e); | 699 | | | 700 | 186 | obj_textsec (abfd) = NULL; | 701 | 186 | obj_datasec (abfd) = NULL; | 702 | 186 | obj_bsssec (abfd) = NULL; | 703 | | | 704 | | return true; | 705 | 186 | } |
Line | Count | Source | 687 | 14.4k | { | 688 | 14.4k | struct aout_data_struct *rawptr; | 689 | 14.4k | size_t amt = sizeof (* rawptr); | 690 | | | 691 | 14.4k | bfd_set_error (bfd_error_system_call); | 692 | | | 693 | 14.4k | rawptr = (struct aout_data_struct *) bfd_zalloc (abfd, amt); | 694 | 14.4k | if (rawptr == NULL) | 695 | 0 | return false; | 696 | | | 697 | 14.4k | abfd->tdata.aout_data = rawptr; | 698 | 14.4k | exec_hdr (abfd) = &(rawptr->e); | 699 | | | 700 | 14.4k | obj_textsec (abfd) = NULL; | 701 | 14.4k | obj_datasec (abfd) = NULL; | 702 | 14.4k | obj_bsssec (abfd) = NULL; | 703 | | | 704 | | return true; | 705 | 14.4k | } |
|
706 | | |
707 | | /* |
708 | | FUNCTION |
709 | | aout_@var{size}_machine_type |
710 | | |
711 | | SYNOPSIS |
712 | | enum machine_type aout_@var{size}_machine_type |
713 | | (enum bfd_architecture arch, |
714 | | unsigned long machine, |
715 | | bool *unknown); |
716 | | |
717 | | DESCRIPTION |
718 | | Keep track of machine architecture and machine type for |
719 | | a.out's. Return the <<machine_type>> for a particular |
720 | | architecture and machine, or <<M_UNKNOWN>> if that exact architecture |
721 | | and machine can't be represented in a.out format. |
722 | | |
723 | | If the architecture is understood, machine type 0 (default) |
724 | | is always understood. |
725 | | */ |
726 | | |
727 | | enum machine_type |
728 | | NAME (aout, machine_type) (enum bfd_architecture arch, |
729 | | unsigned long machine, |
730 | | bool *unknown) |
731 | 1.15k | { |
732 | 1.15k | enum machine_type arch_flags; |
733 | | |
734 | 1.15k | arch_flags = M_UNKNOWN; |
735 | 1.15k | *unknown = true; |
736 | | |
737 | 1.15k | switch (arch) |
738 | 1.15k | { |
739 | 0 | case bfd_arch_sparc: |
740 | 0 | if (machine == 0 |
741 | 0 | || machine == bfd_mach_sparc |
742 | 0 | || machine == bfd_mach_sparc_sparclite |
743 | 0 | || machine == bfd_mach_sparc_sparclite_le |
744 | 0 | || machine == bfd_mach_sparc_v8plus |
745 | 0 | || machine == bfd_mach_sparc_v8plusa |
746 | 0 | || machine == bfd_mach_sparc_v8plusb |
747 | 0 | || machine == bfd_mach_sparc_v8plusc |
748 | 0 | || machine == bfd_mach_sparc_v8plusd |
749 | 0 | || machine == bfd_mach_sparc_v8pluse |
750 | 0 | || machine == bfd_mach_sparc_v8plusv |
751 | 0 | || machine == bfd_mach_sparc_v8plusm |
752 | 0 | || machine == bfd_mach_sparc_v8plusm8 |
753 | 0 | || machine == bfd_mach_sparc_v9 |
754 | 0 | || machine == bfd_mach_sparc_v9a |
755 | 0 | || machine == bfd_mach_sparc_v9b |
756 | 0 | || machine == bfd_mach_sparc_v9c |
757 | 0 | || machine == bfd_mach_sparc_v9d |
758 | 0 | || machine == bfd_mach_sparc_v9e |
759 | 0 | || machine == bfd_mach_sparc_v9v |
760 | 0 | || machine == bfd_mach_sparc_v9m |
761 | 0 | || machine == bfd_mach_sparc_v9m8) |
762 | 0 | arch_flags = M_SPARC; |
763 | 0 | else if (machine == bfd_mach_sparc_sparclet) |
764 | 0 | arch_flags = M_SPARCLET; |
765 | 0 | break; |
766 | | |
767 | 0 | case bfd_arch_i386: |
768 | 0 | if (machine == 0 |
769 | 0 | || machine == bfd_mach_i386_i386 |
770 | 0 | || machine == bfd_mach_i386_i386_intel_syntax) |
771 | 0 | arch_flags = M_386; |
772 | 0 | break; |
773 | | |
774 | 0 | case bfd_arch_arm: |
775 | 0 | if (machine == 0) |
776 | 0 | arch_flags = M_ARM; |
777 | 0 | break; |
778 | | |
779 | 0 | case bfd_arch_mips: |
780 | 0 | switch (machine) |
781 | 0 | { |
782 | 0 | case 0: |
783 | 0 | case bfd_mach_mips3000: |
784 | 0 | case bfd_mach_mips3900: |
785 | 0 | arch_flags = M_MIPS1; |
786 | 0 | break; |
787 | 0 | case bfd_mach_mips6000: |
788 | 0 | arch_flags = M_MIPS2; |
789 | 0 | break; |
790 | 0 | case bfd_mach_mips4000: |
791 | 0 | case bfd_mach_mips4010: |
792 | 0 | case bfd_mach_mips4100: |
793 | 0 | case bfd_mach_mips4300: |
794 | 0 | case bfd_mach_mips4400: |
795 | 0 | case bfd_mach_mips4600: |
796 | 0 | case bfd_mach_mips4650: |
797 | 0 | case bfd_mach_mips8000: |
798 | 0 | case bfd_mach_mips9000: |
799 | 0 | case bfd_mach_mips10000: |
800 | 0 | case bfd_mach_mips12000: |
801 | 0 | case bfd_mach_mips14000: |
802 | 0 | case bfd_mach_mips16000: |
803 | 0 | case bfd_mach_mips16: |
804 | 0 | case bfd_mach_mipsisa32: |
805 | 0 | case bfd_mach_mipsisa32r2: |
806 | 0 | case bfd_mach_mipsisa32r3: |
807 | 0 | case bfd_mach_mipsisa32r5: |
808 | 0 | case bfd_mach_mipsisa32r6: |
809 | 0 | case bfd_mach_mips5: |
810 | 0 | case bfd_mach_mipsisa64: |
811 | 0 | case bfd_mach_mipsisa64r2: |
812 | 0 | case bfd_mach_mipsisa64r3: |
813 | 0 | case bfd_mach_mipsisa64r5: |
814 | 0 | case bfd_mach_mipsisa64r6: |
815 | 0 | case bfd_mach_mips_sb1: |
816 | 0 | case bfd_mach_mips_xlr: |
817 | | /* FIXME: These should be MIPS3, MIPS4, MIPS16, MIPS32, etc. */ |
818 | 0 | arch_flags = M_MIPS2; |
819 | 0 | break; |
820 | 0 | default: |
821 | 0 | arch_flags = M_UNKNOWN; |
822 | 0 | break; |
823 | 0 | } |
824 | 0 | break; |
825 | | |
826 | 186 | case bfd_arch_ns32k: |
827 | 186 | switch (machine) |
828 | 186 | { |
829 | 0 | case 0: arch_flags = M_NS32532; break; |
830 | 0 | case 32032: arch_flags = M_NS32032; break; |
831 | 186 | case 32532: arch_flags = M_NS32532; break; |
832 | 0 | default: arch_flags = M_UNKNOWN; break; |
833 | 186 | } |
834 | 186 | break; |
835 | | |
836 | 186 | case bfd_arch_vax: |
837 | 158 | *unknown = false; |
838 | 158 | break; |
839 | | |
840 | 810 | case bfd_arch_cris: |
841 | 810 | if (machine == 0 || machine == 255) |
842 | 810 | arch_flags = M_CRIS; |
843 | 810 | break; |
844 | | |
845 | 0 | default: |
846 | 0 | arch_flags = M_UNKNOWN; |
847 | 1.15k | } |
848 | | |
849 | 1.15k | if (arch_flags != M_UNKNOWN) |
850 | 996 | *unknown = false; |
851 | | |
852 | 1.15k | return arch_flags; |
853 | 1.15k | } cris_aout_32_machine_type Line | Count | Source | 731 | 810 | { | 732 | 810 | enum machine_type arch_flags; | 733 | | | 734 | 810 | arch_flags = M_UNKNOWN; | 735 | 810 | *unknown = true; | 736 | | | 737 | 810 | switch (arch) | 738 | 810 | { | 739 | 0 | case bfd_arch_sparc: | 740 | 0 | if (machine == 0 | 741 | 0 | || machine == bfd_mach_sparc | 742 | 0 | || machine == bfd_mach_sparc_sparclite | 743 | 0 | || machine == bfd_mach_sparc_sparclite_le | 744 | 0 | || machine == bfd_mach_sparc_v8plus | 745 | 0 | || machine == bfd_mach_sparc_v8plusa | 746 | 0 | || machine == bfd_mach_sparc_v8plusb | 747 | 0 | || machine == bfd_mach_sparc_v8plusc | 748 | 0 | || machine == bfd_mach_sparc_v8plusd | 749 | 0 | || machine == bfd_mach_sparc_v8pluse | 750 | 0 | || machine == bfd_mach_sparc_v8plusv | 751 | 0 | || machine == bfd_mach_sparc_v8plusm | 752 | 0 | || machine == bfd_mach_sparc_v8plusm8 | 753 | 0 | || machine == bfd_mach_sparc_v9 | 754 | 0 | || machine == bfd_mach_sparc_v9a | 755 | 0 | || machine == bfd_mach_sparc_v9b | 756 | 0 | || machine == bfd_mach_sparc_v9c | 757 | 0 | || machine == bfd_mach_sparc_v9d | 758 | 0 | || machine == bfd_mach_sparc_v9e | 759 | 0 | || machine == bfd_mach_sparc_v9v | 760 | 0 | || machine == bfd_mach_sparc_v9m | 761 | 0 | || machine == bfd_mach_sparc_v9m8) | 762 | 0 | arch_flags = M_SPARC; | 763 | 0 | else if (machine == bfd_mach_sparc_sparclet) | 764 | 0 | arch_flags = M_SPARCLET; | 765 | 0 | break; | 766 | | | 767 | 0 | case bfd_arch_i386: | 768 | 0 | if (machine == 0 | 769 | 0 | || machine == bfd_mach_i386_i386 | 770 | 0 | || machine == bfd_mach_i386_i386_intel_syntax) | 771 | 0 | arch_flags = M_386; | 772 | 0 | break; | 773 | | | 774 | 0 | case bfd_arch_arm: | 775 | 0 | if (machine == 0) | 776 | 0 | arch_flags = M_ARM; | 777 | 0 | break; | 778 | | | 779 | 0 | case bfd_arch_mips: | 780 | 0 | switch (machine) | 781 | 0 | { | 782 | 0 | case 0: | 783 | 0 | case bfd_mach_mips3000: | 784 | 0 | case bfd_mach_mips3900: | 785 | 0 | arch_flags = M_MIPS1; | 786 | 0 | break; | 787 | 0 | case bfd_mach_mips6000: | 788 | 0 | arch_flags = M_MIPS2; | 789 | 0 | break; | 790 | 0 | case bfd_mach_mips4000: | 791 | 0 | case bfd_mach_mips4010: | 792 | 0 | case bfd_mach_mips4100: | 793 | 0 | case bfd_mach_mips4300: | 794 | 0 | case bfd_mach_mips4400: | 795 | 0 | case bfd_mach_mips4600: | 796 | 0 | case bfd_mach_mips4650: | 797 | 0 | case bfd_mach_mips8000: | 798 | 0 | case bfd_mach_mips9000: | 799 | 0 | case bfd_mach_mips10000: | 800 | 0 | case bfd_mach_mips12000: | 801 | 0 | case bfd_mach_mips14000: | 802 | 0 | case bfd_mach_mips16000: | 803 | 0 | case bfd_mach_mips16: | 804 | 0 | case bfd_mach_mipsisa32: | 805 | 0 | case bfd_mach_mipsisa32r2: | 806 | 0 | case bfd_mach_mipsisa32r3: | 807 | 0 | case bfd_mach_mipsisa32r5: | 808 | 0 | case bfd_mach_mipsisa32r6: | 809 | 0 | case bfd_mach_mips5: | 810 | 0 | case bfd_mach_mipsisa64: | 811 | 0 | case bfd_mach_mipsisa64r2: | 812 | 0 | case bfd_mach_mipsisa64r3: | 813 | 0 | case bfd_mach_mipsisa64r5: | 814 | 0 | case bfd_mach_mipsisa64r6: | 815 | 0 | case bfd_mach_mips_sb1: | 816 | 0 | case bfd_mach_mips_xlr: | 817 | | /* FIXME: These should be MIPS3, MIPS4, MIPS16, MIPS32, etc. */ | 818 | 0 | arch_flags = M_MIPS2; | 819 | 0 | break; | 820 | 0 | default: | 821 | 0 | arch_flags = M_UNKNOWN; | 822 | 0 | break; | 823 | 0 | } | 824 | 0 | break; | 825 | | | 826 | 0 | case bfd_arch_ns32k: | 827 | 0 | switch (machine) | 828 | 0 | { | 829 | 0 | case 0: arch_flags = M_NS32532; break; | 830 | 0 | case 32032: arch_flags = M_NS32032; break; | 831 | 0 | case 32532: arch_flags = M_NS32532; break; | 832 | 0 | default: arch_flags = M_UNKNOWN; break; | 833 | 0 | } | 834 | 0 | break; | 835 | | | 836 | 0 | case bfd_arch_vax: | 837 | 0 | *unknown = false; | 838 | 0 | break; | 839 | | | 840 | 810 | case bfd_arch_cris: | 841 | 810 | if (machine == 0 || machine == 255) | 842 | 810 | arch_flags = M_CRIS; | 843 | 810 | break; | 844 | | | 845 | 0 | default: | 846 | 0 | arch_flags = M_UNKNOWN; | 847 | 810 | } | 848 | | | 849 | 810 | if (arch_flags != M_UNKNOWN) | 850 | 810 | *unknown = false; | 851 | | | 852 | 810 | return arch_flags; | 853 | 810 | } |
ns32kaout_32_machine_type Line | Count | Source | 731 | 186 | { | 732 | 186 | enum machine_type arch_flags; | 733 | | | 734 | 186 | arch_flags = M_UNKNOWN; | 735 | 186 | *unknown = true; | 736 | | | 737 | 186 | switch (arch) | 738 | 186 | { | 739 | 0 | case bfd_arch_sparc: | 740 | 0 | if (machine == 0 | 741 | 0 | || machine == bfd_mach_sparc | 742 | 0 | || machine == bfd_mach_sparc_sparclite | 743 | 0 | || machine == bfd_mach_sparc_sparclite_le | 744 | 0 | || machine == bfd_mach_sparc_v8plus | 745 | 0 | || machine == bfd_mach_sparc_v8plusa | 746 | 0 | || machine == bfd_mach_sparc_v8plusb | 747 | 0 | || machine == bfd_mach_sparc_v8plusc | 748 | 0 | || machine == bfd_mach_sparc_v8plusd | 749 | 0 | || machine == bfd_mach_sparc_v8pluse | 750 | 0 | || machine == bfd_mach_sparc_v8plusv | 751 | 0 | || machine == bfd_mach_sparc_v8plusm | 752 | 0 | || machine == bfd_mach_sparc_v8plusm8 | 753 | 0 | || machine == bfd_mach_sparc_v9 | 754 | 0 | || machine == bfd_mach_sparc_v9a | 755 | 0 | || machine == bfd_mach_sparc_v9b | 756 | 0 | || machine == bfd_mach_sparc_v9c | 757 | 0 | || machine == bfd_mach_sparc_v9d | 758 | 0 | || machine == bfd_mach_sparc_v9e | 759 | 0 | || machine == bfd_mach_sparc_v9v | 760 | 0 | || machine == bfd_mach_sparc_v9m | 761 | 0 | || machine == bfd_mach_sparc_v9m8) | 762 | 0 | arch_flags = M_SPARC; | 763 | 0 | else if (machine == bfd_mach_sparc_sparclet) | 764 | 0 | arch_flags = M_SPARCLET; | 765 | 0 | break; | 766 | | | 767 | 0 | case bfd_arch_i386: | 768 | 0 | if (machine == 0 | 769 | 0 | || machine == bfd_mach_i386_i386 | 770 | 0 | || machine == bfd_mach_i386_i386_intel_syntax) | 771 | 0 | arch_flags = M_386; | 772 | 0 | break; | 773 | | | 774 | 0 | case bfd_arch_arm: | 775 | 0 | if (machine == 0) | 776 | 0 | arch_flags = M_ARM; | 777 | 0 | break; | 778 | | | 779 | 0 | case bfd_arch_mips: | 780 | 0 | switch (machine) | 781 | 0 | { | 782 | 0 | case 0: | 783 | 0 | case bfd_mach_mips3000: | 784 | 0 | case bfd_mach_mips3900: | 785 | 0 | arch_flags = M_MIPS1; | 786 | 0 | break; | 787 | 0 | case bfd_mach_mips6000: | 788 | 0 | arch_flags = M_MIPS2; | 789 | 0 | break; | 790 | 0 | case bfd_mach_mips4000: | 791 | 0 | case bfd_mach_mips4010: | 792 | 0 | case bfd_mach_mips4100: | 793 | 0 | case bfd_mach_mips4300: | 794 | 0 | case bfd_mach_mips4400: | 795 | 0 | case bfd_mach_mips4600: | 796 | 0 | case bfd_mach_mips4650: | 797 | 0 | case bfd_mach_mips8000: | 798 | 0 | case bfd_mach_mips9000: | 799 | 0 | case bfd_mach_mips10000: | 800 | 0 | case bfd_mach_mips12000: | 801 | 0 | case bfd_mach_mips14000: | 802 | 0 | case bfd_mach_mips16000: | 803 | 0 | case bfd_mach_mips16: | 804 | 0 | case bfd_mach_mipsisa32: | 805 | 0 | case bfd_mach_mipsisa32r2: | 806 | 0 | case bfd_mach_mipsisa32r3: | 807 | 0 | case bfd_mach_mipsisa32r5: | 808 | 0 | case bfd_mach_mipsisa32r6: | 809 | 0 | case bfd_mach_mips5: | 810 | 0 | case bfd_mach_mipsisa64: | 811 | 0 | case bfd_mach_mipsisa64r2: | 812 | 0 | case bfd_mach_mipsisa64r3: | 813 | 0 | case bfd_mach_mipsisa64r5: | 814 | 0 | case bfd_mach_mipsisa64r6: | 815 | 0 | case bfd_mach_mips_sb1: | 816 | 0 | case bfd_mach_mips_xlr: | 817 | | /* FIXME: These should be MIPS3, MIPS4, MIPS16, MIPS32, etc. */ | 818 | 0 | arch_flags = M_MIPS2; | 819 | 0 | break; | 820 | 0 | default: | 821 | 0 | arch_flags = M_UNKNOWN; | 822 | 0 | break; | 823 | 0 | } | 824 | 0 | break; | 825 | | | 826 | 186 | case bfd_arch_ns32k: | 827 | 186 | switch (machine) | 828 | 186 | { | 829 | 0 | case 0: arch_flags = M_NS32532; break; | 830 | 0 | case 32032: arch_flags = M_NS32032; break; | 831 | 186 | case 32532: arch_flags = M_NS32532; break; | 832 | 0 | default: arch_flags = M_UNKNOWN; break; | 833 | 186 | } | 834 | 186 | break; | 835 | | | 836 | 186 | case bfd_arch_vax: | 837 | 0 | *unknown = false; | 838 | 0 | break; | 839 | | | 840 | 0 | case bfd_arch_cris: | 841 | 0 | if (machine == 0 || machine == 255) | 842 | 0 | arch_flags = M_CRIS; | 843 | 0 | break; | 844 | | | 845 | 0 | default: | 846 | 0 | arch_flags = M_UNKNOWN; | 847 | 186 | } | 848 | | | 849 | 186 | if (arch_flags != M_UNKNOWN) | 850 | 186 | *unknown = false; | 851 | | | 852 | 186 | return arch_flags; | 853 | 186 | } |
Line | Count | Source | 731 | 158 | { | 732 | 158 | enum machine_type arch_flags; | 733 | | | 734 | 158 | arch_flags = M_UNKNOWN; | 735 | 158 | *unknown = true; | 736 | | | 737 | 158 | switch (arch) | 738 | 158 | { | 739 | 0 | case bfd_arch_sparc: | 740 | 0 | if (machine == 0 | 741 | 0 | || machine == bfd_mach_sparc | 742 | 0 | || machine == bfd_mach_sparc_sparclite | 743 | 0 | || machine == bfd_mach_sparc_sparclite_le | 744 | 0 | || machine == bfd_mach_sparc_v8plus | 745 | 0 | || machine == bfd_mach_sparc_v8plusa | 746 | 0 | || machine == bfd_mach_sparc_v8plusb | 747 | 0 | || machine == bfd_mach_sparc_v8plusc | 748 | 0 | || machine == bfd_mach_sparc_v8plusd | 749 | 0 | || machine == bfd_mach_sparc_v8pluse | 750 | 0 | || machine == bfd_mach_sparc_v8plusv | 751 | 0 | || machine == bfd_mach_sparc_v8plusm | 752 | 0 | || machine == bfd_mach_sparc_v8plusm8 | 753 | 0 | || machine == bfd_mach_sparc_v9 | 754 | 0 | || machine == bfd_mach_sparc_v9a | 755 | 0 | || machine == bfd_mach_sparc_v9b | 756 | 0 | || machine == bfd_mach_sparc_v9c | 757 | 0 | || machine == bfd_mach_sparc_v9d | 758 | 0 | || machine == bfd_mach_sparc_v9e | 759 | 0 | || machine == bfd_mach_sparc_v9v | 760 | 0 | || machine == bfd_mach_sparc_v9m | 761 | 0 | || machine == bfd_mach_sparc_v9m8) | 762 | 0 | arch_flags = M_SPARC; | 763 | 0 | else if (machine == bfd_mach_sparc_sparclet) | 764 | 0 | arch_flags = M_SPARCLET; | 765 | 0 | break; | 766 | | | 767 | 0 | case bfd_arch_i386: | 768 | 0 | if (machine == 0 | 769 | 0 | || machine == bfd_mach_i386_i386 | 770 | 0 | || machine == bfd_mach_i386_i386_intel_syntax) | 771 | 0 | arch_flags = M_386; | 772 | 0 | break; | 773 | | | 774 | 0 | case bfd_arch_arm: | 775 | 0 | if (machine == 0) | 776 | 0 | arch_flags = M_ARM; | 777 | 0 | break; | 778 | | | 779 | 0 | case bfd_arch_mips: | 780 | 0 | switch (machine) | 781 | 0 | { | 782 | 0 | case 0: | 783 | 0 | case bfd_mach_mips3000: | 784 | 0 | case bfd_mach_mips3900: | 785 | 0 | arch_flags = M_MIPS1; | 786 | 0 | break; | 787 | 0 | case bfd_mach_mips6000: | 788 | 0 | arch_flags = M_MIPS2; | 789 | 0 | break; | 790 | 0 | case bfd_mach_mips4000: | 791 | 0 | case bfd_mach_mips4010: | 792 | 0 | case bfd_mach_mips4100: | 793 | 0 | case bfd_mach_mips4300: | 794 | 0 | case bfd_mach_mips4400: | 795 | 0 | case bfd_mach_mips4600: | 796 | 0 | case bfd_mach_mips4650: | 797 | 0 | case bfd_mach_mips8000: | 798 | 0 | case bfd_mach_mips9000: | 799 | 0 | case bfd_mach_mips10000: | 800 | 0 | case bfd_mach_mips12000: | 801 | 0 | case bfd_mach_mips14000: | 802 | 0 | case bfd_mach_mips16000: | 803 | 0 | case bfd_mach_mips16: | 804 | 0 | case bfd_mach_mipsisa32: | 805 | 0 | case bfd_mach_mipsisa32r2: | 806 | 0 | case bfd_mach_mipsisa32r3: | 807 | 0 | case bfd_mach_mipsisa32r5: | 808 | 0 | case bfd_mach_mipsisa32r6: | 809 | 0 | case bfd_mach_mips5: | 810 | 0 | case bfd_mach_mipsisa64: | 811 | 0 | case bfd_mach_mipsisa64r2: | 812 | 0 | case bfd_mach_mipsisa64r3: | 813 | 0 | case bfd_mach_mipsisa64r5: | 814 | 0 | case bfd_mach_mipsisa64r6: | 815 | 0 | case bfd_mach_mips_sb1: | 816 | 0 | case bfd_mach_mips_xlr: | 817 | | /* FIXME: These should be MIPS3, MIPS4, MIPS16, MIPS32, etc. */ | 818 | 0 | arch_flags = M_MIPS2; | 819 | 0 | break; | 820 | 0 | default: | 821 | 0 | arch_flags = M_UNKNOWN; | 822 | 0 | break; | 823 | 0 | } | 824 | 0 | break; | 825 | | | 826 | 0 | case bfd_arch_ns32k: | 827 | 0 | switch (machine) | 828 | 0 | { | 829 | 0 | case 0: arch_flags = M_NS32532; break; | 830 | 0 | case 32032: arch_flags = M_NS32032; break; | 831 | 0 | case 32532: arch_flags = M_NS32532; break; | 832 | 0 | default: arch_flags = M_UNKNOWN; break; | 833 | 0 | } | 834 | 0 | break; | 835 | | | 836 | 158 | case bfd_arch_vax: | 837 | 158 | *unknown = false; | 838 | 158 | break; | 839 | | | 840 | 0 | case bfd_arch_cris: | 841 | 0 | if (machine == 0 || machine == 255) | 842 | 0 | arch_flags = M_CRIS; | 843 | 0 | break; | 844 | | | 845 | 0 | default: | 846 | 0 | arch_flags = M_UNKNOWN; | 847 | 158 | } | 848 | | | 849 | 158 | if (arch_flags != M_UNKNOWN) | 850 | 0 | *unknown = false; | 851 | | | 852 | 158 | return arch_flags; | 853 | 158 | } |
|
854 | | |
855 | | /* |
856 | | FUNCTION |
857 | | aout_@var{size}_set_arch_mach |
858 | | |
859 | | SYNOPSIS |
860 | | bool aout_@var{size}_set_arch_mach, |
861 | | (bfd *, |
862 | | enum bfd_architecture arch, |
863 | | unsigned long machine); |
864 | | |
865 | | DESCRIPTION |
866 | | Set the architecture and the machine of the BFD @var{abfd} to the |
867 | | values @var{arch} and @var{machine}. Verify that @var{abfd}'s format |
868 | | can support the architecture required. |
869 | | */ |
870 | | |
871 | | bool |
872 | | NAME (aout, set_arch_mach) (bfd *abfd, |
873 | | enum bfd_architecture arch, |
874 | | unsigned long machine) |
875 | 1.15k | { |
876 | 1.15k | if (! bfd_default_set_arch_mach (abfd, arch, machine)) |
877 | 0 | return false; |
878 | | |
879 | 1.15k | if (arch != bfd_arch_unknown) |
880 | 1.15k | { |
881 | 1.15k | bool unknown; |
882 | | |
883 | 1.15k | NAME (aout, machine_type) (arch, machine, &unknown); |
884 | 1.15k | if (unknown) |
885 | 0 | return false; |
886 | 1.15k | } |
887 | | |
888 | | /* Determine the size of a relocation entry. */ |
889 | 1.15k | switch (arch) |
890 | 1.15k | { |
891 | 0 | case bfd_arch_sparc: |
892 | 0 | case bfd_arch_mips: |
893 | 0 | obj_reloc_entry_size (abfd) = RELOC_EXT_SIZE; |
894 | 0 | break; |
895 | 1.15k | default: |
896 | 1.15k | obj_reloc_entry_size (abfd) = RELOC_STD_SIZE; |
897 | 1.15k | break; |
898 | 1.15k | } |
899 | | |
900 | 1.15k | return (*aout_backend_info (abfd)->set_sizes) (abfd); |
901 | 1.15k | } cris_aout_32_set_arch_mach Line | Count | Source | 875 | 810 | { | 876 | 810 | if (! bfd_default_set_arch_mach (abfd, arch, machine)) | 877 | 0 | return false; | 878 | | | 879 | 810 | if (arch != bfd_arch_unknown) | 880 | 810 | { | 881 | 810 | bool unknown; | 882 | | | 883 | 810 | NAME (aout, machine_type) (arch, machine, &unknown); | 884 | 810 | if (unknown) | 885 | 0 | return false; | 886 | 810 | } | 887 | | | 888 | | /* Determine the size of a relocation entry. */ | 889 | 810 | switch (arch) | 890 | 810 | { | 891 | 0 | case bfd_arch_sparc: | 892 | 0 | case bfd_arch_mips: | 893 | 0 | obj_reloc_entry_size (abfd) = RELOC_EXT_SIZE; | 894 | 0 | break; | 895 | 810 | default: | 896 | 810 | obj_reloc_entry_size (abfd) = RELOC_STD_SIZE; | 897 | 810 | break; | 898 | 810 | } | 899 | | | 900 | 810 | return (*aout_backend_info (abfd)->set_sizes) (abfd); | 901 | 810 | } |
ns32kaout_32_set_arch_mach Line | Count | Source | 875 | 186 | { | 876 | 186 | if (! bfd_default_set_arch_mach (abfd, arch, machine)) | 877 | 0 | return false; | 878 | | | 879 | 186 | if (arch != bfd_arch_unknown) | 880 | 186 | { | 881 | 186 | bool unknown; | 882 | | | 883 | 186 | NAME (aout, machine_type) (arch, machine, &unknown); | 884 | 186 | if (unknown) | 885 | 0 | return false; | 886 | 186 | } | 887 | | | 888 | | /* Determine the size of a relocation entry. */ | 889 | 186 | switch (arch) | 890 | 186 | { | 891 | 0 | case bfd_arch_sparc: | 892 | 0 | case bfd_arch_mips: | 893 | 0 | obj_reloc_entry_size (abfd) = RELOC_EXT_SIZE; | 894 | 0 | break; | 895 | 186 | default: | 896 | 186 | obj_reloc_entry_size (abfd) = RELOC_STD_SIZE; | 897 | 186 | break; | 898 | 186 | } | 899 | | | 900 | 186 | return (*aout_backend_info (abfd)->set_sizes) (abfd); | 901 | 186 | } |
Line | Count | Source | 875 | 158 | { | 876 | 158 | if (! bfd_default_set_arch_mach (abfd, arch, machine)) | 877 | 0 | return false; | 878 | | | 879 | 158 | if (arch != bfd_arch_unknown) | 880 | 158 | { | 881 | 158 | bool unknown; | 882 | | | 883 | 158 | NAME (aout, machine_type) (arch, machine, &unknown); | 884 | 158 | if (unknown) | 885 | 0 | return false; | 886 | 158 | } | 887 | | | 888 | | /* Determine the size of a relocation entry. */ | 889 | 158 | switch (arch) | 890 | 158 | { | 891 | 0 | case bfd_arch_sparc: | 892 | 0 | case bfd_arch_mips: | 893 | 0 | obj_reloc_entry_size (abfd) = RELOC_EXT_SIZE; | 894 | 0 | break; | 895 | 158 | default: | 896 | 158 | obj_reloc_entry_size (abfd) = RELOC_STD_SIZE; | 897 | 158 | break; | 898 | 158 | } | 899 | | | 900 | 158 | return (*aout_backend_info (abfd)->set_sizes) (abfd); | 901 | 158 | } |
|
902 | | |
903 | | static void |
904 | | adjust_o_magic (bfd *abfd, struct internal_exec *execp) |
905 | 0 | { |
906 | 0 | file_ptr pos = adata (abfd).exec_bytes_size; |
907 | 0 | bfd_vma vma = 0; |
908 | 0 | int pad = 0; |
909 | 0 | asection *text = obj_textsec (abfd); |
910 | 0 | asection *data = obj_datasec (abfd); |
911 | 0 | asection *bss = obj_bsssec (abfd); |
912 | | |
913 | | /* Text. */ |
914 | 0 | text->filepos = pos; |
915 | 0 | if (!text->user_set_vma) |
916 | 0 | text->vma = vma; |
917 | 0 | else |
918 | 0 | vma = text->vma; |
919 | |
|
920 | 0 | pos += execp->a_text; |
921 | 0 | vma += execp->a_text; |
922 | | |
923 | | /* Data. */ |
924 | 0 | if (!data->user_set_vma) |
925 | 0 | { |
926 | 0 | pos += pad; |
927 | 0 | vma += pad; |
928 | 0 | data->vma = vma; |
929 | 0 | } |
930 | 0 | else |
931 | 0 | vma = data->vma; |
932 | 0 | execp->a_text += pad; |
933 | |
|
934 | 0 | data->filepos = pos; |
935 | 0 | pos += data->size; |
936 | 0 | vma += data->size; |
937 | | |
938 | | /* BSS. */ |
939 | 0 | if (!bss->user_set_vma) |
940 | 0 | { |
941 | 0 | pos += pad; |
942 | 0 | vma += pad; |
943 | 0 | bss->vma = vma; |
944 | 0 | } |
945 | 0 | else |
946 | 0 | { |
947 | | /* The VMA of the .bss section is set by the VMA of the |
948 | | .data section plus the size of the .data section. We may |
949 | | need to add padding bytes to make this true. */ |
950 | 0 | pad = bss->vma - vma; |
951 | 0 | if (pad < 0) |
952 | 0 | pad = 0; |
953 | 0 | pos += pad; |
954 | 0 | } |
955 | 0 | execp->a_data = data->size + pad; |
956 | 0 | bss->filepos = pos; |
957 | 0 | execp->a_bss = bss->size; |
958 | |
|
959 | 0 | N_SET_MAGIC (execp, OMAGIC); |
960 | 0 | } Unexecuted instantiation: aout-cris.c:adjust_o_magic Unexecuted instantiation: aout-ns32k.c:adjust_o_magic Unexecuted instantiation: aout32.c:adjust_o_magic |
961 | | |
962 | | static void |
963 | | adjust_z_magic (bfd *abfd, struct internal_exec *execp) |
964 | 129 | { |
965 | 129 | bfd_size_type data_pad, text_pad; |
966 | 129 | file_ptr text_end; |
967 | 129 | const struct aout_backend_data *abdp; |
968 | | /* TRUE if text includes exec header. */ |
969 | 129 | bool ztih; |
970 | 129 | asection *text = obj_textsec (abfd); |
971 | 129 | asection *data = obj_datasec (abfd); |
972 | 129 | asection *bss = obj_bsssec (abfd); |
973 | | |
974 | 129 | abdp = aout_backend_info (abfd); |
975 | | |
976 | | /* Text. */ |
977 | 129 | ztih = (abdp != NULL |
978 | 129 | && (abdp->text_includes_header |
979 | 0 | || obj_aout_subformat (abfd) == q_magic_format)); |
980 | 129 | text->filepos = (ztih |
981 | 129 | ? adata (abfd).exec_bytes_size |
982 | 129 | : adata (abfd).zmagic_disk_block_size); |
983 | 129 | if (!text->user_set_vma) |
984 | 63 | { |
985 | | /* ?? Do we really need to check for relocs here? */ |
986 | 63 | text->vma = ((abfd->flags & HAS_RELOC) |
987 | 63 | ? 0 |
988 | 63 | : (ztih |
989 | 29 | ? abdp->default_text_vma + adata (abfd).exec_bytes_size |
990 | 29 | : abdp->default_text_vma)); |
991 | 63 | text_pad = 0; |
992 | 63 | } |
993 | 66 | else |
994 | 66 | { |
995 | | /* The .text section is being loaded at an unusual address. We |
996 | | may need to pad it such that the .data section starts at a page |
997 | | boundary. */ |
998 | 66 | if (ztih) |
999 | 66 | text_pad = ((text->filepos - text->vma) |
1000 | 66 | & (adata (abfd).page_size - 1)); |
1001 | 0 | else |
1002 | 0 | text_pad = (-text->vma |
1003 | 0 | & (adata (abfd).page_size - 1)); |
1004 | 66 | } |
1005 | | |
1006 | | /* Find start of data. */ |
1007 | 129 | if (ztih) |
1008 | 129 | { |
1009 | 129 | text_end = text->filepos + execp->a_text; |
1010 | 129 | text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end; |
1011 | 129 | } |
1012 | 0 | else |
1013 | 0 | { |
1014 | | /* Note that if page_size == zmagic_disk_block_size, then |
1015 | | filepos == page_size, and this case is the same as the ztih |
1016 | | case. */ |
1017 | 0 | text_end = execp->a_text; |
1018 | 0 | text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end; |
1019 | 0 | text_end += text->filepos; |
1020 | 0 | } |
1021 | 129 | execp->a_text += text_pad; |
1022 | | |
1023 | | /* Data. */ |
1024 | 129 | if (!data->user_set_vma) |
1025 | 63 | { |
1026 | 63 | bfd_vma vma; |
1027 | 63 | vma = text->vma + execp->a_text; |
1028 | 63 | data->vma = BFD_ALIGN (vma, adata (abfd).segment_size); |
1029 | 63 | } |
1030 | 129 | if (abdp && abdp->zmagic_mapped_contiguous) |
1031 | 0 | { |
1032 | 0 | text_pad = data->vma - (text->vma + execp->a_text); |
1033 | | /* Only pad the text section if the data |
1034 | | section is going to be placed after it. */ |
1035 | 0 | if (text_pad > 0) |
1036 | 0 | execp->a_text += text_pad; |
1037 | 0 | } |
1038 | 129 | data->filepos = text->filepos + execp->a_text; |
1039 | | |
1040 | | /* Fix up exec header while we're at it. */ |
1041 | 129 | if (ztih && (!abdp || (abdp && !abdp->exec_header_not_counted))) |
1042 | 129 | execp->a_text += adata (abfd).exec_bytes_size; |
1043 | 129 | if (obj_aout_subformat (abfd) == q_magic_format) |
1044 | 129 | N_SET_QMAGIC (execp); |
1045 | 119 | else |
1046 | 119 | N_SET_MAGIC (execp, ZMAGIC); |
1047 | | |
1048 | | /* Spec says data section should be rounded up to page boundary. */ |
1049 | 129 | execp->a_data = align_power (data->size, bss->alignment_power); |
1050 | 129 | execp->a_data = BFD_ALIGN (execp->a_data, adata (abfd).page_size); |
1051 | 129 | data_pad = execp->a_data - data->size; |
1052 | | |
1053 | | /* BSS. */ |
1054 | 129 | if (!bss->user_set_vma) |
1055 | 63 | bss->vma = data->vma + execp->a_data; |
1056 | | /* If the BSS immediately follows the data section and extra space |
1057 | | in the page is left after the data section, fudge data |
1058 | | in the header so that the bss section looks smaller by that |
1059 | | amount. We'll start the bss section there, and lie to the OS. |
1060 | | (Note that a linker script, as well as the above assignment, |
1061 | | could have explicitly set the BSS vma to immediately follow |
1062 | | the data section.) */ |
1063 | 129 | if (align_power (bss->vma, bss->alignment_power) == data->vma + execp->a_data) |
1064 | 120 | execp->a_bss = data_pad > bss->size ? 0 : bss->size - data_pad; |
1065 | 9 | else |
1066 | 9 | execp->a_bss = bss->size; |
1067 | 129 | } Unexecuted instantiation: aout-cris.c:adjust_z_magic aout-ns32k.c:adjust_z_magic Line | Count | Source | 964 | 64 | { | 965 | 64 | bfd_size_type data_pad, text_pad; | 966 | 64 | file_ptr text_end; | 967 | 64 | const struct aout_backend_data *abdp; | 968 | | /* TRUE if text includes exec header. */ | 969 | 64 | bool ztih; | 970 | 64 | asection *text = obj_textsec (abfd); | 971 | 64 | asection *data = obj_datasec (abfd); | 972 | 64 | asection *bss = obj_bsssec (abfd); | 973 | | | 974 | 64 | abdp = aout_backend_info (abfd); | 975 | | | 976 | | /* Text. */ | 977 | 64 | ztih = (abdp != NULL | 978 | 64 | && (abdp->text_includes_header | 979 | 0 | || obj_aout_subformat (abfd) == q_magic_format)); | 980 | 64 | text->filepos = (ztih | 981 | 64 | ? adata (abfd).exec_bytes_size | 982 | 64 | : adata (abfd).zmagic_disk_block_size); | 983 | 64 | if (!text->user_set_vma) | 984 | 39 | { | 985 | | /* ?? Do we really need to check for relocs here? */ | 986 | 39 | text->vma = ((abfd->flags & HAS_RELOC) | 987 | 39 | ? 0 | 988 | 39 | : (ztih | 989 | 18 | ? abdp->default_text_vma + adata (abfd).exec_bytes_size | 990 | 18 | : abdp->default_text_vma)); | 991 | 39 | text_pad = 0; | 992 | 39 | } | 993 | 25 | else | 994 | 25 | { | 995 | | /* The .text section is being loaded at an unusual address. We | 996 | | may need to pad it such that the .data section starts at a page | 997 | | boundary. */ | 998 | 25 | if (ztih) | 999 | 25 | text_pad = ((text->filepos - text->vma) | 1000 | 25 | & (adata (abfd).page_size - 1)); | 1001 | 0 | else | 1002 | 0 | text_pad = (-text->vma | 1003 | 0 | & (adata (abfd).page_size - 1)); | 1004 | 25 | } | 1005 | | | 1006 | | /* Find start of data. */ | 1007 | 64 | if (ztih) | 1008 | 64 | { | 1009 | 64 | text_end = text->filepos + execp->a_text; | 1010 | 64 | text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end; | 1011 | 64 | } | 1012 | 0 | else | 1013 | 0 | { | 1014 | | /* Note that if page_size == zmagic_disk_block_size, then | 1015 | | filepos == page_size, and this case is the same as the ztih | 1016 | | case. */ | 1017 | 0 | text_end = execp->a_text; | 1018 | 0 | text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end; | 1019 | 0 | text_end += text->filepos; | 1020 | 0 | } | 1021 | 64 | execp->a_text += text_pad; | 1022 | | | 1023 | | /* Data. */ | 1024 | 64 | if (!data->user_set_vma) | 1025 | 39 | { | 1026 | 39 | bfd_vma vma; | 1027 | 39 | vma = text->vma + execp->a_text; | 1028 | 39 | data->vma = BFD_ALIGN (vma, adata (abfd).segment_size); | 1029 | 39 | } | 1030 | 64 | if (abdp && abdp->zmagic_mapped_contiguous) | 1031 | 0 | { | 1032 | 0 | text_pad = data->vma - (text->vma + execp->a_text); | 1033 | | /* Only pad the text section if the data | 1034 | | section is going to be placed after it. */ | 1035 | 0 | if (text_pad > 0) | 1036 | 0 | execp->a_text += text_pad; | 1037 | 0 | } | 1038 | 64 | data->filepos = text->filepos + execp->a_text; | 1039 | | | 1040 | | /* Fix up exec header while we're at it. */ | 1041 | 64 | if (ztih && (!abdp || (abdp && !abdp->exec_header_not_counted))) | 1042 | 64 | execp->a_text += adata (abfd).exec_bytes_size; | 1043 | 64 | if (obj_aout_subformat (abfd) == q_magic_format) | 1044 | 64 | N_SET_QMAGIC (execp); | 1045 | 58 | else | 1046 | 58 | N_SET_MAGIC (execp, ZMAGIC); | 1047 | | | 1048 | | /* Spec says data section should be rounded up to page boundary. */ | 1049 | 64 | execp->a_data = align_power (data->size, bss->alignment_power); | 1050 | 64 | execp->a_data = BFD_ALIGN (execp->a_data, adata (abfd).page_size); | 1051 | 64 | data_pad = execp->a_data - data->size; | 1052 | | | 1053 | | /* BSS. */ | 1054 | 64 | if (!bss->user_set_vma) | 1055 | 39 | bss->vma = data->vma + execp->a_data; | 1056 | | /* If the BSS immediately follows the data section and extra space | 1057 | | in the page is left after the data section, fudge data | 1058 | | in the header so that the bss section looks smaller by that | 1059 | | amount. We'll start the bss section there, and lie to the OS. | 1060 | | (Note that a linker script, as well as the above assignment, | 1061 | | could have explicitly set the BSS vma to immediately follow | 1062 | | the data section.) */ | 1063 | 64 | if (align_power (bss->vma, bss->alignment_power) == data->vma + execp->a_data) | 1064 | 62 | execp->a_bss = data_pad > bss->size ? 0 : bss->size - data_pad; | 1065 | 2 | else | 1066 | 2 | execp->a_bss = bss->size; | 1067 | 64 | } |
Line | Count | Source | 964 | 65 | { | 965 | 65 | bfd_size_type data_pad, text_pad; | 966 | 65 | file_ptr text_end; | 967 | 65 | const struct aout_backend_data *abdp; | 968 | | /* TRUE if text includes exec header. */ | 969 | 65 | bool ztih; | 970 | 65 | asection *text = obj_textsec (abfd); | 971 | 65 | asection *data = obj_datasec (abfd); | 972 | 65 | asection *bss = obj_bsssec (abfd); | 973 | | | 974 | 65 | abdp = aout_backend_info (abfd); | 975 | | | 976 | | /* Text. */ | 977 | 65 | ztih = (abdp != NULL | 978 | 65 | && (abdp->text_includes_header | 979 | 0 | || obj_aout_subformat (abfd) == q_magic_format)); | 980 | 65 | text->filepos = (ztih | 981 | 65 | ? adata (abfd).exec_bytes_size | 982 | 65 | : adata (abfd).zmagic_disk_block_size); | 983 | 65 | if (!text->user_set_vma) | 984 | 24 | { | 985 | | /* ?? Do we really need to check for relocs here? */ | 986 | 24 | text->vma = ((abfd->flags & HAS_RELOC) | 987 | 24 | ? 0 | 988 | 24 | : (ztih | 989 | 11 | ? abdp->default_text_vma + adata (abfd).exec_bytes_size | 990 | 11 | : abdp->default_text_vma)); | 991 | 24 | text_pad = 0; | 992 | 24 | } | 993 | 41 | else | 994 | 41 | { | 995 | | /* The .text section is being loaded at an unusual address. We | 996 | | may need to pad it such that the .data section starts at a page | 997 | | boundary. */ | 998 | 41 | if (ztih) | 999 | 41 | text_pad = ((text->filepos - text->vma) | 1000 | 41 | & (adata (abfd).page_size - 1)); | 1001 | 0 | else | 1002 | 0 | text_pad = (-text->vma | 1003 | 0 | & (adata (abfd).page_size - 1)); | 1004 | 41 | } | 1005 | | | 1006 | | /* Find start of data. */ | 1007 | 65 | if (ztih) | 1008 | 65 | { | 1009 | 65 | text_end = text->filepos + execp->a_text; | 1010 | 65 | text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end; | 1011 | 65 | } | 1012 | 0 | else | 1013 | 0 | { | 1014 | | /* Note that if page_size == zmagic_disk_block_size, then | 1015 | | filepos == page_size, and this case is the same as the ztih | 1016 | | case. */ | 1017 | 0 | text_end = execp->a_text; | 1018 | 0 | text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end; | 1019 | 0 | text_end += text->filepos; | 1020 | 0 | } | 1021 | 65 | execp->a_text += text_pad; | 1022 | | | 1023 | | /* Data. */ | 1024 | 65 | if (!data->user_set_vma) | 1025 | 24 | { | 1026 | 24 | bfd_vma vma; | 1027 | 24 | vma = text->vma + execp->a_text; | 1028 | 24 | data->vma = BFD_ALIGN (vma, adata (abfd).segment_size); | 1029 | 24 | } | 1030 | 65 | if (abdp && abdp->zmagic_mapped_contiguous) | 1031 | 0 | { | 1032 | 0 | text_pad = data->vma - (text->vma + execp->a_text); | 1033 | | /* Only pad the text section if the data | 1034 | | section is going to be placed after it. */ | 1035 | 0 | if (text_pad > 0) | 1036 | 0 | execp->a_text += text_pad; | 1037 | 0 | } | 1038 | 65 | data->filepos = text->filepos + execp->a_text; | 1039 | | | 1040 | | /* Fix up exec header while we're at it. */ | 1041 | 65 | if (ztih && (!abdp || (abdp && !abdp->exec_header_not_counted))) | 1042 | 65 | execp->a_text += adata (abfd).exec_bytes_size; | 1043 | 65 | if (obj_aout_subformat (abfd) == q_magic_format) | 1044 | 65 | N_SET_QMAGIC (execp); | 1045 | 61 | else | 1046 | 61 | N_SET_MAGIC (execp, ZMAGIC); | 1047 | | | 1048 | | /* Spec says data section should be rounded up to page boundary. */ | 1049 | 65 | execp->a_data = align_power (data->size, bss->alignment_power); | 1050 | 65 | execp->a_data = BFD_ALIGN (execp->a_data, adata (abfd).page_size); | 1051 | 65 | data_pad = execp->a_data - data->size; | 1052 | | | 1053 | | /* BSS. */ | 1054 | 65 | if (!bss->user_set_vma) | 1055 | 24 | bss->vma = data->vma + execp->a_data; | 1056 | | /* If the BSS immediately follows the data section and extra space | 1057 | | in the page is left after the data section, fudge data | 1058 | | in the header so that the bss section looks smaller by that | 1059 | | amount. We'll start the bss section there, and lie to the OS. | 1060 | | (Note that a linker script, as well as the above assignment, | 1061 | | could have explicitly set the BSS vma to immediately follow | 1062 | | the data section.) */ | 1063 | 65 | if (align_power (bss->vma, bss->alignment_power) == data->vma + execp->a_data) | 1064 | 58 | execp->a_bss = data_pad > bss->size ? 0 : bss->size - data_pad; | 1065 | 7 | else | 1066 | 7 | execp->a_bss = bss->size; | 1067 | 65 | } |
|
1068 | | |
1069 | | static void |
1070 | | adjust_n_magic (bfd *abfd, struct internal_exec *execp) |
1071 | 0 | { |
1072 | 0 | file_ptr pos = adata (abfd).exec_bytes_size; |
1073 | 0 | bfd_vma vma = 0; |
1074 | 0 | int pad; |
1075 | 0 | asection *text = obj_textsec (abfd); |
1076 | 0 | asection *data = obj_datasec (abfd); |
1077 | 0 | asection *bss = obj_bsssec (abfd); |
1078 | | |
1079 | | /* Text. */ |
1080 | 0 | text->filepos = pos; |
1081 | 0 | if (!text->user_set_vma) |
1082 | 0 | text->vma = vma; |
1083 | 0 | else |
1084 | 0 | vma = text->vma; |
1085 | 0 | pos += execp->a_text; |
1086 | 0 | vma += execp->a_text; |
1087 | | |
1088 | | /* Data. */ |
1089 | 0 | data->filepos = pos; |
1090 | 0 | if (!data->user_set_vma) |
1091 | 0 | data->vma = BFD_ALIGN (vma, adata (abfd).segment_size); |
1092 | 0 | vma = data->vma; |
1093 | | |
1094 | | /* Since BSS follows data immediately, see if it needs alignment. */ |
1095 | 0 | vma += data->size; |
1096 | 0 | pad = align_power (vma, bss->alignment_power) - vma; |
1097 | 0 | execp->a_data = data->size + pad; |
1098 | 0 | pos += execp->a_data; |
1099 | | |
1100 | | /* BSS. */ |
1101 | 0 | if (!bss->user_set_vma) |
1102 | 0 | bss->vma = vma; |
1103 | 0 | else |
1104 | 0 | vma = bss->vma; |
1105 | | |
1106 | | /* Fix up exec header. */ |
1107 | 0 | execp->a_bss = bss->size; |
1108 | 0 | N_SET_MAGIC (execp, NMAGIC); |
1109 | 0 | } Unexecuted instantiation: aout-cris.c:adjust_n_magic Unexecuted instantiation: aout-ns32k.c:adjust_n_magic Unexecuted instantiation: aout32.c:adjust_n_magic |
1110 | | |
1111 | | bool |
1112 | | NAME (aout, adjust_sizes_and_vmas) (bfd *abfd) |
1113 | 129 | { |
1114 | 129 | struct internal_exec *execp = exec_hdr (abfd); |
1115 | | |
1116 | 129 | if (! NAME (aout, make_sections) (abfd)) |
1117 | 0 | return false; |
1118 | | |
1119 | 129 | if (adata (abfd).magic != undecided_magic) |
1120 | 0 | return true; |
1121 | | |
1122 | 129 | execp->a_text = align_power (obj_textsec (abfd)->size, |
1123 | 129 | obj_textsec (abfd)->alignment_power); |
1124 | | |
1125 | | /* Rule (heuristic) for when to pad to a new page. Note that there |
1126 | | are (at least) two ways demand-paged (ZMAGIC) files have been |
1127 | | handled. Most Berkeley-based systems start the text segment at |
1128 | | (TARGET_PAGE_SIZE). However, newer versions of SUNOS start the text |
1129 | | segment right after the exec header; the latter is counted in the |
1130 | | text segment size, and is paged in by the kernel with the rest of |
1131 | | the text. */ |
1132 | | |
1133 | | /* This perhaps isn't the right way to do this, but made it simpler for me |
1134 | | to understand enough to implement it. Better would probably be to go |
1135 | | right from BFD flags to alignment/positioning characteristics. But the |
1136 | | old code was sloppy enough about handling the flags, and had enough |
1137 | | other magic, that it was a little hard for me to understand. I think |
1138 | | I understand it better now, but I haven't time to do the cleanup this |
1139 | | minute. */ |
1140 | | |
1141 | 129 | if (abfd->flags & D_PAGED) |
1142 | | /* Whether or not WP_TEXT is set -- let D_PAGED override. */ |
1143 | 129 | adata (abfd).magic = z_magic; |
1144 | 0 | else if (abfd->flags & WP_TEXT) |
1145 | 0 | adata (abfd).magic = n_magic; |
1146 | 0 | else |
1147 | 0 | adata (abfd).magic = o_magic; |
1148 | | |
1149 | | #ifdef BFD_AOUT_DEBUG /* requires gcc2 */ |
1150 | | #if __GNUC__ >= 2 |
1151 | | fprintf (stderr, "%s text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x,%x>\n", |
1152 | | ({ char *str; |
1153 | | switch (adata (abfd).magic) |
1154 | | { |
1155 | | case n_magic: str = "NMAGIC"; break; |
1156 | | case o_magic: str = "OMAGIC"; break; |
1157 | | case z_magic: str = "ZMAGIC"; break; |
1158 | | default: abort (); |
1159 | | } |
1160 | | str; |
1161 | | }), |
1162 | | obj_textsec (abfd)->vma, obj_textsec (abfd)->size, |
1163 | | obj_textsec (abfd)->alignment_power, |
1164 | | obj_datasec (abfd)->vma, obj_datasec (abfd)->size, |
1165 | | obj_datasec (abfd)->alignment_power, |
1166 | | obj_bsssec (abfd)->vma, obj_bsssec (abfd)->size, |
1167 | | obj_bsssec (abfd)->alignment_power); |
1168 | | #endif |
1169 | | #endif |
1170 | | |
1171 | 129 | switch (adata (abfd).magic) |
1172 | 129 | { |
1173 | 0 | case o_magic: |
1174 | 0 | adjust_o_magic (abfd, execp); |
1175 | 0 | break; |
1176 | 129 | case z_magic: |
1177 | 129 | adjust_z_magic (abfd, execp); |
1178 | 129 | break; |
1179 | 0 | case n_magic: |
1180 | 0 | adjust_n_magic (abfd, execp); |
1181 | 0 | break; |
1182 | 0 | default: |
1183 | 0 | abort (); |
1184 | 129 | } |
1185 | | |
1186 | | #ifdef BFD_AOUT_DEBUG |
1187 | | fprintf (stderr, " text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x>\n", |
1188 | | obj_textsec (abfd)->vma, execp->a_text, |
1189 | | obj_textsec (abfd)->filepos, |
1190 | | obj_datasec (abfd)->vma, execp->a_data, |
1191 | | obj_datasec (abfd)->filepos, |
1192 | | obj_bsssec (abfd)->vma, execp->a_bss); |
1193 | | #endif |
1194 | | |
1195 | 129 | return true; |
1196 | 129 | } Unexecuted instantiation: cris_aout_32_adjust_sizes_and_vmas ns32kaout_32_adjust_sizes_and_vmas Line | Count | Source | 1113 | 64 | { | 1114 | 64 | struct internal_exec *execp = exec_hdr (abfd); | 1115 | | | 1116 | 64 | if (! NAME (aout, make_sections) (abfd)) | 1117 | 0 | return false; | 1118 | | | 1119 | 64 | if (adata (abfd).magic != undecided_magic) | 1120 | 0 | return true; | 1121 | | | 1122 | 64 | execp->a_text = align_power (obj_textsec (abfd)->size, | 1123 | 64 | obj_textsec (abfd)->alignment_power); | 1124 | | | 1125 | | /* Rule (heuristic) for when to pad to a new page. Note that there | 1126 | | are (at least) two ways demand-paged (ZMAGIC) files have been | 1127 | | handled. Most Berkeley-based systems start the text segment at | 1128 | | (TARGET_PAGE_SIZE). However, newer versions of SUNOS start the text | 1129 | | segment right after the exec header; the latter is counted in the | 1130 | | text segment size, and is paged in by the kernel with the rest of | 1131 | | the text. */ | 1132 | | | 1133 | | /* This perhaps isn't the right way to do this, but made it simpler for me | 1134 | | to understand enough to implement it. Better would probably be to go | 1135 | | right from BFD flags to alignment/positioning characteristics. But the | 1136 | | old code was sloppy enough about handling the flags, and had enough | 1137 | | other magic, that it was a little hard for me to understand. I think | 1138 | | I understand it better now, but I haven't time to do the cleanup this | 1139 | | minute. */ | 1140 | | | 1141 | 64 | if (abfd->flags & D_PAGED) | 1142 | | /* Whether or not WP_TEXT is set -- let D_PAGED override. */ | 1143 | 64 | adata (abfd).magic = z_magic; | 1144 | 0 | else if (abfd->flags & WP_TEXT) | 1145 | 0 | adata (abfd).magic = n_magic; | 1146 | 0 | else | 1147 | 0 | adata (abfd).magic = o_magic; | 1148 | | | 1149 | | #ifdef BFD_AOUT_DEBUG /* requires gcc2 */ | 1150 | | #if __GNUC__ >= 2 | 1151 | | fprintf (stderr, "%s text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x,%x>\n", | 1152 | | ({ char *str; | 1153 | | switch (adata (abfd).magic) | 1154 | | { | 1155 | | case n_magic: str = "NMAGIC"; break; | 1156 | | case o_magic: str = "OMAGIC"; break; | 1157 | | case z_magic: str = "ZMAGIC"; break; | 1158 | | default: abort (); | 1159 | | } | 1160 | | str; | 1161 | | }), | 1162 | | obj_textsec (abfd)->vma, obj_textsec (abfd)->size, | 1163 | | obj_textsec (abfd)->alignment_power, | 1164 | | obj_datasec (abfd)->vma, obj_datasec (abfd)->size, | 1165 | | obj_datasec (abfd)->alignment_power, | 1166 | | obj_bsssec (abfd)->vma, obj_bsssec (abfd)->size, | 1167 | | obj_bsssec (abfd)->alignment_power); | 1168 | | #endif | 1169 | | #endif | 1170 | | | 1171 | 64 | switch (adata (abfd).magic) | 1172 | 64 | { | 1173 | 0 | case o_magic: | 1174 | 0 | adjust_o_magic (abfd, execp); | 1175 | 0 | break; | 1176 | 64 | case z_magic: | 1177 | 64 | adjust_z_magic (abfd, execp); | 1178 | 64 | break; | 1179 | 0 | case n_magic: | 1180 | 0 | adjust_n_magic (abfd, execp); | 1181 | 0 | break; | 1182 | 0 | default: | 1183 | 0 | abort (); | 1184 | 64 | } | 1185 | | | 1186 | | #ifdef BFD_AOUT_DEBUG | 1187 | | fprintf (stderr, " text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x>\n", | 1188 | | obj_textsec (abfd)->vma, execp->a_text, | 1189 | | obj_textsec (abfd)->filepos, | 1190 | | obj_datasec (abfd)->vma, execp->a_data, | 1191 | | obj_datasec (abfd)->filepos, | 1192 | | obj_bsssec (abfd)->vma, execp->a_bss); | 1193 | | #endif | 1194 | | | 1195 | 64 | return true; | 1196 | 64 | } |
aout_32_adjust_sizes_and_vmas Line | Count | Source | 1113 | 65 | { | 1114 | 65 | struct internal_exec *execp = exec_hdr (abfd); | 1115 | | | 1116 | 65 | if (! NAME (aout, make_sections) (abfd)) | 1117 | 0 | return false; | 1118 | | | 1119 | 65 | if (adata (abfd).magic != undecided_magic) | 1120 | 0 | return true; | 1121 | | | 1122 | 65 | execp->a_text = align_power (obj_textsec (abfd)->size, | 1123 | 65 | obj_textsec (abfd)->alignment_power); | 1124 | | | 1125 | | /* Rule (heuristic) for when to pad to a new page. Note that there | 1126 | | are (at least) two ways demand-paged (ZMAGIC) files have been | 1127 | | handled. Most Berkeley-based systems start the text segment at | 1128 | | (TARGET_PAGE_SIZE). However, newer versions of SUNOS start the text | 1129 | | segment right after the exec header; the latter is counted in the | 1130 | | text segment size, and is paged in by the kernel with the rest of | 1131 | | the text. */ | 1132 | | | 1133 | | /* This perhaps isn't the right way to do this, but made it simpler for me | 1134 | | to understand enough to implement it. Better would probably be to go | 1135 | | right from BFD flags to alignment/positioning characteristics. But the | 1136 | | old code was sloppy enough about handling the flags, and had enough | 1137 | | other magic, that it was a little hard for me to understand. I think | 1138 | | I understand it better now, but I haven't time to do the cleanup this | 1139 | | minute. */ | 1140 | | | 1141 | 65 | if (abfd->flags & D_PAGED) | 1142 | | /* Whether or not WP_TEXT is set -- let D_PAGED override. */ | 1143 | 65 | adata (abfd).magic = z_magic; | 1144 | 0 | else if (abfd->flags & WP_TEXT) | 1145 | 0 | adata (abfd).magic = n_magic; | 1146 | 0 | else | 1147 | 0 | adata (abfd).magic = o_magic; | 1148 | | | 1149 | | #ifdef BFD_AOUT_DEBUG /* requires gcc2 */ | 1150 | | #if __GNUC__ >= 2 | 1151 | | fprintf (stderr, "%s text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x,%x>\n", | 1152 | | ({ char *str; | 1153 | | switch (adata (abfd).magic) | 1154 | | { | 1155 | | case n_magic: str = "NMAGIC"; break; | 1156 | | case o_magic: str = "OMAGIC"; break; | 1157 | | case z_magic: str = "ZMAGIC"; break; | 1158 | | default: abort (); | 1159 | | } | 1160 | | str; | 1161 | | }), | 1162 | | obj_textsec (abfd)->vma, obj_textsec (abfd)->size, | 1163 | | obj_textsec (abfd)->alignment_power, | 1164 | | obj_datasec (abfd)->vma, obj_datasec (abfd)->size, | 1165 | | obj_datasec (abfd)->alignment_power, | 1166 | | obj_bsssec (abfd)->vma, obj_bsssec (abfd)->size, | 1167 | | obj_bsssec (abfd)->alignment_power); | 1168 | | #endif | 1169 | | #endif | 1170 | | | 1171 | 65 | switch (adata (abfd).magic) | 1172 | 65 | { | 1173 | 0 | case o_magic: | 1174 | 0 | adjust_o_magic (abfd, execp); | 1175 | 0 | break; | 1176 | 65 | case z_magic: | 1177 | 65 | adjust_z_magic (abfd, execp); | 1178 | 65 | break; | 1179 | 0 | case n_magic: | 1180 | 0 | adjust_n_magic (abfd, execp); | 1181 | 0 | break; | 1182 | 0 | default: | 1183 | 0 | abort (); | 1184 | 65 | } | 1185 | | | 1186 | | #ifdef BFD_AOUT_DEBUG | 1187 | | fprintf (stderr, " text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x>\n", | 1188 | | obj_textsec (abfd)->vma, execp->a_text, | 1189 | | obj_textsec (abfd)->filepos, | 1190 | | obj_datasec (abfd)->vma, execp->a_data, | 1191 | | obj_datasec (abfd)->filepos, | 1192 | | obj_bsssec (abfd)->vma, execp->a_bss); | 1193 | | #endif | 1194 | | | 1195 | 65 | return true; | 1196 | 65 | } |
|
1197 | | |
1198 | | /* |
1199 | | FUNCTION |
1200 | | aout_@var{size}_new_section_hook |
1201 | | |
1202 | | SYNOPSIS |
1203 | | bool aout_@var{size}_new_section_hook, |
1204 | | (bfd *abfd, |
1205 | | asection *newsect); |
1206 | | |
1207 | | DESCRIPTION |
1208 | | Called by the BFD in response to a @code{bfd_make_section} |
1209 | | request. |
1210 | | */ |
1211 | | bool |
1212 | | NAME (aout, new_section_hook) (bfd *abfd, asection *newsect) |
1213 | 26.3k | { |
1214 | | /* Align to double at least. */ |
1215 | 26.3k | newsect->alignment_power = bfd_get_arch_info (abfd)->section_align_power; |
1216 | | |
1217 | 26.3k | if (bfd_get_format (abfd) == bfd_object) |
1218 | 26.3k | { |
1219 | 26.3k | if (obj_textsec (abfd) == NULL && !strcmp (newsect->name, ".text")) |
1220 | 8.78k | { |
1221 | 8.78k | obj_textsec (abfd)= newsect; |
1222 | 8.78k | newsect->target_index = N_TEXT; |
1223 | 8.78k | } |
1224 | 17.5k | else if (obj_datasec (abfd) == NULL && !strcmp (newsect->name, ".data")) |
1225 | 8.78k | { |
1226 | 8.78k | obj_datasec (abfd) = newsect; |
1227 | 8.78k | newsect->target_index = N_DATA; |
1228 | 8.78k | } |
1229 | 8.78k | else if (obj_bsssec (abfd) == NULL && !strcmp (newsect->name, ".bss")) |
1230 | 8.78k | { |
1231 | 8.78k | obj_bsssec (abfd) = newsect; |
1232 | 8.78k | newsect->target_index = N_BSS; |
1233 | 8.78k | } |
1234 | 26.3k | } |
1235 | | |
1236 | | /* We allow more than three sections internally. */ |
1237 | 26.3k | return _bfd_generic_new_section_hook (abfd, newsect); |
1238 | 26.3k | } cris_aout_32_new_section_hook Line | Count | Source | 1213 | 2.43k | { | 1214 | | /* Align to double at least. */ | 1215 | 2.43k | newsect->alignment_power = bfd_get_arch_info (abfd)->section_align_power; | 1216 | | | 1217 | 2.43k | if (bfd_get_format (abfd) == bfd_object) | 1218 | 2.43k | { | 1219 | 2.43k | if (obj_textsec (abfd) == NULL && !strcmp (newsect->name, ".text")) | 1220 | 810 | { | 1221 | 810 | obj_textsec (abfd)= newsect; | 1222 | 810 | newsect->target_index = N_TEXT; | 1223 | 810 | } | 1224 | 1.62k | else if (obj_datasec (abfd) == NULL && !strcmp (newsect->name, ".data")) | 1225 | 810 | { | 1226 | 810 | obj_datasec (abfd) = newsect; | 1227 | 810 | newsect->target_index = N_DATA; | 1228 | 810 | } | 1229 | 810 | else if (obj_bsssec (abfd) == NULL && !strcmp (newsect->name, ".bss")) | 1230 | 810 | { | 1231 | 810 | obj_bsssec (abfd) = newsect; | 1232 | 810 | newsect->target_index = N_BSS; | 1233 | 810 | } | 1234 | 2.43k | } | 1235 | | | 1236 | | /* We allow more than three sections internally. */ | 1237 | 2.43k | return _bfd_generic_new_section_hook (abfd, newsect); | 1238 | 2.43k | } |
ns32kaout_32_new_section_hook Line | Count | Source | 1213 | 7.82k | { | 1214 | | /* Align to double at least. */ | 1215 | 7.82k | newsect->alignment_power = bfd_get_arch_info (abfd)->section_align_power; | 1216 | | | 1217 | 7.82k | if (bfd_get_format (abfd) == bfd_object) | 1218 | 7.82k | { | 1219 | 7.82k | if (obj_textsec (abfd) == NULL && !strcmp (newsect->name, ".text")) | 1220 | 2.60k | { | 1221 | 2.60k | obj_textsec (abfd)= newsect; | 1222 | 2.60k | newsect->target_index = N_TEXT; | 1223 | 2.60k | } | 1224 | 5.21k | else if (obj_datasec (abfd) == NULL && !strcmp (newsect->name, ".data")) | 1225 | 2.60k | { | 1226 | 2.60k | obj_datasec (abfd) = newsect; | 1227 | 2.60k | newsect->target_index = N_DATA; | 1228 | 2.60k | } | 1229 | 2.60k | else if (obj_bsssec (abfd) == NULL && !strcmp (newsect->name, ".bss")) | 1230 | 2.60k | { | 1231 | 2.60k | obj_bsssec (abfd) = newsect; | 1232 | 2.60k | newsect->target_index = N_BSS; | 1233 | 2.60k | } | 1234 | 7.82k | } | 1235 | | | 1236 | | /* We allow more than three sections internally. */ | 1237 | 7.82k | return _bfd_generic_new_section_hook (abfd, newsect); | 1238 | 7.82k | } |
Line | Count | Source | 1213 | 16.1k | { | 1214 | | /* Align to double at least. */ | 1215 | 16.1k | newsect->alignment_power = bfd_get_arch_info (abfd)->section_align_power; | 1216 | | | 1217 | 16.1k | if (bfd_get_format (abfd) == bfd_object) | 1218 | 16.1k | { | 1219 | 16.1k | if (obj_textsec (abfd) == NULL && !strcmp (newsect->name, ".text")) | 1220 | 5.36k | { | 1221 | 5.36k | obj_textsec (abfd)= newsect; | 1222 | 5.36k | newsect->target_index = N_TEXT; | 1223 | 5.36k | } | 1224 | 10.7k | else if (obj_datasec (abfd) == NULL && !strcmp (newsect->name, ".data")) | 1225 | 5.36k | { | 1226 | 5.36k | obj_datasec (abfd) = newsect; | 1227 | 5.36k | newsect->target_index = N_DATA; | 1228 | 5.36k | } | 1229 | 5.36k | else if (obj_bsssec (abfd) == NULL && !strcmp (newsect->name, ".bss")) | 1230 | 5.36k | { | 1231 | 5.36k | obj_bsssec (abfd) = newsect; | 1232 | 5.36k | newsect->target_index = N_BSS; | 1233 | 5.36k | } | 1234 | 16.1k | } | 1235 | | | 1236 | | /* We allow more than three sections internally. */ | 1237 | 16.1k | return _bfd_generic_new_section_hook (abfd, newsect); | 1238 | 16.1k | } |
|
1239 | | |
1240 | | bool |
1241 | | NAME (aout, set_section_contents) (bfd *abfd, |
1242 | | sec_ptr section, |
1243 | | const void * location, |
1244 | | file_ptr offset, |
1245 | | bfd_size_type count) |
1246 | 39 | { |
1247 | 39 | if (! abfd->output_has_begun) |
1248 | 35 | { |
1249 | 35 | if (! NAME (aout, adjust_sizes_and_vmas) (abfd)) |
1250 | 0 | return false; |
1251 | 35 | } |
1252 | | |
1253 | 39 | if (section == obj_bsssec (abfd)) |
1254 | 0 | { |
1255 | 0 | bfd_set_error (bfd_error_no_contents); |
1256 | 0 | return false; |
1257 | 0 | } |
1258 | | |
1259 | 39 | if (section != obj_textsec (abfd) |
1260 | 4 | && section != obj_datasec (abfd)) |
1261 | 0 | { |
1262 | 0 | if (aout_section_merge_with_text_p (abfd, section)) |
1263 | 0 | section->filepos = obj_textsec (abfd)->filepos + |
1264 | 0 | (section->vma - obj_textsec (abfd)->vma); |
1265 | 0 | else |
1266 | 0 | { |
1267 | 0 | _bfd_error_handler |
1268 | | /* xgettext:c-format */ |
1269 | 0 | (_("%pB: can not represent section `%pA' in a.out object file format"), |
1270 | 0 | abfd, section); |
1271 | 0 | bfd_set_error (bfd_error_nonrepresentable_section); |
1272 | 0 | return false; |
1273 | 0 | } |
1274 | 0 | } |
1275 | | |
1276 | 39 | if (count != 0) |
1277 | 39 | { |
1278 | 39 | if (bfd_seek (abfd, section->filepos + offset, SEEK_SET) != 0 |
1279 | 39 | || bfd_write (location, count, abfd) != count) |
1280 | 0 | return false; |
1281 | 39 | } |
1282 | | |
1283 | 39 | return true; |
1284 | 39 | } Unexecuted instantiation: cris_aout_32_set_section_contents ns32kaout_32_set_section_contents Line | Count | Source | 1246 | 14 | { | 1247 | 14 | if (! abfd->output_has_begun) | 1248 | 13 | { | 1249 | 13 | if (! NAME (aout, adjust_sizes_and_vmas) (abfd)) | 1250 | 0 | return false; | 1251 | 13 | } | 1252 | | | 1253 | 14 | if (section == obj_bsssec (abfd)) | 1254 | 0 | { | 1255 | 0 | bfd_set_error (bfd_error_no_contents); | 1256 | 0 | return false; | 1257 | 0 | } | 1258 | | | 1259 | 14 | if (section != obj_textsec (abfd) | 1260 | 1 | && section != obj_datasec (abfd)) | 1261 | 0 | { | 1262 | 0 | if (aout_section_merge_with_text_p (abfd, section)) | 1263 | 0 | section->filepos = obj_textsec (abfd)->filepos + | 1264 | 0 | (section->vma - obj_textsec (abfd)->vma); | 1265 | 0 | else | 1266 | 0 | { | 1267 | 0 | _bfd_error_handler | 1268 | | /* xgettext:c-format */ | 1269 | 0 | (_("%pB: can not represent section `%pA' in a.out object file format"), | 1270 | 0 | abfd, section); | 1271 | 0 | bfd_set_error (bfd_error_nonrepresentable_section); | 1272 | 0 | return false; | 1273 | 0 | } | 1274 | 0 | } | 1275 | | | 1276 | 14 | if (count != 0) | 1277 | 14 | { | 1278 | 14 | if (bfd_seek (abfd, section->filepos + offset, SEEK_SET) != 0 | 1279 | 14 | || bfd_write (location, count, abfd) != count) | 1280 | 0 | return false; | 1281 | 14 | } | 1282 | | | 1283 | 14 | return true; | 1284 | 14 | } |
aout_32_set_section_contents Line | Count | Source | 1246 | 25 | { | 1247 | 25 | if (! abfd->output_has_begun) | 1248 | 22 | { | 1249 | 22 | if (! NAME (aout, adjust_sizes_and_vmas) (abfd)) | 1250 | 0 | return false; | 1251 | 22 | } | 1252 | | | 1253 | 25 | if (section == obj_bsssec (abfd)) | 1254 | 0 | { | 1255 | 0 | bfd_set_error (bfd_error_no_contents); | 1256 | 0 | return false; | 1257 | 0 | } | 1258 | | | 1259 | 25 | if (section != obj_textsec (abfd) | 1260 | 3 | && section != obj_datasec (abfd)) | 1261 | 0 | { | 1262 | 0 | if (aout_section_merge_with_text_p (abfd, section)) | 1263 | 0 | section->filepos = obj_textsec (abfd)->filepos + | 1264 | 0 | (section->vma - obj_textsec (abfd)->vma); | 1265 | 0 | else | 1266 | 0 | { | 1267 | 0 | _bfd_error_handler | 1268 | | /* xgettext:c-format */ | 1269 | 0 | (_("%pB: can not represent section `%pA' in a.out object file format"), | 1270 | 0 | abfd, section); | 1271 | 0 | bfd_set_error (bfd_error_nonrepresentable_section); | 1272 | 0 | return false; | 1273 | 0 | } | 1274 | 0 | } | 1275 | | | 1276 | 25 | if (count != 0) | 1277 | 25 | { | 1278 | 25 | if (bfd_seek (abfd, section->filepos + offset, SEEK_SET) != 0 | 1279 | 25 | || bfd_write (location, count, abfd) != count) | 1280 | 0 | return false; | 1281 | 25 | } | 1282 | | | 1283 | 25 | return true; | 1284 | 25 | } |
|
1285 | | |
1286 | | /* Read the external symbols from an a.out file. */ |
1287 | | |
1288 | | static bool |
1289 | | aout_get_external_symbols (bfd *abfd) |
1290 | 514 | { |
1291 | 514 | if (bfd_get_flavour (abfd) != bfd_target_aout_flavour) |
1292 | 0 | { |
1293 | 0 | bfd_set_error (bfd_error_invalid_operation); |
1294 | 0 | return false; |
1295 | 0 | } |
1296 | | |
1297 | 514 | if (obj_aout_external_syms (abfd) == NULL) |
1298 | 469 | { |
1299 | 469 | bfd_size_type count; |
1300 | 469 | struct external_nlist *syms = NULL; |
1301 | 469 | bfd_size_type amt = exec_hdr (abfd)->a_syms; |
1302 | | |
1303 | 469 | count = amt / EXTERNAL_NLIST_SIZE; |
1304 | 469 | if (count == 0) |
1305 | 48 | return true; |
1306 | | |
1307 | | /* We allocate using malloc to make the values easy to free |
1308 | | later on. If we put them on the objalloc it might not be |
1309 | | possible to free them. */ |
1310 | 421 | if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0) |
1311 | 0 | return false; |
1312 | 421 | syms = _bfd_malloc_and_read (abfd, amt, amt); |
1313 | 421 | if (syms == NULL) |
1314 | 125 | return false; |
1315 | | |
1316 | 296 | obj_aout_external_syms (abfd) = syms; |
1317 | 296 | obj_aout_external_sym_count (abfd) = count; |
1318 | 296 | } |
1319 | | |
1320 | 341 | if (obj_aout_external_strings (abfd) == NULL |
1321 | 296 | && exec_hdr (abfd)->a_syms != 0) |
1322 | 296 | { |
1323 | 296 | unsigned char string_chars[BYTES_IN_WORD]; |
1324 | 296 | bfd_size_type stringsize; |
1325 | 296 | char *strings; |
1326 | 296 | bfd_size_type amt = BYTES_IN_WORD; |
1327 | | |
1328 | | /* Get the size of the strings. */ |
1329 | 296 | if (bfd_seek (abfd, obj_str_filepos (abfd), SEEK_SET) != 0 |
1330 | 296 | || bfd_read (string_chars, amt, abfd) != amt) |
1331 | 3 | return false; |
1332 | 293 | stringsize = GET_WORD (abfd, string_chars); |
1333 | 293 | if (stringsize == 0) |
1334 | 122 | stringsize = 1; |
1335 | 171 | else if (stringsize + 1 < BYTES_IN_WORD + 1 |
1336 | 169 | || (size_t) stringsize != stringsize) |
1337 | 2 | { |
1338 | 2 | bfd_set_error (bfd_error_bad_value); |
1339 | 2 | return false; |
1340 | 2 | } |
1341 | | |
1342 | 291 | strings = (char *) bfd_malloc (stringsize + 1); |
1343 | 291 | if (strings == NULL) |
1344 | 0 | return false; |
1345 | | |
1346 | 291 | if (stringsize >= BYTES_IN_WORD) |
1347 | 169 | { |
1348 | 169 | amt = stringsize - BYTES_IN_WORD; |
1349 | 169 | if (bfd_read (strings + BYTES_IN_WORD, amt, abfd) != amt) |
1350 | 46 | { |
1351 | 46 | free (strings); |
1352 | 46 | return false; |
1353 | 46 | } |
1354 | 169 | } |
1355 | | |
1356 | | /* Ensure that a zero index yields an empty string. */ |
1357 | 245 | if (stringsize >= BYTES_IN_WORD) |
1358 | 123 | memset (strings, 0, BYTES_IN_WORD); |
1359 | | |
1360 | | /* Ensure that the string buffer is NUL terminated. */ |
1361 | 245 | strings[stringsize] = 0; |
1362 | | |
1363 | 245 | obj_aout_external_strings (abfd) = strings; |
1364 | 245 | obj_aout_external_string_size (abfd) = stringsize; |
1365 | 245 | } |
1366 | | |
1367 | 290 | return true; |
1368 | 341 | } Unexecuted instantiation: aout-cris.c:aout_get_external_symbols aout-ns32k.c:aout_get_external_symbols Line | Count | Source | 1290 | 267 | { | 1291 | 267 | if (bfd_get_flavour (abfd) != bfd_target_aout_flavour) | 1292 | 0 | { | 1293 | 0 | bfd_set_error (bfd_error_invalid_operation); | 1294 | 0 | return false; | 1295 | 0 | } | 1296 | | | 1297 | 267 | if (obj_aout_external_syms (abfd) == NULL) | 1298 | 250 | { | 1299 | 250 | bfd_size_type count; | 1300 | 250 | struct external_nlist *syms = NULL; | 1301 | 250 | bfd_size_type amt = exec_hdr (abfd)->a_syms; | 1302 | | | 1303 | 250 | count = amt / EXTERNAL_NLIST_SIZE; | 1304 | 250 | if (count == 0) | 1305 | 24 | return true; | 1306 | | | 1307 | | /* We allocate using malloc to make the values easy to free | 1308 | | later on. If we put them on the objalloc it might not be | 1309 | | possible to free them. */ | 1310 | 226 | if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0) | 1311 | 0 | return false; | 1312 | 226 | syms = _bfd_malloc_and_read (abfd, amt, amt); | 1313 | 226 | if (syms == NULL) | 1314 | 75 | return false; | 1315 | | | 1316 | 151 | obj_aout_external_syms (abfd) = syms; | 1317 | 151 | obj_aout_external_sym_count (abfd) = count; | 1318 | 151 | } | 1319 | | | 1320 | 168 | if (obj_aout_external_strings (abfd) == NULL | 1321 | 151 | && exec_hdr (abfd)->a_syms != 0) | 1322 | 151 | { | 1323 | 151 | unsigned char string_chars[BYTES_IN_WORD]; | 1324 | 151 | bfd_size_type stringsize; | 1325 | 151 | char *strings; | 1326 | 151 | bfd_size_type amt = BYTES_IN_WORD; | 1327 | | | 1328 | | /* Get the size of the strings. */ | 1329 | 151 | if (bfd_seek (abfd, obj_str_filepos (abfd), SEEK_SET) != 0 | 1330 | 151 | || bfd_read (string_chars, amt, abfd) != amt) | 1331 | 1 | return false; | 1332 | 150 | stringsize = GET_WORD (abfd, string_chars); | 1333 | 150 | if (stringsize == 0) | 1334 | 72 | stringsize = 1; | 1335 | 78 | else if (stringsize + 1 < BYTES_IN_WORD + 1 | 1336 | 77 | || (size_t) stringsize != stringsize) | 1337 | 1 | { | 1338 | 1 | bfd_set_error (bfd_error_bad_value); | 1339 | 1 | return false; | 1340 | 1 | } | 1341 | | | 1342 | 149 | strings = (char *) bfd_malloc (stringsize + 1); | 1343 | 149 | if (strings == NULL) | 1344 | 0 | return false; | 1345 | | | 1346 | 149 | if (stringsize >= BYTES_IN_WORD) | 1347 | 77 | { | 1348 | 77 | amt = stringsize - BYTES_IN_WORD; | 1349 | 77 | if (bfd_read (strings + BYTES_IN_WORD, amt, abfd) != amt) | 1350 | 32 | { | 1351 | 32 | free (strings); | 1352 | 32 | return false; | 1353 | 32 | } | 1354 | 77 | } | 1355 | | | 1356 | | /* Ensure that a zero index yields an empty string. */ | 1357 | 117 | if (stringsize >= BYTES_IN_WORD) | 1358 | 45 | memset (strings, 0, BYTES_IN_WORD); | 1359 | | | 1360 | | /* Ensure that the string buffer is NUL terminated. */ | 1361 | 117 | strings[stringsize] = 0; | 1362 | | | 1363 | 117 | obj_aout_external_strings (abfd) = strings; | 1364 | 117 | obj_aout_external_string_size (abfd) = stringsize; | 1365 | 117 | } | 1366 | | | 1367 | 134 | return true; | 1368 | 168 | } |
aout32.c:aout_get_external_symbols Line | Count | Source | 1290 | 247 | { | 1291 | 247 | if (bfd_get_flavour (abfd) != bfd_target_aout_flavour) | 1292 | 0 | { | 1293 | 0 | bfd_set_error (bfd_error_invalid_operation); | 1294 | 0 | return false; | 1295 | 0 | } | 1296 | | | 1297 | 247 | if (obj_aout_external_syms (abfd) == NULL) | 1298 | 219 | { | 1299 | 219 | bfd_size_type count; | 1300 | 219 | struct external_nlist *syms = NULL; | 1301 | 219 | bfd_size_type amt = exec_hdr (abfd)->a_syms; | 1302 | | | 1303 | 219 | count = amt / EXTERNAL_NLIST_SIZE; | 1304 | 219 | if (count == 0) | 1305 | 24 | return true; | 1306 | | | 1307 | | /* We allocate using malloc to make the values easy to free | 1308 | | later on. If we put them on the objalloc it might not be | 1309 | | possible to free them. */ | 1310 | 195 | if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0) | 1311 | 0 | return false; | 1312 | 195 | syms = _bfd_malloc_and_read (abfd, amt, amt); | 1313 | 195 | if (syms == NULL) | 1314 | 50 | return false; | 1315 | | | 1316 | 145 | obj_aout_external_syms (abfd) = syms; | 1317 | 145 | obj_aout_external_sym_count (abfd) = count; | 1318 | 145 | } | 1319 | | | 1320 | 173 | if (obj_aout_external_strings (abfd) == NULL | 1321 | 145 | && exec_hdr (abfd)->a_syms != 0) | 1322 | 145 | { | 1323 | 145 | unsigned char string_chars[BYTES_IN_WORD]; | 1324 | 145 | bfd_size_type stringsize; | 1325 | 145 | char *strings; | 1326 | 145 | bfd_size_type amt = BYTES_IN_WORD; | 1327 | | | 1328 | | /* Get the size of the strings. */ | 1329 | 145 | if (bfd_seek (abfd, obj_str_filepos (abfd), SEEK_SET) != 0 | 1330 | 145 | || bfd_read (string_chars, amt, abfd) != amt) | 1331 | 2 | return false; | 1332 | 143 | stringsize = GET_WORD (abfd, string_chars); | 1333 | 143 | if (stringsize == 0) | 1334 | 50 | stringsize = 1; | 1335 | 93 | else if (stringsize + 1 < BYTES_IN_WORD + 1 | 1336 | 92 | || (size_t) stringsize != stringsize) | 1337 | 1 | { | 1338 | 1 | bfd_set_error (bfd_error_bad_value); | 1339 | 1 | return false; | 1340 | 1 | } | 1341 | | | 1342 | 142 | strings = (char *) bfd_malloc (stringsize + 1); | 1343 | 142 | if (strings == NULL) | 1344 | 0 | return false; | 1345 | | | 1346 | 142 | if (stringsize >= BYTES_IN_WORD) | 1347 | 92 | { | 1348 | 92 | amt = stringsize - BYTES_IN_WORD; | 1349 | 92 | if (bfd_read (strings + BYTES_IN_WORD, amt, abfd) != amt) | 1350 | 14 | { | 1351 | 14 | free (strings); | 1352 | 14 | return false; | 1353 | 14 | } | 1354 | 92 | } | 1355 | | | 1356 | | /* Ensure that a zero index yields an empty string. */ | 1357 | 128 | if (stringsize >= BYTES_IN_WORD) | 1358 | 78 | memset (strings, 0, BYTES_IN_WORD); | 1359 | | | 1360 | | /* Ensure that the string buffer is NUL terminated. */ | 1361 | 128 | strings[stringsize] = 0; | 1362 | | | 1363 | 128 | obj_aout_external_strings (abfd) = strings; | 1364 | 128 | obj_aout_external_string_size (abfd) = stringsize; | 1365 | 128 | } | 1366 | | | 1367 | 156 | return true; | 1368 | 173 | } |
|
1369 | | |
1370 | | /* Translate an a.out symbol into a BFD symbol. The desc, other, type |
1371 | | and symbol->value fields of CACHE_PTR will be set from the a.out |
1372 | | nlist structure. This function is responsible for setting |
1373 | | symbol->flags and symbol->section, and adjusting symbol->value. */ |
1374 | | |
1375 | | static bool |
1376 | | translate_from_native_sym_flags (bfd *abfd, aout_symbol_type *cache_ptr) |
1377 | 3.35k | { |
1378 | 3.35k | flagword visible; |
1379 | | |
1380 | 3.35k | if ((cache_ptr->type & N_STAB) != 0 |
1381 | 2.59k | || cache_ptr->type == N_FN) |
1382 | 761 | { |
1383 | 761 | asection *sec; |
1384 | | |
1385 | | /* This is a debugging symbol. */ |
1386 | 761 | cache_ptr->symbol.flags = BSF_DEBUGGING; |
1387 | | |
1388 | | /* Work out the symbol section. */ |
1389 | 761 | switch (cache_ptr->type & N_TYPE) |
1390 | 761 | { |
1391 | 283 | case N_TEXT: |
1392 | 283 | case N_FN: |
1393 | 283 | sec = obj_textsec (abfd); |
1394 | 283 | break; |
1395 | 119 | case N_DATA: |
1396 | 119 | sec = obj_datasec (abfd); |
1397 | 119 | break; |
1398 | 46 | case N_BSS: |
1399 | 46 | sec = obj_bsssec (abfd); |
1400 | 46 | break; |
1401 | 300 | default: |
1402 | 313 | case N_ABS: |
1403 | 313 | sec = bfd_abs_section_ptr; |
1404 | 313 | break; |
1405 | 761 | } |
1406 | | |
1407 | 761 | cache_ptr->symbol.section = sec; |
1408 | 761 | cache_ptr->symbol.value -= sec->vma; |
1409 | | |
1410 | 761 | return true; |
1411 | 761 | } |
1412 | | |
1413 | | /* Get the default visibility. This does not apply to all types, so |
1414 | | we just hold it in a local variable to use if wanted. */ |
1415 | 2.59k | if ((cache_ptr->type & N_EXT) == 0) |
1416 | 2.06k | visible = BSF_LOCAL; |
1417 | 526 | else |
1418 | 526 | visible = BSF_GLOBAL; |
1419 | | |
1420 | 2.59k | switch (cache_ptr->type) |
1421 | 2.59k | { |
1422 | 1.60k | default: |
1423 | 1.62k | case N_ABS: case N_ABS | N_EXT: |
1424 | 1.62k | cache_ptr->symbol.section = bfd_abs_section_ptr; |
1425 | 1.62k | cache_ptr->symbol.flags = visible; |
1426 | 1.62k | break; |
1427 | | |
1428 | 108 | case N_UNDF | N_EXT: |
1429 | 108 | if (cache_ptr->symbol.value != 0) |
1430 | 73 | { |
1431 | | /* This is a common symbol. */ |
1432 | 73 | cache_ptr->symbol.flags = BSF_GLOBAL; |
1433 | 73 | cache_ptr->symbol.section = bfd_com_section_ptr; |
1434 | 73 | } |
1435 | 35 | else |
1436 | 35 | { |
1437 | 35 | cache_ptr->symbol.flags = 0; |
1438 | 35 | cache_ptr->symbol.section = bfd_und_section_ptr; |
1439 | 35 | } |
1440 | 108 | break; |
1441 | | |
1442 | 139 | case N_TEXT: case N_TEXT | N_EXT: |
1443 | 139 | cache_ptr->symbol.section = obj_textsec (abfd); |
1444 | 139 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; |
1445 | 139 | cache_ptr->symbol.flags = visible; |
1446 | 139 | break; |
1447 | | |
1448 | | /* N_SETV symbols used to represent set vectors placed in the |
1449 | | data section. They are no longer generated. Theoretically, |
1450 | | it was possible to extract the entries and combine them with |
1451 | | new ones, although I don't know if that was ever actually |
1452 | | done. Unless that feature is restored, treat them as data |
1453 | | symbols. */ |
1454 | 16 | case N_SETV: case N_SETV | N_EXT: |
1455 | 86 | case N_DATA: case N_DATA | N_EXT: |
1456 | 86 | cache_ptr->symbol.section = obj_datasec (abfd); |
1457 | 86 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; |
1458 | 86 | cache_ptr->symbol.flags = visible; |
1459 | 86 | break; |
1460 | | |
1461 | 70 | case N_BSS: case N_BSS | N_EXT: |
1462 | 70 | cache_ptr->symbol.section = obj_bsssec (abfd); |
1463 | 70 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; |
1464 | 70 | cache_ptr->symbol.flags = visible; |
1465 | 70 | break; |
1466 | | |
1467 | 30 | case N_SETA: case N_SETA | N_EXT: |
1468 | 86 | case N_SETT: case N_SETT | N_EXT: |
1469 | 161 | case N_SETD: case N_SETD | N_EXT: |
1470 | 237 | case N_SETB: case N_SETB | N_EXT: |
1471 | 237 | { |
1472 | | /* This code is no longer needed. It used to be used to make |
1473 | | the linker handle set symbols, but they are now handled in |
1474 | | the add_symbols routine instead. */ |
1475 | 237 | switch (cache_ptr->type & N_TYPE) |
1476 | 237 | { |
1477 | 30 | case N_SETA: |
1478 | 30 | cache_ptr->symbol.section = bfd_abs_section_ptr; |
1479 | 30 | break; |
1480 | 56 | case N_SETT: |
1481 | 56 | cache_ptr->symbol.section = obj_textsec (abfd); |
1482 | 56 | break; |
1483 | 75 | case N_SETD: |
1484 | 75 | cache_ptr->symbol.section = obj_datasec (abfd); |
1485 | 75 | break; |
1486 | 76 | case N_SETB: |
1487 | 76 | cache_ptr->symbol.section = obj_bsssec (abfd); |
1488 | 76 | break; |
1489 | 237 | } |
1490 | | |
1491 | 237 | cache_ptr->symbol.flags |= BSF_CONSTRUCTOR; |
1492 | 237 | } |
1493 | 0 | break; |
1494 | | |
1495 | 8 | case N_WARNING: |
1496 | | /* This symbol is the text of a warning message. The next |
1497 | | symbol is the symbol to associate the warning with. If a |
1498 | | reference is made to that symbol, a warning is issued. */ |
1499 | 8 | cache_ptr->symbol.flags = BSF_DEBUGGING | BSF_WARNING; |
1500 | 8 | cache_ptr->symbol.section = bfd_abs_section_ptr; |
1501 | 8 | break; |
1502 | | |
1503 | 53 | case N_INDR: case N_INDR | N_EXT: |
1504 | | /* An indirect symbol. This consists of two symbols in a row. |
1505 | | The first symbol is the name of the indirection. The second |
1506 | | symbol is the name of the target. A reference to the first |
1507 | | symbol becomes a reference to the second. */ |
1508 | 53 | cache_ptr->symbol.flags = BSF_DEBUGGING | BSF_INDIRECT | visible; |
1509 | 53 | cache_ptr->symbol.section = bfd_ind_section_ptr; |
1510 | 53 | break; |
1511 | | |
1512 | 93 | case N_WEAKU: |
1513 | 93 | cache_ptr->symbol.section = bfd_und_section_ptr; |
1514 | 93 | cache_ptr->symbol.flags = BSF_WEAK; |
1515 | 93 | break; |
1516 | | |
1517 | 14 | case N_WEAKA: |
1518 | 14 | cache_ptr->symbol.section = bfd_abs_section_ptr; |
1519 | 14 | cache_ptr->symbol.flags = BSF_WEAK; |
1520 | 14 | break; |
1521 | | |
1522 | 81 | case N_WEAKT: |
1523 | 81 | cache_ptr->symbol.section = obj_textsec (abfd); |
1524 | 81 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; |
1525 | 81 | cache_ptr->symbol.flags = BSF_WEAK; |
1526 | 81 | break; |
1527 | | |
1528 | 61 | case N_WEAKD: |
1529 | 61 | cache_ptr->symbol.section = obj_datasec (abfd); |
1530 | 61 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; |
1531 | 61 | cache_ptr->symbol.flags = BSF_WEAK; |
1532 | 61 | break; |
1533 | | |
1534 | 19 | case N_WEAKB: |
1535 | 19 | cache_ptr->symbol.section = obj_bsssec (abfd); |
1536 | 19 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; |
1537 | 19 | cache_ptr->symbol.flags = BSF_WEAK; |
1538 | 19 | break; |
1539 | 2.59k | } |
1540 | | |
1541 | 2.59k | return true; |
1542 | 2.59k | } Unexecuted instantiation: aout-cris.c:translate_from_native_sym_flags aout-ns32k.c:translate_from_native_sym_flags Line | Count | Source | 1377 | 1.79k | { | 1378 | 1.79k | flagword visible; | 1379 | | | 1380 | 1.79k | if ((cache_ptr->type & N_STAB) != 0 | 1381 | 1.53k | || cache_ptr->type == N_FN) | 1382 | 259 | { | 1383 | 259 | asection *sec; | 1384 | | | 1385 | | /* This is a debugging symbol. */ | 1386 | 259 | cache_ptr->symbol.flags = BSF_DEBUGGING; | 1387 | | | 1388 | | /* Work out the symbol section. */ | 1389 | 259 | switch (cache_ptr->type & N_TYPE) | 1390 | 259 | { | 1391 | 97 | case N_TEXT: | 1392 | 97 | case N_FN: | 1393 | 97 | sec = obj_textsec (abfd); | 1394 | 97 | break; | 1395 | 43 | case N_DATA: | 1396 | 43 | sec = obj_datasec (abfd); | 1397 | 43 | break; | 1398 | 13 | case N_BSS: | 1399 | 13 | sec = obj_bsssec (abfd); | 1400 | 13 | break; | 1401 | 102 | default: | 1402 | 106 | case N_ABS: | 1403 | 106 | sec = bfd_abs_section_ptr; | 1404 | 106 | break; | 1405 | 259 | } | 1406 | | | 1407 | 259 | cache_ptr->symbol.section = sec; | 1408 | 259 | cache_ptr->symbol.value -= sec->vma; | 1409 | | | 1410 | 259 | return true; | 1411 | 259 | } | 1412 | | | 1413 | | /* Get the default visibility. This does not apply to all types, so | 1414 | | we just hold it in a local variable to use if wanted. */ | 1415 | 1.53k | if ((cache_ptr->type & N_EXT) == 0) | 1416 | 1.31k | visible = BSF_LOCAL; | 1417 | 214 | else | 1418 | 214 | visible = BSF_GLOBAL; | 1419 | | | 1420 | 1.53k | switch (cache_ptr->type) | 1421 | 1.53k | { | 1422 | 1.10k | default: | 1423 | 1.11k | case N_ABS: case N_ABS | N_EXT: | 1424 | 1.11k | cache_ptr->symbol.section = bfd_abs_section_ptr; | 1425 | 1.11k | cache_ptr->symbol.flags = visible; | 1426 | 1.11k | break; | 1427 | | | 1428 | 61 | case N_UNDF | N_EXT: | 1429 | 61 | if (cache_ptr->symbol.value != 0) | 1430 | 40 | { | 1431 | | /* This is a common symbol. */ | 1432 | 40 | cache_ptr->symbol.flags = BSF_GLOBAL; | 1433 | 40 | cache_ptr->symbol.section = bfd_com_section_ptr; | 1434 | 40 | } | 1435 | 21 | else | 1436 | 21 | { | 1437 | 21 | cache_ptr->symbol.flags = 0; | 1438 | 21 | cache_ptr->symbol.section = bfd_und_section_ptr; | 1439 | 21 | } | 1440 | 61 | break; | 1441 | | | 1442 | 58 | case N_TEXT: case N_TEXT | N_EXT: | 1443 | 58 | cache_ptr->symbol.section = obj_textsec (abfd); | 1444 | 58 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; | 1445 | 58 | cache_ptr->symbol.flags = visible; | 1446 | 58 | break; | 1447 | | | 1448 | | /* N_SETV symbols used to represent set vectors placed in the | 1449 | | data section. They are no longer generated. Theoretically, | 1450 | | it was possible to extract the entries and combine them with | 1451 | | new ones, although I don't know if that was ever actually | 1452 | | done. Unless that feature is restored, treat them as data | 1453 | | symbols. */ | 1454 | 14 | case N_SETV: case N_SETV | N_EXT: | 1455 | 48 | case N_DATA: case N_DATA | N_EXT: | 1456 | 48 | cache_ptr->symbol.section = obj_datasec (abfd); | 1457 | 48 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; | 1458 | 48 | cache_ptr->symbol.flags = visible; | 1459 | 48 | break; | 1460 | | | 1461 | 34 | case N_BSS: case N_BSS | N_EXT: | 1462 | 34 | cache_ptr->symbol.section = obj_bsssec (abfd); | 1463 | 34 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; | 1464 | 34 | cache_ptr->symbol.flags = visible; | 1465 | 34 | break; | 1466 | | | 1467 | 8 | case N_SETA: case N_SETA | N_EXT: | 1468 | 18 | case N_SETT: case N_SETT | N_EXT: | 1469 | 46 | case N_SETD: case N_SETD | N_EXT: | 1470 | 75 | case N_SETB: case N_SETB | N_EXT: | 1471 | 75 | { | 1472 | | /* This code is no longer needed. It used to be used to make | 1473 | | the linker handle set symbols, but they are now handled in | 1474 | | the add_symbols routine instead. */ | 1475 | 75 | switch (cache_ptr->type & N_TYPE) | 1476 | 75 | { | 1477 | 8 | case N_SETA: | 1478 | 8 | cache_ptr->symbol.section = bfd_abs_section_ptr; | 1479 | 8 | break; | 1480 | 10 | case N_SETT: | 1481 | 10 | cache_ptr->symbol.section = obj_textsec (abfd); | 1482 | 10 | break; | 1483 | 28 | case N_SETD: | 1484 | 28 | cache_ptr->symbol.section = obj_datasec (abfd); | 1485 | 28 | break; | 1486 | 29 | case N_SETB: | 1487 | 29 | cache_ptr->symbol.section = obj_bsssec (abfd); | 1488 | 29 | break; | 1489 | 75 | } | 1490 | | | 1491 | 75 | cache_ptr->symbol.flags |= BSF_CONSTRUCTOR; | 1492 | 75 | } | 1493 | 0 | break; | 1494 | | | 1495 | 5 | case N_WARNING: | 1496 | | /* This symbol is the text of a warning message. The next | 1497 | | symbol is the symbol to associate the warning with. If a | 1498 | | reference is made to that symbol, a warning is issued. */ | 1499 | 5 | cache_ptr->symbol.flags = BSF_DEBUGGING | BSF_WARNING; | 1500 | 5 | cache_ptr->symbol.section = bfd_abs_section_ptr; | 1501 | 5 | break; | 1502 | | | 1503 | 41 | case N_INDR: case N_INDR | N_EXT: | 1504 | | /* An indirect symbol. This consists of two symbols in a row. | 1505 | | The first symbol is the name of the indirection. The second | 1506 | | symbol is the name of the target. A reference to the first | 1507 | | symbol becomes a reference to the second. */ | 1508 | 41 | cache_ptr->symbol.flags = BSF_DEBUGGING | BSF_INDIRECT | visible; | 1509 | 41 | cache_ptr->symbol.section = bfd_ind_section_ptr; | 1510 | 41 | break; | 1511 | | | 1512 | 6 | case N_WEAKU: | 1513 | 6 | cache_ptr->symbol.section = bfd_und_section_ptr; | 1514 | 6 | cache_ptr->symbol.flags = BSF_WEAK; | 1515 | 6 | break; | 1516 | | | 1517 | 11 | case N_WEAKA: | 1518 | 11 | cache_ptr->symbol.section = bfd_abs_section_ptr; | 1519 | 11 | cache_ptr->symbol.flags = BSF_WEAK; | 1520 | 11 | break; | 1521 | | | 1522 | 37 | case N_WEAKT: | 1523 | 37 | cache_ptr->symbol.section = obj_textsec (abfd); | 1524 | 37 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; | 1525 | 37 | cache_ptr->symbol.flags = BSF_WEAK; | 1526 | 37 | break; | 1527 | | | 1528 | 38 | case N_WEAKD: | 1529 | 38 | cache_ptr->symbol.section = obj_datasec (abfd); | 1530 | 38 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; | 1531 | 38 | cache_ptr->symbol.flags = BSF_WEAK; | 1532 | 38 | break; | 1533 | | | 1534 | 5 | case N_WEAKB: | 1535 | 5 | cache_ptr->symbol.section = obj_bsssec (abfd); | 1536 | 5 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; | 1537 | 5 | cache_ptr->symbol.flags = BSF_WEAK; | 1538 | 5 | break; | 1539 | 1.53k | } | 1540 | | | 1541 | 1.53k | return true; | 1542 | 1.53k | } |
aout32.c:translate_from_native_sym_flags Line | Count | Source | 1377 | 1.56k | { | 1378 | 1.56k | flagword visible; | 1379 | | | 1380 | 1.56k | if ((cache_ptr->type & N_STAB) != 0 | 1381 | 1.06k | || cache_ptr->type == N_FN) | 1382 | 502 | { | 1383 | 502 | asection *sec; | 1384 | | | 1385 | | /* This is a debugging symbol. */ | 1386 | 502 | cache_ptr->symbol.flags = BSF_DEBUGGING; | 1387 | | | 1388 | | /* Work out the symbol section. */ | 1389 | 502 | switch (cache_ptr->type & N_TYPE) | 1390 | 502 | { | 1391 | 186 | case N_TEXT: | 1392 | 186 | case N_FN: | 1393 | 186 | sec = obj_textsec (abfd); | 1394 | 186 | break; | 1395 | 76 | case N_DATA: | 1396 | 76 | sec = obj_datasec (abfd); | 1397 | 76 | break; | 1398 | 33 | case N_BSS: | 1399 | 33 | sec = obj_bsssec (abfd); | 1400 | 33 | break; | 1401 | 198 | default: | 1402 | 207 | case N_ABS: | 1403 | 207 | sec = bfd_abs_section_ptr; | 1404 | 207 | break; | 1405 | 502 | } | 1406 | | | 1407 | 502 | cache_ptr->symbol.section = sec; | 1408 | 502 | cache_ptr->symbol.value -= sec->vma; | 1409 | | | 1410 | 502 | return true; | 1411 | 502 | } | 1412 | | | 1413 | | /* Get the default visibility. This does not apply to all types, so | 1414 | | we just hold it in a local variable to use if wanted. */ | 1415 | 1.06k | if ((cache_ptr->type & N_EXT) == 0) | 1416 | 749 | visible = BSF_LOCAL; | 1417 | 312 | else | 1418 | 312 | visible = BSF_GLOBAL; | 1419 | | | 1420 | 1.06k | switch (cache_ptr->type) | 1421 | 1.06k | { | 1422 | 500 | default: | 1423 | 511 | case N_ABS: case N_ABS | N_EXT: | 1424 | 511 | cache_ptr->symbol.section = bfd_abs_section_ptr; | 1425 | 511 | cache_ptr->symbol.flags = visible; | 1426 | 511 | break; | 1427 | | | 1428 | 47 | case N_UNDF | N_EXT: | 1429 | 47 | if (cache_ptr->symbol.value != 0) | 1430 | 33 | { | 1431 | | /* This is a common symbol. */ | 1432 | 33 | cache_ptr->symbol.flags = BSF_GLOBAL; | 1433 | 33 | cache_ptr->symbol.section = bfd_com_section_ptr; | 1434 | 33 | } | 1435 | 14 | else | 1436 | 14 | { | 1437 | 14 | cache_ptr->symbol.flags = 0; | 1438 | 14 | cache_ptr->symbol.section = bfd_und_section_ptr; | 1439 | 14 | } | 1440 | 47 | break; | 1441 | | | 1442 | 81 | case N_TEXT: case N_TEXT | N_EXT: | 1443 | 81 | cache_ptr->symbol.section = obj_textsec (abfd); | 1444 | 81 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; | 1445 | 81 | cache_ptr->symbol.flags = visible; | 1446 | 81 | break; | 1447 | | | 1448 | | /* N_SETV symbols used to represent set vectors placed in the | 1449 | | data section. They are no longer generated. Theoretically, | 1450 | | it was possible to extract the entries and combine them with | 1451 | | new ones, although I don't know if that was ever actually | 1452 | | done. Unless that feature is restored, treat them as data | 1453 | | symbols. */ | 1454 | 2 | case N_SETV: case N_SETV | N_EXT: | 1455 | 38 | case N_DATA: case N_DATA | N_EXT: | 1456 | 38 | cache_ptr->symbol.section = obj_datasec (abfd); | 1457 | 38 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; | 1458 | 38 | cache_ptr->symbol.flags = visible; | 1459 | 38 | break; | 1460 | | | 1461 | 36 | case N_BSS: case N_BSS | N_EXT: | 1462 | 36 | cache_ptr->symbol.section = obj_bsssec (abfd); | 1463 | 36 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; | 1464 | 36 | cache_ptr->symbol.flags = visible; | 1465 | 36 | break; | 1466 | | | 1467 | 22 | case N_SETA: case N_SETA | N_EXT: | 1468 | 68 | case N_SETT: case N_SETT | N_EXT: | 1469 | 115 | case N_SETD: case N_SETD | N_EXT: | 1470 | 162 | case N_SETB: case N_SETB | N_EXT: | 1471 | 162 | { | 1472 | | /* This code is no longer needed. It used to be used to make | 1473 | | the linker handle set symbols, but they are now handled in | 1474 | | the add_symbols routine instead. */ | 1475 | 162 | switch (cache_ptr->type & N_TYPE) | 1476 | 162 | { | 1477 | 22 | case N_SETA: | 1478 | 22 | cache_ptr->symbol.section = bfd_abs_section_ptr; | 1479 | 22 | break; | 1480 | 46 | case N_SETT: | 1481 | 46 | cache_ptr->symbol.section = obj_textsec (abfd); | 1482 | 46 | break; | 1483 | 47 | case N_SETD: | 1484 | 47 | cache_ptr->symbol.section = obj_datasec (abfd); | 1485 | 47 | break; | 1486 | 47 | case N_SETB: | 1487 | 47 | cache_ptr->symbol.section = obj_bsssec (abfd); | 1488 | 47 | break; | 1489 | 162 | } | 1490 | | | 1491 | 162 | cache_ptr->symbol.flags |= BSF_CONSTRUCTOR; | 1492 | 162 | } | 1493 | 0 | break; | 1494 | | | 1495 | 3 | case N_WARNING: | 1496 | | /* This symbol is the text of a warning message. The next | 1497 | | symbol is the symbol to associate the warning with. If a | 1498 | | reference is made to that symbol, a warning is issued. */ | 1499 | 3 | cache_ptr->symbol.flags = BSF_DEBUGGING | BSF_WARNING; | 1500 | 3 | cache_ptr->symbol.section = bfd_abs_section_ptr; | 1501 | 3 | break; | 1502 | | | 1503 | 12 | case N_INDR: case N_INDR | N_EXT: | 1504 | | /* An indirect symbol. This consists of two symbols in a row. | 1505 | | The first symbol is the name of the indirection. The second | 1506 | | symbol is the name of the target. A reference to the first | 1507 | | symbol becomes a reference to the second. */ | 1508 | 12 | cache_ptr->symbol.flags = BSF_DEBUGGING | BSF_INDIRECT | visible; | 1509 | 12 | cache_ptr->symbol.section = bfd_ind_section_ptr; | 1510 | 12 | break; | 1511 | | | 1512 | 87 | case N_WEAKU: | 1513 | 87 | cache_ptr->symbol.section = bfd_und_section_ptr; | 1514 | 87 | cache_ptr->symbol.flags = BSF_WEAK; | 1515 | 87 | break; | 1516 | | | 1517 | 3 | case N_WEAKA: | 1518 | 3 | cache_ptr->symbol.section = bfd_abs_section_ptr; | 1519 | 3 | cache_ptr->symbol.flags = BSF_WEAK; | 1520 | 3 | break; | 1521 | | | 1522 | 44 | case N_WEAKT: | 1523 | 44 | cache_ptr->symbol.section = obj_textsec (abfd); | 1524 | 44 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; | 1525 | 44 | cache_ptr->symbol.flags = BSF_WEAK; | 1526 | 44 | break; | 1527 | | | 1528 | 23 | case N_WEAKD: | 1529 | 23 | cache_ptr->symbol.section = obj_datasec (abfd); | 1530 | 23 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; | 1531 | 23 | cache_ptr->symbol.flags = BSF_WEAK; | 1532 | 23 | break; | 1533 | | | 1534 | 14 | case N_WEAKB: | 1535 | 14 | cache_ptr->symbol.section = obj_bsssec (abfd); | 1536 | 14 | cache_ptr->symbol.value -= cache_ptr->symbol.section->vma; | 1537 | 14 | cache_ptr->symbol.flags = BSF_WEAK; | 1538 | 14 | break; | 1539 | 1.06k | } | 1540 | | | 1541 | 1.06k | return true; | 1542 | 1.06k | } |
|
1543 | | |
1544 | | /* Set the fields of SYM_POINTER according to CACHE_PTR. */ |
1545 | | |
1546 | | static bool |
1547 | | translate_to_native_sym_flags (bfd *abfd, |
1548 | | asymbol *cache_ptr, |
1549 | | struct external_nlist *sym_pointer) |
1550 | 568 | { |
1551 | 568 | bfd_vma value = cache_ptr->value; |
1552 | 568 | asection *sec; |
1553 | 568 | bfd_vma off; |
1554 | | |
1555 | | /* Mask out any existing type bits in case copying from one section |
1556 | | to another. */ |
1557 | 568 | sym_pointer->e_type[0] &= ~N_TYPE; |
1558 | | |
1559 | 568 | sec = bfd_asymbol_section (cache_ptr); |
1560 | 568 | off = 0; |
1561 | | |
1562 | 568 | if (sec == NULL) |
1563 | 0 | { |
1564 | | /* This case occurs, e.g., for the *DEBUG* section of a COFF |
1565 | | file. */ |
1566 | 0 | _bfd_error_handler |
1567 | | /* xgettext:c-format */ |
1568 | 0 | (_("%pB: can not represent section for symbol `%s' in a.out " |
1569 | 0 | "object file format"), |
1570 | 0 | abfd, |
1571 | 0 | cache_ptr->name != NULL ? cache_ptr->name : _("*unknown*")); |
1572 | 0 | bfd_set_error (bfd_error_nonrepresentable_section); |
1573 | 0 | return false; |
1574 | 0 | } |
1575 | | |
1576 | 568 | if (sec->output_section != NULL) |
1577 | 568 | { |
1578 | 568 | off = sec->output_offset; |
1579 | 568 | sec = sec->output_section; |
1580 | 568 | } |
1581 | | |
1582 | 568 | if (bfd_is_abs_section (sec)) |
1583 | 301 | sym_pointer->e_type[0] |= N_ABS; |
1584 | 267 | else if (sec == obj_textsec (abfd)) |
1585 | 99 | sym_pointer->e_type[0] |= N_TEXT; |
1586 | 168 | else if (sec == obj_datasec (abfd)) |
1587 | 67 | sym_pointer->e_type[0] |= N_DATA; |
1588 | 101 | else if (sec == obj_bsssec (abfd)) |
1589 | 45 | sym_pointer->e_type[0] |= N_BSS; |
1590 | 56 | else if (bfd_is_und_section (sec)) |
1591 | 18 | sym_pointer->e_type[0] = N_UNDF | N_EXT; |
1592 | 38 | else if (bfd_is_ind_section (sec)) |
1593 | 15 | sym_pointer->e_type[0] = N_INDR; |
1594 | 23 | else if (bfd_is_com_section (sec)) |
1595 | 23 | sym_pointer->e_type[0] = N_UNDF | N_EXT; |
1596 | 0 | else |
1597 | 0 | { |
1598 | 0 | if (aout_section_merge_with_text_p (abfd, sec)) |
1599 | 0 | sym_pointer->e_type[0] |= N_TEXT; |
1600 | 0 | else |
1601 | 0 | { |
1602 | 0 | _bfd_error_handler |
1603 | | /* xgettext:c-format */ |
1604 | 0 | (_("%pB: can not represent section `%pA' in a.out object file format"), |
1605 | 0 | abfd, sec); |
1606 | 0 | bfd_set_error (bfd_error_nonrepresentable_section); |
1607 | 0 | return false; |
1608 | 0 | } |
1609 | 0 | } |
1610 | | |
1611 | | /* Turn the symbol from section relative to absolute again. */ |
1612 | 568 | value += sec->vma + off; |
1613 | | |
1614 | 568 | if ((cache_ptr->flags & BSF_WARNING) != 0) |
1615 | 3 | sym_pointer->e_type[0] = N_WARNING; |
1616 | | |
1617 | 568 | if ((cache_ptr->flags & BSF_DEBUGGING) != 0) |
1618 | 141 | sym_pointer->e_type[0] = ((aout_symbol_type *) cache_ptr)->type; |
1619 | 427 | else if ((cache_ptr->flags & BSF_GLOBAL) != 0) |
1620 | 34 | sym_pointer->e_type[0] |= N_EXT; |
1621 | 393 | else if ((cache_ptr->flags & BSF_LOCAL) != 0) |
1622 | 280 | sym_pointer->e_type[0] &= ~N_EXT; |
1623 | | |
1624 | 568 | if ((cache_ptr->flags & BSF_CONSTRUCTOR) != 0) |
1625 | 58 | { |
1626 | 58 | int type = ((aout_symbol_type *) cache_ptr)->type; |
1627 | | |
1628 | 58 | switch (type) |
1629 | 58 | { |
1630 | 0 | case N_ABS: type = N_SETA; break; |
1631 | 0 | case N_TEXT: type = N_SETT; break; |
1632 | 0 | case N_DATA: type = N_SETD; break; |
1633 | 0 | case N_BSS: type = N_SETB; break; |
1634 | 58 | } |
1635 | 58 | sym_pointer->e_type[0] = type; |
1636 | 58 | } |
1637 | | |
1638 | 568 | if ((cache_ptr->flags & BSF_WEAK) != 0) |
1639 | 51 | { |
1640 | 51 | int type; |
1641 | | |
1642 | 51 | switch (sym_pointer->e_type[0] & N_TYPE) |
1643 | 51 | { |
1644 | 0 | default: |
1645 | 4 | case N_ABS: type = N_WEAKA; break; |
1646 | 16 | case N_TEXT: type = N_WEAKT; break; |
1647 | 9 | case N_DATA: type = N_WEAKD; break; |
1648 | 8 | case N_BSS: type = N_WEAKB; break; |
1649 | 14 | case N_UNDF: type = N_WEAKU; break; |
1650 | 51 | } |
1651 | 51 | sym_pointer->e_type[0] = type; |
1652 | 51 | } |
1653 | | |
1654 | 568 | PUT_WORD (abfd, value, sym_pointer->e_value); |
1655 | | |
1656 | 568 | return true; |
1657 | 568 | } Unexecuted instantiation: aout-cris.c:translate_to_native_sym_flags aout-ns32k.c:translate_to_native_sym_flags Line | Count | Source | 1550 | 209 | { | 1551 | 209 | bfd_vma value = cache_ptr->value; | 1552 | 209 | asection *sec; | 1553 | 209 | bfd_vma off; | 1554 | | | 1555 | | /* Mask out any existing type bits in case copying from one section | 1556 | | to another. */ | 1557 | 209 | sym_pointer->e_type[0] &= ~N_TYPE; | 1558 | | | 1559 | 209 | sec = bfd_asymbol_section (cache_ptr); | 1560 | 209 | off = 0; | 1561 | | | 1562 | 209 | if (sec == NULL) | 1563 | 0 | { | 1564 | | /* This case occurs, e.g., for the *DEBUG* section of a COFF | 1565 | | file. */ | 1566 | 0 | _bfd_error_handler | 1567 | | /* xgettext:c-format */ | 1568 | 0 | (_("%pB: can not represent section for symbol `%s' in a.out " | 1569 | 0 | "object file format"), | 1570 | 0 | abfd, | 1571 | 0 | cache_ptr->name != NULL ? cache_ptr->name : _("*unknown*")); | 1572 | 0 | bfd_set_error (bfd_error_nonrepresentable_section); | 1573 | 0 | return false; | 1574 | 0 | } | 1575 | | | 1576 | 209 | if (sec->output_section != NULL) | 1577 | 209 | { | 1578 | 209 | off = sec->output_offset; | 1579 | 209 | sec = sec->output_section; | 1580 | 209 | } | 1581 | | | 1582 | 209 | if (bfd_is_abs_section (sec)) | 1583 | 107 | sym_pointer->e_type[0] |= N_ABS; | 1584 | 102 | else if (sec == obj_textsec (abfd)) | 1585 | 32 | sym_pointer->e_type[0] |= N_TEXT; | 1586 | 70 | else if (sec == obj_datasec (abfd)) | 1587 | 28 | sym_pointer->e_type[0] |= N_DATA; | 1588 | 42 | else if (sec == obj_bsssec (abfd)) | 1589 | 15 | sym_pointer->e_type[0] |= N_BSS; | 1590 | 27 | else if (bfd_is_und_section (sec)) | 1591 | 2 | sym_pointer->e_type[0] = N_UNDF | N_EXT; | 1592 | 25 | else if (bfd_is_ind_section (sec)) | 1593 | 14 | sym_pointer->e_type[0] = N_INDR; | 1594 | 11 | else if (bfd_is_com_section (sec)) | 1595 | 11 | sym_pointer->e_type[0] = N_UNDF | N_EXT; | 1596 | 0 | else | 1597 | 0 | { | 1598 | 0 | if (aout_section_merge_with_text_p (abfd, sec)) | 1599 | 0 | sym_pointer->e_type[0] |= N_TEXT; | 1600 | 0 | else | 1601 | 0 | { | 1602 | 0 | _bfd_error_handler | 1603 | | /* xgettext:c-format */ | 1604 | 0 | (_("%pB: can not represent section `%pA' in a.out object file format"), | 1605 | 0 | abfd, sec); | 1606 | 0 | bfd_set_error (bfd_error_nonrepresentable_section); | 1607 | 0 | return false; | 1608 | 0 | } | 1609 | 0 | } | 1610 | | | 1611 | | /* Turn the symbol from section relative to absolute again. */ | 1612 | 209 | value += sec->vma + off; | 1613 | | | 1614 | 209 | if ((cache_ptr->flags & BSF_WARNING) != 0) | 1615 | 1 | sym_pointer->e_type[0] = N_WARNING; | 1616 | | | 1617 | 209 | if ((cache_ptr->flags & BSF_DEBUGGING) != 0) | 1618 | 66 | sym_pointer->e_type[0] = ((aout_symbol_type *) cache_ptr)->type; | 1619 | 143 | else if ((cache_ptr->flags & BSF_GLOBAL) != 0) | 1620 | 20 | sym_pointer->e_type[0] |= N_EXT; | 1621 | 123 | else if ((cache_ptr->flags & BSF_LOCAL) != 0) | 1622 | 84 | sym_pointer->e_type[0] &= ~N_EXT; | 1623 | | | 1624 | 209 | if ((cache_ptr->flags & BSF_CONSTRUCTOR) != 0) | 1625 | 23 | { | 1626 | 23 | int type = ((aout_symbol_type *) cache_ptr)->type; | 1627 | | | 1628 | 23 | switch (type) | 1629 | 23 | { | 1630 | 0 | case N_ABS: type = N_SETA; break; | 1631 | 0 | case N_TEXT: type = N_SETT; break; | 1632 | 0 | case N_DATA: type = N_SETD; break; | 1633 | 0 | case N_BSS: type = N_SETB; break; | 1634 | 23 | } | 1635 | 23 | sym_pointer->e_type[0] = type; | 1636 | 23 | } | 1637 | | | 1638 | 209 | if ((cache_ptr->flags & BSF_WEAK) != 0) | 1639 | 15 | { | 1640 | 15 | int type; | 1641 | | | 1642 | 15 | switch (sym_pointer->e_type[0] & N_TYPE) | 1643 | 15 | { | 1644 | 0 | default: | 1645 | 4 | case N_ABS: type = N_WEAKA; break; | 1646 | 6 | case N_TEXT: type = N_WEAKT; break; | 1647 | 1 | case N_DATA: type = N_WEAKD; break; | 1648 | 3 | case N_BSS: type = N_WEAKB; break; | 1649 | 1 | case N_UNDF: type = N_WEAKU; break; | 1650 | 15 | } | 1651 | 15 | sym_pointer->e_type[0] = type; | 1652 | 15 | } | 1653 | | | 1654 | 209 | PUT_WORD (abfd, value, sym_pointer->e_value); | 1655 | | | 1656 | | return true; | 1657 | 209 | } |
aout32.c:translate_to_native_sym_flags Line | Count | Source | 1550 | 359 | { | 1551 | 359 | bfd_vma value = cache_ptr->value; | 1552 | 359 | asection *sec; | 1553 | 359 | bfd_vma off; | 1554 | | | 1555 | | /* Mask out any existing type bits in case copying from one section | 1556 | | to another. */ | 1557 | 359 | sym_pointer->e_type[0] &= ~N_TYPE; | 1558 | | | 1559 | 359 | sec = bfd_asymbol_section (cache_ptr); | 1560 | 359 | off = 0; | 1561 | | | 1562 | 359 | if (sec == NULL) | 1563 | 0 | { | 1564 | | /* This case occurs, e.g., for the *DEBUG* section of a COFF | 1565 | | file. */ | 1566 | 0 | _bfd_error_handler | 1567 | | /* xgettext:c-format */ | 1568 | 0 | (_("%pB: can not represent section for symbol `%s' in a.out " | 1569 | 0 | "object file format"), | 1570 | 0 | abfd, | 1571 | 0 | cache_ptr->name != NULL ? cache_ptr->name : _("*unknown*")); | 1572 | 0 | bfd_set_error (bfd_error_nonrepresentable_section); | 1573 | 0 | return false; | 1574 | 0 | } | 1575 | | | 1576 | 359 | if (sec->output_section != NULL) | 1577 | 359 | { | 1578 | 359 | off = sec->output_offset; | 1579 | 359 | sec = sec->output_section; | 1580 | 359 | } | 1581 | | | 1582 | 359 | if (bfd_is_abs_section (sec)) | 1583 | 194 | sym_pointer->e_type[0] |= N_ABS; | 1584 | 165 | else if (sec == obj_textsec (abfd)) | 1585 | 67 | sym_pointer->e_type[0] |= N_TEXT; | 1586 | 98 | else if (sec == obj_datasec (abfd)) | 1587 | 39 | sym_pointer->e_type[0] |= N_DATA; | 1588 | 59 | else if (sec == obj_bsssec (abfd)) | 1589 | 30 | sym_pointer->e_type[0] |= N_BSS; | 1590 | 29 | else if (bfd_is_und_section (sec)) | 1591 | 16 | sym_pointer->e_type[0] = N_UNDF | N_EXT; | 1592 | 13 | else if (bfd_is_ind_section (sec)) | 1593 | 1 | sym_pointer->e_type[0] = N_INDR; | 1594 | 12 | else if (bfd_is_com_section (sec)) | 1595 | 12 | sym_pointer->e_type[0] = N_UNDF | N_EXT; | 1596 | 0 | else | 1597 | 0 | { | 1598 | 0 | if (aout_section_merge_with_text_p (abfd, sec)) | 1599 | 0 | sym_pointer->e_type[0] |= N_TEXT; | 1600 | 0 | else | 1601 | 0 | { | 1602 | 0 | _bfd_error_handler | 1603 | | /* xgettext:c-format */ | 1604 | 0 | (_("%pB: can not represent section `%pA' in a.out object file format"), | 1605 | 0 | abfd, sec); | 1606 | 0 | bfd_set_error (bfd_error_nonrepresentable_section); | 1607 | 0 | return false; | 1608 | 0 | } | 1609 | 0 | } | 1610 | | | 1611 | | /* Turn the symbol from section relative to absolute again. */ | 1612 | 359 | value += sec->vma + off; | 1613 | | | 1614 | 359 | if ((cache_ptr->flags & BSF_WARNING) != 0) | 1615 | 2 | sym_pointer->e_type[0] = N_WARNING; | 1616 | | | 1617 | 359 | if ((cache_ptr->flags & BSF_DEBUGGING) != 0) | 1618 | 75 | sym_pointer->e_type[0] = ((aout_symbol_type *) cache_ptr)->type; | 1619 | 284 | else if ((cache_ptr->flags & BSF_GLOBAL) != 0) | 1620 | 14 | sym_pointer->e_type[0] |= N_EXT; | 1621 | 270 | else if ((cache_ptr->flags & BSF_LOCAL) != 0) | 1622 | 196 | sym_pointer->e_type[0] &= ~N_EXT; | 1623 | | | 1624 | 359 | if ((cache_ptr->flags & BSF_CONSTRUCTOR) != 0) | 1625 | 35 | { | 1626 | 35 | int type = ((aout_symbol_type *) cache_ptr)->type; | 1627 | | | 1628 | 35 | switch (type) | 1629 | 35 | { | 1630 | 0 | case N_ABS: type = N_SETA; break; | 1631 | 0 | case N_TEXT: type = N_SETT; break; | 1632 | 0 | case N_DATA: type = N_SETD; break; | 1633 | 0 | case N_BSS: type = N_SETB; break; | 1634 | 35 | } | 1635 | 35 | sym_pointer->e_type[0] = type; | 1636 | 35 | } | 1637 | | | 1638 | 359 | if ((cache_ptr->flags & BSF_WEAK) != 0) | 1639 | 36 | { | 1640 | 36 | int type; | 1641 | | | 1642 | 36 | switch (sym_pointer->e_type[0] & N_TYPE) | 1643 | 36 | { | 1644 | 0 | default: | 1645 | 0 | case N_ABS: type = N_WEAKA; break; | 1646 | 10 | case N_TEXT: type = N_WEAKT; break; | 1647 | 8 | case N_DATA: type = N_WEAKD; break; | 1648 | 5 | case N_BSS: type = N_WEAKB; break; | 1649 | 13 | case N_UNDF: type = N_WEAKU; break; | 1650 | 36 | } | 1651 | 36 | sym_pointer->e_type[0] = type; | 1652 | 36 | } | 1653 | | | 1654 | 359 | PUT_WORD (abfd, value, sym_pointer->e_value); | 1655 | | | 1656 | | return true; | 1657 | 359 | } |
|
1658 | | |
1659 | | /* Native-level interface to symbols. */ |
1660 | | |
1661 | | asymbol * |
1662 | | NAME (aout, make_empty_symbol) (bfd *abfd) |
1663 | 40.4k | { |
1664 | 40.4k | size_t amt = sizeof (aout_symbol_type); |
1665 | | |
1666 | 40.4k | aout_symbol_type *new_symbol = (aout_symbol_type *) bfd_zalloc (abfd, amt); |
1667 | 40.4k | if (!new_symbol) |
1668 | 0 | return NULL; |
1669 | 40.4k | new_symbol->symbol.the_bfd = abfd; |
1670 | | |
1671 | 40.4k | return &new_symbol->symbol; |
1672 | 40.4k | } cris_aout_32_make_empty_symbol Line | Count | Source | 1663 | 2.43k | { | 1664 | 2.43k | size_t amt = sizeof (aout_symbol_type); | 1665 | | | 1666 | 2.43k | aout_symbol_type *new_symbol = (aout_symbol_type *) bfd_zalloc (abfd, amt); | 1667 | 2.43k | if (!new_symbol) | 1668 | 0 | return NULL; | 1669 | 2.43k | new_symbol->symbol.the_bfd = abfd; | 1670 | | | 1671 | 2.43k | return &new_symbol->symbol; | 1672 | 2.43k | } |
ns32kaout_32_make_empty_symbol Line | Count | Source | 1663 | 7.88k | { | 1664 | 7.88k | size_t amt = sizeof (aout_symbol_type); | 1665 | | | 1666 | 7.88k | aout_symbol_type *new_symbol = (aout_symbol_type *) bfd_zalloc (abfd, amt); | 1667 | 7.88k | if (!new_symbol) | 1668 | 0 | return NULL; | 1669 | 7.88k | new_symbol->symbol.the_bfd = abfd; | 1670 | | | 1671 | 7.88k | return &new_symbol->symbol; | 1672 | 7.88k | } |
aout_32_make_empty_symbol Line | Count | Source | 1663 | 30.1k | { | 1664 | 30.1k | size_t amt = sizeof (aout_symbol_type); | 1665 | | | 1666 | 30.1k | aout_symbol_type *new_symbol = (aout_symbol_type *) bfd_zalloc (abfd, amt); | 1667 | 30.1k | if (!new_symbol) | 1668 | 0 | return NULL; | 1669 | 30.1k | new_symbol->symbol.the_bfd = abfd; | 1670 | | | 1671 | 30.1k | return &new_symbol->symbol; | 1672 | 30.1k | } |
|
1673 | | |
1674 | | /* Translate a set of external symbols into internal symbols. */ |
1675 | | |
1676 | | bool |
1677 | | NAME (aout, translate_symbol_table) (bfd *abfd, |
1678 | | aout_symbol_type *in, |
1679 | | struct external_nlist *ext, |
1680 | | bfd_size_type count, |
1681 | | char *str, |
1682 | | bfd_size_type strsize, |
1683 | | bool dynamic) |
1684 | 245 | { |
1685 | 245 | struct external_nlist *ext_end; |
1686 | | |
1687 | 245 | ext_end = ext + count; |
1688 | 3.59k | for (; ext < ext_end; ext++, in++) |
1689 | 3.42k | { |
1690 | 3.42k | bfd_vma x; |
1691 | | |
1692 | 3.42k | x = GET_WORD (abfd, ext->e_strx); |
1693 | 3.42k | in->symbol.the_bfd = abfd; |
1694 | | |
1695 | | /* For the normal symbols, the zero index points at the number |
1696 | | of bytes in the string table but is to be interpreted as the |
1697 | | null string. For the dynamic symbols, the number of bytes in |
1698 | | the string table is stored in the __DYNAMIC structure and the |
1699 | | zero index points at an actual string. */ |
1700 | 3.42k | if (x == 0 && ! dynamic) |
1701 | 2.41k | in->symbol.name = ""; |
1702 | 1.01k | else if (x < strsize) |
1703 | 942 | in->symbol.name = str + x; |
1704 | 74 | else |
1705 | 74 | { |
1706 | 74 | _bfd_error_handler |
1707 | 74 | (_("%pB: invalid string offset %" PRIu64 " >= %" PRIu64), |
1708 | 74 | abfd, (uint64_t) x, (uint64_t) strsize); |
1709 | 74 | bfd_set_error (bfd_error_bad_value); |
1710 | 74 | return false; |
1711 | 74 | } |
1712 | | |
1713 | 3.35k | in->symbol.value = GET_SWORD (abfd, ext->e_value); |
1714 | 3.35k | in->desc = H_GET_16 (abfd, ext->e_desc); |
1715 | 3.35k | in->other = H_GET_8 (abfd, ext->e_other); |
1716 | 3.35k | in->type = H_GET_8 (abfd, ext->e_type); |
1717 | 3.35k | in->symbol.udata.p = NULL; |
1718 | | |
1719 | 3.35k | if (! translate_from_native_sym_flags (abfd, in)) |
1720 | 0 | return false; |
1721 | | |
1722 | 3.35k | if (dynamic) |
1723 | 0 | in->symbol.flags |= BSF_DYNAMIC; |
1724 | 3.35k | } |
1725 | | |
1726 | 171 | return true; |
1727 | 245 | } Unexecuted instantiation: cris_aout_32_translate_symbol_table ns32kaout_32_translate_symbol_table Line | Count | Source | 1684 | 117 | { | 1685 | 117 | struct external_nlist *ext_end; | 1686 | | | 1687 | 117 | ext_end = ext + count; | 1688 | 1.90k | for (; ext < ext_end; ext++, in++) | 1689 | 1.82k | { | 1690 | 1.82k | bfd_vma x; | 1691 | | | 1692 | 1.82k | x = GET_WORD (abfd, ext->e_strx); | 1693 | 1.82k | in->symbol.the_bfd = abfd; | 1694 | | | 1695 | | /* For the normal symbols, the zero index points at the number | 1696 | | of bytes in the string table but is to be interpreted as the | 1697 | | null string. For the dynamic symbols, the number of bytes in | 1698 | | the string table is stored in the __DYNAMIC structure and the | 1699 | | zero index points at an actual string. */ | 1700 | 1.82k | if (x == 0 && ! dynamic) | 1701 | 1.45k | in->symbol.name = ""; | 1702 | 368 | else if (x < strsize) | 1703 | 332 | in->symbol.name = str + x; | 1704 | 36 | else | 1705 | 36 | { | 1706 | 36 | _bfd_error_handler | 1707 | 36 | (_("%pB: invalid string offset %" PRIu64 " >= %" PRIu64), | 1708 | 36 | abfd, (uint64_t) x, (uint64_t) strsize); | 1709 | 36 | bfd_set_error (bfd_error_bad_value); | 1710 | 36 | return false; | 1711 | 36 | } | 1712 | | | 1713 | 1.79k | in->symbol.value = GET_SWORD (abfd, ext->e_value); | 1714 | 1.79k | in->desc = H_GET_16 (abfd, ext->e_desc); | 1715 | 1.79k | in->other = H_GET_8 (abfd, ext->e_other); | 1716 | 1.79k | in->type = H_GET_8 (abfd, ext->e_type); | 1717 | 1.79k | in->symbol.udata.p = NULL; | 1718 | | | 1719 | 1.79k | if (! translate_from_native_sym_flags (abfd, in)) | 1720 | 0 | return false; | 1721 | | | 1722 | 1.79k | if (dynamic) | 1723 | 0 | in->symbol.flags |= BSF_DYNAMIC; | 1724 | 1.79k | } | 1725 | | | 1726 | 81 | return true; | 1727 | 117 | } |
aout_32_translate_symbol_table Line | Count | Source | 1684 | 128 | { | 1685 | 128 | struct external_nlist *ext_end; | 1686 | | | 1687 | 128 | ext_end = ext + count; | 1688 | 1.69k | for (; ext < ext_end; ext++, in++) | 1689 | 1.60k | { | 1690 | 1.60k | bfd_vma x; | 1691 | | | 1692 | 1.60k | x = GET_WORD (abfd, ext->e_strx); | 1693 | 1.60k | in->symbol.the_bfd = abfd; | 1694 | | | 1695 | | /* For the normal symbols, the zero index points at the number | 1696 | | of bytes in the string table but is to be interpreted as the | 1697 | | null string. For the dynamic symbols, the number of bytes in | 1698 | | the string table is stored in the __DYNAMIC structure and the | 1699 | | zero index points at an actual string. */ | 1700 | 1.60k | if (x == 0 && ! dynamic) | 1701 | 953 | in->symbol.name = ""; | 1702 | 648 | else if (x < strsize) | 1703 | 610 | in->symbol.name = str + x; | 1704 | 38 | else | 1705 | 38 | { | 1706 | 38 | _bfd_error_handler | 1707 | 38 | (_("%pB: invalid string offset %" PRIu64 " >= %" PRIu64), | 1708 | 38 | abfd, (uint64_t) x, (uint64_t) strsize); | 1709 | 38 | bfd_set_error (bfd_error_bad_value); | 1710 | 38 | return false; | 1711 | 38 | } | 1712 | | | 1713 | 1.56k | in->symbol.value = GET_SWORD (abfd, ext->e_value); | 1714 | 1.56k | in->desc = H_GET_16 (abfd, ext->e_desc); | 1715 | 1.56k | in->other = H_GET_8 (abfd, ext->e_other); | 1716 | 1.56k | in->type = H_GET_8 (abfd, ext->e_type); | 1717 | 1.56k | in->symbol.udata.p = NULL; | 1718 | | | 1719 | 1.56k | if (! translate_from_native_sym_flags (abfd, in)) | 1720 | 0 | return false; | 1721 | | | 1722 | 1.56k | if (dynamic) | 1723 | 0 | in->symbol.flags |= BSF_DYNAMIC; | 1724 | 1.56k | } | 1725 | | | 1726 | 90 | return true; | 1727 | 128 | } |
|
1728 | | |
1729 | | /* We read the symbols into a buffer, which is discarded when this |
1730 | | function exits. We read the strings into a buffer large enough to |
1731 | | hold them all plus all the cached symbol entries. */ |
1732 | | |
1733 | | bool |
1734 | | NAME (aout, slurp_symbol_table) (bfd *abfd) |
1735 | 717 | { |
1736 | 717 | struct external_nlist *old_external_syms; |
1737 | 717 | aout_symbol_type *cached; |
1738 | 717 | bfd_size_type cached_size; |
1739 | | |
1740 | 717 | BFD_ASSERT (bfd_get_flavour (abfd) == bfd_target_aout_flavour); |
1741 | | |
1742 | | /* If there's no work to be done, don't do any. */ |
1743 | 717 | if (obj_aout_symbols (abfd) != NULL) |
1744 | 251 | return true; |
1745 | | |
1746 | 466 | old_external_syms = obj_aout_external_syms (abfd); |
1747 | | |
1748 | 466 | if (! aout_get_external_symbols (abfd)) |
1749 | 173 | return false; |
1750 | | |
1751 | 293 | cached_size = obj_aout_external_sym_count (abfd); |
1752 | 293 | if (cached_size == 0) |
1753 | 48 | return true; /* Nothing to do. */ |
1754 | | |
1755 | 245 | cached_size *= sizeof (aout_symbol_type); |
1756 | 245 | cached = (aout_symbol_type *) bfd_zmalloc (cached_size); |
1757 | 245 | if (cached == NULL) |
1758 | 0 | return false; |
1759 | | |
1760 | | /* Convert from external symbol information to internal. */ |
1761 | 245 | if (! (NAME (aout, translate_symbol_table) |
1762 | 245 | (abfd, cached, |
1763 | 245 | obj_aout_external_syms (abfd), |
1764 | 245 | obj_aout_external_sym_count (abfd), |
1765 | 245 | obj_aout_external_strings (abfd), |
1766 | 245 | obj_aout_external_string_size (abfd), |
1767 | 245 | false))) |
1768 | 74 | { |
1769 | 74 | free (cached); |
1770 | 74 | return false; |
1771 | 74 | } |
1772 | | |
1773 | 171 | abfd->symcount = obj_aout_external_sym_count (abfd); |
1774 | | |
1775 | 171 | obj_aout_symbols (abfd) = cached; |
1776 | | |
1777 | | /* It is very likely that anybody who calls this function will not |
1778 | | want the external symbol information, so if it was allocated |
1779 | | because of our call to aout_get_external_symbols, we free it up |
1780 | | right away to save space. */ |
1781 | 171 | if (old_external_syms == NULL |
1782 | 128 | && obj_aout_external_syms (abfd) != NULL) |
1783 | 128 | { |
1784 | 128 | free (obj_aout_external_syms (abfd)); |
1785 | 128 | obj_aout_external_syms (abfd) = NULL; |
1786 | 128 | } |
1787 | | |
1788 | 171 | return true; |
1789 | 245 | } Unexecuted instantiation: cris_aout_32_slurp_symbol_table ns32kaout_32_slurp_symbol_table Line | Count | Source | 1735 | 358 | { | 1736 | 358 | struct external_nlist *old_external_syms; | 1737 | 358 | aout_symbol_type *cached; | 1738 | 358 | bfd_size_type cached_size; | 1739 | | | 1740 | 358 | BFD_ASSERT (bfd_get_flavour (abfd) == bfd_target_aout_flavour); | 1741 | | | 1742 | | /* If there's no work to be done, don't do any. */ | 1743 | 358 | if (obj_aout_symbols (abfd) != NULL) | 1744 | 111 | return true; | 1745 | | | 1746 | 247 | old_external_syms = obj_aout_external_syms (abfd); | 1747 | | | 1748 | 247 | if (! aout_get_external_symbols (abfd)) | 1749 | 106 | return false; | 1750 | | | 1751 | 141 | cached_size = obj_aout_external_sym_count (abfd); | 1752 | 141 | if (cached_size == 0) | 1753 | 24 | return true; /* Nothing to do. */ | 1754 | | | 1755 | 117 | cached_size *= sizeof (aout_symbol_type); | 1756 | 117 | cached = (aout_symbol_type *) bfd_zmalloc (cached_size); | 1757 | 117 | if (cached == NULL) | 1758 | 0 | return false; | 1759 | | | 1760 | | /* Convert from external symbol information to internal. */ | 1761 | 117 | if (! (NAME (aout, translate_symbol_table) | 1762 | 117 | (abfd, cached, | 1763 | 117 | obj_aout_external_syms (abfd), | 1764 | 117 | obj_aout_external_sym_count (abfd), | 1765 | 117 | obj_aout_external_strings (abfd), | 1766 | 117 | obj_aout_external_string_size (abfd), | 1767 | 117 | false))) | 1768 | 36 | { | 1769 | 36 | free (cached); | 1770 | 36 | return false; | 1771 | 36 | } | 1772 | | | 1773 | 81 | abfd->symcount = obj_aout_external_sym_count (abfd); | 1774 | | | 1775 | 81 | obj_aout_symbols (abfd) = cached; | 1776 | | | 1777 | | /* It is very likely that anybody who calls this function will not | 1778 | | want the external symbol information, so if it was allocated | 1779 | | because of our call to aout_get_external_symbols, we free it up | 1780 | | right away to save space. */ | 1781 | 81 | if (old_external_syms == NULL | 1782 | 66 | && obj_aout_external_syms (abfd) != NULL) | 1783 | 66 | { | 1784 | 66 | free (obj_aout_external_syms (abfd)); | 1785 | 66 | obj_aout_external_syms (abfd) = NULL; | 1786 | 66 | } | 1787 | | | 1788 | | return true; | 1789 | 117 | } |
aout_32_slurp_symbol_table Line | Count | Source | 1735 | 359 | { | 1736 | 359 | struct external_nlist *old_external_syms; | 1737 | 359 | aout_symbol_type *cached; | 1738 | 359 | bfd_size_type cached_size; | 1739 | | | 1740 | 359 | BFD_ASSERT (bfd_get_flavour (abfd) == bfd_target_aout_flavour); | 1741 | | | 1742 | | /* If there's no work to be done, don't do any. */ | 1743 | 359 | if (obj_aout_symbols (abfd) != NULL) | 1744 | 140 | return true; | 1745 | | | 1746 | 219 | old_external_syms = obj_aout_external_syms (abfd); | 1747 | | | 1748 | 219 | if (! aout_get_external_symbols (abfd)) | 1749 | 67 | return false; | 1750 | | | 1751 | 152 | cached_size = obj_aout_external_sym_count (abfd); | 1752 | 152 | if (cached_size == 0) | 1753 | 24 | return true; /* Nothing to do. */ | 1754 | | | 1755 | 128 | cached_size *= sizeof (aout_symbol_type); | 1756 | 128 | cached = (aout_symbol_type *) bfd_zmalloc (cached_size); | 1757 | 128 | if (cached == NULL) | 1758 | 0 | return false; | 1759 | | | 1760 | | /* Convert from external symbol information to internal. */ | 1761 | 128 | if (! (NAME (aout, translate_symbol_table) | 1762 | 128 | (abfd, cached, | 1763 | 128 | obj_aout_external_syms (abfd), | 1764 | 128 | obj_aout_external_sym_count (abfd), | 1765 | 128 | obj_aout_external_strings (abfd), | 1766 | 128 | obj_aout_external_string_size (abfd), | 1767 | 128 | false))) | 1768 | 38 | { | 1769 | 38 | free (cached); | 1770 | 38 | return false; | 1771 | 38 | } | 1772 | | | 1773 | 90 | abfd->symcount = obj_aout_external_sym_count (abfd); | 1774 | | | 1775 | 90 | obj_aout_symbols (abfd) = cached; | 1776 | | | 1777 | | /* It is very likely that anybody who calls this function will not | 1778 | | want the external symbol information, so if it was allocated | 1779 | | because of our call to aout_get_external_symbols, we free it up | 1780 | | right away to save space. */ | 1781 | 90 | if (old_external_syms == NULL | 1782 | 62 | && obj_aout_external_syms (abfd) != NULL) | 1783 | 62 | { | 1784 | 62 | free (obj_aout_external_syms (abfd)); | 1785 | 62 | obj_aout_external_syms (abfd) = NULL; | 1786 | 62 | } | 1787 | | | 1788 | | return true; | 1789 | 128 | } |
|
1790 | | |
1791 | | /* We use a hash table when writing out symbols so that we only write |
1792 | | out a particular string once. This helps particularly when the |
1793 | | linker writes out stabs debugging entries, because each different |
1794 | | contributing object file tends to have many duplicate stabs |
1795 | | strings. |
1796 | | |
1797 | | This hash table code breaks dbx on SunOS 4.1.3, so we don't do it |
1798 | | if BFD_TRADITIONAL_FORMAT is set. */ |
1799 | | |
1800 | | /* Get the index of a string in a strtab, adding it if it is not |
1801 | | already present. */ |
1802 | | |
1803 | | static inline bfd_size_type |
1804 | | add_to_stringtab (bfd *abfd, |
1805 | | struct bfd_strtab_hash *tab, |
1806 | | const char *str, |
1807 | | bool copy) |
1808 | 568 | { |
1809 | 568 | bool hash; |
1810 | 568 | bfd_size_type str_index; |
1811 | | |
1812 | | /* An index of 0 always means the empty string. */ |
1813 | 568 | if (str == 0 || *str == '\0') |
1814 | 464 | return 0; |
1815 | | |
1816 | | /* Don't hash if BFD_TRADITIONAL_FORMAT is set, because SunOS dbx |
1817 | | doesn't understand a hashed string table. */ |
1818 | 104 | hash = true; |
1819 | 104 | if ((abfd->flags & BFD_TRADITIONAL_FORMAT) != 0) |
1820 | 0 | hash = false; |
1821 | | |
1822 | 104 | str_index = _bfd_stringtab_add (tab, str, hash, copy); |
1823 | | |
1824 | 104 | if (str_index != (bfd_size_type) -1) |
1825 | | /* Add BYTES_IN_WORD to the return value to account for the |
1826 | | space taken up by the string table size. */ |
1827 | 104 | str_index += BYTES_IN_WORD; |
1828 | | |
1829 | 104 | return str_index; |
1830 | 568 | } Unexecuted instantiation: aout-cris.c:add_to_stringtab aout-ns32k.c:add_to_stringtab Line | Count | Source | 1808 | 209 | { | 1809 | 209 | bool hash; | 1810 | 209 | bfd_size_type str_index; | 1811 | | | 1812 | | /* An index of 0 always means the empty string. */ | 1813 | 209 | if (str == 0 || *str == '\0') | 1814 | 170 | return 0; | 1815 | | | 1816 | | /* Don't hash if BFD_TRADITIONAL_FORMAT is set, because SunOS dbx | 1817 | | doesn't understand a hashed string table. */ | 1818 | 39 | hash = true; | 1819 | 39 | if ((abfd->flags & BFD_TRADITIONAL_FORMAT) != 0) | 1820 | 0 | hash = false; | 1821 | | | 1822 | 39 | str_index = _bfd_stringtab_add (tab, str, hash, copy); | 1823 | | | 1824 | 39 | if (str_index != (bfd_size_type) -1) | 1825 | | /* Add BYTES_IN_WORD to the return value to account for the | 1826 | | space taken up by the string table size. */ | 1827 | 39 | str_index += BYTES_IN_WORD; | 1828 | | | 1829 | 39 | return str_index; | 1830 | 209 | } |
aout32.c:add_to_stringtab Line | Count | Source | 1808 | 359 | { | 1809 | 359 | bool hash; | 1810 | 359 | bfd_size_type str_index; | 1811 | | | 1812 | | /* An index of 0 always means the empty string. */ | 1813 | 359 | if (str == 0 || *str == '\0') | 1814 | 294 | return 0; | 1815 | | | 1816 | | /* Don't hash if BFD_TRADITIONAL_FORMAT is set, because SunOS dbx | 1817 | | doesn't understand a hashed string table. */ | 1818 | 65 | hash = true; | 1819 | 65 | if ((abfd->flags & BFD_TRADITIONAL_FORMAT) != 0) | 1820 | 0 | hash = false; | 1821 | | | 1822 | 65 | str_index = _bfd_stringtab_add (tab, str, hash, copy); | 1823 | | | 1824 | 65 | if (str_index != (bfd_size_type) -1) | 1825 | | /* Add BYTES_IN_WORD to the return value to account for the | 1826 | | space taken up by the string table size. */ | 1827 | 65 | str_index += BYTES_IN_WORD; | 1828 | | | 1829 | 65 | return str_index; | 1830 | 359 | } |
|
1831 | | |
1832 | | /* Write out a strtab. ABFD is already at the right location in the |
1833 | | file. */ |
1834 | | |
1835 | | static bool |
1836 | | emit_stringtab (bfd *abfd, struct bfd_strtab_hash *tab) |
1837 | 63 | { |
1838 | 63 | bfd_byte buffer[BYTES_IN_WORD]; |
1839 | 63 | size_t amt = BYTES_IN_WORD; |
1840 | | |
1841 | | /* The string table starts with the size. */ |
1842 | 63 | PUT_WORD (abfd, _bfd_stringtab_size (tab) + BYTES_IN_WORD, buffer); |
1843 | 63 | if (bfd_write (buffer, amt, abfd) != amt) |
1844 | 0 | return false; |
1845 | | |
1846 | 63 | return _bfd_stringtab_emit (abfd, tab); |
1847 | 63 | } Unexecuted instantiation: aout-cris.c:emit_stringtab aout-ns32k.c:emit_stringtab Line | Count | Source | 1837 | 23 | { | 1838 | 23 | bfd_byte buffer[BYTES_IN_WORD]; | 1839 | 23 | size_t amt = BYTES_IN_WORD; | 1840 | | | 1841 | | /* The string table starts with the size. */ | 1842 | 23 | PUT_WORD (abfd, _bfd_stringtab_size (tab) + BYTES_IN_WORD, buffer); | 1843 | 23 | if (bfd_write (buffer, amt, abfd) != amt) | 1844 | 0 | return false; | 1845 | | | 1846 | 23 | return _bfd_stringtab_emit (abfd, tab); | 1847 | 23 | } |
Line | Count | Source | 1837 | 40 | { | 1838 | 40 | bfd_byte buffer[BYTES_IN_WORD]; | 1839 | 40 | size_t amt = BYTES_IN_WORD; | 1840 | | | 1841 | | /* The string table starts with the size. */ | 1842 | 40 | PUT_WORD (abfd, _bfd_stringtab_size (tab) + BYTES_IN_WORD, buffer); | 1843 | 40 | if (bfd_write (buffer, amt, abfd) != amt) | 1844 | 0 | return false; | 1845 | | | 1846 | 40 | return _bfd_stringtab_emit (abfd, tab); | 1847 | 40 | } |
|
1848 | | |
1849 | | bool |
1850 | | NAME (aout, write_syms) (bfd *abfd) |
1851 | 63 | { |
1852 | 63 | unsigned int count ; |
1853 | 63 | asymbol **generic = bfd_get_outsymbols (abfd); |
1854 | 63 | struct bfd_strtab_hash *strtab; |
1855 | | |
1856 | 63 | strtab = _bfd_stringtab_init (); |
1857 | 63 | if (strtab == NULL) |
1858 | 0 | return false; |
1859 | | |
1860 | 631 | for (count = 0; count < bfd_get_symcount (abfd); count++) |
1861 | 568 | { |
1862 | 568 | asymbol *g = generic[count]; |
1863 | 568 | bfd_size_type indx; |
1864 | 568 | struct external_nlist nsp; |
1865 | 568 | size_t amt; |
1866 | | |
1867 | 568 | indx = add_to_stringtab (abfd, strtab, g->name, false); |
1868 | 568 | if (indx == (bfd_size_type) -1) |
1869 | 0 | goto error_return; |
1870 | 568 | PUT_WORD (abfd, indx, (bfd_byte *) nsp.e_strx); |
1871 | | |
1872 | 568 | if (bfd_asymbol_flavour (g) == abfd->xvec->flavour) |
1873 | 568 | { |
1874 | 568 | H_PUT_16 (abfd, aout_symbol (g)->desc, nsp.e_desc); |
1875 | 568 | H_PUT_8 (abfd, aout_symbol (g)->other, nsp.e_other); |
1876 | 568 | H_PUT_8 (abfd, aout_symbol (g)->type, nsp.e_type); |
1877 | 568 | } |
1878 | 0 | else |
1879 | 0 | { |
1880 | 0 | H_PUT_16 (abfd, 0, nsp.e_desc); |
1881 | 0 | H_PUT_8 (abfd, 0, nsp.e_other); |
1882 | 0 | H_PUT_8 (abfd, 0, nsp.e_type); |
1883 | 0 | } |
1884 | | |
1885 | 568 | if (! translate_to_native_sym_flags (abfd, g, &nsp)) |
1886 | 0 | goto error_return; |
1887 | | |
1888 | 568 | amt = EXTERNAL_NLIST_SIZE; |
1889 | 568 | if (bfd_write (&nsp, amt, abfd) != amt) |
1890 | 0 | goto error_return; |
1891 | | |
1892 | | /* NB: `KEEPIT' currently overlays `udata.p', so set this only |
1893 | | here, at the end. */ |
1894 | 568 | g->KEEPIT = count; |
1895 | 568 | } |
1896 | | |
1897 | 63 | if (! emit_stringtab (abfd, strtab)) |
1898 | 0 | goto error_return; |
1899 | | |
1900 | 63 | _bfd_stringtab_free (strtab); |
1901 | | |
1902 | 63 | return true; |
1903 | | |
1904 | 0 | error_return: |
1905 | 0 | _bfd_stringtab_free (strtab); |
1906 | 0 | return false; |
1907 | 63 | } Unexecuted instantiation: cris_aout_32_write_syms Line | Count | Source | 1851 | 23 | { | 1852 | 23 | unsigned int count ; | 1853 | 23 | asymbol **generic = bfd_get_outsymbols (abfd); | 1854 | 23 | struct bfd_strtab_hash *strtab; | 1855 | | | 1856 | 23 | strtab = _bfd_stringtab_init (); | 1857 | 23 | if (strtab == NULL) | 1858 | 0 | return false; | 1859 | | | 1860 | 232 | for (count = 0; count < bfd_get_symcount (abfd); count++) | 1861 | 209 | { | 1862 | 209 | asymbol *g = generic[count]; | 1863 | 209 | bfd_size_type indx; | 1864 | 209 | struct external_nlist nsp; | 1865 | 209 | size_t amt; | 1866 | | | 1867 | 209 | indx = add_to_stringtab (abfd, strtab, g->name, false); | 1868 | 209 | if (indx == (bfd_size_type) -1) | 1869 | 0 | goto error_return; | 1870 | 209 | PUT_WORD (abfd, indx, (bfd_byte *) nsp.e_strx); | 1871 | | | 1872 | 209 | if (bfd_asymbol_flavour (g) == abfd->xvec->flavour) | 1873 | 209 | { | 1874 | 209 | H_PUT_16 (abfd, aout_symbol (g)->desc, nsp.e_desc); | 1875 | 209 | H_PUT_8 (abfd, aout_symbol (g)->other, nsp.e_other); | 1876 | 209 | H_PUT_8 (abfd, aout_symbol (g)->type, nsp.e_type); | 1877 | 209 | } | 1878 | 0 | else | 1879 | 0 | { | 1880 | 0 | H_PUT_16 (abfd, 0, nsp.e_desc); | 1881 | 0 | H_PUT_8 (abfd, 0, nsp.e_other); | 1882 | 0 | H_PUT_8 (abfd, 0, nsp.e_type); | 1883 | 0 | } | 1884 | | | 1885 | 209 | if (! translate_to_native_sym_flags (abfd, g, &nsp)) | 1886 | 0 | goto error_return; | 1887 | | | 1888 | 209 | amt = EXTERNAL_NLIST_SIZE; | 1889 | 209 | if (bfd_write (&nsp, amt, abfd) != amt) | 1890 | 0 | goto error_return; | 1891 | | | 1892 | | /* NB: `KEEPIT' currently overlays `udata.p', so set this only | 1893 | | here, at the end. */ | 1894 | 209 | g->KEEPIT = count; | 1895 | 209 | } | 1896 | | | 1897 | 23 | if (! emit_stringtab (abfd, strtab)) | 1898 | 0 | goto error_return; | 1899 | | | 1900 | 23 | _bfd_stringtab_free (strtab); | 1901 | | | 1902 | 23 | return true; | 1903 | | | 1904 | 0 | error_return: | 1905 | 0 | _bfd_stringtab_free (strtab); | 1906 | | return false; | 1907 | 23 | } |
Line | Count | Source | 1851 | 40 | { | 1852 | 40 | unsigned int count ; | 1853 | 40 | asymbol **generic = bfd_get_outsymbols (abfd); | 1854 | 40 | struct bfd_strtab_hash *strtab; | 1855 | | | 1856 | 40 | strtab = _bfd_stringtab_init (); | 1857 | 40 | if (strtab == NULL) | 1858 | 0 | return false; | 1859 | | | 1860 | 399 | for (count = 0; count < bfd_get_symcount (abfd); count++) | 1861 | 359 | { | 1862 | 359 | asymbol *g = generic[count]; | 1863 | 359 | bfd_size_type indx; | 1864 | 359 | struct external_nlist nsp; | 1865 | 359 | size_t amt; | 1866 | | | 1867 | 359 | indx = add_to_stringtab (abfd, strtab, g->name, false); | 1868 | 359 | if (indx == (bfd_size_type) -1) | 1869 | 0 | goto error_return; | 1870 | 359 | PUT_WORD (abfd, indx, (bfd_byte *) nsp.e_strx); | 1871 | | | 1872 | 359 | if (bfd_asymbol_flavour (g) == abfd->xvec->flavour) | 1873 | 359 | { | 1874 | 359 | H_PUT_16 (abfd, aout_symbol (g)->desc, nsp.e_desc); | 1875 | 359 | H_PUT_8 (abfd, aout_symbol (g)->other, nsp.e_other); | 1876 | 359 | H_PUT_8 (abfd, aout_symbol (g)->type, nsp.e_type); | 1877 | 359 | } | 1878 | 0 | else | 1879 | 0 | { | 1880 | 0 | H_PUT_16 (abfd, 0, nsp.e_desc); | 1881 | 0 | H_PUT_8 (abfd, 0, nsp.e_other); | 1882 | 0 | H_PUT_8 (abfd, 0, nsp.e_type); | 1883 | 0 | } | 1884 | | | 1885 | 359 | if (! translate_to_native_sym_flags (abfd, g, &nsp)) | 1886 | 0 | goto error_return; | 1887 | | | 1888 | 359 | amt = EXTERNAL_NLIST_SIZE; | 1889 | 359 | if (bfd_write (&nsp, amt, abfd) != amt) | 1890 | 0 | goto error_return; | 1891 | | | 1892 | | /* NB: `KEEPIT' currently overlays `udata.p', so set this only | 1893 | | here, at the end. */ | 1894 | 359 | g->KEEPIT = count; | 1895 | 359 | } | 1896 | | | 1897 | 40 | if (! emit_stringtab (abfd, strtab)) | 1898 | 0 | goto error_return; | 1899 | | | 1900 | 40 | _bfd_stringtab_free (strtab); | 1901 | | | 1902 | 40 | return true; | 1903 | | | 1904 | 0 | error_return: | 1905 | 0 | _bfd_stringtab_free (strtab); | 1906 | | return false; | 1907 | 40 | } |
|
1908 | | |
1909 | | long |
1910 | | NAME (aout, canonicalize_symtab) (bfd *abfd, asymbol **location) |
1911 | 235 | { |
1912 | 235 | unsigned int counter = 0; |
1913 | 235 | aout_symbol_type *symbase; |
1914 | | |
1915 | 235 | if (!NAME (aout, slurp_symbol_table) (abfd)) |
1916 | 0 | return -1; |
1917 | | |
1918 | 235 | for (symbase = obj_aout_symbols (abfd); |
1919 | 3.45k | counter++ < bfd_get_symcount (abfd); |
1920 | 235 | ) |
1921 | 3.22k | *(location++) = (asymbol *) (symbase++); |
1922 | 235 | *location++ =0; |
1923 | 235 | return bfd_get_symcount (abfd); |
1924 | 235 | } Unexecuted instantiation: cris_aout_32_canonicalize_symtab ns32kaout_32_canonicalize_symtab Line | Count | Source | 1911 | 108 | { | 1912 | 108 | unsigned int counter = 0; | 1913 | 108 | aout_symbol_type *symbase; | 1914 | | | 1915 | 108 | if (!NAME (aout, slurp_symbol_table) (abfd)) | 1916 | 0 | return -1; | 1917 | | | 1918 | 108 | for (symbase = obj_aout_symbols (abfd); | 1919 | 1.64k | counter++ < bfd_get_symcount (abfd); | 1920 | 108 | ) | 1921 | 1.53k | *(location++) = (asymbol *) (symbase++); | 1922 | 108 | *location++ =0; | 1923 | 108 | return bfd_get_symcount (abfd); | 1924 | 108 | } |
aout_32_canonicalize_symtab Line | Count | Source | 1911 | 127 | { | 1912 | 127 | unsigned int counter = 0; | 1913 | 127 | aout_symbol_type *symbase; | 1914 | | | 1915 | 127 | if (!NAME (aout, slurp_symbol_table) (abfd)) | 1916 | 0 | return -1; | 1917 | | | 1918 | 127 | for (symbase = obj_aout_symbols (abfd); | 1919 | 1.81k | counter++ < bfd_get_symcount (abfd); | 1920 | 127 | ) | 1921 | 1.69k | *(location++) = (asymbol *) (symbase++); | 1922 | 127 | *location++ =0; | 1923 | 127 | return bfd_get_symcount (abfd); | 1924 | 127 | } |
|
1925 | | |
1926 | | /* Standard reloc stuff. */ |
1927 | | /* Output standard relocation information to a file in target byte order. */ |
1928 | | |
1929 | | extern void NAME (aout, swap_std_reloc_out) |
1930 | | (bfd *, arelent *, struct reloc_std_external *); |
1931 | | |
1932 | | void |
1933 | | NAME (aout, swap_std_reloc_out) (bfd *abfd, |
1934 | | arelent *g, |
1935 | | struct reloc_std_external *natptr) |
1936 | 20 | { |
1937 | 20 | int r_index; |
1938 | 20 | asymbol *sym = *(g->sym_ptr_ptr); |
1939 | 20 | int r_extern; |
1940 | 20 | unsigned int r_length, r_size; |
1941 | 20 | int r_pcrel; |
1942 | 20 | int r_baserel, r_jmptable, r_relative; |
1943 | 20 | asection *output_section = sym->section->output_section; |
1944 | | |
1945 | 20 | PUT_WORD (abfd, g->address, natptr->r_address); |
1946 | | |
1947 | 20 | BFD_ASSERT (g->howto != NULL); |
1948 | | |
1949 | 20 | r_size = bfd_get_reloc_size (g->howto); |
1950 | 20 | r_length = bfd_log2 (r_size); |
1951 | 20 | if (1u << r_length != r_size) |
1952 | 0 | { |
1953 | 0 | _bfd_error_handler (_("%pB: unsupported AOUT relocation size: %d"), |
1954 | 0 | abfd, r_size); |
1955 | 0 | bfd_set_error (bfd_error_bad_value); |
1956 | 0 | return; |
1957 | 0 | } |
1958 | | |
1959 | 20 | r_pcrel = (int) g->howto->pc_relative; /* Relative to PC? */ |
1960 | | /* XXX This relies on relocs coming from a.out files. */ |
1961 | 20 | r_baserel = (g->howto->type & 8) != 0; |
1962 | 20 | r_jmptable = (g->howto->type & 16) != 0; |
1963 | 20 | r_relative = (g->howto->type & 32) != 0; |
1964 | | |
1965 | | /* Name was clobbered by aout_write_syms to be symbol index. */ |
1966 | | |
1967 | | /* If this relocation is relative to a symbol then set the |
1968 | | r_index to the symbols index, and the r_extern bit. |
1969 | | |
1970 | | Absolute symbols can come in in two ways, either as an offset |
1971 | | from the abs section, or as a symbol which has an abs value. |
1972 | | check for that here. */ |
1973 | | |
1974 | 20 | if (bfd_is_com_section (output_section) |
1975 | 20 | || bfd_is_abs_section (output_section) |
1976 | 2 | || bfd_is_und_section (output_section) |
1977 | | /* PR gas/3041 a.out relocs against weak symbols |
1978 | | must be treated as if they were against externs. */ |
1979 | 2 | || (sym->flags & BSF_WEAK)) |
1980 | 18 | { |
1981 | 18 | if (bfd_abs_section_ptr->symbol == sym) |
1982 | 16 | { |
1983 | | /* Whoops, looked like an abs symbol, but is |
1984 | | really an offset from the abs section. */ |
1985 | 16 | r_index = N_ABS; |
1986 | 16 | r_extern = 0; |
1987 | 16 | } |
1988 | 2 | else |
1989 | 2 | { |
1990 | | /* Fill in symbol. */ |
1991 | 2 | r_extern = 1; |
1992 | 2 | r_index = (*(g->sym_ptr_ptr))->KEEPIT; |
1993 | 2 | } |
1994 | 18 | } |
1995 | 2 | else |
1996 | 2 | { |
1997 | | /* Just an ordinary section. */ |
1998 | 2 | r_extern = 0; |
1999 | 2 | r_index = output_section->target_index; |
2000 | 2 | } |
2001 | | |
2002 | | /* Now the fun stuff. */ |
2003 | 20 | if (bfd_header_big_endian (abfd)) |
2004 | 0 | { |
2005 | 0 | natptr->r_index[0] = r_index >> 16; |
2006 | 0 | natptr->r_index[1] = r_index >> 8; |
2007 | 0 | natptr->r_index[2] = r_index; |
2008 | 0 | natptr->r_type[0] = ((r_extern ? RELOC_STD_BITS_EXTERN_BIG : 0) |
2009 | 0 | | (r_pcrel ? RELOC_STD_BITS_PCREL_BIG : 0) |
2010 | 0 | | (r_baserel ? RELOC_STD_BITS_BASEREL_BIG : 0) |
2011 | 0 | | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_BIG : 0) |
2012 | 0 | | (r_relative ? RELOC_STD_BITS_RELATIVE_BIG : 0) |
2013 | 0 | | (r_length << RELOC_STD_BITS_LENGTH_SH_BIG)); |
2014 | 0 | } |
2015 | 20 | else |
2016 | 20 | { |
2017 | 20 | natptr->r_index[2] = r_index >> 16; |
2018 | 20 | natptr->r_index[1] = r_index >> 8; |
2019 | 20 | natptr->r_index[0] = r_index; |
2020 | 20 | natptr->r_type[0] = ((r_extern ? RELOC_STD_BITS_EXTERN_LITTLE : 0) |
2021 | 20 | | (r_pcrel ? RELOC_STD_BITS_PCREL_LITTLE : 0) |
2022 | 20 | | (r_baserel ? RELOC_STD_BITS_BASEREL_LITTLE : 0) |
2023 | 20 | | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_LITTLE : 0) |
2024 | 20 | | (r_relative ? RELOC_STD_BITS_RELATIVE_LITTLE : 0) |
2025 | 20 | | (r_length << RELOC_STD_BITS_LENGTH_SH_LITTLE)); |
2026 | 20 | } |
2027 | 20 | } Unexecuted instantiation: cris_aout_32_swap_std_reloc_out Unexecuted instantiation: ns32kaout_32_swap_std_reloc_out aout_32_swap_std_reloc_out Line | Count | Source | 1936 | 20 | { | 1937 | 20 | int r_index; | 1938 | 20 | asymbol *sym = *(g->sym_ptr_ptr); | 1939 | 20 | int r_extern; | 1940 | 20 | unsigned int r_length, r_size; | 1941 | 20 | int r_pcrel; | 1942 | 20 | int r_baserel, r_jmptable, r_relative; | 1943 | 20 | asection *output_section = sym->section->output_section; | 1944 | | | 1945 | 20 | PUT_WORD (abfd, g->address, natptr->r_address); | 1946 | | | 1947 | 20 | BFD_ASSERT (g->howto != NULL); | 1948 | | | 1949 | 20 | r_size = bfd_get_reloc_size (g->howto); | 1950 | 20 | r_length = bfd_log2 (r_size); | 1951 | 20 | if (1u << r_length != r_size) | 1952 | 0 | { | 1953 | 0 | _bfd_error_handler (_("%pB: unsupported AOUT relocation size: %d"), | 1954 | 0 | abfd, r_size); | 1955 | 0 | bfd_set_error (bfd_error_bad_value); | 1956 | 0 | return; | 1957 | 0 | } | 1958 | | | 1959 | 20 | r_pcrel = (int) g->howto->pc_relative; /* Relative to PC? */ | 1960 | | /* XXX This relies on relocs coming from a.out files. */ | 1961 | 20 | r_baserel = (g->howto->type & 8) != 0; | 1962 | 20 | r_jmptable = (g->howto->type & 16) != 0; | 1963 | 20 | r_relative = (g->howto->type & 32) != 0; | 1964 | | | 1965 | | /* Name was clobbered by aout_write_syms to be symbol index. */ | 1966 | | | 1967 | | /* If this relocation is relative to a symbol then set the | 1968 | | r_index to the symbols index, and the r_extern bit. | 1969 | | | 1970 | | Absolute symbols can come in in two ways, either as an offset | 1971 | | from the abs section, or as a symbol which has an abs value. | 1972 | | check for that here. */ | 1973 | | | 1974 | 20 | if (bfd_is_com_section (output_section) | 1975 | 20 | || bfd_is_abs_section (output_section) | 1976 | 2 | || bfd_is_und_section (output_section) | 1977 | | /* PR gas/3041 a.out relocs against weak symbols | 1978 | | must be treated as if they were against externs. */ | 1979 | 2 | || (sym->flags & BSF_WEAK)) | 1980 | 18 | { | 1981 | 18 | if (bfd_abs_section_ptr->symbol == sym) | 1982 | 16 | { | 1983 | | /* Whoops, looked like an abs symbol, but is | 1984 | | really an offset from the abs section. */ | 1985 | 16 | r_index = N_ABS; | 1986 | 16 | r_extern = 0; | 1987 | 16 | } | 1988 | 2 | else | 1989 | 2 | { | 1990 | | /* Fill in symbol. */ | 1991 | 2 | r_extern = 1; | 1992 | 2 | r_index = (*(g->sym_ptr_ptr))->KEEPIT; | 1993 | 2 | } | 1994 | 18 | } | 1995 | 2 | else | 1996 | 2 | { | 1997 | | /* Just an ordinary section. */ | 1998 | 2 | r_extern = 0; | 1999 | 2 | r_index = output_section->target_index; | 2000 | 2 | } | 2001 | | | 2002 | | /* Now the fun stuff. */ | 2003 | 20 | if (bfd_header_big_endian (abfd)) | 2004 | 0 | { | 2005 | 0 | natptr->r_index[0] = r_index >> 16; | 2006 | 0 | natptr->r_index[1] = r_index >> 8; | 2007 | 0 | natptr->r_index[2] = r_index; | 2008 | 0 | natptr->r_type[0] = ((r_extern ? RELOC_STD_BITS_EXTERN_BIG : 0) | 2009 | 0 | | (r_pcrel ? RELOC_STD_BITS_PCREL_BIG : 0) | 2010 | 0 | | (r_baserel ? RELOC_STD_BITS_BASEREL_BIG : 0) | 2011 | 0 | | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_BIG : 0) | 2012 | 0 | | (r_relative ? RELOC_STD_BITS_RELATIVE_BIG : 0) | 2013 | 0 | | (r_length << RELOC_STD_BITS_LENGTH_SH_BIG)); | 2014 | 0 | } | 2015 | 20 | else | 2016 | 20 | { | 2017 | 20 | natptr->r_index[2] = r_index >> 16; | 2018 | 20 | natptr->r_index[1] = r_index >> 8; | 2019 | 20 | natptr->r_index[0] = r_index; | 2020 | 20 | natptr->r_type[0] = ((r_extern ? RELOC_STD_BITS_EXTERN_LITTLE : 0) | 2021 | 20 | | (r_pcrel ? RELOC_STD_BITS_PCREL_LITTLE : 0) | 2022 | 20 | | (r_baserel ? RELOC_STD_BITS_BASEREL_LITTLE : 0) | 2023 | 20 | | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_LITTLE : 0) | 2024 | 20 | | (r_relative ? RELOC_STD_BITS_RELATIVE_LITTLE : 0) | 2025 | 20 | | (r_length << RELOC_STD_BITS_LENGTH_SH_LITTLE)); | 2026 | 20 | } | 2027 | 20 | } |
|
2028 | | |
2029 | | /* Extended stuff. */ |
2030 | | /* Output extended relocation information to a file in target byte order. */ |
2031 | | |
2032 | | extern void NAME (aout, swap_ext_reloc_out) |
2033 | | (bfd *, arelent *, struct reloc_ext_external *); |
2034 | | |
2035 | | void |
2036 | | NAME (aout, swap_ext_reloc_out) (bfd *abfd, |
2037 | | arelent *g, |
2038 | | struct reloc_ext_external *natptr) |
2039 | 0 | { |
2040 | 0 | int r_index; |
2041 | 0 | int r_extern; |
2042 | 0 | unsigned int r_type; |
2043 | 0 | bfd_vma r_addend; |
2044 | 0 | asymbol *sym = *(g->sym_ptr_ptr); |
2045 | 0 | asection *output_section = sym->section->output_section; |
2046 | |
|
2047 | 0 | PUT_WORD (abfd, g->address, natptr->r_address); |
2048 | |
|
2049 | 0 | r_type = (unsigned int) g->howto->type; |
2050 | |
|
2051 | 0 | r_addend = g->addend; |
2052 | 0 | if ((sym->flags & BSF_SECTION_SYM) != 0) |
2053 | 0 | r_addend += (*(g->sym_ptr_ptr))->section->output_section->vma; |
2054 | | |
2055 | | /* If this relocation is relative to a symbol then set the |
2056 | | r_index to the symbols index, and the r_extern bit. |
2057 | | |
2058 | | Absolute symbols can come in in two ways, either as an offset |
2059 | | from the abs section, or as a symbol which has an abs value. |
2060 | | check for that here. */ |
2061 | 0 | if (bfd_is_abs_section (bfd_asymbol_section (sym))) |
2062 | 0 | { |
2063 | 0 | r_extern = 0; |
2064 | 0 | r_index = N_ABS; |
2065 | 0 | } |
2066 | 0 | else if ((sym->flags & BSF_SECTION_SYM) == 0) |
2067 | 0 | { |
2068 | 0 | if (bfd_is_und_section (bfd_asymbol_section (sym)) |
2069 | 0 | || (sym->flags & BSF_GLOBAL) != 0) |
2070 | 0 | r_extern = 1; |
2071 | 0 | else |
2072 | 0 | r_extern = 0; |
2073 | 0 | r_index = (*(g->sym_ptr_ptr))->KEEPIT; |
2074 | 0 | } |
2075 | 0 | else |
2076 | 0 | { |
2077 | | /* Just an ordinary section. */ |
2078 | 0 | r_extern = 0; |
2079 | 0 | r_index = output_section->target_index; |
2080 | 0 | } |
2081 | | |
2082 | | /* Now the fun stuff. */ |
2083 | 0 | if (bfd_header_big_endian (abfd)) |
2084 | 0 | { |
2085 | 0 | natptr->r_index[0] = r_index >> 16; |
2086 | 0 | natptr->r_index[1] = r_index >> 8; |
2087 | 0 | natptr->r_index[2] = r_index; |
2088 | 0 | natptr->r_type[0] = ((r_extern ? RELOC_EXT_BITS_EXTERN_BIG : 0) |
2089 | 0 | | (r_type << RELOC_EXT_BITS_TYPE_SH_BIG)); |
2090 | 0 | } |
2091 | 0 | else |
2092 | 0 | { |
2093 | 0 | natptr->r_index[2] = r_index >> 16; |
2094 | 0 | natptr->r_index[1] = r_index >> 8; |
2095 | 0 | natptr->r_index[0] = r_index; |
2096 | 0 | natptr->r_type[0] = ((r_extern ? RELOC_EXT_BITS_EXTERN_LITTLE : 0) |
2097 | 0 | | (r_type << RELOC_EXT_BITS_TYPE_SH_LITTLE)); |
2098 | 0 | } |
2099 | |
|
2100 | 0 | PUT_WORD (abfd, r_addend, natptr->r_addend); |
2101 | 0 | } Unexecuted instantiation: cris_aout_32_swap_ext_reloc_out Unexecuted instantiation: ns32kaout_32_swap_ext_reloc_out Unexecuted instantiation: aout_32_swap_ext_reloc_out |
2102 | | |
2103 | | /* BFD deals internally with all things based from the section they're |
2104 | | in. so, something in 10 bytes into a text section with a base of |
2105 | | 50 would have a symbol (.text+10) and know .text vma was 50. |
2106 | | |
2107 | | Aout keeps all it's symbols based from zero, so the symbol would |
2108 | | contain 60. This macro subs the base of each section from the value |
2109 | | to give the true offset from the section. */ |
2110 | | |
2111 | | #define MOVE_ADDRESS(ad) \ |
2112 | 3.32k | if (r_extern) \ |
2113 | 3.32k | { \ |
2114 | 860 | /* Undefined symbol. */ \ |
2115 | 860 | if (symbols != NULL && r_index < bfd_get_symcount (abfd)) \ |
2116 | 860 | cache_ptr->sym_ptr_ptr = symbols + r_index; \ |
2117 | 860 | else \ |
2118 | 860 | cache_ptr->sym_ptr_ptr = &bfd_abs_section_ptr->symbol; \ |
2119 | 860 | cache_ptr->addend = ad; \ |
2120 | 860 | } \ |
2121 | 3.32k | else \ |
2122 | 3.32k | { \ |
2123 | 2.46k | /* Defined, section relative. Replace symbol with pointer to \ |
2124 | 2.46k | symbol which points to section. */ \ |
2125 | 2.46k | switch (r_index) \ |
2126 | 2.46k | { \ |
2127 | 28 | case N_TEXT: \ |
2128 | 39 | case N_TEXT | N_EXT: \ |
2129 | 39 | cache_ptr->sym_ptr_ptr = &obj_textsec (abfd)->symbol; \ |
2130 | 39 | cache_ptr->addend = ad - su->textsec->vma; \ |
2131 | 39 | break; \ |
2132 | 28 | case N_DATA: \ |
2133 | 28 | case N_DATA | N_EXT: \ |
2134 | 28 | cache_ptr->sym_ptr_ptr = &obj_datasec (abfd)->symbol; \ |
2135 | 28 | cache_ptr->addend = ad - su->datasec->vma; \ |
2136 | 28 | break; \ |
2137 | 22 | case N_BSS: \ |
2138 | 24 | case N_BSS | N_EXT: \ |
2139 | 24 | cache_ptr->sym_ptr_ptr = &obj_bsssec (abfd)->symbol; \ |
2140 | 24 | cache_ptr->addend = ad - su->bsssec->vma; \ |
2141 | 24 | break; \ |
2142 | 1.98k | default: \ |
2143 | 2.36k | case N_ABS: \ |
2144 | 2.37k | case N_ABS | N_EXT: \ |
2145 | 2.37k | cache_ptr->sym_ptr_ptr = &bfd_abs_section_ptr->symbol; \ |
2146 | 2.37k | cache_ptr->addend = ad; \ |
2147 | 2.37k | break; \ |
2148 | 2.46k | } \ |
2149 | 2.46k | } |
2150 | | |
2151 | | void |
2152 | | NAME (aout, swap_ext_reloc_in) (bfd *abfd, |
2153 | | struct reloc_ext_external *bytes, |
2154 | | arelent *cache_ptr, |
2155 | | asymbol **symbols, |
2156 | | bfd_size_type symcount) |
2157 | 0 | { |
2158 | 0 | unsigned int r_index; |
2159 | 0 | int r_extern; |
2160 | 0 | unsigned int r_type; |
2161 | 0 | struct aoutdata *su = &(abfd->tdata.aout_data->a); |
2162 | |
|
2163 | 0 | cache_ptr->address = (GET_SWORD (abfd, bytes->r_address)); |
2164 | | |
2165 | | /* Now the fun stuff. */ |
2166 | 0 | if (bfd_header_big_endian (abfd)) |
2167 | 0 | { |
2168 | 0 | r_index = (((unsigned int) bytes->r_index[0] << 16) |
2169 | 0 | | ((unsigned int) bytes->r_index[1] << 8) |
2170 | 0 | | bytes->r_index[2]); |
2171 | 0 | r_extern = (0 != (bytes->r_type[0] & RELOC_EXT_BITS_EXTERN_BIG)); |
2172 | 0 | r_type = ((bytes->r_type[0] & RELOC_EXT_BITS_TYPE_BIG) |
2173 | 0 | >> RELOC_EXT_BITS_TYPE_SH_BIG); |
2174 | 0 | } |
2175 | 0 | else |
2176 | 0 | { |
2177 | 0 | r_index = (((unsigned int) bytes->r_index[2] << 16) |
2178 | 0 | | ((unsigned int) bytes->r_index[1] << 8) |
2179 | 0 | | bytes->r_index[0]); |
2180 | 0 | r_extern = (0 != (bytes->r_type[0] & RELOC_EXT_BITS_EXTERN_LITTLE)); |
2181 | 0 | r_type = ((bytes->r_type[0] & RELOC_EXT_BITS_TYPE_LITTLE) |
2182 | 0 | >> RELOC_EXT_BITS_TYPE_SH_LITTLE); |
2183 | 0 | } |
2184 | |
|
2185 | 0 | if (r_type < TABLE_SIZE (howto_table_ext)) |
2186 | 0 | cache_ptr->howto = howto_table_ext + r_type; |
2187 | 0 | else |
2188 | 0 | cache_ptr->howto = NULL; |
2189 | | |
2190 | | /* Base relative relocs are always against the symbol table, |
2191 | | regardless of the setting of r_extern. r_extern just reflects |
2192 | | whether the symbol the reloc is against is local or global. */ |
2193 | 0 | if (r_type == (unsigned int) RELOC_BASE10 |
2194 | 0 | || r_type == (unsigned int) RELOC_BASE13 |
2195 | 0 | || r_type == (unsigned int) RELOC_BASE22) |
2196 | 0 | r_extern = 1; |
2197 | |
|
2198 | 0 | if (r_extern && r_index > symcount) |
2199 | 0 | { |
2200 | | /* We could arrange to return an error, but it might be useful |
2201 | | to see the file even if it is bad. */ |
2202 | 0 | r_extern = 0; |
2203 | 0 | r_index = N_ABS; |
2204 | 0 | } |
2205 | |
|
2206 | 0 | MOVE_ADDRESS (GET_SWORD (abfd, bytes->r_addend)); |
2207 | 0 | } Unexecuted instantiation: cris_aout_32_swap_ext_reloc_in Unexecuted instantiation: ns32kaout_32_swap_ext_reloc_in Unexecuted instantiation: aout_32_swap_ext_reloc_in |
2208 | | |
2209 | | void |
2210 | | NAME (aout, swap_std_reloc_in) (bfd *abfd, |
2211 | | struct reloc_std_external *bytes, |
2212 | | arelent *cache_ptr, |
2213 | | asymbol **symbols, |
2214 | | bfd_size_type symcount) |
2215 | 2.92k | { |
2216 | 2.92k | unsigned int r_index; |
2217 | 2.92k | int r_extern; |
2218 | 2.92k | unsigned int r_length; |
2219 | 2.92k | int r_pcrel; |
2220 | 2.92k | int r_baserel, r_jmptable, r_relative; |
2221 | 2.92k | struct aoutdata *su = &(abfd->tdata.aout_data->a); |
2222 | 2.92k | unsigned int howto_idx; |
2223 | | |
2224 | 2.92k | cache_ptr->address = H_GET_32 (abfd, bytes->r_address); |
2225 | | |
2226 | | /* Now the fun stuff. */ |
2227 | 2.92k | if (bfd_header_big_endian (abfd)) |
2228 | 0 | { |
2229 | 0 | r_index = (((unsigned int) bytes->r_index[0] << 16) |
2230 | 0 | | ((unsigned int) bytes->r_index[1] << 8) |
2231 | 0 | | bytes->r_index[2]); |
2232 | 0 | r_extern = (0 != (bytes->r_type[0] & RELOC_STD_BITS_EXTERN_BIG)); |
2233 | 0 | r_pcrel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_PCREL_BIG)); |
2234 | 0 | r_baserel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_BASEREL_BIG)); |
2235 | 0 | r_jmptable= (0 != (bytes->r_type[0] & RELOC_STD_BITS_JMPTABLE_BIG)); |
2236 | 0 | r_relative= (0 != (bytes->r_type[0] & RELOC_STD_BITS_RELATIVE_BIG)); |
2237 | 0 | r_length = ((bytes->r_type[0] & RELOC_STD_BITS_LENGTH_BIG) |
2238 | 0 | >> RELOC_STD_BITS_LENGTH_SH_BIG); |
2239 | 0 | } |
2240 | 2.92k | else |
2241 | 2.92k | { |
2242 | 2.92k | r_index = (((unsigned int) bytes->r_index[2] << 16) |
2243 | 2.92k | | ((unsigned int) bytes->r_index[1] << 8) |
2244 | 2.92k | | bytes->r_index[0]); |
2245 | 2.92k | r_extern = (0 != (bytes->r_type[0] & RELOC_STD_BITS_EXTERN_LITTLE)); |
2246 | 2.92k | r_pcrel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_PCREL_LITTLE)); |
2247 | 2.92k | r_baserel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_BASEREL_LITTLE)); |
2248 | 2.92k | r_jmptable= (0 != (bytes->r_type[0] & RELOC_STD_BITS_JMPTABLE_LITTLE)); |
2249 | 2.92k | r_relative= (0 != (bytes->r_type[0] & RELOC_STD_BITS_RELATIVE_LITTLE)); |
2250 | 2.92k | r_length = ((bytes->r_type[0] & RELOC_STD_BITS_LENGTH_LITTLE) |
2251 | 2.92k | >> RELOC_STD_BITS_LENGTH_SH_LITTLE); |
2252 | 2.92k | } |
2253 | | |
2254 | 2.92k | howto_idx = (r_length + 4 * r_pcrel + 8 * r_baserel |
2255 | 2.92k | + 16 * r_jmptable + 32 * r_relative); |
2256 | 2.92k | if (howto_idx < TABLE_SIZE (howto_table_std)) |
2257 | 2.34k | { |
2258 | 2.34k | cache_ptr->howto = howto_table_std + howto_idx; |
2259 | 2.34k | if (cache_ptr->howto->type == (unsigned int) -1) |
2260 | 489 | cache_ptr->howto = NULL; |
2261 | 2.34k | } |
2262 | 574 | else |
2263 | 574 | cache_ptr->howto = NULL; |
2264 | | |
2265 | | /* Base relative relocs are always against the symbol table, |
2266 | | regardless of the setting of r_extern. r_extern just reflects |
2267 | | whether the symbol the reloc is against is local or global. */ |
2268 | 2.92k | if (r_baserel) |
2269 | 756 | r_extern = 1; |
2270 | | |
2271 | 2.92k | if (r_extern && r_index >= symcount) |
2272 | 372 | { |
2273 | | /* We could arrange to return an error, but it might be useful |
2274 | | to see the file even if it is bad. FIXME: Of course this |
2275 | | means that objdump -r *doesn't* see the actual reloc, and |
2276 | | objcopy silently writes a different reloc. */ |
2277 | 372 | r_extern = 0; |
2278 | 372 | r_index = N_ABS; |
2279 | 372 | } |
2280 | | |
2281 | 2.92k | MOVE_ADDRESS (0); |
2282 | 2.92k | } Unexecuted instantiation: cris_aout_32_swap_std_reloc_in Unexecuted instantiation: ns32kaout_32_swap_std_reloc_in aout_32_swap_std_reloc_in Line | Count | Source | 2215 | 2.92k | { | 2216 | 2.92k | unsigned int r_index; | 2217 | 2.92k | int r_extern; | 2218 | 2.92k | unsigned int r_length; | 2219 | 2.92k | int r_pcrel; | 2220 | 2.92k | int r_baserel, r_jmptable, r_relative; | 2221 | 2.92k | struct aoutdata *su = &(abfd->tdata.aout_data->a); | 2222 | 2.92k | unsigned int howto_idx; | 2223 | | | 2224 | 2.92k | cache_ptr->address = H_GET_32 (abfd, bytes->r_address); | 2225 | | | 2226 | | /* Now the fun stuff. */ | 2227 | 2.92k | if (bfd_header_big_endian (abfd)) | 2228 | 0 | { | 2229 | 0 | r_index = (((unsigned int) bytes->r_index[0] << 16) | 2230 | 0 | | ((unsigned int) bytes->r_index[1] << 8) | 2231 | 0 | | bytes->r_index[2]); | 2232 | 0 | r_extern = (0 != (bytes->r_type[0] & RELOC_STD_BITS_EXTERN_BIG)); | 2233 | 0 | r_pcrel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_PCREL_BIG)); | 2234 | 0 | r_baserel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_BASEREL_BIG)); | 2235 | 0 | r_jmptable= (0 != (bytes->r_type[0] & RELOC_STD_BITS_JMPTABLE_BIG)); | 2236 | 0 | r_relative= (0 != (bytes->r_type[0] & RELOC_STD_BITS_RELATIVE_BIG)); | 2237 | 0 | r_length = ((bytes->r_type[0] & RELOC_STD_BITS_LENGTH_BIG) | 2238 | 0 | >> RELOC_STD_BITS_LENGTH_SH_BIG); | 2239 | 0 | } | 2240 | 2.92k | else | 2241 | 2.92k | { | 2242 | 2.92k | r_index = (((unsigned int) bytes->r_index[2] << 16) | 2243 | 2.92k | | ((unsigned int) bytes->r_index[1] << 8) | 2244 | 2.92k | | bytes->r_index[0]); | 2245 | 2.92k | r_extern = (0 != (bytes->r_type[0] & RELOC_STD_BITS_EXTERN_LITTLE)); | 2246 | 2.92k | r_pcrel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_PCREL_LITTLE)); | 2247 | 2.92k | r_baserel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_BASEREL_LITTLE)); | 2248 | 2.92k | r_jmptable= (0 != (bytes->r_type[0] & RELOC_STD_BITS_JMPTABLE_LITTLE)); | 2249 | 2.92k | r_relative= (0 != (bytes->r_type[0] & RELOC_STD_BITS_RELATIVE_LITTLE)); | 2250 | 2.92k | r_length = ((bytes->r_type[0] & RELOC_STD_BITS_LENGTH_LITTLE) | 2251 | 2.92k | >> RELOC_STD_BITS_LENGTH_SH_LITTLE); | 2252 | 2.92k | } | 2253 | | | 2254 | 2.92k | howto_idx = (r_length + 4 * r_pcrel + 8 * r_baserel | 2255 | 2.92k | + 16 * r_jmptable + 32 * r_relative); | 2256 | 2.92k | if (howto_idx < TABLE_SIZE (howto_table_std)) | 2257 | 2.34k | { | 2258 | 2.34k | cache_ptr->howto = howto_table_std + howto_idx; | 2259 | 2.34k | if (cache_ptr->howto->type == (unsigned int) -1) | 2260 | 489 | cache_ptr->howto = NULL; | 2261 | 2.34k | } | 2262 | 574 | else | 2263 | 574 | cache_ptr->howto = NULL; | 2264 | | | 2265 | | /* Base relative relocs are always against the symbol table, | 2266 | | regardless of the setting of r_extern. r_extern just reflects | 2267 | | whether the symbol the reloc is against is local or global. */ | 2268 | 2.92k | if (r_baserel) | 2269 | 756 | r_extern = 1; | 2270 | | | 2271 | 2.92k | if (r_extern && r_index >= symcount) | 2272 | 372 | { | 2273 | | /* We could arrange to return an error, but it might be useful | 2274 | | to see the file even if it is bad. FIXME: Of course this | 2275 | | means that objdump -r *doesn't* see the actual reloc, and | 2276 | | objcopy silently writes a different reloc. */ | 2277 | 372 | r_extern = 0; | 2278 | 372 | r_index = N_ABS; | 2279 | 372 | } | 2280 | | | 2281 | 2.92k | MOVE_ADDRESS (0); | 2282 | 2.92k | } |
|
2283 | | |
2284 | | /* Read and swap the relocs for a section. */ |
2285 | | |
2286 | | bool |
2287 | | NAME (aout, slurp_reloc_table) (bfd *abfd, sec_ptr asect, asymbol **symbols) |
2288 | 86 | { |
2289 | 86 | bfd_size_type count; |
2290 | 86 | bfd_size_type reloc_size; |
2291 | 86 | void * relocs; |
2292 | 86 | arelent *reloc_cache; |
2293 | 86 | size_t each_size; |
2294 | 86 | unsigned int counter = 0; |
2295 | 86 | arelent *cache_ptr; |
2296 | 86 | bfd_size_type amt; |
2297 | | |
2298 | 86 | if (asect->relocation) |
2299 | 0 | return true; |
2300 | | |
2301 | 86 | if (asect->flags & SEC_CONSTRUCTOR) |
2302 | 0 | return true; |
2303 | | |
2304 | 86 | if (asect == obj_datasec (abfd)) |
2305 | 13 | reloc_size = exec_hdr (abfd)->a_drsize; |
2306 | 73 | else if (asect == obj_textsec (abfd)) |
2307 | 73 | reloc_size = exec_hdr (abfd)->a_trsize; |
2308 | 0 | else if (asect == obj_bsssec (abfd)) |
2309 | 0 | reloc_size = 0; |
2310 | 0 | else |
2311 | 0 | { |
2312 | 0 | bfd_set_error (bfd_error_invalid_operation); |
2313 | 0 | return false; |
2314 | 0 | } |
2315 | | |
2316 | 86 | each_size = obj_reloc_entry_size (abfd); |
2317 | 86 | count = reloc_size / each_size; |
2318 | 86 | if (count == 0) |
2319 | 33 | return true; /* Nothing to be done. */ |
2320 | | |
2321 | 53 | if (bfd_seek (abfd, asect->rel_filepos, SEEK_SET) != 0) |
2322 | 0 | return false; |
2323 | 53 | relocs = _bfd_malloc_and_read (abfd, reloc_size, reloc_size); |
2324 | 53 | if (relocs == NULL) |
2325 | 1 | return false; |
2326 | | |
2327 | 52 | amt = count * sizeof (arelent); |
2328 | 52 | reloc_cache = (arelent *) bfd_zmalloc (amt); |
2329 | 52 | if (reloc_cache == NULL) |
2330 | 0 | { |
2331 | 0 | free (relocs); |
2332 | 0 | return false; |
2333 | 0 | } |
2334 | | |
2335 | 52 | cache_ptr = reloc_cache; |
2336 | 52 | if (each_size == RELOC_EXT_SIZE) |
2337 | 0 | { |
2338 | 0 | struct reloc_ext_external *rptr = (struct reloc_ext_external *) relocs; |
2339 | |
|
2340 | 0 | for (; counter < count; counter++, rptr++, cache_ptr++) |
2341 | 0 | MY_swap_ext_reloc_in (abfd, rptr, cache_ptr, symbols, |
2342 | 0 | (bfd_size_type) bfd_get_symcount (abfd)); |
2343 | 0 | } |
2344 | 52 | else |
2345 | 52 | { |
2346 | 52 | struct reloc_std_external *rptr = (struct reloc_std_external *) relocs; |
2347 | | |
2348 | 3.38k | for (; counter < count; counter++, rptr++, cache_ptr++) |
2349 | 3.32k | MY_swap_std_reloc_in (abfd, rptr, cache_ptr, symbols, |
2350 | 3.32k | (bfd_size_type) bfd_get_symcount (abfd)); |
2351 | 52 | } |
2352 | | |
2353 | 52 | free (relocs); |
2354 | | |
2355 | 52 | asect->relocation = reloc_cache; |
2356 | 52 | asect->reloc_count = cache_ptr - reloc_cache; |
2357 | | |
2358 | 52 | return true; |
2359 | 52 | } Unexecuted instantiation: cris_aout_32_slurp_reloc_table ns32kaout_32_slurp_reloc_table Line | Count | Source | 2288 | 36 | { | 2289 | 36 | bfd_size_type count; | 2290 | 36 | bfd_size_type reloc_size; | 2291 | 36 | void * relocs; | 2292 | 36 | arelent *reloc_cache; | 2293 | 36 | size_t each_size; | 2294 | 36 | unsigned int counter = 0; | 2295 | 36 | arelent *cache_ptr; | 2296 | 36 | bfd_size_type amt; | 2297 | | | 2298 | 36 | if (asect->relocation) | 2299 | 0 | return true; | 2300 | | | 2301 | 36 | if (asect->flags & SEC_CONSTRUCTOR) | 2302 | 0 | return true; | 2303 | | | 2304 | 36 | if (asect == obj_datasec (abfd)) | 2305 | 10 | reloc_size = exec_hdr (abfd)->a_drsize; | 2306 | 26 | else if (asect == obj_textsec (abfd)) | 2307 | 26 | reloc_size = exec_hdr (abfd)->a_trsize; | 2308 | 0 | else if (asect == obj_bsssec (abfd)) | 2309 | 0 | reloc_size = 0; | 2310 | 0 | else | 2311 | 0 | { | 2312 | 0 | bfd_set_error (bfd_error_invalid_operation); | 2313 | 0 | return false; | 2314 | 0 | } | 2315 | | | 2316 | 36 | each_size = obj_reloc_entry_size (abfd); | 2317 | 36 | count = reloc_size / each_size; | 2318 | 36 | if (count == 0) | 2319 | 17 | return true; /* Nothing to be done. */ | 2320 | | | 2321 | 19 | if (bfd_seek (abfd, asect->rel_filepos, SEEK_SET) != 0) | 2322 | 0 | return false; | 2323 | 19 | relocs = _bfd_malloc_and_read (abfd, reloc_size, reloc_size); | 2324 | 19 | if (relocs == NULL) | 2325 | 1 | return false; | 2326 | | | 2327 | 18 | amt = count * sizeof (arelent); | 2328 | 18 | reloc_cache = (arelent *) bfd_zmalloc (amt); | 2329 | 18 | if (reloc_cache == NULL) | 2330 | 0 | { | 2331 | 0 | free (relocs); | 2332 | 0 | return false; | 2333 | 0 | } | 2334 | | | 2335 | 18 | cache_ptr = reloc_cache; | 2336 | 18 | if (each_size == RELOC_EXT_SIZE) | 2337 | 0 | { | 2338 | 0 | struct reloc_ext_external *rptr = (struct reloc_ext_external *) relocs; | 2339 | |
| 2340 | 0 | for (; counter < count; counter++, rptr++, cache_ptr++) | 2341 | 0 | MY_swap_ext_reloc_in (abfd, rptr, cache_ptr, symbols, | 2342 | 0 | (bfd_size_type) bfd_get_symcount (abfd)); | 2343 | 0 | } | 2344 | 18 | else | 2345 | 18 | { | 2346 | 18 | struct reloc_std_external *rptr = (struct reloc_std_external *) relocs; | 2347 | | | 2348 | 426 | for (; counter < count; counter++, rptr++, cache_ptr++) | 2349 | 408 | MY_swap_std_reloc_in (abfd, rptr, cache_ptr, symbols, | 2350 | 408 | (bfd_size_type) bfd_get_symcount (abfd)); | 2351 | 18 | } | 2352 | | | 2353 | 18 | free (relocs); | 2354 | | | 2355 | 18 | asect->relocation = reloc_cache; | 2356 | 18 | asect->reloc_count = cache_ptr - reloc_cache; | 2357 | | | 2358 | | return true; | 2359 | 18 | } |
aout_32_slurp_reloc_table Line | Count | Source | 2288 | 50 | { | 2289 | 50 | bfd_size_type count; | 2290 | 50 | bfd_size_type reloc_size; | 2291 | 50 | void * relocs; | 2292 | 50 | arelent *reloc_cache; | 2293 | 50 | size_t each_size; | 2294 | 50 | unsigned int counter = 0; | 2295 | 50 | arelent *cache_ptr; | 2296 | 50 | bfd_size_type amt; | 2297 | | | 2298 | 50 | if (asect->relocation) | 2299 | 0 | return true; | 2300 | | | 2301 | 50 | if (asect->flags & SEC_CONSTRUCTOR) | 2302 | 0 | return true; | 2303 | | | 2304 | 50 | if (asect == obj_datasec (abfd)) | 2305 | 3 | reloc_size = exec_hdr (abfd)->a_drsize; | 2306 | 47 | else if (asect == obj_textsec (abfd)) | 2307 | 47 | reloc_size = exec_hdr (abfd)->a_trsize; | 2308 | 0 | else if (asect == obj_bsssec (abfd)) | 2309 | 0 | reloc_size = 0; | 2310 | 0 | else | 2311 | 0 | { | 2312 | 0 | bfd_set_error (bfd_error_invalid_operation); | 2313 | 0 | return false; | 2314 | 0 | } | 2315 | | | 2316 | 50 | each_size = obj_reloc_entry_size (abfd); | 2317 | 50 | count = reloc_size / each_size; | 2318 | 50 | if (count == 0) | 2319 | 16 | return true; /* Nothing to be done. */ | 2320 | | | 2321 | 34 | if (bfd_seek (abfd, asect->rel_filepos, SEEK_SET) != 0) | 2322 | 0 | return false; | 2323 | 34 | relocs = _bfd_malloc_and_read (abfd, reloc_size, reloc_size); | 2324 | 34 | if (relocs == NULL) | 2325 | 0 | return false; | 2326 | | | 2327 | 34 | amt = count * sizeof (arelent); | 2328 | 34 | reloc_cache = (arelent *) bfd_zmalloc (amt); | 2329 | 34 | if (reloc_cache == NULL) | 2330 | 0 | { | 2331 | 0 | free (relocs); | 2332 | 0 | return false; | 2333 | 0 | } | 2334 | | | 2335 | 34 | cache_ptr = reloc_cache; | 2336 | 34 | if (each_size == RELOC_EXT_SIZE) | 2337 | 0 | { | 2338 | 0 | struct reloc_ext_external *rptr = (struct reloc_ext_external *) relocs; | 2339 | |
| 2340 | 0 | for (; counter < count; counter++, rptr++, cache_ptr++) | 2341 | 0 | MY_swap_ext_reloc_in (abfd, rptr, cache_ptr, symbols, | 2342 | 0 | (bfd_size_type) bfd_get_symcount (abfd)); | 2343 | 0 | } | 2344 | 34 | else | 2345 | 34 | { | 2346 | 34 | struct reloc_std_external *rptr = (struct reloc_std_external *) relocs; | 2347 | | | 2348 | 2.95k | for (; counter < count; counter++, rptr++, cache_ptr++) | 2349 | 2.92k | MY_swap_std_reloc_in (abfd, rptr, cache_ptr, symbols, | 2350 | 2.92k | (bfd_size_type) bfd_get_symcount (abfd)); | 2351 | 34 | } | 2352 | | | 2353 | 34 | free (relocs); | 2354 | | | 2355 | 34 | asect->relocation = reloc_cache; | 2356 | 34 | asect->reloc_count = cache_ptr - reloc_cache; | 2357 | | | 2358 | | return true; | 2359 | 34 | } |
|
2360 | | |
2361 | | /* Write out a relocation section into an object file. */ |
2362 | | |
2363 | | bool |
2364 | | NAME (aout, squirt_out_relocs) (bfd *abfd, asection *section) |
2365 | 243 | { |
2366 | 243 | arelent **generic; |
2367 | 243 | unsigned char *native, *natptr; |
2368 | 243 | size_t each_size; |
2369 | | |
2370 | 243 | unsigned int count = section->reloc_count; |
2371 | 243 | bfd_size_type natsize; |
2372 | | |
2373 | 243 | if (count == 0 || section->orelocation == NULL) |
2374 | 229 | return true; |
2375 | | |
2376 | 14 | each_size = obj_reloc_entry_size (abfd); |
2377 | 14 | natsize = (bfd_size_type) each_size * count; |
2378 | 14 | native = (unsigned char *) bfd_zalloc (abfd, natsize); |
2379 | 14 | if (!native) |
2380 | 0 | return false; |
2381 | | |
2382 | 14 | generic = section->orelocation; |
2383 | | |
2384 | 14 | if (each_size == RELOC_EXT_SIZE) |
2385 | 0 | { |
2386 | 0 | for (natptr = native; |
2387 | 0 | count != 0; |
2388 | 0 | --count, natptr += each_size, ++generic) |
2389 | 0 | { |
2390 | | /* PR 20921: If the howto field has not been initialised then skip |
2391 | | this reloc. |
2392 | | PR 20929: Similarly for the symbol field. */ |
2393 | 0 | if ((*generic)->howto == NULL |
2394 | 0 | || (*generic)->sym_ptr_ptr == NULL) |
2395 | 0 | { |
2396 | 0 | bfd_set_error (bfd_error_invalid_operation); |
2397 | 0 | _bfd_error_handler (_("%pB: attempt to write out " |
2398 | 0 | "unknown reloc type"), abfd); |
2399 | 0 | return false; |
2400 | 0 | } |
2401 | 0 | MY_swap_ext_reloc_out (abfd, *generic, |
2402 | 0 | (struct reloc_ext_external *) natptr); |
2403 | 0 | } |
2404 | 0 | } |
2405 | 14 | else |
2406 | 14 | { |
2407 | 14 | for (natptr = native; |
2408 | 40 | count != 0; |
2409 | 26 | --count, natptr += each_size, ++generic) |
2410 | 38 | { |
2411 | 38 | if ((*generic)->howto == NULL |
2412 | 26 | || (*generic)->sym_ptr_ptr == NULL) |
2413 | 12 | { |
2414 | 12 | bfd_set_error (bfd_error_invalid_operation); |
2415 | 12 | _bfd_error_handler (_("%pB: attempt to write out " |
2416 | 12 | "unknown reloc type"), abfd); |
2417 | 12 | return false; |
2418 | 12 | } |
2419 | 26 | MY_swap_std_reloc_out (abfd, *generic, |
2420 | 26 | (struct reloc_std_external *) natptr); |
2421 | 26 | } |
2422 | 14 | } |
2423 | | |
2424 | 2 | if (bfd_write (native, natsize, abfd) != natsize) |
2425 | 0 | { |
2426 | 0 | bfd_release (abfd, native); |
2427 | 0 | return false; |
2428 | 0 | } |
2429 | 2 | bfd_release (abfd, native); |
2430 | | |
2431 | 2 | return true; |
2432 | 2 | } Unexecuted instantiation: cris_aout_32_squirt_out_relocs ns32kaout_32_squirt_out_relocs Line | Count | Source | 2365 | 120 | { | 2366 | 120 | arelent **generic; | 2367 | 120 | unsigned char *native, *natptr; | 2368 | 120 | size_t each_size; | 2369 | | | 2370 | 120 | unsigned int count = section->reloc_count; | 2371 | 120 | bfd_size_type natsize; | 2372 | | | 2373 | 120 | if (count == 0 || section->orelocation == NULL) | 2374 | 115 | return true; | 2375 | | | 2376 | 5 | each_size = obj_reloc_entry_size (abfd); | 2377 | 5 | natsize = (bfd_size_type) each_size * count; | 2378 | 5 | native = (unsigned char *) bfd_zalloc (abfd, natsize); | 2379 | 5 | if (!native) | 2380 | 0 | return false; | 2381 | | | 2382 | 5 | generic = section->orelocation; | 2383 | | | 2384 | 5 | if (each_size == RELOC_EXT_SIZE) | 2385 | 0 | { | 2386 | 0 | for (natptr = native; | 2387 | 0 | count != 0; | 2388 | 0 | --count, natptr += each_size, ++generic) | 2389 | 0 | { | 2390 | | /* PR 20921: If the howto field has not been initialised then skip | 2391 | | this reloc. | 2392 | | PR 20929: Similarly for the symbol field. */ | 2393 | 0 | if ((*generic)->howto == NULL | 2394 | 0 | || (*generic)->sym_ptr_ptr == NULL) | 2395 | 0 | { | 2396 | 0 | bfd_set_error (bfd_error_invalid_operation); | 2397 | 0 | _bfd_error_handler (_("%pB: attempt to write out " | 2398 | 0 | "unknown reloc type"), abfd); | 2399 | 0 | return false; | 2400 | 0 | } | 2401 | 0 | MY_swap_ext_reloc_out (abfd, *generic, | 2402 | 0 | (struct reloc_ext_external *) natptr); | 2403 | 0 | } | 2404 | 0 | } | 2405 | 5 | else | 2406 | 5 | { | 2407 | 5 | for (natptr = native; | 2408 | 11 | count != 0; | 2409 | 6 | --count, natptr += each_size, ++generic) | 2410 | 10 | { | 2411 | 10 | if ((*generic)->howto == NULL | 2412 | 6 | || (*generic)->sym_ptr_ptr == NULL) | 2413 | 4 | { | 2414 | 4 | bfd_set_error (bfd_error_invalid_operation); | 2415 | 4 | _bfd_error_handler (_("%pB: attempt to write out " | 2416 | 4 | "unknown reloc type"), abfd); | 2417 | 4 | return false; | 2418 | 4 | } | 2419 | 6 | MY_swap_std_reloc_out (abfd, *generic, | 2420 | 6 | (struct reloc_std_external *) natptr); | 2421 | 6 | } | 2422 | 5 | } | 2423 | | | 2424 | 1 | if (bfd_write (native, natsize, abfd) != natsize) | 2425 | 0 | { | 2426 | 0 | bfd_release (abfd, native); | 2427 | 0 | return false; | 2428 | 0 | } | 2429 | 1 | bfd_release (abfd, native); | 2430 | | | 2431 | | return true; | 2432 | 1 | } |
aout_32_squirt_out_relocs Line | Count | Source | 2365 | 123 | { | 2366 | 123 | arelent **generic; | 2367 | 123 | unsigned char *native, *natptr; | 2368 | 123 | size_t each_size; | 2369 | | | 2370 | 123 | unsigned int count = section->reloc_count; | 2371 | 123 | bfd_size_type natsize; | 2372 | | | 2373 | 123 | if (count == 0 || section->orelocation == NULL) | 2374 | 114 | return true; | 2375 | | | 2376 | 9 | each_size = obj_reloc_entry_size (abfd); | 2377 | 9 | natsize = (bfd_size_type) each_size * count; | 2378 | 9 | native = (unsigned char *) bfd_zalloc (abfd, natsize); | 2379 | 9 | if (!native) | 2380 | 0 | return false; | 2381 | | | 2382 | 9 | generic = section->orelocation; | 2383 | | | 2384 | 9 | if (each_size == RELOC_EXT_SIZE) | 2385 | 0 | { | 2386 | 0 | for (natptr = native; | 2387 | 0 | count != 0; | 2388 | 0 | --count, natptr += each_size, ++generic) | 2389 | 0 | { | 2390 | | /* PR 20921: If the howto field has not been initialised then skip | 2391 | | this reloc. | 2392 | | PR 20929: Similarly for the symbol field. */ | 2393 | 0 | if ((*generic)->howto == NULL | 2394 | 0 | || (*generic)->sym_ptr_ptr == NULL) | 2395 | 0 | { | 2396 | 0 | bfd_set_error (bfd_error_invalid_operation); | 2397 | 0 | _bfd_error_handler (_("%pB: attempt to write out " | 2398 | 0 | "unknown reloc type"), abfd); | 2399 | 0 | return false; | 2400 | 0 | } | 2401 | 0 | MY_swap_ext_reloc_out (abfd, *generic, | 2402 | 0 | (struct reloc_ext_external *) natptr); | 2403 | 0 | } | 2404 | 0 | } | 2405 | 9 | else | 2406 | 9 | { | 2407 | 9 | for (natptr = native; | 2408 | 29 | count != 0; | 2409 | 20 | --count, natptr += each_size, ++generic) | 2410 | 28 | { | 2411 | 28 | if ((*generic)->howto == NULL | 2412 | 20 | || (*generic)->sym_ptr_ptr == NULL) | 2413 | 8 | { | 2414 | 8 | bfd_set_error (bfd_error_invalid_operation); | 2415 | 8 | _bfd_error_handler (_("%pB: attempt to write out " | 2416 | 8 | "unknown reloc type"), abfd); | 2417 | 8 | return false; | 2418 | 8 | } | 2419 | 20 | MY_swap_std_reloc_out (abfd, *generic, | 2420 | 20 | (struct reloc_std_external *) natptr); | 2421 | 20 | } | 2422 | 9 | } | 2423 | | | 2424 | 1 | if (bfd_write (native, natsize, abfd) != natsize) | 2425 | 0 | { | 2426 | 0 | bfd_release (abfd, native); | 2427 | 0 | return false; | 2428 | 0 | } | 2429 | 1 | bfd_release (abfd, native); | 2430 | | | 2431 | | return true; | 2432 | 1 | } |
|
2433 | | |
2434 | | /* This is stupid. This function should be a boolean predicate. */ |
2435 | | |
2436 | | long |
2437 | | NAME (aout, canonicalize_reloc) (bfd *abfd, |
2438 | | sec_ptr section, |
2439 | | arelent **relptr, |
2440 | | asymbol **symbols) |
2441 | 155 | { |
2442 | 155 | arelent *tblptr = section->relocation; |
2443 | 155 | unsigned int count; |
2444 | | |
2445 | 155 | if (section == obj_bsssec (abfd)) |
2446 | 69 | { |
2447 | 69 | *relptr = NULL; |
2448 | 69 | return 0; |
2449 | 69 | } |
2450 | | |
2451 | 86 | if (!(tblptr || NAME (aout, slurp_reloc_table) (abfd, section, symbols))) |
2452 | 1 | return -1; |
2453 | | |
2454 | 85 | if (section->flags & SEC_CONSTRUCTOR) |
2455 | 0 | { |
2456 | 0 | arelent_chain *chain = section->constructor_chain; |
2457 | 0 | for (count = 0; count < section->reloc_count; count ++) |
2458 | 0 | { |
2459 | 0 | *relptr ++ = &chain->relent; |
2460 | 0 | chain = chain->next; |
2461 | 0 | } |
2462 | 0 | } |
2463 | 85 | else |
2464 | 85 | { |
2465 | 85 | tblptr = section->relocation; |
2466 | | |
2467 | 3.41k | for (count = 0; count++ < section->reloc_count; ) |
2468 | 3.32k | { |
2469 | 3.32k | *relptr++ = tblptr++; |
2470 | 3.32k | } |
2471 | 85 | } |
2472 | 85 | *relptr = 0; |
2473 | | |
2474 | 85 | return section->reloc_count; |
2475 | 86 | } Unexecuted instantiation: cris_aout_32_canonicalize_reloc ns32kaout_32_canonicalize_reloc Line | Count | Source | 2441 | 67 | { | 2442 | 67 | arelent *tblptr = section->relocation; | 2443 | 67 | unsigned int count; | 2444 | | | 2445 | 67 | if (section == obj_bsssec (abfd)) | 2446 | 31 | { | 2447 | 31 | *relptr = NULL; | 2448 | 31 | return 0; | 2449 | 31 | } | 2450 | | | 2451 | 36 | if (!(tblptr || NAME (aout, slurp_reloc_table) (abfd, section, symbols))) | 2452 | 1 | return -1; | 2453 | | | 2454 | 35 | if (section->flags & SEC_CONSTRUCTOR) | 2455 | 0 | { | 2456 | 0 | arelent_chain *chain = section->constructor_chain; | 2457 | 0 | for (count = 0; count < section->reloc_count; count ++) | 2458 | 0 | { | 2459 | 0 | *relptr ++ = &chain->relent; | 2460 | 0 | chain = chain->next; | 2461 | 0 | } | 2462 | 0 | } | 2463 | 35 | else | 2464 | 35 | { | 2465 | 35 | tblptr = section->relocation; | 2466 | | | 2467 | 443 | for (count = 0; count++ < section->reloc_count; ) | 2468 | 408 | { | 2469 | 408 | *relptr++ = tblptr++; | 2470 | 408 | } | 2471 | 35 | } | 2472 | 35 | *relptr = 0; | 2473 | | | 2474 | 35 | return section->reloc_count; | 2475 | 36 | } |
aout_32_canonicalize_reloc Line | Count | Source | 2441 | 88 | { | 2442 | 88 | arelent *tblptr = section->relocation; | 2443 | 88 | unsigned int count; | 2444 | | | 2445 | 88 | if (section == obj_bsssec (abfd)) | 2446 | 38 | { | 2447 | 38 | *relptr = NULL; | 2448 | 38 | return 0; | 2449 | 38 | } | 2450 | | | 2451 | 50 | if (!(tblptr || NAME (aout, slurp_reloc_table) (abfd, section, symbols))) | 2452 | 0 | return -1; | 2453 | | | 2454 | 50 | if (section->flags & SEC_CONSTRUCTOR) | 2455 | 0 | { | 2456 | 0 | arelent_chain *chain = section->constructor_chain; | 2457 | 0 | for (count = 0; count < section->reloc_count; count ++) | 2458 | 0 | { | 2459 | 0 | *relptr ++ = &chain->relent; | 2460 | 0 | chain = chain->next; | 2461 | 0 | } | 2462 | 0 | } | 2463 | 50 | else | 2464 | 50 | { | 2465 | 50 | tblptr = section->relocation; | 2466 | | | 2467 | 2.97k | for (count = 0; count++ < section->reloc_count; ) | 2468 | 2.92k | { | 2469 | 2.92k | *relptr++ = tblptr++; | 2470 | 2.92k | } | 2471 | 50 | } | 2472 | 50 | *relptr = 0; | 2473 | | | 2474 | 50 | return section->reloc_count; | 2475 | 50 | } |
|
2476 | | |
2477 | | long |
2478 | | NAME (aout, get_reloc_upper_bound) (bfd *abfd, sec_ptr asect) |
2479 | 207 | { |
2480 | 207 | size_t count, raw; |
2481 | | |
2482 | 207 | if (asect->flags & SEC_CONSTRUCTOR) |
2483 | 0 | count = asect->reloc_count; |
2484 | 207 | else if (asect == obj_datasec (abfd)) |
2485 | 37 | count = exec_hdr (abfd)->a_drsize / obj_reloc_entry_size (abfd); |
2486 | 170 | else if (asect == obj_textsec (abfd)) |
2487 | 101 | count = exec_hdr (abfd)->a_trsize / obj_reloc_entry_size (abfd); |
2488 | 69 | else if (asect == obj_bsssec (abfd)) |
2489 | 69 | count = 0; |
2490 | 0 | else |
2491 | 0 | { |
2492 | 0 | bfd_set_error (bfd_error_invalid_operation); |
2493 | 0 | return -1; |
2494 | 0 | } |
2495 | | |
2496 | 207 | if (count >= LONG_MAX / sizeof (arelent *) |
2497 | 207 | || _bfd_mul_overflow (count, obj_reloc_entry_size (abfd), &raw)) |
2498 | 0 | { |
2499 | 0 | bfd_set_error (bfd_error_file_too_big); |
2500 | 0 | return -1; |
2501 | 0 | } |
2502 | 207 | if (!bfd_write_p (abfd)) |
2503 | 207 | { |
2504 | 207 | ufile_ptr filesize = bfd_get_file_size (abfd); |
2505 | 207 | if (filesize != 0 && raw > filesize) |
2506 | 52 | { |
2507 | 52 | bfd_set_error (bfd_error_file_truncated); |
2508 | 52 | return -1; |
2509 | 52 | } |
2510 | 207 | } |
2511 | 155 | return (count + 1) * sizeof (arelent *); |
2512 | 207 | } Unexecuted instantiation: cris_aout_32_get_reloc_upper_bound ns32kaout_32_get_reloc_upper_bound Line | Count | Source | 2479 | 110 | { | 2480 | 110 | size_t count, raw; | 2481 | | | 2482 | 110 | if (asect->flags & SEC_CONSTRUCTOR) | 2483 | 0 | count = asect->reloc_count; | 2484 | 110 | else if (asect == obj_datasec (abfd)) | 2485 | 30 | count = exec_hdr (abfd)->a_drsize / obj_reloc_entry_size (abfd); | 2486 | 80 | else if (asect == obj_textsec (abfd)) | 2487 | 49 | count = exec_hdr (abfd)->a_trsize / obj_reloc_entry_size (abfd); | 2488 | 31 | else if (asect == obj_bsssec (abfd)) | 2489 | 31 | count = 0; | 2490 | 0 | else | 2491 | 0 | { | 2492 | 0 | bfd_set_error (bfd_error_invalid_operation); | 2493 | 0 | return -1; | 2494 | 0 | } | 2495 | | | 2496 | 110 | if (count >= LONG_MAX / sizeof (arelent *) | 2497 | 110 | || _bfd_mul_overflow (count, obj_reloc_entry_size (abfd), &raw)) | 2498 | 0 | { | 2499 | 0 | bfd_set_error (bfd_error_file_too_big); | 2500 | 0 | return -1; | 2501 | 0 | } | 2502 | 110 | if (!bfd_write_p (abfd)) | 2503 | 110 | { | 2504 | 110 | ufile_ptr filesize = bfd_get_file_size (abfd); | 2505 | 110 | if (filesize != 0 && raw > filesize) | 2506 | 43 | { | 2507 | 43 | bfd_set_error (bfd_error_file_truncated); | 2508 | 43 | return -1; | 2509 | 43 | } | 2510 | 110 | } | 2511 | 67 | return (count + 1) * sizeof (arelent *); | 2512 | 110 | } |
aout_32_get_reloc_upper_bound Line | Count | Source | 2479 | 97 | { | 2480 | 97 | size_t count, raw; | 2481 | | | 2482 | 97 | if (asect->flags & SEC_CONSTRUCTOR) | 2483 | 0 | count = asect->reloc_count; | 2484 | 97 | else if (asect == obj_datasec (abfd)) | 2485 | 7 | count = exec_hdr (abfd)->a_drsize / obj_reloc_entry_size (abfd); | 2486 | 90 | else if (asect == obj_textsec (abfd)) | 2487 | 52 | count = exec_hdr (abfd)->a_trsize / obj_reloc_entry_size (abfd); | 2488 | 38 | else if (asect == obj_bsssec (abfd)) | 2489 | 38 | count = 0; | 2490 | 0 | else | 2491 | 0 | { | 2492 | 0 | bfd_set_error (bfd_error_invalid_operation); | 2493 | 0 | return -1; | 2494 | 0 | } | 2495 | | | 2496 | 97 | if (count >= LONG_MAX / sizeof (arelent *) | 2497 | 97 | || _bfd_mul_overflow (count, obj_reloc_entry_size (abfd), &raw)) | 2498 | 0 | { | 2499 | 0 | bfd_set_error (bfd_error_file_too_big); | 2500 | 0 | return -1; | 2501 | 0 | } | 2502 | 97 | if (!bfd_write_p (abfd)) | 2503 | 97 | { | 2504 | 97 | ufile_ptr filesize = bfd_get_file_size (abfd); | 2505 | 97 | if (filesize != 0 && raw > filesize) | 2506 | 9 | { | 2507 | 9 | bfd_set_error (bfd_error_file_truncated); | 2508 | 9 | return -1; | 2509 | 9 | } | 2510 | 97 | } | 2511 | 88 | return (count + 1) * sizeof (arelent *); | 2512 | 97 | } |
|
2513 | | |
2514 | | long |
2515 | | NAME (aout, get_symtab_upper_bound) (bfd *abfd) |
2516 | 482 | { |
2517 | 482 | if (!NAME (aout, slurp_symbol_table) (abfd)) |
2518 | 247 | return -1; |
2519 | | |
2520 | 235 | return (bfd_get_symcount (abfd)+1) * (sizeof (aout_symbol_type *)); |
2521 | 482 | } Unexecuted instantiation: cris_aout_32_get_symtab_upper_bound ns32kaout_32_get_symtab_upper_bound Line | Count | Source | 2516 | 250 | { | 2517 | 250 | if (!NAME (aout, slurp_symbol_table) (abfd)) | 2518 | 142 | return -1; | 2519 | | | 2520 | 108 | return (bfd_get_symcount (abfd)+1) * (sizeof (aout_symbol_type *)); | 2521 | 250 | } |
aout_32_get_symtab_upper_bound Line | Count | Source | 2516 | 232 | { | 2517 | 232 | if (!NAME (aout, slurp_symbol_table) (abfd)) | 2518 | 105 | return -1; | 2519 | | | 2520 | 127 | return (bfd_get_symcount (abfd)+1) * (sizeof (aout_symbol_type *)); | 2521 | 232 | } |
|
2522 | | |
2523 | | alent * |
2524 | | NAME (aout, get_lineno) (bfd *ignore_abfd ATTRIBUTE_UNUSED, |
2525 | | asymbol *ignore_symbol ATTRIBUTE_UNUSED) |
2526 | 0 | { |
2527 | 0 | return NULL; |
2528 | 0 | } Unexecuted instantiation: cris_aout_32_get_lineno Unexecuted instantiation: ns32kaout_32_get_lineno Unexecuted instantiation: aout_32_get_lineno |
2529 | | |
2530 | | void |
2531 | | NAME (aout, get_symbol_info) (bfd *ignore_abfd ATTRIBUTE_UNUSED, |
2532 | | asymbol *symbol, |
2533 | | symbol_info *ret) |
2534 | 821 | { |
2535 | 821 | bfd_symbol_info (symbol, ret); |
2536 | | |
2537 | 821 | if (ret->type == '?') |
2538 | 151 | { |
2539 | 151 | int type_code = aout_symbol (symbol)->type & 0xff; |
2540 | 151 | const char *stab_name = bfd_get_stab_name (type_code); |
2541 | 151 | static char buf[10]; |
2542 | | |
2543 | 151 | if (stab_name == NULL) |
2544 | 91 | { |
2545 | 91 | sprintf (buf, "(%d)", type_code); |
2546 | 91 | stab_name = buf; |
2547 | 91 | } |
2548 | 151 | ret->type = '-'; |
2549 | 151 | ret->stab_type = type_code; |
2550 | 151 | ret->stab_other = (unsigned) (aout_symbol (symbol)->other & 0xff); |
2551 | 151 | ret->stab_desc = (unsigned) (aout_symbol (symbol)->desc & 0xffff); |
2552 | 151 | ret->stab_name = stab_name; |
2553 | 151 | } |
2554 | 821 | } Unexecuted instantiation: cris_aout_32_get_symbol_info ns32kaout_32_get_symbol_info Line | Count | Source | 2534 | 380 | { | 2535 | 380 | bfd_symbol_info (symbol, ret); | 2536 | | | 2537 | 380 | if (ret->type == '?') | 2538 | 56 | { | 2539 | 56 | int type_code = aout_symbol (symbol)->type & 0xff; | 2540 | 56 | const char *stab_name = bfd_get_stab_name (type_code); | 2541 | 56 | static char buf[10]; | 2542 | | | 2543 | 56 | if (stab_name == NULL) | 2544 | 26 | { | 2545 | 26 | sprintf (buf, "(%d)", type_code); | 2546 | 26 | stab_name = buf; | 2547 | 26 | } | 2548 | 56 | ret->type = '-'; | 2549 | 56 | ret->stab_type = type_code; | 2550 | 56 | ret->stab_other = (unsigned) (aout_symbol (symbol)->other & 0xff); | 2551 | 56 | ret->stab_desc = (unsigned) (aout_symbol (symbol)->desc & 0xffff); | 2552 | 56 | ret->stab_name = stab_name; | 2553 | 56 | } | 2554 | 380 | } |
Line | Count | Source | 2534 | 441 | { | 2535 | 441 | bfd_symbol_info (symbol, ret); | 2536 | | | 2537 | 441 | if (ret->type == '?') | 2538 | 95 | { | 2539 | 95 | int type_code = aout_symbol (symbol)->type & 0xff; | 2540 | 95 | const char *stab_name = bfd_get_stab_name (type_code); | 2541 | 95 | static char buf[10]; | 2542 | | | 2543 | 95 | if (stab_name == NULL) | 2544 | 65 | { | 2545 | 65 | sprintf (buf, "(%d)", type_code); | 2546 | 65 | stab_name = buf; | 2547 | 65 | } | 2548 | 95 | ret->type = '-'; | 2549 | 95 | ret->stab_type = type_code; | 2550 | 95 | ret->stab_other = (unsigned) (aout_symbol (symbol)->other & 0xff); | 2551 | 95 | ret->stab_desc = (unsigned) (aout_symbol (symbol)->desc & 0xffff); | 2552 | 95 | ret->stab_name = stab_name; | 2553 | 95 | } | 2554 | 441 | } |
|
2555 | | |
2556 | | void |
2557 | | NAME (aout, print_symbol) (bfd *abfd, |
2558 | | void * afile, |
2559 | | asymbol *symbol, |
2560 | | bfd_print_symbol_type how) |
2561 | 0 | { |
2562 | 0 | FILE *file = (FILE *)afile; |
2563 | |
|
2564 | 0 | switch (how) |
2565 | 0 | { |
2566 | 0 | case bfd_print_symbol_name: |
2567 | 0 | if (symbol->name) |
2568 | 0 | fprintf (file,"%s", symbol->name); |
2569 | 0 | break; |
2570 | 0 | case bfd_print_symbol_more: |
2571 | 0 | fprintf (file,"%4x %2x %2x", |
2572 | 0 | (unsigned) (aout_symbol (symbol)->desc & 0xffff), |
2573 | 0 | (unsigned) (aout_symbol (symbol)->other & 0xff), |
2574 | 0 | (unsigned) (aout_symbol (symbol)->type)); |
2575 | 0 | break; |
2576 | 0 | case bfd_print_symbol_all: |
2577 | 0 | { |
2578 | 0 | const char *section_name = symbol->section->name; |
2579 | |
|
2580 | 0 | bfd_print_symbol_vandf (abfd, (void *)file, symbol); |
2581 | |
|
2582 | 0 | fprintf (file," %-5s %04x %02x %02x", |
2583 | 0 | section_name, |
2584 | 0 | (unsigned) (aout_symbol (symbol)->desc & 0xffff), |
2585 | 0 | (unsigned) (aout_symbol (symbol)->other & 0xff), |
2586 | 0 | (unsigned) (aout_symbol (symbol)->type & 0xff)); |
2587 | 0 | if (symbol->name) |
2588 | 0 | fprintf (file," %s", symbol->name); |
2589 | 0 | } |
2590 | 0 | break; |
2591 | 0 | } |
2592 | 0 | } Unexecuted instantiation: cris_aout_32_print_symbol Unexecuted instantiation: ns32kaout_32_print_symbol Unexecuted instantiation: aout_32_print_symbol |
2593 | | |
2594 | | /* If we don't have to allocate more than 1MB to hold the generic |
2595 | | symbols, we use the generic minisymbol methord: it's faster, since |
2596 | | it only translates the symbols once, not multiple times. */ |
2597 | 4.98k | #define MINISYM_THRESHOLD (1000000 / sizeof (asymbol)) |
2598 | | |
2599 | | /* Read minisymbols. For minisymbols, we use the unmodified a.out |
2600 | | symbols. The minisymbol_to_symbol function translates these into |
2601 | | BFD asymbol structures. */ |
2602 | | |
2603 | | long |
2604 | | NAME (aout, read_minisymbols) (bfd *abfd, |
2605 | | bool dynamic, |
2606 | | void * *minisymsp, |
2607 | | unsigned int *sizep) |
2608 | 48 | { |
2609 | 48 | BFD_ASSERT (bfd_get_flavour (abfd) == bfd_target_aout_flavour); |
2610 | | |
2611 | 48 | if (dynamic) |
2612 | | /* We could handle the dynamic symbols here as well, but it's |
2613 | | easier to hand them off. */ |
2614 | 0 | return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep); |
2615 | | |
2616 | 48 | if (! aout_get_external_symbols (abfd)) |
2617 | 3 | return -1; |
2618 | | |
2619 | 45 | if (obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD) |
2620 | 45 | return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep); |
2621 | | |
2622 | 0 | *minisymsp = (void *) obj_aout_external_syms (abfd); |
2623 | | |
2624 | | /* By passing the external symbols back from this routine, we are |
2625 | | giving up control over the memory block. Clear |
2626 | | obj_aout_external_syms, so that we do not try to free it |
2627 | | ourselves. */ |
2628 | 0 | obj_aout_external_syms (abfd) = NULL; |
2629 | |
|
2630 | 0 | *sizep = EXTERNAL_NLIST_SIZE; |
2631 | 0 | return obj_aout_external_sym_count (abfd); |
2632 | 45 | } Unexecuted instantiation: cris_aout_32_read_minisymbols ns32kaout_32_read_minisymbols Line | Count | Source | 2608 | 20 | { | 2609 | 20 | BFD_ASSERT (bfd_get_flavour (abfd) == bfd_target_aout_flavour); | 2610 | | | 2611 | 20 | if (dynamic) | 2612 | | /* We could handle the dynamic symbols here as well, but it's | 2613 | | easier to hand them off. */ | 2614 | 0 | return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep); | 2615 | | | 2616 | 20 | if (! aout_get_external_symbols (abfd)) | 2617 | 3 | return -1; | 2618 | | | 2619 | 17 | if (obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD) | 2620 | 17 | return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep); | 2621 | | | 2622 | 0 | *minisymsp = (void *) obj_aout_external_syms (abfd); | 2623 | | | 2624 | | /* By passing the external symbols back from this routine, we are | 2625 | | giving up control over the memory block. Clear | 2626 | | obj_aout_external_syms, so that we do not try to free it | 2627 | | ourselves. */ | 2628 | 0 | obj_aout_external_syms (abfd) = NULL; | 2629 | |
| 2630 | 0 | *sizep = EXTERNAL_NLIST_SIZE; | 2631 | 0 | return obj_aout_external_sym_count (abfd); | 2632 | 17 | } |
Line | Count | Source | 2608 | 28 | { | 2609 | 28 | BFD_ASSERT (bfd_get_flavour (abfd) == bfd_target_aout_flavour); | 2610 | | | 2611 | 28 | if (dynamic) | 2612 | | /* We could handle the dynamic symbols here as well, but it's | 2613 | | easier to hand them off. */ | 2614 | 0 | return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep); | 2615 | | | 2616 | 28 | if (! aout_get_external_symbols (abfd)) | 2617 | 0 | return -1; | 2618 | | | 2619 | 28 | if (obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD) | 2620 | 28 | return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep); | 2621 | | | 2622 | 0 | *minisymsp = (void *) obj_aout_external_syms (abfd); | 2623 | | | 2624 | | /* By passing the external symbols back from this routine, we are | 2625 | | giving up control over the memory block. Clear | 2626 | | obj_aout_external_syms, so that we do not try to free it | 2627 | | ourselves. */ | 2628 | 0 | obj_aout_external_syms (abfd) = NULL; | 2629 | |
| 2630 | 0 | *sizep = EXTERNAL_NLIST_SIZE; | 2631 | 0 | return obj_aout_external_sym_count (abfd); | 2632 | 28 | } |
|
2633 | | |
2634 | | /* Convert a minisymbol to a BFD asymbol. A minisymbol is just an |
2635 | | unmodified a.out symbol. The SYM argument is a structure returned |
2636 | | by bfd_make_empty_symbol, which we fill in here. */ |
2637 | | |
2638 | | asymbol * |
2639 | | NAME (aout, minisymbol_to_symbol) (bfd *abfd, |
2640 | | bool dynamic, |
2641 | | const void * minisym, |
2642 | | asymbol *sym) |
2643 | 4.93k | { |
2644 | 4.93k | if (dynamic |
2645 | 4.93k | || obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD) |
2646 | 4.93k | return _bfd_generic_minisymbol_to_symbol (abfd, dynamic, minisym, sym); |
2647 | | |
2648 | 0 | memset (sym, 0, sizeof (aout_symbol_type)); |
2649 | | |
2650 | | /* We call translate_symbol_table to translate a single symbol. */ |
2651 | 0 | if (! (NAME (aout, translate_symbol_table) |
2652 | 0 | (abfd, |
2653 | 0 | (aout_symbol_type *) sym, |
2654 | 0 | (struct external_nlist *) minisym, |
2655 | 0 | (bfd_size_type) 1, |
2656 | 0 | obj_aout_external_strings (abfd), |
2657 | 0 | obj_aout_external_string_size (abfd), |
2658 | 0 | false))) |
2659 | 0 | return NULL; |
2660 | | |
2661 | 0 | return sym; |
2662 | 0 | } Unexecuted instantiation: cris_aout_32_minisymbol_to_symbol ns32kaout_32_minisymbol_to_symbol Line | Count | Source | 2643 | 1.99k | { | 2644 | 1.99k | if (dynamic | 2645 | 1.99k | || obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD) | 2646 | 1.99k | return _bfd_generic_minisymbol_to_symbol (abfd, dynamic, minisym, sym); | 2647 | | | 2648 | 0 | memset (sym, 0, sizeof (aout_symbol_type)); | 2649 | | | 2650 | | /* We call translate_symbol_table to translate a single symbol. */ | 2651 | 0 | if (! (NAME (aout, translate_symbol_table) | 2652 | 0 | (abfd, | 2653 | 0 | (aout_symbol_type *) sym, | 2654 | 0 | (struct external_nlist *) minisym, | 2655 | 0 | (bfd_size_type) 1, | 2656 | 0 | obj_aout_external_strings (abfd), | 2657 | 0 | obj_aout_external_string_size (abfd), | 2658 | 0 | false))) | 2659 | 0 | return NULL; | 2660 | | | 2661 | 0 | return sym; | 2662 | 0 | } |
aout_32_minisymbol_to_symbol Line | Count | Source | 2643 | 2.94k | { | 2644 | 2.94k | if (dynamic | 2645 | 2.94k | || obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD) | 2646 | 2.94k | return _bfd_generic_minisymbol_to_symbol (abfd, dynamic, minisym, sym); | 2647 | | | 2648 | 0 | memset (sym, 0, sizeof (aout_symbol_type)); | 2649 | | | 2650 | | /* We call translate_symbol_table to translate a single symbol. */ | 2651 | 0 | if (! (NAME (aout, translate_symbol_table) | 2652 | 0 | (abfd, | 2653 | 0 | (aout_symbol_type *) sym, | 2654 | 0 | (struct external_nlist *) minisym, | 2655 | 0 | (bfd_size_type) 1, | 2656 | 0 | obj_aout_external_strings (abfd), | 2657 | 0 | obj_aout_external_string_size (abfd), | 2658 | 0 | false))) | 2659 | 0 | return NULL; | 2660 | | | 2661 | 0 | return sym; | 2662 | 0 | } |
|
2663 | | |
2664 | | /* Provided a BFD, a section and an offset into the section, calculate |
2665 | | and return the name of the source file and the line nearest to the |
2666 | | wanted location. */ |
2667 | | |
2668 | | bool |
2669 | | NAME (aout, find_nearest_line) (bfd *abfd, |
2670 | | asymbol **symbols, |
2671 | | asection *section, |
2672 | | bfd_vma offset, |
2673 | | const char **filename_ptr, |
2674 | | const char **functionname_ptr, |
2675 | | unsigned int *line_ptr, |
2676 | | unsigned int *disriminator_ptr) |
2677 | 216 | { |
2678 | | /* Run down the file looking for the filename, function and linenumber. */ |
2679 | 216 | asymbol **p; |
2680 | 216 | const char *directory_name = NULL; |
2681 | 216 | const char *main_file_name = NULL; |
2682 | 216 | const char *current_file_name = NULL; |
2683 | 216 | const char *line_file_name = NULL; /* Value of current_file_name at line number. */ |
2684 | 216 | const char *line_directory_name = NULL; /* Value of directory_name at line number. */ |
2685 | 216 | bfd_vma low_line_vma = 0; |
2686 | 216 | bfd_vma low_func_vma = 0; |
2687 | 216 | asymbol *func = 0; |
2688 | 216 | bfd_size_type filelen, funclen; |
2689 | 216 | char *buf; |
2690 | | |
2691 | 216 | *filename_ptr = bfd_get_filename (abfd); |
2692 | 216 | *functionname_ptr = NULL; |
2693 | 216 | *line_ptr = 0; |
2694 | 216 | if (disriminator_ptr) |
2695 | 71 | *disriminator_ptr = 0; |
2696 | | |
2697 | 216 | if (symbols != NULL) |
2698 | 170 | { |
2699 | 4.50k | for (p = symbols; *p; p++) |
2700 | 4.44k | { |
2701 | 4.44k | aout_symbol_type *q = (aout_symbol_type *) (*p); |
2702 | 4.69k | next: |
2703 | 4.69k | switch (q->type) |
2704 | 4.69k | { |
2705 | 170 | case N_TEXT: |
2706 | | /* If this looks like a file name symbol, and it comes after |
2707 | | the line number we have found so far, but before the |
2708 | | offset, then we have probably not found the right line |
2709 | | number. */ |
2710 | 170 | if (q->symbol.value <= offset |
2711 | 135 | && ((q->symbol.value > low_line_vma |
2712 | 108 | && (line_file_name != NULL |
2713 | 83 | || *line_ptr != 0)) |
2714 | 102 | || (q->symbol.value > low_func_vma |
2715 | 75 | && func != NULL))) |
2716 | 82 | { |
2717 | 82 | const char *symname; |
2718 | | |
2719 | 82 | symname = q->symbol.name; |
2720 | | |
2721 | 82 | if (symname != NULL |
2722 | 82 | && strlen (symname) > 2 |
2723 | 46 | && strcmp (symname + strlen (symname) - 2, ".o") == 0) |
2724 | 0 | { |
2725 | 0 | if (q->symbol.value > low_line_vma) |
2726 | 0 | { |
2727 | 0 | *line_ptr = 0; |
2728 | 0 | line_file_name = NULL; |
2729 | 0 | } |
2730 | 0 | if (q->symbol.value > low_func_vma) |
2731 | 0 | func = NULL; |
2732 | 0 | } |
2733 | 82 | } |
2734 | 170 | break; |
2735 | | |
2736 | 327 | case N_SO: |
2737 | | /* If this symbol is less than the offset, but greater than |
2738 | | the line number we have found so far, then we have not |
2739 | | found the right line number. */ |
2740 | 327 | if (q->symbol.value <= offset) |
2741 | 232 | { |
2742 | 232 | if (q->symbol.value > low_line_vma) |
2743 | 182 | { |
2744 | 182 | *line_ptr = 0; |
2745 | 182 | line_file_name = NULL; |
2746 | 182 | } |
2747 | 232 | if (q->symbol.value > low_func_vma) |
2748 | 178 | func = NULL; |
2749 | 232 | } |
2750 | | |
2751 | 327 | main_file_name = current_file_name = q->symbol.name; |
2752 | | /* Look ahead to next symbol to check if that too is an N_SO. */ |
2753 | 327 | p++; |
2754 | 327 | if (*p == NULL) |
2755 | 80 | goto done; |
2756 | 247 | q = (aout_symbol_type *) (*p); |
2757 | 247 | if (q->type != (int)N_SO) |
2758 | 244 | goto next; |
2759 | | |
2760 | | /* Found a second N_SO First is directory; second is filename. */ |
2761 | 3 | directory_name = current_file_name; |
2762 | 3 | main_file_name = current_file_name = q->symbol.name; |
2763 | 3 | if (obj_textsec (abfd) != section) |
2764 | 3 | goto done; |
2765 | 0 | break; |
2766 | 29 | case N_SOL: |
2767 | 29 | current_file_name = q->symbol.name; |
2768 | 29 | break; |
2769 | | |
2770 | 103 | case N_SLINE: |
2771 | | |
2772 | 142 | case N_DSLINE: |
2773 | 180 | case N_BSLINE: |
2774 | | /* We'll keep this if it resolves nearer than the one we have |
2775 | | already. */ |
2776 | 180 | if (q->symbol.value >= low_line_vma |
2777 | 153 | && q->symbol.value <= offset) |
2778 | 94 | { |
2779 | 94 | *line_ptr = q->desc; |
2780 | 94 | low_line_vma = q->symbol.value; |
2781 | 94 | line_file_name = current_file_name; |
2782 | 94 | line_directory_name = directory_name; |
2783 | 94 | } |
2784 | 180 | break; |
2785 | 157 | case N_FUN: |
2786 | 157 | { |
2787 | | /* We'll keep this if it is nearer than the one we have already. */ |
2788 | 157 | if (q->symbol.value >= low_func_vma |
2789 | 133 | && q->symbol.value <= offset) |
2790 | 104 | { |
2791 | 104 | low_func_vma = q->symbol.value; |
2792 | 104 | func = (asymbol *)q; |
2793 | 104 | } |
2794 | 53 | else if (q->symbol.value > offset) |
2795 | 29 | goto done; |
2796 | 157 | } |
2797 | 128 | break; |
2798 | 4.69k | } |
2799 | 4.69k | } |
2800 | 170 | } |
2801 | | |
2802 | 216 | done: |
2803 | 216 | if (*line_ptr != 0) |
2804 | 41 | { |
2805 | 41 | main_file_name = line_file_name; |
2806 | 41 | directory_name = line_directory_name; |
2807 | 41 | } |
2808 | | |
2809 | 216 | if (main_file_name == NULL |
2810 | 216 | || IS_ABSOLUTE_PATH (main_file_name) |
2811 | 98 | || directory_name == NULL) |
2812 | 213 | filelen = 0; |
2813 | 3 | else |
2814 | 3 | filelen = strlen (directory_name) + strlen (main_file_name); |
2815 | | |
2816 | 216 | if (func == NULL) |
2817 | 150 | funclen = 0; |
2818 | 66 | else |
2819 | 66 | funclen = strlen (bfd_asymbol_name (func)); |
2820 | | |
2821 | 216 | free (adata (abfd).line_buf); |
2822 | | |
2823 | 216 | if (filelen + funclen == 0) |
2824 | 163 | adata (abfd).line_buf = buf = NULL; |
2825 | 53 | else |
2826 | 53 | { |
2827 | 53 | buf = (char *) bfd_malloc (filelen + funclen + 3); |
2828 | 53 | adata (abfd).line_buf = buf; |
2829 | 53 | if (buf == NULL) |
2830 | 0 | return false; |
2831 | 53 | } |
2832 | | |
2833 | 216 | if (main_file_name != NULL) |
2834 | 104 | { |
2835 | 104 | if (IS_ABSOLUTE_PATH (main_file_name) || directory_name == NULL) |
2836 | 101 | *filename_ptr = main_file_name; |
2837 | 3 | else |
2838 | 3 | { |
2839 | 3 | if (buf == NULL) |
2840 | | /* PR binutils/20891: In a corrupt input file both |
2841 | | main_file_name and directory_name can be empty... */ |
2842 | 3 | * filename_ptr = NULL; |
2843 | 0 | else |
2844 | 0 | { |
2845 | 0 | snprintf (buf, filelen + 1, "%s%s", directory_name, |
2846 | 0 | main_file_name); |
2847 | 0 | *filename_ptr = buf; |
2848 | 0 | buf += filelen + 1; |
2849 | 0 | } |
2850 | 3 | } |
2851 | 104 | } |
2852 | | |
2853 | 216 | if (func) |
2854 | 66 | { |
2855 | 66 | const char *function = func->name; |
2856 | 66 | char *colon; |
2857 | | |
2858 | 66 | if (buf == NULL) |
2859 | 13 | { |
2860 | | /* PR binutils/20892: In a corrupt input file func can be empty. */ |
2861 | 13 | * functionname_ptr = NULL; |
2862 | 13 | return true; |
2863 | 13 | } |
2864 | | /* The caller expects a symbol name. We actually have a |
2865 | | function name, without the leading underscore. Put the |
2866 | | underscore back in, so that the caller gets a symbol name. */ |
2867 | 53 | if (bfd_get_symbol_leading_char (abfd) == '\0') |
2868 | 0 | strcpy (buf, function); |
2869 | 53 | else |
2870 | 53 | { |
2871 | 53 | buf[0] = bfd_get_symbol_leading_char (abfd); |
2872 | 53 | strcpy (buf + 1, function); |
2873 | 53 | } |
2874 | | /* Have to remove : stuff. */ |
2875 | 53 | colon = strchr (buf, ':'); |
2876 | 53 | if (colon != NULL) |
2877 | 11 | *colon = '\0'; |
2878 | 53 | *functionname_ptr = buf; |
2879 | 53 | } |
2880 | | |
2881 | 203 | return true; |
2882 | 216 | } Unexecuted instantiation: cris_aout_32_find_nearest_line ns32kaout_32_find_nearest_line Line | Count | Source | 2677 | 83 | { | 2678 | | /* Run down the file looking for the filename, function and linenumber. */ | 2679 | 83 | asymbol **p; | 2680 | 83 | const char *directory_name = NULL; | 2681 | 83 | const char *main_file_name = NULL; | 2682 | 83 | const char *current_file_name = NULL; | 2683 | 83 | const char *line_file_name = NULL; /* Value of current_file_name at line number. */ | 2684 | 83 | const char *line_directory_name = NULL; /* Value of directory_name at line number. */ | 2685 | 83 | bfd_vma low_line_vma = 0; | 2686 | 83 | bfd_vma low_func_vma = 0; | 2687 | 83 | asymbol *func = 0; | 2688 | 83 | bfd_size_type filelen, funclen; | 2689 | 83 | char *buf; | 2690 | | | 2691 | 83 | *filename_ptr = bfd_get_filename (abfd); | 2692 | 83 | *functionname_ptr = NULL; | 2693 | 83 | *line_ptr = 0; | 2694 | 83 | if (disriminator_ptr) | 2695 | 38 | *disriminator_ptr = 0; | 2696 | | | 2697 | 83 | if (symbols != NULL) | 2698 | 58 | { | 2699 | 2.52k | for (p = symbols; *p; p++) | 2700 | 2.48k | { | 2701 | 2.48k | aout_symbol_type *q = (aout_symbol_type *) (*p); | 2702 | 2.48k | next: | 2703 | 2.48k | switch (q->type) | 2704 | 2.48k | { | 2705 | 12 | case N_TEXT: | 2706 | | /* If this looks like a file name symbol, and it comes after | 2707 | | the line number we have found so far, but before the | 2708 | | offset, then we have probably not found the right line | 2709 | | number. */ | 2710 | 12 | if (q->symbol.value <= offset | 2711 | 12 | && ((q->symbol.value > low_line_vma | 2712 | 5 | && (line_file_name != NULL | 2713 | 5 | || *line_ptr != 0)) | 2714 | 7 | || (q->symbol.value > low_func_vma | 2715 | 2 | && func != NULL))) | 2716 | 7 | { | 2717 | 7 | const char *symname; | 2718 | | | 2719 | 7 | symname = q->symbol.name; | 2720 | | | 2721 | 7 | if (symname != NULL | 2722 | 7 | && strlen (symname) > 2 | 2723 | 3 | && strcmp (symname + strlen (symname) - 2, ".o") == 0) | 2724 | 0 | { | 2725 | 0 | if (q->symbol.value > low_line_vma) | 2726 | 0 | { | 2727 | 0 | *line_ptr = 0; | 2728 | 0 | line_file_name = NULL; | 2729 | 0 | } | 2730 | 0 | if (q->symbol.value > low_func_vma) | 2731 | 0 | func = NULL; | 2732 | 0 | } | 2733 | 7 | } | 2734 | 12 | break; | 2735 | | | 2736 | 2 | case N_SO: | 2737 | | /* If this symbol is less than the offset, but greater than | 2738 | | the line number we have found so far, then we have not | 2739 | | found the right line number. */ | 2740 | 2 | if (q->symbol.value <= offset) | 2741 | 1 | { | 2742 | 1 | if (q->symbol.value > low_line_vma) | 2743 | 0 | { | 2744 | 0 | *line_ptr = 0; | 2745 | 0 | line_file_name = NULL; | 2746 | 0 | } | 2747 | 1 | if (q->symbol.value > low_func_vma) | 2748 | 1 | func = NULL; | 2749 | 1 | } | 2750 | | | 2751 | 2 | main_file_name = current_file_name = q->symbol.name; | 2752 | | /* Look ahead to next symbol to check if that too is an N_SO. */ | 2753 | 2 | p++; | 2754 | 2 | if (*p == NULL) | 2755 | 0 | goto done; | 2756 | 2 | q = (aout_symbol_type *) (*p); | 2757 | 2 | if (q->type != (int)N_SO) | 2758 | 2 | goto next; | 2759 | | | 2760 | | /* Found a second N_SO First is directory; second is filename. */ | 2761 | 0 | directory_name = current_file_name; | 2762 | 0 | main_file_name = current_file_name = q->symbol.name; | 2763 | 0 | if (obj_textsec (abfd) != section) | 2764 | 0 | goto done; | 2765 | 0 | break; | 2766 | 18 | case N_SOL: | 2767 | 18 | current_file_name = q->symbol.name; | 2768 | 18 | break; | 2769 | | | 2770 | 46 | case N_SLINE: | 2771 | | | 2772 | 75 | case N_DSLINE: | 2773 | 75 | case N_BSLINE: | 2774 | | /* We'll keep this if it resolves nearer than the one we have | 2775 | | already. */ | 2776 | 75 | if (q->symbol.value >= low_line_vma | 2777 | 65 | && q->symbol.value <= offset) | 2778 | 40 | { | 2779 | 40 | *line_ptr = q->desc; | 2780 | 40 | low_line_vma = q->symbol.value; | 2781 | 40 | line_file_name = current_file_name; | 2782 | 40 | line_directory_name = directory_name; | 2783 | 40 | } | 2784 | 75 | break; | 2785 | 51 | case N_FUN: | 2786 | 51 | { | 2787 | | /* We'll keep this if it is nearer than the one we have already. */ | 2788 | 51 | if (q->symbol.value >= low_func_vma | 2789 | 51 | && q->symbol.value <= offset) | 2790 | 41 | { | 2791 | 41 | low_func_vma = q->symbol.value; | 2792 | 41 | func = (asymbol *)q; | 2793 | 41 | } | 2794 | 10 | else if (q->symbol.value > offset) | 2795 | 10 | goto done; | 2796 | 51 | } | 2797 | 41 | break; | 2798 | 2.48k | } | 2799 | 2.48k | } | 2800 | 58 | } | 2801 | | | 2802 | 83 | done: | 2803 | 83 | if (*line_ptr != 0) | 2804 | 28 | { | 2805 | 28 | main_file_name = line_file_name; | 2806 | 28 | directory_name = line_directory_name; | 2807 | 28 | } | 2808 | | | 2809 | 83 | if (main_file_name == NULL | 2810 | 83 | || IS_ABSOLUTE_PATH (main_file_name) | 2811 | 2 | || directory_name == NULL) | 2812 | 83 | filelen = 0; | 2813 | 0 | else | 2814 | 0 | filelen = strlen (directory_name) + strlen (main_file_name); | 2815 | | | 2816 | 83 | if (func == NULL) | 2817 | 48 | funclen = 0; | 2818 | 35 | else | 2819 | 35 | funclen = strlen (bfd_asymbol_name (func)); | 2820 | | | 2821 | 83 | free (adata (abfd).line_buf); | 2822 | | | 2823 | 83 | if (filelen + funclen == 0) | 2824 | 58 | adata (abfd).line_buf = buf = NULL; | 2825 | 25 | else | 2826 | 25 | { | 2827 | 25 | buf = (char *) bfd_malloc (filelen + funclen + 3); | 2828 | 25 | adata (abfd).line_buf = buf; | 2829 | 25 | if (buf == NULL) | 2830 | 0 | return false; | 2831 | 25 | } | 2832 | | | 2833 | 83 | if (main_file_name != NULL) | 2834 | 2 | { | 2835 | 2 | if (IS_ABSOLUTE_PATH (main_file_name) || directory_name == NULL) | 2836 | 2 | *filename_ptr = main_file_name; | 2837 | 0 | else | 2838 | 0 | { | 2839 | 0 | if (buf == NULL) | 2840 | | /* PR binutils/20891: In a corrupt input file both | 2841 | | main_file_name and directory_name can be empty... */ | 2842 | 0 | * filename_ptr = NULL; | 2843 | 0 | else | 2844 | 0 | { | 2845 | 0 | snprintf (buf, filelen + 1, "%s%s", directory_name, | 2846 | 0 | main_file_name); | 2847 | 0 | *filename_ptr = buf; | 2848 | 0 | buf += filelen + 1; | 2849 | 0 | } | 2850 | 0 | } | 2851 | 2 | } | 2852 | | | 2853 | 83 | if (func) | 2854 | 35 | { | 2855 | 35 | const char *function = func->name; | 2856 | 35 | char *colon; | 2857 | | | 2858 | 35 | if (buf == NULL) | 2859 | 10 | { | 2860 | | /* PR binutils/20892: In a corrupt input file func can be empty. */ | 2861 | 10 | * functionname_ptr = NULL; | 2862 | 10 | return true; | 2863 | 10 | } | 2864 | | /* The caller expects a symbol name. We actually have a | 2865 | | function name, without the leading underscore. Put the | 2866 | | underscore back in, so that the caller gets a symbol name. */ | 2867 | 25 | if (bfd_get_symbol_leading_char (abfd) == '\0') | 2868 | 0 | strcpy (buf, function); | 2869 | 25 | else | 2870 | 25 | { | 2871 | 25 | buf[0] = bfd_get_symbol_leading_char (abfd); | 2872 | 25 | strcpy (buf + 1, function); | 2873 | 25 | } | 2874 | | /* Have to remove : stuff. */ | 2875 | 25 | colon = strchr (buf, ':'); | 2876 | 25 | if (colon != NULL) | 2877 | 0 | *colon = '\0'; | 2878 | 25 | *functionname_ptr = buf; | 2879 | 25 | } | 2880 | | | 2881 | 73 | return true; | 2882 | 83 | } |
aout_32_find_nearest_line Line | Count | Source | 2677 | 133 | { | 2678 | | /* Run down the file looking for the filename, function and linenumber. */ | 2679 | 133 | asymbol **p; | 2680 | 133 | const char *directory_name = NULL; | 2681 | 133 | const char *main_file_name = NULL; | 2682 | 133 | const char *current_file_name = NULL; | 2683 | 133 | const char *line_file_name = NULL; /* Value of current_file_name at line number. */ | 2684 | 133 | const char *line_directory_name = NULL; /* Value of directory_name at line number. */ | 2685 | 133 | bfd_vma low_line_vma = 0; | 2686 | 133 | bfd_vma low_func_vma = 0; | 2687 | 133 | asymbol *func = 0; | 2688 | 133 | bfd_size_type filelen, funclen; | 2689 | 133 | char *buf; | 2690 | | | 2691 | 133 | *filename_ptr = bfd_get_filename (abfd); | 2692 | 133 | *functionname_ptr = NULL; | 2693 | 133 | *line_ptr = 0; | 2694 | 133 | if (disriminator_ptr) | 2695 | 33 | *disriminator_ptr = 0; | 2696 | | | 2697 | 133 | if (symbols != NULL) | 2698 | 112 | { | 2699 | 1.97k | for (p = symbols; *p; p++) | 2700 | 1.96k | { | 2701 | 1.96k | aout_symbol_type *q = (aout_symbol_type *) (*p); | 2702 | 2.21k | next: | 2703 | 2.21k | switch (q->type) | 2704 | 2.21k | { | 2705 | 158 | case N_TEXT: | 2706 | | /* If this looks like a file name symbol, and it comes after | 2707 | | the line number we have found so far, but before the | 2708 | | offset, then we have probably not found the right line | 2709 | | number. */ | 2710 | 158 | if (q->symbol.value <= offset | 2711 | 123 | && ((q->symbol.value > low_line_vma | 2712 | 103 | && (line_file_name != NULL | 2713 | 78 | || *line_ptr != 0)) | 2714 | 95 | || (q->symbol.value > low_func_vma | 2715 | 73 | && func != NULL))) | 2716 | 75 | { | 2717 | 75 | const char *symname; | 2718 | | | 2719 | 75 | symname = q->symbol.name; | 2720 | | | 2721 | 75 | if (symname != NULL | 2722 | 75 | && strlen (symname) > 2 | 2723 | 43 | && strcmp (symname + strlen (symname) - 2, ".o") == 0) | 2724 | 0 | { | 2725 | 0 | if (q->symbol.value > low_line_vma) | 2726 | 0 | { | 2727 | 0 | *line_ptr = 0; | 2728 | 0 | line_file_name = NULL; | 2729 | 0 | } | 2730 | 0 | if (q->symbol.value > low_func_vma) | 2731 | 0 | func = NULL; | 2732 | 0 | } | 2733 | 75 | } | 2734 | 158 | break; | 2735 | | | 2736 | 325 | case N_SO: | 2737 | | /* If this symbol is less than the offset, but greater than | 2738 | | the line number we have found so far, then we have not | 2739 | | found the right line number. */ | 2740 | 325 | if (q->symbol.value <= offset) | 2741 | 231 | { | 2742 | 231 | if (q->symbol.value > low_line_vma) | 2743 | 182 | { | 2744 | 182 | *line_ptr = 0; | 2745 | 182 | line_file_name = NULL; | 2746 | 182 | } | 2747 | 231 | if (q->symbol.value > low_func_vma) | 2748 | 177 | func = NULL; | 2749 | 231 | } | 2750 | | | 2751 | 325 | main_file_name = current_file_name = q->symbol.name; | 2752 | | /* Look ahead to next symbol to check if that too is an N_SO. */ | 2753 | 325 | p++; | 2754 | 325 | if (*p == NULL) | 2755 | 80 | goto done; | 2756 | 245 | q = (aout_symbol_type *) (*p); | 2757 | 245 | if (q->type != (int)N_SO) | 2758 | 242 | goto next; | 2759 | | | 2760 | | /* Found a second N_SO First is directory; second is filename. */ | 2761 | 3 | directory_name = current_file_name; | 2762 | 3 | main_file_name = current_file_name = q->symbol.name; | 2763 | 3 | if (obj_textsec (abfd) != section) | 2764 | 3 | goto done; | 2765 | 0 | break; | 2766 | 11 | case N_SOL: | 2767 | 11 | current_file_name = q->symbol.name; | 2768 | 11 | break; | 2769 | | | 2770 | 57 | case N_SLINE: | 2771 | | | 2772 | 67 | case N_DSLINE: | 2773 | 105 | case N_BSLINE: | 2774 | | /* We'll keep this if it resolves nearer than the one we have | 2775 | | already. */ | 2776 | 105 | if (q->symbol.value >= low_line_vma | 2777 | 88 | && q->symbol.value <= offset) | 2778 | 54 | { | 2779 | 54 | *line_ptr = q->desc; | 2780 | 54 | low_line_vma = q->symbol.value; | 2781 | 54 | line_file_name = current_file_name; | 2782 | 54 | line_directory_name = directory_name; | 2783 | 54 | } | 2784 | 105 | break; | 2785 | 106 | case N_FUN: | 2786 | 106 | { | 2787 | | /* We'll keep this if it is nearer than the one we have already. */ | 2788 | 106 | if (q->symbol.value >= low_func_vma | 2789 | 82 | && q->symbol.value <= offset) | 2790 | 63 | { | 2791 | 63 | low_func_vma = q->symbol.value; | 2792 | 63 | func = (asymbol *)q; | 2793 | 63 | } | 2794 | 43 | else if (q->symbol.value > offset) | 2795 | 19 | goto done; | 2796 | 106 | } | 2797 | 87 | break; | 2798 | 2.21k | } | 2799 | 2.21k | } | 2800 | 112 | } | 2801 | | | 2802 | 133 | done: | 2803 | 133 | if (*line_ptr != 0) | 2804 | 13 | { | 2805 | 13 | main_file_name = line_file_name; | 2806 | 13 | directory_name = line_directory_name; | 2807 | 13 | } | 2808 | | | 2809 | 133 | if (main_file_name == NULL | 2810 | 133 | || IS_ABSOLUTE_PATH (main_file_name) | 2811 | 96 | || directory_name == NULL) | 2812 | 130 | filelen = 0; | 2813 | 3 | else | 2814 | 3 | filelen = strlen (directory_name) + strlen (main_file_name); | 2815 | | | 2816 | 133 | if (func == NULL) | 2817 | 102 | funclen = 0; | 2818 | 31 | else | 2819 | 31 | funclen = strlen (bfd_asymbol_name (func)); | 2820 | | | 2821 | 133 | free (adata (abfd).line_buf); | 2822 | | | 2823 | 133 | if (filelen + funclen == 0) | 2824 | 105 | adata (abfd).line_buf = buf = NULL; | 2825 | 28 | else | 2826 | 28 | { | 2827 | 28 | buf = (char *) bfd_malloc (filelen + funclen + 3); | 2828 | 28 | adata (abfd).line_buf = buf; | 2829 | 28 | if (buf == NULL) | 2830 | 0 | return false; | 2831 | 28 | } | 2832 | | | 2833 | 133 | if (main_file_name != NULL) | 2834 | 102 | { | 2835 | 102 | if (IS_ABSOLUTE_PATH (main_file_name) || directory_name == NULL) | 2836 | 99 | *filename_ptr = main_file_name; | 2837 | 3 | else | 2838 | 3 | { | 2839 | 3 | if (buf == NULL) | 2840 | | /* PR binutils/20891: In a corrupt input file both | 2841 | | main_file_name and directory_name can be empty... */ | 2842 | 3 | * filename_ptr = NULL; | 2843 | 0 | else | 2844 | 0 | { | 2845 | 0 | snprintf (buf, filelen + 1, "%s%s", directory_name, | 2846 | 0 | main_file_name); | 2847 | 0 | *filename_ptr = buf; | 2848 | 0 | buf += filelen + 1; | 2849 | 0 | } | 2850 | 3 | } | 2851 | 102 | } | 2852 | | | 2853 | 133 | if (func) | 2854 | 31 | { | 2855 | 31 | const char *function = func->name; | 2856 | 31 | char *colon; | 2857 | | | 2858 | 31 | if (buf == NULL) | 2859 | 3 | { | 2860 | | /* PR binutils/20892: In a corrupt input file func can be empty. */ | 2861 | 3 | * functionname_ptr = NULL; | 2862 | 3 | return true; | 2863 | 3 | } | 2864 | | /* The caller expects a symbol name. We actually have a | 2865 | | function name, without the leading underscore. Put the | 2866 | | underscore back in, so that the caller gets a symbol name. */ | 2867 | 28 | if (bfd_get_symbol_leading_char (abfd) == '\0') | 2868 | 0 | strcpy (buf, function); | 2869 | 28 | else | 2870 | 28 | { | 2871 | 28 | buf[0] = bfd_get_symbol_leading_char (abfd); | 2872 | 28 | strcpy (buf + 1, function); | 2873 | 28 | } | 2874 | | /* Have to remove : stuff. */ | 2875 | 28 | colon = strchr (buf, ':'); | 2876 | 28 | if (colon != NULL) | 2877 | 11 | *colon = '\0'; | 2878 | 28 | *functionname_ptr = buf; | 2879 | 28 | } | 2880 | | | 2881 | 130 | return true; | 2882 | 133 | } |
|
2883 | | |
2884 | | int |
2885 | | NAME (aout, sizeof_headers) (bfd *abfd, |
2886 | | struct bfd_link_info *info ATTRIBUTE_UNUSED) |
2887 | 0 | { |
2888 | 0 | return adata (abfd).exec_bytes_size; |
2889 | 0 | } Unexecuted instantiation: cris_aout_32_sizeof_headers Unexecuted instantiation: ns32kaout_32_sizeof_headers Unexecuted instantiation: aout_32_sizeof_headers |
2890 | | |
2891 | | /* Throw away most malloc'd and alloc'd information for this BFD. */ |
2892 | | |
2893 | | bool |
2894 | | NAME (aout, bfd_free_cached_info) (bfd *abfd) |
2895 | 326k | { |
2896 | 326k | if ((bfd_get_format (abfd) == bfd_object |
2897 | 320k | || bfd_get_format (abfd) == bfd_core) |
2898 | 6.30k | && abfd->tdata.aout_data != NULL) |
2899 | 6.30k | { |
2900 | 43.5k | #define BFCI_FREE(x) do { free (x); x = NULL; } while (0) |
2901 | 6.30k | BFCI_FREE (adata (abfd).line_buf); |
2902 | 6.30k | BFCI_FREE (obj_aout_symbols (abfd)); |
2903 | 6.30k | BFCI_FREE (obj_aout_external_syms (abfd)); |
2904 | 6.30k | BFCI_FREE (obj_aout_external_strings (abfd)); |
2905 | 24.6k | for (asection *o = abfd->sections; o != NULL; o = o->next) |
2906 | 18.3k | BFCI_FREE (o->relocation); |
2907 | 6.30k | #undef BFCI_FREE |
2908 | 6.30k | } |
2909 | | |
2910 | 326k | return _bfd_generic_bfd_free_cached_info (abfd); |
2911 | 326k | } cris_aout_32_bfd_free_cached_info Line | Count | Source | 2895 | 40.7k | { | 2896 | 40.7k | if ((bfd_get_format (abfd) == bfd_object | 2897 | 40.2k | || bfd_get_format (abfd) == bfd_core) | 2898 | 468 | && abfd->tdata.aout_data != NULL) | 2899 | 468 | { | 2900 | 468 | #define BFCI_FREE(x) do { free (x); x = NULL; } while (0) | 2901 | 468 | BFCI_FREE (adata (abfd).line_buf); | 2902 | 468 | BFCI_FREE (obj_aout_symbols (abfd)); | 2903 | 468 | BFCI_FREE (obj_aout_external_syms (abfd)); | 2904 | 468 | BFCI_FREE (obj_aout_external_strings (abfd)); | 2905 | 1.87k | for (asection *o = abfd->sections; o != NULL; o = o->next) | 2906 | 1.40k | BFCI_FREE (o->relocation); | 2907 | 468 | #undef BFCI_FREE | 2908 | 468 | } | 2909 | | | 2910 | 40.7k | return _bfd_generic_bfd_free_cached_info (abfd); | 2911 | 40.7k | } |
ns32kaout_32_bfd_free_cached_info Line | Count | Source | 2895 | 81.9k | { | 2896 | 81.9k | if ((bfd_get_format (abfd) == bfd_object | 2897 | 79.9k | || bfd_get_format (abfd) == bfd_core) | 2898 | 1.99k | && abfd->tdata.aout_data != NULL) | 2899 | 1.99k | { | 2900 | 1.99k | #define BFCI_FREE(x) do { free (x); x = NULL; } while (0) | 2901 | 1.99k | BFCI_FREE (adata (abfd).line_buf); | 2902 | 1.99k | BFCI_FREE (obj_aout_symbols (abfd)); | 2903 | 1.99k | BFCI_FREE (obj_aout_external_syms (abfd)); | 2904 | 1.99k | BFCI_FREE (obj_aout_external_strings (abfd)); | 2905 | 7.62k | for (asection *o = abfd->sections; o != NULL; o = o->next) | 2906 | 5.63k | BFCI_FREE (o->relocation); | 2907 | 1.99k | #undef BFCI_FREE | 2908 | 1.99k | } | 2909 | | | 2910 | 81.9k | return _bfd_generic_bfd_free_cached_info (abfd); | 2911 | 81.9k | } |
aout_32_bfd_free_cached_info Line | Count | Source | 2895 | 204k | { | 2896 | 204k | if ((bfd_get_format (abfd) == bfd_object | 2897 | 200k | || bfd_get_format (abfd) == bfd_core) | 2898 | 3.85k | && abfd->tdata.aout_data != NULL) | 2899 | 3.85k | { | 2900 | 3.85k | #define BFCI_FREE(x) do { free (x); x = NULL; } while (0) | 2901 | 3.85k | BFCI_FREE (adata (abfd).line_buf); | 2902 | 3.85k | BFCI_FREE (obj_aout_symbols (abfd)); | 2903 | 3.85k | BFCI_FREE (obj_aout_external_syms (abfd)); | 2904 | 3.85k | BFCI_FREE (obj_aout_external_strings (abfd)); | 2905 | 15.1k | for (asection *o = abfd->sections; o != NULL; o = o->next) | 2906 | 11.2k | BFCI_FREE (o->relocation); | 2907 | 3.85k | #undef BFCI_FREE | 2908 | 3.85k | } | 2909 | | | 2910 | 204k | return _bfd_generic_bfd_free_cached_info (abfd); | 2911 | 204k | } |
|
2912 | | |
2913 | | /* a.out link code. */ |
2914 | | |
2915 | | /* Routine to create an entry in an a.out link hash table. */ |
2916 | | |
2917 | | struct bfd_hash_entry * |
2918 | | NAME (aout, link_hash_newfunc) (struct bfd_hash_entry *entry, |
2919 | | struct bfd_hash_table *table, |
2920 | | const char *string) |
2921 | 0 | { |
2922 | 0 | struct aout_link_hash_entry *ret = (struct aout_link_hash_entry *) entry; |
2923 | | |
2924 | | /* Allocate the structure if it has not already been allocated by a |
2925 | | subclass. */ |
2926 | 0 | if (ret == NULL) |
2927 | 0 | ret = (struct aout_link_hash_entry *) bfd_hash_allocate (table, |
2928 | 0 | sizeof (* ret)); |
2929 | 0 | if (ret == NULL) |
2930 | 0 | return NULL; |
2931 | | |
2932 | | /* Call the allocation method of the superclass. */ |
2933 | 0 | ret = ((struct aout_link_hash_entry *) |
2934 | 0 | _bfd_link_hash_newfunc ((struct bfd_hash_entry *) ret, |
2935 | 0 | table, string)); |
2936 | 0 | if (ret) |
2937 | 0 | { |
2938 | | /* Set local fields. */ |
2939 | 0 | ret->written = false; |
2940 | 0 | ret->indx = -1; |
2941 | 0 | } |
2942 | |
|
2943 | 0 | return (struct bfd_hash_entry *) ret; |
2944 | 0 | } Unexecuted instantiation: cris_aout_32_link_hash_newfunc Unexecuted instantiation: ns32kaout_32_link_hash_newfunc Unexecuted instantiation: aout_32_link_hash_newfunc |
2945 | | |
2946 | | /* Initialize an a.out link hash table. */ |
2947 | | |
2948 | | bool |
2949 | | NAME (aout, link_hash_table_init) (struct aout_link_hash_table *table, |
2950 | | bfd *abfd, |
2951 | | struct bfd_hash_entry *(*newfunc) |
2952 | | (struct bfd_hash_entry *, struct bfd_hash_table *, |
2953 | | const char *), |
2954 | | unsigned int entsize) |
2955 | 0 | { |
2956 | 0 | return _bfd_link_hash_table_init (&table->root, abfd, newfunc, entsize); |
2957 | 0 | } Unexecuted instantiation: cris_aout_32_link_hash_table_init Unexecuted instantiation: ns32kaout_32_link_hash_table_init Unexecuted instantiation: aout_32_link_hash_table_init |
2958 | | |
2959 | | /* Create an a.out link hash table. */ |
2960 | | |
2961 | | struct bfd_link_hash_table * |
2962 | | NAME (aout, link_hash_table_create) (bfd *abfd) |
2963 | 0 | { |
2964 | 0 | struct aout_link_hash_table *ret; |
2965 | 0 | size_t amt = sizeof (* ret); |
2966 | |
|
2967 | 0 | ret = (struct aout_link_hash_table *) bfd_malloc (amt); |
2968 | 0 | if (ret == NULL) |
2969 | 0 | return NULL; |
2970 | | |
2971 | 0 | if (!NAME (aout, link_hash_table_init) (ret, abfd, |
2972 | 0 | NAME (aout, link_hash_newfunc), |
2973 | 0 | sizeof (struct aout_link_hash_entry))) |
2974 | 0 | { |
2975 | 0 | free (ret); |
2976 | 0 | return NULL; |
2977 | 0 | } |
2978 | 0 | return &ret->root; |
2979 | 0 | } Unexecuted instantiation: cris_aout_32_link_hash_table_create Unexecuted instantiation: ns32kaout_32_link_hash_table_create Unexecuted instantiation: aout_32_link_hash_table_create |
2980 | | |
2981 | | /* Add all symbols from an object file to the hash table. */ |
2982 | | |
2983 | | static bool |
2984 | | aout_link_add_symbols (bfd *abfd, struct bfd_link_info *info) |
2985 | 0 | { |
2986 | 0 | struct external_nlist *syms; |
2987 | 0 | bfd_size_type sym_count; |
2988 | 0 | char *strings; |
2989 | 0 | bool copy; |
2990 | 0 | struct aout_link_hash_entry **sym_hash; |
2991 | 0 | struct external_nlist *p; |
2992 | 0 | struct external_nlist *pend; |
2993 | 0 | bfd_size_type amt; |
2994 | |
|
2995 | 0 | syms = obj_aout_external_syms (abfd); |
2996 | 0 | sym_count = obj_aout_external_sym_count (abfd); |
2997 | 0 | strings = obj_aout_external_strings (abfd); |
2998 | 0 | if (info->keep_memory) |
2999 | 0 | copy = false; |
3000 | 0 | else |
3001 | 0 | copy = true; |
3002 | |
|
3003 | 0 | if (aout_backend_info (abfd)->add_dynamic_symbols != NULL) |
3004 | 0 | { |
3005 | 0 | if (! ((*aout_backend_info (abfd)->add_dynamic_symbols) |
3006 | 0 | (abfd, info, &syms, &sym_count, &strings))) |
3007 | 0 | return false; |
3008 | 0 | } |
3009 | | |
3010 | 0 | if (sym_count == 0) |
3011 | 0 | return true; /* Nothing to do. */ |
3012 | | |
3013 | | /* We keep a list of the linker hash table entries that correspond |
3014 | | to particular symbols. We could just look them up in the hash |
3015 | | table, but keeping the list is more efficient. Perhaps this |
3016 | | should be conditional on info->keep_memory. */ |
3017 | 0 | amt = sym_count * sizeof (struct aout_link_hash_entry *); |
3018 | 0 | sym_hash = (struct aout_link_hash_entry **) bfd_alloc (abfd, amt); |
3019 | 0 | if (sym_hash == NULL) |
3020 | 0 | return false; |
3021 | 0 | obj_aout_sym_hashes (abfd) = sym_hash; |
3022 | |
|
3023 | 0 | p = syms; |
3024 | 0 | pend = p + sym_count; |
3025 | 0 | for (; p < pend; p++, sym_hash++) |
3026 | 0 | { |
3027 | 0 | int type; |
3028 | 0 | const char *name; |
3029 | 0 | bfd_vma value; |
3030 | 0 | asection *section; |
3031 | 0 | flagword flags; |
3032 | 0 | const char *string; |
3033 | |
|
3034 | 0 | *sym_hash = NULL; |
3035 | |
|
3036 | 0 | type = H_GET_8 (abfd, p->e_type); |
3037 | | |
3038 | | /* Ignore debugging symbols. */ |
3039 | 0 | if ((type & N_STAB) != 0) |
3040 | 0 | continue; |
3041 | | |
3042 | | /* PR 19629: Corrupt binaries can contain illegal string offsets. */ |
3043 | 0 | if (GET_WORD (abfd, p->e_strx) >= obj_aout_external_string_size (abfd)) |
3044 | 0 | return false; |
3045 | 0 | name = strings + GET_WORD (abfd, p->e_strx); |
3046 | 0 | value = GET_WORD (abfd, p->e_value); |
3047 | 0 | flags = BSF_GLOBAL; |
3048 | 0 | string = NULL; |
3049 | 0 | switch (type) |
3050 | 0 | { |
3051 | 0 | default: |
3052 | 0 | abort (); |
3053 | | |
3054 | 0 | case N_UNDF: |
3055 | 0 | case N_ABS: |
3056 | 0 | case N_TEXT: |
3057 | 0 | case N_DATA: |
3058 | 0 | case N_BSS: |
3059 | 0 | case N_FN_SEQ: |
3060 | 0 | case N_COMM: |
3061 | 0 | case N_SETV: |
3062 | 0 | case N_FN: |
3063 | | /* Ignore symbols that are not externally visible. */ |
3064 | 0 | continue; |
3065 | 0 | case N_INDR: |
3066 | | /* Ignore local indirect symbol. */ |
3067 | 0 | ++p; |
3068 | 0 | ++sym_hash; |
3069 | 0 | continue; |
3070 | | |
3071 | 0 | case N_UNDF | N_EXT: |
3072 | 0 | if (value == 0) |
3073 | 0 | { |
3074 | 0 | section = bfd_und_section_ptr; |
3075 | 0 | flags = 0; |
3076 | 0 | } |
3077 | 0 | else |
3078 | 0 | section = bfd_com_section_ptr; |
3079 | 0 | break; |
3080 | 0 | case N_ABS | N_EXT: |
3081 | 0 | section = bfd_abs_section_ptr; |
3082 | 0 | break; |
3083 | 0 | case N_TEXT | N_EXT: |
3084 | 0 | section = obj_textsec (abfd); |
3085 | 0 | value -= bfd_section_vma (section); |
3086 | 0 | break; |
3087 | 0 | case N_DATA | N_EXT: |
3088 | 0 | case N_SETV | N_EXT: |
3089 | | /* Treat N_SETV symbols as N_DATA symbol; see comment in |
3090 | | translate_from_native_sym_flags. */ |
3091 | 0 | section = obj_datasec (abfd); |
3092 | 0 | value -= bfd_section_vma (section); |
3093 | 0 | break; |
3094 | 0 | case N_BSS | N_EXT: |
3095 | 0 | section = obj_bsssec (abfd); |
3096 | 0 | value -= bfd_section_vma (section); |
3097 | 0 | break; |
3098 | 0 | case N_INDR | N_EXT: |
3099 | | /* An indirect symbol. The next symbol is the symbol |
3100 | | which this one really is. */ |
3101 | | /* See PR 20925 for a reproducer. */ |
3102 | 0 | if (p + 1 >= pend) |
3103 | 0 | return false; |
3104 | 0 | ++p; |
3105 | | /* PR 19629: Corrupt binaries can contain illegal string offsets. */ |
3106 | 0 | if (GET_WORD (abfd, p->e_strx) >= obj_aout_external_string_size (abfd)) |
3107 | 0 | return false; |
3108 | 0 | string = strings + GET_WORD (abfd, p->e_strx); |
3109 | 0 | section = bfd_ind_section_ptr; |
3110 | 0 | flags |= BSF_INDIRECT; |
3111 | 0 | break; |
3112 | 0 | case N_COMM | N_EXT: |
3113 | 0 | section = bfd_com_section_ptr; |
3114 | 0 | break; |
3115 | 0 | case N_SETA: case N_SETA | N_EXT: |
3116 | 0 | section = bfd_abs_section_ptr; |
3117 | 0 | flags |= BSF_CONSTRUCTOR; |
3118 | 0 | break; |
3119 | 0 | case N_SETT: case N_SETT | N_EXT: |
3120 | 0 | section = obj_textsec (abfd); |
3121 | 0 | flags |= BSF_CONSTRUCTOR; |
3122 | 0 | value -= bfd_section_vma (section); |
3123 | 0 | break; |
3124 | 0 | case N_SETD: case N_SETD | N_EXT: |
3125 | 0 | section = obj_datasec (abfd); |
3126 | 0 | flags |= BSF_CONSTRUCTOR; |
3127 | 0 | value -= bfd_section_vma (section); |
3128 | 0 | break; |
3129 | 0 | case N_SETB: case N_SETB | N_EXT: |
3130 | 0 | section = obj_bsssec (abfd); |
3131 | 0 | flags |= BSF_CONSTRUCTOR; |
3132 | 0 | value -= bfd_section_vma (section); |
3133 | 0 | break; |
3134 | 0 | case N_WARNING: |
3135 | | /* A warning symbol. The next symbol is the one to warn |
3136 | | about. If there is no next symbol, just look away. */ |
3137 | 0 | if (p + 1 >= pend) |
3138 | 0 | return true; |
3139 | 0 | ++p; |
3140 | 0 | string = name; |
3141 | | /* PR 19629: Corrupt binaries can contain illegal string offsets. */ |
3142 | 0 | if (GET_WORD (abfd, p->e_strx) >= obj_aout_external_string_size (abfd)) |
3143 | 0 | return false; |
3144 | 0 | name = strings + GET_WORD (abfd, p->e_strx); |
3145 | 0 | section = bfd_und_section_ptr; |
3146 | 0 | flags |= BSF_WARNING; |
3147 | 0 | break; |
3148 | 0 | case N_WEAKU: |
3149 | 0 | section = bfd_und_section_ptr; |
3150 | 0 | flags = BSF_WEAK; |
3151 | 0 | break; |
3152 | 0 | case N_WEAKA: |
3153 | 0 | section = bfd_abs_section_ptr; |
3154 | 0 | flags = BSF_WEAK; |
3155 | 0 | break; |
3156 | 0 | case N_WEAKT: |
3157 | 0 | section = obj_textsec (abfd); |
3158 | 0 | value -= bfd_section_vma (section); |
3159 | 0 | flags = BSF_WEAK; |
3160 | 0 | break; |
3161 | 0 | case N_WEAKD: |
3162 | 0 | section = obj_datasec (abfd); |
3163 | 0 | value -= bfd_section_vma (section); |
3164 | 0 | flags = BSF_WEAK; |
3165 | 0 | break; |
3166 | 0 | case N_WEAKB: |
3167 | 0 | section = obj_bsssec (abfd); |
3168 | 0 | value -= bfd_section_vma (section); |
3169 | 0 | flags = BSF_WEAK; |
3170 | 0 | break; |
3171 | 0 | } |
3172 | | |
3173 | 0 | if (! (_bfd_generic_link_add_one_symbol |
3174 | 0 | (info, abfd, name, flags, section, value, string, copy, false, |
3175 | 0 | (struct bfd_link_hash_entry **) sym_hash))) |
3176 | 0 | return false; |
3177 | | |
3178 | | /* Restrict the maximum alignment of a common symbol based on |
3179 | | the architecture, since a.out has no way to represent |
3180 | | alignment requirements of a section in a .o file. FIXME: |
3181 | | This isn't quite right: it should use the architecture of the |
3182 | | output file, not the input files. */ |
3183 | 0 | if ((*sym_hash)->root.type == bfd_link_hash_common |
3184 | 0 | && ((*sym_hash)->root.u.c.p->alignment_power > |
3185 | 0 | bfd_get_arch_info (abfd)->section_align_power)) |
3186 | 0 | (*sym_hash)->root.u.c.p->alignment_power = |
3187 | 0 | bfd_get_arch_info (abfd)->section_align_power; |
3188 | | |
3189 | | /* If this is a set symbol, and we are not building sets, then |
3190 | | it is possible for the hash entry to not have been set. In |
3191 | | such a case, treat the symbol as not globally defined. */ |
3192 | 0 | if ((*sym_hash)->root.type == bfd_link_hash_new) |
3193 | 0 | { |
3194 | 0 | BFD_ASSERT ((flags & BSF_CONSTRUCTOR) != 0); |
3195 | 0 | *sym_hash = NULL; |
3196 | 0 | } |
3197 | |
|
3198 | 0 | if (type == (N_INDR | N_EXT) || type == N_WARNING) |
3199 | 0 | ++sym_hash; |
3200 | 0 | } |
3201 | | |
3202 | 0 | return true; |
3203 | 0 | } Unexecuted instantiation: aout-cris.c:aout_link_add_symbols Unexecuted instantiation: aout-ns32k.c:aout_link_add_symbols Unexecuted instantiation: aout32.c:aout_link_add_symbols |
3204 | | |
3205 | | /* Free up the internal symbols read from an a.out file. */ |
3206 | | |
3207 | | static bool |
3208 | | aout_link_free_symbols (bfd *abfd) |
3209 | 0 | { |
3210 | 0 | if (obj_aout_external_syms (abfd) != NULL) |
3211 | 0 | { |
3212 | 0 | free ((void *) obj_aout_external_syms (abfd)); |
3213 | 0 | obj_aout_external_syms (abfd) = NULL; |
3214 | 0 | } |
3215 | 0 | if (obj_aout_external_strings (abfd) != NULL) |
3216 | 0 | { |
3217 | 0 | free ((void *) obj_aout_external_strings (abfd)); |
3218 | 0 | obj_aout_external_strings (abfd) = NULL; |
3219 | 0 | } |
3220 | 0 | return true; |
3221 | 0 | } Unexecuted instantiation: aout-cris.c:aout_link_free_symbols Unexecuted instantiation: aout-ns32k.c:aout_link_free_symbols Unexecuted instantiation: aout32.c:aout_link_free_symbols |
3222 | | |
3223 | | /* Add symbols from an a.out object file. */ |
3224 | | |
3225 | | static bool |
3226 | | aout_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info) |
3227 | 0 | { |
3228 | 0 | BFD_ASSERT (bfd_get_flavour (abfd) == bfd_target_aout_flavour); |
3229 | |
|
3230 | 0 | if (! aout_get_external_symbols (abfd)) |
3231 | 0 | return false; |
3232 | 0 | if (! aout_link_add_symbols (abfd, info)) |
3233 | 0 | return false; |
3234 | 0 | if (! info->keep_memory) |
3235 | 0 | { |
3236 | 0 | if (! aout_link_free_symbols (abfd)) |
3237 | 0 | return false; |
3238 | 0 | } |
3239 | 0 | return true; |
3240 | 0 | } Unexecuted instantiation: aout-cris.c:aout_link_add_object_symbols Unexecuted instantiation: aout-ns32k.c:aout_link_add_object_symbols Unexecuted instantiation: aout32.c:aout_link_add_object_symbols |
3241 | | |
3242 | | /* Look through the internal symbols to see if this object file should |
3243 | | be included in the link. We should include this object file if it |
3244 | | defines any symbols which are currently undefined. If this object |
3245 | | file defines a common symbol, then we may adjust the size of the |
3246 | | known symbol but we do not include the object file in the link |
3247 | | (unless there is some other reason to include it). */ |
3248 | | |
3249 | | static bool |
3250 | | aout_link_check_ar_symbols (bfd *abfd, |
3251 | | struct bfd_link_info *info, |
3252 | | bool *pneeded, |
3253 | | bfd **subsbfd) |
3254 | 0 | { |
3255 | 0 | struct external_nlist *p; |
3256 | 0 | struct external_nlist *pend; |
3257 | 0 | char *strings; |
3258 | |
|
3259 | 0 | *pneeded = false; |
3260 | | |
3261 | | /* Look through all the symbols. */ |
3262 | 0 | p = obj_aout_external_syms (abfd); |
3263 | 0 | pend = p + obj_aout_external_sym_count (abfd); |
3264 | 0 | strings = obj_aout_external_strings (abfd); |
3265 | 0 | for (; p < pend; p++) |
3266 | 0 | { |
3267 | 0 | int type = H_GET_8 (abfd, p->e_type); |
3268 | 0 | const char *name; |
3269 | 0 | struct bfd_link_hash_entry *h; |
3270 | | |
3271 | | /* Ignore symbols that are not externally visible. This is an |
3272 | | optimization only, as we check the type more thoroughly |
3273 | | below. */ |
3274 | 0 | if (((type & N_EXT) == 0 |
3275 | 0 | || (type & N_STAB) != 0 |
3276 | 0 | || type == N_FN) |
3277 | 0 | && type != N_WEAKA |
3278 | 0 | && type != N_WEAKT |
3279 | 0 | && type != N_WEAKD |
3280 | 0 | && type != N_WEAKB) |
3281 | 0 | { |
3282 | 0 | if (type == N_WARNING |
3283 | 0 | || type == N_INDR) |
3284 | 0 | ++p; |
3285 | 0 | continue; |
3286 | 0 | } |
3287 | | |
3288 | 0 | name = strings + GET_WORD (abfd, p->e_strx); |
3289 | 0 | h = bfd_link_hash_lookup (info->hash, name, false, false, true); |
3290 | | |
3291 | | /* We are only interested in symbols that are currently |
3292 | | undefined or common. */ |
3293 | 0 | if (h == NULL |
3294 | 0 | || (h->type != bfd_link_hash_undefined |
3295 | 0 | && h->type != bfd_link_hash_common)) |
3296 | 0 | { |
3297 | 0 | if (type == (N_INDR | N_EXT)) |
3298 | 0 | ++p; |
3299 | 0 | continue; |
3300 | 0 | } |
3301 | | |
3302 | 0 | if (type == (N_TEXT | N_EXT) |
3303 | 0 | || type == (N_DATA | N_EXT) |
3304 | 0 | || type == (N_BSS | N_EXT) |
3305 | 0 | || type == (N_ABS | N_EXT) |
3306 | 0 | || type == (N_INDR | N_EXT)) |
3307 | 0 | { |
3308 | | /* This object file defines this symbol. We must link it |
3309 | | in. This is true regardless of whether the current |
3310 | | definition of the symbol is undefined or common. |
3311 | | |
3312 | | If the current definition is common, we have a case in |
3313 | | which we have already seen an object file including: |
3314 | | int a; |
3315 | | and this object file from the archive includes: |
3316 | | int a = 5; |
3317 | | In such a case, whether to include this object is target |
3318 | | dependant for backward compatibility. |
3319 | | |
3320 | | FIXME: The SunOS 4.1.3 linker will pull in the archive |
3321 | | element if the symbol is defined in the .data section, |
3322 | | but not if it is defined in the .text section. That |
3323 | | seems a bit crazy to me, and it has not been implemented |
3324 | | yet. However, it might be correct. */ |
3325 | 0 | if (h->type == bfd_link_hash_common) |
3326 | 0 | { |
3327 | 0 | int skip = 0; |
3328 | |
|
3329 | 0 | switch (info->common_skip_ar_symbols) |
3330 | 0 | { |
3331 | 0 | case bfd_link_common_skip_none: |
3332 | 0 | break; |
3333 | 0 | case bfd_link_common_skip_text: |
3334 | 0 | skip = (type == (N_TEXT | N_EXT)); |
3335 | 0 | break; |
3336 | 0 | case bfd_link_common_skip_data: |
3337 | 0 | skip = (type == (N_DATA | N_EXT)); |
3338 | 0 | break; |
3339 | 0 | case bfd_link_common_skip_all: |
3340 | 0 | skip = 1; |
3341 | 0 | break; |
3342 | 0 | } |
3343 | | |
3344 | 0 | if (skip) |
3345 | 0 | continue; |
3346 | 0 | } |
3347 | | |
3348 | 0 | if (!(*info->callbacks |
3349 | 0 | ->add_archive_element) (info, abfd, name, subsbfd)) |
3350 | 0 | return false; |
3351 | 0 | *pneeded = true; |
3352 | 0 | return true; |
3353 | 0 | } |
3354 | | |
3355 | 0 | if (type == (N_UNDF | N_EXT)) |
3356 | 0 | { |
3357 | 0 | bfd_vma value; |
3358 | |
|
3359 | 0 | value = GET_WORD (abfd, p->e_value); |
3360 | 0 | if (value != 0) |
3361 | 0 | { |
3362 | | /* This symbol is common in the object from the archive |
3363 | | file. */ |
3364 | 0 | if (h->type == bfd_link_hash_undefined) |
3365 | 0 | { |
3366 | 0 | bfd *symbfd; |
3367 | 0 | unsigned int power; |
3368 | |
|
3369 | 0 | symbfd = h->u.undef.abfd; |
3370 | 0 | if (symbfd == NULL) |
3371 | 0 | { |
3372 | | /* This symbol was created as undefined from |
3373 | | outside BFD. We assume that we should link |
3374 | | in the object file. This is done for the -u |
3375 | | option in the linker. */ |
3376 | 0 | if (!(*info->callbacks |
3377 | 0 | ->add_archive_element) (info, abfd, name, subsbfd)) |
3378 | 0 | return false; |
3379 | 0 | *pneeded = true; |
3380 | 0 | return true; |
3381 | 0 | } |
3382 | | /* Turn the current link symbol into a common |
3383 | | symbol. It is already on the undefs list. */ |
3384 | 0 | h->type = bfd_link_hash_common; |
3385 | 0 | h->u.c.p = (struct bfd_link_hash_common_entry *) |
3386 | 0 | bfd_hash_allocate (&info->hash->table, |
3387 | 0 | sizeof (struct bfd_link_hash_common_entry)); |
3388 | 0 | if (h->u.c.p == NULL) |
3389 | 0 | return false; |
3390 | | |
3391 | 0 | h->u.c.size = value; |
3392 | | |
3393 | | /* FIXME: This isn't quite right. The maximum |
3394 | | alignment of a common symbol should be set by the |
3395 | | architecture of the output file, not of the input |
3396 | | file. */ |
3397 | 0 | power = bfd_log2 (value); |
3398 | 0 | if (power > bfd_get_arch_info (abfd)->section_align_power) |
3399 | 0 | power = bfd_get_arch_info (abfd)->section_align_power; |
3400 | 0 | h->u.c.p->alignment_power = power; |
3401 | |
|
3402 | 0 | h->u.c.p->section = bfd_make_section_old_way (symbfd, |
3403 | 0 | "COMMON"); |
3404 | 0 | } |
3405 | 0 | else |
3406 | 0 | { |
3407 | | /* Adjust the size of the common symbol if |
3408 | | necessary. */ |
3409 | 0 | if (value > h->u.c.size) |
3410 | 0 | h->u.c.size = value; |
3411 | 0 | } |
3412 | 0 | } |
3413 | 0 | } |
3414 | | |
3415 | 0 | if (type == N_WEAKA |
3416 | 0 | || type == N_WEAKT |
3417 | 0 | || type == N_WEAKD |
3418 | 0 | || type == N_WEAKB) |
3419 | 0 | { |
3420 | | /* This symbol is weak but defined. We must pull it in if |
3421 | | the current link symbol is undefined, but we don't want |
3422 | | it if the current link symbol is common. */ |
3423 | 0 | if (h->type == bfd_link_hash_undefined) |
3424 | 0 | { |
3425 | 0 | if (!(*info->callbacks |
3426 | 0 | ->add_archive_element) (info, abfd, name, subsbfd)) |
3427 | 0 | return false; |
3428 | 0 | *pneeded = true; |
3429 | 0 | return true; |
3430 | 0 | } |
3431 | 0 | } |
3432 | 0 | } |
3433 | | |
3434 | | /* We do not need this object file. */ |
3435 | 0 | return true; |
3436 | 0 | } Unexecuted instantiation: aout-cris.c:aout_link_check_ar_symbols Unexecuted instantiation: aout-ns32k.c:aout_link_check_ar_symbols Unexecuted instantiation: aout32.c:aout_link_check_ar_symbols |
3437 | | /* Check a single archive element to see if we need to include it in |
3438 | | the link. *PNEEDED is set according to whether this element is |
3439 | | needed in the link or not. This is called from |
3440 | | _bfd_generic_link_add_archive_symbols. */ |
3441 | | |
3442 | | static bool |
3443 | | aout_link_check_archive_element (bfd *abfd, |
3444 | | struct bfd_link_info *info, |
3445 | | struct bfd_link_hash_entry *h ATTRIBUTE_UNUSED, |
3446 | | const char *name ATTRIBUTE_UNUSED, |
3447 | | bool *pneeded) |
3448 | 0 | { |
3449 | 0 | bfd *oldbfd; |
3450 | 0 | bool needed; |
3451 | |
|
3452 | 0 | BFD_ASSERT (bfd_get_flavour (abfd) == bfd_target_aout_flavour); |
3453 | |
|
3454 | 0 | if (!aout_get_external_symbols (abfd)) |
3455 | 0 | return false; |
3456 | | |
3457 | 0 | oldbfd = abfd; |
3458 | 0 | if (!aout_link_check_ar_symbols (abfd, info, pneeded, &abfd)) |
3459 | 0 | return false; |
3460 | | |
3461 | 0 | needed = *pneeded; |
3462 | 0 | if (needed) |
3463 | 0 | { |
3464 | | /* Potentially, the add_archive_element hook may have set a |
3465 | | substitute BFD for us. */ |
3466 | 0 | if (abfd != oldbfd) |
3467 | 0 | { |
3468 | 0 | if (!info->keep_memory |
3469 | 0 | && !aout_link_free_symbols (oldbfd)) |
3470 | 0 | return false; |
3471 | 0 | if (!aout_get_external_symbols (abfd)) |
3472 | 0 | return false; |
3473 | 0 | } |
3474 | 0 | if (!aout_link_add_symbols (abfd, info)) |
3475 | 0 | return false; |
3476 | 0 | } |
3477 | | |
3478 | 0 | if (!info->keep_memory || !needed) |
3479 | 0 | { |
3480 | 0 | if (!aout_link_free_symbols (abfd)) |
3481 | 0 | return false; |
3482 | 0 | } |
3483 | | |
3484 | 0 | return true; |
3485 | 0 | } Unexecuted instantiation: aout-cris.c:aout_link_check_archive_element Unexecuted instantiation: aout-ns32k.c:aout_link_check_archive_element Unexecuted instantiation: aout32.c:aout_link_check_archive_element |
3486 | | |
3487 | | /* Given an a.out BFD, add symbols to the global hash table as |
3488 | | appropriate. */ |
3489 | | |
3490 | | bool |
3491 | | NAME (aout, link_add_symbols) (bfd *abfd, struct bfd_link_info *info) |
3492 | 0 | { |
3493 | 0 | switch (bfd_get_format (abfd)) |
3494 | 0 | { |
3495 | 0 | case bfd_object: |
3496 | 0 | return aout_link_add_object_symbols (abfd, info); |
3497 | 0 | case bfd_archive: |
3498 | 0 | return _bfd_generic_link_add_archive_symbols |
3499 | 0 | (abfd, info, aout_link_check_archive_element); |
3500 | 0 | default: |
3501 | 0 | bfd_set_error (bfd_error_wrong_format); |
3502 | 0 | return false; |
3503 | 0 | } |
3504 | 0 | } Unexecuted instantiation: cris_aout_32_link_add_symbols Unexecuted instantiation: ns32kaout_32_link_add_symbols Unexecuted instantiation: aout_32_link_add_symbols |
3505 | | |
3506 | | /* A hash table used for header files with N_BINCL entries. */ |
3507 | | |
3508 | | struct aout_link_includes_table |
3509 | | { |
3510 | | struct bfd_hash_table root; |
3511 | | }; |
3512 | | |
3513 | | /* A linked list of totals that we have found for a particular header |
3514 | | file. */ |
3515 | | |
3516 | | struct aout_link_includes_totals |
3517 | | { |
3518 | | struct aout_link_includes_totals *next; |
3519 | | bfd_vma total; |
3520 | | }; |
3521 | | |
3522 | | /* An entry in the header file hash table. */ |
3523 | | |
3524 | | struct aout_link_includes_entry |
3525 | | { |
3526 | | struct bfd_hash_entry root; |
3527 | | /* List of totals we have found for this file. */ |
3528 | | struct aout_link_includes_totals *totals; |
3529 | | }; |
3530 | | |
3531 | | /* Look up an entry in an the header file hash table. */ |
3532 | | |
3533 | | #define aout_link_includes_lookup(table, string, create, copy) \ |
3534 | 0 | ((struct aout_link_includes_entry *) \ |
3535 | 0 | bfd_hash_lookup (&(table)->root, (string), (create), (copy))) |
3536 | | |
3537 | | /* During the final link step we need to pass around a bunch of |
3538 | | information, so we do it in an instance of this structure. */ |
3539 | | |
3540 | | struct aout_final_link_info |
3541 | | { |
3542 | | /* General link information. */ |
3543 | | struct bfd_link_info *info; |
3544 | | /* Output bfd. */ |
3545 | | bfd *output_bfd; |
3546 | | /* Reloc file positions. */ |
3547 | | file_ptr treloff, dreloff; |
3548 | | /* File position of symbols. */ |
3549 | | file_ptr symoff; |
3550 | | /* String table. */ |
3551 | | struct bfd_strtab_hash *strtab; |
3552 | | /* Header file hash table. */ |
3553 | | struct aout_link_includes_table includes; |
3554 | | /* A buffer large enough to hold the contents of any section. */ |
3555 | | bfd_byte *contents; |
3556 | | /* A buffer large enough to hold the relocs of any section. */ |
3557 | | void * relocs; |
3558 | | /* A buffer large enough to hold the symbol map of any input BFD. */ |
3559 | | int *symbol_map; |
3560 | | /* A buffer large enough to hold output symbols of any input BFD. */ |
3561 | | struct external_nlist *output_syms; |
3562 | | }; |
3563 | | |
3564 | | /* The function to create a new entry in the header file hash table. */ |
3565 | | |
3566 | | static struct bfd_hash_entry * |
3567 | | aout_link_includes_newfunc (struct bfd_hash_entry *entry, |
3568 | | struct bfd_hash_table *table, |
3569 | | const char *string) |
3570 | 0 | { |
3571 | 0 | struct aout_link_includes_entry *ret = |
3572 | 0 | (struct aout_link_includes_entry *) entry; |
3573 | | |
3574 | | /* Allocate the structure if it has not already been allocated by a |
3575 | | subclass. */ |
3576 | 0 | if (ret == NULL) |
3577 | 0 | ret = (struct aout_link_includes_entry *) |
3578 | 0 | bfd_hash_allocate (table, sizeof (* ret)); |
3579 | 0 | if (ret == NULL) |
3580 | 0 | return NULL; |
3581 | | |
3582 | | /* Call the allocation method of the superclass. */ |
3583 | 0 | ret = ((struct aout_link_includes_entry *) |
3584 | 0 | bfd_hash_newfunc ((struct bfd_hash_entry *) ret, table, string)); |
3585 | 0 | if (ret) |
3586 | 0 | { |
3587 | | /* Set local fields. */ |
3588 | 0 | ret->totals = NULL; |
3589 | 0 | } |
3590 | |
|
3591 | 0 | return (struct bfd_hash_entry *) ret; |
3592 | 0 | } Unexecuted instantiation: aout-cris.c:aout_link_includes_newfunc Unexecuted instantiation: aout-ns32k.c:aout_link_includes_newfunc Unexecuted instantiation: aout32.c:aout_link_includes_newfunc |
3593 | | |
3594 | | /* Write out a symbol that was not associated with an a.out input |
3595 | | object. */ |
3596 | | |
3597 | | static bool |
3598 | | aout_link_write_other_symbol (struct bfd_hash_entry *bh, void *data) |
3599 | 0 | { |
3600 | 0 | struct aout_link_hash_entry *h = (struct aout_link_hash_entry *) bh; |
3601 | 0 | struct aout_final_link_info *flaginfo = (struct aout_final_link_info *) data; |
3602 | 0 | bfd *output_bfd; |
3603 | 0 | int type; |
3604 | 0 | bfd_vma val; |
3605 | 0 | struct external_nlist outsym; |
3606 | 0 | bfd_size_type indx; |
3607 | 0 | size_t amt; |
3608 | |
|
3609 | 0 | if (h->root.type == bfd_link_hash_warning) |
3610 | 0 | { |
3611 | 0 | h = (struct aout_link_hash_entry *) h->root.u.i.link; |
3612 | 0 | if (h->root.type == bfd_link_hash_new) |
3613 | 0 | return true; |
3614 | 0 | } |
3615 | | |
3616 | 0 | output_bfd = flaginfo->output_bfd; |
3617 | |
|
3618 | 0 | if (aout_backend_info (output_bfd)->write_dynamic_symbol != NULL) |
3619 | 0 | { |
3620 | 0 | if (! ((*aout_backend_info (output_bfd)->write_dynamic_symbol) |
3621 | 0 | (output_bfd, flaginfo->info, h))) |
3622 | 0 | { |
3623 | | /* FIXME: No way to handle errors. */ |
3624 | 0 | abort (); |
3625 | 0 | } |
3626 | 0 | } |
3627 | | |
3628 | 0 | if (h->written) |
3629 | 0 | return true; |
3630 | | |
3631 | 0 | h->written = true; |
3632 | | |
3633 | | /* An indx of -2 means the symbol must be written. */ |
3634 | 0 | if (h->indx != -2 |
3635 | 0 | && (flaginfo->info->strip == strip_all |
3636 | 0 | || (flaginfo->info->strip == strip_some |
3637 | 0 | && bfd_hash_lookup (flaginfo->info->keep_hash, h->root.root.string, |
3638 | 0 | false, false) == NULL))) |
3639 | 0 | return true; |
3640 | | |
3641 | 0 | switch (h->root.type) |
3642 | 0 | { |
3643 | 0 | default: |
3644 | 0 | case bfd_link_hash_warning: |
3645 | 0 | abort (); |
3646 | | /* Avoid variable not initialized warnings. */ |
3647 | 0 | return true; |
3648 | 0 | case bfd_link_hash_new: |
3649 | | /* This can happen for set symbols when sets are not being |
3650 | | built. */ |
3651 | 0 | return true; |
3652 | 0 | case bfd_link_hash_undefined: |
3653 | 0 | type = N_UNDF | N_EXT; |
3654 | 0 | val = 0; |
3655 | 0 | break; |
3656 | 0 | case bfd_link_hash_defined: |
3657 | 0 | case bfd_link_hash_defweak: |
3658 | 0 | { |
3659 | 0 | asection *sec; |
3660 | |
|
3661 | 0 | sec = h->root.u.def.section->output_section; |
3662 | 0 | BFD_ASSERT (bfd_is_abs_section (sec) |
3663 | 0 | || sec->owner == output_bfd); |
3664 | 0 | if (sec == obj_textsec (output_bfd)) |
3665 | 0 | type = h->root.type == bfd_link_hash_defined ? N_TEXT : N_WEAKT; |
3666 | 0 | else if (sec == obj_datasec (output_bfd)) |
3667 | 0 | type = h->root.type == bfd_link_hash_defined ? N_DATA : N_WEAKD; |
3668 | 0 | else if (sec == obj_bsssec (output_bfd)) |
3669 | 0 | type = h->root.type == bfd_link_hash_defined ? N_BSS : N_WEAKB; |
3670 | 0 | else |
3671 | 0 | type = h->root.type == bfd_link_hash_defined ? N_ABS : N_WEAKA; |
3672 | 0 | type |= N_EXT; |
3673 | 0 | val = (h->root.u.def.value |
3674 | 0 | + sec->vma |
3675 | 0 | + h->root.u.def.section->output_offset); |
3676 | 0 | } |
3677 | 0 | break; |
3678 | 0 | case bfd_link_hash_common: |
3679 | 0 | type = N_UNDF | N_EXT; |
3680 | 0 | val = h->root.u.c.size; |
3681 | 0 | break; |
3682 | 0 | case bfd_link_hash_undefweak: |
3683 | 0 | type = N_WEAKU; |
3684 | 0 | val = 0; |
3685 | 0 | break; |
3686 | 0 | case bfd_link_hash_indirect: |
3687 | | /* We ignore these symbols, since the indirected symbol is |
3688 | | already in the hash table. */ |
3689 | 0 | return true; |
3690 | 0 | } |
3691 | | |
3692 | 0 | H_PUT_8 (output_bfd, type, outsym.e_type); |
3693 | 0 | H_PUT_8 (output_bfd, 0, outsym.e_other); |
3694 | 0 | H_PUT_16 (output_bfd, 0, outsym.e_desc); |
3695 | 0 | indx = add_to_stringtab (output_bfd, flaginfo->strtab, h->root.root.string, |
3696 | 0 | false); |
3697 | 0 | if (indx == - (bfd_size_type) 1) |
3698 | | /* FIXME: No way to handle errors. */ |
3699 | 0 | abort (); |
3700 | | |
3701 | 0 | PUT_WORD (output_bfd, indx, outsym.e_strx); |
3702 | 0 | PUT_WORD (output_bfd, val, outsym.e_value); |
3703 | |
|
3704 | 0 | amt = EXTERNAL_NLIST_SIZE; |
3705 | 0 | if (bfd_seek (output_bfd, flaginfo->symoff, SEEK_SET) != 0 |
3706 | 0 | || bfd_write (&outsym, amt, output_bfd) != amt) |
3707 | | /* FIXME: No way to handle errors. */ |
3708 | 0 | abort (); |
3709 | | |
3710 | 0 | flaginfo->symoff += EXTERNAL_NLIST_SIZE; |
3711 | 0 | h->indx = obj_aout_external_sym_count (output_bfd); |
3712 | 0 | ++obj_aout_external_sym_count (output_bfd); |
3713 | |
|
3714 | 0 | return true; |
3715 | 0 | } Unexecuted instantiation: aout-cris.c:aout_link_write_other_symbol Unexecuted instantiation: aout-ns32k.c:aout_link_write_other_symbol Unexecuted instantiation: aout32.c:aout_link_write_other_symbol |
3716 | | |
3717 | | /* Handle a link order which is supposed to generate a reloc. */ |
3718 | | |
3719 | | static bool |
3720 | | aout_link_reloc_link_order (struct aout_final_link_info *flaginfo, |
3721 | | asection *o, |
3722 | | struct bfd_link_order *p) |
3723 | 0 | { |
3724 | 0 | struct bfd_link_order_reloc *pr; |
3725 | 0 | int r_index; |
3726 | 0 | int r_extern; |
3727 | 0 | reloc_howto_type *howto; |
3728 | 0 | file_ptr *reloff_ptr = NULL; |
3729 | 0 | struct reloc_std_external srel; |
3730 | 0 | struct reloc_ext_external erel; |
3731 | 0 | void * rel_ptr; |
3732 | 0 | size_t amt; |
3733 | |
|
3734 | 0 | pr = p->u.reloc.p; |
3735 | |
|
3736 | 0 | if (p->type == bfd_section_reloc_link_order) |
3737 | 0 | { |
3738 | 0 | r_extern = 0; |
3739 | 0 | if (bfd_is_abs_section (pr->u.section)) |
3740 | 0 | r_index = N_ABS | N_EXT; |
3741 | 0 | else |
3742 | 0 | { |
3743 | 0 | BFD_ASSERT (pr->u.section->owner == flaginfo->output_bfd); |
3744 | 0 | r_index = pr->u.section->target_index; |
3745 | 0 | } |
3746 | 0 | } |
3747 | 0 | else |
3748 | 0 | { |
3749 | 0 | struct aout_link_hash_entry *h; |
3750 | |
|
3751 | 0 | BFD_ASSERT (p->type == bfd_symbol_reloc_link_order); |
3752 | 0 | r_extern = 1; |
3753 | 0 | h = ((struct aout_link_hash_entry *) |
3754 | 0 | bfd_wrapped_link_hash_lookup (flaginfo->output_bfd, flaginfo->info, |
3755 | 0 | pr->u.name, false, false, true)); |
3756 | 0 | if (h != NULL |
3757 | 0 | && h->indx >= 0) |
3758 | 0 | r_index = h->indx; |
3759 | 0 | else if (h != NULL) |
3760 | 0 | { |
3761 | | /* We decided to strip this symbol, but it turns out that we |
3762 | | can't. Note that we lose the other and desc information |
3763 | | here. I don't think that will ever matter for a global |
3764 | | symbol. */ |
3765 | 0 | h->indx = -2; |
3766 | 0 | h->written = false; |
3767 | 0 | if (!aout_link_write_other_symbol (&h->root.root, flaginfo)) |
3768 | 0 | return false; |
3769 | 0 | r_index = h->indx; |
3770 | 0 | } |
3771 | 0 | else |
3772 | 0 | { |
3773 | 0 | (*flaginfo->info->callbacks->unattached_reloc) |
3774 | 0 | (flaginfo->info, pr->u.name, NULL, NULL, (bfd_vma) 0); |
3775 | 0 | r_index = 0; |
3776 | 0 | } |
3777 | 0 | } |
3778 | | |
3779 | 0 | howto = bfd_reloc_type_lookup (flaginfo->output_bfd, pr->reloc); |
3780 | 0 | if (howto == 0) |
3781 | 0 | { |
3782 | 0 | bfd_set_error (bfd_error_bad_value); |
3783 | 0 | return false; |
3784 | 0 | } |
3785 | | |
3786 | 0 | if (o == obj_textsec (flaginfo->output_bfd)) |
3787 | 0 | reloff_ptr = &flaginfo->treloff; |
3788 | 0 | else if (o == obj_datasec (flaginfo->output_bfd)) |
3789 | 0 | reloff_ptr = &flaginfo->dreloff; |
3790 | 0 | else |
3791 | 0 | abort (); |
3792 | | |
3793 | 0 | if (obj_reloc_entry_size (flaginfo->output_bfd) == RELOC_STD_SIZE) |
3794 | 0 | { |
3795 | | #ifdef MY_put_reloc |
3796 | 0 | MY_put_reloc (flaginfo->output_bfd, r_extern, r_index, p->offset, howto, |
3797 | | &srel); |
3798 | | #else |
3799 | | { |
3800 | | int r_pcrel; |
3801 | | int r_baserel; |
3802 | | int r_jmptable; |
3803 | | int r_relative; |
3804 | | unsigned int r_length; |
3805 | | |
3806 | | r_pcrel = (int) howto->pc_relative; |
3807 | | r_baserel = (howto->type & 8) != 0; |
3808 | | r_jmptable = (howto->type & 16) != 0; |
3809 | | r_relative = (howto->type & 32) != 0; |
3810 | | r_length = bfd_log2 (bfd_get_reloc_size (howto)); |
3811 | | |
3812 | 0 | PUT_WORD (flaginfo->output_bfd, p->offset, srel.r_address); |
3813 | 0 | if (bfd_header_big_endian (flaginfo->output_bfd)) |
3814 | 0 | { |
3815 | 0 | srel.r_index[0] = r_index >> 16; |
3816 | 0 | srel.r_index[1] = r_index >> 8; |
3817 | 0 | srel.r_index[2] = r_index; |
3818 | 0 | srel.r_type[0] = |
3819 | 0 | ((r_extern ? RELOC_STD_BITS_EXTERN_BIG : 0) |
3820 | 0 | | (r_pcrel ? RELOC_STD_BITS_PCREL_BIG : 0) |
3821 | 0 | | (r_baserel ? RELOC_STD_BITS_BASEREL_BIG : 0) |
3822 | 0 | | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_BIG : 0) |
3823 | 0 | | (r_relative ? RELOC_STD_BITS_RELATIVE_BIG : 0) |
3824 | 0 | | (r_length << RELOC_STD_BITS_LENGTH_SH_BIG)); |
3825 | 0 | } |
3826 | 0 | else |
3827 | 0 | { |
3828 | 0 | srel.r_index[2] = r_index >> 16; |
3829 | 0 | srel.r_index[1] = r_index >> 8; |
3830 | 0 | srel.r_index[0] = r_index; |
3831 | 0 | srel.r_type[0] = |
3832 | 0 | ((r_extern ? RELOC_STD_BITS_EXTERN_LITTLE : 0) |
3833 | 0 | | (r_pcrel ? RELOC_STD_BITS_PCREL_LITTLE : 0) |
3834 | 0 | | (r_baserel ? RELOC_STD_BITS_BASEREL_LITTLE : 0) |
3835 | 0 | | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_LITTLE : 0) |
3836 | 0 | | (r_relative ? RELOC_STD_BITS_RELATIVE_LITTLE : 0) |
3837 | 0 | | (r_length << RELOC_STD_BITS_LENGTH_SH_LITTLE)); |
3838 | 0 | } |
3839 | | } |
3840 | | #endif |
3841 | 0 | rel_ptr = (void *) &srel; |
3842 | | |
3843 | | /* We have to write the addend into the object file, since |
3844 | | standard a.out relocs are in place. It would be more |
3845 | | reliable if we had the current contents of the file here, |
3846 | | rather than assuming zeroes, but we can't read the file since |
3847 | | it was opened using bfd_openw. */ |
3848 | 0 | if (pr->addend != 0) |
3849 | 0 | { |
3850 | 0 | bfd_size_type size; |
3851 | 0 | bfd_reloc_status_type r; |
3852 | 0 | bfd_byte *buf; |
3853 | 0 | bool ok; |
3854 | |
|
3855 | 0 | size = bfd_get_reloc_size (howto); |
3856 | 0 | buf = (bfd_byte *) bfd_zmalloc (size); |
3857 | 0 | if (buf == NULL && size != 0) |
3858 | 0 | return false; |
3859 | 0 | r = MY_relocate_contents (howto, flaginfo->output_bfd, |
3860 | 0 | (bfd_vma) pr->addend, buf); |
3861 | 0 | switch (r) |
3862 | 0 | { |
3863 | 0 | case bfd_reloc_ok: |
3864 | 0 | break; |
3865 | 0 | default: |
3866 | 0 | case bfd_reloc_outofrange: |
3867 | 0 | abort (); |
3868 | 0 | case bfd_reloc_overflow: |
3869 | 0 | (*flaginfo->info->callbacks->reloc_overflow) |
3870 | 0 | (flaginfo->info, NULL, |
3871 | 0 | (p->type == bfd_section_reloc_link_order |
3872 | 0 | ? bfd_section_name (pr->u.section) |
3873 | 0 | : pr->u.name), |
3874 | 0 | howto->name, pr->addend, NULL, NULL, (bfd_vma) 0); |
3875 | 0 | break; |
3876 | 0 | } |
3877 | 0 | ok = bfd_set_section_contents (flaginfo->output_bfd, o, (void *) buf, |
3878 | 0 | (file_ptr) p->offset, size); |
3879 | 0 | free (buf); |
3880 | 0 | if (! ok) |
3881 | 0 | return false; |
3882 | 0 | } |
3883 | 0 | } |
3884 | 0 | else |
3885 | 0 | { |
3886 | | #ifdef MY_put_ext_reloc |
3887 | | MY_put_ext_reloc (flaginfo->output_bfd, r_extern, r_index, p->offset, |
3888 | | howto, &erel, pr->addend); |
3889 | | #else |
3890 | 0 | PUT_WORD (flaginfo->output_bfd, p->offset, erel.r_address); |
3891 | |
|
3892 | 0 | if (bfd_header_big_endian (flaginfo->output_bfd)) |
3893 | 0 | { |
3894 | 0 | erel.r_index[0] = r_index >> 16; |
3895 | 0 | erel.r_index[1] = r_index >> 8; |
3896 | 0 | erel.r_index[2] = r_index; |
3897 | 0 | erel.r_type[0] = |
3898 | 0 | ((r_extern ? RELOC_EXT_BITS_EXTERN_BIG : 0) |
3899 | 0 | | (howto->type << RELOC_EXT_BITS_TYPE_SH_BIG)); |
3900 | 0 | } |
3901 | 0 | else |
3902 | 0 | { |
3903 | 0 | erel.r_index[2] = r_index >> 16; |
3904 | 0 | erel.r_index[1] = r_index >> 8; |
3905 | 0 | erel.r_index[0] = r_index; |
3906 | 0 | erel.r_type[0] = |
3907 | 0 | (r_extern ? RELOC_EXT_BITS_EXTERN_LITTLE : 0) |
3908 | 0 | | (howto->type << RELOC_EXT_BITS_TYPE_SH_LITTLE); |
3909 | 0 | } |
3910 | |
|
3911 | 0 | PUT_WORD (flaginfo->output_bfd, (bfd_vma) pr->addend, erel.r_addend); |
3912 | 0 | #endif /* MY_put_ext_reloc */ |
3913 | |
|
3914 | 0 | rel_ptr = (void *) &erel; |
3915 | 0 | } |
3916 | | |
3917 | 0 | amt = obj_reloc_entry_size (flaginfo->output_bfd); |
3918 | 0 | if (bfd_seek (flaginfo->output_bfd, *reloff_ptr, SEEK_SET) != 0 |
3919 | 0 | || bfd_write (rel_ptr, amt, flaginfo->output_bfd) != amt) |
3920 | 0 | return false; |
3921 | | |
3922 | 0 | *reloff_ptr += obj_reloc_entry_size (flaginfo->output_bfd); |
3923 | | |
3924 | | /* Assert that the relocs have not run into the symbols, and that n |
3925 | | the text relocs have not run into the data relocs. */ |
3926 | 0 | BFD_ASSERT (*reloff_ptr <= obj_sym_filepos (flaginfo->output_bfd) |
3927 | 0 | && (reloff_ptr != &flaginfo->treloff |
3928 | 0 | || (*reloff_ptr |
3929 | 0 | <= obj_datasec (flaginfo->output_bfd)->rel_filepos))); |
3930 | |
|
3931 | 0 | return true; |
3932 | 0 | } Unexecuted instantiation: aout-cris.c:aout_link_reloc_link_order Unexecuted instantiation: aout-ns32k.c:aout_link_reloc_link_order Unexecuted instantiation: aout32.c:aout_link_reloc_link_order |
3933 | | |
3934 | | /* Get the section corresponding to a reloc index. */ |
3935 | | |
3936 | | static inline asection * |
3937 | | aout_reloc_index_to_section (bfd *abfd, int indx) |
3938 | 0 | { |
3939 | 0 | switch (indx & N_TYPE) |
3940 | 0 | { |
3941 | 0 | case N_TEXT: return obj_textsec (abfd); |
3942 | 0 | case N_DATA: return obj_datasec (abfd); |
3943 | 0 | case N_BSS: return obj_bsssec (abfd); |
3944 | 0 | case N_ABS: |
3945 | 0 | case N_UNDF: return bfd_abs_section_ptr; |
3946 | 0 | default: abort (); |
3947 | 0 | } |
3948 | 0 | return NULL; |
3949 | 0 | } Unexecuted instantiation: aout-cris.c:aout_reloc_index_to_section Unexecuted instantiation: aout-ns32k.c:aout_reloc_index_to_section Unexecuted instantiation: aout32.c:aout_reloc_index_to_section |
3950 | | |
3951 | | /* Relocate an a.out section using standard a.out relocs. */ |
3952 | | |
3953 | | static bool |
3954 | | aout_link_input_section_std (struct aout_final_link_info *flaginfo, |
3955 | | bfd *input_bfd, |
3956 | | asection *input_section, |
3957 | | struct reloc_std_external *relocs, |
3958 | | bfd_size_type rel_size, |
3959 | | bfd_byte *contents) |
3960 | 0 | { |
3961 | 0 | bool (*check_dynamic_reloc) |
3962 | 0 | (struct bfd_link_info *, bfd *, asection *, |
3963 | 0 | struct aout_link_hash_entry *, void *, bfd_byte *, bool *, bfd_vma *); |
3964 | 0 | bfd *output_bfd; |
3965 | 0 | bool relocatable; |
3966 | 0 | struct external_nlist *syms; |
3967 | 0 | char *strings; |
3968 | 0 | struct aout_link_hash_entry **sym_hashes; |
3969 | 0 | int *symbol_map; |
3970 | 0 | bfd_size_type reloc_count; |
3971 | 0 | struct reloc_std_external *rel; |
3972 | 0 | struct reloc_std_external *rel_end; |
3973 | |
|
3974 | 0 | output_bfd = flaginfo->output_bfd; |
3975 | 0 | check_dynamic_reloc = aout_backend_info (output_bfd)->check_dynamic_reloc; |
3976 | |
|
3977 | 0 | BFD_ASSERT (obj_reloc_entry_size (input_bfd) == RELOC_STD_SIZE); |
3978 | 0 | BFD_ASSERT (input_bfd->xvec->header_byteorder |
3979 | 0 | == output_bfd->xvec->header_byteorder); |
3980 | |
|
3981 | 0 | relocatable = bfd_link_relocatable (flaginfo->info); |
3982 | 0 | syms = obj_aout_external_syms (input_bfd); |
3983 | 0 | strings = obj_aout_external_strings (input_bfd); |
3984 | 0 | sym_hashes = obj_aout_sym_hashes (input_bfd); |
3985 | 0 | symbol_map = flaginfo->symbol_map; |
3986 | |
|
3987 | 0 | reloc_count = rel_size / RELOC_STD_SIZE; |
3988 | 0 | rel = relocs; |
3989 | 0 | rel_end = rel + reloc_count; |
3990 | 0 | for (; rel < rel_end; rel++) |
3991 | 0 | { |
3992 | 0 | bfd_vma r_addr; |
3993 | 0 | unsigned int r_index; |
3994 | 0 | int r_extern; |
3995 | 0 | int r_pcrel; |
3996 | 0 | int r_baserel = 0; |
3997 | 0 | reloc_howto_type *howto; |
3998 | 0 | struct aout_link_hash_entry *h = NULL; |
3999 | 0 | bfd_vma relocation; |
4000 | 0 | bfd_reloc_status_type r; |
4001 | |
|
4002 | 0 | r_addr = GET_SWORD (input_bfd, rel->r_address); |
4003 | |
|
4004 | | #ifdef MY_reloc_howto |
4005 | 0 | howto = MY_reloc_howto (input_bfd, rel, r_index, r_extern, r_pcrel); |
4006 | | #else |
4007 | | { |
4008 | | int r_jmptable; |
4009 | | int r_relative; |
4010 | | int r_length; |
4011 | | unsigned int howto_idx; |
4012 | | |
4013 | 0 | if (bfd_header_big_endian (input_bfd)) |
4014 | 0 | { |
4015 | 0 | r_index = (((unsigned int) rel->r_index[0] << 16) |
4016 | 0 | | ((unsigned int) rel->r_index[1] << 8) |
4017 | 0 | | rel->r_index[2]); |
4018 | 0 | r_extern = (0 != (rel->r_type[0] & RELOC_STD_BITS_EXTERN_BIG)); |
4019 | 0 | r_pcrel = (0 != (rel->r_type[0] & RELOC_STD_BITS_PCREL_BIG)); |
4020 | 0 | r_baserel = (0 != (rel->r_type[0] & RELOC_STD_BITS_BASEREL_BIG)); |
4021 | 0 | r_jmptable= (0 != (rel->r_type[0] & RELOC_STD_BITS_JMPTABLE_BIG)); |
4022 | 0 | r_relative= (0 != (rel->r_type[0] & RELOC_STD_BITS_RELATIVE_BIG)); |
4023 | 0 | r_length = ((rel->r_type[0] & RELOC_STD_BITS_LENGTH_BIG) |
4024 | 0 | >> RELOC_STD_BITS_LENGTH_SH_BIG); |
4025 | 0 | } |
4026 | 0 | else |
4027 | 0 | { |
4028 | 0 | r_index = (((unsigned int) rel->r_index[2] << 16) |
4029 | 0 | | ((unsigned int) rel->r_index[1] << 8) |
4030 | 0 | | rel->r_index[0]); |
4031 | 0 | r_extern = (0 != (rel->r_type[0] & RELOC_STD_BITS_EXTERN_LITTLE)); |
4032 | 0 | r_pcrel = (0 != (rel->r_type[0] & RELOC_STD_BITS_PCREL_LITTLE)); |
4033 | 0 | r_baserel = (0 != (rel->r_type[0] |
4034 | 0 | & RELOC_STD_BITS_BASEREL_LITTLE)); |
4035 | 0 | r_jmptable= (0 != (rel->r_type[0] |
4036 | 0 | & RELOC_STD_BITS_JMPTABLE_LITTLE)); |
4037 | 0 | r_relative= (0 != (rel->r_type[0] |
4038 | 0 | & RELOC_STD_BITS_RELATIVE_LITTLE)); |
4039 | 0 | r_length = ((rel->r_type[0] & RELOC_STD_BITS_LENGTH_LITTLE) |
4040 | 0 | >> RELOC_STD_BITS_LENGTH_SH_LITTLE); |
4041 | 0 | } |
4042 | | |
4043 | | howto_idx = (r_length + 4 * r_pcrel + 8 * r_baserel |
4044 | | + 16 * r_jmptable + 32 * r_relative); |
4045 | 0 | if (howto_idx < TABLE_SIZE (howto_table_std)) |
4046 | 0 | howto = howto_table_std + howto_idx; |
4047 | 0 | else |
4048 | 0 | howto = NULL; |
4049 | | } |
4050 | | #endif |
4051 | |
|
4052 | 0 | if (howto == NULL) |
4053 | 0 | { |
4054 | 0 | _bfd_error_handler (_("%pB: unsupported relocation type"), |
4055 | 0 | input_bfd); |
4056 | 0 | bfd_set_error (bfd_error_bad_value); |
4057 | 0 | return false; |
4058 | 0 | } |
4059 | | |
4060 | 0 | if (relocatable) |
4061 | 0 | { |
4062 | | /* We are generating a relocatable output file, and must |
4063 | | modify the reloc accordingly. */ |
4064 | 0 | if (r_extern) |
4065 | 0 | { |
4066 | | /* If we know the symbol this relocation is against, |
4067 | | convert it into a relocation against a section. This |
4068 | | is what the native linker does. */ |
4069 | 0 | h = sym_hashes[r_index]; |
4070 | 0 | if (h != NULL |
4071 | 0 | && (h->root.type == bfd_link_hash_defined |
4072 | 0 | || h->root.type == bfd_link_hash_defweak)) |
4073 | 0 | { |
4074 | 0 | asection *output_section; |
4075 | | |
4076 | | /* Change the r_extern value. */ |
4077 | 0 | if (bfd_header_big_endian (output_bfd)) |
4078 | 0 | rel->r_type[0] &=~ RELOC_STD_BITS_EXTERN_BIG; |
4079 | 0 | else |
4080 | 0 | rel->r_type[0] &=~ RELOC_STD_BITS_EXTERN_LITTLE; |
4081 | | |
4082 | | /* Compute a new r_index. */ |
4083 | 0 | output_section = h->root.u.def.section->output_section; |
4084 | 0 | if (output_section == obj_textsec (output_bfd)) |
4085 | 0 | r_index = N_TEXT; |
4086 | 0 | else if (output_section == obj_datasec (output_bfd)) |
4087 | 0 | r_index = N_DATA; |
4088 | 0 | else if (output_section == obj_bsssec (output_bfd)) |
4089 | 0 | r_index = N_BSS; |
4090 | 0 | else |
4091 | 0 | r_index = N_ABS; |
4092 | | |
4093 | | /* Add the symbol value and the section VMA to the |
4094 | | addend stored in the contents. */ |
4095 | 0 | relocation = (h->root.u.def.value |
4096 | 0 | + output_section->vma |
4097 | 0 | + h->root.u.def.section->output_offset); |
4098 | 0 | } |
4099 | 0 | else |
4100 | 0 | { |
4101 | | /* We must change r_index according to the symbol |
4102 | | map. */ |
4103 | 0 | r_index = symbol_map[r_index]; |
4104 | |
|
4105 | 0 | if (r_index == -1u) |
4106 | 0 | { |
4107 | 0 | if (h != NULL) |
4108 | 0 | { |
4109 | | /* We decided to strip this symbol, but it |
4110 | | turns out that we can't. Note that we |
4111 | | lose the other and desc information here. |
4112 | | I don't think that will ever matter for a |
4113 | | global symbol. */ |
4114 | 0 | if (h->indx < 0) |
4115 | 0 | { |
4116 | 0 | h->indx = -2; |
4117 | 0 | h->written = false; |
4118 | 0 | if (!aout_link_write_other_symbol (&h->root.root, |
4119 | 0 | flaginfo)) |
4120 | 0 | return false; |
4121 | 0 | } |
4122 | 0 | r_index = h->indx; |
4123 | 0 | } |
4124 | 0 | else |
4125 | 0 | { |
4126 | 0 | const char *name; |
4127 | |
|
4128 | 0 | name = strings + GET_WORD (input_bfd, |
4129 | 0 | syms[r_index].e_strx); |
4130 | 0 | (*flaginfo->info->callbacks->unattached_reloc) |
4131 | 0 | (flaginfo->info, name, |
4132 | 0 | input_bfd, input_section, r_addr); |
4133 | 0 | r_index = 0; |
4134 | 0 | } |
4135 | 0 | } |
4136 | | |
4137 | 0 | relocation = 0; |
4138 | 0 | } |
4139 | | |
4140 | | /* Write out the new r_index value. */ |
4141 | 0 | if (bfd_header_big_endian (output_bfd)) |
4142 | 0 | { |
4143 | 0 | rel->r_index[0] = r_index >> 16; |
4144 | 0 | rel->r_index[1] = r_index >> 8; |
4145 | 0 | rel->r_index[2] = r_index; |
4146 | 0 | } |
4147 | 0 | else |
4148 | 0 | { |
4149 | 0 | rel->r_index[2] = r_index >> 16; |
4150 | 0 | rel->r_index[1] = r_index >> 8; |
4151 | 0 | rel->r_index[0] = r_index; |
4152 | 0 | } |
4153 | 0 | } |
4154 | 0 | else |
4155 | 0 | { |
4156 | 0 | asection *section; |
4157 | | |
4158 | | /* This is a relocation against a section. We must |
4159 | | adjust by the amount that the section moved. */ |
4160 | 0 | section = aout_reloc_index_to_section (input_bfd, r_index); |
4161 | 0 | relocation = (section->output_section->vma |
4162 | 0 | + section->output_offset |
4163 | 0 | - section->vma); |
4164 | 0 | } |
4165 | | |
4166 | | /* Change the address of the relocation. */ |
4167 | 0 | PUT_WORD (output_bfd, |
4168 | 0 | r_addr + input_section->output_offset, |
4169 | 0 | rel->r_address); |
4170 | | |
4171 | | /* Adjust a PC relative relocation by removing the reference |
4172 | | to the original address in the section and including the |
4173 | | reference to the new address. */ |
4174 | 0 | if (r_pcrel) |
4175 | 0 | relocation -= (input_section->output_section->vma |
4176 | 0 | + input_section->output_offset |
4177 | 0 | - input_section->vma); |
4178 | |
|
4179 | | #ifdef MY_relocatable_reloc |
4180 | | MY_relocatable_reloc (howto, output_bfd, rel, relocation, r_addr); |
4181 | | #endif |
4182 | |
|
4183 | 0 | if (relocation == 0) |
4184 | 0 | r = bfd_reloc_ok; |
4185 | 0 | else |
4186 | 0 | r = MY_relocate_contents (howto, |
4187 | 0 | input_bfd, relocation, |
4188 | 0 | contents + r_addr); |
4189 | 0 | } |
4190 | 0 | else |
4191 | 0 | { |
4192 | 0 | bool hundef; |
4193 | | |
4194 | | /* We are generating an executable, and must do a full |
4195 | | relocation. */ |
4196 | 0 | hundef = false; |
4197 | |
|
4198 | 0 | if (r_extern) |
4199 | 0 | { |
4200 | 0 | h = sym_hashes[r_index]; |
4201 | |
|
4202 | 0 | if (h != NULL |
4203 | 0 | && (h->root.type == bfd_link_hash_defined |
4204 | 0 | || h->root.type == bfd_link_hash_defweak)) |
4205 | 0 | { |
4206 | 0 | relocation = (h->root.u.def.value |
4207 | 0 | + h->root.u.def.section->output_section->vma |
4208 | 0 | + h->root.u.def.section->output_offset); |
4209 | 0 | } |
4210 | 0 | else if (h != NULL |
4211 | 0 | && h->root.type == bfd_link_hash_undefweak) |
4212 | 0 | relocation = 0; |
4213 | 0 | else |
4214 | 0 | { |
4215 | 0 | hundef = true; |
4216 | 0 | relocation = 0; |
4217 | 0 | } |
4218 | 0 | } |
4219 | 0 | else |
4220 | 0 | { |
4221 | 0 | asection *section; |
4222 | |
|
4223 | 0 | section = aout_reloc_index_to_section (input_bfd, r_index); |
4224 | 0 | relocation = (section->output_section->vma |
4225 | 0 | + section->output_offset |
4226 | 0 | - section->vma); |
4227 | 0 | if (r_pcrel) |
4228 | 0 | relocation += input_section->vma; |
4229 | 0 | } |
4230 | |
|
4231 | 0 | if (check_dynamic_reloc != NULL) |
4232 | 0 | { |
4233 | 0 | bool skip; |
4234 | |
|
4235 | 0 | if (! ((*check_dynamic_reloc) |
4236 | 0 | (flaginfo->info, input_bfd, input_section, h, |
4237 | 0 | (void *) rel, contents, &skip, &relocation))) |
4238 | 0 | return false; |
4239 | 0 | if (skip) |
4240 | 0 | continue; |
4241 | 0 | } |
4242 | | |
4243 | | /* Now warn if a global symbol is undefined. We could not |
4244 | | do this earlier, because check_dynamic_reloc might want |
4245 | | to skip this reloc. */ |
4246 | 0 | if (hundef && ! bfd_link_pic (flaginfo->info) && ! r_baserel) |
4247 | 0 | { |
4248 | 0 | const char *name; |
4249 | |
|
4250 | 0 | if (h != NULL) |
4251 | 0 | name = h->root.root.string; |
4252 | 0 | else |
4253 | 0 | name = strings + GET_WORD (input_bfd, syms[r_index].e_strx); |
4254 | 0 | (*flaginfo->info->callbacks->undefined_symbol) |
4255 | 0 | (flaginfo->info, name, input_bfd, input_section, r_addr, true); |
4256 | 0 | } |
4257 | |
|
4258 | 0 | r = MY_final_link_relocate (howto, |
4259 | 0 | input_bfd, input_section, |
4260 | 0 | contents, r_addr, relocation, |
4261 | 0 | (bfd_vma) 0); |
4262 | 0 | } |
4263 | | |
4264 | 0 | if (r != bfd_reloc_ok) |
4265 | 0 | { |
4266 | 0 | switch (r) |
4267 | 0 | { |
4268 | 0 | default: |
4269 | 0 | case bfd_reloc_outofrange: |
4270 | 0 | abort (); |
4271 | 0 | case bfd_reloc_overflow: |
4272 | 0 | { |
4273 | 0 | const char *name; |
4274 | |
|
4275 | 0 | if (h != NULL) |
4276 | 0 | name = NULL; |
4277 | 0 | else if (r_extern) |
4278 | 0 | name = strings + GET_WORD (input_bfd, |
4279 | 0 | syms[r_index].e_strx); |
4280 | 0 | else |
4281 | 0 | { |
4282 | 0 | asection *s; |
4283 | |
|
4284 | 0 | s = aout_reloc_index_to_section (input_bfd, r_index); |
4285 | 0 | name = bfd_section_name (s); |
4286 | 0 | } |
4287 | 0 | (*flaginfo->info->callbacks->reloc_overflow) |
4288 | 0 | (flaginfo->info, (h ? &h->root : NULL), name, howto->name, |
4289 | 0 | (bfd_vma) 0, input_bfd, input_section, r_addr); |
4290 | 0 | } |
4291 | 0 | break; |
4292 | 0 | } |
4293 | 0 | } |
4294 | 0 | } |
4295 | | |
4296 | 0 | return true; |
4297 | 0 | } Unexecuted instantiation: aout-cris.c:aout_link_input_section_std Unexecuted instantiation: aout-ns32k.c:aout_link_input_section_std Unexecuted instantiation: aout32.c:aout_link_input_section_std |
4298 | | |
4299 | | /* Relocate an a.out section using extended a.out relocs. */ |
4300 | | |
4301 | | static bool |
4302 | | aout_link_input_section_ext (struct aout_final_link_info *flaginfo, |
4303 | | bfd *input_bfd, |
4304 | | asection *input_section, |
4305 | | struct reloc_ext_external *relocs, |
4306 | | bfd_size_type rel_size, |
4307 | | bfd_byte *contents) |
4308 | 0 | { |
4309 | 0 | bool (*check_dynamic_reloc) |
4310 | 0 | (struct bfd_link_info *, bfd *, asection *, |
4311 | 0 | struct aout_link_hash_entry *, void *, bfd_byte *, bool *, bfd_vma *); |
4312 | 0 | bfd *output_bfd; |
4313 | 0 | bool relocatable; |
4314 | 0 | struct external_nlist *syms; |
4315 | 0 | char *strings; |
4316 | 0 | struct aout_link_hash_entry **sym_hashes; |
4317 | 0 | int *symbol_map; |
4318 | 0 | bfd_size_type reloc_count; |
4319 | 0 | struct reloc_ext_external *rel; |
4320 | 0 | struct reloc_ext_external *rel_end; |
4321 | |
|
4322 | 0 | output_bfd = flaginfo->output_bfd; |
4323 | 0 | check_dynamic_reloc = aout_backend_info (output_bfd)->check_dynamic_reloc; |
4324 | |
|
4325 | 0 | BFD_ASSERT (obj_reloc_entry_size (input_bfd) == RELOC_EXT_SIZE); |
4326 | 0 | BFD_ASSERT (input_bfd->xvec->header_byteorder |
4327 | 0 | == output_bfd->xvec->header_byteorder); |
4328 | |
|
4329 | 0 | relocatable = bfd_link_relocatable (flaginfo->info); |
4330 | 0 | syms = obj_aout_external_syms (input_bfd); |
4331 | 0 | strings = obj_aout_external_strings (input_bfd); |
4332 | 0 | sym_hashes = obj_aout_sym_hashes (input_bfd); |
4333 | 0 | symbol_map = flaginfo->symbol_map; |
4334 | |
|
4335 | 0 | reloc_count = rel_size / RELOC_EXT_SIZE; |
4336 | 0 | rel = relocs; |
4337 | 0 | rel_end = rel + reloc_count; |
4338 | 0 | for (; rel < rel_end; rel++) |
4339 | 0 | { |
4340 | 0 | bfd_vma r_addr; |
4341 | 0 | unsigned int r_index; |
4342 | 0 | int r_extern; |
4343 | 0 | unsigned int r_type; |
4344 | 0 | bfd_vma r_addend; |
4345 | 0 | struct aout_link_hash_entry *h = NULL; |
4346 | 0 | asection *r_section = NULL; |
4347 | 0 | bfd_vma relocation; |
4348 | |
|
4349 | 0 | r_addr = GET_SWORD (input_bfd, rel->r_address); |
4350 | |
|
4351 | 0 | if (bfd_header_big_endian (input_bfd)) |
4352 | 0 | { |
4353 | 0 | r_index = (((unsigned int) rel->r_index[0] << 16) |
4354 | 0 | | ((unsigned int) rel->r_index[1] << 8) |
4355 | 0 | | rel->r_index[2]); |
4356 | 0 | r_extern = (0 != (rel->r_type[0] & RELOC_EXT_BITS_EXTERN_BIG)); |
4357 | 0 | r_type = ((rel->r_type[0] & RELOC_EXT_BITS_TYPE_BIG) |
4358 | 0 | >> RELOC_EXT_BITS_TYPE_SH_BIG); |
4359 | 0 | } |
4360 | 0 | else |
4361 | 0 | { |
4362 | 0 | r_index = (((unsigned int) rel->r_index[2] << 16) |
4363 | 0 | | ((unsigned int) rel->r_index[1] << 8) |
4364 | 0 | | rel->r_index[0]); |
4365 | 0 | r_extern = (0 != (rel->r_type[0] & RELOC_EXT_BITS_EXTERN_LITTLE)); |
4366 | 0 | r_type = ((rel->r_type[0] & RELOC_EXT_BITS_TYPE_LITTLE) |
4367 | 0 | >> RELOC_EXT_BITS_TYPE_SH_LITTLE); |
4368 | 0 | } |
4369 | |
|
4370 | 0 | r_addend = GET_SWORD (input_bfd, rel->r_addend); |
4371 | |
|
4372 | 0 | if (r_type >= TABLE_SIZE (howto_table_ext)) |
4373 | 0 | { |
4374 | 0 | _bfd_error_handler (_("%pB: unsupported relocation type %#x"), |
4375 | 0 | input_bfd, r_type); |
4376 | 0 | bfd_set_error (bfd_error_bad_value); |
4377 | 0 | return false; |
4378 | 0 | } |
4379 | | |
4380 | 0 | if (relocatable) |
4381 | 0 | { |
4382 | | /* We are generating a relocatable output file, and must |
4383 | | modify the reloc accordingly. */ |
4384 | 0 | if (r_extern |
4385 | 0 | || r_type == (unsigned int) RELOC_BASE10 |
4386 | 0 | || r_type == (unsigned int) RELOC_BASE13 |
4387 | 0 | || r_type == (unsigned int) RELOC_BASE22) |
4388 | 0 | { |
4389 | | /* If we know the symbol this relocation is against, |
4390 | | convert it into a relocation against a section. This |
4391 | | is what the native linker does. */ |
4392 | 0 | if (r_type == (unsigned int) RELOC_BASE10 |
4393 | 0 | || r_type == (unsigned int) RELOC_BASE13 |
4394 | 0 | || r_type == (unsigned int) RELOC_BASE22) |
4395 | 0 | h = NULL; |
4396 | 0 | else |
4397 | 0 | h = sym_hashes[r_index]; |
4398 | 0 | if (h != NULL |
4399 | 0 | && (h->root.type == bfd_link_hash_defined |
4400 | 0 | || h->root.type == bfd_link_hash_defweak)) |
4401 | 0 | { |
4402 | 0 | asection *output_section; |
4403 | | |
4404 | | /* Change the r_extern value. */ |
4405 | 0 | if (bfd_header_big_endian (output_bfd)) |
4406 | 0 | rel->r_type[0] &=~ RELOC_EXT_BITS_EXTERN_BIG; |
4407 | 0 | else |
4408 | 0 | rel->r_type[0] &=~ RELOC_EXT_BITS_EXTERN_LITTLE; |
4409 | | |
4410 | | /* Compute a new r_index. */ |
4411 | 0 | output_section = h->root.u.def.section->output_section; |
4412 | 0 | if (output_section == obj_textsec (output_bfd)) |
4413 | 0 | r_index = N_TEXT; |
4414 | 0 | else if (output_section == obj_datasec (output_bfd)) |
4415 | 0 | r_index = N_DATA; |
4416 | 0 | else if (output_section == obj_bsssec (output_bfd)) |
4417 | 0 | r_index = N_BSS; |
4418 | 0 | else |
4419 | 0 | r_index = N_ABS; |
4420 | | |
4421 | | /* Add the symbol value and the section VMA to the |
4422 | | addend. */ |
4423 | 0 | relocation = (h->root.u.def.value |
4424 | 0 | + output_section->vma |
4425 | 0 | + h->root.u.def.section->output_offset); |
4426 | | |
4427 | | /* Now RELOCATION is the VMA of the final |
4428 | | destination. If this is a PC relative reloc, |
4429 | | then ADDEND is the negative of the source VMA. |
4430 | | We want to set ADDEND to the difference between |
4431 | | the destination VMA and the source VMA, which |
4432 | | means we must adjust RELOCATION by the change in |
4433 | | the source VMA. This is done below. */ |
4434 | 0 | } |
4435 | 0 | else |
4436 | 0 | { |
4437 | | /* We must change r_index according to the symbol |
4438 | | map. */ |
4439 | 0 | r_index = symbol_map[r_index]; |
4440 | |
|
4441 | 0 | if (r_index == -1u) |
4442 | 0 | { |
4443 | 0 | if (h != NULL) |
4444 | 0 | { |
4445 | | /* We decided to strip this symbol, but it |
4446 | | turns out that we can't. Note that we |
4447 | | lose the other and desc information here. |
4448 | | I don't think that will ever matter for a |
4449 | | global symbol. */ |
4450 | 0 | if (h->indx < 0) |
4451 | 0 | { |
4452 | 0 | h->indx = -2; |
4453 | 0 | h->written = false; |
4454 | 0 | if (!aout_link_write_other_symbol (&h->root.root, |
4455 | 0 | flaginfo)) |
4456 | 0 | return false; |
4457 | 0 | } |
4458 | 0 | r_index = h->indx; |
4459 | 0 | } |
4460 | 0 | else |
4461 | 0 | { |
4462 | 0 | const char *name; |
4463 | |
|
4464 | 0 | name = strings + GET_WORD (input_bfd, |
4465 | 0 | syms[r_index].e_strx); |
4466 | 0 | (*flaginfo->info->callbacks->unattached_reloc) |
4467 | 0 | (flaginfo->info, name, |
4468 | 0 | input_bfd, input_section, r_addr); |
4469 | 0 | r_index = 0; |
4470 | 0 | } |
4471 | 0 | } |
4472 | | |
4473 | 0 | relocation = 0; |
4474 | | |
4475 | | /* If this is a PC relative reloc, then the addend |
4476 | | is the negative of the source VMA. We must |
4477 | | adjust it by the change in the source VMA. This |
4478 | | is done below. */ |
4479 | 0 | } |
4480 | | |
4481 | | /* Write out the new r_index value. */ |
4482 | 0 | if (bfd_header_big_endian (output_bfd)) |
4483 | 0 | { |
4484 | 0 | rel->r_index[0] = r_index >> 16; |
4485 | 0 | rel->r_index[1] = r_index >> 8; |
4486 | 0 | rel->r_index[2] = r_index; |
4487 | 0 | } |
4488 | 0 | else |
4489 | 0 | { |
4490 | 0 | rel->r_index[2] = r_index >> 16; |
4491 | 0 | rel->r_index[1] = r_index >> 8; |
4492 | 0 | rel->r_index[0] = r_index; |
4493 | 0 | } |
4494 | 0 | } |
4495 | 0 | else |
4496 | 0 | { |
4497 | | /* This is a relocation against a section. We must |
4498 | | adjust by the amount that the section moved. */ |
4499 | 0 | r_section = aout_reloc_index_to_section (input_bfd, r_index); |
4500 | 0 | relocation = (r_section->output_section->vma |
4501 | 0 | + r_section->output_offset |
4502 | 0 | - r_section->vma); |
4503 | | |
4504 | | /* If this is a PC relative reloc, then the addend is |
4505 | | the difference in VMA between the destination and the |
4506 | | source. We have just adjusted for the change in VMA |
4507 | | of the destination, so we must also adjust by the |
4508 | | change in VMA of the source. This is done below. */ |
4509 | 0 | } |
4510 | | |
4511 | | /* As described above, we must always adjust a PC relative |
4512 | | reloc by the change in VMA of the source. However, if |
4513 | | pcrel_offset is set, then the addend does not include the |
4514 | | location within the section, in which case we don't need |
4515 | | to adjust anything. */ |
4516 | 0 | if (howto_table_ext[r_type].pc_relative |
4517 | 0 | && ! howto_table_ext[r_type].pcrel_offset) |
4518 | 0 | relocation -= (input_section->output_section->vma |
4519 | 0 | + input_section->output_offset |
4520 | 0 | - input_section->vma); |
4521 | | |
4522 | | /* Change the addend if necessary. */ |
4523 | 0 | if (relocation != 0) |
4524 | 0 | PUT_WORD (output_bfd, r_addend + relocation, rel->r_addend); |
4525 | | |
4526 | | /* Change the address of the relocation. */ |
4527 | 0 | PUT_WORD (output_bfd, |
4528 | 0 | r_addr + input_section->output_offset, |
4529 | 0 | rel->r_address); |
4530 | 0 | } |
4531 | 0 | else |
4532 | 0 | { |
4533 | 0 | bool hundef; |
4534 | 0 | bfd_reloc_status_type r; |
4535 | | |
4536 | | /* We are generating an executable, and must do a full |
4537 | | relocation. */ |
4538 | 0 | hundef = false; |
4539 | |
|
4540 | 0 | if (r_extern) |
4541 | 0 | { |
4542 | 0 | h = sym_hashes[r_index]; |
4543 | |
|
4544 | 0 | if (h != NULL |
4545 | 0 | && (h->root.type == bfd_link_hash_defined |
4546 | 0 | || h->root.type == bfd_link_hash_defweak)) |
4547 | 0 | { |
4548 | 0 | relocation = (h->root.u.def.value |
4549 | 0 | + h->root.u.def.section->output_section->vma |
4550 | 0 | + h->root.u.def.section->output_offset); |
4551 | 0 | } |
4552 | 0 | else if (h != NULL |
4553 | 0 | && h->root.type == bfd_link_hash_undefweak) |
4554 | 0 | relocation = 0; |
4555 | 0 | else |
4556 | 0 | { |
4557 | 0 | hundef = true; |
4558 | 0 | relocation = 0; |
4559 | 0 | } |
4560 | 0 | } |
4561 | 0 | else if (r_type == (unsigned int) RELOC_BASE10 |
4562 | 0 | || r_type == (unsigned int) RELOC_BASE13 |
4563 | 0 | || r_type == (unsigned int) RELOC_BASE22) |
4564 | 0 | { |
4565 | 0 | struct external_nlist *sym; |
4566 | 0 | int type; |
4567 | | |
4568 | | /* For base relative relocs, r_index is always an index |
4569 | | into the symbol table, even if r_extern is 0. */ |
4570 | 0 | sym = syms + r_index; |
4571 | 0 | type = H_GET_8 (input_bfd, sym->e_type); |
4572 | 0 | if ((type & N_TYPE) == N_TEXT |
4573 | 0 | || type == N_WEAKT) |
4574 | 0 | r_section = obj_textsec (input_bfd); |
4575 | 0 | else if ((type & N_TYPE) == N_DATA |
4576 | 0 | || type == N_WEAKD) |
4577 | 0 | r_section = obj_datasec (input_bfd); |
4578 | 0 | else if ((type & N_TYPE) == N_BSS |
4579 | 0 | || type == N_WEAKB) |
4580 | 0 | r_section = obj_bsssec (input_bfd); |
4581 | 0 | else if ((type & N_TYPE) == N_ABS |
4582 | 0 | || type == N_WEAKA) |
4583 | 0 | r_section = bfd_abs_section_ptr; |
4584 | 0 | else |
4585 | 0 | abort (); |
4586 | 0 | relocation = (r_section->output_section->vma |
4587 | 0 | + r_section->output_offset |
4588 | 0 | + (GET_WORD (input_bfd, sym->e_value) |
4589 | 0 | - r_section->vma)); |
4590 | 0 | } |
4591 | 0 | else |
4592 | 0 | { |
4593 | 0 | r_section = aout_reloc_index_to_section (input_bfd, r_index); |
4594 | | |
4595 | | /* If this is a PC relative reloc, then R_ADDEND is the |
4596 | | difference between the two vmas, or |
4597 | | old_dest_sec + old_dest_off - (old_src_sec + old_src_off) |
4598 | | where |
4599 | | old_dest_sec == section->vma |
4600 | | and |
4601 | | old_src_sec == input_section->vma |
4602 | | and |
4603 | | old_src_off == r_addr |
4604 | | |
4605 | | _bfd_final_link_relocate expects RELOCATION + |
4606 | | R_ADDEND to be the VMA of the destination minus |
4607 | | r_addr (the minus r_addr is because this relocation |
4608 | | is not pcrel_offset, which is a bit confusing and |
4609 | | should, perhaps, be changed), or |
4610 | | new_dest_sec |
4611 | | where |
4612 | | new_dest_sec == output_section->vma + output_offset |
4613 | | We arrange for this to happen by setting RELOCATION to |
4614 | | new_dest_sec + old_src_sec - old_dest_sec |
4615 | | |
4616 | | If this is not a PC relative reloc, then R_ADDEND is |
4617 | | simply the VMA of the destination, so we set |
4618 | | RELOCATION to the change in the destination VMA, or |
4619 | | new_dest_sec - old_dest_sec |
4620 | | */ |
4621 | 0 | relocation = (r_section->output_section->vma |
4622 | 0 | + r_section->output_offset |
4623 | 0 | - r_section->vma); |
4624 | 0 | if (howto_table_ext[r_type].pc_relative) |
4625 | 0 | relocation += input_section->vma; |
4626 | 0 | } |
4627 | | |
4628 | 0 | if (check_dynamic_reloc != NULL) |
4629 | 0 | { |
4630 | 0 | bool skip; |
4631 | |
|
4632 | 0 | if (! ((*check_dynamic_reloc) |
4633 | 0 | (flaginfo->info, input_bfd, input_section, h, |
4634 | 0 | (void *) rel, contents, &skip, &relocation))) |
4635 | 0 | return false; |
4636 | 0 | if (skip) |
4637 | 0 | continue; |
4638 | 0 | } |
4639 | | |
4640 | | /* Now warn if a global symbol is undefined. We could not |
4641 | | do this earlier, because check_dynamic_reloc might want |
4642 | | to skip this reloc. */ |
4643 | 0 | if (hundef |
4644 | 0 | && ! bfd_link_pic (flaginfo->info) |
4645 | 0 | && r_type != (unsigned int) RELOC_BASE10 |
4646 | 0 | && r_type != (unsigned int) RELOC_BASE13 |
4647 | 0 | && r_type != (unsigned int) RELOC_BASE22) |
4648 | 0 | { |
4649 | 0 | const char *name; |
4650 | |
|
4651 | 0 | if (h != NULL) |
4652 | 0 | name = h->root.root.string; |
4653 | 0 | else |
4654 | 0 | name = strings + GET_WORD (input_bfd, syms[r_index].e_strx); |
4655 | 0 | (*flaginfo->info->callbacks->undefined_symbol) |
4656 | 0 | (flaginfo->info, name, input_bfd, input_section, r_addr, true); |
4657 | 0 | } |
4658 | |
|
4659 | 0 | if (r_type != (unsigned int) RELOC_SPARC_REV32) |
4660 | 0 | r = MY_final_link_relocate (howto_table_ext + r_type, |
4661 | 0 | input_bfd, input_section, |
4662 | 0 | contents, r_addr, relocation, |
4663 | 0 | r_addend); |
4664 | 0 | else |
4665 | 0 | { |
4666 | 0 | bfd_vma x; |
4667 | |
|
4668 | 0 | x = bfd_get_32 (input_bfd, contents + r_addr); |
4669 | 0 | x = x + relocation + r_addend; |
4670 | 0 | bfd_putl32 (/*input_bfd,*/ x, contents + r_addr); |
4671 | 0 | r = bfd_reloc_ok; |
4672 | 0 | } |
4673 | |
|
4674 | 0 | if (r != bfd_reloc_ok) |
4675 | 0 | { |
4676 | 0 | switch (r) |
4677 | 0 | { |
4678 | 0 | default: |
4679 | 0 | case bfd_reloc_outofrange: |
4680 | 0 | abort (); |
4681 | 0 | case bfd_reloc_overflow: |
4682 | 0 | { |
4683 | 0 | const char *name; |
4684 | |
|
4685 | 0 | if (h != NULL) |
4686 | 0 | name = NULL; |
4687 | 0 | else if (r_extern |
4688 | 0 | || r_type == (unsigned int) RELOC_BASE10 |
4689 | 0 | || r_type == (unsigned int) RELOC_BASE13 |
4690 | 0 | || r_type == (unsigned int) RELOC_BASE22) |
4691 | 0 | name = strings + GET_WORD (input_bfd, |
4692 | 0 | syms[r_index].e_strx); |
4693 | 0 | else |
4694 | 0 | { |
4695 | 0 | asection *s; |
4696 | |
|
4697 | 0 | s = aout_reloc_index_to_section (input_bfd, r_index); |
4698 | 0 | name = bfd_section_name (s); |
4699 | 0 | } |
4700 | 0 | (*flaginfo->info->callbacks->reloc_overflow) |
4701 | 0 | (flaginfo->info, (h ? &h->root : NULL), name, |
4702 | 0 | howto_table_ext[r_type].name, |
4703 | 0 | r_addend, input_bfd, input_section, r_addr); |
4704 | 0 | } |
4705 | 0 | break; |
4706 | 0 | } |
4707 | 0 | } |
4708 | 0 | } |
4709 | 0 | } |
4710 | | |
4711 | 0 | return true; |
4712 | 0 | } Unexecuted instantiation: aout-cris.c:aout_link_input_section_ext Unexecuted instantiation: aout-ns32k.c:aout_link_input_section_ext Unexecuted instantiation: aout32.c:aout_link_input_section_ext |
4713 | | |
4714 | | /* Link an a.out section into the output file. */ |
4715 | | |
4716 | | static bool |
4717 | | aout_link_input_section (struct aout_final_link_info *flaginfo, |
4718 | | bfd *input_bfd, |
4719 | | asection *input_section, |
4720 | | file_ptr *reloff_ptr, |
4721 | | bfd_size_type rel_size) |
4722 | 0 | { |
4723 | 0 | bfd_size_type input_size; |
4724 | 0 | void * relocs; |
4725 | | |
4726 | | /* Get the section contents. */ |
4727 | 0 | input_size = input_section->size; |
4728 | 0 | if (! bfd_get_section_contents (input_bfd, input_section, |
4729 | 0 | (void *) flaginfo->contents, |
4730 | 0 | (file_ptr) 0, input_size)) |
4731 | 0 | return false; |
4732 | | |
4733 | 0 | relocs = flaginfo->relocs; |
4734 | 0 | if (rel_size > 0) |
4735 | 0 | { |
4736 | 0 | if (bfd_seek (input_bfd, input_section->rel_filepos, SEEK_SET) != 0 |
4737 | 0 | || bfd_read (relocs, rel_size, input_bfd) != rel_size) |
4738 | 0 | return false; |
4739 | 0 | } |
4740 | | |
4741 | | /* Relocate the section contents. */ |
4742 | 0 | if (obj_reloc_entry_size (input_bfd) == RELOC_STD_SIZE) |
4743 | 0 | { |
4744 | 0 | if (! aout_link_input_section_std (flaginfo, input_bfd, input_section, |
4745 | 0 | (struct reloc_std_external *) relocs, |
4746 | 0 | rel_size, flaginfo->contents)) |
4747 | 0 | return false; |
4748 | 0 | } |
4749 | 0 | else |
4750 | 0 | { |
4751 | 0 | if (! aout_link_input_section_ext (flaginfo, input_bfd, input_section, |
4752 | 0 | (struct reloc_ext_external *) relocs, |
4753 | 0 | rel_size, flaginfo->contents)) |
4754 | 0 | return false; |
4755 | 0 | } |
4756 | | |
4757 | | /* Write out the section contents. */ |
4758 | 0 | if (! bfd_set_section_contents (flaginfo->output_bfd, |
4759 | 0 | input_section->output_section, |
4760 | 0 | (void *) flaginfo->contents, |
4761 | 0 | (file_ptr) input_section->output_offset, |
4762 | 0 | input_size)) |
4763 | 0 | return false; |
4764 | | |
4765 | | /* If we are producing relocatable output, the relocs were |
4766 | | modified, and we now write them out. */ |
4767 | 0 | if (bfd_link_relocatable (flaginfo->info) && rel_size > 0) |
4768 | 0 | { |
4769 | 0 | if (bfd_seek (flaginfo->output_bfd, *reloff_ptr, SEEK_SET) != 0) |
4770 | 0 | return false; |
4771 | 0 | if (bfd_write (relocs, rel_size, flaginfo->output_bfd) != rel_size) |
4772 | 0 | return false; |
4773 | 0 | *reloff_ptr += rel_size; |
4774 | | |
4775 | | /* Assert that the relocs have not run into the symbols, and |
4776 | | that if these are the text relocs they have not run into the |
4777 | | data relocs. */ |
4778 | 0 | BFD_ASSERT (*reloff_ptr <= obj_sym_filepos (flaginfo->output_bfd) |
4779 | 0 | && (reloff_ptr != &flaginfo->treloff |
4780 | 0 | || (*reloff_ptr |
4781 | 0 | <= obj_datasec (flaginfo->output_bfd)->rel_filepos))); |
4782 | 0 | } |
4783 | | |
4784 | 0 | return true; |
4785 | 0 | } Unexecuted instantiation: aout-cris.c:aout_link_input_section Unexecuted instantiation: aout-ns32k.c:aout_link_input_section Unexecuted instantiation: aout32.c:aout_link_input_section |
4786 | | |
4787 | | /* Adjust and write out the symbols for an a.out file. Set the new |
4788 | | symbol indices into a symbol_map. */ |
4789 | | |
4790 | | static bool |
4791 | | aout_link_write_symbols (struct aout_final_link_info *flaginfo, bfd *input_bfd) |
4792 | 0 | { |
4793 | 0 | bfd *output_bfd; |
4794 | 0 | bfd_size_type sym_count; |
4795 | 0 | char *strings; |
4796 | 0 | enum bfd_link_strip strip; |
4797 | 0 | enum bfd_link_discard discard; |
4798 | 0 | struct external_nlist *outsym; |
4799 | 0 | bfd_size_type strtab_index; |
4800 | 0 | struct external_nlist *sym; |
4801 | 0 | struct external_nlist *sym_end; |
4802 | 0 | struct aout_link_hash_entry **sym_hash; |
4803 | 0 | int *symbol_map; |
4804 | 0 | bool pass; |
4805 | 0 | bool skip_next; |
4806 | |
|
4807 | 0 | output_bfd = flaginfo->output_bfd; |
4808 | 0 | sym_count = obj_aout_external_sym_count (input_bfd); |
4809 | 0 | strings = obj_aout_external_strings (input_bfd); |
4810 | 0 | strip = flaginfo->info->strip; |
4811 | 0 | discard = flaginfo->info->discard; |
4812 | 0 | outsym = flaginfo->output_syms; |
4813 | | |
4814 | | /* First write out a symbol for this object file, unless we are |
4815 | | discarding such symbols. */ |
4816 | 0 | if (strip != strip_all |
4817 | 0 | && (strip != strip_some |
4818 | 0 | || bfd_hash_lookup (flaginfo->info->keep_hash, |
4819 | 0 | bfd_get_filename (input_bfd), |
4820 | 0 | false, false) != NULL) |
4821 | 0 | && discard != discard_all) |
4822 | 0 | { |
4823 | 0 | H_PUT_8 (output_bfd, N_TEXT, outsym->e_type); |
4824 | 0 | H_PUT_8 (output_bfd, 0, outsym->e_other); |
4825 | 0 | H_PUT_16 (output_bfd, 0, outsym->e_desc); |
4826 | 0 | strtab_index = add_to_stringtab (output_bfd, flaginfo->strtab, |
4827 | 0 | bfd_get_filename (input_bfd), false); |
4828 | 0 | if (strtab_index == (bfd_size_type) -1) |
4829 | 0 | return false; |
4830 | 0 | PUT_WORD (output_bfd, strtab_index, outsym->e_strx); |
4831 | 0 | PUT_WORD (output_bfd, |
4832 | 0 | (bfd_section_vma (obj_textsec (input_bfd)->output_section) |
4833 | 0 | + obj_textsec (input_bfd)->output_offset), |
4834 | 0 | outsym->e_value); |
4835 | 0 | ++obj_aout_external_sym_count (output_bfd); |
4836 | 0 | ++outsym; |
4837 | 0 | } |
4838 | | |
4839 | 0 | pass = false; |
4840 | 0 | skip_next = false; |
4841 | 0 | sym = obj_aout_external_syms (input_bfd); |
4842 | 0 | sym_end = sym + sym_count; |
4843 | 0 | sym_hash = obj_aout_sym_hashes (input_bfd); |
4844 | 0 | symbol_map = flaginfo->symbol_map; |
4845 | 0 | memset (symbol_map, 0, (size_t) sym_count * sizeof *symbol_map); |
4846 | 0 | for (; sym < sym_end; sym++, sym_hash++, symbol_map++) |
4847 | 0 | { |
4848 | 0 | const char *name; |
4849 | 0 | int type; |
4850 | 0 | struct aout_link_hash_entry *h; |
4851 | 0 | bool skip; |
4852 | 0 | asection *symsec; |
4853 | 0 | bfd_vma val = 0; |
4854 | 0 | bool copy; |
4855 | | |
4856 | | /* We set *symbol_map to 0 above for all symbols. If it has |
4857 | | already been set to -1 for this symbol, it means that we are |
4858 | | discarding it because it appears in a duplicate header file. |
4859 | | See the N_BINCL code below. */ |
4860 | 0 | if (*symbol_map == -1) |
4861 | 0 | continue; |
4862 | | |
4863 | | /* Initialize *symbol_map to -1, which means that the symbol was |
4864 | | not copied into the output file. We will change it later if |
4865 | | we do copy the symbol over. */ |
4866 | 0 | *symbol_map = -1; |
4867 | |
|
4868 | 0 | type = H_GET_8 (input_bfd, sym->e_type); |
4869 | 0 | name = strings + GET_WORD (input_bfd, sym->e_strx); |
4870 | |
|
4871 | 0 | h = NULL; |
4872 | |
|
4873 | 0 | if (pass) |
4874 | 0 | { |
4875 | | /* Pass this symbol through. It is the target of an |
4876 | | indirect or warning symbol. */ |
4877 | 0 | val = GET_WORD (input_bfd, sym->e_value); |
4878 | 0 | pass = false; |
4879 | 0 | } |
4880 | 0 | else if (skip_next) |
4881 | 0 | { |
4882 | | /* Skip this symbol, which is the target of an indirect |
4883 | | symbol that we have changed to no longer be an indirect |
4884 | | symbol. */ |
4885 | 0 | skip_next = false; |
4886 | 0 | continue; |
4887 | 0 | } |
4888 | 0 | else |
4889 | 0 | { |
4890 | 0 | struct aout_link_hash_entry *hresolve; |
4891 | | |
4892 | | /* We have saved the hash table entry for this symbol, if |
4893 | | there is one. Note that we could just look it up again |
4894 | | in the hash table, provided we first check that it is an |
4895 | | external symbol. */ |
4896 | 0 | h = *sym_hash; |
4897 | | |
4898 | | /* Use the name from the hash table, in case the symbol was |
4899 | | wrapped. */ |
4900 | 0 | if (h != NULL |
4901 | 0 | && h->root.type != bfd_link_hash_warning) |
4902 | 0 | name = h->root.root.string; |
4903 | | |
4904 | | /* If this is an indirect or warning symbol, then change |
4905 | | hresolve to the base symbol. We also change *sym_hash so |
4906 | | that the relocation routines relocate against the real |
4907 | | symbol. */ |
4908 | 0 | hresolve = h; |
4909 | 0 | if (h != (struct aout_link_hash_entry *) NULL |
4910 | 0 | && (h->root.type == bfd_link_hash_indirect |
4911 | 0 | || h->root.type == bfd_link_hash_warning)) |
4912 | 0 | { |
4913 | 0 | hresolve = (struct aout_link_hash_entry *) h->root.u.i.link; |
4914 | 0 | while (hresolve->root.type == bfd_link_hash_indirect |
4915 | 0 | || hresolve->root.type == bfd_link_hash_warning) |
4916 | 0 | hresolve = ((struct aout_link_hash_entry *) |
4917 | 0 | hresolve->root.u.i.link); |
4918 | 0 | *sym_hash = hresolve; |
4919 | 0 | } |
4920 | | |
4921 | | /* If the symbol has already been written out, skip it. */ |
4922 | 0 | if (h != NULL |
4923 | 0 | && h->written) |
4924 | 0 | { |
4925 | 0 | if ((type & N_TYPE) == N_INDR |
4926 | 0 | || type == N_WARNING) |
4927 | 0 | skip_next = true; |
4928 | 0 | *symbol_map = h->indx; |
4929 | 0 | continue; |
4930 | 0 | } |
4931 | | |
4932 | | /* See if we are stripping this symbol. */ |
4933 | 0 | skip = false; |
4934 | 0 | switch (strip) |
4935 | 0 | { |
4936 | 0 | case strip_none: |
4937 | 0 | break; |
4938 | 0 | case strip_debugger: |
4939 | 0 | if ((type & N_STAB) != 0) |
4940 | 0 | skip = true; |
4941 | 0 | break; |
4942 | 0 | case strip_some: |
4943 | 0 | if (bfd_hash_lookup (flaginfo->info->keep_hash, name, false, false) |
4944 | 0 | == NULL) |
4945 | 0 | skip = true; |
4946 | 0 | break; |
4947 | 0 | case strip_all: |
4948 | 0 | skip = true; |
4949 | 0 | break; |
4950 | 0 | } |
4951 | 0 | if (skip) |
4952 | 0 | { |
4953 | 0 | if (h != NULL) |
4954 | 0 | h->written = true; |
4955 | 0 | continue; |
4956 | 0 | } |
4957 | | |
4958 | | /* Get the value of the symbol. */ |
4959 | 0 | if ((type & N_TYPE) == N_TEXT |
4960 | 0 | || type == N_WEAKT) |
4961 | 0 | symsec = obj_textsec (input_bfd); |
4962 | 0 | else if ((type & N_TYPE) == N_DATA |
4963 | 0 | || type == N_WEAKD) |
4964 | 0 | symsec = obj_datasec (input_bfd); |
4965 | 0 | else if ((type & N_TYPE) == N_BSS |
4966 | 0 | || type == N_WEAKB) |
4967 | 0 | symsec = obj_bsssec (input_bfd); |
4968 | 0 | else if ((type & N_TYPE) == N_ABS |
4969 | 0 | || type == N_WEAKA) |
4970 | 0 | symsec = bfd_abs_section_ptr; |
4971 | 0 | else if (((type & N_TYPE) == N_INDR |
4972 | 0 | && (hresolve == NULL |
4973 | 0 | || (hresolve->root.type != bfd_link_hash_defined |
4974 | 0 | && hresolve->root.type != bfd_link_hash_defweak |
4975 | 0 | && hresolve->root.type != bfd_link_hash_common))) |
4976 | 0 | || type == N_WARNING) |
4977 | 0 | { |
4978 | | /* Pass the next symbol through unchanged. The |
4979 | | condition above for indirect symbols is so that if |
4980 | | the indirect symbol was defined, we output it with |
4981 | | the correct definition so the debugger will |
4982 | | understand it. */ |
4983 | 0 | pass = true; |
4984 | 0 | val = GET_WORD (input_bfd, sym->e_value); |
4985 | 0 | symsec = NULL; |
4986 | 0 | } |
4987 | 0 | else if ((type & N_STAB) != 0) |
4988 | 0 | { |
4989 | 0 | val = GET_WORD (input_bfd, sym->e_value); |
4990 | 0 | symsec = NULL; |
4991 | 0 | } |
4992 | 0 | else |
4993 | 0 | { |
4994 | | /* If we get here with an indirect symbol, it means that |
4995 | | we are outputting it with a real definition. In such |
4996 | | a case we do not want to output the next symbol, |
4997 | | which is the target of the indirection. */ |
4998 | 0 | if ((type & N_TYPE) == N_INDR) |
4999 | 0 | skip_next = true; |
5000 | |
|
5001 | 0 | symsec = NULL; |
5002 | | |
5003 | | /* We need to get the value from the hash table. We use |
5004 | | hresolve so that if we have defined an indirect |
5005 | | symbol we output the final definition. */ |
5006 | 0 | if (h == NULL) |
5007 | 0 | { |
5008 | 0 | switch (type & N_TYPE) |
5009 | 0 | { |
5010 | 0 | case N_SETT: |
5011 | 0 | symsec = obj_textsec (input_bfd); |
5012 | 0 | break; |
5013 | 0 | case N_SETD: |
5014 | 0 | symsec = obj_datasec (input_bfd); |
5015 | 0 | break; |
5016 | 0 | case N_SETB: |
5017 | 0 | symsec = obj_bsssec (input_bfd); |
5018 | 0 | break; |
5019 | 0 | case N_SETA: |
5020 | 0 | symsec = bfd_abs_section_ptr; |
5021 | 0 | break; |
5022 | 0 | default: |
5023 | 0 | val = 0; |
5024 | 0 | break; |
5025 | 0 | } |
5026 | 0 | } |
5027 | 0 | else if (hresolve->root.type == bfd_link_hash_defined |
5028 | 0 | || hresolve->root.type == bfd_link_hash_defweak) |
5029 | 0 | { |
5030 | 0 | asection *input_section; |
5031 | 0 | asection *output_section; |
5032 | | |
5033 | | /* This case usually means a common symbol which was |
5034 | | turned into a defined symbol. */ |
5035 | 0 | input_section = hresolve->root.u.def.section; |
5036 | 0 | output_section = input_section->output_section; |
5037 | 0 | BFD_ASSERT (bfd_is_abs_section (output_section) |
5038 | 0 | || output_section->owner == output_bfd); |
5039 | 0 | val = (hresolve->root.u.def.value |
5040 | 0 | + bfd_section_vma (output_section) |
5041 | 0 | + input_section->output_offset); |
5042 | | |
5043 | | /* Get the correct type based on the section. If |
5044 | | this is a constructed set, force it to be |
5045 | | globally visible. */ |
5046 | 0 | if (type == N_SETT |
5047 | 0 | || type == N_SETD |
5048 | 0 | || type == N_SETB |
5049 | 0 | || type == N_SETA) |
5050 | 0 | type |= N_EXT; |
5051 | |
|
5052 | 0 | type &=~ N_TYPE; |
5053 | |
|
5054 | 0 | if (output_section == obj_textsec (output_bfd)) |
5055 | 0 | type |= (hresolve->root.type == bfd_link_hash_defined |
5056 | 0 | ? N_TEXT |
5057 | 0 | : N_WEAKT); |
5058 | 0 | else if (output_section == obj_datasec (output_bfd)) |
5059 | 0 | type |= (hresolve->root.type == bfd_link_hash_defined |
5060 | 0 | ? N_DATA |
5061 | 0 | : N_WEAKD); |
5062 | 0 | else if (output_section == obj_bsssec (output_bfd)) |
5063 | 0 | type |= (hresolve->root.type == bfd_link_hash_defined |
5064 | 0 | ? N_BSS |
5065 | 0 | : N_WEAKB); |
5066 | 0 | else |
5067 | 0 | type |= (hresolve->root.type == bfd_link_hash_defined |
5068 | 0 | ? N_ABS |
5069 | 0 | : N_WEAKA); |
5070 | 0 | } |
5071 | 0 | else if (hresolve->root.type == bfd_link_hash_common) |
5072 | 0 | val = hresolve->root.u.c.size; |
5073 | 0 | else if (hresolve->root.type == bfd_link_hash_undefweak) |
5074 | 0 | { |
5075 | 0 | val = 0; |
5076 | 0 | type = N_WEAKU; |
5077 | 0 | } |
5078 | 0 | else |
5079 | 0 | val = 0; |
5080 | 0 | } |
5081 | 0 | if (symsec != NULL) |
5082 | 0 | val = (symsec->output_section->vma |
5083 | 0 | + symsec->output_offset |
5084 | 0 | + (GET_WORD (input_bfd, sym->e_value) |
5085 | 0 | - symsec->vma)); |
5086 | | |
5087 | | /* If this is a global symbol set the written flag, and if |
5088 | | it is a local symbol see if we should discard it. */ |
5089 | 0 | if (h != NULL) |
5090 | 0 | { |
5091 | 0 | h->written = true; |
5092 | 0 | h->indx = obj_aout_external_sym_count (output_bfd); |
5093 | 0 | } |
5094 | 0 | else if ((type & N_TYPE) != N_SETT |
5095 | 0 | && (type & N_TYPE) != N_SETD |
5096 | 0 | && (type & N_TYPE) != N_SETB |
5097 | 0 | && (type & N_TYPE) != N_SETA) |
5098 | 0 | { |
5099 | 0 | switch (discard) |
5100 | 0 | { |
5101 | 0 | case discard_none: |
5102 | 0 | case discard_sec_merge: |
5103 | 0 | break; |
5104 | 0 | case discard_l: |
5105 | 0 | if ((type & N_STAB) == 0 |
5106 | 0 | && bfd_is_local_label_name (input_bfd, name)) |
5107 | 0 | skip = true; |
5108 | 0 | break; |
5109 | 0 | case discard_all: |
5110 | 0 | skip = true; |
5111 | 0 | break; |
5112 | 0 | } |
5113 | 0 | if (skip) |
5114 | 0 | { |
5115 | 0 | pass = false; |
5116 | 0 | continue; |
5117 | 0 | } |
5118 | 0 | } |
5119 | | |
5120 | | /* An N_BINCL symbol indicates the start of the stabs |
5121 | | entries for a header file. We need to scan ahead to the |
5122 | | next N_EINCL symbol, ignoring nesting, adding up all the |
5123 | | characters in the symbol names, not including the file |
5124 | | numbers in types (the first number after an open |
5125 | | parenthesis). */ |
5126 | 0 | if (type == (int) N_BINCL) |
5127 | 0 | { |
5128 | 0 | struct external_nlist *incl_sym; |
5129 | 0 | int nest; |
5130 | 0 | struct aout_link_includes_entry *incl_entry; |
5131 | 0 | struct aout_link_includes_totals *t; |
5132 | |
|
5133 | 0 | val = 0; |
5134 | 0 | nest = 0; |
5135 | 0 | for (incl_sym = sym + 1; incl_sym < sym_end; incl_sym++) |
5136 | 0 | { |
5137 | 0 | int incl_type; |
5138 | |
|
5139 | 0 | incl_type = H_GET_8 (input_bfd, incl_sym->e_type); |
5140 | 0 | if (incl_type == (int) N_EINCL) |
5141 | 0 | { |
5142 | 0 | if (nest == 0) |
5143 | 0 | break; |
5144 | 0 | --nest; |
5145 | 0 | } |
5146 | 0 | else if (incl_type == (int) N_BINCL) |
5147 | 0 | ++nest; |
5148 | 0 | else if (nest == 0) |
5149 | 0 | { |
5150 | 0 | const char *s; |
5151 | |
|
5152 | 0 | s = strings + GET_WORD (input_bfd, incl_sym->e_strx); |
5153 | 0 | for (; *s != '\0'; s++) |
5154 | 0 | { |
5155 | 0 | val += *s; |
5156 | 0 | if (*s == '(') |
5157 | 0 | { |
5158 | | /* Skip the file number. */ |
5159 | 0 | ++s; |
5160 | 0 | while (ISDIGIT (*s)) |
5161 | 0 | ++s; |
5162 | 0 | --s; |
5163 | 0 | } |
5164 | 0 | } |
5165 | 0 | } |
5166 | 0 | } |
5167 | | |
5168 | | /* If we have already included a header file with the |
5169 | | same value, then replace this one with an N_EXCL |
5170 | | symbol. */ |
5171 | 0 | copy = !flaginfo->info->keep_memory; |
5172 | 0 | incl_entry = aout_link_includes_lookup (&flaginfo->includes, |
5173 | 0 | name, true, copy); |
5174 | 0 | if (incl_entry == NULL) |
5175 | 0 | return false; |
5176 | 0 | for (t = incl_entry->totals; t != NULL; t = t->next) |
5177 | 0 | if (t->total == val) |
5178 | 0 | break; |
5179 | 0 | if (t == NULL) |
5180 | 0 | { |
5181 | | /* This is the first time we have seen this header |
5182 | | file with this set of stabs strings. */ |
5183 | 0 | t = (struct aout_link_includes_totals *) |
5184 | 0 | bfd_hash_allocate (&flaginfo->includes.root, |
5185 | 0 | sizeof *t); |
5186 | 0 | if (t == NULL) |
5187 | 0 | return false; |
5188 | 0 | t->total = val; |
5189 | 0 | t->next = incl_entry->totals; |
5190 | 0 | incl_entry->totals = t; |
5191 | 0 | } |
5192 | 0 | else |
5193 | 0 | { |
5194 | 0 | int *incl_map; |
5195 | | |
5196 | | /* This is a duplicate header file. We must change |
5197 | | it to be an N_EXCL entry, and mark all the |
5198 | | included symbols to prevent outputting them. */ |
5199 | 0 | type = (int) N_EXCL; |
5200 | |
|
5201 | 0 | nest = 0; |
5202 | 0 | for (incl_sym = sym + 1, incl_map = symbol_map + 1; |
5203 | 0 | incl_sym < sym_end; |
5204 | 0 | incl_sym++, incl_map++) |
5205 | 0 | { |
5206 | 0 | int incl_type; |
5207 | |
|
5208 | 0 | incl_type = H_GET_8 (input_bfd, incl_sym->e_type); |
5209 | 0 | if (incl_type == (int) N_EINCL) |
5210 | 0 | { |
5211 | 0 | if (nest == 0) |
5212 | 0 | { |
5213 | 0 | *incl_map = -1; |
5214 | 0 | break; |
5215 | 0 | } |
5216 | 0 | --nest; |
5217 | 0 | } |
5218 | 0 | else if (incl_type == (int) N_BINCL) |
5219 | 0 | ++nest; |
5220 | 0 | else if (nest == 0) |
5221 | 0 | *incl_map = -1; |
5222 | 0 | } |
5223 | 0 | } |
5224 | 0 | } |
5225 | 0 | } |
5226 | | |
5227 | | /* Copy this symbol into the list of symbols we are going to |
5228 | | write out. */ |
5229 | 0 | H_PUT_8 (output_bfd, type, outsym->e_type); |
5230 | 0 | H_PUT_8 (output_bfd, H_GET_8 (input_bfd, sym->e_other), outsym->e_other); |
5231 | 0 | H_PUT_16 (output_bfd, H_GET_16 (input_bfd, sym->e_desc), outsym->e_desc); |
5232 | 0 | copy = false; |
5233 | 0 | if (! flaginfo->info->keep_memory) |
5234 | 0 | { |
5235 | | /* name points into a string table which we are going to |
5236 | | free. If there is a hash table entry, use that string. |
5237 | | Otherwise, copy name into memory. */ |
5238 | 0 | if (h != NULL) |
5239 | 0 | name = h->root.root.string; |
5240 | 0 | else |
5241 | 0 | copy = true; |
5242 | 0 | } |
5243 | 0 | strtab_index = add_to_stringtab (output_bfd, flaginfo->strtab, |
5244 | 0 | name, copy); |
5245 | 0 | if (strtab_index == (bfd_size_type) -1) |
5246 | 0 | return false; |
5247 | 0 | PUT_WORD (output_bfd, strtab_index, outsym->e_strx); |
5248 | 0 | PUT_WORD (output_bfd, val, outsym->e_value); |
5249 | 0 | *symbol_map = obj_aout_external_sym_count (output_bfd); |
5250 | 0 | ++obj_aout_external_sym_count (output_bfd); |
5251 | 0 | ++outsym; |
5252 | 0 | } |
5253 | | |
5254 | | /* Write out the output symbols we have just constructed. */ |
5255 | 0 | if (outsym > flaginfo->output_syms) |
5256 | 0 | { |
5257 | 0 | bfd_size_type outsym_size; |
5258 | |
|
5259 | 0 | if (bfd_seek (output_bfd, flaginfo->symoff, SEEK_SET) != 0) |
5260 | 0 | return false; |
5261 | 0 | outsym_size = outsym - flaginfo->output_syms; |
5262 | 0 | outsym_size *= EXTERNAL_NLIST_SIZE; |
5263 | 0 | if (bfd_write (flaginfo->output_syms, outsym_size, output_bfd) |
5264 | 0 | != outsym_size) |
5265 | 0 | return false; |
5266 | 0 | flaginfo->symoff += outsym_size; |
5267 | 0 | } |
5268 | | |
5269 | 0 | return true; |
5270 | 0 | } Unexecuted instantiation: aout-cris.c:aout_link_write_symbols Unexecuted instantiation: aout-ns32k.c:aout_link_write_symbols Unexecuted instantiation: aout32.c:aout_link_write_symbols |
5271 | | |
5272 | | /* Link an a.out input BFD into the output file. */ |
5273 | | |
5274 | | static bool |
5275 | | aout_link_input_bfd (struct aout_final_link_info *flaginfo, bfd *input_bfd) |
5276 | 0 | { |
5277 | 0 | BFD_ASSERT (bfd_get_format (input_bfd) == bfd_object); |
5278 | 0 | BFD_ASSERT (bfd_get_flavour (input_bfd) == bfd_target_aout_flavour); |
5279 | | |
5280 | | /* If this is a dynamic object, it may need special handling. */ |
5281 | 0 | if ((input_bfd->flags & DYNAMIC) != 0 |
5282 | 0 | && aout_backend_info (input_bfd)->link_dynamic_object != NULL) |
5283 | 0 | return ((*aout_backend_info (input_bfd)->link_dynamic_object) |
5284 | 0 | (flaginfo->info, input_bfd)); |
5285 | | |
5286 | | /* Get the symbols. We probably have them already, unless |
5287 | | flaginfo->info->keep_memory is FALSE. */ |
5288 | 0 | if (! aout_get_external_symbols (input_bfd)) |
5289 | 0 | return false; |
5290 | | |
5291 | | /* Write out the symbols and get a map of the new indices. The map |
5292 | | is placed into flaginfo->symbol_map. */ |
5293 | 0 | if (! aout_link_write_symbols (flaginfo, input_bfd)) |
5294 | 0 | return false; |
5295 | | |
5296 | | /* Relocate and write out the sections. These functions use the |
5297 | | symbol map created by aout_link_write_symbols. The linker_mark |
5298 | | field will be set if these sections are to be included in the |
5299 | | link, which will normally be the case. */ |
5300 | 0 | if (obj_textsec (input_bfd)->linker_mark) |
5301 | 0 | { |
5302 | 0 | if (! aout_link_input_section (flaginfo, input_bfd, |
5303 | 0 | obj_textsec (input_bfd), |
5304 | 0 | &flaginfo->treloff, |
5305 | 0 | exec_hdr (input_bfd)->a_trsize)) |
5306 | 0 | return false; |
5307 | 0 | } |
5308 | 0 | if (obj_datasec (input_bfd)->linker_mark) |
5309 | 0 | { |
5310 | 0 | if (! aout_link_input_section (flaginfo, input_bfd, |
5311 | 0 | obj_datasec (input_bfd), |
5312 | 0 | &flaginfo->dreloff, |
5313 | 0 | exec_hdr (input_bfd)->a_drsize)) |
5314 | 0 | return false; |
5315 | 0 | } |
5316 | | |
5317 | | /* If we are not keeping memory, we don't need the symbols any |
5318 | | longer. We still need them if we are keeping memory, because the |
5319 | | strings in the hash table point into them. */ |
5320 | 0 | if (! flaginfo->info->keep_memory) |
5321 | 0 | { |
5322 | 0 | if (! aout_link_free_symbols (input_bfd)) |
5323 | 0 | return false; |
5324 | 0 | } |
5325 | | |
5326 | 0 | return true; |
5327 | 0 | } Unexecuted instantiation: aout-cris.c:aout_link_input_bfd Unexecuted instantiation: aout-ns32k.c:aout_link_input_bfd Unexecuted instantiation: aout32.c:aout_link_input_bfd |
5328 | | |
5329 | | /* Do the final link step. This is called on the output BFD. The |
5330 | | INFO structure should point to a list of BFDs linked through the |
5331 | | link.next field which can be used to find each BFD which takes part |
5332 | | in the output. Also, each section in ABFD should point to a list |
5333 | | of bfd_link_order structures which list all the input sections for |
5334 | | the output section. */ |
5335 | | |
5336 | | bool |
5337 | | NAME (aout, final_link) (bfd *abfd, |
5338 | | struct bfd_link_info *info, |
5339 | | void (*callback) (bfd *, file_ptr *, file_ptr *, file_ptr *)) |
5340 | 0 | { |
5341 | 0 | struct aout_final_link_info aout_info; |
5342 | 0 | bool includes_hash_initialized = false; |
5343 | 0 | bfd *sub; |
5344 | 0 | bfd_size_type trsize, drsize; |
5345 | 0 | bfd_size_type max_contents_size; |
5346 | 0 | bfd_size_type max_relocs_size; |
5347 | 0 | bfd_size_type max_sym_count; |
5348 | 0 | struct bfd_link_order *p; |
5349 | 0 | asection *o; |
5350 | 0 | bool have_link_order_relocs; |
5351 | |
|
5352 | 0 | if (bfd_link_pic (info)) |
5353 | 0 | abfd->flags |= DYNAMIC; |
5354 | |
|
5355 | 0 | aout_info.info = info; |
5356 | 0 | aout_info.output_bfd = abfd; |
5357 | 0 | aout_info.contents = NULL; |
5358 | 0 | aout_info.relocs = NULL; |
5359 | 0 | aout_info.symbol_map = NULL; |
5360 | 0 | aout_info.output_syms = NULL; |
5361 | |
|
5362 | 0 | if (!bfd_hash_table_init_n (&aout_info.includes.root, |
5363 | 0 | aout_link_includes_newfunc, |
5364 | 0 | sizeof (struct aout_link_includes_entry), |
5365 | 0 | 251)) |
5366 | 0 | goto error_return; |
5367 | 0 | includes_hash_initialized = true; |
5368 | | |
5369 | | /* Figure out the largest section size. Also, if generating |
5370 | | relocatable output, count the relocs. */ |
5371 | 0 | trsize = 0; |
5372 | 0 | drsize = 0; |
5373 | 0 | max_contents_size = 0; |
5374 | 0 | max_relocs_size = 0; |
5375 | 0 | max_sym_count = 0; |
5376 | 0 | for (sub = info->input_bfds; sub != NULL; sub = sub->link.next) |
5377 | 0 | { |
5378 | 0 | bfd_size_type sz; |
5379 | |
|
5380 | 0 | if (bfd_link_relocatable (info)) |
5381 | 0 | { |
5382 | 0 | if (bfd_get_flavour (sub) == bfd_target_aout_flavour) |
5383 | 0 | { |
5384 | 0 | trsize += exec_hdr (sub)->a_trsize; |
5385 | 0 | drsize += exec_hdr (sub)->a_drsize; |
5386 | 0 | } |
5387 | 0 | else |
5388 | 0 | { |
5389 | | /* FIXME: We need to identify the .text and .data sections |
5390 | | and call get_reloc_upper_bound and canonicalize_reloc to |
5391 | | work out the number of relocs needed, and then multiply |
5392 | | by the reloc size. */ |
5393 | 0 | _bfd_error_handler |
5394 | | /* xgettext:c-format */ |
5395 | 0 | (_("%pB: relocatable link from %s to %s not supported"), |
5396 | 0 | abfd, sub->xvec->name, abfd->xvec->name); |
5397 | 0 | bfd_set_error (bfd_error_invalid_operation); |
5398 | 0 | goto error_return; |
5399 | 0 | } |
5400 | 0 | } |
5401 | | |
5402 | 0 | if (bfd_get_flavour (sub) == bfd_target_aout_flavour) |
5403 | 0 | { |
5404 | 0 | sz = obj_textsec (sub)->size; |
5405 | 0 | if (sz > max_contents_size) |
5406 | 0 | max_contents_size = sz; |
5407 | 0 | sz = obj_datasec (sub)->size; |
5408 | 0 | if (sz > max_contents_size) |
5409 | 0 | max_contents_size = sz; |
5410 | |
|
5411 | 0 | sz = exec_hdr (sub)->a_trsize; |
5412 | 0 | if (sz > max_relocs_size) |
5413 | 0 | max_relocs_size = sz; |
5414 | 0 | sz = exec_hdr (sub)->a_drsize; |
5415 | 0 | if (sz > max_relocs_size) |
5416 | 0 | max_relocs_size = sz; |
5417 | |
|
5418 | 0 | sz = obj_aout_external_sym_count (sub); |
5419 | 0 | if (sz > max_sym_count) |
5420 | 0 | max_sym_count = sz; |
5421 | 0 | } |
5422 | 0 | } |
5423 | | |
5424 | 0 | if (bfd_link_relocatable (info)) |
5425 | 0 | { |
5426 | 0 | if (obj_textsec (abfd) != NULL) |
5427 | 0 | trsize += (_bfd_count_link_order_relocs (obj_textsec (abfd) |
5428 | 0 | ->map_head.link_order) |
5429 | 0 | * obj_reloc_entry_size (abfd)); |
5430 | 0 | if (obj_datasec (abfd) != NULL) |
5431 | 0 | drsize += (_bfd_count_link_order_relocs (obj_datasec (abfd) |
5432 | 0 | ->map_head.link_order) |
5433 | 0 | * obj_reloc_entry_size (abfd)); |
5434 | 0 | } |
5435 | |
|
5436 | 0 | exec_hdr (abfd)->a_trsize = trsize; |
5437 | 0 | exec_hdr (abfd)->a_drsize = drsize; |
5438 | |
|
5439 | 0 | exec_hdr (abfd)->a_entry = bfd_get_start_address (abfd); |
5440 | | |
5441 | | /* Adjust the section sizes and vmas according to the magic number. |
5442 | | This sets a_text, a_data and a_bss in the exec_hdr and sets the |
5443 | | filepos for each section. */ |
5444 | 0 | if (! NAME (aout, adjust_sizes_and_vmas) (abfd)) |
5445 | 0 | goto error_return; |
5446 | | |
5447 | | /* The relocation and symbol file positions differ among a.out |
5448 | | targets. We are passed a callback routine from the backend |
5449 | | specific code to handle this. |
5450 | | FIXME: At this point we do not know how much space the symbol |
5451 | | table will require. This will not work for any (nonstandard) |
5452 | | a.out target that needs to know the symbol table size before it |
5453 | | can compute the relocation file positions. */ |
5454 | 0 | (*callback) (abfd, &aout_info.treloff, &aout_info.dreloff, |
5455 | 0 | &aout_info.symoff); |
5456 | 0 | obj_textsec (abfd)->rel_filepos = aout_info.treloff; |
5457 | 0 | obj_datasec (abfd)->rel_filepos = aout_info.dreloff; |
5458 | 0 | obj_sym_filepos (abfd) = aout_info.symoff; |
5459 | | |
5460 | | /* We keep a count of the symbols as we output them. */ |
5461 | 0 | obj_aout_external_sym_count (abfd) = 0; |
5462 | | |
5463 | | /* We accumulate the string table as we write out the symbols. */ |
5464 | 0 | aout_info.strtab = _bfd_stringtab_init (); |
5465 | 0 | if (aout_info.strtab == NULL) |
5466 | 0 | goto error_return; |
5467 | | |
5468 | | /* Allocate buffers to hold section contents and relocs. */ |
5469 | 0 | aout_info.contents = (bfd_byte *) bfd_malloc (max_contents_size); |
5470 | 0 | aout_info.relocs = bfd_malloc (max_relocs_size); |
5471 | 0 | aout_info.symbol_map = (int *) bfd_malloc (max_sym_count * sizeof (int)); |
5472 | 0 | aout_info.output_syms = (struct external_nlist *) |
5473 | 0 | bfd_malloc ((max_sym_count + 1) * sizeof (struct external_nlist)); |
5474 | 0 | if ((aout_info.contents == NULL && max_contents_size != 0) |
5475 | 0 | || (aout_info.relocs == NULL && max_relocs_size != 0) |
5476 | 0 | || (aout_info.symbol_map == NULL && max_sym_count != 0) |
5477 | 0 | || aout_info.output_syms == NULL) |
5478 | 0 | goto error_return; |
5479 | | |
5480 | | /* If we have a symbol named __DYNAMIC, force it out now. This is |
5481 | | required by SunOS. Doing this here rather than in sunos.c is a |
5482 | | hack, but it's easier than exporting everything which would be |
5483 | | needed. */ |
5484 | 0 | { |
5485 | 0 | struct aout_link_hash_entry *h; |
5486 | |
|
5487 | 0 | h = aout_link_hash_lookup (aout_hash_table (info), "__DYNAMIC", |
5488 | 0 | false, false, false); |
5489 | 0 | if (h != NULL) |
5490 | 0 | aout_link_write_other_symbol (&h->root.root, &aout_info); |
5491 | 0 | } |
5492 | | |
5493 | | /* The most time efficient way to do the link would be to read all |
5494 | | the input object files into memory and then sort out the |
5495 | | information into the output file. Unfortunately, that will |
5496 | | probably use too much memory. Another method would be to step |
5497 | | through everything that composes the text section and write it |
5498 | | out, and then everything that composes the data section and write |
5499 | | it out, and then write out the relocs, and then write out the |
5500 | | symbols. Unfortunately, that requires reading stuff from each |
5501 | | input file several times, and we will not be able to keep all the |
5502 | | input files open simultaneously, and reopening them will be slow. |
5503 | | |
5504 | | What we do is basically process one input file at a time. We do |
5505 | | everything we need to do with an input file once--copy over the |
5506 | | section contents, handle the relocation information, and write |
5507 | | out the symbols--and then we throw away the information we read |
5508 | | from it. This approach requires a lot of lseeks of the output |
5509 | | file, which is unfortunate but still faster than reopening a lot |
5510 | | of files. |
5511 | | |
5512 | | We use the output_has_begun field of the input BFDs to see |
5513 | | whether we have already handled it. */ |
5514 | 0 | for (sub = info->input_bfds; sub != NULL; sub = sub->link.next) |
5515 | 0 | sub->output_has_begun = false; |
5516 | | |
5517 | | /* Mark all sections which are to be included in the link. This |
5518 | | will normally be every section. We need to do this so that we |
5519 | | can identify any sections which the linker has decided to not |
5520 | | include. */ |
5521 | 0 | for (o = abfd->sections; o != NULL; o = o->next) |
5522 | 0 | { |
5523 | 0 | for (p = o->map_head.link_order; p != NULL; p = p->next) |
5524 | 0 | if (p->type == bfd_indirect_link_order) |
5525 | 0 | p->u.indirect.section->linker_mark = true; |
5526 | 0 | } |
5527 | |
|
5528 | 0 | have_link_order_relocs = false; |
5529 | 0 | for (o = abfd->sections; o != NULL; o = o->next) |
5530 | 0 | { |
5531 | 0 | for (p = o->map_head.link_order; |
5532 | 0 | p != NULL; |
5533 | 0 | p = p->next) |
5534 | 0 | { |
5535 | 0 | if (p->type == bfd_indirect_link_order |
5536 | 0 | && (bfd_get_flavour (p->u.indirect.section->owner) |
5537 | 0 | == bfd_target_aout_flavour)) |
5538 | 0 | { |
5539 | 0 | bfd *input_bfd; |
5540 | |
|
5541 | 0 | input_bfd = p->u.indirect.section->owner; |
5542 | 0 | if (! input_bfd->output_has_begun) |
5543 | 0 | { |
5544 | 0 | if (! aout_link_input_bfd (&aout_info, input_bfd)) |
5545 | 0 | goto error_return; |
5546 | 0 | input_bfd->output_has_begun = true; |
5547 | 0 | } |
5548 | 0 | } |
5549 | 0 | else if (p->type == bfd_section_reloc_link_order |
5550 | 0 | || p->type == bfd_symbol_reloc_link_order) |
5551 | 0 | { |
5552 | | /* These are handled below. */ |
5553 | 0 | have_link_order_relocs = true; |
5554 | 0 | } |
5555 | 0 | else |
5556 | 0 | { |
5557 | 0 | if (! _bfd_default_link_order (abfd, info, o, p)) |
5558 | 0 | goto error_return; |
5559 | 0 | } |
5560 | 0 | } |
5561 | 0 | } |
5562 | | |
5563 | | /* Write out any symbols that we have not already written out. */ |
5564 | 0 | bfd_hash_traverse (&info->hash->table, |
5565 | 0 | aout_link_write_other_symbol, |
5566 | 0 | &aout_info); |
5567 | | |
5568 | | /* Now handle any relocs we were asked to create by the linker. |
5569 | | These did not come from any input file. We must do these after |
5570 | | we have written out all the symbols, so that we know the symbol |
5571 | | indices to use. */ |
5572 | 0 | if (have_link_order_relocs) |
5573 | 0 | { |
5574 | 0 | for (o = abfd->sections; o != NULL; o = o->next) |
5575 | 0 | { |
5576 | 0 | for (p = o->map_head.link_order; |
5577 | 0 | p != NULL; |
5578 | 0 | p = p->next) |
5579 | 0 | { |
5580 | 0 | if (p->type == bfd_section_reloc_link_order |
5581 | 0 | || p->type == bfd_symbol_reloc_link_order) |
5582 | 0 | { |
5583 | 0 | if (! aout_link_reloc_link_order (&aout_info, o, p)) |
5584 | 0 | goto error_return; |
5585 | 0 | } |
5586 | 0 | } |
5587 | 0 | } |
5588 | 0 | } |
5589 | | |
5590 | 0 | free (aout_info.contents); |
5591 | 0 | aout_info.contents = NULL; |
5592 | 0 | free (aout_info.relocs); |
5593 | 0 | aout_info.relocs = NULL; |
5594 | 0 | free (aout_info.symbol_map); |
5595 | 0 | aout_info.symbol_map = NULL; |
5596 | 0 | free (aout_info.output_syms); |
5597 | 0 | aout_info.output_syms = NULL; |
5598 | |
|
5599 | 0 | if (includes_hash_initialized) |
5600 | 0 | { |
5601 | 0 | bfd_hash_table_free (&aout_info.includes.root); |
5602 | 0 | includes_hash_initialized = false; |
5603 | 0 | } |
5604 | | |
5605 | | /* Finish up any dynamic linking we may be doing. */ |
5606 | 0 | if (aout_backend_info (abfd)->finish_dynamic_link != NULL) |
5607 | 0 | { |
5608 | 0 | if (! (*aout_backend_info (abfd)->finish_dynamic_link) (abfd, info)) |
5609 | 0 | goto error_return; |
5610 | 0 | } |
5611 | | |
5612 | | /* Update the header information. */ |
5613 | 0 | abfd->symcount = obj_aout_external_sym_count (abfd); |
5614 | 0 | exec_hdr (abfd)->a_syms = abfd->symcount * EXTERNAL_NLIST_SIZE; |
5615 | 0 | obj_str_filepos (abfd) = obj_sym_filepos (abfd) + exec_hdr (abfd)->a_syms; |
5616 | 0 | obj_textsec (abfd)->reloc_count = |
5617 | 0 | exec_hdr (abfd)->a_trsize / obj_reloc_entry_size (abfd); |
5618 | 0 | obj_datasec (abfd)->reloc_count = |
5619 | 0 | exec_hdr (abfd)->a_drsize / obj_reloc_entry_size (abfd); |
5620 | | |
5621 | | /* Write out the string table, unless there are no symbols. */ |
5622 | 0 | if (bfd_seek (abfd, obj_str_filepos (abfd), SEEK_SET) != 0) |
5623 | 0 | goto error_return; |
5624 | 0 | if (abfd->symcount > 0) |
5625 | 0 | { |
5626 | 0 | if (!emit_stringtab (abfd, aout_info.strtab)) |
5627 | 0 | goto error_return; |
5628 | 0 | } |
5629 | 0 | else |
5630 | 0 | { |
5631 | 0 | bfd_byte b[BYTES_IN_WORD]; |
5632 | |
|
5633 | 0 | memset (b, 0, BYTES_IN_WORD); |
5634 | 0 | if (bfd_write (b, BYTES_IN_WORD, abfd) != BYTES_IN_WORD) |
5635 | 0 | goto error_return; |
5636 | 0 | } |
5637 | | |
5638 | 0 | return true; |
5639 | | |
5640 | 0 | error_return: |
5641 | 0 | free (aout_info.contents); |
5642 | 0 | free (aout_info.relocs); |
5643 | 0 | free (aout_info.symbol_map); |
5644 | 0 | free (aout_info.output_syms); |
5645 | 0 | if (includes_hash_initialized) |
5646 | 0 | bfd_hash_table_free (&aout_info.includes.root); |
5647 | | return false; |
5648 | 0 | } Unexecuted instantiation: cris_aout_32_final_link Unexecuted instantiation: ns32kaout_32_final_link Unexecuted instantiation: aout_32_final_link |