1 /* Support for the generic parts of COFF, for BFD.
2 Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999, 2000
3 Free Software Foundation, Inc.
4 Written by Cygnus Support.
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 /* Most of this hacked by Steve Chamberlain, sac@cygnus.com.
23 Split out of coffcode.h by Ian Taylor, ian@cygnus.com. */
25 /* This file contains COFF code that is not dependent on any
26 particular COFF target. There is only one version of this file in
27 libbfd.a, so no target specific code may be put in here. Or, to
30 ********** DO NOT PUT TARGET SPECIFIC CODE IN THIS FILE **********
32 If you need to add some target specific behaviour, add a new hook
33 function to bfd_coff_backend_data.
35 Some of these functions are also called by the ECOFF routines.
36 Those functions may not use any COFF specific information, such as
42 #include "coff/internal.h"
45 static void coff_fix_symbol_name
46 PARAMS ((bfd
*, asymbol
*, combined_entry_type
*, bfd_size_type
*,
47 asection
**, bfd_size_type
*));
48 static boolean coff_write_symbol
49 PARAMS ((bfd
*, asymbol
*, combined_entry_type
*, unsigned int *,
50 bfd_size_type
*, asection
**, bfd_size_type
*));
51 static boolean coff_write_alien_symbol
52 PARAMS ((bfd
*, asymbol
*, unsigned int *, bfd_size_type
*,
53 asection
**, bfd_size_type
*));
54 static boolean coff_write_native_symbol
55 PARAMS ((bfd
*, coff_symbol_type
*, unsigned int *, bfd_size_type
*,
56 asection
**, bfd_size_type
*));
57 static void coff_pointerize_aux
58 PARAMS ((bfd
*, combined_entry_type
*, combined_entry_type
*,
59 unsigned int, combined_entry_type
*));
60 static boolean make_a_section_from_file
61 PARAMS ((bfd
*, struct internal_scnhdr
*, unsigned int));
62 static const bfd_target
*coff_real_object_p
63 PARAMS ((bfd
*, unsigned, struct internal_filehdr
*,
64 struct internal_aouthdr
*));
65 static void fixup_symbol_value
66 PARAMS ((bfd
*, coff_symbol_type
*, struct internal_syment
*));
67 static char *build_debug_section
69 static char *copy_name
70 PARAMS ((bfd
*, char *, int));
72 #define STRING_SIZE_SIZE (4)
74 /* Take a section header read from a coff file (in HOST byte order),
75 and make a BFD "section" out of it. This is used by ECOFF. */
77 make_a_section_from_file (abfd
, hdr
, target_index
)
79 struct internal_scnhdr
*hdr
;
80 unsigned int target_index
;
82 asection
*return_section
;
87 /* Handle long section names as in PE. */
88 if (bfd_coff_long_section_names (abfd
)
89 && hdr
->s_name
[0] == '/')
96 memcpy (buf
, hdr
->s_name
+ 1, SCNNMLEN
- 1);
97 buf
[SCNNMLEN
- 1] = '\0';
98 strindex
= strtol (buf
, &p
, 10);
99 if (*p
== '\0' && strindex
>= 0)
101 strings
= _bfd_coff_read_string_table (abfd
);
104 /* FIXME: For extra safety, we should make sure that
105 strindex does not run us past the end, but right now we
106 don't know the length of the string table. */
108 name
= bfd_alloc (abfd
, strlen (strings
) + 1);
111 strcpy (name
, strings
);
117 /* Assorted wastage to null-terminate the name, thanks AT&T! */
118 name
= bfd_alloc (abfd
, sizeof (hdr
->s_name
) + 1);
121 strncpy (name
, (char *) &hdr
->s_name
[0], sizeof (hdr
->s_name
));
122 name
[sizeof (hdr
->s_name
)] = 0;
125 return_section
= bfd_make_section_anyway (abfd
, name
);
126 if (return_section
== NULL
)
129 return_section
->vma
= hdr
->s_vaddr
;
130 return_section
->lma
= hdr
->s_paddr
;
131 return_section
->_raw_size
= hdr
->s_size
;
132 return_section
->filepos
= hdr
->s_scnptr
;
133 return_section
->rel_filepos
= hdr
->s_relptr
;
134 return_section
->reloc_count
= hdr
->s_nreloc
;
136 bfd_coff_set_alignment_hook (abfd
, return_section
, hdr
);
138 return_section
->line_filepos
= hdr
->s_lnnoptr
;
140 return_section
->lineno_count
= hdr
->s_nlnno
;
141 return_section
->userdata
= NULL
;
142 return_section
->next
= (asection
*) NULL
;
143 return_section
->target_index
= target_index
;
144 return_section
->flags
= bfd_coff_styp_to_sec_flags_hook (abfd
, hdr
, name
,
147 /* At least on i386-coff, the line number count for a shared library
148 section must be ignored. */
149 if ((return_section
->flags
& SEC_COFF_SHARED_LIBRARY
) != 0)
150 return_section
->lineno_count
= 0;
152 if (hdr
->s_nreloc
!= 0)
153 return_section
->flags
|= SEC_RELOC
;
154 /* FIXME: should this check 'hdr->s_size > 0' */
155 if (hdr
->s_scnptr
!= 0)
156 return_section
->flags
|= SEC_HAS_CONTENTS
;
160 /* Read in a COFF object and make it into a BFD. This is used by
163 static const bfd_target
*
164 coff_real_object_p (abfd
, nscns
, internal_f
, internal_a
)
167 struct internal_filehdr
*internal_f
;
168 struct internal_aouthdr
*internal_a
;
170 flagword oflags
= abfd
->flags
;
171 bfd_vma ostart
= bfd_get_start_address (abfd
);
173 size_t readsize
; /* length of file_info */
175 char *external_sections
;
177 if (!(internal_f
->f_flags
& F_RELFLG
))
178 abfd
->flags
|= HAS_RELOC
;
179 if ((internal_f
->f_flags
& F_EXEC
))
180 abfd
->flags
|= EXEC_P
;
181 if (!(internal_f
->f_flags
& F_LNNO
))
182 abfd
->flags
|= HAS_LINENO
;
183 if (!(internal_f
->f_flags
& F_LSYMS
))
184 abfd
->flags
|= HAS_LOCALS
;
186 /* FIXME: How can we set D_PAGED correctly? */
187 if ((internal_f
->f_flags
& F_EXEC
) != 0)
188 abfd
->flags
|= D_PAGED
;
190 bfd_get_symcount (abfd
) = internal_f
->f_nsyms
;
191 if (internal_f
->f_nsyms
)
192 abfd
->flags
|= HAS_SYMS
;
194 if (internal_a
!= (struct internal_aouthdr
*) NULL
)
195 bfd_get_start_address (abfd
) = internal_a
->entry
;
197 bfd_get_start_address (abfd
) = 0;
199 /* Set up the tdata area. ECOFF uses its own routine, and overrides
201 tdata
= bfd_coff_mkobject_hook (abfd
, (PTR
) internal_f
, (PTR
) internal_a
);
205 scnhsz
= bfd_coff_scnhsz (abfd
);
206 readsize
= nscns
* scnhsz
;
207 external_sections
= (char *) bfd_alloc (abfd
, readsize
);
208 if (!external_sections
)
211 if (bfd_read ((PTR
) external_sections
, 1, readsize
, abfd
) != readsize
)
214 /* Set the arch/mach *before* swapping in sections; section header swapping
215 may depend on arch/mach info. */
216 if (bfd_coff_set_arch_mach_hook (abfd
, (PTR
) internal_f
) == false)
219 /* Now copy data as required; construct all asections etc */
223 for (i
= 0; i
< nscns
; i
++)
225 struct internal_scnhdr tmp
;
226 bfd_coff_swap_scnhdr_in (abfd
,
227 (PTR
) (external_sections
+ i
* scnhsz
),
229 if (! make_a_section_from_file (abfd
, &tmp
, i
+ 1))
234 /* make_abs_section (abfd); */
239 bfd_release (abfd
, tdata
);
240 abfd
->flags
= oflags
;
241 bfd_get_start_address (abfd
) = ostart
;
242 return (const bfd_target
*) NULL
;
245 /* Turn a COFF file into a BFD, but fail with bfd_error_wrong_format if it is
246 not a COFF file. This is also used by ECOFF. */
256 struct internal_filehdr internal_f
;
257 struct internal_aouthdr internal_a
;
259 /* figure out how much to read */
260 filhsz
= bfd_coff_filhsz (abfd
);
261 aoutsz
= bfd_coff_aoutsz (abfd
);
263 filehdr
= bfd_alloc (abfd
, filhsz
);
266 if (bfd_read (filehdr
, 1, filhsz
, abfd
) != filhsz
)
268 if (bfd_get_error () != bfd_error_system_call
)
269 bfd_set_error (bfd_error_wrong_format
);
272 bfd_coff_swap_filehdr_in (abfd
, filehdr
, &internal_f
);
273 bfd_release (abfd
, filehdr
);
275 if (bfd_coff_bad_format_hook (abfd
, &internal_f
) == false)
277 bfd_set_error (bfd_error_wrong_format
);
280 nscns
= internal_f
.f_nscns
;
282 if (internal_f
.f_opthdr
)
286 opthdr
= bfd_alloc (abfd
, aoutsz
);
289 if (bfd_read (opthdr
, 1, internal_f
.f_opthdr
, abfd
)
290 != internal_f
.f_opthdr
)
294 bfd_coff_swap_aouthdr_in (abfd
, opthdr
, (PTR
) &internal_a
);
297 return coff_real_object_p (abfd
, nscns
, &internal_f
,
298 (internal_f
.f_opthdr
!= 0
300 : (struct internal_aouthdr
*) NULL
));
303 /* Get the BFD section from a COFF symbol section number. */
306 coff_section_from_bfd_index (abfd
, index
)
310 struct sec
*answer
= abfd
->sections
;
313 return bfd_abs_section_ptr
;
314 if (index
== N_UNDEF
)
315 return bfd_und_section_ptr
;
316 if (index
== N_DEBUG
)
317 return bfd_abs_section_ptr
;
321 if (answer
->target_index
== index
)
323 answer
= answer
->next
;
326 /* We should not reach this point, but the SCO 3.2v4 /lib/libc_s.a
327 has a bad symbol table in biglitpow.o. */
328 return bfd_und_section_ptr
;
331 /* Get the upper bound of a COFF symbol table. */
334 coff_get_symtab_upper_bound (abfd
)
337 if (!bfd_coff_slurp_symbol_table (abfd
))
340 return (bfd_get_symcount (abfd
) + 1) * (sizeof (coff_symbol_type
*));
344 /* Canonicalize a COFF symbol table. */
347 coff_get_symtab (abfd
, alocation
)
351 unsigned int counter
;
352 coff_symbol_type
*symbase
;
353 coff_symbol_type
**location
= (coff_symbol_type
**) alocation
;
355 if (!bfd_coff_slurp_symbol_table (abfd
))
358 symbase
= obj_symbols (abfd
);
359 counter
= bfd_get_symcount (abfd
);
360 while (counter
-- > 0)
361 *location
++ = symbase
++;
365 return bfd_get_symcount (abfd
);
368 /* Get the name of a symbol. The caller must pass in a buffer of size
372 _bfd_coff_internal_syment_name (abfd
, sym
, buf
)
374 const struct internal_syment
*sym
;
377 /* FIXME: It's not clear this will work correctly if sizeof
379 if (sym
->_n
._n_n
._n_zeroes
!= 0
380 || sym
->_n
._n_n
._n_offset
== 0)
382 memcpy (buf
, sym
->_n
._n_name
, SYMNMLEN
);
383 buf
[SYMNMLEN
] = '\0';
390 BFD_ASSERT (sym
->_n
._n_n
._n_offset
>= STRING_SIZE_SIZE
);
391 strings
= obj_coff_strings (abfd
);
394 strings
= _bfd_coff_read_string_table (abfd
);
398 return strings
+ sym
->_n
._n_n
._n_offset
;
402 /* Read in and swap the relocs. This returns a buffer holding the
403 relocs for section SEC in file ABFD. If CACHE is true and
404 INTERNAL_RELOCS is NULL, the relocs read in will be saved in case
405 the function is called again. If EXTERNAL_RELOCS is not NULL, it
406 is a buffer large enough to hold the unswapped relocs. If
407 INTERNAL_RELOCS is not NULL, it is a buffer large enough to hold
408 the swapped relocs. If REQUIRE_INTERNAL is true, then the return
409 value must be INTERNAL_RELOCS. The function returns NULL on error. */
411 struct internal_reloc
*
412 _bfd_coff_read_internal_relocs (abfd
, sec
, cache
, external_relocs
,
413 require_internal
, internal_relocs
)
417 bfd_byte
*external_relocs
;
418 boolean require_internal
;
419 struct internal_reloc
*internal_relocs
;
422 bfd_byte
*free_external
= NULL
;
423 struct internal_reloc
*free_internal
= NULL
;
426 struct internal_reloc
*irel
;
428 if (coff_section_data (abfd
, sec
) != NULL
429 && coff_section_data (abfd
, sec
)->relocs
!= NULL
)
431 if (! require_internal
)
432 return coff_section_data (abfd
, sec
)->relocs
;
433 memcpy (internal_relocs
, coff_section_data (abfd
, sec
)->relocs
,
434 sec
->reloc_count
* sizeof (struct internal_reloc
));
435 return internal_relocs
;
438 relsz
= bfd_coff_relsz (abfd
);
440 if (external_relocs
== NULL
)
442 free_external
= (bfd_byte
*) bfd_malloc (sec
->reloc_count
* relsz
);
443 if (free_external
== NULL
&& sec
->reloc_count
> 0)
445 external_relocs
= free_external
;
448 if (bfd_seek (abfd
, sec
->rel_filepos
, SEEK_SET
) != 0
449 || (bfd_read (external_relocs
, relsz
, sec
->reloc_count
, abfd
)
450 != relsz
* sec
->reloc_count
))
453 if (internal_relocs
== NULL
)
455 free_internal
= ((struct internal_reloc
*)
456 bfd_malloc (sec
->reloc_count
457 * sizeof (struct internal_reloc
)));
458 if (free_internal
== NULL
&& sec
->reloc_count
> 0)
460 internal_relocs
= free_internal
;
463 /* Swap in the relocs. */
464 erel
= external_relocs
;
465 erel_end
= erel
+ relsz
* sec
->reloc_count
;
466 irel
= internal_relocs
;
467 for (; erel
< erel_end
; erel
+= relsz
, irel
++)
468 bfd_coff_swap_reloc_in (abfd
, (PTR
) erel
, (PTR
) irel
);
470 if (free_external
!= NULL
)
472 free (free_external
);
473 free_external
= NULL
;
476 if (cache
&& free_internal
!= NULL
)
478 if (coff_section_data (abfd
, sec
) == NULL
)
481 (PTR
) bfd_zalloc (abfd
,
482 sizeof (struct coff_section_tdata
));
483 if (sec
->used_by_bfd
== NULL
)
485 coff_section_data (abfd
, sec
)->contents
= NULL
;
487 coff_section_data (abfd
, sec
)->relocs
= free_internal
;
490 return internal_relocs
;
493 if (free_external
!= NULL
)
494 free (free_external
);
495 if (free_internal
!= NULL
)
496 free (free_internal
);
500 /* Set lineno_count for the output sections of a COFF file. */
503 coff_count_linenumbers (abfd
)
506 unsigned int limit
= bfd_get_symcount (abfd
);
514 /* This may be from the backend linker, in which case the
515 lineno_count in the sections is correct. */
516 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
517 total
+= s
->lineno_count
;
521 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
522 BFD_ASSERT (s
->lineno_count
== 0);
524 for (p
= abfd
->outsymbols
, i
= 0; i
< limit
; i
++, p
++)
526 asymbol
*q_maybe
= *p
;
528 if (bfd_family_coff (bfd_asymbol_bfd (q_maybe
)))
530 coff_symbol_type
*q
= coffsymbol (q_maybe
);
532 /* The AIX 4.1 compiler can sometimes generate line numbers
533 attached to debugging symbols. We try to simply ignore
535 if (q
->lineno
!= NULL
536 && q
->symbol
.section
->owner
!= NULL
)
538 /* This symbol has line numbers. Increment the owning
539 section's linenumber count. */
540 alent
*l
= q
->lineno
;
542 ++q
->symbol
.section
->output_section
->lineno_count
;
545 while (l
->line_number
!= 0)
548 ++q
->symbol
.section
->output_section
->lineno_count
;
558 /* Takes a bfd and a symbol, returns a pointer to the coff specific
559 area of the symbol if there is one. */
563 coff_symbol_from (ignore_abfd
, symbol
)
564 bfd
*ignore_abfd ATTRIBUTE_UNUSED
;
567 if (!bfd_family_coff (bfd_asymbol_bfd (symbol
)))
568 return (coff_symbol_type
*) NULL
;
570 if (bfd_asymbol_bfd (symbol
)->tdata
.coff_obj_data
== (coff_data_type
*) NULL
)
571 return (coff_symbol_type
*) NULL
;
573 return (coff_symbol_type
*) symbol
;
577 fixup_symbol_value (abfd
, coff_symbol_ptr
, syment
)
579 coff_symbol_type
*coff_symbol_ptr
;
580 struct internal_syment
*syment
;
583 /* Normalize the symbol flags */
584 if (bfd_is_com_section (coff_symbol_ptr
->symbol
.section
))
586 /* a common symbol is undefined with a value */
587 syment
->n_scnum
= N_UNDEF
;
588 syment
->n_value
= coff_symbol_ptr
->symbol
.value
;
590 else if ((coff_symbol_ptr
->symbol
.flags
& BSF_DEBUGGING
) != 0
591 && (coff_symbol_ptr
->symbol
.flags
& BSF_DEBUGGING_RELOC
) == 0)
593 syment
->n_value
= coff_symbol_ptr
->symbol
.value
;
595 else if (bfd_is_und_section (coff_symbol_ptr
->symbol
.section
))
597 syment
->n_scnum
= N_UNDEF
;
600 /* FIXME: Do we need to handle the absolute section here? */
603 if (coff_symbol_ptr
->symbol
.section
)
606 coff_symbol_ptr
->symbol
.section
->output_section
->target_index
;
608 syment
->n_value
= (coff_symbol_ptr
->symbol
.value
609 + coff_symbol_ptr
->symbol
.section
->output_offset
);
612 syment
->n_value
+= (syment
->n_sclass
== C_STATLAB
)
613 ? coff_symbol_ptr
->symbol
.section
->output_section
->lma
614 : coff_symbol_ptr
->symbol
.section
->output_section
->vma
;
620 /* This can happen, but I don't know why yet (steve@cygnus.com) */
621 syment
->n_scnum
= N_ABS
;
622 syment
->n_value
= coff_symbol_ptr
->symbol
.value
;
627 /* Run through all the symbols in the symbol table and work out what
628 their indexes into the symbol table will be when output.
630 Coff requires that each C_FILE symbol points to the next one in the
631 chain, and that the last one points to the first external symbol. We
635 coff_renumber_symbols (bfd_ptr
, first_undef
)
639 unsigned int symbol_count
= bfd_get_symcount (bfd_ptr
);
640 asymbol
**symbol_ptr_ptr
= bfd_ptr
->outsymbols
;
641 unsigned int native_index
= 0;
642 struct internal_syment
*last_file
= (struct internal_syment
*) NULL
;
643 unsigned int symbol_index
;
645 /* COFF demands that undefined symbols come after all other symbols.
646 Since we don't need to impose this extra knowledge on all our
647 client programs, deal with that here. Sort the symbol table;
648 just move the undefined symbols to the end, leaving the rest
649 alone. The O'Reilly book says that defined global symbols come
650 at the end before the undefined symbols, so we do that here as
652 /* @@ Do we have some condition we could test for, so we don't always
653 have to do this? I don't think relocatability is quite right, but
654 I'm not certain. [raeburn:19920508.1711EST] */
659 newsyms
= (asymbol
**) bfd_alloc (bfd_ptr
,
660 sizeof (asymbol
*) * (symbol_count
+ 1));
663 bfd_ptr
->outsymbols
= newsyms
;
664 for (i
= 0; i
< symbol_count
; i
++)
665 if ((symbol_ptr_ptr
[i
]->flags
& BSF_NOT_AT_END
) != 0
666 || (!bfd_is_und_section (symbol_ptr_ptr
[i
]->section
)
667 && !bfd_is_com_section (symbol_ptr_ptr
[i
]->section
)
668 && ((symbol_ptr_ptr
[i
]->flags
& BSF_FUNCTION
) != 0
669 || ((symbol_ptr_ptr
[i
]->flags
& (BSF_GLOBAL
| BSF_WEAK
))
671 *newsyms
++ = symbol_ptr_ptr
[i
];
673 for (i
= 0; i
< symbol_count
; i
++)
674 if ((symbol_ptr_ptr
[i
]->flags
& BSF_NOT_AT_END
) == 0
675 && !bfd_is_und_section (symbol_ptr_ptr
[i
]->section
)
676 && (bfd_is_com_section (symbol_ptr_ptr
[i
]->section
)
677 || ((symbol_ptr_ptr
[i
]->flags
& BSF_FUNCTION
) == 0
678 && ((symbol_ptr_ptr
[i
]->flags
& (BSF_GLOBAL
| BSF_WEAK
))
680 *newsyms
++ = symbol_ptr_ptr
[i
];
682 *first_undef
= newsyms
- bfd_ptr
->outsymbols
;
684 for (i
= 0; i
< symbol_count
; i
++)
685 if ((symbol_ptr_ptr
[i
]->flags
& BSF_NOT_AT_END
) == 0
686 && bfd_is_und_section (symbol_ptr_ptr
[i
]->section
))
687 *newsyms
++ = symbol_ptr_ptr
[i
];
688 *newsyms
= (asymbol
*) NULL
;
689 symbol_ptr_ptr
= bfd_ptr
->outsymbols
;
692 for (symbol_index
= 0; symbol_index
< symbol_count
; symbol_index
++)
694 coff_symbol_type
*coff_symbol_ptr
= coff_symbol_from (bfd_ptr
, symbol_ptr_ptr
[symbol_index
]);
695 symbol_ptr_ptr
[symbol_index
]->udata
.i
= symbol_index
;
696 if (coff_symbol_ptr
&& coff_symbol_ptr
->native
)
698 combined_entry_type
*s
= coff_symbol_ptr
->native
;
701 if (s
->u
.syment
.n_sclass
== C_FILE
)
703 if (last_file
!= (struct internal_syment
*) NULL
)
704 last_file
->n_value
= native_index
;
705 last_file
= &(s
->u
.syment
);
710 /* Modify the symbol values according to their section and
713 fixup_symbol_value (bfd_ptr
, coff_symbol_ptr
, &(s
->u
.syment
));
715 for (i
= 0; i
< s
->u
.syment
.n_numaux
+ 1; i
++)
716 s
[i
].offset
= native_index
++;
723 obj_conv_table_size (bfd_ptr
) = native_index
;
728 /* Run thorough the symbol table again, and fix it so that all
729 pointers to entries are changed to the entries' index in the output
733 coff_mangle_symbols (bfd_ptr
)
736 unsigned int symbol_count
= bfd_get_symcount (bfd_ptr
);
737 asymbol
**symbol_ptr_ptr
= bfd_ptr
->outsymbols
;
738 unsigned int symbol_index
;
740 for (symbol_index
= 0; symbol_index
< symbol_count
; symbol_index
++)
742 coff_symbol_type
*coff_symbol_ptr
=
743 coff_symbol_from (bfd_ptr
, symbol_ptr_ptr
[symbol_index
]);
745 if (coff_symbol_ptr
&& coff_symbol_ptr
->native
)
748 combined_entry_type
*s
= coff_symbol_ptr
->native
;
752 /* FIXME: We should use a union here. */
753 s
->u
.syment
.n_value
=
754 ((combined_entry_type
*) s
->u
.syment
.n_value
)->offset
;
759 /* The value is the offset into the line number entries
760 for the symbol's section. On output, the symbol's
761 section should be N_DEBUG. */
762 s
->u
.syment
.n_value
=
763 (coff_symbol_ptr
->symbol
.section
->output_section
->line_filepos
764 + s
->u
.syment
.n_value
* bfd_coff_linesz (bfd_ptr
));
765 coff_symbol_ptr
->symbol
.section
=
766 coff_section_from_bfd_index (bfd_ptr
, N_DEBUG
);
767 BFD_ASSERT (coff_symbol_ptr
->symbol
.flags
& BSF_DEBUGGING
);
769 for (i
= 0; i
< s
->u
.syment
.n_numaux
; i
++)
771 combined_entry_type
*a
= s
+ i
+ 1;
774 a
->u
.auxent
.x_sym
.x_tagndx
.l
=
775 a
->u
.auxent
.x_sym
.x_tagndx
.p
->offset
;
780 a
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
=
781 a
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.p
->offset
;
786 a
->u
.auxent
.x_csect
.x_scnlen
.l
=
787 a
->u
.auxent
.x_csect
.x_scnlen
.p
->offset
;
796 coff_fix_symbol_name (abfd
, symbol
, native
, string_size_p
,
797 debug_string_section_p
, debug_string_size_p
)
800 combined_entry_type
*native
;
801 bfd_size_type
*string_size_p
;
802 asection
**debug_string_section_p
;
803 bfd_size_type
*debug_string_size_p
;
805 unsigned int name_length
;
806 union internal_auxent
*auxent
;
807 char *name
= (char *) (symbol
->name
);
809 if (name
== (char *) NULL
)
811 /* coff symbols always have names, so we'll make one up */
812 symbol
->name
= "strange";
813 name
= (char *) symbol
->name
;
815 name_length
= strlen (name
);
817 if (native
->u
.syment
.n_sclass
== C_FILE
818 && native
->u
.syment
.n_numaux
> 0)
820 unsigned int filnmlen
;
822 if (bfd_coff_force_symnames_in_strings (abfd
))
824 native
->u
.syment
._n
._n_n
._n_offset
=
825 (*string_size_p
+ STRING_SIZE_SIZE
);
826 native
->u
.syment
._n
._n_n
._n_zeroes
= 0;
827 *string_size_p
+= 6; /* strlen(".file") + 1 */
830 strncpy (native
->u
.syment
._n
._n_name
, ".file", SYMNMLEN
);
832 auxent
= &(native
+ 1)->u
.auxent
;
834 filnmlen
= bfd_coff_filnmlen (abfd
);
836 if (bfd_coff_long_filenames (abfd
))
838 if (name_length
<= filnmlen
)
840 strncpy (auxent
->x_file
.x_fname
, name
, filnmlen
);
844 auxent
->x_file
.x_n
.x_offset
= *string_size_p
+ STRING_SIZE_SIZE
;
845 auxent
->x_file
.x_n
.x_zeroes
= 0;
846 *string_size_p
+= name_length
+ 1;
851 strncpy (auxent
->x_file
.x_fname
, name
, filnmlen
);
852 if (name_length
> filnmlen
)
853 name
[filnmlen
] = '\0';
858 if (name_length
<= SYMNMLEN
&& !bfd_coff_force_symnames_in_strings (abfd
))
860 /* This name will fit into the symbol neatly */
861 strncpy (native
->u
.syment
._n
._n_name
, symbol
->name
, SYMNMLEN
);
863 else if (!bfd_coff_symname_in_debug (abfd
, &native
->u
.syment
))
865 native
->u
.syment
._n
._n_n
._n_offset
= (*string_size_p
867 native
->u
.syment
._n
._n_n
._n_zeroes
= 0;
868 *string_size_p
+= name_length
+ 1;
874 int prefix_len
= bfd_coff_debug_string_prefix_length (abfd
);
876 /* This name should be written into the .debug section. For
877 some reason each name is preceded by a two byte length
878 and also followed by a null byte. FIXME: We assume that
879 the .debug section has already been created, and that it
881 if (*debug_string_section_p
== (asection
*) NULL
)
882 *debug_string_section_p
= bfd_get_section_by_name (abfd
, ".debug");
883 filepos
= bfd_tell (abfd
);
885 bfd_put_32 (abfd
, name_length
+ 1, buf
);
887 bfd_put_16 (abfd
, name_length
+ 1, buf
);
889 if (!bfd_set_section_contents (abfd
,
890 *debug_string_section_p
,
892 (file_ptr
) *debug_string_size_p
,
893 (bfd_size_type
) prefix_len
)
894 || !bfd_set_section_contents (abfd
,
895 *debug_string_section_p
,
897 ((file_ptr
) *debug_string_size_p
899 (bfd_size_type
) name_length
+ 1))
901 if (bfd_seek (abfd
, filepos
, SEEK_SET
) != 0)
903 native
->u
.syment
._n
._n_n
._n_offset
=
904 *debug_string_size_p
+ prefix_len
;
905 native
->u
.syment
._n
._n_n
._n_zeroes
= 0;
906 *debug_string_size_p
+= name_length
+ 1 + prefix_len
;
911 /* We need to keep track of the symbol index so that when we write out
912 the relocs we can get the index for a symbol. This method is a
915 #define set_index(symbol, idx) ((symbol)->udata.i = (idx))
917 /* Write a symbol out to a COFF file. */
920 coff_write_symbol (abfd
, symbol
, native
, written
, string_size_p
,
921 debug_string_section_p
, debug_string_size_p
)
924 combined_entry_type
*native
;
925 unsigned int *written
;
926 bfd_size_type
*string_size_p
;
927 asection
**debug_string_section_p
;
928 bfd_size_type
*debug_string_size_p
;
930 unsigned int numaux
= native
->u
.syment
.n_numaux
;
931 int type
= native
->u
.syment
.n_type
;
932 int class = native
->u
.syment
.n_sclass
;
934 bfd_size_type symesz
;
936 if (native
->u
.syment
.n_sclass
== C_FILE
)
937 symbol
->flags
|= BSF_DEBUGGING
;
939 if (symbol
->flags
& BSF_DEBUGGING
940 && bfd_is_abs_section (symbol
->section
))
942 native
->u
.syment
.n_scnum
= N_DEBUG
;
944 else if (bfd_is_abs_section (symbol
->section
))
946 native
->u
.syment
.n_scnum
= N_ABS
;
948 else if (bfd_is_und_section (symbol
->section
))
950 native
->u
.syment
.n_scnum
= N_UNDEF
;
954 native
->u
.syment
.n_scnum
=
955 symbol
->section
->output_section
->target_index
;
958 coff_fix_symbol_name (abfd
, symbol
, native
, string_size_p
,
959 debug_string_section_p
, debug_string_size_p
);
961 symesz
= bfd_coff_symesz (abfd
);
962 buf
= bfd_alloc (abfd
, symesz
);
965 bfd_coff_swap_sym_out (abfd
, &native
->u
.syment
, buf
);
966 if (bfd_write (buf
, 1, symesz
, abfd
) != symesz
)
968 bfd_release (abfd
, buf
);
970 if (native
->u
.syment
.n_numaux
> 0)
972 bfd_size_type auxesz
;
975 auxesz
= bfd_coff_auxesz (abfd
);
976 buf
= bfd_alloc (abfd
, auxesz
);
979 for (j
= 0; j
< native
->u
.syment
.n_numaux
; j
++)
981 bfd_coff_swap_aux_out (abfd
,
982 &((native
+ j
+ 1)->u
.auxent
),
986 native
->u
.syment
.n_numaux
,
988 if (bfd_write (buf
, 1, auxesz
, abfd
) != auxesz
)
991 bfd_release (abfd
, buf
);
994 /* Store the index for use when we write out the relocs. */
995 set_index (symbol
, *written
);
997 *written
+= numaux
+ 1;
1001 /* Write out a symbol to a COFF file that does not come from a COFF
1002 file originally. This symbol may have been created by the linker,
1003 or we may be linking a non COFF file to a COFF file. */
1006 coff_write_alien_symbol (abfd
, symbol
, written
, string_size_p
,
1007 debug_string_section_p
, debug_string_size_p
)
1010 unsigned int *written
;
1011 bfd_size_type
*string_size_p
;
1012 asection
**debug_string_section_p
;
1013 bfd_size_type
*debug_string_size_p
;
1015 combined_entry_type
*native
;
1016 combined_entry_type dummy
;
1019 native
->u
.syment
.n_type
= T_NULL
;
1020 native
->u
.syment
.n_flags
= 0;
1021 if (bfd_is_und_section (symbol
->section
))
1023 native
->u
.syment
.n_scnum
= N_UNDEF
;
1024 native
->u
.syment
.n_value
= symbol
->value
;
1026 else if (bfd_is_com_section (symbol
->section
))
1028 native
->u
.syment
.n_scnum
= N_UNDEF
;
1029 native
->u
.syment
.n_value
= symbol
->value
;
1031 else if (symbol
->flags
& BSF_DEBUGGING
)
1033 /* There isn't much point to writing out a debugging symbol
1034 unless we are prepared to convert it into COFF debugging
1035 format. So, we just ignore them. We must clobber the symbol
1036 name to keep it from being put in the string table. */
1042 native
->u
.syment
.n_scnum
=
1043 symbol
->section
->output_section
->target_index
;
1044 native
->u
.syment
.n_value
= (symbol
->value
1045 + symbol
->section
->output_offset
);
1046 if (! obj_pe (abfd
))
1047 native
->u
.syment
.n_value
+= symbol
->section
->output_section
->vma
;
1049 /* Copy the any flags from the the file header into the symbol.
1052 coff_symbol_type
*c
= coff_symbol_from (abfd
, symbol
);
1053 if (c
!= (coff_symbol_type
*) NULL
)
1054 native
->u
.syment
.n_flags
= bfd_asymbol_bfd (&c
->symbol
)->flags
;
1058 native
->u
.syment
.n_type
= 0;
1059 if (symbol
->flags
& BSF_LOCAL
)
1060 native
->u
.syment
.n_sclass
= C_STAT
;
1061 else if (symbol
->flags
& BSF_WEAK
)
1062 native
->u
.syment
.n_sclass
= obj_pe (abfd
) ? C_NT_WEAK
: C_WEAKEXT
;
1064 native
->u
.syment
.n_sclass
= C_EXT
;
1065 native
->u
.syment
.n_numaux
= 0;
1067 return coff_write_symbol (abfd
, symbol
, native
, written
, string_size_p
,
1068 debug_string_section_p
, debug_string_size_p
);
1071 /* Write a native symbol to a COFF file. */
1074 coff_write_native_symbol (abfd
, symbol
, written
, string_size_p
,
1075 debug_string_section_p
, debug_string_size_p
)
1077 coff_symbol_type
*symbol
;
1078 unsigned int *written
;
1079 bfd_size_type
*string_size_p
;
1080 asection
**debug_string_section_p
;
1081 bfd_size_type
*debug_string_size_p
;
1083 combined_entry_type
*native
= symbol
->native
;
1084 alent
*lineno
= symbol
->lineno
;
1086 /* If this symbol has an associated line number, we must store the
1087 symbol index in the line number field. We also tag the auxent to
1088 point to the right place in the lineno table. */
1089 if (lineno
&& !symbol
->done_lineno
&& symbol
->symbol
.section
->owner
!= NULL
)
1091 unsigned int count
= 0;
1092 lineno
[count
].u
.offset
= *written
;
1093 if (native
->u
.syment
.n_numaux
)
1095 union internal_auxent
*a
= &((native
+ 1)->u
.auxent
);
1097 a
->x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
=
1098 symbol
->symbol
.section
->output_section
->moving_line_filepos
;
1101 /* Count and relocate all other linenumbers. */
1103 while (lineno
[count
].line_number
!= 0)
1107 I've been told this, but still need proof:
1108 > The second bug is also in `bfd/coffcode.h'. This bug
1109 > causes the linker to screw up the pc-relocations for
1110 > all the line numbers in COFF code. This bug isn't only
1111 > specific to A29K implementations, but affects all
1112 > systems using COFF format binaries. Note that in COFF
1113 > object files, the line number core offsets output by
1114 > the assembler are relative to the start of each
1115 > procedure, not to the start of the .text section. This
1116 > patch relocates the line numbers relative to the
1117 > `native->u.syment.n_value' instead of the section
1119 > modular!olson@cs.arizona.edu (Jon Olson)
1121 lineno
[count
].u
.offset
+= native
->u
.syment
.n_value
;
1123 lineno
[count
].u
.offset
+=
1124 (symbol
->symbol
.section
->output_section
->vma
1125 + symbol
->symbol
.section
->output_offset
);
1129 symbol
->done_lineno
= true;
1131 symbol
->symbol
.section
->output_section
->moving_line_filepos
+=
1132 count
* bfd_coff_linesz (abfd
);
1135 return coff_write_symbol (abfd
, &(symbol
->symbol
), native
, written
,
1136 string_size_p
, debug_string_section_p
,
1137 debug_string_size_p
);
1140 /* Write out the COFF symbols. */
1143 coff_write_symbols (abfd
)
1146 bfd_size_type string_size
;
1147 asection
*debug_string_section
;
1148 bfd_size_type debug_string_size
;
1150 unsigned int limit
= bfd_get_symcount (abfd
);
1151 unsigned int written
= 0;
1155 debug_string_section
= NULL
;
1156 debug_string_size
= 0;
1158 /* If this target supports long section names, they must be put into
1159 the string table. This is supported by PE. This code must
1160 handle section names just as they are handled in
1161 coff_write_object_contents. */
1162 if (bfd_coff_long_section_names (abfd
))
1166 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
1170 len
= strlen (o
->name
);
1172 string_size
+= len
+ 1;
1176 /* Seek to the right place */
1177 if (bfd_seek (abfd
, obj_sym_filepos (abfd
), SEEK_SET
) != 0)
1180 /* Output all the symbols we have */
1183 for (p
= abfd
->outsymbols
, i
= 0; i
< limit
; i
++, p
++)
1185 asymbol
*symbol
= *p
;
1186 coff_symbol_type
*c_symbol
= coff_symbol_from (abfd
, symbol
);
1188 if (c_symbol
== (coff_symbol_type
*) NULL
1189 || c_symbol
->native
== (combined_entry_type
*) NULL
)
1191 if (!coff_write_alien_symbol (abfd
, symbol
, &written
, &string_size
,
1192 &debug_string_section
,
1193 &debug_string_size
))
1198 if (!coff_write_native_symbol (abfd
, c_symbol
, &written
,
1199 &string_size
, &debug_string_section
,
1200 &debug_string_size
))
1205 obj_raw_syment_count (abfd
) = written
;
1207 /* Now write out strings */
1209 if (string_size
!= 0)
1211 unsigned int size
= string_size
+ STRING_SIZE_SIZE
;
1212 bfd_byte buffer
[STRING_SIZE_SIZE
];
1214 #if STRING_SIZE_SIZE == 4
1215 bfd_h_put_32 (abfd
, size
, buffer
);
1217 #error Change bfd_h_put_32
1219 if (bfd_write ((PTR
) buffer
, 1, sizeof (buffer
), abfd
) != sizeof (buffer
))
1222 /* Handle long section names. This code must handle section
1223 names just as they are handled in coff_write_object_contents. */
1224 if (bfd_coff_long_section_names (abfd
))
1228 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
1232 len
= strlen (o
->name
);
1235 if (bfd_write (o
->name
, 1, len
+ 1, abfd
) != len
+ 1)
1241 for (p
= abfd
->outsymbols
, i
= 0;
1246 size_t name_length
= strlen (q
->name
);
1247 coff_symbol_type
*c_symbol
= coff_symbol_from (abfd
, q
);
1250 /* Figure out whether the symbol name should go in the string
1251 table. Symbol names that are short enough are stored
1252 directly in the syment structure. File names permit a
1253 different, longer, length in the syment structure. On
1254 XCOFF, some symbol names are stored in the .debug section
1255 rather than in the string table. */
1257 if (c_symbol
== NULL
1258 || c_symbol
->native
== NULL
)
1260 /* This is not a COFF symbol, so it certainly is not a
1261 file name, nor does it go in the .debug section. */
1262 maxlen
= bfd_coff_force_symnames_in_strings (abfd
) ? 0 : SYMNMLEN
;
1264 else if (bfd_coff_symname_in_debug (abfd
,
1265 &c_symbol
->native
->u
.syment
))
1267 /* This symbol name is in the XCOFF .debug section.
1268 Don't write it into the string table. */
1269 maxlen
= name_length
;
1271 else if (c_symbol
->native
->u
.syment
.n_sclass
== C_FILE
1272 && c_symbol
->native
->u
.syment
.n_numaux
> 0)
1274 if (bfd_coff_force_symnames_in_strings (abfd
))
1275 bfd_write (".file", 1, 6, abfd
);
1276 maxlen
= bfd_coff_filnmlen (abfd
);
1279 maxlen
= bfd_coff_force_symnames_in_strings (abfd
) ? 0 : SYMNMLEN
;
1281 if (name_length
> maxlen
)
1283 if (bfd_write ((PTR
) (q
->name
), 1, name_length
+ 1, abfd
)
1291 /* We would normally not write anything here, but we'll write
1292 out 4 so that any stupid coff reader which tries to read the
1293 string table even when there isn't one won't croak. */
1294 unsigned int size
= STRING_SIZE_SIZE
;
1295 bfd_byte buffer
[STRING_SIZE_SIZE
];
1297 #if STRING_SIZE_SIZE == 4
1298 bfd_h_put_32 (abfd
, size
, buffer
);
1300 #error Change bfd_h_put_32
1302 if (bfd_write ((PTR
) buffer
, 1, STRING_SIZE_SIZE
, abfd
)
1303 != STRING_SIZE_SIZE
)
1307 /* Make sure the .debug section was created to be the correct size.
1308 We should create it ourselves on the fly, but we don't because
1309 BFD won't let us write to any section until we know how large all
1310 the sections are. We could still do it by making another pass
1311 over the symbols. FIXME. */
1312 BFD_ASSERT (debug_string_size
== 0
1313 || (debug_string_section
!= (asection
*) NULL
1314 && (BFD_ALIGN (debug_string_size
,
1315 1 << debug_string_section
->alignment_power
)
1316 == bfd_section_size (abfd
, debug_string_section
))));
1322 coff_write_linenumbers (abfd
)
1326 bfd_size_type linesz
;
1329 linesz
= bfd_coff_linesz (abfd
);
1330 buff
= bfd_alloc (abfd
, linesz
);
1333 for (s
= abfd
->sections
; s
!= (asection
*) NULL
; s
= s
->next
)
1335 if (s
->lineno_count
)
1337 asymbol
**q
= abfd
->outsymbols
;
1338 if (bfd_seek (abfd
, s
->line_filepos
, SEEK_SET
) != 0)
1340 /* Find all the linenumbers in this section */
1344 if (p
->section
->output_section
== s
)
1347 BFD_SEND (bfd_asymbol_bfd (p
), _get_lineno
,
1348 (bfd_asymbol_bfd (p
), p
));
1351 /* Found a linenumber entry, output */
1352 struct internal_lineno out
;
1353 memset ((PTR
) & out
, 0, sizeof (out
));
1355 out
.l_addr
.l_symndx
= l
->u
.offset
;
1356 bfd_coff_swap_lineno_out (abfd
, &out
, buff
);
1357 if (bfd_write (buff
, 1, linesz
, abfd
) != linesz
)
1360 while (l
->line_number
)
1362 out
.l_lnno
= l
->line_number
;
1363 out
.l_addr
.l_symndx
= l
->u
.offset
;
1364 bfd_coff_swap_lineno_out (abfd
, &out
, buff
);
1365 if (bfd_write (buff
, 1, linesz
, abfd
) != linesz
)
1375 bfd_release (abfd
, buff
);
1381 coff_get_lineno (ignore_abfd
, symbol
)
1382 bfd
*ignore_abfd ATTRIBUTE_UNUSED
;
1385 return coffsymbol (symbol
)->lineno
;
1390 /* This is only called from coff_add_missing_symbols, which has been
1394 coff_section_symbol (abfd
, name
)
1398 asection
*sec
= bfd_make_section_old_way (abfd
, name
);
1400 combined_entry_type
*csym
;
1403 csym
= coff_symbol_from (abfd
, sym
)->native
;
1404 /* Make sure back-end COFF stuff is there. */
1409 coff_symbol_type sym
;
1410 /* @@FIXME This shouldn't use a fixed size!! */
1411 combined_entry_type e
[10];
1414 f
= (struct foo
*) bfd_alloc (abfd
, sizeof (*f
));
1417 bfd_set_error (bfd_error_no_error
);
1420 memset ((char *) f
, 0, sizeof (*f
));
1421 coff_symbol_from (abfd
, sym
)->native
= csym
= f
->e
;
1423 csym
[0].u
.syment
.n_sclass
= C_STAT
;
1424 csym
[0].u
.syment
.n_numaux
= 1;
1425 /* SF_SET_STATICS (sym); @@ ??? */
1426 csym
[1].u
.auxent
.x_scn
.x_scnlen
= sec
->_raw_size
;
1427 csym
[1].u
.auxent
.x_scn
.x_nreloc
= sec
->reloc_count
;
1428 csym
[1].u
.auxent
.x_scn
.x_nlinno
= sec
->lineno_count
;
1430 if (sec
->output_section
== NULL
)
1432 sec
->output_section
= sec
;
1433 sec
->output_offset
= 0;
1441 /* This function transforms the offsets into the symbol table into
1442 pointers to syments. */
1445 coff_pointerize_aux (abfd
, table_base
, symbol
, indaux
, auxent
)
1447 combined_entry_type
*table_base
;
1448 combined_entry_type
*symbol
;
1449 unsigned int indaux
;
1450 combined_entry_type
*auxent
;
1452 unsigned int type
= symbol
->u
.syment
.n_type
;
1453 unsigned int class = symbol
->u
.syment
.n_sclass
;
1455 if (coff_backend_info (abfd
)->_bfd_coff_pointerize_aux_hook
)
1457 if ((*coff_backend_info (abfd
)->_bfd_coff_pointerize_aux_hook
)
1458 (abfd
, table_base
, symbol
, indaux
, auxent
))
1462 /* Don't bother if this is a file or a section */
1463 if (class == C_STAT
&& type
== T_NULL
)
1465 if (class == C_FILE
)
1468 /* Otherwise patch up */
1469 #define N_TMASK coff_data (abfd)->local_n_tmask
1470 #define N_BTSHFT coff_data (abfd)->local_n_btshft
1471 if ((ISFCN (type
) || ISTAG (class) || class == C_BLOCK
|| class == C_FCN
)
1472 && auxent
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
> 0)
1474 auxent
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.p
=
1475 table_base
+ auxent
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
;
1476 auxent
->fix_end
= 1;
1478 /* A negative tagndx is meaningless, but the SCO 3.2v4 cc can
1479 generate one, so we must be careful to ignore it. */
1480 if (auxent
->u
.auxent
.x_sym
.x_tagndx
.l
> 0)
1482 auxent
->u
.auxent
.x_sym
.x_tagndx
.p
=
1483 table_base
+ auxent
->u
.auxent
.x_sym
.x_tagndx
.l
;
1484 auxent
->fix_tag
= 1;
1488 /* Allocate space for the ".debug" section, and read it.
1489 We did not read the debug section until now, because
1490 we didn't want to go to the trouble until someone needed it. */
1493 build_debug_section (abfd
)
1496 char *debug_section
;
1499 asection
*sect
= bfd_get_section_by_name (abfd
, ".debug");
1503 bfd_set_error (bfd_error_no_debug_section
);
1507 debug_section
= (PTR
) bfd_alloc (abfd
,
1508 bfd_get_section_size_before_reloc (sect
));
1509 if (debug_section
== NULL
)
1512 /* Seek to the beginning of the `.debug' section and read it.
1513 Save the current position first; it is needed by our caller.
1514 Then read debug section and reset the file pointer. */
1516 position
= bfd_tell (abfd
);
1517 if (bfd_seek (abfd
, sect
->filepos
, SEEK_SET
) != 0
1518 || (bfd_read (debug_section
,
1519 bfd_get_section_size_before_reloc (sect
), 1, abfd
)
1520 != bfd_get_section_size_before_reloc (sect
))
1521 || bfd_seek (abfd
, position
, SEEK_SET
) != 0)
1523 return debug_section
;
1527 /* Return a pointer to a malloc'd copy of 'name'. 'name' may not be
1528 \0-terminated, but will not exceed 'maxlen' characters. The copy *will*
1529 be \0-terminated. */
1531 copy_name (abfd
, name
, maxlen
)
1539 for (len
= 0; len
< maxlen
; ++len
)
1541 if (name
[len
] == '\0')
1547 if ((newname
= (PTR
) bfd_alloc (abfd
, len
+ 1)) == NULL
)
1549 strncpy (newname
, name
, len
);
1550 newname
[len
] = '\0';
1554 /* Read in the external symbols. */
1557 _bfd_coff_get_external_symbols (abfd
)
1560 bfd_size_type symesz
;
1564 if (obj_coff_external_syms (abfd
) != NULL
)
1567 symesz
= bfd_coff_symesz (abfd
);
1569 size
= obj_raw_syment_count (abfd
) * symesz
;
1571 syms
= (PTR
) bfd_malloc (size
);
1572 if (syms
== NULL
&& size
!= 0)
1575 if (bfd_seek (abfd
, obj_sym_filepos (abfd
), SEEK_SET
) != 0
1576 || bfd_read (syms
, size
, 1, abfd
) != size
)
1583 obj_coff_external_syms (abfd
) = syms
;
1588 /* Read in the external strings. The strings are not loaded until
1589 they are needed. This is because we have no simple way of
1590 detecting a missing string table in an archive. */
1593 _bfd_coff_read_string_table (abfd
)
1596 char extstrsize
[STRING_SIZE_SIZE
];
1600 if (obj_coff_strings (abfd
) != NULL
)
1601 return obj_coff_strings (abfd
);
1603 if (obj_sym_filepos (abfd
) == 0)
1605 bfd_set_error (bfd_error_no_symbols
);
1610 (obj_sym_filepos (abfd
)
1611 + obj_raw_syment_count (abfd
) * bfd_coff_symesz (abfd
)),
1615 if (bfd_read (extstrsize
, sizeof extstrsize
, 1, abfd
) != sizeof extstrsize
)
1617 if (bfd_get_error () != bfd_error_file_truncated
)
1620 /* There is no string table. */
1621 strsize
= STRING_SIZE_SIZE
;
1625 #if STRING_SIZE_SIZE == 4
1626 strsize
= bfd_h_get_32 (abfd
, (bfd_byte
*) extstrsize
);
1628 #error Change bfd_h_get_32
1632 if (strsize
< STRING_SIZE_SIZE
)
1634 (*_bfd_error_handler
)
1635 (_("%s: bad string table size %lu"), bfd_get_filename (abfd
),
1636 (unsigned long) strsize
);
1637 bfd_set_error (bfd_error_bad_value
);
1641 strings
= (char *) bfd_malloc (strsize
);
1642 if (strings
== NULL
)
1645 if (bfd_read (strings
+ STRING_SIZE_SIZE
,
1646 strsize
- STRING_SIZE_SIZE
, 1, abfd
)
1647 != strsize
- STRING_SIZE_SIZE
)
1653 obj_coff_strings (abfd
) = strings
;
1658 /* Free up the external symbols and strings read from a COFF file. */
1661 _bfd_coff_free_symbols (abfd
)
1664 if (obj_coff_external_syms (abfd
) != NULL
1665 && ! obj_coff_keep_syms (abfd
))
1667 free (obj_coff_external_syms (abfd
));
1668 obj_coff_external_syms (abfd
) = NULL
;
1670 if (obj_coff_strings (abfd
) != NULL
1671 && ! obj_coff_keep_strings (abfd
))
1673 free (obj_coff_strings (abfd
));
1674 obj_coff_strings (abfd
) = NULL
;
1679 /* Read a symbol table into freshly bfd_allocated memory, swap it, and
1680 knit the symbol names into a normalized form. By normalized here I
1681 mean that all symbols have an n_offset pointer that points to a null-
1682 terminated string. */
1684 combined_entry_type
*
1685 coff_get_normalized_symtab (abfd
)
1688 combined_entry_type
*internal
;
1689 combined_entry_type
*internal_ptr
;
1690 combined_entry_type
*symbol_ptr
;
1691 combined_entry_type
*internal_end
;
1692 bfd_size_type symesz
;
1695 const char *string_table
= NULL
;
1696 char *debug_section
= NULL
;
1699 if (obj_raw_syments (abfd
) != NULL
)
1700 return obj_raw_syments (abfd
);
1702 size
= obj_raw_syment_count (abfd
) * sizeof (combined_entry_type
);
1703 internal
= (combined_entry_type
*) bfd_zalloc (abfd
, size
);
1704 if (internal
== NULL
&& size
!= 0)
1706 internal_end
= internal
+ obj_raw_syment_count (abfd
);
1708 if (! _bfd_coff_get_external_symbols (abfd
))
1711 raw_src
= (char *) obj_coff_external_syms (abfd
);
1713 /* mark the end of the symbols */
1714 symesz
= bfd_coff_symesz (abfd
);
1715 raw_end
= (char *) raw_src
+ obj_raw_syment_count (abfd
) * symesz
;
1717 /* FIXME SOMEDAY. A string table size of zero is very weird, but
1718 probably possible. If one shows up, it will probably kill us. */
1720 /* Swap all the raw entries */
1721 for (internal_ptr
= internal
;
1723 raw_src
+= symesz
, internal_ptr
++)
1727 bfd_coff_swap_sym_in (abfd
, (PTR
) raw_src
,
1728 (PTR
) & internal_ptr
->u
.syment
);
1729 symbol_ptr
= internal_ptr
;
1732 i
< symbol_ptr
->u
.syment
.n_numaux
;
1737 bfd_coff_swap_aux_in (abfd
, (PTR
) raw_src
,
1738 symbol_ptr
->u
.syment
.n_type
,
1739 symbol_ptr
->u
.syment
.n_sclass
,
1740 i
, symbol_ptr
->u
.syment
.n_numaux
,
1741 &(internal_ptr
->u
.auxent
));
1742 coff_pointerize_aux (abfd
, internal
, symbol_ptr
, i
,
1747 /* Free the raw symbols, but not the strings (if we have them). */
1748 obj_coff_keep_strings (abfd
) = true;
1749 if (! _bfd_coff_free_symbols (abfd
))
1752 for (internal_ptr
= internal
; internal_ptr
< internal_end
;
1755 if (internal_ptr
->u
.syment
.n_sclass
== C_FILE
1756 && internal_ptr
->u
.syment
.n_numaux
> 0)
1758 /* make a file symbol point to the name in the auxent, since
1759 the text ".file" is redundant */
1760 if ((internal_ptr
+ 1)->u
.auxent
.x_file
.x_n
.x_zeroes
== 0)
1762 /* the filename is a long one, point into the string table */
1763 if (string_table
== NULL
)
1765 string_table
= _bfd_coff_read_string_table (abfd
);
1766 if (string_table
== NULL
)
1770 internal_ptr
->u
.syment
._n
._n_n
._n_offset
=
1773 + (internal_ptr
+ 1)->u
.auxent
.x_file
.x_n
.x_offset
));
1777 /* Ordinary short filename, put into memory anyway. The
1778 Microsoft PE tools sometimes store a filename in
1779 multiple AUX entries. */
1780 if (internal_ptr
->u
.syment
.n_numaux
> 1
1781 && coff_data (abfd
)->pe
)
1783 internal_ptr
->u
.syment
._n
._n_n
._n_offset
=
1786 (internal_ptr
+ 1)->u
.auxent
.x_file
.x_fname
,
1787 internal_ptr
->u
.syment
.n_numaux
* symesz
));
1791 internal_ptr
->u
.syment
._n
._n_n
._n_offset
=
1794 (internal_ptr
+ 1)->u
.auxent
.x_file
.x_fname
,
1795 bfd_coff_filnmlen (abfd
)));
1801 if (internal_ptr
->u
.syment
._n
._n_n
._n_zeroes
!= 0)
1803 /* This is a "short" name. Make it long. */
1804 unsigned long i
= 0;
1805 char *newstring
= NULL
;
1807 /* find the length of this string without walking into memory
1809 for (i
= 0; i
< 8; ++i
)
1811 if (internal_ptr
->u
.syment
._n
._n_name
[i
] == '\0')
1814 } /* if end of string */
1815 } /* possible lengths of this string. */
1817 if ((newstring
= (PTR
) bfd_alloc (abfd
, ++i
)) == NULL
)
1819 memset (newstring
, 0, i
);
1820 strncpy (newstring
, internal_ptr
->u
.syment
._n
._n_name
, i
- 1);
1821 internal_ptr
->u
.syment
._n
._n_n
._n_offset
= (long int) newstring
;
1822 internal_ptr
->u
.syment
._n
._n_n
._n_zeroes
= 0;
1824 else if (internal_ptr
->u
.syment
._n
._n_n
._n_offset
== 0)
1825 internal_ptr
->u
.syment
._n
._n_n
._n_offset
= (long int) "";
1826 else if (!bfd_coff_symname_in_debug (abfd
, &internal_ptr
->u
.syment
))
1828 /* Long name already. Point symbol at the string in the
1830 if (string_table
== NULL
)
1832 string_table
= _bfd_coff_read_string_table (abfd
);
1833 if (string_table
== NULL
)
1836 internal_ptr
->u
.syment
._n
._n_n
._n_offset
=
1839 + internal_ptr
->u
.syment
._n
._n_n
._n_offset
));
1843 /* Long name in debug section. Very similar. */
1844 if (debug_section
== NULL
)
1845 debug_section
= build_debug_section (abfd
);
1846 internal_ptr
->u
.syment
._n
._n_n
._n_offset
= (long int)
1847 (debug_section
+ internal_ptr
->u
.syment
._n
._n_n
._n_offset
);
1850 internal_ptr
+= internal_ptr
->u
.syment
.n_numaux
;
1853 obj_raw_syments (abfd
) = internal
;
1854 BFD_ASSERT (obj_raw_syment_count (abfd
)
1855 == (unsigned int) (internal_ptr
- internal
));
1858 } /* coff_get_normalized_symtab() */
1861 coff_get_reloc_upper_bound (abfd
, asect
)
1865 if (bfd_get_format (abfd
) != bfd_object
)
1867 bfd_set_error (bfd_error_invalid_operation
);
1870 return (asect
->reloc_count
+ 1) * sizeof (arelent
*);
1874 coff_make_empty_symbol (abfd
)
1877 coff_symbol_type
*new = (coff_symbol_type
*) bfd_alloc (abfd
, sizeof (coff_symbol_type
));
1880 memset (new, 0, sizeof *new);
1881 new->symbol
.section
= 0;
1883 new->lineno
= (alent
*) NULL
;
1884 new->done_lineno
= false;
1885 new->symbol
.the_bfd
= abfd
;
1886 return &new->symbol
;
1889 /* Make a debugging symbol. */
1892 coff_bfd_make_debug_symbol (abfd
, ptr
, sz
)
1894 PTR ptr ATTRIBUTE_UNUSED
;
1895 unsigned long sz ATTRIBUTE_UNUSED
;
1897 coff_symbol_type
*new = (coff_symbol_type
*) bfd_alloc (abfd
, sizeof (coff_symbol_type
));
1900 /* @@ The 10 is a guess at a plausible maximum number of aux entries
1901 (but shouldn't be a constant). */
1902 new->native
= (combined_entry_type
*) bfd_zalloc (abfd
, sizeof (combined_entry_type
) * 10);
1905 new->symbol
.section
= bfd_abs_section_ptr
;
1906 new->symbol
.flags
= BSF_DEBUGGING
;
1907 new->lineno
= (alent
*) NULL
;
1908 new->done_lineno
= false;
1909 new->symbol
.the_bfd
= abfd
;
1910 return &new->symbol
;
1915 coff_get_symbol_info (abfd
, symbol
, ret
)
1920 bfd_symbol_info (symbol
, ret
);
1921 if (coffsymbol (symbol
)->native
!= NULL
1922 && coffsymbol (symbol
)->native
->fix_value
)
1924 combined_entry_type
*psym
;
1926 psym
= ((combined_entry_type
*)
1927 coffsymbol (symbol
)->native
->u
.syment
.n_value
);
1928 ret
->value
= (bfd_vma
) (psym
- obj_raw_syments (abfd
));
1932 /* Return the COFF syment for a symbol. */
1935 bfd_coff_get_syment (abfd
, symbol
, psyment
)
1938 struct internal_syment
*psyment
;
1940 coff_symbol_type
*csym
;
1942 csym
= coff_symbol_from (abfd
, symbol
);
1943 if (csym
== NULL
|| csym
->native
== NULL
)
1945 bfd_set_error (bfd_error_invalid_operation
);
1949 *psyment
= csym
->native
->u
.syment
;
1951 if (csym
->native
->fix_value
)
1952 psyment
->n_value
= ((combined_entry_type
*) psyment
->n_value
1953 - obj_raw_syments (abfd
));
1955 /* FIXME: We should handle fix_line here. */
1960 /* Return the COFF auxent for a symbol. */
1963 bfd_coff_get_auxent (abfd
, symbol
, indx
, pauxent
)
1967 union internal_auxent
*pauxent
;
1969 coff_symbol_type
*csym
;
1970 combined_entry_type
*ent
;
1972 csym
= coff_symbol_from (abfd
, symbol
);
1975 || csym
->native
== NULL
1976 || indx
>= csym
->native
->u
.syment
.n_numaux
)
1978 bfd_set_error (bfd_error_invalid_operation
);
1982 ent
= csym
->native
+ indx
+ 1;
1984 *pauxent
= ent
->u
.auxent
;
1987 pauxent
->x_sym
.x_tagndx
.l
=
1988 ((combined_entry_type
*) pauxent
->x_sym
.x_tagndx
.p
1989 - obj_raw_syments (abfd
));
1992 pauxent
->x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
=
1993 ((combined_entry_type
*) pauxent
->x_sym
.x_fcnary
.x_fcn
.x_endndx
.p
1994 - obj_raw_syments (abfd
));
1996 if (ent
->fix_scnlen
)
1997 pauxent
->x_csect
.x_scnlen
.l
=
1998 ((combined_entry_type
*) pauxent
->x_csect
.x_scnlen
.p
1999 - obj_raw_syments (abfd
));
2004 /* Print out information about COFF symbol. */
2007 coff_print_symbol (abfd
, filep
, symbol
, how
)
2011 bfd_print_symbol_type how
;
2013 FILE *file
= (FILE *) filep
;
2017 case bfd_print_symbol_name
:
2018 fprintf (file
, "%s", symbol
->name
);
2021 case bfd_print_symbol_more
:
2022 fprintf (file
, "coff %s %s",
2023 coffsymbol (symbol
)->native
? "n" : "g",
2024 coffsymbol (symbol
)->lineno
? "l" : " ");
2027 case bfd_print_symbol_all
:
2028 if (coffsymbol (symbol
)->native
)
2032 combined_entry_type
*combined
= coffsymbol (symbol
)->native
;
2033 combined_entry_type
*root
= obj_raw_syments (abfd
);
2034 struct lineno_cache_entry
*l
= coffsymbol (symbol
)->lineno
;
2036 fprintf (file
, "[%3ld]", (long) (combined
- root
));
2038 if (! combined
->fix_value
)
2039 val
= (unsigned long) combined
->u
.syment
.n_value
;
2041 val
= ((unsigned long)
2042 ((combined_entry_type
*) combined
->u
.syment
.n_value
2046 "(sec %2d)(fl 0x%02x)(ty %3x)(scl %3d) (nx %d) 0x%08lx %s",
2047 combined
->u
.syment
.n_scnum
,
2048 combined
->u
.syment
.n_flags
,
2049 combined
->u
.syment
.n_type
,
2050 combined
->u
.syment
.n_sclass
,
2051 combined
->u
.syment
.n_numaux
,
2055 for (aux
= 0; aux
< combined
->u
.syment
.n_numaux
; aux
++)
2057 combined_entry_type
*auxp
= combined
+ aux
+ 1;
2061 tagndx
= auxp
->u
.auxent
.x_sym
.x_tagndx
.p
- root
;
2063 tagndx
= auxp
->u
.auxent
.x_sym
.x_tagndx
.l
;
2065 fprintf (file
, "\n");
2067 if (bfd_coff_print_aux (abfd
, file
, root
, combined
, auxp
, aux
))
2070 switch (combined
->u
.syment
.n_sclass
)
2073 fprintf (file
, "File ");
2077 if (combined
->u
.syment
.n_type
== T_NULL
)
2078 /* probably a section symbol? */
2080 fprintf (file
, "AUX scnlen 0x%lx nreloc %d nlnno %d",
2081 (long) auxp
->u
.auxent
.x_scn
.x_scnlen
,
2082 auxp
->u
.auxent
.x_scn
.x_nreloc
,
2083 auxp
->u
.auxent
.x_scn
.x_nlinno
);
2084 if (auxp
->u
.auxent
.x_scn
.x_checksum
!= 0
2085 || auxp
->u
.auxent
.x_scn
.x_associated
!= 0
2086 || auxp
->u
.auxent
.x_scn
.x_comdat
!= 0)
2087 fprintf (file
, " checksum 0x%lx assoc %d comdat %d",
2088 auxp
->u
.auxent
.x_scn
.x_checksum
,
2089 auxp
->u
.auxent
.x_scn
.x_associated
,
2090 auxp
->u
.auxent
.x_scn
.x_comdat
);
2093 /* else fall through */
2095 if (ISFCN (combined
->u
.syment
.n_type
))
2098 _("AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld"),
2100 auxp
->u
.auxent
.x_sym
.x_misc
.x_fsize
,
2101 auxp
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
,
2104 (auxp
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.p
2106 : auxp
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
));
2109 /* else fall through */
2111 fprintf (file
, "AUX lnno %d size 0x%x tagndx %ld",
2112 auxp
->u
.auxent
.x_sym
.x_misc
.x_lnsz
.x_lnno
,
2113 auxp
->u
.auxent
.x_sym
.x_misc
.x_lnsz
.x_size
,
2116 fprintf (file
, " endndx %ld",
2118 (auxp
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.p
2126 fprintf (file
, "\n%s :", l
->u
.sym
->name
);
2128 while (l
->line_number
)
2130 fprintf (file
, "\n%4d : 0x%lx",
2133 (l
->u
.offset
+ symbol
->section
->vma
)));
2140 bfd_print_symbol_vandf ((PTR
) file
, symbol
);
2141 fprintf (file
, " %-5s %s %s %s",
2142 symbol
->section
->name
,
2143 coffsymbol (symbol
)->native
? "n" : "g",
2144 coffsymbol (symbol
)->lineno
? "l" : " ",
2150 /* Return whether a symbol name implies a local symbol. In COFF,
2151 local symbols generally start with ``.L''. Most targets use this
2152 function for the is_local_label_name entry point, but some may
2156 _bfd_coff_is_local_label_name (abfd
, name
)
2157 bfd
*abfd ATTRIBUTE_UNUSED
;
2160 return name
[0] == '.' && name
[1] == 'L';
2163 /* Provided a BFD, a section and an offset (in bytes, not octets) into the
2164 section, calculate and return the name of the source file and the line
2165 nearest to the wanted location. */
2168 coff_find_nearest_line (abfd
, section
, symbols
, offset
, filename_ptr
,
2169 functionname_ptr
, line_ptr
)
2174 CONST
char **filename_ptr
;
2175 CONST
char **functionname_ptr
;
2176 unsigned int *line_ptr
;
2180 unsigned int line_base
;
2181 coff_data_type
*cof
= coff_data (abfd
);
2182 /* Run through the raw syments if available */
2183 combined_entry_type
*p
;
2184 combined_entry_type
*pend
;
2186 struct coff_section_tdata
*sec_data
;
2188 /* Before looking through the symbol table, try to use a .stab
2189 section to find the information. */
2190 if (! _bfd_stab_section_find_nearest_line (abfd
, symbols
, section
, offset
,
2191 &found
, filename_ptr
,
2192 functionname_ptr
, line_ptr
,
2193 &coff_data (abfd
)->line_info
))
2199 *functionname_ptr
= 0;
2202 /* Don't try and find line numbers in a non coff file */
2203 if (!bfd_family_coff (abfd
))
2209 /* Find the first C_FILE symbol. */
2210 p
= cof
->raw_syments
;
2214 pend
= p
+ cof
->raw_syment_count
;
2217 if (p
->u
.syment
.n_sclass
== C_FILE
)
2219 p
+= 1 + p
->u
.syment
.n_numaux
;
2227 /* Look through the C_FILE symbols to find the best one. */
2228 sec_vma
= bfd_get_section_vma (abfd
, section
);
2229 *filename_ptr
= (char *) p
->u
.syment
._n
._n_n
._n_offset
;
2230 maxdiff
= (bfd_vma
) 0 - (bfd_vma
) 1;
2233 combined_entry_type
*p2
;
2235 for (p2
= p
+ 1 + p
->u
.syment
.n_numaux
;
2237 p2
+= 1 + p2
->u
.syment
.n_numaux
)
2239 if (p2
->u
.syment
.n_scnum
> 0
2241 == coff_section_from_bfd_index (abfd
,
2242 p2
->u
.syment
.n_scnum
)))
2244 if (p2
->u
.syment
.n_sclass
== C_FILE
)
2251 /* We use <= MAXDIFF here so that if we get a zero length
2252 file, we actually use the next file entry. */
2254 && offset
+ sec_vma
>= (bfd_vma
) p2
->u
.syment
.n_value
2255 && offset
+ sec_vma
- (bfd_vma
) p2
->u
.syment
.n_value
<= maxdiff
)
2257 *filename_ptr
= (char *) p
->u
.syment
._n
._n_n
._n_offset
;
2258 maxdiff
= offset
+ sec_vma
- p2
->u
.syment
.n_value
;
2261 /* Avoid endless loops on erroneous files by ensuring that
2262 we always move forward in the file. */
2263 if (p
- cof
->raw_syments
>= p
->u
.syment
.n_value
)
2266 p
= cof
->raw_syments
+ p
->u
.syment
.n_value
;
2267 if (p
> pend
|| p
->u
.syment
.n_sclass
!= C_FILE
)
2272 /* Now wander though the raw linenumbers of the section */
2273 /* If we have been called on this section before, and the offset we
2274 want is further down then we can prime the lookup loop. */
2275 sec_data
= coff_section_data (abfd
, section
);
2276 if (sec_data
!= NULL
2278 && offset
>= sec_data
->offset
)
2281 *functionname_ptr
= sec_data
->function
;
2282 line_base
= sec_data
->line_base
;
2290 if (section
->lineno
!= NULL
)
2292 bfd_vma last_value
= 0;
2294 l
= §ion
->lineno
[i
];
2296 for (; i
< section
->lineno_count
; i
++)
2298 if (l
->line_number
== 0)
2300 /* Get the symbol this line number points at */
2301 coff_symbol_type
*coff
= (coff_symbol_type
*) (l
->u
.sym
);
2302 if (coff
->symbol
.value
> offset
)
2304 *functionname_ptr
= coff
->symbol
.name
;
2305 last_value
= coff
->symbol
.value
;
2308 combined_entry_type
*s
= coff
->native
;
2309 s
= s
+ 1 + s
->u
.syment
.n_numaux
;
2311 /* In XCOFF a debugging symbol can follow the
2313 if (s
->u
.syment
.n_scnum
== N_DEBUG
)
2314 s
= s
+ 1 + s
->u
.syment
.n_numaux
;
2316 /* S should now point to the .bf of the function. */
2317 if (s
->u
.syment
.n_numaux
)
2319 /* The linenumber is stored in the auxent. */
2320 union internal_auxent
*a
= &((s
+ 1)->u
.auxent
);
2321 line_base
= a
->x_sym
.x_misc
.x_lnsz
.x_lnno
;
2322 *line_ptr
= line_base
;
2328 if (l
->u
.offset
> offset
)
2330 *line_ptr
= l
->line_number
+ line_base
- 1;
2335 /* If we fell off the end of the loop, then assume that this
2336 symbol has no line number info. Otherwise, symbols with no
2337 line number info get reported with the line number of the
2338 last line of the last symbol which does have line number
2339 info. We use 0x100 as a slop to account for cases where the
2340 last line has executable code. */
2341 if (i
>= section
->lineno_count
2343 && offset
- last_value
> 0x100)
2345 *functionname_ptr
= NULL
;
2350 /* Cache the results for the next call. */
2351 if (sec_data
== NULL
&& section
->owner
== abfd
)
2353 section
->used_by_bfd
=
2354 ((PTR
) bfd_zalloc (abfd
,
2355 sizeof (struct coff_section_tdata
)));
2356 sec_data
= (struct coff_section_tdata
*) section
->used_by_bfd
;
2358 if (sec_data
!= NULL
)
2360 sec_data
->offset
= offset
;
2362 sec_data
->function
= *functionname_ptr
;
2363 sec_data
->line_base
= line_base
;
2370 coff_sizeof_headers (abfd
, reloc
)
2378 size
= bfd_coff_filhsz (abfd
) + bfd_coff_aoutsz (abfd
);
2382 size
= bfd_coff_filhsz (abfd
);
2385 size
+= abfd
->section_count
* bfd_coff_scnhsz (abfd
);
2389 /* Change the class of a coff symbol held by BFD. */
2391 bfd_coff_set_symbol_class (abfd
, symbol
, class)
2396 coff_symbol_type
* csym
;
2398 csym
= coff_symbol_from (abfd
, symbol
);
2401 bfd_set_error (bfd_error_invalid_operation
);
2404 else if (csym
->native
== NULL
)
2406 /* This is an alien symbol which no native coff backend data.
2407 We cheat here by creating a fake native entry for it and
2408 then filling in the class. This code is based on that in
2409 coff_write_alien_symbol(). */
2411 combined_entry_type
* native
;
2413 native
= (combined_entry_type
*) bfd_alloc (abfd
, sizeof (* native
));
2417 memset (native
, 0, sizeof (* native
));
2419 native
->u
.syment
.n_type
= T_NULL
;
2420 native
->u
.syment
.n_sclass
= class;
2422 if (bfd_is_und_section (symbol
->section
))
2424 native
->u
.syment
.n_scnum
= N_UNDEF
;
2425 native
->u
.syment
.n_value
= symbol
->value
;
2427 else if (bfd_is_com_section (symbol
->section
))
2429 native
->u
.syment
.n_scnum
= N_UNDEF
;
2430 native
->u
.syment
.n_value
= symbol
->value
;
2434 native
->u
.syment
.n_scnum
=
2435 symbol
->section
->output_section
->target_index
;
2436 native
->u
.syment
.n_value
= (symbol
->value
2437 + symbol
->section
->output_offset
);
2438 if (! obj_pe (abfd
))
2439 native
->u
.syment
.n_value
+= symbol
->section
->output_section
->vma
;
2441 /* Copy the any flags from the the file header into the symbol.
2443 native
->u
.syment
.n_flags
= bfd_asymbol_bfd (& csym
->symbol
)->flags
;
2446 csym
->native
= native
;
2450 csym
->native
->u
.syment
.n_sclass
= class;