1 /* Support for the generic parts of COFF, for BFD.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 Free Software Foundation, Inc.
5 Written by Cygnus Support.
7 This file is part of BFD, the Binary File Descriptor library.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 /* Most of this hacked by Steve Chamberlain, sac@cygnus.com.
24 Split out of coffcode.h by Ian Taylor, ian@cygnus.com. */
26 /* This file contains COFF code that is not dependent on any
27 particular COFF target. There is only one version of this file in
28 libbfd.a, so no target specific code may be put in here. Or, to
31 ********** DO NOT PUT TARGET SPECIFIC CODE IN THIS FILE **********
33 If you need to add some target specific behaviour, add a new hook
34 function to bfd_coff_backend_data.
36 Some of these functions are also called by the ECOFF routines.
37 Those functions may not use any COFF specific information, such as
43 #include "coff/internal.h"
46 static void coff_fix_symbol_name
47 PARAMS ((bfd
*, asymbol
*, combined_entry_type
*, bfd_size_type
*,
48 asection
**, bfd_size_type
*));
49 static boolean coff_write_symbol
50 PARAMS ((bfd
*, asymbol
*, combined_entry_type
*, bfd_vma
*,
51 bfd_size_type
*, asection
**, bfd_size_type
*));
52 static boolean coff_write_alien_symbol
53 PARAMS ((bfd
*, asymbol
*, bfd_vma
*, bfd_size_type
*,
54 asection
**, bfd_size_type
*));
55 static boolean coff_write_native_symbol
56 PARAMS ((bfd
*, coff_symbol_type
*, bfd_vma
*, bfd_size_type
*,
57 asection
**, bfd_size_type
*));
58 static void coff_pointerize_aux
59 PARAMS ((bfd
*, combined_entry_type
*, combined_entry_type
*,
60 unsigned int, combined_entry_type
*));
61 static boolean make_a_section_from_file
62 PARAMS ((bfd
*, struct internal_scnhdr
*, unsigned int));
63 static const bfd_target
*coff_real_object_p
64 PARAMS ((bfd
*, unsigned, struct internal_filehdr
*,
65 struct internal_aouthdr
*));
66 static void fixup_symbol_value
67 PARAMS ((bfd
*, coff_symbol_type
*, struct internal_syment
*));
68 static char *build_debug_section
70 static char *copy_name
71 PARAMS ((bfd
*, char *, size_t));
73 #define STRING_SIZE_SIZE (4)
75 /* Take a section header read from a coff file (in HOST byte order),
76 and make a BFD "section" out of it. This is used by ECOFF. */
78 make_a_section_from_file (abfd
, hdr
, target_index
)
80 struct internal_scnhdr
*hdr
;
81 unsigned int target_index
;
83 asection
*return_section
;
85 boolean result
= true;
90 /* Handle long section names as in PE. */
91 if (bfd_coff_long_section_names (abfd
)
92 && hdr
->s_name
[0] == '/')
99 memcpy (buf
, hdr
->s_name
+ 1, SCNNMLEN
- 1);
100 buf
[SCNNMLEN
- 1] = '\0';
101 strindex
= strtol (buf
, &p
, 10);
102 if (*p
== '\0' && strindex
>= 0)
104 strings
= _bfd_coff_read_string_table (abfd
);
107 /* FIXME: For extra safety, we should make sure that
108 strindex does not run us past the end, but right now we
109 don't know the length of the string table. */
111 name
= bfd_alloc (abfd
, (bfd_size_type
) strlen (strings
) + 1);
114 strcpy (name
, strings
);
120 /* Assorted wastage to null-terminate the name, thanks AT&T! */
121 name
= bfd_alloc (abfd
, (bfd_size_type
) sizeof (hdr
->s_name
) + 1);
124 strncpy (name
, (char *) &hdr
->s_name
[0], sizeof (hdr
->s_name
));
125 name
[sizeof (hdr
->s_name
)] = 0;
128 return_section
= bfd_make_section_anyway (abfd
, name
);
129 if (return_section
== NULL
)
132 return_section
->vma
= hdr
->s_vaddr
;
133 return_section
->lma
= hdr
->s_paddr
;
134 return_section
->_raw_size
= hdr
->s_size
;
135 return_section
->filepos
= hdr
->s_scnptr
;
136 return_section
->rel_filepos
= hdr
->s_relptr
;
137 return_section
->reloc_count
= hdr
->s_nreloc
;
139 bfd_coff_set_alignment_hook (abfd
, return_section
, hdr
);
141 return_section
->line_filepos
= hdr
->s_lnnoptr
;
143 return_section
->lineno_count
= hdr
->s_nlnno
;
144 return_section
->userdata
= NULL
;
145 return_section
->next
= (asection
*) NULL
;
146 return_section
->target_index
= target_index
;
148 if (! bfd_coff_styp_to_sec_flags_hook (abfd
, hdr
, name
, return_section
,
152 return_section
->flags
= flags
;
154 /* At least on i386-coff, the line number count for a shared library
155 section must be ignored. */
156 if ((return_section
->flags
& SEC_COFF_SHARED_LIBRARY
) != 0)
157 return_section
->lineno_count
= 0;
159 if (hdr
->s_nreloc
!= 0)
160 return_section
->flags
|= SEC_RELOC
;
161 /* FIXME: should this check 'hdr->s_size > 0' */
162 if (hdr
->s_scnptr
!= 0)
163 return_section
->flags
|= SEC_HAS_CONTENTS
;
168 /* Read in a COFF object and make it into a BFD. This is used by
171 static const bfd_target
*
172 coff_real_object_p (abfd
, nscns
, internal_f
, internal_a
)
175 struct internal_filehdr
*internal_f
;
176 struct internal_aouthdr
*internal_a
;
178 flagword oflags
= abfd
->flags
;
179 bfd_vma ostart
= bfd_get_start_address (abfd
);
181 bfd_size_type readsize
; /* length of file_info */
183 char *external_sections
;
185 if (!(internal_f
->f_flags
& F_RELFLG
))
186 abfd
->flags
|= HAS_RELOC
;
187 if ((internal_f
->f_flags
& F_EXEC
))
188 abfd
->flags
|= EXEC_P
;
189 if (!(internal_f
->f_flags
& F_LNNO
))
190 abfd
->flags
|= HAS_LINENO
;
191 if (!(internal_f
->f_flags
& F_LSYMS
))
192 abfd
->flags
|= HAS_LOCALS
;
194 /* FIXME: How can we set D_PAGED correctly? */
195 if ((internal_f
->f_flags
& F_EXEC
) != 0)
196 abfd
->flags
|= D_PAGED
;
198 bfd_get_symcount (abfd
) = internal_f
->f_nsyms
;
199 if (internal_f
->f_nsyms
)
200 abfd
->flags
|= HAS_SYMS
;
202 if (internal_a
!= (struct internal_aouthdr
*) NULL
)
203 bfd_get_start_address (abfd
) = internal_a
->entry
;
205 bfd_get_start_address (abfd
) = 0;
207 /* Set up the tdata area. ECOFF uses its own routine, and overrides
209 tdata
= bfd_coff_mkobject_hook (abfd
, (PTR
) internal_f
, (PTR
) internal_a
);
213 scnhsz
= bfd_coff_scnhsz (abfd
);
214 readsize
= (bfd_size_type
) nscns
* scnhsz
;
215 external_sections
= (char *) bfd_alloc (abfd
, readsize
);
216 if (!external_sections
)
219 if (bfd_bread ((PTR
) external_sections
, readsize
, abfd
) != readsize
)
222 /* Set the arch/mach *before* swapping in sections; section header swapping
223 may depend on arch/mach info. */
224 if (bfd_coff_set_arch_mach_hook (abfd
, (PTR
) internal_f
) == false)
227 /* Now copy data as required; construct all asections etc */
231 for (i
= 0; i
< nscns
; i
++)
233 struct internal_scnhdr tmp
;
234 bfd_coff_swap_scnhdr_in (abfd
,
235 (PTR
) (external_sections
+ i
* scnhsz
),
237 if (! make_a_section_from_file (abfd
, &tmp
, i
+ 1))
242 /* make_abs_section (abfd); */
247 bfd_release (abfd
, tdata
);
248 abfd
->flags
= oflags
;
249 bfd_get_start_address (abfd
) = ostart
;
250 return (const bfd_target
*) NULL
;
253 /* Turn a COFF file into a BFD, but fail with bfd_error_wrong_format if it is
254 not a COFF file. This is also used by ECOFF. */
260 bfd_size_type filhsz
;
261 bfd_size_type aoutsz
;
264 struct internal_filehdr internal_f
;
265 struct internal_aouthdr internal_a
;
267 /* figure out how much to read */
268 filhsz
= bfd_coff_filhsz (abfd
);
269 aoutsz
= bfd_coff_aoutsz (abfd
);
271 filehdr
= bfd_alloc (abfd
, filhsz
);
274 if (bfd_bread (filehdr
, filhsz
, abfd
) != filhsz
)
276 if (bfd_get_error () != bfd_error_system_call
)
277 bfd_set_error (bfd_error_wrong_format
);
280 bfd_coff_swap_filehdr_in (abfd
, filehdr
, &internal_f
);
281 bfd_release (abfd
, filehdr
);
283 /* The XCOFF format has two sizes for the f_opthdr. SMALL_AOUTSZ
284 (less than aoutsz) used in object files and AOUTSZ (equal to
285 aoutsz) in executables. The bfd_coff_swap_aouthdr_in function
286 expects this header to be aoutsz bytes in length, so we use that
287 value in the call to bfd_alloc below. But we must be careful to
288 only read in f_opthdr bytes in the call to bfd_bread. We should
289 also attempt to catch corrupt or non-COFF binaries with a strange
290 value for f_opthdr. */
291 if (bfd_coff_bad_format_hook (abfd
, &internal_f
) == false
292 || internal_f
.f_opthdr
> aoutsz
)
294 bfd_set_error (bfd_error_wrong_format
);
297 nscns
= internal_f
.f_nscns
;
299 if (internal_f
.f_opthdr
)
303 opthdr
= bfd_alloc (abfd
, aoutsz
);
306 if (bfd_bread (opthdr
, (bfd_size_type
) internal_f
.f_opthdr
, abfd
)
307 != internal_f
.f_opthdr
)
311 bfd_coff_swap_aouthdr_in (abfd
, opthdr
, (PTR
) &internal_a
);
314 return coff_real_object_p (abfd
, nscns
, &internal_f
,
315 (internal_f
.f_opthdr
!= 0
317 : (struct internal_aouthdr
*) NULL
));
320 /* Get the BFD section from a COFF symbol section number. */
323 coff_section_from_bfd_index (abfd
, index
)
327 struct sec
*answer
= abfd
->sections
;
330 return bfd_abs_section_ptr
;
331 if (index
== N_UNDEF
)
332 return bfd_und_section_ptr
;
333 if (index
== N_DEBUG
)
334 return bfd_abs_section_ptr
;
338 if (answer
->target_index
== index
)
340 answer
= answer
->next
;
343 /* We should not reach this point, but the SCO 3.2v4 /lib/libc_s.a
344 has a bad symbol table in biglitpow.o. */
345 return bfd_und_section_ptr
;
348 /* Get the upper bound of a COFF symbol table. */
351 coff_get_symtab_upper_bound (abfd
)
354 if (!bfd_coff_slurp_symbol_table (abfd
))
357 return (bfd_get_symcount (abfd
) + 1) * (sizeof (coff_symbol_type
*));
360 /* Canonicalize a COFF symbol table. */
363 coff_get_symtab (abfd
, alocation
)
367 unsigned int counter
;
368 coff_symbol_type
*symbase
;
369 coff_symbol_type
**location
= (coff_symbol_type
**) alocation
;
371 if (!bfd_coff_slurp_symbol_table (abfd
))
374 symbase
= obj_symbols (abfd
);
375 counter
= bfd_get_symcount (abfd
);
376 while (counter
-- > 0)
377 *location
++ = symbase
++;
381 return bfd_get_symcount (abfd
);
384 /* Get the name of a symbol. The caller must pass in a buffer of size
388 _bfd_coff_internal_syment_name (abfd
, sym
, buf
)
390 const struct internal_syment
*sym
;
393 /* FIXME: It's not clear this will work correctly if sizeof
395 if (sym
->_n
._n_n
._n_zeroes
!= 0
396 || sym
->_n
._n_n
._n_offset
== 0)
398 memcpy (buf
, sym
->_n
._n_name
, SYMNMLEN
);
399 buf
[SYMNMLEN
] = '\0';
406 BFD_ASSERT (sym
->_n
._n_n
._n_offset
>= STRING_SIZE_SIZE
);
407 strings
= obj_coff_strings (abfd
);
410 strings
= _bfd_coff_read_string_table (abfd
);
414 return strings
+ sym
->_n
._n_n
._n_offset
;
418 /* Read in and swap the relocs. This returns a buffer holding the
419 relocs for section SEC in file ABFD. If CACHE is true and
420 INTERNAL_RELOCS is NULL, the relocs read in will be saved in case
421 the function is called again. If EXTERNAL_RELOCS is not NULL, it
422 is a buffer large enough to hold the unswapped relocs. If
423 INTERNAL_RELOCS is not NULL, it is a buffer large enough to hold
424 the swapped relocs. If REQUIRE_INTERNAL is true, then the return
425 value must be INTERNAL_RELOCS. The function returns NULL on error. */
427 struct internal_reloc
*
428 _bfd_coff_read_internal_relocs (abfd
, sec
, cache
, external_relocs
,
429 require_internal
, internal_relocs
)
433 bfd_byte
*external_relocs
;
434 boolean require_internal
;
435 struct internal_reloc
*internal_relocs
;
438 bfd_byte
*free_external
= NULL
;
439 struct internal_reloc
*free_internal
= NULL
;
442 struct internal_reloc
*irel
;
445 if (coff_section_data (abfd
, sec
) != NULL
446 && coff_section_data (abfd
, sec
)->relocs
!= NULL
)
448 if (! require_internal
)
449 return coff_section_data (abfd
, sec
)->relocs
;
450 memcpy (internal_relocs
, coff_section_data (abfd
, sec
)->relocs
,
451 sec
->reloc_count
* sizeof (struct internal_reloc
));
452 return internal_relocs
;
455 relsz
= bfd_coff_relsz (abfd
);
457 amt
= sec
->reloc_count
* relsz
;
458 if (external_relocs
== NULL
)
460 free_external
= (bfd_byte
*) bfd_malloc (amt
);
461 if (free_external
== NULL
&& sec
->reloc_count
> 0)
463 external_relocs
= free_external
;
466 if (bfd_seek (abfd
, sec
->rel_filepos
, SEEK_SET
) != 0
467 || bfd_bread (external_relocs
, amt
, abfd
) != amt
)
470 if (internal_relocs
== NULL
)
472 amt
= sec
->reloc_count
;
473 amt
*= sizeof (struct internal_reloc
);
474 free_internal
= (struct internal_reloc
*) bfd_malloc (amt
);
475 if (free_internal
== NULL
&& sec
->reloc_count
> 0)
477 internal_relocs
= free_internal
;
480 /* Swap in the relocs. */
481 erel
= external_relocs
;
482 erel_end
= erel
+ relsz
* sec
->reloc_count
;
483 irel
= internal_relocs
;
484 for (; erel
< erel_end
; erel
+= relsz
, irel
++)
485 bfd_coff_swap_reloc_in (abfd
, (PTR
) erel
, (PTR
) irel
);
487 if (free_external
!= NULL
)
489 free (free_external
);
490 free_external
= NULL
;
493 if (cache
&& free_internal
!= NULL
)
495 if (coff_section_data (abfd
, sec
) == NULL
)
497 amt
= sizeof (struct coff_section_tdata
);
498 sec
->used_by_bfd
= (PTR
) bfd_zalloc (abfd
, amt
);
499 if (sec
->used_by_bfd
== NULL
)
501 coff_section_data (abfd
, sec
)->contents
= NULL
;
503 coff_section_data (abfd
, sec
)->relocs
= free_internal
;
506 return internal_relocs
;
509 if (free_external
!= NULL
)
510 free (free_external
);
511 if (free_internal
!= NULL
)
512 free (free_internal
);
516 /* Set lineno_count for the output sections of a COFF file. */
519 coff_count_linenumbers (abfd
)
522 unsigned int limit
= bfd_get_symcount (abfd
);
530 /* This may be from the backend linker, in which case the
531 lineno_count in the sections is correct. */
532 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
533 total
+= s
->lineno_count
;
537 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
538 BFD_ASSERT (s
->lineno_count
== 0);
540 for (p
= abfd
->outsymbols
, i
= 0; i
< limit
; i
++, p
++)
542 asymbol
*q_maybe
= *p
;
544 if (bfd_family_coff (bfd_asymbol_bfd (q_maybe
)))
546 coff_symbol_type
*q
= coffsymbol (q_maybe
);
548 /* The AIX 4.1 compiler can sometimes generate line numbers
549 attached to debugging symbols. We try to simply ignore
551 if (q
->lineno
!= NULL
552 && q
->symbol
.section
->owner
!= NULL
)
554 /* This symbol has line numbers. Increment the owning
555 section's linenumber count. */
556 alent
*l
= q
->lineno
;
560 asection
* sec
= q
->symbol
.section
->output_section
;
562 /* Do not try to update fields in read-only sections. */
563 if (! bfd_is_const_section (sec
))
564 sec
->lineno_count
++;
569 while (l
->line_number
!= 0);
577 /* Takes a bfd and a symbol, returns a pointer to the coff specific
578 area of the symbol if there is one. */
581 coff_symbol_from (ignore_abfd
, symbol
)
582 bfd
*ignore_abfd ATTRIBUTE_UNUSED
;
585 if (!bfd_family_coff (bfd_asymbol_bfd (symbol
)))
586 return (coff_symbol_type
*) NULL
;
588 if (bfd_asymbol_bfd (symbol
)->tdata
.coff_obj_data
== (coff_data_type
*) NULL
)
589 return (coff_symbol_type
*) NULL
;
591 return (coff_symbol_type
*) symbol
;
595 fixup_symbol_value (abfd
, coff_symbol_ptr
, syment
)
597 coff_symbol_type
*coff_symbol_ptr
;
598 struct internal_syment
*syment
;
601 /* Normalize the symbol flags */
602 if (bfd_is_com_section (coff_symbol_ptr
->symbol
.section
))
604 /* a common symbol is undefined with a value */
605 syment
->n_scnum
= N_UNDEF
;
606 syment
->n_value
= coff_symbol_ptr
->symbol
.value
;
608 else if ((coff_symbol_ptr
->symbol
.flags
& BSF_DEBUGGING
) != 0
609 && (coff_symbol_ptr
->symbol
.flags
& BSF_DEBUGGING_RELOC
) == 0)
611 syment
->n_value
= coff_symbol_ptr
->symbol
.value
;
613 else if (bfd_is_und_section (coff_symbol_ptr
->symbol
.section
))
615 syment
->n_scnum
= N_UNDEF
;
618 /* FIXME: Do we need to handle the absolute section here? */
621 if (coff_symbol_ptr
->symbol
.section
)
624 coff_symbol_ptr
->symbol
.section
->output_section
->target_index
;
626 syment
->n_value
= (coff_symbol_ptr
->symbol
.value
627 + coff_symbol_ptr
->symbol
.section
->output_offset
);
630 syment
->n_value
+= (syment
->n_sclass
== C_STATLAB
)
631 ? coff_symbol_ptr
->symbol
.section
->output_section
->lma
632 : coff_symbol_ptr
->symbol
.section
->output_section
->vma
;
638 /* This can happen, but I don't know why yet (steve@cygnus.com) */
639 syment
->n_scnum
= N_ABS
;
640 syment
->n_value
= coff_symbol_ptr
->symbol
.value
;
645 /* Run through all the symbols in the symbol table and work out what
646 their indexes into the symbol table will be when output.
648 Coff requires that each C_FILE symbol points to the next one in the
649 chain, and that the last one points to the first external symbol. We
653 coff_renumber_symbols (bfd_ptr
, first_undef
)
657 unsigned int symbol_count
= bfd_get_symcount (bfd_ptr
);
658 asymbol
**symbol_ptr_ptr
= bfd_ptr
->outsymbols
;
659 unsigned int native_index
= 0;
660 struct internal_syment
*last_file
= (struct internal_syment
*) NULL
;
661 unsigned int symbol_index
;
663 /* COFF demands that undefined symbols come after all other symbols.
664 Since we don't need to impose this extra knowledge on all our
665 client programs, deal with that here. Sort the symbol table;
666 just move the undefined symbols to the end, leaving the rest
667 alone. The O'Reilly book says that defined global symbols come
668 at the end before the undefined symbols, so we do that here as
670 /* @@ Do we have some condition we could test for, so we don't always
671 have to do this? I don't think relocatability is quite right, but
672 I'm not certain. [raeburn:19920508.1711EST] */
678 amt
= sizeof (asymbol
*) * ((bfd_size_type
) symbol_count
+ 1);
679 newsyms
= (asymbol
**) bfd_alloc (bfd_ptr
, amt
);
682 bfd_ptr
->outsymbols
= newsyms
;
683 for (i
= 0; i
< symbol_count
; i
++)
684 if ((symbol_ptr_ptr
[i
]->flags
& BSF_NOT_AT_END
) != 0
685 || (!bfd_is_und_section (symbol_ptr_ptr
[i
]->section
)
686 && !bfd_is_com_section (symbol_ptr_ptr
[i
]->section
)
687 && ((symbol_ptr_ptr
[i
]->flags
& BSF_FUNCTION
) != 0
688 || ((symbol_ptr_ptr
[i
]->flags
& (BSF_GLOBAL
| BSF_WEAK
))
690 *newsyms
++ = symbol_ptr_ptr
[i
];
692 for (i
= 0; i
< symbol_count
; i
++)
693 if ((symbol_ptr_ptr
[i
]->flags
& BSF_NOT_AT_END
) == 0
694 && !bfd_is_und_section (symbol_ptr_ptr
[i
]->section
)
695 && (bfd_is_com_section (symbol_ptr_ptr
[i
]->section
)
696 || ((symbol_ptr_ptr
[i
]->flags
& BSF_FUNCTION
) == 0
697 && ((symbol_ptr_ptr
[i
]->flags
& (BSF_GLOBAL
| BSF_WEAK
))
699 *newsyms
++ = symbol_ptr_ptr
[i
];
701 *first_undef
= newsyms
- bfd_ptr
->outsymbols
;
703 for (i
= 0; i
< symbol_count
; i
++)
704 if ((symbol_ptr_ptr
[i
]->flags
& BSF_NOT_AT_END
) == 0
705 && bfd_is_und_section (symbol_ptr_ptr
[i
]->section
))
706 *newsyms
++ = symbol_ptr_ptr
[i
];
707 *newsyms
= (asymbol
*) NULL
;
708 symbol_ptr_ptr
= bfd_ptr
->outsymbols
;
711 for (symbol_index
= 0; symbol_index
< symbol_count
; symbol_index
++)
713 coff_symbol_type
*coff_symbol_ptr
= coff_symbol_from (bfd_ptr
, symbol_ptr_ptr
[symbol_index
]);
714 symbol_ptr_ptr
[symbol_index
]->udata
.i
= symbol_index
;
715 if (coff_symbol_ptr
&& coff_symbol_ptr
->native
)
717 combined_entry_type
*s
= coff_symbol_ptr
->native
;
720 if (s
->u
.syment
.n_sclass
== C_FILE
)
722 if (last_file
!= (struct internal_syment
*) NULL
)
723 last_file
->n_value
= native_index
;
724 last_file
= &(s
->u
.syment
);
729 /* Modify the symbol values according to their section and
732 fixup_symbol_value (bfd_ptr
, coff_symbol_ptr
, &(s
->u
.syment
));
734 for (i
= 0; i
< s
->u
.syment
.n_numaux
+ 1; i
++)
735 s
[i
].offset
= native_index
++;
742 obj_conv_table_size (bfd_ptr
) = native_index
;
747 /* Run thorough the symbol table again, and fix it so that all
748 pointers to entries are changed to the entries' index in the output
752 coff_mangle_symbols (bfd_ptr
)
755 unsigned int symbol_count
= bfd_get_symcount (bfd_ptr
);
756 asymbol
**symbol_ptr_ptr
= bfd_ptr
->outsymbols
;
757 unsigned int symbol_index
;
759 for (symbol_index
= 0; symbol_index
< symbol_count
; symbol_index
++)
761 coff_symbol_type
*coff_symbol_ptr
=
762 coff_symbol_from (bfd_ptr
, symbol_ptr_ptr
[symbol_index
]);
764 if (coff_symbol_ptr
&& coff_symbol_ptr
->native
)
767 combined_entry_type
*s
= coff_symbol_ptr
->native
;
771 /* FIXME: We should use a union here. */
772 s
->u
.syment
.n_value
=
773 (bfd_vma
)((combined_entry_type
*)
774 ((unsigned long) s
->u
.syment
.n_value
))->offset
;
779 /* The value is the offset into the line number entries
780 for the symbol's section. On output, the symbol's
781 section should be N_DEBUG. */
782 s
->u
.syment
.n_value
=
783 (coff_symbol_ptr
->symbol
.section
->output_section
->line_filepos
784 + s
->u
.syment
.n_value
* bfd_coff_linesz (bfd_ptr
));
785 coff_symbol_ptr
->symbol
.section
=
786 coff_section_from_bfd_index (bfd_ptr
, N_DEBUG
);
787 BFD_ASSERT (coff_symbol_ptr
->symbol
.flags
& BSF_DEBUGGING
);
789 for (i
= 0; i
< s
->u
.syment
.n_numaux
; i
++)
791 combined_entry_type
*a
= s
+ i
+ 1;
794 a
->u
.auxent
.x_sym
.x_tagndx
.l
=
795 a
->u
.auxent
.x_sym
.x_tagndx
.p
->offset
;
800 a
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
=
801 a
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.p
->offset
;
806 a
->u
.auxent
.x_csect
.x_scnlen
.l
=
807 a
->u
.auxent
.x_csect
.x_scnlen
.p
->offset
;
816 coff_fix_symbol_name (abfd
, symbol
, native
, string_size_p
,
817 debug_string_section_p
, debug_string_size_p
)
820 combined_entry_type
*native
;
821 bfd_size_type
*string_size_p
;
822 asection
**debug_string_section_p
;
823 bfd_size_type
*debug_string_size_p
;
825 unsigned int name_length
;
826 union internal_auxent
*auxent
;
827 char *name
= (char *) (symbol
->name
);
829 if (name
== (char *) NULL
)
831 /* coff symbols always have names, so we'll make one up */
832 symbol
->name
= "strange";
833 name
= (char *) symbol
->name
;
835 name_length
= strlen (name
);
837 if (native
->u
.syment
.n_sclass
== C_FILE
838 && native
->u
.syment
.n_numaux
> 0)
840 unsigned int filnmlen
;
842 if (bfd_coff_force_symnames_in_strings (abfd
))
844 native
->u
.syment
._n
._n_n
._n_offset
=
845 (*string_size_p
+ STRING_SIZE_SIZE
);
846 native
->u
.syment
._n
._n_n
._n_zeroes
= 0;
847 *string_size_p
+= 6; /* strlen(".file") + 1 */
850 strncpy (native
->u
.syment
._n
._n_name
, ".file", SYMNMLEN
);
852 auxent
= &(native
+ 1)->u
.auxent
;
854 filnmlen
= bfd_coff_filnmlen (abfd
);
856 if (bfd_coff_long_filenames (abfd
))
858 if (name_length
<= filnmlen
)
860 strncpy (auxent
->x_file
.x_fname
, name
, filnmlen
);
864 auxent
->x_file
.x_n
.x_offset
= *string_size_p
+ STRING_SIZE_SIZE
;
865 auxent
->x_file
.x_n
.x_zeroes
= 0;
866 *string_size_p
+= name_length
+ 1;
871 strncpy (auxent
->x_file
.x_fname
, name
, filnmlen
);
872 if (name_length
> filnmlen
)
873 name
[filnmlen
] = '\0';
878 if (name_length
<= SYMNMLEN
&& !bfd_coff_force_symnames_in_strings (abfd
))
880 /* This name will fit into the symbol neatly */
881 strncpy (native
->u
.syment
._n
._n_name
, symbol
->name
, SYMNMLEN
);
883 else if (!bfd_coff_symname_in_debug (abfd
, &native
->u
.syment
))
885 native
->u
.syment
._n
._n_n
._n_offset
= (*string_size_p
887 native
->u
.syment
._n
._n_n
._n_zeroes
= 0;
888 *string_size_p
+= name_length
+ 1;
894 int prefix_len
= bfd_coff_debug_string_prefix_length (abfd
);
896 /* This name should be written into the .debug section. For
897 some reason each name is preceded by a two byte length
898 and also followed by a null byte. FIXME: We assume that
899 the .debug section has already been created, and that it
901 if (*debug_string_section_p
== (asection
*) NULL
)
902 *debug_string_section_p
= bfd_get_section_by_name (abfd
, ".debug");
903 filepos
= bfd_tell (abfd
);
905 bfd_put_32 (abfd
, (bfd_vma
) (name_length
+ 1), buf
);
907 bfd_put_16 (abfd
, (bfd_vma
) (name_length
+ 1), buf
);
909 if (!bfd_set_section_contents (abfd
,
910 *debug_string_section_p
,
912 (file_ptr
) *debug_string_size_p
,
913 (bfd_size_type
) prefix_len
)
914 || !bfd_set_section_contents (abfd
,
915 *debug_string_section_p
,
917 (file_ptr
) (*debug_string_size_p
919 (bfd_size_type
) name_length
+ 1))
921 if (bfd_seek (abfd
, filepos
, SEEK_SET
) != 0)
923 native
->u
.syment
._n
._n_n
._n_offset
=
924 *debug_string_size_p
+ prefix_len
;
925 native
->u
.syment
._n
._n_n
._n_zeroes
= 0;
926 *debug_string_size_p
+= name_length
+ 1 + prefix_len
;
931 /* We need to keep track of the symbol index so that when we write out
932 the relocs we can get the index for a symbol. This method is a
935 #define set_index(symbol, idx) ((symbol)->udata.i = (idx))
937 /* Write a symbol out to a COFF file. */
940 coff_write_symbol (abfd
, symbol
, native
, written
, string_size_p
,
941 debug_string_section_p
, debug_string_size_p
)
944 combined_entry_type
*native
;
946 bfd_size_type
*string_size_p
;
947 asection
**debug_string_section_p
;
948 bfd_size_type
*debug_string_size_p
;
950 unsigned int numaux
= native
->u
.syment
.n_numaux
;
951 int type
= native
->u
.syment
.n_type
;
952 int class = native
->u
.syment
.n_sclass
;
954 bfd_size_type symesz
;
956 if (native
->u
.syment
.n_sclass
== C_FILE
)
957 symbol
->flags
|= BSF_DEBUGGING
;
959 if (symbol
->flags
& BSF_DEBUGGING
960 && bfd_is_abs_section (symbol
->section
))
962 native
->u
.syment
.n_scnum
= N_DEBUG
;
964 else if (bfd_is_abs_section (symbol
->section
))
966 native
->u
.syment
.n_scnum
= N_ABS
;
968 else if (bfd_is_und_section (symbol
->section
))
970 native
->u
.syment
.n_scnum
= N_UNDEF
;
974 native
->u
.syment
.n_scnum
=
975 symbol
->section
->output_section
->target_index
;
978 coff_fix_symbol_name (abfd
, symbol
, native
, string_size_p
,
979 debug_string_section_p
, debug_string_size_p
);
981 symesz
= bfd_coff_symesz (abfd
);
982 buf
= bfd_alloc (abfd
, symesz
);
985 bfd_coff_swap_sym_out (abfd
, &native
->u
.syment
, buf
);
986 if (bfd_bwrite (buf
, symesz
, abfd
) != symesz
)
988 bfd_release (abfd
, buf
);
990 if (native
->u
.syment
.n_numaux
> 0)
992 bfd_size_type auxesz
;
995 auxesz
= bfd_coff_auxesz (abfd
);
996 buf
= bfd_alloc (abfd
, auxesz
);
999 for (j
= 0; j
< native
->u
.syment
.n_numaux
; j
++)
1001 bfd_coff_swap_aux_out (abfd
,
1002 &((native
+ j
+ 1)->u
.auxent
),
1006 native
->u
.syment
.n_numaux
,
1008 if (bfd_bwrite (buf
, auxesz
, abfd
) != auxesz
)
1011 bfd_release (abfd
, buf
);
1014 /* Store the index for use when we write out the relocs. */
1015 set_index (symbol
, *written
);
1017 *written
+= numaux
+ 1;
1021 /* Write out a symbol to a COFF file that does not come from a COFF
1022 file originally. This symbol may have been created by the linker,
1023 or we may be linking a non COFF file to a COFF file. */
1026 coff_write_alien_symbol (abfd
, symbol
, written
, string_size_p
,
1027 debug_string_section_p
, debug_string_size_p
)
1031 bfd_size_type
*string_size_p
;
1032 asection
**debug_string_section_p
;
1033 bfd_size_type
*debug_string_size_p
;
1035 combined_entry_type
*native
;
1036 combined_entry_type dummy
;
1039 native
->u
.syment
.n_type
= T_NULL
;
1040 native
->u
.syment
.n_flags
= 0;
1041 if (bfd_is_und_section (symbol
->section
))
1043 native
->u
.syment
.n_scnum
= N_UNDEF
;
1044 native
->u
.syment
.n_value
= symbol
->value
;
1046 else if (bfd_is_com_section (symbol
->section
))
1048 native
->u
.syment
.n_scnum
= N_UNDEF
;
1049 native
->u
.syment
.n_value
= symbol
->value
;
1051 else if (symbol
->flags
& BSF_DEBUGGING
)
1053 /* There isn't much point to writing out a debugging symbol
1054 unless we are prepared to convert it into COFF debugging
1055 format. So, we just ignore them. We must clobber the symbol
1056 name to keep it from being put in the string table. */
1062 native
->u
.syment
.n_scnum
=
1063 symbol
->section
->output_section
->target_index
;
1064 native
->u
.syment
.n_value
= (symbol
->value
1065 + symbol
->section
->output_offset
);
1066 if (! obj_pe (abfd
))
1067 native
->u
.syment
.n_value
+= symbol
->section
->output_section
->vma
;
1069 /* Copy the any flags from the file header into the symbol.
1072 coff_symbol_type
*c
= coff_symbol_from (abfd
, symbol
);
1073 if (c
!= (coff_symbol_type
*) NULL
)
1074 native
->u
.syment
.n_flags
= bfd_asymbol_bfd (&c
->symbol
)->flags
;
1078 native
->u
.syment
.n_type
= 0;
1079 if (symbol
->flags
& BSF_LOCAL
)
1080 native
->u
.syment
.n_sclass
= C_STAT
;
1081 else if (symbol
->flags
& BSF_WEAK
)
1082 native
->u
.syment
.n_sclass
= obj_pe (abfd
) ? C_NT_WEAK
: C_WEAKEXT
;
1084 native
->u
.syment
.n_sclass
= C_EXT
;
1085 native
->u
.syment
.n_numaux
= 0;
1087 return coff_write_symbol (abfd
, symbol
, native
, written
, string_size_p
,
1088 debug_string_section_p
, debug_string_size_p
);
1091 /* Write a native symbol to a COFF file. */
1094 coff_write_native_symbol (abfd
, symbol
, written
, string_size_p
,
1095 debug_string_section_p
, debug_string_size_p
)
1097 coff_symbol_type
*symbol
;
1099 bfd_size_type
*string_size_p
;
1100 asection
**debug_string_section_p
;
1101 bfd_size_type
*debug_string_size_p
;
1103 combined_entry_type
*native
= symbol
->native
;
1104 alent
*lineno
= symbol
->lineno
;
1106 /* If this symbol has an associated line number, we must store the
1107 symbol index in the line number field. We also tag the auxent to
1108 point to the right place in the lineno table. */
1109 if (lineno
&& !symbol
->done_lineno
&& symbol
->symbol
.section
->owner
!= NULL
)
1111 unsigned int count
= 0;
1112 lineno
[count
].u
.offset
= *written
;
1113 if (native
->u
.syment
.n_numaux
)
1115 union internal_auxent
*a
= &((native
+ 1)->u
.auxent
);
1117 a
->x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
=
1118 symbol
->symbol
.section
->output_section
->moving_line_filepos
;
1121 /* Count and relocate all other linenumbers. */
1123 while (lineno
[count
].line_number
!= 0)
1127 I've been told this, but still need proof:
1128 > The second bug is also in `bfd/coffcode.h'. This bug
1129 > causes the linker to screw up the pc-relocations for
1130 > all the line numbers in COFF code. This bug isn't only
1131 > specific to A29K implementations, but affects all
1132 > systems using COFF format binaries. Note that in COFF
1133 > object files, the line number core offsets output by
1134 > the assembler are relative to the start of each
1135 > procedure, not to the start of the .text section. This
1136 > patch relocates the line numbers relative to the
1137 > `native->u.syment.n_value' instead of the section
1139 > modular!olson@cs.arizona.edu (Jon Olson)
1141 lineno
[count
].u
.offset
+= native
->u
.syment
.n_value
;
1143 lineno
[count
].u
.offset
+=
1144 (symbol
->symbol
.section
->output_section
->vma
1145 + symbol
->symbol
.section
->output_offset
);
1149 symbol
->done_lineno
= true;
1151 if (! bfd_is_const_section (symbol
->symbol
.section
->output_section
))
1152 symbol
->symbol
.section
->output_section
->moving_line_filepos
+=
1153 count
* bfd_coff_linesz (abfd
);
1156 return coff_write_symbol (abfd
, &(symbol
->symbol
), native
, written
,
1157 string_size_p
, debug_string_section_p
,
1158 debug_string_size_p
);
1161 /* Write out the COFF symbols. */
1164 coff_write_symbols (abfd
)
1167 bfd_size_type string_size
;
1168 asection
*debug_string_section
;
1169 bfd_size_type debug_string_size
;
1171 unsigned int limit
= bfd_get_symcount (abfd
);
1172 bfd_signed_vma written
= 0;
1176 debug_string_section
= NULL
;
1177 debug_string_size
= 0;
1179 /* If this target supports long section names, they must be put into
1180 the string table. This is supported by PE. This code must
1181 handle section names just as they are handled in
1182 coff_write_object_contents. */
1183 if (bfd_coff_long_section_names (abfd
))
1187 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
1191 len
= strlen (o
->name
);
1193 string_size
+= len
+ 1;
1197 /* Seek to the right place */
1198 if (bfd_seek (abfd
, obj_sym_filepos (abfd
), SEEK_SET
) != 0)
1201 /* Output all the symbols we have */
1204 for (p
= abfd
->outsymbols
, i
= 0; i
< limit
; i
++, p
++)
1206 asymbol
*symbol
= *p
;
1207 coff_symbol_type
*c_symbol
= coff_symbol_from (abfd
, symbol
);
1209 if (c_symbol
== (coff_symbol_type
*) NULL
1210 || c_symbol
->native
== (combined_entry_type
*) NULL
)
1212 if (!coff_write_alien_symbol (abfd
, symbol
, &written
, &string_size
,
1213 &debug_string_section
,
1214 &debug_string_size
))
1219 if (!coff_write_native_symbol (abfd
, c_symbol
, &written
,
1220 &string_size
, &debug_string_section
,
1221 &debug_string_size
))
1226 obj_raw_syment_count (abfd
) = written
;
1228 /* Now write out strings */
1230 if (string_size
!= 0)
1232 unsigned int size
= string_size
+ STRING_SIZE_SIZE
;
1233 bfd_byte buffer
[STRING_SIZE_SIZE
];
1235 #if STRING_SIZE_SIZE == 4
1236 H_PUT_32 (abfd
, size
, buffer
);
1238 #error Change H_PUT_32
1240 if (bfd_bwrite ((PTR
) buffer
, (bfd_size_type
) sizeof (buffer
), abfd
)
1244 /* Handle long section names. This code must handle section
1245 names just as they are handled in coff_write_object_contents. */
1246 if (bfd_coff_long_section_names (abfd
))
1250 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
1254 len
= strlen (o
->name
);
1257 if (bfd_bwrite (o
->name
, (bfd_size_type
) (len
+ 1), abfd
)
1264 for (p
= abfd
->outsymbols
, i
= 0;
1269 size_t name_length
= strlen (q
->name
);
1270 coff_symbol_type
*c_symbol
= coff_symbol_from (abfd
, q
);
1273 /* Figure out whether the symbol name should go in the string
1274 table. Symbol names that are short enough are stored
1275 directly in the syment structure. File names permit a
1276 different, longer, length in the syment structure. On
1277 XCOFF, some symbol names are stored in the .debug section
1278 rather than in the string table. */
1280 if (c_symbol
== NULL
1281 || c_symbol
->native
== NULL
)
1283 /* This is not a COFF symbol, so it certainly is not a
1284 file name, nor does it go in the .debug section. */
1285 maxlen
= bfd_coff_force_symnames_in_strings (abfd
) ? 0 : SYMNMLEN
;
1287 else if (bfd_coff_symname_in_debug (abfd
,
1288 &c_symbol
->native
->u
.syment
))
1290 /* This symbol name is in the XCOFF .debug section.
1291 Don't write it into the string table. */
1292 maxlen
= name_length
;
1294 else if (c_symbol
->native
->u
.syment
.n_sclass
== C_FILE
1295 && c_symbol
->native
->u
.syment
.n_numaux
> 0)
1297 if (bfd_coff_force_symnames_in_strings (abfd
))
1299 if (bfd_bwrite (".file", (bfd_size_type
) 6, abfd
) != 6)
1302 maxlen
= bfd_coff_filnmlen (abfd
);
1305 maxlen
= bfd_coff_force_symnames_in_strings (abfd
) ? 0 : SYMNMLEN
;
1307 if (name_length
> maxlen
)
1309 if (bfd_bwrite ((PTR
) (q
->name
), (bfd_size_type
) name_length
+ 1,
1310 abfd
) != name_length
+ 1)
1317 /* We would normally not write anything here, but we'll write
1318 out 4 so that any stupid coff reader which tries to read the
1319 string table even when there isn't one won't croak. */
1320 unsigned int size
= STRING_SIZE_SIZE
;
1321 bfd_byte buffer
[STRING_SIZE_SIZE
];
1323 #if STRING_SIZE_SIZE == 4
1324 H_PUT_32 (abfd
, size
, buffer
);
1326 #error Change H_PUT_32
1328 if (bfd_bwrite ((PTR
) buffer
, (bfd_size_type
) STRING_SIZE_SIZE
, abfd
)
1329 != STRING_SIZE_SIZE
)
1333 /* Make sure the .debug section was created to be the correct size.
1334 We should create it ourselves on the fly, but we don't because
1335 BFD won't let us write to any section until we know how large all
1336 the sections are. We could still do it by making another pass
1337 over the symbols. FIXME. */
1338 BFD_ASSERT (debug_string_size
== 0
1339 || (debug_string_section
!= (asection
*) NULL
1340 && (BFD_ALIGN (debug_string_size
,
1341 1 << debug_string_section
->alignment_power
)
1342 == bfd_section_size (abfd
, debug_string_section
))));
1348 coff_write_linenumbers (abfd
)
1352 bfd_size_type linesz
;
1355 linesz
= bfd_coff_linesz (abfd
);
1356 buff
= bfd_alloc (abfd
, linesz
);
1359 for (s
= abfd
->sections
; s
!= (asection
*) NULL
; s
= s
->next
)
1361 if (s
->lineno_count
)
1363 asymbol
**q
= abfd
->outsymbols
;
1364 if (bfd_seek (abfd
, s
->line_filepos
, SEEK_SET
) != 0)
1366 /* Find all the linenumbers in this section */
1370 if (p
->section
->output_section
== s
)
1373 BFD_SEND (bfd_asymbol_bfd (p
), _get_lineno
,
1374 (bfd_asymbol_bfd (p
), p
));
1377 /* Found a linenumber entry, output */
1378 struct internal_lineno out
;
1379 memset ((PTR
) & out
, 0, sizeof (out
));
1381 out
.l_addr
.l_symndx
= l
->u
.offset
;
1382 bfd_coff_swap_lineno_out (abfd
, &out
, buff
);
1383 if (bfd_bwrite (buff
, (bfd_size_type
) linesz
, abfd
)
1387 while (l
->line_number
)
1389 out
.l_lnno
= l
->line_number
;
1390 out
.l_addr
.l_symndx
= l
->u
.offset
;
1391 bfd_coff_swap_lineno_out (abfd
, &out
, buff
);
1392 if (bfd_bwrite (buff
, (bfd_size_type
) linesz
, abfd
)
1403 bfd_release (abfd
, buff
);
1408 coff_get_lineno (ignore_abfd
, symbol
)
1409 bfd
*ignore_abfd ATTRIBUTE_UNUSED
;
1412 return coffsymbol (symbol
)->lineno
;
1417 /* This is only called from coff_add_missing_symbols, which has been
1421 coff_section_symbol (abfd
, name
)
1425 asection
*sec
= bfd_make_section_old_way (abfd
, name
);
1427 combined_entry_type
*csym
;
1430 csym
= coff_symbol_from (abfd
, sym
)->native
;
1431 /* Make sure back-end COFF stuff is there. */
1436 coff_symbol_type sym
;
1437 /* @@FIXME This shouldn't use a fixed size!! */
1438 combined_entry_type e
[10];
1441 f
= (struct foo
*) bfd_alloc (abfd
, (bfd_size_type
) sizeof (*f
));
1444 bfd_set_error (bfd_error_no_error
);
1447 memset ((char *) f
, 0, sizeof (*f
));
1448 coff_symbol_from (abfd
, sym
)->native
= csym
= f
->e
;
1450 csym
[0].u
.syment
.n_sclass
= C_STAT
;
1451 csym
[0].u
.syment
.n_numaux
= 1;
1452 /* SF_SET_STATICS (sym); @@ ??? */
1453 csym
[1].u
.auxent
.x_scn
.x_scnlen
= sec
->_raw_size
;
1454 csym
[1].u
.auxent
.x_scn
.x_nreloc
= sec
->reloc_count
;
1455 csym
[1].u
.auxent
.x_scn
.x_nlinno
= sec
->lineno_count
;
1457 if (sec
->output_section
== NULL
)
1459 sec
->output_section
= sec
;
1460 sec
->output_offset
= 0;
1468 /* This function transforms the offsets into the symbol table into
1469 pointers to syments. */
1472 coff_pointerize_aux (abfd
, table_base
, symbol
, indaux
, auxent
)
1474 combined_entry_type
*table_base
;
1475 combined_entry_type
*symbol
;
1476 unsigned int indaux
;
1477 combined_entry_type
*auxent
;
1479 unsigned int type
= symbol
->u
.syment
.n_type
;
1480 unsigned int class = symbol
->u
.syment
.n_sclass
;
1482 if (coff_backend_info (abfd
)->_bfd_coff_pointerize_aux_hook
)
1484 if ((*coff_backend_info (abfd
)->_bfd_coff_pointerize_aux_hook
)
1485 (abfd
, table_base
, symbol
, indaux
, auxent
))
1489 /* Don't bother if this is a file or a section */
1490 if (class == C_STAT
&& type
== T_NULL
)
1492 if (class == C_FILE
)
1495 /* Otherwise patch up */
1496 #define N_TMASK coff_data (abfd)->local_n_tmask
1497 #define N_BTSHFT coff_data (abfd)->local_n_btshft
1498 if ((ISFCN (type
) || ISTAG (class) || class == C_BLOCK
|| class == C_FCN
)
1499 && auxent
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
> 0)
1501 auxent
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.p
=
1502 table_base
+ auxent
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
;
1503 auxent
->fix_end
= 1;
1505 /* A negative tagndx is meaningless, but the SCO 3.2v4 cc can
1506 generate one, so we must be careful to ignore it. */
1507 if (auxent
->u
.auxent
.x_sym
.x_tagndx
.l
> 0)
1509 auxent
->u
.auxent
.x_sym
.x_tagndx
.p
=
1510 table_base
+ auxent
->u
.auxent
.x_sym
.x_tagndx
.l
;
1511 auxent
->fix_tag
= 1;
1515 /* Allocate space for the ".debug" section, and read it.
1516 We did not read the debug section until now, because
1517 we didn't want to go to the trouble until someone needed it. */
1520 build_debug_section (abfd
)
1523 char *debug_section
;
1525 bfd_size_type sec_size
;
1527 asection
*sect
= bfd_get_section_by_name (abfd
, ".debug");
1531 bfd_set_error (bfd_error_no_debug_section
);
1535 sec_size
= bfd_get_section_size_before_reloc (sect
);
1536 debug_section
= (PTR
) bfd_alloc (abfd
, sec_size
);
1537 if (debug_section
== NULL
)
1540 /* Seek to the beginning of the `.debug' section and read it.
1541 Save the current position first; it is needed by our caller.
1542 Then read debug section and reset the file pointer. */
1544 position
= bfd_tell (abfd
);
1545 if (bfd_seek (abfd
, sect
->filepos
, SEEK_SET
) != 0
1546 || bfd_bread (debug_section
, sec_size
, abfd
) != sec_size
1547 || bfd_seek (abfd
, position
, SEEK_SET
) != 0)
1549 return debug_section
;
1552 /* Return a pointer to a malloc'd copy of 'name'. 'name' may not be
1553 \0-terminated, but will not exceed 'maxlen' characters. The copy *will*
1554 be \0-terminated. */
1556 copy_name (abfd
, name
, maxlen
)
1564 for (len
= 0; len
< maxlen
; ++len
)
1566 if (name
[len
] == '\0')
1572 if ((newname
= (PTR
) bfd_alloc (abfd
, (bfd_size_type
) len
+ 1)) == NULL
)
1574 strncpy (newname
, name
, len
);
1575 newname
[len
] = '\0';
1579 /* Read in the external symbols. */
1582 _bfd_coff_get_external_symbols (abfd
)
1585 bfd_size_type symesz
;
1589 if (obj_coff_external_syms (abfd
) != NULL
)
1592 symesz
= bfd_coff_symesz (abfd
);
1594 size
= obj_raw_syment_count (abfd
) * symesz
;
1596 syms
= (PTR
) bfd_malloc (size
);
1597 if (syms
== NULL
&& size
!= 0)
1600 if (bfd_seek (abfd
, obj_sym_filepos (abfd
), SEEK_SET
) != 0
1601 || bfd_bread (syms
, size
, abfd
) != size
)
1608 obj_coff_external_syms (abfd
) = syms
;
1613 /* Read in the external strings. The strings are not loaded until
1614 they are needed. This is because we have no simple way of
1615 detecting a missing string table in an archive. */
1618 _bfd_coff_read_string_table (abfd
)
1621 char extstrsize
[STRING_SIZE_SIZE
];
1622 bfd_size_type strsize
;
1626 if (obj_coff_strings (abfd
) != NULL
)
1627 return obj_coff_strings (abfd
);
1629 if (obj_sym_filepos (abfd
) == 0)
1631 bfd_set_error (bfd_error_no_symbols
);
1635 pos
= obj_sym_filepos (abfd
);
1636 pos
+= obj_raw_syment_count (abfd
) * bfd_coff_symesz (abfd
);
1637 if (bfd_seek (abfd
, pos
, SEEK_SET
) != 0)
1640 if (bfd_bread (extstrsize
, (bfd_size_type
) sizeof extstrsize
, abfd
)
1641 != sizeof extstrsize
)
1643 if (bfd_get_error () != bfd_error_file_truncated
)
1646 /* There is no string table. */
1647 strsize
= STRING_SIZE_SIZE
;
1651 #if STRING_SIZE_SIZE == 4
1652 strsize
= H_GET_32 (abfd
, extstrsize
);
1654 #error Change H_GET_32
1658 if (strsize
< STRING_SIZE_SIZE
)
1660 (*_bfd_error_handler
)
1661 (_("%s: bad string table size %lu"), bfd_archive_filename (abfd
),
1662 (unsigned long) strsize
);
1663 bfd_set_error (bfd_error_bad_value
);
1667 strings
= (char *) bfd_malloc (strsize
);
1668 if (strings
== NULL
)
1671 if (bfd_bread (strings
+ STRING_SIZE_SIZE
, strsize
- STRING_SIZE_SIZE
, abfd
)
1672 != strsize
- STRING_SIZE_SIZE
)
1678 obj_coff_strings (abfd
) = strings
;
1683 /* Free up the external symbols and strings read from a COFF file. */
1686 _bfd_coff_free_symbols (abfd
)
1689 if (obj_coff_external_syms (abfd
) != NULL
1690 && ! obj_coff_keep_syms (abfd
))
1692 free (obj_coff_external_syms (abfd
));
1693 obj_coff_external_syms (abfd
) = NULL
;
1695 if (obj_coff_strings (abfd
) != NULL
1696 && ! obj_coff_keep_strings (abfd
))
1698 free (obj_coff_strings (abfd
));
1699 obj_coff_strings (abfd
) = NULL
;
1704 /* Read a symbol table into freshly bfd_allocated memory, swap it, and
1705 knit the symbol names into a normalized form. By normalized here I
1706 mean that all symbols have an n_offset pointer that points to a null-
1707 terminated string. */
1709 combined_entry_type
*
1710 coff_get_normalized_symtab (abfd
)
1713 combined_entry_type
*internal
;
1714 combined_entry_type
*internal_ptr
;
1715 combined_entry_type
*symbol_ptr
;
1716 combined_entry_type
*internal_end
;
1720 const char *string_table
= NULL
;
1721 char *debug_section
= NULL
;
1724 if (obj_raw_syments (abfd
) != NULL
)
1725 return obj_raw_syments (abfd
);
1727 size
= obj_raw_syment_count (abfd
) * sizeof (combined_entry_type
);
1728 internal
= (combined_entry_type
*) bfd_zalloc (abfd
, size
);
1729 if (internal
== NULL
&& size
!= 0)
1731 internal_end
= internal
+ obj_raw_syment_count (abfd
);
1733 if (! _bfd_coff_get_external_symbols (abfd
))
1736 raw_src
= (char *) obj_coff_external_syms (abfd
);
1738 /* mark the end of the symbols */
1739 symesz
= bfd_coff_symesz (abfd
);
1740 raw_end
= (char *) raw_src
+ obj_raw_syment_count (abfd
) * symesz
;
1742 /* FIXME SOMEDAY. A string table size of zero is very weird, but
1743 probably possible. If one shows up, it will probably kill us. */
1745 /* Swap all the raw entries */
1746 for (internal_ptr
= internal
;
1748 raw_src
+= symesz
, internal_ptr
++)
1752 bfd_coff_swap_sym_in (abfd
, (PTR
) raw_src
,
1753 (PTR
) & internal_ptr
->u
.syment
);
1754 symbol_ptr
= internal_ptr
;
1757 i
< symbol_ptr
->u
.syment
.n_numaux
;
1762 bfd_coff_swap_aux_in (abfd
, (PTR
) raw_src
,
1763 symbol_ptr
->u
.syment
.n_type
,
1764 symbol_ptr
->u
.syment
.n_sclass
,
1765 (int) i
, symbol_ptr
->u
.syment
.n_numaux
,
1766 &(internal_ptr
->u
.auxent
));
1767 coff_pointerize_aux (abfd
, internal
, symbol_ptr
, i
,
1772 /* Free the raw symbols, but not the strings (if we have them). */
1773 obj_coff_keep_strings (abfd
) = true;
1774 if (! _bfd_coff_free_symbols (abfd
))
1777 for (internal_ptr
= internal
; internal_ptr
< internal_end
;
1780 if (internal_ptr
->u
.syment
.n_sclass
== C_FILE
1781 && internal_ptr
->u
.syment
.n_numaux
> 0)
1783 /* make a file symbol point to the name in the auxent, since
1784 the text ".file" is redundant */
1785 if ((internal_ptr
+ 1)->u
.auxent
.x_file
.x_n
.x_zeroes
== 0)
1787 /* the filename is a long one, point into the string table */
1788 if (string_table
== NULL
)
1790 string_table
= _bfd_coff_read_string_table (abfd
);
1791 if (string_table
== NULL
)
1795 internal_ptr
->u
.syment
._n
._n_n
._n_offset
=
1798 + (internal_ptr
+ 1)->u
.auxent
.x_file
.x_n
.x_offset
));
1802 /* Ordinary short filename, put into memory anyway. The
1803 Microsoft PE tools sometimes store a filename in
1804 multiple AUX entries. */
1805 if (internal_ptr
->u
.syment
.n_numaux
> 1
1806 && coff_data (abfd
)->pe
)
1808 internal_ptr
->u
.syment
._n
._n_n
._n_offset
=
1811 (internal_ptr
+ 1)->u
.auxent
.x_file
.x_fname
,
1812 internal_ptr
->u
.syment
.n_numaux
* symesz
));
1816 internal_ptr
->u
.syment
._n
._n_n
._n_offset
=
1819 (internal_ptr
+ 1)->u
.auxent
.x_file
.x_fname
,
1820 (size_t) bfd_coff_filnmlen (abfd
)));
1826 if (internal_ptr
->u
.syment
._n
._n_n
._n_zeroes
!= 0)
1828 /* This is a "short" name. Make it long. */
1832 /* find the length of this string without walking into memory
1834 for (i
= 0; i
< 8; ++i
)
1835 if (internal_ptr
->u
.syment
._n
._n_name
[i
] == '\0')
1838 newstring
= (PTR
) bfd_alloc (abfd
, (bfd_size_type
) (i
+ 1));
1839 if (newstring
== NULL
)
1841 memset (newstring
, 0, i
+ 1);
1842 strncpy (newstring
, internal_ptr
->u
.syment
._n
._n_name
, i
);
1843 internal_ptr
->u
.syment
._n
._n_n
._n_offset
= (long int) newstring
;
1844 internal_ptr
->u
.syment
._n
._n_n
._n_zeroes
= 0;
1846 else if (internal_ptr
->u
.syment
._n
._n_n
._n_offset
== 0)
1847 internal_ptr
->u
.syment
._n
._n_n
._n_offset
= (long int) "";
1848 else if (!bfd_coff_symname_in_debug (abfd
, &internal_ptr
->u
.syment
))
1850 /* Long name already. Point symbol at the string in the
1852 if (string_table
== NULL
)
1854 string_table
= _bfd_coff_read_string_table (abfd
);
1855 if (string_table
== NULL
)
1858 internal_ptr
->u
.syment
._n
._n_n
._n_offset
=
1861 + internal_ptr
->u
.syment
._n
._n_n
._n_offset
));
1865 /* Long name in debug section. Very similar. */
1866 if (debug_section
== NULL
)
1867 debug_section
= build_debug_section (abfd
);
1868 internal_ptr
->u
.syment
._n
._n_n
._n_offset
= (long int)
1869 (debug_section
+ internal_ptr
->u
.syment
._n
._n_n
._n_offset
);
1872 internal_ptr
+= internal_ptr
->u
.syment
.n_numaux
;
1875 obj_raw_syments (abfd
) = internal
;
1876 BFD_ASSERT (obj_raw_syment_count (abfd
)
1877 == (unsigned int) (internal_ptr
- internal
));
1880 } /* coff_get_normalized_symtab() */
1883 coff_get_reloc_upper_bound (abfd
, asect
)
1887 if (bfd_get_format (abfd
) != bfd_object
)
1889 bfd_set_error (bfd_error_invalid_operation
);
1892 return (asect
->reloc_count
+ 1) * sizeof (arelent
*);
1896 coff_make_empty_symbol (abfd
)
1899 bfd_size_type amt
= sizeof (coff_symbol_type
);
1900 coff_symbol_type
*new = (coff_symbol_type
*) bfd_alloc (abfd
, amt
);
1903 memset (new, 0, sizeof *new);
1904 new->symbol
.section
= 0;
1906 new->lineno
= (alent
*) NULL
;
1907 new->done_lineno
= false;
1908 new->symbol
.the_bfd
= abfd
;
1909 return &new->symbol
;
1912 /* Make a debugging symbol. */
1915 coff_bfd_make_debug_symbol (abfd
, ptr
, sz
)
1917 PTR ptr ATTRIBUTE_UNUSED
;
1918 unsigned long sz ATTRIBUTE_UNUSED
;
1920 bfd_size_type amt
= sizeof (coff_symbol_type
);
1921 coff_symbol_type
*new = (coff_symbol_type
*) bfd_alloc (abfd
, amt
);
1924 /* @@ The 10 is a guess at a plausible maximum number of aux entries
1925 (but shouldn't be a constant). */
1926 amt
= sizeof (combined_entry_type
) * 10;
1927 new->native
= (combined_entry_type
*) bfd_zalloc (abfd
, amt
);
1930 new->symbol
.section
= bfd_abs_section_ptr
;
1931 new->symbol
.flags
= BSF_DEBUGGING
;
1932 new->lineno
= (alent
*) NULL
;
1933 new->done_lineno
= false;
1934 new->symbol
.the_bfd
= abfd
;
1935 return &new->symbol
;
1939 coff_get_symbol_info (abfd
, symbol
, ret
)
1944 bfd_symbol_info (symbol
, ret
);
1945 if (coffsymbol (symbol
)->native
!= NULL
1946 && coffsymbol (symbol
)->native
->fix_value
)
1948 ret
->value
= coffsymbol (symbol
)->native
->u
.syment
.n_value
-
1949 (unsigned long) obj_raw_syments (abfd
);
1953 /* Return the COFF syment for a symbol. */
1956 bfd_coff_get_syment (abfd
, symbol
, psyment
)
1959 struct internal_syment
*psyment
;
1961 coff_symbol_type
*csym
;
1963 csym
= coff_symbol_from (abfd
, symbol
);
1964 if (csym
== NULL
|| csym
->native
== NULL
)
1966 bfd_set_error (bfd_error_invalid_operation
);
1970 *psyment
= csym
->native
->u
.syment
;
1972 if (csym
->native
->fix_value
)
1973 psyment
->n_value
= psyment
->n_value
-
1974 (unsigned long) obj_raw_syments (abfd
);
1976 /* FIXME: We should handle fix_line here. */
1981 /* Return the COFF auxent for a symbol. */
1984 bfd_coff_get_auxent (abfd
, symbol
, indx
, pauxent
)
1988 union internal_auxent
*pauxent
;
1990 coff_symbol_type
*csym
;
1991 combined_entry_type
*ent
;
1993 csym
= coff_symbol_from (abfd
, symbol
);
1996 || csym
->native
== NULL
1997 || indx
>= csym
->native
->u
.syment
.n_numaux
)
1999 bfd_set_error (bfd_error_invalid_operation
);
2003 ent
= csym
->native
+ indx
+ 1;
2005 *pauxent
= ent
->u
.auxent
;
2008 pauxent
->x_sym
.x_tagndx
.l
=
2009 ((combined_entry_type
*) pauxent
->x_sym
.x_tagndx
.p
2010 - obj_raw_syments (abfd
));
2013 pauxent
->x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
=
2014 ((combined_entry_type
*) pauxent
->x_sym
.x_fcnary
.x_fcn
.x_endndx
.p
2015 - obj_raw_syments (abfd
));
2017 if (ent
->fix_scnlen
)
2018 pauxent
->x_csect
.x_scnlen
.l
=
2019 ((combined_entry_type
*) pauxent
->x_csect
.x_scnlen
.p
2020 - obj_raw_syments (abfd
));
2025 /* Print out information about COFF symbol. */
2028 coff_print_symbol (abfd
, filep
, symbol
, how
)
2032 bfd_print_symbol_type how
;
2034 FILE *file
= (FILE *) filep
;
2038 case bfd_print_symbol_name
:
2039 fprintf (file
, "%s", symbol
->name
);
2042 case bfd_print_symbol_more
:
2043 fprintf (file
, "coff %s %s",
2044 coffsymbol (symbol
)->native
? "n" : "g",
2045 coffsymbol (symbol
)->lineno
? "l" : " ");
2048 case bfd_print_symbol_all
:
2049 if (coffsymbol (symbol
)->native
)
2053 combined_entry_type
*combined
= coffsymbol (symbol
)->native
;
2054 combined_entry_type
*root
= obj_raw_syments (abfd
);
2055 struct lineno_cache_entry
*l
= coffsymbol (symbol
)->lineno
;
2057 fprintf (file
, "[%3ld]", (long) (combined
- root
));
2059 if (! combined
->fix_value
)
2060 val
= (bfd_vma
) combined
->u
.syment
.n_value
;
2062 val
= combined
->u
.syment
.n_value
- (unsigned long) root
;
2066 "(sec %2d)(fl 0x%02x)(ty %3x)(scl %3d) (nx %d) 0x%08lx %s",
2067 combined
->u
.syment
.n_scnum
,
2068 combined
->u
.syment
.n_flags
,
2069 combined
->u
.syment
.n_type
,
2070 combined
->u
.syment
.n_sclass
,
2071 combined
->u
.syment
.n_numaux
,
2072 (unsigned long) val
,
2075 /* Print out the wide, 64 bit, symbol value */
2077 "(sec %2d)(fl 0x%02x)(ty %3x)(scl %3d) (nx %d) 0x%016llx %s",
2078 combined
->u
.syment
.n_scnum
,
2079 combined
->u
.syment
.n_flags
,
2080 combined
->u
.syment
.n_type
,
2081 combined
->u
.syment
.n_sclass
,
2082 combined
->u
.syment
.n_numaux
,
2087 for (aux
= 0; aux
< combined
->u
.syment
.n_numaux
; aux
++)
2089 combined_entry_type
*auxp
= combined
+ aux
+ 1;
2093 tagndx
= auxp
->u
.auxent
.x_sym
.x_tagndx
.p
- root
;
2095 tagndx
= auxp
->u
.auxent
.x_sym
.x_tagndx
.l
;
2097 fprintf (file
, "\n");
2099 if (bfd_coff_print_aux (abfd
, file
, root
, combined
, auxp
, aux
))
2102 switch (combined
->u
.syment
.n_sclass
)
2105 fprintf (file
, "File ");
2109 if (combined
->u
.syment
.n_type
== T_NULL
)
2110 /* probably a section symbol? */
2112 fprintf (file
, "AUX scnlen 0x%lx nreloc %d nlnno %d",
2113 (long) auxp
->u
.auxent
.x_scn
.x_scnlen
,
2114 auxp
->u
.auxent
.x_scn
.x_nreloc
,
2115 auxp
->u
.auxent
.x_scn
.x_nlinno
);
2116 if (auxp
->u
.auxent
.x_scn
.x_checksum
!= 0
2117 || auxp
->u
.auxent
.x_scn
.x_associated
!= 0
2118 || auxp
->u
.auxent
.x_scn
.x_comdat
!= 0)
2119 fprintf (file
, " checksum 0x%lx assoc %d comdat %d",
2120 auxp
->u
.auxent
.x_scn
.x_checksum
,
2121 auxp
->u
.auxent
.x_scn
.x_associated
,
2122 auxp
->u
.auxent
.x_scn
.x_comdat
);
2125 /* else fall through */
2127 if (ISFCN (combined
->u
.syment
.n_type
))
2132 next
= (auxp
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.p
2135 next
= auxp
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
;
2136 llnos
= auxp
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
;
2138 "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld",
2139 tagndx
, auxp
->u
.auxent
.x_sym
.x_misc
.x_fsize
,
2143 /* else fall through */
2145 fprintf (file
, "AUX lnno %d size 0x%x tagndx %ld",
2146 auxp
->u
.auxent
.x_sym
.x_misc
.x_lnsz
.x_lnno
,
2147 auxp
->u
.auxent
.x_sym
.x_misc
.x_lnsz
.x_size
,
2150 fprintf (file
, " endndx %ld",
2152 (auxp
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.p
2160 fprintf (file
, "\n%s :", l
->u
.sym
->name
);
2162 while (l
->line_number
)
2164 fprintf (file
, "\n%4d : 0x%lx",
2167 (l
->u
.offset
+ symbol
->section
->vma
)));
2174 bfd_print_symbol_vandf (abfd
, (PTR
) file
, symbol
);
2175 fprintf (file
, " %-5s %s %s %s",
2176 symbol
->section
->name
,
2177 coffsymbol (symbol
)->native
? "n" : "g",
2178 coffsymbol (symbol
)->lineno
? "l" : " ",
2184 /* Return whether a symbol name implies a local symbol. In COFF,
2185 local symbols generally start with ``.L''. Most targets use this
2186 function for the is_local_label_name entry point, but some may
2190 _bfd_coff_is_local_label_name (abfd
, name
)
2191 bfd
*abfd ATTRIBUTE_UNUSED
;
2194 return name
[0] == '.' && name
[1] == 'L';
2197 /* Provided a BFD, a section and an offset (in bytes, not octets) into the
2198 section, calculate and return the name of the source file and the line
2199 nearest to the wanted location. */
2202 coff_find_nearest_line (abfd
, section
, symbols
, offset
, filename_ptr
,
2203 functionname_ptr
, line_ptr
)
2208 const char **filename_ptr
;
2209 const char **functionname_ptr
;
2210 unsigned int *line_ptr
;
2214 unsigned int line_base
;
2215 coff_data_type
*cof
= coff_data (abfd
);
2216 /* Run through the raw syments if available */
2217 combined_entry_type
*p
;
2218 combined_entry_type
*pend
;
2220 struct coff_section_tdata
*sec_data
;
2223 /* Before looking through the symbol table, try to use a .stab
2224 section to find the information. */
2225 if (! _bfd_stab_section_find_nearest_line (abfd
, symbols
, section
, offset
,
2226 &found
, filename_ptr
,
2227 functionname_ptr
, line_ptr
,
2228 &coff_data(abfd
)->line_info
))
2234 /* Also try examining DWARF2 debugging information. */
2235 if (_bfd_dwarf2_find_nearest_line (abfd
, section
, symbols
, offset
,
2236 filename_ptr
, functionname_ptr
,
2238 &coff_data(abfd
)->dwarf2_find_line_info
))
2242 *functionname_ptr
= 0;
2245 /* Don't try and find line numbers in a non coff file */
2246 if (!bfd_family_coff (abfd
))
2252 /* Find the first C_FILE symbol. */
2253 p
= cof
->raw_syments
;
2257 pend
= p
+ cof
->raw_syment_count
;
2260 if (p
->u
.syment
.n_sclass
== C_FILE
)
2262 p
+= 1 + p
->u
.syment
.n_numaux
;
2270 /* Look through the C_FILE symbols to find the best one. */
2271 sec_vma
= bfd_get_section_vma (abfd
, section
);
2272 *filename_ptr
= (char *) p
->u
.syment
._n
._n_n
._n_offset
;
2273 maxdiff
= (bfd_vma
) 0 - (bfd_vma
) 1;
2276 combined_entry_type
*p2
;
2278 for (p2
= p
+ 1 + p
->u
.syment
.n_numaux
;
2280 p2
+= 1 + p2
->u
.syment
.n_numaux
)
2282 if (p2
->u
.syment
.n_scnum
> 0
2284 == coff_section_from_bfd_index (abfd
,
2285 p2
->u
.syment
.n_scnum
)))
2287 if (p2
->u
.syment
.n_sclass
== C_FILE
)
2294 /* We use <= MAXDIFF here so that if we get a zero length
2295 file, we actually use the next file entry. */
2297 && offset
+ sec_vma
>= (bfd_vma
) p2
->u
.syment
.n_value
2298 && offset
+ sec_vma
- (bfd_vma
) p2
->u
.syment
.n_value
<= maxdiff
)
2300 *filename_ptr
= (char *) p
->u
.syment
._n
._n_n
._n_offset
;
2301 maxdiff
= offset
+ sec_vma
- p2
->u
.syment
.n_value
;
2304 /* Avoid endless loops on erroneous files by ensuring that
2305 we always move forward in the file. */
2306 if (p
>= cof
->raw_syments
+ p
->u
.syment
.n_value
)
2309 p
= cof
->raw_syments
+ p
->u
.syment
.n_value
;
2310 if (p
> pend
|| p
->u
.syment
.n_sclass
!= C_FILE
)
2315 /* Now wander though the raw linenumbers of the section */
2316 /* If we have been called on this section before, and the offset we
2317 want is further down then we can prime the lookup loop. */
2318 sec_data
= coff_section_data (abfd
, section
);
2319 if (sec_data
!= NULL
2321 && offset
>= sec_data
->offset
)
2324 *functionname_ptr
= sec_data
->function
;
2325 line_base
= sec_data
->line_base
;
2333 if (section
->lineno
!= NULL
)
2335 bfd_vma last_value
= 0;
2337 l
= §ion
->lineno
[i
];
2339 for (; i
< section
->lineno_count
; i
++)
2341 if (l
->line_number
== 0)
2343 /* Get the symbol this line number points at */
2344 coff_symbol_type
*coff
= (coff_symbol_type
*) (l
->u
.sym
);
2345 if (coff
->symbol
.value
> offset
)
2347 *functionname_ptr
= coff
->symbol
.name
;
2348 last_value
= coff
->symbol
.value
;
2351 combined_entry_type
*s
= coff
->native
;
2352 s
= s
+ 1 + s
->u
.syment
.n_numaux
;
2354 /* In XCOFF a debugging symbol can follow the
2356 if (s
->u
.syment
.n_scnum
== N_DEBUG
)
2357 s
= s
+ 1 + s
->u
.syment
.n_numaux
;
2359 /* S should now point to the .bf of the function. */
2360 if (s
->u
.syment
.n_numaux
)
2362 /* The linenumber is stored in the auxent. */
2363 union internal_auxent
*a
= &((s
+ 1)->u
.auxent
);
2364 line_base
= a
->x_sym
.x_misc
.x_lnsz
.x_lnno
;
2365 *line_ptr
= line_base
;
2371 if (l
->u
.offset
> offset
)
2373 *line_ptr
= l
->line_number
+ line_base
- 1;
2378 /* If we fell off the end of the loop, then assume that this
2379 symbol has no line number info. Otherwise, symbols with no
2380 line number info get reported with the line number of the
2381 last line of the last symbol which does have line number
2382 info. We use 0x100 as a slop to account for cases where the
2383 last line has executable code. */
2384 if (i
>= section
->lineno_count
2386 && offset
- last_value
> 0x100)
2388 *functionname_ptr
= NULL
;
2393 /* Cache the results for the next call. */
2394 if (sec_data
== NULL
&& section
->owner
== abfd
)
2396 amt
= sizeof (struct coff_section_tdata
);
2397 section
->used_by_bfd
= (PTR
) bfd_zalloc (abfd
, amt
);
2398 sec_data
= (struct coff_section_tdata
*) section
->used_by_bfd
;
2400 if (sec_data
!= NULL
)
2402 sec_data
->offset
= offset
;
2404 sec_data
->function
= *functionname_ptr
;
2405 sec_data
->line_base
= line_base
;
2412 coff_sizeof_headers (abfd
, reloc
)
2420 size
= bfd_coff_filhsz (abfd
) + bfd_coff_aoutsz (abfd
);
2424 size
= bfd_coff_filhsz (abfd
);
2427 size
+= abfd
->section_count
* bfd_coff_scnhsz (abfd
);
2431 /* Change the class of a coff symbol held by BFD. */
2433 bfd_coff_set_symbol_class (abfd
, symbol
, class)
2438 coff_symbol_type
* csym
;
2440 csym
= coff_symbol_from (abfd
, symbol
);
2443 bfd_set_error (bfd_error_invalid_operation
);
2446 else if (csym
->native
== NULL
)
2448 /* This is an alien symbol which no native coff backend data.
2449 We cheat here by creating a fake native entry for it and
2450 then filling in the class. This code is based on that in
2451 coff_write_alien_symbol(). */
2453 combined_entry_type
* native
;
2454 bfd_size_type amt
= sizeof (* native
);
2456 native
= (combined_entry_type
*) bfd_alloc (abfd
, amt
);
2460 memset (native
, 0, sizeof (* native
));
2462 native
->u
.syment
.n_type
= T_NULL
;
2463 native
->u
.syment
.n_sclass
= class;
2465 if (bfd_is_und_section (symbol
->section
))
2467 native
->u
.syment
.n_scnum
= N_UNDEF
;
2468 native
->u
.syment
.n_value
= symbol
->value
;
2470 else if (bfd_is_com_section (symbol
->section
))
2472 native
->u
.syment
.n_scnum
= N_UNDEF
;
2473 native
->u
.syment
.n_value
= symbol
->value
;
2477 native
->u
.syment
.n_scnum
=
2478 symbol
->section
->output_section
->target_index
;
2479 native
->u
.syment
.n_value
= (symbol
->value
2480 + symbol
->section
->output_offset
);
2481 if (! obj_pe (abfd
))
2482 native
->u
.syment
.n_value
+= symbol
->section
->output_section
->vma
;
2484 /* Copy the any flags from the file header into the symbol.
2486 native
->u
.syment
.n_flags
= bfd_asymbol_bfd (& csym
->symbol
)->flags
;
2489 csym
->native
= native
;
2493 csym
->native
->u
.syment
.n_sclass
= class;