1 /* Generic ECOFF (Extended-COFF) routines.
2 Copyright (C) 1990-2019 Free Software Foundation, Inc.
3 Original version by Per Bothner.
4 Full support added by Ian Lance Taylor, ian@cygnus.com.
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 3 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., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
28 #include "aout/stab_gnu.h"
30 /* FIXME: We need the definitions of N_SET[ADTB], but aout64.h defines
31 some other stuff which we don't want and which conflicts with stuff
34 #include "aout/aout64.h"
37 #undef obj_sym_filepos
39 #include "coff/internal.h"
41 #include "coff/symconst.h"
42 #include "coff/ecoff.h"
45 #include "libiberty.h"
47 #define streq(a, b) (strcmp ((a), (b)) == 0)
48 #define strneq(a, b, n) (strncmp ((a), (b), (n)) == 0)
51 /* This stuff is somewhat copied from coffcode.h. */
52 static asection bfd_debug_section =
54 /* name, id, index, next, prev, flags, user_set_vma, */
55 "*DEBUG*", 0, 0, NULL, NULL, 0, 0,
56 /* linker_mark, linker_has_input, gc_mark, compress_status, */
58 /* segment_mark, sec_info_type, use_rela_p, */
60 /* sec_flg0, sec_flg1, sec_flg2, sec_flg3, sec_flg4, sec_flg5, */
62 /* vma, lma, size, rawsize, compressed_size, relax, relax_count, */
64 /* output_offset, output_section, alignment_power, */
66 /* relocation, orelocation, reloc_count, filepos, rel_filepos, */
68 /* line_filepos, userdata, contents, lineno, lineno_count, */
69 0, NULL, NULL, NULL, 0,
70 /* entsize, kept_section, moving_line_filepos, */
72 /* target_index, used_by_bfd, constructor_chain, owner, */
78 /* map_head, map_tail */
82 /* Create an ECOFF object. */
85 _bfd_ecoff_mkobject (bfd *abfd)
87 bfd_size_type amt = sizeof (ecoff_data_type);
89 abfd->tdata.ecoff_obj_data = (struct ecoff_tdata *) bfd_zalloc (abfd, amt);
90 if (abfd->tdata.ecoff_obj_data == NULL)
96 /* This is a hook called by coff_real_object_p to create any backend
97 specific information. */
100 _bfd_ecoff_mkobject_hook (bfd *abfd, void * filehdr, void * aouthdr)
102 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
103 struct internal_aouthdr *internal_a = (struct internal_aouthdr *) aouthdr;
104 ecoff_data_type *ecoff;
106 if (! _bfd_ecoff_mkobject (abfd))
109 ecoff = ecoff_data (abfd);
111 ecoff->sym_filepos = internal_f->f_symptr;
113 if (internal_a != NULL)
117 ecoff->text_start = internal_a->text_start;
118 ecoff->text_end = internal_a->text_start + internal_a->tsize;
119 ecoff->gp = internal_a->gp_value;
120 ecoff->gprmask = internal_a->gprmask;
121 for (i = 0; i < 4; i++)
122 ecoff->cprmask[i] = internal_a->cprmask[i];
123 ecoff->fprmask = internal_a->fprmask;
124 if (internal_a->magic == ECOFF_AOUT_ZMAGIC)
125 abfd->flags |= D_PAGED;
127 abfd->flags &=~ D_PAGED;
130 /* It turns out that no special action is required by the MIPS or
131 Alpha ECOFF backends. They have different information in the
132 a.out header, but we just copy it all (e.g., gprmask, cprmask and
133 fprmask) and let the swapping routines ensure that only relevant
134 information is written out. */
136 return (void *) ecoff;
139 /* Initialize a new section. */
142 _bfd_ecoff_new_section_hook (bfd *abfd, asection *section)
152 { _TEXT, SEC_ALLOC | SEC_CODE | SEC_LOAD },
153 { _INIT, SEC_ALLOC | SEC_CODE | SEC_LOAD },
154 { _FINI, SEC_ALLOC | SEC_CODE | SEC_LOAD },
155 { _DATA, SEC_ALLOC | SEC_DATA | SEC_LOAD },
156 { _SDATA, SEC_ALLOC | SEC_DATA | SEC_LOAD },
157 { _RDATA, SEC_ALLOC | SEC_DATA | SEC_LOAD | SEC_READONLY},
158 { _LIT8, SEC_ALLOC | SEC_DATA | SEC_LOAD | SEC_READONLY},
159 { _LIT4, SEC_ALLOC | SEC_DATA | SEC_LOAD | SEC_READONLY},
160 { _RCONST, SEC_ALLOC | SEC_DATA | SEC_LOAD | SEC_READONLY},
161 { _PDATA, SEC_ALLOC | SEC_DATA | SEC_LOAD | SEC_READONLY},
164 /* An Irix 4 shared libary. */
165 { _LIB, SEC_COFF_SHARED_LIBRARY}
168 section->alignment_power = 4;
170 for (i = 0; i < ARRAY_SIZE (section_flags); i++)
171 if (streq (section->name, section_flags[i].name))
173 section->flags |= section_flags[i].flags;
178 /* Probably any other section name is SEC_NEVER_LOAD, but I'm
179 uncertain about .init on some systems and I don't know how shared
182 return _bfd_generic_new_section_hook (abfd, section);
186 _bfd_ecoff_set_alignment_hook (bfd *abfd ATTRIBUTE_UNUSED,
187 asection *section ATTRIBUTE_UNUSED,
188 void *scnhdr ATTRIBUTE_UNUSED)
192 /* Determine the machine architecture and type. This is called from
193 the generic COFF routines. It is the inverse of ecoff_get_magic,
194 below. This could be an ECOFF backend routine, with one version
195 for each target, but there aren't all that many ECOFF targets. */
198 _bfd_ecoff_set_arch_mach_hook (bfd *abfd, void * filehdr)
200 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
201 enum bfd_architecture arch;
204 switch (internal_f->f_magic)
207 case MIPS_MAGIC_LITTLE:
209 arch = bfd_arch_mips;
210 mach = bfd_mach_mips3000;
213 case MIPS_MAGIC_LITTLE2:
214 case MIPS_MAGIC_BIG2:
215 /* MIPS ISA level 2: the r6000. */
216 arch = bfd_arch_mips;
217 mach = bfd_mach_mips6000;
220 case MIPS_MAGIC_LITTLE3:
221 case MIPS_MAGIC_BIG3:
222 /* MIPS ISA level 3: the r4000. */
223 arch = bfd_arch_mips;
224 mach = bfd_mach_mips4000;
228 arch = bfd_arch_alpha;
233 arch = bfd_arch_obscure;
238 return bfd_default_set_arch_mach (abfd, arch, mach);
242 _bfd_ecoff_no_long_sections (bfd *abfd, int enable)
249 /* Get the magic number to use based on the architecture and machine.
250 This is the inverse of _bfd_ecoff_set_arch_mach_hook, above. */
253 ecoff_get_magic (bfd *abfd)
257 switch (bfd_get_arch (abfd))
260 switch (bfd_get_mach (abfd))
264 case bfd_mach_mips3000:
265 big = MIPS_MAGIC_BIG;
266 little = MIPS_MAGIC_LITTLE;
269 case bfd_mach_mips6000:
270 big = MIPS_MAGIC_BIG2;
271 little = MIPS_MAGIC_LITTLE2;
274 case bfd_mach_mips4000:
275 big = MIPS_MAGIC_BIG3;
276 little = MIPS_MAGIC_LITTLE3;
280 return bfd_big_endian (abfd) ? big : little;
291 /* Get the section s_flags to use for a section. */
294 ecoff_sec_to_styp_flags (const char *name, flagword flags)
304 { _TEXT, STYP_TEXT },
305 { _DATA, STYP_DATA },
306 { _SDATA, STYP_SDATA },
307 { _RDATA, STYP_RDATA },
308 { _LITA, STYP_LITA },
309 { _LIT8, STYP_LIT8 },
310 { _LIT4, STYP_LIT4 },
312 { _SBSS, STYP_SBSS },
313 { _INIT, STYP_ECOFF_INIT },
314 { _FINI, STYP_ECOFF_FINI },
315 { _PDATA, STYP_PDATA },
316 { _XDATA, STYP_XDATA },
317 { _LIB, STYP_ECOFF_LIB },
319 { _HASH, STYP_HASH },
320 { _DYNAMIC, STYP_DYNAMIC },
321 { _LIBLIST, STYP_LIBLIST },
322 { _RELDYN, STYP_RELDYN },
323 { _CONFLIC, STYP_CONFLIC },
324 { _DYNSTR, STYP_DYNSTR },
325 { _DYNSYM, STYP_DYNSYM },
326 { _RCONST, STYP_RCONST }
330 for (i = 0; i < ARRAY_SIZE (styp_flags); i++)
331 if (streq (name, styp_flags[i].name))
333 styp = styp_flags[i].flags;
339 if (streq (name, _COMMENT))
342 flags &=~ SEC_NEVER_LOAD;
344 else if (flags & SEC_CODE)
346 else if (flags & SEC_DATA)
348 else if (flags & SEC_READONLY)
350 else if (flags & SEC_LOAD)
356 if (flags & SEC_NEVER_LOAD)
362 /* Get the BFD flags to use for a section. */
365 _bfd_ecoff_styp_to_sec_flags (bfd *abfd ATTRIBUTE_UNUSED,
367 const char *name ATTRIBUTE_UNUSED,
368 asection *section ATTRIBUTE_UNUSED,
369 flagword * flags_ptr)
371 struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
372 long styp_flags = internal_s->s_flags;
373 flagword sec_flags = 0;
375 if (styp_flags & STYP_NOLOAD)
376 sec_flags |= SEC_NEVER_LOAD;
378 /* For 386 COFF, at least, an unloadable text or data section is
379 actually a shared library section. */
380 if ((styp_flags & STYP_TEXT)
381 || (styp_flags & STYP_ECOFF_INIT)
382 || (styp_flags & STYP_ECOFF_FINI)
383 || (styp_flags & STYP_DYNAMIC)
384 || (styp_flags & STYP_LIBLIST)
385 || (styp_flags & STYP_RELDYN)
386 || styp_flags == STYP_CONFLIC
387 || (styp_flags & STYP_DYNSTR)
388 || (styp_flags & STYP_DYNSYM)
389 || (styp_flags & STYP_HASH))
391 if (sec_flags & SEC_NEVER_LOAD)
392 sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
394 sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
396 else if ((styp_flags & STYP_DATA)
397 || (styp_flags & STYP_RDATA)
398 || (styp_flags & STYP_SDATA)
399 || styp_flags == STYP_PDATA
400 || styp_flags == STYP_XDATA
401 || (styp_flags & STYP_GOT)
402 || styp_flags == STYP_RCONST)
404 if (sec_flags & SEC_NEVER_LOAD)
405 sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
407 sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
408 if ((styp_flags & STYP_RDATA)
409 || styp_flags == STYP_PDATA
410 || styp_flags == STYP_RCONST)
411 sec_flags |= SEC_READONLY;
413 else if ((styp_flags & STYP_BSS)
414 || (styp_flags & STYP_SBSS))
415 sec_flags |= SEC_ALLOC;
416 else if ((styp_flags & STYP_INFO) || styp_flags == STYP_COMMENT)
417 sec_flags |= SEC_NEVER_LOAD;
418 else if ((styp_flags & STYP_LITA)
419 || (styp_flags & STYP_LIT8)
420 || (styp_flags & STYP_LIT4))
421 sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC | SEC_READONLY;
422 else if (styp_flags & STYP_ECOFF_LIB)
423 sec_flags |= SEC_COFF_SHARED_LIBRARY;
425 sec_flags |= SEC_ALLOC | SEC_LOAD;
427 * flags_ptr = sec_flags;
431 /* Read in the symbolic header for an ECOFF object file. */
434 ecoff_slurp_symbolic_header (bfd *abfd)
436 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
437 bfd_size_type external_hdr_size;
439 HDRR *internal_symhdr;
441 /* See if we've already read it in. */
442 if (ecoff_data (abfd)->debug_info.symbolic_header.magic ==
443 backend->debug_swap.sym_magic)
446 /* See whether there is a symbolic header. */
447 if (ecoff_data (abfd)->sym_filepos == 0)
449 bfd_get_symcount (abfd) = 0;
453 /* At this point bfd_get_symcount (abfd) holds the number of symbols
454 as read from the file header, but on ECOFF this is always the
455 size of the symbolic information header. It would be cleaner to
456 handle this when we first read the file in coffgen.c. */
457 external_hdr_size = backend->debug_swap.external_hdr_size;
458 if (bfd_get_symcount (abfd) != external_hdr_size)
460 bfd_set_error (bfd_error_bad_value);
464 /* Read the symbolic information header. */
465 raw = bfd_malloc (external_hdr_size);
469 if (bfd_seek (abfd, ecoff_data (abfd)->sym_filepos, SEEK_SET) != 0
470 || bfd_bread (raw, external_hdr_size, abfd) != external_hdr_size)
472 internal_symhdr = &ecoff_data (abfd)->debug_info.symbolic_header;
473 (*backend->debug_swap.swap_hdr_in) (abfd, raw, internal_symhdr);
475 if (internal_symhdr->magic != backend->debug_swap.sym_magic)
477 bfd_set_error (bfd_error_bad_value);
481 /* Now we can get the correct number of symbols. */
482 bfd_get_symcount (abfd) = (internal_symhdr->isymMax
483 + internal_symhdr->iextMax);
494 /* Read in and swap the important symbolic information for an ECOFF
495 object file. This is called by gdb via the read_debug_info entry
496 point in the backend structure. */
499 _bfd_ecoff_slurp_symbolic_info (bfd *abfd,
500 asection *ignore ATTRIBUTE_UNUSED,
501 struct ecoff_debug_info *debug)
503 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
504 HDRR *internal_symhdr;
505 bfd_size_type raw_base;
506 bfd_size_type raw_size;
508 bfd_size_type external_fdr_size;
512 bfd_size_type raw_end;
513 bfd_size_type cb_end;
516 BFD_ASSERT (debug == &ecoff_data (abfd)->debug_info);
518 /* Check whether we've already gotten it, and whether there's any to
520 if (ecoff_data (abfd)->raw_syments != NULL)
522 if (ecoff_data (abfd)->sym_filepos == 0)
524 bfd_get_symcount (abfd) = 0;
528 if (! ecoff_slurp_symbolic_header (abfd))
531 internal_symhdr = &debug->symbolic_header;
533 /* Read all the symbolic information at once. */
534 raw_base = (ecoff_data (abfd)->sym_filepos
535 + backend->debug_swap.external_hdr_size);
537 /* Alpha ecoff makes the determination of raw_size difficult. It has
538 an undocumented debug data section between the symhdr and the first
539 documented section. And the ordering of the sections varies between
540 statically and dynamically linked executables.
541 If bfd supports SEEK_END someday, this code could be simplified. */
544 #define UPDATE_RAW_END(start, count, size) \
545 cb_end = internal_symhdr->start + internal_symhdr->count * (size); \
546 if (cb_end > raw_end) \
549 UPDATE_RAW_END (cbLineOffset, cbLine, sizeof (unsigned char));
550 UPDATE_RAW_END (cbDnOffset, idnMax, backend->debug_swap.external_dnr_size);
551 UPDATE_RAW_END (cbPdOffset, ipdMax, backend->debug_swap.external_pdr_size);
552 UPDATE_RAW_END (cbSymOffset, isymMax, backend->debug_swap.external_sym_size);
553 /* eraxxon@alumni.rice.edu: ioptMax refers to the size of the
554 optimization symtab, not the number of entries. */
555 UPDATE_RAW_END (cbOptOffset, ioptMax, sizeof (char));
556 UPDATE_RAW_END (cbAuxOffset, iauxMax, sizeof (union aux_ext));
557 UPDATE_RAW_END (cbSsOffset, issMax, sizeof (char));
558 UPDATE_RAW_END (cbSsExtOffset, issExtMax, sizeof (char));
559 UPDATE_RAW_END (cbFdOffset, ifdMax, backend->debug_swap.external_fdr_size);
560 UPDATE_RAW_END (cbRfdOffset, crfd, backend->debug_swap.external_rfd_size);
561 UPDATE_RAW_END (cbExtOffset, iextMax, backend->debug_swap.external_ext_size);
563 #undef UPDATE_RAW_END
565 raw_size = raw_end - raw_base;
568 ecoff_data (abfd)->sym_filepos = 0;
571 raw = bfd_alloc (abfd, raw_size);
575 pos = ecoff_data (abfd)->sym_filepos;
576 pos += backend->debug_swap.external_hdr_size;
577 if (bfd_seek (abfd, pos, SEEK_SET) != 0
578 || bfd_bread (raw, raw_size, abfd) != raw_size)
580 bfd_release (abfd, raw);
584 ecoff_data (abfd)->raw_syments = raw;
586 /* Get pointers for the numeric offsets in the HDRR structure. */
587 #define FIX(off1, off2, type) \
588 if (internal_symhdr->off1 == 0) \
589 debug->off2 = NULL; \
591 debug->off2 = (type) ((char *) raw \
592 + (internal_symhdr->off1 \
595 FIX (cbLineOffset, line, unsigned char *);
596 FIX (cbDnOffset, external_dnr, void *);
597 FIX (cbPdOffset, external_pdr, void *);
598 FIX (cbSymOffset, external_sym, void *);
599 FIX (cbOptOffset, external_opt, void *);
600 FIX (cbAuxOffset, external_aux, union aux_ext *);
601 FIX (cbSsOffset, ss, char *);
602 FIX (cbSsExtOffset, ssext, char *);
603 FIX (cbFdOffset, external_fdr, void *);
604 FIX (cbRfdOffset, external_rfd, void *);
605 FIX (cbExtOffset, external_ext, void *);
608 /* I don't want to always swap all the data, because it will just
609 waste time and most programs will never look at it. The only
610 time the linker needs most of the debugging information swapped
611 is when linking big-endian and little-endian MIPS object files
612 together, which is not a common occurrence.
614 We need to look at the fdr to deal with a lot of information in
615 the symbols, so we swap them here. */
616 debug->fdr = (FDR *) bfd_alloc2 (abfd, internal_symhdr->ifdMax,
617 sizeof (struct fdr));
618 if (debug->fdr == NULL)
620 external_fdr_size = backend->debug_swap.external_fdr_size;
621 fdr_ptr = debug->fdr;
622 fraw_src = (char *) debug->external_fdr;
623 /* PR 17512: file: 3372-1243-0.004. */
624 if (fraw_src == NULL && internal_symhdr->ifdMax > 0)
626 fraw_end = fraw_src + internal_symhdr->ifdMax * external_fdr_size;
627 for (; fraw_src < fraw_end; fraw_src += external_fdr_size, fdr_ptr++)
628 (*backend->debug_swap.swap_fdr_in) (abfd, (void *) fraw_src, fdr_ptr);
633 /* ECOFF symbol table routines. The ECOFF symbol table is described
634 in gcc/mips-tfile.c. */
636 /* ECOFF uses two common sections. One is the usual one, and the
637 other is for small objects. All the small objects are kept
638 together, and then referenced via the gp pointer, which yields
639 faster assembler code. This is what we use for the small common
641 static asection ecoff_scom_section;
642 static asymbol ecoff_scom_symbol;
643 static asymbol *ecoff_scom_symbol_ptr;
645 /* Create an empty symbol. */
648 _bfd_ecoff_make_empty_symbol (bfd *abfd)
650 ecoff_symbol_type *new_symbol;
651 bfd_size_type amt = sizeof (ecoff_symbol_type);
653 new_symbol = (ecoff_symbol_type *) bfd_zalloc (abfd, amt);
654 if (new_symbol == NULL)
656 new_symbol->symbol.section = NULL;
657 new_symbol->fdr = NULL;
658 new_symbol->local = FALSE;
659 new_symbol->native = NULL;
660 new_symbol->symbol.the_bfd = abfd;
661 return &new_symbol->symbol;
664 /* Set the BFD flags and section for an ECOFF symbol. */
667 ecoff_set_symbol_info (bfd *abfd,
673 asym->the_bfd = abfd;
674 asym->value = ecoff_sym->value;
675 asym->section = &bfd_debug_section;
678 /* Most symbol types are just for debugging. */
679 switch (ecoff_sym->st)
688 if (ECOFF_IS_STAB (ecoff_sym))
690 asym->flags = BSF_DEBUGGING;
695 asym->flags = BSF_DEBUGGING;
700 asym->flags = BSF_EXPORT | BSF_WEAK;
702 asym->flags = BSF_EXPORT | BSF_GLOBAL;
705 asym->flags = BSF_LOCAL;
706 /* Normally, a local stProc symbol will have a corresponding
707 external symbol. We mark the local symbol as a debugging
708 symbol, in order to prevent nm from printing both out.
709 Similarly, we mark stLabel and stabs symbols as debugging
710 symbols. In both cases, we do want to set the value
711 correctly based on the symbol class. */
712 if (ecoff_sym->st == stProc
713 || ecoff_sym->st == stLabel
714 || ECOFF_IS_STAB (ecoff_sym))
715 asym->flags |= BSF_DEBUGGING;
718 if (ecoff_sym->st == stProc || ecoff_sym->st == stStaticProc)
719 asym->flags |= BSF_FUNCTION;
721 switch (ecoff_sym->sc)
724 /* Used for compiler generated labels. Leave them in the
725 debugging section, and mark them as local. If BSF_DEBUGGING
726 is set, then nm does not display them for some reason. If no
727 flags are set then the linker whines about them. */
728 asym->flags = BSF_LOCAL;
731 asym->section = bfd_make_section_old_way (abfd, _TEXT);
732 asym->value -= asym->section->vma;
735 asym->section = bfd_make_section_old_way (abfd, _DATA);
736 asym->value -= asym->section->vma;
739 asym->section = bfd_make_section_old_way (abfd, _BSS);
740 asym->value -= asym->section->vma;
743 asym->flags = BSF_DEBUGGING;
746 asym->section = bfd_abs_section_ptr;
749 asym->section = bfd_und_section_ptr;
759 asym->flags = BSF_DEBUGGING;
762 asym->section = bfd_make_section_old_way (abfd, ".sdata");
763 asym->value -= asym->section->vma;
766 asym->section = bfd_make_section_old_way (abfd, ".sbss");
767 asym->value -= asym->section->vma;
770 asym->section = bfd_make_section_old_way (abfd, ".rdata");
771 asym->value -= asym->section->vma;
774 asym->flags = BSF_DEBUGGING;
777 if (asym->value > ecoff_data (abfd)->gp_size)
779 asym->section = bfd_com_section_ptr;
785 if (ecoff_scom_section.name == NULL)
787 /* Initialize the small common section. */
788 ecoff_scom_section.name = SCOMMON;
789 ecoff_scom_section.flags = SEC_IS_COMMON;
790 ecoff_scom_section.output_section = &ecoff_scom_section;
791 ecoff_scom_section.symbol = &ecoff_scom_symbol;
792 ecoff_scom_section.symbol_ptr_ptr = &ecoff_scom_symbol_ptr;
793 ecoff_scom_symbol.name = SCOMMON;
794 ecoff_scom_symbol.flags = BSF_SECTION_SYM;
795 ecoff_scom_symbol.section = &ecoff_scom_section;
796 ecoff_scom_symbol_ptr = &ecoff_scom_symbol;
798 asym->section = &ecoff_scom_section;
803 asym->flags = BSF_DEBUGGING;
806 asym->section = bfd_und_section_ptr;
811 asym->section = bfd_make_section_old_way (abfd, ".init");
812 asym->value -= asym->section->vma;
817 asym->flags = BSF_DEBUGGING;
820 asym->section = bfd_make_section_old_way (abfd, ".fini");
821 asym->value -= asym->section->vma;
824 asym->section = bfd_make_section_old_way (abfd, ".rconst");
825 asym->value -= asym->section->vma;
831 /* Look for special constructors symbols and make relocation entries
832 in a special construction section. These are produced by the
833 -fgnu-linker argument to g++. */
834 if (ECOFF_IS_STAB (ecoff_sym))
836 switch (ECOFF_UNMARK_STAB (ecoff_sym->index))
845 /* Mark the symbol as a constructor. */
846 asym->flags |= BSF_CONSTRUCTOR;
853 /* Read an ECOFF symbol table. */
856 _bfd_ecoff_slurp_symbol_table (bfd *abfd)
858 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
859 const bfd_size_type external_ext_size
860 = backend->debug_swap.external_ext_size;
861 const bfd_size_type external_sym_size
862 = backend->debug_swap.external_sym_size;
863 void (* const swap_ext_in) (bfd *, void *, EXTR *)
864 = backend->debug_swap.swap_ext_in;
865 void (* const swap_sym_in) (bfd *, void *, SYMR *)
866 = backend->debug_swap.swap_sym_in;
867 ecoff_symbol_type *internal;
868 ecoff_symbol_type *internal_ptr;
874 /* If we've already read in the symbol table, do nothing. */
875 if (ecoff_data (abfd)->canonical_symbols != NULL)
878 /* Get the symbolic information. */
879 if (! _bfd_ecoff_slurp_symbolic_info (abfd, NULL,
880 &ecoff_data (abfd)->debug_info))
882 if (bfd_get_symcount (abfd) == 0)
885 internal = (ecoff_symbol_type *) bfd_alloc2 (abfd, bfd_get_symcount (abfd),
886 sizeof (ecoff_symbol_type));
887 if (internal == NULL)
890 internal_ptr = internal;
891 eraw_src = (char *) ecoff_data (abfd)->debug_info.external_ext;
893 + (ecoff_data (abfd)->debug_info.symbolic_header.iextMax
894 * external_ext_size));
895 for (; eraw_src < eraw_end; eraw_src += external_ext_size, internal_ptr++)
899 (*swap_ext_in) (abfd, (void *) eraw_src, &internal_esym);
901 /* PR 17512: file: 3372-1000-0.004. */
902 if (internal_esym.asym.iss >= ecoff_data (abfd)->debug_info.symbolic_header.issExtMax
903 || internal_esym.asym.iss < 0)
906 internal_ptr->symbol.name = (ecoff_data (abfd)->debug_info.ssext
907 + internal_esym.asym.iss);
909 if (!ecoff_set_symbol_info (abfd, &internal_esym.asym,
910 &internal_ptr->symbol, 1,
911 internal_esym.weakext))
914 /* The alpha uses a negative ifd field for section symbols. */
915 if (internal_esym.ifd >= 0)
917 /* PR 17512: file: 3372-1983-0.004. */
918 if (internal_esym.ifd >= ecoff_data (abfd)->debug_info.symbolic_header.ifdMax)
919 internal_ptr->fdr = NULL;
921 internal_ptr->fdr = (ecoff_data (abfd)->debug_info.fdr
922 + internal_esym.ifd);
925 internal_ptr->fdr = NULL;
926 internal_ptr->local = FALSE;
927 internal_ptr->native = (void *) eraw_src;
930 /* The local symbols must be accessed via the fdr's, because the
931 string and aux indices are relative to the fdr information. */
932 fdr_ptr = ecoff_data (abfd)->debug_info.fdr;
933 fdr_end = fdr_ptr + ecoff_data (abfd)->debug_info.symbolic_header.ifdMax;
934 for (; fdr_ptr < fdr_end; fdr_ptr++)
939 lraw_src = ((char *) ecoff_data (abfd)->debug_info.external_sym
940 + fdr_ptr->isymBase * external_sym_size);
941 lraw_end = lraw_src + fdr_ptr->csym * external_sym_size;
944 lraw_src += external_sym_size, internal_ptr++)
948 (*swap_sym_in) (abfd, (void *) lraw_src, &internal_sym);
949 internal_ptr->symbol.name = (ecoff_data (abfd)->debug_info.ss
952 if (!ecoff_set_symbol_info (abfd, &internal_sym,
953 &internal_ptr->symbol, 0, 0))
955 internal_ptr->fdr = fdr_ptr;
956 internal_ptr->local = TRUE;
957 internal_ptr->native = (void *) lraw_src;
961 /* PR 17512: file: 3372-3080-0.004.
962 A discrepancy between ecoff_data (abfd)->debug_info.symbolic_header.isymMax
963 and ecoff_data (abfd)->debug_info.symbolic_header.ifdMax can mean that
964 we have fewer symbols than we were expecting. Allow for this by updating
965 the symbol count and warning the user. */
966 if (internal_ptr - internal < (ptrdiff_t) bfd_get_symcount (abfd))
968 bfd_get_symcount (abfd) = internal_ptr - internal;
970 /* xgettext:c-format */
971 (_("%pB: warning: isymMax (%ld) is greater than ifdMax (%ld)"),
972 abfd, ecoff_data (abfd)->debug_info.symbolic_header.isymMax,
973 ecoff_data (abfd)->debug_info.symbolic_header.ifdMax);
976 ecoff_data (abfd)->canonical_symbols = internal;
981 /* Return the amount of space needed for the canonical symbols. */
984 _bfd_ecoff_get_symtab_upper_bound (bfd *abfd)
986 if (! _bfd_ecoff_slurp_symbolic_info (abfd, NULL,
987 &ecoff_data (abfd)->debug_info))
990 if (bfd_get_symcount (abfd) == 0)
993 return (bfd_get_symcount (abfd) + 1) * (sizeof (ecoff_symbol_type *));
996 /* Get the canonical symbols. */
999 _bfd_ecoff_canonicalize_symtab (bfd *abfd, asymbol **alocation)
1001 unsigned int counter = 0;
1002 ecoff_symbol_type *symbase;
1003 ecoff_symbol_type **location = (ecoff_symbol_type **) alocation;
1005 if (! _bfd_ecoff_slurp_symbol_table (abfd))
1007 if (bfd_get_symcount (abfd) == 0)
1010 symbase = ecoff_data (abfd)->canonical_symbols;
1011 while (counter < bfd_get_symcount (abfd))
1013 *(location++) = symbase++;
1017 return bfd_get_symcount (abfd);
1020 /* Turn ECOFF type information into a printable string.
1021 ecoff_emit_aggregate and ecoff_type_to_string are from
1022 gcc/mips-tdump.c, with swapping added and used_ptr removed. */
1024 /* Write aggregate information to a string. */
1027 ecoff_emit_aggregate (bfd *abfd,
1034 const struct ecoff_debug_swap * const debug_swap =
1035 &ecoff_backend (abfd)->debug_swap;
1036 struct ecoff_debug_info * const debug_info = &ecoff_data (abfd)->debug_info;
1037 unsigned int ifd = rndx->rfd;
1038 unsigned int indx = rndx->index;
1044 /* An ifd of -1 is an opaque type. An escaped index of 0 is a
1045 struct return type of a procedure compiled without -g. */
1046 if (ifd == 0xffffffff
1047 || (rndx->rfd == 0xfff && indx == 0))
1048 name = "<undefined>";
1049 else if (indx == indexNil)
1055 if (debug_info->external_rfd == NULL)
1056 fdr = debug_info->fdr + ifd;
1061 (*debug_swap->swap_rfd_in) (abfd,
1062 ((char *) debug_info->external_rfd
1063 + ((fdr->rfdBase + ifd)
1064 * debug_swap->external_rfd_size)),
1066 fdr = debug_info->fdr + rfd;
1069 indx += fdr->isymBase;
1071 (*debug_swap->swap_sym_in) (abfd,
1072 ((char *) debug_info->external_sym
1073 + indx * debug_swap->external_sym_size),
1076 name = debug_info->ss + fdr->issBase + sym.iss;
1080 "%s %s { ifd = %u, index = %lu }",
1082 ((unsigned long) indx
1083 + debug_info->symbolic_header.iextMax));
1086 /* Convert the type information to string format. */
1089 ecoff_type_to_string (bfd *abfd, FDR *fdr, unsigned int indx)
1091 union aux_ext *aux_ptr;
1101 unsigned int basic_type;
1104 static char buffer2[1024];
1109 aux_ptr = ecoff_data (abfd)->debug_info.external_aux + fdr->iauxBase;
1110 bigendian = fdr->fBigendian;
1112 for (i = 0; i < 7; i++)
1114 qualifiers[i].low_bound = 0;
1115 qualifiers[i].high_bound = 0;
1116 qualifiers[i].stride = 0;
1119 if (AUX_GET_ISYM (bigendian, &aux_ptr[indx]) == (bfd_vma) -1)
1120 return "-1 (no type)";
1121 _bfd_ecoff_swap_tir_in (bigendian, &aux_ptr[indx++].a_ti, &u.ti);
1123 basic_type = u.ti.bt;
1124 qualifiers[0].type = u.ti.tq0;
1125 qualifiers[1].type = u.ti.tq1;
1126 qualifiers[2].type = u.ti.tq2;
1127 qualifiers[3].type = u.ti.tq3;
1128 qualifiers[4].type = u.ti.tq4;
1129 qualifiers[5].type = u.ti.tq5;
1130 qualifiers[6].type = tqNil;
1132 /* Go get the basic type. */
1135 case btNil: /* Undefined. */
1139 case btAdr: /* Address - integer same size as pointer. */
1140 strcpy (p1, "address");
1143 case btChar: /* Character. */
1144 strcpy (p1, "char");
1147 case btUChar: /* Unsigned character. */
1148 strcpy (p1, "unsigned char");
1151 case btShort: /* Short. */
1152 strcpy (p1, "short");
1155 case btUShort: /* Unsigned short. */
1156 strcpy (p1, "unsigned short");
1159 case btInt: /* Int. */
1163 case btUInt: /* Unsigned int. */
1164 strcpy (p1, "unsigned int");
1167 case btLong: /* Long. */
1168 strcpy (p1, "long");
1171 case btULong: /* Unsigned long. */
1172 strcpy (p1, "unsigned long");
1175 case btFloat: /* Float (real). */
1176 strcpy (p1, "float");
1179 case btDouble: /* Double (real). */
1180 strcpy (p1, "double");
1183 /* Structures add 1-2 aux words:
1184 1st word is [ST_RFDESCAPE, offset] pointer to struct def;
1185 2nd word is file index if 1st word rfd is ST_RFDESCAPE. */
1187 case btStruct: /* Structure (Record). */
1188 _bfd_ecoff_swap_rndx_in (bigendian, &aux_ptr[indx].a_rndx, &rndx);
1189 ecoff_emit_aggregate (abfd, fdr, p1, &rndx,
1190 (long) AUX_GET_ISYM (bigendian, &aux_ptr[indx+1]),
1192 indx++; /* Skip aux words. */
1195 /* Unions add 1-2 aux words:
1196 1st word is [ST_RFDESCAPE, offset] pointer to union def;
1197 2nd word is file index if 1st word rfd is ST_RFDESCAPE. */
1199 case btUnion: /* Union. */
1200 _bfd_ecoff_swap_rndx_in (bigendian, &aux_ptr[indx].a_rndx, &rndx);
1201 ecoff_emit_aggregate (abfd, fdr, p1, &rndx,
1202 (long) AUX_GET_ISYM (bigendian, &aux_ptr[indx+1]),
1204 indx++; /* Skip aux words. */
1207 /* Enumerations add 1-2 aux words:
1208 1st word is [ST_RFDESCAPE, offset] pointer to enum def;
1209 2nd word is file index if 1st word rfd is ST_RFDESCAPE. */
1211 case btEnum: /* Enumeration. */
1212 _bfd_ecoff_swap_rndx_in (bigendian, &aux_ptr[indx].a_rndx, &rndx);
1213 ecoff_emit_aggregate (abfd, fdr, p1, &rndx,
1214 (long) AUX_GET_ISYM (bigendian, &aux_ptr[indx+1]),
1216 indx++; /* Skip aux words. */
1219 case btTypedef: /* Defined via a typedef, isymRef points. */
1220 strcpy (p1, "typedef");
1223 case btRange: /* Subrange of int. */
1224 strcpy (p1, "subrange");
1227 case btSet: /* Pascal sets. */
1231 case btComplex: /* Fortran complex. */
1232 strcpy (p1, "complex");
1235 case btDComplex: /* Fortran double complex. */
1236 strcpy (p1, "double complex");
1239 case btIndirect: /* Forward or unnamed typedef. */
1240 strcpy (p1, "forward/unamed typedef");
1243 case btFixedDec: /* Fixed Decimal. */
1244 strcpy (p1, "fixed decimal");
1247 case btFloatDec: /* Float Decimal. */
1248 strcpy (p1, "float decimal");
1251 case btString: /* Varying Length Character String. */
1252 strcpy (p1, "string");
1255 case btBit: /* Aligned Bit String. */
1259 case btPicture: /* Picture. */
1260 strcpy (p1, "picture");
1263 case btVoid: /* Void. */
1264 strcpy (p1, "void");
1268 sprintf (p1, _("unknown basic type %d"), (int) basic_type);
1272 p1 += strlen (buffer1);
1274 /* If this is a bitfield, get the bitsize. */
1279 bitsize = AUX_GET_WIDTH (bigendian, &aux_ptr[indx++]);
1280 sprintf (p1, " : %d", bitsize);
1281 p1 += strlen (buffer1);
1284 /* Deal with any qualifiers. */
1285 if (qualifiers[0].type != tqNil)
1287 /* Snarf up any array bounds in the correct order. Arrays
1288 store 5 successive words in the aux. table:
1289 word 0 RNDXR to type of the bounds (ie, int)
1290 word 1 Current file descriptor index
1292 word 3 high bound (or -1 if [])
1293 word 4 stride size in bits. */
1294 for (i = 0; i < 7; i++)
1296 if (qualifiers[i].type == tqArray)
1298 qualifiers[i].low_bound =
1299 AUX_GET_DNLOW (bigendian, &aux_ptr[indx+2]);
1300 qualifiers[i].high_bound =
1301 AUX_GET_DNHIGH (bigendian, &aux_ptr[indx+3]);
1302 qualifiers[i].stride =
1303 AUX_GET_WIDTH (bigendian, &aux_ptr[indx+4]);
1308 /* Now print out the qualifiers. */
1309 for (i = 0; i < 6; i++)
1311 switch (qualifiers[i].type)
1318 strcpy (p2, "ptr to ");
1319 p2 += sizeof ("ptr to ")-1;
1323 strcpy (p2, "volatile ");
1324 p2 += sizeof ("volatile ")-1;
1328 strcpy (p2, "far ");
1329 p2 += sizeof ("far ")-1;
1333 strcpy (p2, "func. ret. ");
1334 p2 += sizeof ("func. ret. ");
1339 int first_array = i;
1342 /* Print array bounds reversed (ie, in the order the C
1343 programmer writes them). C is such a fun language.... */
1344 while (i < 5 && qualifiers[i+1].type == tqArray)
1347 for (j = i; j >= first_array; j--)
1349 strcpy (p2, "array [");
1350 p2 += sizeof ("array [")-1;
1351 if (qualifiers[j].low_bound != 0)
1353 "%ld:%ld {%ld bits}",
1354 (long) qualifiers[j].low_bound,
1355 (long) qualifiers[j].high_bound,
1356 (long) qualifiers[j].stride);
1358 else if (qualifiers[j].high_bound != -1)
1361 (long) (qualifiers[j].high_bound + 1),
1362 (long) (qualifiers[j].stride));
1365 sprintf (p2, " {%ld bits}", (long) (qualifiers[j].stride));
1368 strcpy (p2, "] of ");
1369 p2 += sizeof ("] of ")-1;
1377 strcpy (p2, buffer1);
1381 /* Return information about ECOFF symbol SYMBOL in RET. */
1384 _bfd_ecoff_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
1388 bfd_symbol_info (symbol, ret);
1391 /* Return whether this is a local label. */
1394 _bfd_ecoff_bfd_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
1397 return name[0] == '$';
1400 /* Print information about an ECOFF symbol. */
1403 _bfd_ecoff_print_symbol (bfd *abfd,
1406 bfd_print_symbol_type how)
1408 const struct ecoff_debug_swap * const debug_swap
1409 = &ecoff_backend (abfd)->debug_swap;
1410 FILE *file = (FILE *)filep;
1414 case bfd_print_symbol_name:
1415 fprintf (file, "%s", symbol->name);
1417 case bfd_print_symbol_more:
1418 if (ecoffsymbol (symbol)->local)
1422 (*debug_swap->swap_sym_in) (abfd, ecoffsymbol (symbol)->native,
1424 fprintf (file, "ecoff local ");
1425 fprintf_vma (file, (bfd_vma) ecoff_sym.value);
1426 fprintf (file, " %x %x", (unsigned) ecoff_sym.st,
1427 (unsigned) ecoff_sym.sc);
1433 (*debug_swap->swap_ext_in) (abfd, ecoffsymbol (symbol)->native,
1435 fprintf (file, "ecoff extern ");
1436 fprintf_vma (file, (bfd_vma) ecoff_ext.asym.value);
1437 fprintf (file, " %x %x", (unsigned) ecoff_ext.asym.st,
1438 (unsigned) ecoff_ext.asym.sc);
1441 case bfd_print_symbol_all:
1442 /* Print out the symbols in a reasonable way. */
1451 if (ecoffsymbol (symbol)->local)
1453 (*debug_swap->swap_sym_in) (abfd, ecoffsymbol (symbol)->native,
1456 pos = ((((char *) ecoffsymbol (symbol)->native
1457 - (char *) ecoff_data (abfd)->debug_info.external_sym)
1458 / debug_swap->external_sym_size)
1459 + ecoff_data (abfd)->debug_info.symbolic_header.iextMax);
1466 (*debug_swap->swap_ext_in) (abfd, ecoffsymbol (symbol)->native,
1469 pos = (((char *) ecoffsymbol (symbol)->native
1470 - (char *) ecoff_data (abfd)->debug_info.external_ext)
1471 / debug_swap->external_ext_size);
1472 jmptbl = ecoff_ext.jmptbl ? 'j' : ' ';
1473 cobol_main = ecoff_ext.cobol_main ? 'c' : ' ';
1474 weakext = ecoff_ext.weakext ? 'w' : ' ';
1477 fprintf (file, "[%3d] %c ",
1479 fprintf_vma (file, (bfd_vma) ecoff_ext.asym.value);
1480 fprintf (file, " st %x sc %x indx %x %c%c%c %s",
1481 (unsigned) ecoff_ext.asym.st,
1482 (unsigned) ecoff_ext.asym.sc,
1483 (unsigned) ecoff_ext.asym.index,
1484 jmptbl, cobol_main, weakext,
1487 if (ecoffsymbol (symbol)->fdr != NULL
1488 && ecoff_ext.asym.index != indexNil)
1493 bfd_size_type sym_base;
1494 union aux_ext *aux_base;
1496 fdr = ecoffsymbol (symbol)->fdr;
1497 indx = ecoff_ext.asym.index;
1499 /* sym_base is used to map the fdr relative indices which
1500 appear in the file to the position number which we are
1502 sym_base = fdr->isymBase;
1503 if (ecoffsymbol (symbol)->local)
1505 ecoff_data (abfd)->debug_info.symbolic_header.iextMax;
1507 /* aux_base is the start of the aux entries for this file;
1508 asym.index is an offset from this. */
1509 aux_base = (ecoff_data (abfd)->debug_info.external_aux
1512 /* The aux entries are stored in host byte order; the
1513 order is indicated by a bit in the fdr. */
1514 bigendian = fdr->fBigendian;
1516 /* This switch is basically from gcc/mips-tdump.c. */
1517 switch (ecoff_ext.asym.st)
1525 fprintf (file, _("\n End+1 symbol: %ld"),
1526 (long) (indx + sym_base));
1530 if (ecoff_ext.asym.sc == scText
1531 || ecoff_ext.asym.sc == scInfo)
1532 fprintf (file, _("\n First symbol: %ld"),
1533 (long) (indx + sym_base));
1535 fprintf (file, _("\n First symbol: %ld"),
1537 (AUX_GET_ISYM (bigendian,
1538 &aux_base[ecoff_ext.asym.index])
1544 if (ECOFF_IS_STAB (&ecoff_ext.asym))
1546 else if (ecoffsymbol (symbol)->local)
1547 /* xgettext:c-format */
1548 fprintf (file, _("\n End+1 symbol: %-7ld Type: %s"),
1550 (AUX_GET_ISYM (bigendian,
1551 &aux_base[ecoff_ext.asym.index])
1553 ecoff_type_to_string (abfd, fdr, indx + 1));
1555 fprintf (file, _("\n Local symbol: %ld"),
1558 + (ecoff_data (abfd)
1559 ->debug_info.symbolic_header.iextMax)));
1563 fprintf (file, _("\n struct; End+1 symbol: %ld"),
1564 (long) (indx + sym_base));
1568 fprintf (file, _("\n union; End+1 symbol: %ld"),
1569 (long) (indx + sym_base));
1573 fprintf (file, _("\n enum; End+1 symbol: %ld"),
1574 (long) (indx + sym_base));
1578 if (! ECOFF_IS_STAB (&ecoff_ext.asym))
1579 fprintf (file, _("\n Type: %s"),
1580 ecoff_type_to_string (abfd, fdr, indx));
1589 /* Read in the relocs for a section. */
1592 ecoff_slurp_reloc_table (bfd *abfd,
1596 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
1597 arelent *internal_relocs;
1598 bfd_size_type external_reloc_size;
1600 char *external_relocs;
1604 if (section->relocation != NULL
1605 || section->reloc_count == 0
1606 || (section->flags & SEC_CONSTRUCTOR) != 0)
1609 if (! _bfd_ecoff_slurp_symbol_table (abfd))
1612 amt = section->reloc_count;
1613 amt *= sizeof (arelent);
1614 internal_relocs = (arelent *) bfd_alloc (abfd, amt);
1616 external_reloc_size = backend->external_reloc_size;
1617 amt = external_reloc_size * section->reloc_count;
1618 external_relocs = (char *) bfd_alloc (abfd, amt);
1619 if (internal_relocs == NULL || external_relocs == NULL)
1621 if (bfd_seek (abfd, section->rel_filepos, SEEK_SET) != 0)
1623 if (bfd_bread (external_relocs, amt, abfd) != amt)
1626 for (i = 0, rptr = internal_relocs; i < section->reloc_count; i++, rptr++)
1628 struct internal_reloc intern;
1630 (*backend->swap_reloc_in) (abfd,
1631 external_relocs + i * external_reloc_size,
1634 if (intern.r_extern)
1636 /* r_symndx is an index into the external symbols. */
1637 BFD_ASSERT (intern.r_symndx >= 0
1639 < (ecoff_data (abfd)
1640 ->debug_info.symbolic_header.iextMax)));
1641 rptr->sym_ptr_ptr = symbols + intern.r_symndx;
1644 else if (intern.r_symndx == RELOC_SECTION_NONE
1645 || intern.r_symndx == RELOC_SECTION_ABS)
1647 rptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
1652 const char *sec_name;
1655 /* r_symndx is a section key. */
1656 switch (intern.r_symndx)
1658 case RELOC_SECTION_TEXT: sec_name = _TEXT; break;
1659 case RELOC_SECTION_RDATA: sec_name = _RDATA; break;
1660 case RELOC_SECTION_DATA: sec_name = _DATA; break;
1661 case RELOC_SECTION_SDATA: sec_name = _SDATA; break;
1662 case RELOC_SECTION_SBSS: sec_name = _SBSS; break;
1663 case RELOC_SECTION_BSS: sec_name = _BSS; break;
1664 case RELOC_SECTION_INIT: sec_name = _INIT; break;
1665 case RELOC_SECTION_LIT8: sec_name = _LIT8; break;
1666 case RELOC_SECTION_LIT4: sec_name = _LIT4; break;
1667 case RELOC_SECTION_XDATA: sec_name = _XDATA; break;
1668 case RELOC_SECTION_PDATA: sec_name = _PDATA; break;
1669 case RELOC_SECTION_FINI: sec_name = _FINI; break;
1670 case RELOC_SECTION_LITA: sec_name = _LITA; break;
1671 case RELOC_SECTION_RCONST: sec_name = _RCONST; break;
1675 sec = bfd_get_section_by_name (abfd, sec_name);
1678 rptr->sym_ptr_ptr = sec->symbol_ptr_ptr;
1680 rptr->addend = - bfd_get_section_vma (abfd, sec);
1683 rptr->address = intern.r_vaddr - bfd_get_section_vma (abfd, section);
1685 /* Let the backend select the howto field and do any other
1686 required processing. */
1687 (*backend->adjust_reloc_in) (abfd, &intern, rptr);
1690 bfd_release (abfd, external_relocs);
1692 section->relocation = internal_relocs;
1697 /* Get a canonical list of relocs. */
1700 _bfd_ecoff_canonicalize_reloc (bfd *abfd,
1707 if (section->flags & SEC_CONSTRUCTOR)
1709 arelent_chain *chain;
1711 /* This section has relocs made up by us, not the file, so take
1712 them out of their chain and place them into the data area
1714 for (count = 0, chain = section->constructor_chain;
1715 count < section->reloc_count;
1716 count++, chain = chain->next)
1717 *relptr++ = &chain->relent;
1723 if (! ecoff_slurp_reloc_table (abfd, section, symbols))
1726 tblptr = section->relocation;
1728 for (count = 0; count < section->reloc_count; count++)
1729 *relptr++ = tblptr++;
1734 return section->reloc_count;
1737 /* Provided a BFD, a section and an offset into the section, calculate
1738 and return the name of the source file and the line nearest to the
1742 _bfd_ecoff_find_nearest_line (bfd *abfd,
1743 asymbol **symbols ATTRIBUTE_UNUSED,
1746 const char **filename_ptr,
1747 const char **functionname_ptr,
1748 unsigned int *retline_ptr,
1749 unsigned int *discriminator_ptr)
1751 const struct ecoff_debug_swap * const debug_swap
1752 = &ecoff_backend (abfd)->debug_swap;
1753 struct ecoff_debug_info * const debug_info = &ecoff_data (abfd)->debug_info;
1754 struct ecoff_find_line *line_info;
1756 /* Make sure we have the FDR's. */
1757 if (! _bfd_ecoff_slurp_symbolic_info (abfd, NULL, debug_info)
1758 || bfd_get_symcount (abfd) == 0)
1761 if (ecoff_data (abfd)->find_line_info == NULL)
1763 bfd_size_type amt = sizeof (struct ecoff_find_line);
1765 ecoff_data (abfd)->find_line_info =
1766 (struct ecoff_find_line *) bfd_zalloc (abfd, amt);
1767 if (ecoff_data (abfd)->find_line_info == NULL)
1771 if (discriminator_ptr)
1772 *discriminator_ptr = 0;
1773 line_info = ecoff_data (abfd)->find_line_info;
1774 return _bfd_ecoff_locate_line (abfd, section, offset, debug_info,
1775 debug_swap, line_info, filename_ptr,
1776 functionname_ptr, retline_ptr);
1779 /* Copy private BFD data. This is called by objcopy and strip. We
1780 use it to copy the ECOFF debugging information from one BFD to the
1781 other. It would be theoretically possible to represent the ECOFF
1782 debugging information in the symbol table. However, it would be a
1783 lot of work, and there would be little gain (gas, gdb, and ld
1784 already access the ECOFF debugging information via the
1785 ecoff_debug_info structure, and that structure would have to be
1786 retained in order to support ECOFF debugging in MIPS ELF).
1788 The debugging information for the ECOFF external symbols comes from
1789 the symbol table, so this function only handles the other debugging
1793 _bfd_ecoff_bfd_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
1795 struct ecoff_debug_info *iinfo = &ecoff_data (ibfd)->debug_info;
1796 struct ecoff_debug_info *oinfo = &ecoff_data (obfd)->debug_info;
1798 asymbol **sym_ptr_ptr;
1802 /* We only want to copy information over if both BFD's use ECOFF
1804 if (bfd_get_flavour (ibfd) != bfd_target_ecoff_flavour
1805 || bfd_get_flavour (obfd) != bfd_target_ecoff_flavour)
1808 /* Copy the GP value and the register masks. */
1809 ecoff_data (obfd)->gp = ecoff_data (ibfd)->gp;
1810 ecoff_data (obfd)->gprmask = ecoff_data (ibfd)->gprmask;
1811 ecoff_data (obfd)->fprmask = ecoff_data (ibfd)->fprmask;
1812 for (i = 0; i < 3; i++)
1813 ecoff_data (obfd)->cprmask[i] = ecoff_data (ibfd)->cprmask[i];
1815 /* Copy the version stamp. */
1816 oinfo->symbolic_header.vstamp = iinfo->symbolic_header.vstamp;
1818 /* If there are no symbols, don't copy any debugging information. */
1819 c = bfd_get_symcount (obfd);
1820 sym_ptr_ptr = bfd_get_outsymbols (obfd);
1821 if (c == 0 || sym_ptr_ptr == NULL)
1824 /* See if there are any local symbols. */
1826 for (; c > 0; c--, sym_ptr_ptr++)
1828 if (ecoffsymbol (*sym_ptr_ptr)->local)
1837 /* There are some local symbols. We just bring over all the
1838 debugging information. FIXME: This is not quite the right
1839 thing to do. If the user has asked us to discard all
1840 debugging information, then we are probably going to wind up
1841 keeping it because there will probably be some local symbol
1842 which objcopy did not discard. We should actually break
1843 apart the debugging information and only keep that which
1844 applies to the symbols we want to keep. */
1845 oinfo->symbolic_header.ilineMax = iinfo->symbolic_header.ilineMax;
1846 oinfo->symbolic_header.cbLine = iinfo->symbolic_header.cbLine;
1847 oinfo->line = iinfo->line;
1849 oinfo->symbolic_header.idnMax = iinfo->symbolic_header.idnMax;
1850 oinfo->external_dnr = iinfo->external_dnr;
1852 oinfo->symbolic_header.ipdMax = iinfo->symbolic_header.ipdMax;
1853 oinfo->external_pdr = iinfo->external_pdr;
1855 oinfo->symbolic_header.isymMax = iinfo->symbolic_header.isymMax;
1856 oinfo->external_sym = iinfo->external_sym;
1858 oinfo->symbolic_header.ioptMax = iinfo->symbolic_header.ioptMax;
1859 oinfo->external_opt = iinfo->external_opt;
1861 oinfo->symbolic_header.iauxMax = iinfo->symbolic_header.iauxMax;
1862 oinfo->external_aux = iinfo->external_aux;
1864 oinfo->symbolic_header.issMax = iinfo->symbolic_header.issMax;
1865 oinfo->ss = iinfo->ss;
1867 oinfo->symbolic_header.ifdMax = iinfo->symbolic_header.ifdMax;
1868 oinfo->external_fdr = iinfo->external_fdr;
1870 oinfo->symbolic_header.crfd = iinfo->symbolic_header.crfd;
1871 oinfo->external_rfd = iinfo->external_rfd;
1875 /* We are discarding all the local symbol information. Look
1876 through the external symbols and remove all references to FDR
1877 or aux information. */
1878 c = bfd_get_symcount (obfd);
1879 sym_ptr_ptr = bfd_get_outsymbols (obfd);
1880 for (; c > 0; c--, sym_ptr_ptr++)
1884 (*(ecoff_backend (obfd)->debug_swap.swap_ext_in))
1885 (obfd, ecoffsymbol (*sym_ptr_ptr)->native, &esym);
1887 esym.asym.index = indexNil;
1888 (*(ecoff_backend (obfd)->debug_swap.swap_ext_out))
1889 (obfd, &esym, ecoffsymbol (*sym_ptr_ptr)->native);
1896 /* Set the architecture. The supported architecture is stored in the
1897 backend pointer. We always set the architecture anyhow, since many
1898 callers ignore the return value. */
1901 _bfd_ecoff_set_arch_mach (bfd *abfd,
1902 enum bfd_architecture arch,
1903 unsigned long machine)
1905 bfd_default_set_arch_mach (abfd, arch, machine);
1906 return arch == ecoff_backend (abfd)->arch;
1909 /* Get the size of the section headers. */
1912 _bfd_ecoff_sizeof_headers (bfd *abfd,
1913 struct bfd_link_info *info ATTRIBUTE_UNUSED)
1920 for (current = abfd->sections;
1922 current = current->next)
1925 ret = (bfd_coff_filhsz (abfd)
1926 + bfd_coff_aoutsz (abfd)
1927 + c * bfd_coff_scnhsz (abfd));
1928 return (int) BFD_ALIGN (ret, 16);
1931 /* Get the contents of a section. */
1934 _bfd_ecoff_get_section_contents (bfd *abfd,
1938 bfd_size_type count)
1940 return _bfd_generic_get_section_contents (abfd, section, location,
1944 /* Sort sections by VMA, but put SEC_ALLOC sections first. This is
1945 called via qsort. */
1948 ecoff_sort_hdrs (const void * arg1, const void * arg2)
1950 const asection *hdr1 = *(const asection **) arg1;
1951 const asection *hdr2 = *(const asection **) arg2;
1953 if ((hdr1->flags & SEC_ALLOC) != 0)
1955 if ((hdr2->flags & SEC_ALLOC) == 0)
1960 if ((hdr2->flags & SEC_ALLOC) != 0)
1963 if (hdr1->vma < hdr2->vma)
1965 else if (hdr1->vma > hdr2->vma)
1971 /* Calculate the file position for each section, and set
1975 ecoff_compute_section_file_positions (bfd *abfd)
1977 file_ptr sofar, file_sofar;
1978 asection **sorted_hdrs;
1982 bfd_boolean rdata_in_text;
1983 bfd_boolean first_data, first_nonalloc;
1984 const bfd_vma round = ecoff_backend (abfd)->round;
1987 sofar = _bfd_ecoff_sizeof_headers (abfd, NULL);
1990 /* Sort the sections by VMA. */
1991 amt = abfd->section_count;
1992 amt *= sizeof (asection *);
1993 sorted_hdrs = (asection **) bfd_malloc (amt);
1994 if (sorted_hdrs == NULL)
1996 for (current = abfd->sections, i = 0;
1998 current = current->next, i++)
1999 sorted_hdrs[i] = current;
2000 BFD_ASSERT (i == abfd->section_count);
2002 qsort (sorted_hdrs, abfd->section_count, sizeof (asection *),
2005 /* Some versions of the OSF linker put the .rdata section in the
2006 text segment, and some do not. */
2007 rdata_in_text = ecoff_backend (abfd)->rdata_in_text;
2010 for (i = 0; i < abfd->section_count; i++)
2012 current = sorted_hdrs[i];
2013 if (streq (current->name, _RDATA))
2015 if ((current->flags & SEC_CODE) == 0
2016 && ! streq (current->name, _PDATA)
2017 && ! streq (current->name, _RCONST))
2019 rdata_in_text = FALSE;
2024 ecoff_data (abfd)->rdata_in_text = rdata_in_text;
2027 first_nonalloc = TRUE;
2028 for (i = 0; i < abfd->section_count; i++)
2030 unsigned int alignment_power;
2032 current = sorted_hdrs[i];
2034 /* For the Alpha ECOFF .pdata section the lnnoptr field is
2035 supposed to indicate the number of .pdata entries that are
2036 really in the section. Each entry is 8 bytes. We store this
2037 away in line_filepos before increasing the section size. */
2038 if (streq (current->name, _PDATA))
2039 current->line_filepos = current->size / 8;
2041 alignment_power = current->alignment_power;
2043 /* On Ultrix, the data sections in an executable file must be
2044 aligned to a page boundary within the file. This does not
2045 affect the section size, though. FIXME: Does this work for
2046 other platforms? It requires some modification for the
2047 Alpha, because .rdata on the Alpha goes with the text, not
2049 if ((abfd->flags & EXEC_P) != 0
2050 && (abfd->flags & D_PAGED) != 0
2052 && (current->flags & SEC_CODE) == 0
2054 || ! streq (current->name, _RDATA))
2055 && ! streq (current->name, _PDATA)
2056 && ! streq (current->name, _RCONST))
2058 sofar = (sofar + round - 1) &~ (round - 1);
2059 file_sofar = (file_sofar + round - 1) &~ (round - 1);
2062 else if (streq (current->name, _LIB))
2064 /* On Irix 4, the location of contents of the .lib section
2065 from a shared library section is also rounded up to a
2068 sofar = (sofar + round - 1) &~ (round - 1);
2069 file_sofar = (file_sofar + round - 1) &~ (round - 1);
2071 else if (first_nonalloc
2072 && (current->flags & SEC_ALLOC) == 0
2073 && (abfd->flags & D_PAGED) != 0)
2075 /* Skip up to the next page for an unallocated section, such
2076 as the .comment section on the Alpha. This leaves room
2077 for the .bss section. */
2078 first_nonalloc = FALSE;
2079 sofar = (sofar + round - 1) &~ (round - 1);
2080 file_sofar = (file_sofar + round - 1) &~ (round - 1);
2083 /* Align the sections in the file to the same boundary on
2084 which they are aligned in virtual memory. */
2085 sofar = BFD_ALIGN (sofar, 1 << alignment_power);
2086 if ((current->flags & SEC_HAS_CONTENTS) != 0)
2087 file_sofar = BFD_ALIGN (file_sofar, 1 << alignment_power);
2089 if ((abfd->flags & D_PAGED) != 0
2090 && (current->flags & SEC_ALLOC) != 0)
2092 sofar += (current->vma - sofar) % round;
2093 if ((current->flags & SEC_HAS_CONTENTS) != 0)
2094 file_sofar += (current->vma - file_sofar) % round;
2097 if ((current->flags & (SEC_HAS_CONTENTS | SEC_LOAD)) != 0)
2098 current->filepos = file_sofar;
2100 sofar += current->size;
2101 if ((current->flags & SEC_HAS_CONTENTS) != 0)
2102 file_sofar += current->size;
2104 /* Make sure that this section is of the right size too. */
2106 sofar = BFD_ALIGN (sofar, 1 << alignment_power);
2107 if ((current->flags & SEC_HAS_CONTENTS) != 0)
2108 file_sofar = BFD_ALIGN (file_sofar, 1 << alignment_power);
2109 current->size += sofar - old_sofar;
2115 ecoff_data (abfd)->reloc_filepos = file_sofar;
2120 /* Determine the location of the relocs for all the sections in the
2121 output file, as well as the location of the symbolic debugging
2124 static bfd_size_type
2125 ecoff_compute_reloc_file_positions (bfd *abfd)
2127 const bfd_size_type external_reloc_size =
2128 ecoff_backend (abfd)->external_reloc_size;
2129 file_ptr reloc_base;
2130 bfd_size_type reloc_size;
2134 if (! abfd->output_has_begun)
2136 if (! ecoff_compute_section_file_positions (abfd))
2138 abfd->output_has_begun = TRUE;
2141 reloc_base = ecoff_data (abfd)->reloc_filepos;
2144 for (current = abfd->sections;
2146 current = current->next)
2148 if (current->reloc_count == 0)
2149 current->rel_filepos = 0;
2152 bfd_size_type relsize;
2154 current->rel_filepos = reloc_base;
2155 relsize = current->reloc_count * external_reloc_size;
2156 reloc_size += relsize;
2157 reloc_base += relsize;
2161 sym_base = ecoff_data (abfd)->reloc_filepos + reloc_size;
2163 /* At least on Ultrix, the symbol table of an executable file must
2164 be aligned to a page boundary. FIXME: Is this true on other
2166 if ((abfd->flags & EXEC_P) != 0
2167 && (abfd->flags & D_PAGED) != 0)
2168 sym_base = ((sym_base + ecoff_backend (abfd)->round - 1)
2169 &~ (ecoff_backend (abfd)->round - 1));
2171 ecoff_data (abfd)->sym_filepos = sym_base;
2176 /* Set the contents of a section. */
2179 _bfd_ecoff_set_section_contents (bfd *abfd,
2181 const void * location,
2183 bfd_size_type count)
2187 /* This must be done first, because bfd_set_section_contents is
2188 going to set output_has_begun to TRUE. */
2189 if (! abfd->output_has_begun
2190 && ! ecoff_compute_section_file_positions (abfd))
2193 /* Handle the .lib section specially so that Irix 4 shared libraries
2194 work out. See coff_set_section_contents in coffcode.h. */
2195 if (streq (section->name, _LIB))
2197 bfd_byte *rec, *recend;
2199 rec = (bfd_byte *) location;
2200 recend = rec + count;
2201 while (rec < recend)
2204 rec += bfd_get_32 (abfd, rec) * 4;
2207 BFD_ASSERT (rec == recend);
2213 pos = section->filepos + offset;
2214 if (bfd_seek (abfd, pos, SEEK_SET) != 0
2215 || bfd_bwrite (location, count, abfd) != count)
2221 /* Set the GP value for an ECOFF file. This is a hook used by the
2225 bfd_ecoff_set_gp_value (bfd *abfd, bfd_vma gp_value)
2227 if (bfd_get_flavour (abfd) != bfd_target_ecoff_flavour
2228 || bfd_get_format (abfd) != bfd_object)
2230 bfd_set_error (bfd_error_invalid_operation);
2234 ecoff_data (abfd)->gp = gp_value;
2239 /* Set the register masks for an ECOFF file. This is a hook used by
2243 bfd_ecoff_set_regmasks (bfd *abfd,
2244 unsigned long gprmask,
2245 unsigned long fprmask,
2246 unsigned long *cprmask)
2248 ecoff_data_type *tdata;
2250 if (bfd_get_flavour (abfd) != bfd_target_ecoff_flavour
2251 || bfd_get_format (abfd) != bfd_object)
2253 bfd_set_error (bfd_error_invalid_operation);
2257 tdata = ecoff_data (abfd);
2258 tdata->gprmask = gprmask;
2259 tdata->fprmask = fprmask;
2260 if (cprmask != NULL)
2264 for (i = 0; i < 3; i++)
2265 tdata->cprmask[i] = cprmask[i];
2271 /* Get ECOFF EXTR information for an external symbol. This function
2272 is passed to bfd_ecoff_debug_externals. */
2275 ecoff_get_extr (asymbol *sym, EXTR *esym)
2277 ecoff_symbol_type *ecoff_sym_ptr;
2280 if (bfd_asymbol_flavour (sym) != bfd_target_ecoff_flavour
2281 || ecoffsymbol (sym)->native == NULL)
2283 /* Don't include debugging, local, or section symbols. */
2284 if ((sym->flags & BSF_DEBUGGING) != 0
2285 || (sym->flags & BSF_LOCAL) != 0
2286 || (sym->flags & BSF_SECTION_SYM) != 0)
2290 esym->cobol_main = 0;
2291 esym->weakext = (sym->flags & BSF_WEAK) != 0;
2294 /* FIXME: we can do better than this for st and sc. */
2295 esym->asym.st = stGlobal;
2296 esym->asym.sc = scAbs;
2297 esym->asym.reserved = 0;
2298 esym->asym.index = indexNil;
2302 ecoff_sym_ptr = ecoffsymbol (sym);
2304 if (ecoff_sym_ptr->local)
2307 input_bfd = bfd_asymbol_bfd (sym);
2308 (*(ecoff_backend (input_bfd)->debug_swap.swap_ext_in))
2309 (input_bfd, ecoff_sym_ptr->native, esym);
2311 /* If the symbol was defined by the linker, then esym will be
2312 undefined but sym will not be. Get a better class for such a
2314 if ((esym->asym.sc == scUndefined
2315 || esym->asym.sc == scSUndefined)
2316 && ! bfd_is_und_section (bfd_get_section (sym)))
2317 esym->asym.sc = scAbs;
2319 /* Adjust the FDR index for the symbol by that used for the input
2321 if (esym->ifd != -1)
2323 struct ecoff_debug_info *input_debug;
2325 input_debug = &ecoff_data (input_bfd)->debug_info;
2326 BFD_ASSERT (esym->ifd < input_debug->symbolic_header.ifdMax);
2327 if (input_debug->ifdmap != NULL)
2328 esym->ifd = input_debug->ifdmap[esym->ifd];
2334 /* Set the external symbol index. This routine is passed to
2335 bfd_ecoff_debug_externals. */
2338 ecoff_set_index (asymbol *sym, bfd_size_type indx)
2340 ecoff_set_sym_index (sym, indx);
2343 /* Write out an ECOFF file. */
2346 _bfd_ecoff_write_object_contents (bfd *abfd)
2348 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
2349 const bfd_vma round = backend->round;
2350 const bfd_size_type filhsz = bfd_coff_filhsz (abfd);
2351 const bfd_size_type aoutsz = bfd_coff_aoutsz (abfd);
2352 const bfd_size_type scnhsz = bfd_coff_scnhsz (abfd);
2353 const bfd_size_type external_hdr_size
2354 = backend->debug_swap.external_hdr_size;
2355 const bfd_size_type external_reloc_size = backend->external_reloc_size;
2356 void (* const adjust_reloc_out) (bfd *, const arelent *, struct internal_reloc *)
2357 = backend->adjust_reloc_out;
2358 void (* const swap_reloc_out) (bfd *, const struct internal_reloc *, void *)
2359 = backend->swap_reloc_out;
2360 struct ecoff_debug_info * const debug = &ecoff_data (abfd)->debug_info;
2361 HDRR * const symhdr = &debug->symbolic_header;
2364 bfd_size_type reloc_size;
2365 bfd_size_type text_size;
2367 bfd_boolean set_text_start;
2368 bfd_size_type data_size;
2370 bfd_boolean set_data_start;
2371 bfd_size_type bss_size;
2373 void * reloc_buff = NULL;
2374 struct internal_filehdr internal_f;
2375 struct internal_aouthdr internal_a;
2378 /* Determine where the sections and relocs will go in the output
2380 reloc_size = ecoff_compute_reloc_file_positions (abfd);
2383 for (current = abfd->sections;
2385 current = current->next)
2387 current->target_index = count;
2391 if ((abfd->flags & D_PAGED) != 0)
2392 text_size = _bfd_ecoff_sizeof_headers (abfd, NULL);
2396 set_text_start = FALSE;
2399 set_data_start = FALSE;
2402 /* Write section headers to the file. */
2404 /* Allocate buff big enough to hold a section header,
2405 file header, or a.out header. */
2414 buff = bfd_malloc (siz);
2419 internal_f.f_nscns = 0;
2420 if (bfd_seek (abfd, (file_ptr) (filhsz + aoutsz), SEEK_SET) != 0)
2423 for (current = abfd->sections;
2425 current = current->next)
2427 struct internal_scnhdr section;
2430 ++internal_f.f_nscns;
2432 strncpy (section.s_name, current->name, sizeof section.s_name);
2434 /* This seems to be correct for Irix 4 shared libraries. */
2435 vma = bfd_get_section_vma (abfd, current);
2436 if (streq (current->name, _LIB))
2437 section.s_vaddr = 0;
2439 section.s_vaddr = vma;
2441 section.s_paddr = current->lma;
2442 section.s_size = current->size;
2444 /* If this section is unloadable then the scnptr will be 0. */
2445 if ((current->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
2446 section.s_scnptr = 0;
2448 section.s_scnptr = current->filepos;
2449 section.s_relptr = current->rel_filepos;
2451 /* FIXME: the lnnoptr of the .sbss or .sdata section of an
2452 object file produced by the assembler is supposed to point to
2453 information about how much room is required by objects of
2454 various different sizes. I think this only matters if we
2455 want the linker to compute the best size to use, or
2456 something. I don't know what happens if the information is
2458 if (! streq (current->name, _PDATA))
2459 section.s_lnnoptr = 0;
2462 /* The Alpha ECOFF .pdata section uses the lnnoptr field to
2463 hold the number of entries in the section (each entry is
2464 8 bytes). We stored this in the line_filepos field in
2465 ecoff_compute_section_file_positions. */
2466 section.s_lnnoptr = current->line_filepos;
2469 section.s_nreloc = current->reloc_count;
2470 section.s_nlnno = 0;
2471 section.s_flags = ecoff_sec_to_styp_flags (current->name,
2474 if (bfd_coff_swap_scnhdr_out (abfd, (void *) §ion, buff) == 0
2475 || bfd_bwrite (buff, scnhsz, abfd) != scnhsz)
2478 if ((section.s_flags & STYP_TEXT) != 0
2479 || ((section.s_flags & STYP_RDATA) != 0
2480 && ecoff_data (abfd)->rdata_in_text)
2481 || section.s_flags == STYP_PDATA
2482 || (section.s_flags & STYP_DYNAMIC) != 0
2483 || (section.s_flags & STYP_LIBLIST) != 0
2484 || (section.s_flags & STYP_RELDYN) != 0
2485 || section.s_flags == STYP_CONFLIC
2486 || (section.s_flags & STYP_DYNSTR) != 0
2487 || (section.s_flags & STYP_DYNSYM) != 0
2488 || (section.s_flags & STYP_HASH) != 0
2489 || (section.s_flags & STYP_ECOFF_INIT) != 0
2490 || (section.s_flags & STYP_ECOFF_FINI) != 0
2491 || section.s_flags == STYP_RCONST)
2493 text_size += current->size;
2494 if (! set_text_start || text_start > vma)
2497 set_text_start = TRUE;
2500 else if ((section.s_flags & STYP_RDATA) != 0
2501 || (section.s_flags & STYP_DATA) != 0
2502 || (section.s_flags & STYP_LITA) != 0
2503 || (section.s_flags & STYP_LIT8) != 0
2504 || (section.s_flags & STYP_LIT4) != 0
2505 || (section.s_flags & STYP_SDATA) != 0
2506 || section.s_flags == STYP_XDATA
2507 || (section.s_flags & STYP_GOT) != 0)
2509 data_size += current->size;
2510 if (! set_data_start || data_start > vma)
2513 set_data_start = TRUE;
2516 else if ((section.s_flags & STYP_BSS) != 0
2517 || (section.s_flags & STYP_SBSS) != 0)
2518 bss_size += current->size;
2519 else if (section.s_flags == 0
2520 || (section.s_flags & STYP_ECOFF_LIB) != 0
2521 || section.s_flags == STYP_COMMENT)
2527 /* Set up the file header. */
2528 internal_f.f_magic = ecoff_get_magic (abfd);
2530 /* We will NOT put a fucking timestamp in the header here. Every
2531 time you put it back, I will come in and take it out again. I'm
2532 sorry. This field does not belong here. We fill it with a 0 so
2533 it compares the same but is not a reasonable time. --
2535 internal_f.f_timdat = 0;
2537 if (bfd_get_symcount (abfd) != 0)
2539 /* The ECOFF f_nsyms field is not actually the number of
2540 symbols, it's the size of symbolic information header. */
2541 internal_f.f_nsyms = external_hdr_size;
2542 internal_f.f_symptr = ecoff_data (abfd)->sym_filepos;
2546 internal_f.f_nsyms = 0;
2547 internal_f.f_symptr = 0;
2550 internal_f.f_opthdr = aoutsz;
2552 internal_f.f_flags = F_LNNO;
2553 if (reloc_size == 0)
2554 internal_f.f_flags |= F_RELFLG;
2555 if (bfd_get_symcount (abfd) == 0)
2556 internal_f.f_flags |= F_LSYMS;
2557 if (abfd->flags & EXEC_P)
2558 internal_f.f_flags |= F_EXEC;
2560 if (bfd_little_endian (abfd))
2561 internal_f.f_flags |= F_AR32WR;
2563 internal_f.f_flags |= F_AR32W;
2565 /* Set up the ``optional'' header. */
2566 if ((abfd->flags & D_PAGED) != 0)
2567 internal_a.magic = ECOFF_AOUT_ZMAGIC;
2569 internal_a.magic = ECOFF_AOUT_OMAGIC;
2571 /* FIXME: Is this really correct? */
2572 internal_a.vstamp = symhdr->vstamp;
2574 /* At least on Ultrix, these have to be rounded to page boundaries.
2575 FIXME: Is this true on other platforms? */
2576 if ((abfd->flags & D_PAGED) != 0)
2578 internal_a.tsize = (text_size + round - 1) &~ (round - 1);
2579 internal_a.text_start = text_start &~ (round - 1);
2580 internal_a.dsize = (data_size + round - 1) &~ (round - 1);
2581 internal_a.data_start = data_start &~ (round - 1);
2585 internal_a.tsize = text_size;
2586 internal_a.text_start = text_start;
2587 internal_a.dsize = data_size;
2588 internal_a.data_start = data_start;
2591 /* On Ultrix, the initial portions of the .sbss and .bss segments
2592 are at the end of the data section. The bsize field in the
2593 optional header records how many bss bytes are required beyond
2594 those in the data section. The value is not rounded to a page
2596 if (bss_size < internal_a.dsize - data_size)
2599 bss_size -= internal_a.dsize - data_size;
2600 internal_a.bsize = bss_size;
2601 internal_a.bss_start = internal_a.data_start + internal_a.dsize;
2603 internal_a.entry = bfd_get_start_address (abfd);
2605 internal_a.gp_value = ecoff_data (abfd)->gp;
2607 internal_a.gprmask = ecoff_data (abfd)->gprmask;
2608 internal_a.fprmask = ecoff_data (abfd)->fprmask;
2609 for (i = 0; i < 4; i++)
2610 internal_a.cprmask[i] = ecoff_data (abfd)->cprmask[i];
2612 /* Let the backend adjust the headers if necessary. */
2613 if (backend->adjust_headers)
2615 if (! (*backend->adjust_headers) (abfd, &internal_f, &internal_a))
2619 /* Write out the file header and the optional header. */
2620 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
2623 bfd_coff_swap_filehdr_out (abfd, (void *) &internal_f, buff);
2624 if (bfd_bwrite (buff, filhsz, abfd) != filhsz)
2627 bfd_coff_swap_aouthdr_out (abfd, (void *) &internal_a, buff);
2628 if (bfd_bwrite (buff, aoutsz, abfd) != aoutsz)
2631 /* Build the external symbol information. This must be done before
2632 writing out the relocs so that we know the symbol indices. We
2633 don't do this if this BFD was created by the backend linker,
2634 since it will have already handled the symbols and relocs. */
2635 if (! ecoff_data (abfd)->linker)
2637 symhdr->iextMax = 0;
2638 symhdr->issExtMax = 0;
2639 debug->external_ext = debug->external_ext_end = NULL;
2640 debug->ssext = debug->ssext_end = NULL;
2641 if (! bfd_ecoff_debug_externals (abfd, debug, &backend->debug_swap,
2642 (abfd->flags & EXEC_P) == 0,
2643 ecoff_get_extr, ecoff_set_index))
2646 /* Write out the relocs. */
2647 for (current = abfd->sections;
2649 current = current->next)
2651 arelent **reloc_ptr_ptr;
2652 arelent **reloc_end;
2656 if (current->reloc_count == 0)
2659 amt = current->reloc_count * external_reloc_size;
2660 reloc_buff = bfd_alloc (abfd, amt);
2661 if (reloc_buff == NULL)
2664 reloc_ptr_ptr = current->orelocation;
2665 reloc_end = reloc_ptr_ptr + current->reloc_count;
2666 out_ptr = (char *) reloc_buff;
2669 reloc_ptr_ptr < reloc_end;
2670 reloc_ptr_ptr++, out_ptr += external_reloc_size)
2674 struct internal_reloc in;
2676 memset ((void *) &in, 0, sizeof in);
2678 reloc = *reloc_ptr_ptr;
2679 sym = *reloc->sym_ptr_ptr;
2681 /* If the howto field has not been initialised then skip this reloc.
2682 This assumes that an error message has been issued elsewhere. */
2683 if (reloc->howto == NULL)
2686 in.r_vaddr = (reloc->address
2687 + bfd_get_section_vma (abfd, current));
2688 in.r_type = reloc->howto->type;
2690 if ((sym->flags & BSF_SECTION_SYM) == 0)
2692 in.r_symndx = ecoff_get_sym_index (*reloc->sym_ptr_ptr);
2706 { _TEXT, RELOC_SECTION_TEXT },
2707 { _RDATA, RELOC_SECTION_RDATA },
2708 { _DATA, RELOC_SECTION_DATA },
2709 { _SDATA, RELOC_SECTION_SDATA },
2710 { _SBSS, RELOC_SECTION_SBSS },
2711 { _BSS, RELOC_SECTION_BSS },
2712 { _INIT, RELOC_SECTION_INIT },
2713 { _LIT8, RELOC_SECTION_LIT8 },
2714 { _LIT4, RELOC_SECTION_LIT4 },
2715 { _XDATA, RELOC_SECTION_XDATA },
2716 { _PDATA, RELOC_SECTION_PDATA },
2717 { _FINI, RELOC_SECTION_FINI },
2718 { _LITA, RELOC_SECTION_LITA },
2719 { "*ABS*", RELOC_SECTION_ABS },
2720 { _RCONST, RELOC_SECTION_RCONST }
2723 name = bfd_get_section_name (abfd, bfd_get_section (sym));
2725 for (j = 0; j < ARRAY_SIZE (section_symndx); j++)
2726 if (streq (name, section_symndx[j].name))
2728 in.r_symndx = section_symndx[j].r_symndx;
2732 if (j == ARRAY_SIZE (section_symndx))
2737 (*adjust_reloc_out) (abfd, reloc, &in);
2739 (*swap_reloc_out) (abfd, &in, (void *) out_ptr);
2742 if (bfd_seek (abfd, current->rel_filepos, SEEK_SET) != 0)
2744 amt = current->reloc_count * external_reloc_size;
2745 if (bfd_bwrite (reloc_buff, amt, abfd) != amt)
2747 bfd_release (abfd, reloc_buff);
2751 /* Write out the symbolic debugging information. */
2752 if (bfd_get_symcount (abfd) > 0)
2754 /* Write out the debugging information. */
2755 if (! bfd_ecoff_write_debug (abfd, debug, &backend->debug_swap,
2756 ecoff_data (abfd)->sym_filepos))
2761 /* The .bss section of a demand paged executable must receive an
2762 entire page. If there are symbols, the symbols will start on the
2763 next page. If there are no symbols, we must fill out the page by
2765 if (bfd_get_symcount (abfd) == 0
2766 && (abfd->flags & EXEC_P) != 0
2767 && (abfd->flags & D_PAGED) != 0)
2771 if (bfd_seek (abfd, (file_ptr) ecoff_data (abfd)->sym_filepos - 1,
2774 if (bfd_bread (&c, (bfd_size_type) 1, abfd) == 0)
2776 if (bfd_seek (abfd, (file_ptr) ecoff_data (abfd)->sym_filepos - 1,
2779 if (bfd_bwrite (&c, (bfd_size_type) 1, abfd) != 1)
2783 if (reloc_buff != NULL)
2784 bfd_release (abfd, reloc_buff);
2789 if (reloc_buff != NULL)
2790 bfd_release (abfd, reloc_buff);
2796 /* Archive handling. ECOFF uses what appears to be a unique type of
2797 archive header (armap). The byte ordering of the armap and the
2798 contents are encoded in the name of the armap itself. At least for
2799 now, we only support archives with the same byte ordering in the
2800 armap and the contents.
2802 The first four bytes in the armap are the number of symbol
2803 definitions. This is always a power of two.
2805 This is followed by the symbol definitions. Each symbol definition
2806 occupies 8 bytes. The first four bytes are the offset from the
2807 start of the armap strings to the null-terminated string naming
2808 this symbol. The second four bytes are the file offset to the
2809 archive member which defines this symbol. If the second four bytes
2810 are 0, then this is not actually a symbol definition, and it should
2813 The symbols are hashed into the armap with a closed hashing scheme.
2814 See the functions below for the details of the algorithm.
2816 After the symbol definitions comes four bytes holding the size of
2817 the string table, followed by the string table itself. */
2819 /* The name of an archive headers looks like this:
2820 __________E[BL]E[BL]_ (with a trailing space).
2821 The trailing space is changed to an X if the archive is changed to
2822 indicate that the armap is out of date.
2824 The Alpha seems to use ________64E[BL]E[BL]_. */
2826 #define ARMAP_BIG_ENDIAN 'B'
2827 #define ARMAP_LITTLE_ENDIAN 'L'
2828 #define ARMAP_MARKER 'E'
2829 #define ARMAP_START_LENGTH 10
2830 #define ARMAP_HEADER_MARKER_INDEX 10
2831 #define ARMAP_HEADER_ENDIAN_INDEX 11
2832 #define ARMAP_OBJECT_MARKER_INDEX 12
2833 #define ARMAP_OBJECT_ENDIAN_INDEX 13
2834 #define ARMAP_END_INDEX 14
2835 #define ARMAP_END "_ "
2837 /* This is a magic number used in the hashing algorithm. */
2838 #define ARMAP_HASH_MAGIC 0x9dd68ab5
2840 /* This returns the hash value to use for a string. It also sets
2841 *REHASH to the rehash adjustment if the first slot is taken. SIZE
2842 is the number of entries in the hash table, and HLOG is the log
2846 ecoff_armap_hash (const char *s,
2847 unsigned int *rehash,
2857 hash = ((hash >> 27) | (hash << 5)) + *s++;
2858 hash *= ARMAP_HASH_MAGIC;
2859 *rehash = (hash & (size - 1)) | 1;
2860 return hash >> (32 - hlog);
2863 /* Read in the armap. */
2866 _bfd_ecoff_slurp_armap (bfd *abfd)
2870 struct areltdata *mapdata;
2871 bfd_size_type parsed_size;
2873 struct artdata *ardata;
2880 /* Get the name of the first element. */
2881 i = bfd_bread ((void *) nextname, (bfd_size_type) 16, abfd);
2887 if (bfd_seek (abfd, (file_ptr) -16, SEEK_CUR) != 0)
2890 /* Irix 4.0.5F apparently can use either an ECOFF armap or a
2891 standard COFF armap. We could move the ECOFF armap stuff into
2892 bfd_slurp_armap, but that seems inappropriate since no other
2893 target uses this format. Instead, we check directly for a COFF
2895 if (CONST_STRNEQ (nextname, "/ "))
2896 return bfd_slurp_armap (abfd);
2898 /* See if the first element is an armap. */
2899 if (! strneq (nextname, ecoff_backend (abfd)->armap_start, ARMAP_START_LENGTH)
2900 || nextname[ARMAP_HEADER_MARKER_INDEX] != ARMAP_MARKER
2901 || (nextname[ARMAP_HEADER_ENDIAN_INDEX] != ARMAP_BIG_ENDIAN
2902 && nextname[ARMAP_HEADER_ENDIAN_INDEX] != ARMAP_LITTLE_ENDIAN)
2903 || nextname[ARMAP_OBJECT_MARKER_INDEX] != ARMAP_MARKER
2904 || (nextname[ARMAP_OBJECT_ENDIAN_INDEX] != ARMAP_BIG_ENDIAN
2905 && nextname[ARMAP_OBJECT_ENDIAN_INDEX] != ARMAP_LITTLE_ENDIAN)
2906 || ! strneq (nextname + ARMAP_END_INDEX, ARMAP_END, sizeof ARMAP_END - 1))
2908 bfd_has_map (abfd) = FALSE;
2912 /* Make sure we have the right byte ordering. */
2913 if (((nextname[ARMAP_HEADER_ENDIAN_INDEX] == ARMAP_BIG_ENDIAN)
2914 ^ (bfd_header_big_endian (abfd)))
2915 || ((nextname[ARMAP_OBJECT_ENDIAN_INDEX] == ARMAP_BIG_ENDIAN)
2916 ^ (bfd_big_endian (abfd))))
2918 bfd_set_error (bfd_error_wrong_format);
2922 /* Read in the armap. */
2923 ardata = bfd_ardata (abfd);
2924 mapdata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
2925 if (mapdata == NULL)
2927 parsed_size = mapdata->parsed_size;
2930 raw_armap = (char *) bfd_alloc (abfd, parsed_size);
2931 if (raw_armap == NULL)
2934 if (bfd_bread ((void *) raw_armap, parsed_size, abfd) != parsed_size)
2936 if (bfd_get_error () != bfd_error_system_call)
2937 bfd_set_error (bfd_error_malformed_archive);
2938 bfd_release (abfd, (void *) raw_armap);
2942 ardata->tdata = (void *) raw_armap;
2944 count = H_GET_32 (abfd, raw_armap);
2946 ardata->symdef_count = 0;
2947 ardata->cache = NULL;
2949 /* This code used to overlay the symdefs over the raw archive data,
2950 but that doesn't work on a 64 bit host. */
2951 stringbase = raw_armap + count * 8 + 8;
2953 #ifdef CHECK_ARMAP_HASH
2957 /* Double check that I have the hashing algorithm right by making
2958 sure that every symbol can be looked up successfully. */
2960 for (i = 1; i < count; i <<= 1)
2962 BFD_ASSERT (i == count);
2964 raw_ptr = raw_armap + 4;
2965 for (i = 0; i < count; i++, raw_ptr += 8)
2967 unsigned int name_offset, file_offset;
2968 unsigned int hash, rehash, srch;
2970 name_offset = H_GET_32 (abfd, raw_ptr);
2971 file_offset = H_GET_32 (abfd, (raw_ptr + 4));
2972 if (file_offset == 0)
2974 hash = ecoff_armap_hash (stringbase + name_offset, &rehash, count,
2979 /* See if we can rehash to this location. */
2980 for (srch = (hash + rehash) & (count - 1);
2981 srch != hash && srch != i;
2982 srch = (srch + rehash) & (count - 1))
2983 BFD_ASSERT (H_GET_32 (abfd, (raw_armap + 8 + srch * 8)) != 0);
2984 BFD_ASSERT (srch == i);
2988 #endif /* CHECK_ARMAP_HASH */
2990 raw_ptr = raw_armap + 4;
2991 for (i = 0; i < count; i++, raw_ptr += 8)
2992 if (H_GET_32 (abfd, (raw_ptr + 4)) != 0)
2993 ++ardata->symdef_count;
2995 amt = ardata->symdef_count;
2996 amt *= sizeof (carsym);
2997 symdef_ptr = (carsym *) bfd_alloc (abfd, amt);
3001 ardata->symdefs = symdef_ptr;
3003 raw_ptr = raw_armap + 4;
3004 for (i = 0; i < count; i++, raw_ptr += 8)
3006 unsigned int name_offset, file_offset;
3008 file_offset = H_GET_32 (abfd, (raw_ptr + 4));
3009 if (file_offset == 0)
3011 name_offset = H_GET_32 (abfd, raw_ptr);
3012 symdef_ptr->name = stringbase + name_offset;
3013 symdef_ptr->file_offset = file_offset;
3017 ardata->first_file_filepos = bfd_tell (abfd);
3018 /* Pad to an even boundary. */
3019 ardata->first_file_filepos += ardata->first_file_filepos % 2;
3021 bfd_has_map (abfd) = TRUE;
3026 /* Write out an armap. */
3029 _bfd_ecoff_write_armap (bfd *abfd,
3030 unsigned int elength,
3032 unsigned int orl_count,
3035 unsigned int hashsize, hashlog;
3036 bfd_size_type symdefsize;
3038 unsigned int stringsize;
3039 unsigned int mapsize;
3042 struct stat statbuf;
3045 bfd_byte *hashtable;
3049 /* Ultrix appears to use as a hash table size the least power of two
3050 greater than twice the number of entries. */
3051 for (hashlog = 0; ((unsigned int) 1 << hashlog) <= 2 * orl_count; hashlog++)
3053 hashsize = 1 << hashlog;
3055 symdefsize = hashsize * 8;
3057 stringsize = stridx + padit;
3059 /* Include 8 bytes to store symdefsize and stringsize in output. */
3060 mapsize = symdefsize + stringsize + 8;
3062 firstreal = SARMAG + sizeof (struct ar_hdr) + mapsize + elength;
3064 memset ((void *) &hdr, 0, sizeof hdr);
3066 /* Work out the ECOFF armap name. */
3067 strcpy (hdr.ar_name, ecoff_backend (abfd)->armap_start);
3068 hdr.ar_name[ARMAP_HEADER_MARKER_INDEX] = ARMAP_MARKER;
3069 hdr.ar_name[ARMAP_HEADER_ENDIAN_INDEX] =
3070 (bfd_header_big_endian (abfd)
3072 : ARMAP_LITTLE_ENDIAN);
3073 hdr.ar_name[ARMAP_OBJECT_MARKER_INDEX] = ARMAP_MARKER;
3074 hdr.ar_name[ARMAP_OBJECT_ENDIAN_INDEX] =
3075 bfd_big_endian (abfd) ? ARMAP_BIG_ENDIAN : ARMAP_LITTLE_ENDIAN;
3076 memcpy (hdr.ar_name + ARMAP_END_INDEX, ARMAP_END, sizeof ARMAP_END - 1);
3078 /* Write the timestamp of the archive header to be just a little bit
3079 later than the timestamp of the file, otherwise the linker will
3080 complain that the index is out of date. Actually, the Ultrix
3081 linker just checks the archive name; the GNU linker may check the
3083 stat (abfd->filename, &statbuf);
3084 _bfd_ar_spacepad (hdr.ar_date, sizeof (hdr.ar_date), "%ld",
3085 (long) (statbuf.st_mtime + 60));
3087 /* The DECstation uses zeroes for the uid, gid and mode of the
3089 hdr.ar_uid[0] = '0';
3090 hdr.ar_gid[0] = '0';
3091 /* Building gcc ends up extracting the armap as a file - twice. */
3092 hdr.ar_mode[0] = '6';
3093 hdr.ar_mode[1] = '4';
3094 hdr.ar_mode[2] = '4';
3096 _bfd_ar_spacepad (hdr.ar_size, sizeof (hdr.ar_size), "%-10ld", mapsize);
3098 hdr.ar_fmag[0] = '`';
3099 hdr.ar_fmag[1] = '\012';
3101 /* Turn all null bytes in the header into spaces. */
3102 for (i = 0; i < sizeof (struct ar_hdr); i++)
3103 if (((char *) (&hdr))[i] == '\0')
3104 (((char *) (&hdr))[i]) = ' ';
3106 if (bfd_bwrite ((void *) &hdr, (bfd_size_type) sizeof (struct ar_hdr), abfd)
3107 != sizeof (struct ar_hdr))
3110 H_PUT_32 (abfd, hashsize, temp);
3111 if (bfd_bwrite ((void *) temp, (bfd_size_type) 4, abfd) != 4)
3114 hashtable = (bfd_byte *) bfd_zalloc (abfd, symdefsize);
3118 current = abfd->archive_head;
3120 for (i = 0; i < orl_count; i++)
3122 unsigned int hash, rehash = 0;
3124 /* Advance firstreal to the file position of this archive
3126 if (map[i].u.abfd != last_elt)
3130 firstreal += arelt_size (current) + sizeof (struct ar_hdr);
3131 firstreal += firstreal % 2;
3132 current = current->archive_next;
3134 while (current != map[i].u.abfd);
3139 hash = ecoff_armap_hash (*map[i].name, &rehash, hashsize, hashlog);
3140 if (H_GET_32 (abfd, (hashtable + (hash * 8) + 4)) != 0)
3144 /* The desired slot is already taken. */
3145 for (srch = (hash + rehash) & (hashsize - 1);
3147 srch = (srch + rehash) & (hashsize - 1))
3148 if (H_GET_32 (abfd, (hashtable + (srch * 8) + 4)) == 0)
3151 BFD_ASSERT (srch != hash);
3156 H_PUT_32 (abfd, map[i].namidx, (hashtable + hash * 8));
3157 H_PUT_32 (abfd, firstreal, (hashtable + hash * 8 + 4));
3160 if (bfd_bwrite ((void *) hashtable, symdefsize, abfd) != symdefsize)
3163 bfd_release (abfd, hashtable);
3165 /* Now write the strings. */
3166 H_PUT_32 (abfd, stringsize, temp);
3167 if (bfd_bwrite ((void *) temp, (bfd_size_type) 4, abfd) != 4)
3169 for (i = 0; i < orl_count; i++)
3173 len = strlen (*map[i].name) + 1;
3174 if (bfd_bwrite ((void *) (*map[i].name), len, abfd) != len)
3178 /* The spec sez this should be a newline. But in order to be
3179 bug-compatible for DECstation ar we use a null. */
3182 if (bfd_bwrite ("", (bfd_size_type) 1, abfd) != 1)
3189 /* ECOFF linker code. */
3191 /* Routine to create an entry in an ECOFF link hash table. */
3193 static struct bfd_hash_entry *
3194 ecoff_link_hash_newfunc (struct bfd_hash_entry *entry,
3195 struct bfd_hash_table *table,
3198 struct ecoff_link_hash_entry *ret = (struct ecoff_link_hash_entry *) entry;
3200 /* Allocate the structure if it has not already been allocated by a
3203 ret = ((struct ecoff_link_hash_entry *)
3204 bfd_hash_allocate (table, sizeof (struct ecoff_link_hash_entry)));
3208 /* Call the allocation method of the superclass. */
3209 ret = ((struct ecoff_link_hash_entry *)
3210 _bfd_link_hash_newfunc ((struct bfd_hash_entry *) ret,
3215 /* Set local fields. */
3221 memset ((void *) &ret->esym, 0, sizeof ret->esym);
3223 return (struct bfd_hash_entry *) ret;
3226 /* Create an ECOFF link hash table. */
3228 struct bfd_link_hash_table *
3229 _bfd_ecoff_bfd_link_hash_table_create (bfd *abfd)
3231 struct ecoff_link_hash_table *ret;
3232 bfd_size_type amt = sizeof (struct ecoff_link_hash_table);
3234 ret = (struct ecoff_link_hash_table *) bfd_malloc (amt);
3237 if (!_bfd_link_hash_table_init (&ret->root, abfd,
3238 ecoff_link_hash_newfunc,
3239 sizeof (struct ecoff_link_hash_entry)))
3247 /* Look up an entry in an ECOFF link hash table. */
3249 #define ecoff_link_hash_lookup(table, string, create, copy, follow) \
3250 ((struct ecoff_link_hash_entry *) \
3251 bfd_link_hash_lookup (&(table)->root, (string), (create), (copy), (follow)))
3253 /* Get the ECOFF link hash table from the info structure. This is
3256 #define ecoff_hash_table(p) ((struct ecoff_link_hash_table *) ((p)->hash))
3258 /* Add the external symbols of an object file to the global linker
3259 hash table. The external symbols and strings we are passed are
3260 just allocated on the stack, and will be discarded. We must
3261 explicitly save any information we may need later on in the link.
3262 We do not want to read the external symbol information again. */
3265 ecoff_link_add_externals (bfd *abfd,
3266 struct bfd_link_info *info,
3267 void * external_ext,
3270 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
3271 void (* const swap_ext_in) (bfd *, void *, EXTR *)
3272 = backend->debug_swap.swap_ext_in;
3273 bfd_size_type external_ext_size = backend->debug_swap.external_ext_size;
3274 unsigned long ext_count;
3275 struct bfd_link_hash_entry **sym_hash;
3280 ext_count = ecoff_data (abfd)->debug_info.symbolic_header.iextMax;
3283 amt *= sizeof (struct bfd_link_hash_entry *);
3284 sym_hash = (struct bfd_link_hash_entry **) bfd_alloc (abfd, amt);
3287 ecoff_data (abfd)->sym_hashes = (struct ecoff_link_hash_entry **) sym_hash;
3289 ext_ptr = (char *) external_ext;
3290 ext_end = ext_ptr + ext_count * external_ext_size;
3291 for (; ext_ptr < ext_end; ext_ptr += external_ext_size, sym_hash++)
3298 struct ecoff_link_hash_entry *h;
3302 (*swap_ext_in) (abfd, (void *) ext_ptr, &esym);
3304 /* Skip debugging symbols. */
3306 switch (esym.asym.st)
3322 /* Get the information for this symbol. */
3323 value = esym.asym.value;
3324 switch (esym.asym.sc)
3344 section = bfd_make_section_old_way (abfd, _TEXT);
3345 value -= section->vma;
3348 section = bfd_make_section_old_way (abfd, _DATA);
3349 value -= section->vma;
3352 section = bfd_make_section_old_way (abfd, _BSS);
3353 value -= section->vma;
3356 section = bfd_abs_section_ptr;
3359 section = bfd_und_section_ptr;
3362 section = bfd_make_section_old_way (abfd, _SDATA);
3363 value -= section->vma;
3366 section = bfd_make_section_old_way (abfd, _SBSS);
3367 value -= section->vma;
3370 section = bfd_make_section_old_way (abfd, _RDATA);
3371 value -= section->vma;
3374 if (value > ecoff_data (abfd)->gp_size)
3376 section = bfd_com_section_ptr;
3381 if (ecoff_scom_section.name == NULL)
3383 /* Initialize the small common section. */
3384 ecoff_scom_section.name = SCOMMON;
3385 ecoff_scom_section.flags = SEC_IS_COMMON;
3386 ecoff_scom_section.output_section = &ecoff_scom_section;
3387 ecoff_scom_section.symbol = &ecoff_scom_symbol;
3388 ecoff_scom_section.symbol_ptr_ptr = &ecoff_scom_symbol_ptr;
3389 ecoff_scom_symbol.name = SCOMMON;
3390 ecoff_scom_symbol.flags = BSF_SECTION_SYM;
3391 ecoff_scom_symbol.section = &ecoff_scom_section;
3392 ecoff_scom_symbol_ptr = &ecoff_scom_symbol;
3394 section = &ecoff_scom_section;
3397 section = bfd_und_section_ptr;
3400 section = bfd_make_section_old_way (abfd, _INIT);
3401 value -= section->vma;
3404 section = bfd_make_section_old_way (abfd, _FINI);
3405 value -= section->vma;
3408 section = bfd_make_section_old_way (abfd, _RCONST);
3409 value -= section->vma;
3413 if (section == NULL)
3416 name = ssext + esym.asym.iss;
3418 if (! (_bfd_generic_link_add_one_symbol
3420 (flagword) (esym.weakext ? BSF_WEAK : BSF_GLOBAL),
3421 section, value, NULL, TRUE, TRUE, sym_hash)))
3424 h = (struct ecoff_link_hash_entry *) *sym_hash;
3426 /* If we are building an ECOFF hash table, save the external
3427 symbol information. */
3428 if (bfd_get_flavour (info->output_bfd) == bfd_get_flavour (abfd))
3431 || (! bfd_is_und_section (section)
3432 && (! bfd_is_com_section (section)
3433 || (h->root.type != bfd_link_hash_defined
3434 && h->root.type != bfd_link_hash_defweak))))
3440 /* Remember whether this symbol was small undefined. */
3441 if (esym.asym.sc == scSUndefined)
3444 /* If this symbol was ever small undefined, it needs to wind
3445 up in a GP relative section. We can't control the
3446 section of a defined symbol, but we can control the
3447 section of a common symbol. This case is actually needed
3448 on Ultrix 4.2 to handle the symbol cred in -lckrb. */
3450 && h->root.type == bfd_link_hash_common
3451 && streq (h->root.u.c.p->section->name, SCOMMON))
3453 h->root.u.c.p->section = bfd_make_section_old_way (abfd,
3455 h->root.u.c.p->section->flags = SEC_ALLOC;
3456 if (h->esym.asym.sc == scCommon)
3457 h->esym.asym.sc = scSCommon;
3465 /* Add symbols from an ECOFF object file to the global linker hash
3469 ecoff_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
3472 bfd_size_type external_ext_size;
3473 void * external_ext = NULL;
3474 bfd_size_type esize;
3478 if (! ecoff_slurp_symbolic_header (abfd))
3481 /* If there are no symbols, we don't want it. */
3482 if (bfd_get_symcount (abfd) == 0)
3485 symhdr = &ecoff_data (abfd)->debug_info.symbolic_header;
3487 /* Read in the external symbols and external strings. */
3488 external_ext_size = ecoff_backend (abfd)->debug_swap.external_ext_size;
3489 esize = symhdr->iextMax * external_ext_size;
3490 external_ext = bfd_malloc (esize);
3491 if (external_ext == NULL && esize != 0)
3494 if (bfd_seek (abfd, (file_ptr) symhdr->cbExtOffset, SEEK_SET) != 0
3495 || bfd_bread (external_ext, esize, abfd) != esize)
3498 ssext = (char *) bfd_malloc ((bfd_size_type) symhdr->issExtMax);
3499 if (ssext == NULL && symhdr->issExtMax != 0)
3502 if (bfd_seek (abfd, (file_ptr) symhdr->cbSsExtOffset, SEEK_SET) != 0
3503 || (bfd_bread (ssext, (bfd_size_type) symhdr->issExtMax, abfd)
3504 != (bfd_size_type) symhdr->issExtMax))
3507 result = ecoff_link_add_externals (abfd, info, external_ext, ssext);
3511 if (external_ext != NULL)
3512 free (external_ext);
3518 if (external_ext != NULL)
3519 free (external_ext);
3523 /* This is called if we used _bfd_generic_link_add_archive_symbols
3524 because we were not dealing with an ECOFF archive. */
3527 ecoff_link_check_archive_element (bfd *abfd,
3528 struct bfd_link_info *info,
3529 struct bfd_link_hash_entry *h,
3531 bfd_boolean *pneeded)
3535 /* Unlike the generic linker, we do not pull in elements because
3536 of common symbols. */
3537 if (h->type != bfd_link_hash_undefined)
3540 /* Include this element? */
3541 if (!(*info->callbacks->add_archive_element) (info, abfd, name, &abfd))
3545 return ecoff_link_add_object_symbols (abfd, info);
3548 /* Add the symbols from an archive file to the global hash table.
3549 This looks through the undefined symbols, looks each one up in the
3550 archive hash table, and adds any associated object file. We do not
3551 use _bfd_generic_link_add_archive_symbols because ECOFF archives
3552 already have a hash table, so there is no reason to construct
3556 ecoff_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
3558 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
3559 const bfd_byte *raw_armap;
3560 struct bfd_link_hash_entry **pundef;
3561 unsigned int armap_count;
3562 unsigned int armap_log;
3564 const bfd_byte *hashtable;
3565 const char *stringbase;
3567 if (! bfd_has_map (abfd))
3569 /* An empty archive is a special case. */
3570 if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
3572 bfd_set_error (bfd_error_no_armap);
3576 /* If we don't have any raw data for this archive, as can happen on
3577 Irix 4.0.5F, we call the generic routine.
3578 FIXME: We should be more clever about this, since someday tdata
3579 may get to something for a generic archive. */
3580 raw_armap = (const bfd_byte *) bfd_ardata (abfd)->tdata;
3581 if (raw_armap == NULL)
3582 return (_bfd_generic_link_add_archive_symbols
3583 (abfd, info, ecoff_link_check_archive_element));
3585 armap_count = H_GET_32 (abfd, raw_armap);
3588 for (i = 1; i < armap_count; i <<= 1)
3590 BFD_ASSERT (i == armap_count);
3592 hashtable = raw_armap + 4;
3593 stringbase = (const char *) raw_armap + armap_count * 8 + 8;
3595 /* Look through the list of undefined symbols. */
3596 pundef = &info->hash->undefs;
3597 while (*pundef != NULL)
3599 struct bfd_link_hash_entry *h;
3600 unsigned int hash, rehash = 0;
3601 unsigned int file_offset;
3607 /* When a symbol is defined, it is not necessarily removed from
3609 if (h->type != bfd_link_hash_undefined
3610 && h->type != bfd_link_hash_common)
3612 /* Remove this entry from the list, for general cleanliness
3613 and because we are going to look through the list again
3614 if we search any more libraries. We can't remove the
3615 entry if it is the tail, because that would lose any
3616 entries we add to the list later on. */
3617 if (*pundef != info->hash->undefs_tail)
3618 *pundef = (*pundef)->u.undef.next;
3620 pundef = &(*pundef)->u.undef.next;
3624 /* Native ECOFF linkers do not pull in archive elements merely
3625 to satisfy common definitions, so neither do we. We leave
3626 them on the list, though, in case we are linking against some
3627 other object format. */
3628 if (h->type != bfd_link_hash_undefined)
3630 pundef = &(*pundef)->u.undef.next;
3634 /* Look for this symbol in the archive hash table. */
3635 hash = ecoff_armap_hash (h->root.string, &rehash, armap_count,
3638 file_offset = H_GET_32 (abfd, hashtable + (hash * 8) + 4);
3639 if (file_offset == 0)
3641 /* Nothing in this slot. */
3642 pundef = &(*pundef)->u.undef.next;
3646 name = stringbase + H_GET_32 (abfd, hashtable + (hash * 8));
3647 if (name[0] != h->root.string[0]
3648 || ! streq (name, h->root.string))
3653 /* That was the wrong symbol. Try rehashing. */
3655 for (srch = (hash + rehash) & (armap_count - 1);
3657 srch = (srch + rehash) & (armap_count - 1))
3659 file_offset = H_GET_32 (abfd, hashtable + (srch * 8) + 4);
3660 if (file_offset == 0)
3662 name = stringbase + H_GET_32 (abfd, hashtable + (srch * 8));
3663 if (name[0] == h->root.string[0]
3664 && streq (name, h->root.string))
3673 pundef = &(*pundef)->u.undef.next;
3680 element = (*backend->get_elt_at_filepos) (abfd, (file_ptr) file_offset);
3681 if (element == NULL)
3684 if (! bfd_check_format (element, bfd_object))
3687 /* Unlike the generic linker, we know that this element provides
3688 a definition for an undefined symbol and we know that we want
3689 to include it. We don't need to check anything. */
3690 if (!(*info->callbacks
3691 ->add_archive_element) (info, element, name, &element))
3693 if (! ecoff_link_add_object_symbols (element, info))
3696 pundef = &(*pundef)->u.undef.next;
3702 /* Given an ECOFF BFD, add symbols to the global hash table as
3706 _bfd_ecoff_bfd_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
3708 switch (bfd_get_format (abfd))
3711 return ecoff_link_add_object_symbols (abfd, info);
3713 return ecoff_link_add_archive_symbols (abfd, info);
3715 bfd_set_error (bfd_error_wrong_format);
3721 /* ECOFF final link routines. */
3723 /* Structure used to pass information to ecoff_link_write_external. */
3728 struct bfd_link_info *info;
3731 /* Accumulate the debugging information for an input BFD into the
3732 output BFD. This must read in the symbolic information of the
3736 ecoff_final_link_debug_accumulate (bfd *output_bfd,
3738 struct bfd_link_info *info,
3741 struct ecoff_debug_info * const debug = &ecoff_data (input_bfd)->debug_info;
3742 const struct ecoff_debug_swap * const swap =
3743 &ecoff_backend (input_bfd)->debug_swap;
3744 HDRR *symhdr = &debug->symbolic_header;
3747 #define READ(ptr, offset, count, size, type) \
3748 if (symhdr->count == 0) \
3749 debug->ptr = NULL; \
3752 bfd_size_type amt = (bfd_size_type) size * symhdr->count; \
3753 debug->ptr = (type) bfd_malloc (amt); \
3754 if (debug->ptr == NULL) \
3757 goto return_something; \
3759 if (bfd_seek (input_bfd, (file_ptr) symhdr->offset, SEEK_SET) != 0 \
3760 || bfd_bread (debug->ptr, amt, input_bfd) != amt) \
3763 goto return_something; \
3767 /* If raw_syments is not NULL, then the data was already by read by
3768 _bfd_ecoff_slurp_symbolic_info. */
3769 if (ecoff_data (input_bfd)->raw_syments == NULL)
3771 READ (line, cbLineOffset, cbLine, sizeof (unsigned char),
3773 READ (external_dnr, cbDnOffset, idnMax, swap->external_dnr_size, void *);
3774 READ (external_pdr, cbPdOffset, ipdMax, swap->external_pdr_size, void *);
3775 READ (external_sym, cbSymOffset, isymMax, swap->external_sym_size, void *);
3776 READ (external_opt, cbOptOffset, ioptMax, swap->external_opt_size, void *);
3777 READ (external_aux, cbAuxOffset, iauxMax, sizeof (union aux_ext),
3779 READ (ss, cbSsOffset, issMax, sizeof (char), char *);
3780 READ (external_fdr, cbFdOffset, ifdMax, swap->external_fdr_size, void *);
3781 READ (external_rfd, cbRfdOffset, crfd, swap->external_rfd_size, void *);
3785 /* We do not read the external strings or the external symbols. */
3787 ret = (bfd_ecoff_debug_accumulate
3788 (handle, output_bfd, &ecoff_data (output_bfd)->debug_info,
3789 &ecoff_backend (output_bfd)->debug_swap,
3790 input_bfd, debug, swap, info));
3793 if (ecoff_data (input_bfd)->raw_syments == NULL)
3795 if (debug->line != NULL)
3797 if (debug->external_dnr != NULL)
3798 free (debug->external_dnr);
3799 if (debug->external_pdr != NULL)
3800 free (debug->external_pdr);
3801 if (debug->external_sym != NULL)
3802 free (debug->external_sym);
3803 if (debug->external_opt != NULL)
3804 free (debug->external_opt);
3805 if (debug->external_aux != NULL)
3806 free (debug->external_aux);
3807 if (debug->ss != NULL)
3809 if (debug->external_fdr != NULL)
3810 free (debug->external_fdr);
3811 if (debug->external_rfd != NULL)
3812 free (debug->external_rfd);
3814 /* Make sure we don't accidentally follow one of these pointers
3815 into freed memory. */
3817 debug->external_dnr = NULL;
3818 debug->external_pdr = NULL;
3819 debug->external_sym = NULL;
3820 debug->external_opt = NULL;
3821 debug->external_aux = NULL;
3823 debug->external_fdr = NULL;
3824 debug->external_rfd = NULL;
3830 /* Relocate and write an ECOFF section into an ECOFF output file. */
3833 ecoff_indirect_link_order (bfd *output_bfd,
3834 struct bfd_link_info *info,
3835 asection *output_section,
3836 struct bfd_link_order *link_order)
3838 asection *input_section;
3840 bfd_byte *contents = NULL;
3841 bfd_size_type external_reloc_size;
3842 bfd_size_type external_relocs_size;
3843 void * external_relocs = NULL;
3845 BFD_ASSERT ((output_section->flags & SEC_HAS_CONTENTS) != 0);
3847 input_section = link_order->u.indirect.section;
3848 input_bfd = input_section->owner;
3849 if (input_section->size == 0)
3852 BFD_ASSERT (input_section->output_section == output_section);
3853 BFD_ASSERT (input_section->output_offset == link_order->offset);
3854 BFD_ASSERT (input_section->size == link_order->size);
3856 /* Get the section contents. */
3857 if (!bfd_malloc_and_get_section (input_bfd, input_section, &contents))
3860 /* Get the relocs. If we are relaxing MIPS code, they will already
3861 have been read in. Otherwise, we read them in now. */
3862 external_reloc_size = ecoff_backend (input_bfd)->external_reloc_size;
3863 external_relocs_size = external_reloc_size * input_section->reloc_count;
3865 external_relocs = bfd_malloc (external_relocs_size);
3866 if (external_relocs == NULL && external_relocs_size != 0)
3869 if (bfd_seek (input_bfd, input_section->rel_filepos, SEEK_SET) != 0
3870 || (bfd_bread (external_relocs, external_relocs_size, input_bfd)
3871 != external_relocs_size))
3874 /* Relocate the section contents. */
3875 if (! ((*ecoff_backend (input_bfd)->relocate_section)
3876 (output_bfd, info, input_bfd, input_section, contents,
3880 /* Write out the relocated section. */
3881 if (! bfd_set_section_contents (output_bfd,
3884 input_section->output_offset,
3885 input_section->size))
3888 /* If we are producing relocatable output, the relocs were
3889 modified, and we write them out now. We use the reloc_count
3890 field of output_section to keep track of the number of relocs we
3891 have output so far. */
3892 if (bfd_link_relocatable (info))
3894 file_ptr pos = (output_section->rel_filepos
3895 + output_section->reloc_count * external_reloc_size);
3896 if (bfd_seek (output_bfd, pos, SEEK_SET) != 0
3897 || (bfd_bwrite (external_relocs, external_relocs_size, output_bfd)
3898 != external_relocs_size))
3900 output_section->reloc_count += input_section->reloc_count;
3903 if (contents != NULL)
3905 if (external_relocs != NULL)
3906 free (external_relocs);
3910 if (contents != NULL)
3912 if (external_relocs != NULL)
3913 free (external_relocs);
3917 /* Generate a reloc when linking an ECOFF file. This is a reloc
3918 requested by the linker, and does come from any input file. This
3919 is used to build constructor and destructor tables when linking
3923 ecoff_reloc_link_order (bfd *output_bfd,
3924 struct bfd_link_info *info,
3925 asection *output_section,
3926 struct bfd_link_order *link_order)
3928 enum bfd_link_order_type type;
3932 struct internal_reloc in;
3933 bfd_size_type external_reloc_size;
3938 type = link_order->type;
3940 addend = link_order->u.reloc.p->addend;
3942 /* We set up an arelent to pass to the backend adjust_reloc_out
3944 rel.address = link_order->offset;
3946 rel.howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
3949 bfd_set_error (bfd_error_bad_value);
3953 if (type == bfd_section_reloc_link_order)
3955 section = link_order->u.reloc.p->u.section;
3956 rel.sym_ptr_ptr = section->symbol_ptr_ptr;
3960 struct bfd_link_hash_entry *h;
3962 /* Treat a reloc against a defined symbol as though it were
3963 actually against the section. */
3964 h = bfd_wrapped_link_hash_lookup (output_bfd, info,
3965 link_order->u.reloc.p->u.name,
3966 FALSE, FALSE, FALSE);
3968 && (h->type == bfd_link_hash_defined
3969 || h->type == bfd_link_hash_defweak))
3971 type = bfd_section_reloc_link_order;
3972 section = h->u.def.section->output_section;
3973 /* It seems that we ought to add the symbol value to the
3974 addend here, but in practice it has already been added
3975 because it was passed to constructor_callback. */
3976 addend += section->vma + h->u.def.section->output_offset;
3980 /* We can't set up a reloc against a symbol correctly,
3981 because we have no asymbol structure. Currently no
3982 adjust_reloc_out routine cares. */
3983 rel.sym_ptr_ptr = NULL;
3987 /* All ECOFF relocs are in-place. Put the addend into the object
3990 BFD_ASSERT (rel.howto->partial_inplace);
3994 bfd_reloc_status_type rstat;
3997 size = bfd_get_reloc_size (rel.howto);
3998 buf = (bfd_byte *) bfd_zmalloc (size);
3999 if (buf == NULL && size != 0)
4001 rstat = _bfd_relocate_contents (rel.howto, output_bfd,
4002 (bfd_vma) addend, buf);
4008 case bfd_reloc_outofrange:
4010 case bfd_reloc_overflow:
4011 (*info->callbacks->reloc_overflow)
4013 (link_order->type == bfd_section_reloc_link_order
4014 ? bfd_section_name (output_bfd, section)
4015 : link_order->u.reloc.p->u.name),
4016 rel.howto->name, addend, NULL, NULL, (bfd_vma) 0);
4019 ok = bfd_set_section_contents (output_bfd, output_section, (void *) buf,
4020 (file_ptr) link_order->offset, size);
4028 /* Move the information into an internal_reloc structure. */
4029 in.r_vaddr = (rel.address
4030 + bfd_get_section_vma (output_bfd, output_section));
4031 in.r_type = rel.howto->type;
4033 if (type == bfd_symbol_reloc_link_order)
4035 struct ecoff_link_hash_entry *h;
4037 h = ((struct ecoff_link_hash_entry *)
4038 bfd_wrapped_link_hash_lookup (output_bfd, info,
4039 link_order->u.reloc.p->u.name,
4040 FALSE, FALSE, TRUE));
4043 in.r_symndx = h->indx;
4046 (*info->callbacks->unattached_reloc)
4047 (info, link_order->u.reloc.p->u.name, NULL, NULL, (bfd_vma) 0);
4063 { _TEXT, RELOC_SECTION_TEXT },
4064 { _RDATA, RELOC_SECTION_RDATA },
4065 { _DATA, RELOC_SECTION_DATA },
4066 { _SDATA, RELOC_SECTION_SDATA },
4067 { _SBSS, RELOC_SECTION_SBSS },
4068 { _BSS, RELOC_SECTION_BSS },
4069 { _INIT, RELOC_SECTION_INIT },
4070 { _LIT8, RELOC_SECTION_LIT8 },
4071 { _LIT4, RELOC_SECTION_LIT4 },
4072 { _XDATA, RELOC_SECTION_XDATA },
4073 { _PDATA, RELOC_SECTION_PDATA },
4074 { _FINI, RELOC_SECTION_FINI },
4075 { _LITA, RELOC_SECTION_LITA },
4076 { "*ABS*", RELOC_SECTION_ABS },
4077 { _RCONST, RELOC_SECTION_RCONST }
4080 name = bfd_get_section_name (output_bfd, section);
4082 for (i = 0; i < ARRAY_SIZE (section_symndx); i++)
4083 if (streq (name, section_symndx[i].name))
4085 in.r_symndx = section_symndx[i].r_symndx;
4089 if (i == ARRAY_SIZE (section_symndx))
4095 /* Let the BFD backend adjust the reloc. */
4096 (*ecoff_backend (output_bfd)->adjust_reloc_out) (output_bfd, &rel, &in);
4098 /* Get some memory and swap out the reloc. */
4099 external_reloc_size = ecoff_backend (output_bfd)->external_reloc_size;
4100 rbuf = (bfd_byte *) bfd_malloc (external_reloc_size);
4104 (*ecoff_backend (output_bfd)->swap_reloc_out) (output_bfd, &in, (void *) rbuf);
4106 pos = (output_section->rel_filepos
4107 + output_section->reloc_count * external_reloc_size);
4108 ok = (bfd_seek (output_bfd, pos, SEEK_SET) == 0
4109 && (bfd_bwrite ((void *) rbuf, external_reloc_size, output_bfd)
4110 == external_reloc_size));
4113 ++output_section->reloc_count;
4120 /* Put out information for an external symbol. These come only from
4124 ecoff_link_write_external (struct bfd_hash_entry *bh, void * data)
4126 struct ecoff_link_hash_entry *h = (struct ecoff_link_hash_entry *) bh;
4127 struct extsym_info *einfo = (struct extsym_info *) data;
4128 bfd *output_bfd = einfo->abfd;
4131 if (h->root.type == bfd_link_hash_warning)
4133 h = (struct ecoff_link_hash_entry *) h->root.u.i.link;
4134 if (h->root.type == bfd_link_hash_new)
4138 /* We need to check if this symbol is being stripped. */
4139 if (h->root.type == bfd_link_hash_undefined
4140 || h->root.type == bfd_link_hash_undefweak)
4142 else if (einfo->info->strip == strip_all
4143 || (einfo->info->strip == strip_some
4144 && bfd_hash_lookup (einfo->info->keep_hash,
4145 h->root.root.string,
4146 FALSE, FALSE) == NULL))
4151 if (strip || h->written)
4154 if (h->abfd == NULL)
4157 h->esym.cobol_main = 0;
4158 h->esym.weakext = 0;
4159 h->esym.reserved = 0;
4160 h->esym.ifd = ifdNil;
4161 h->esym.asym.value = 0;
4162 h->esym.asym.st = stGlobal;
4164 if (h->root.type != bfd_link_hash_defined
4165 && h->root.type != bfd_link_hash_defweak)
4166 h->esym.asym.sc = scAbs;
4169 asection *output_section;
4177 section_storage_classes [] =
4181 { _SDATA, scSData },
4182 { _RDATA, scRData },
4187 { _PDATA, scPData },
4188 { _XDATA, scXData },
4189 { _RCONST, scRConst }
4192 output_section = h->root.u.def.section->output_section;
4193 name = bfd_section_name (output_section->owner, output_section);
4195 for (i = 0; i < ARRAY_SIZE (section_storage_classes); i++)
4196 if (streq (name, section_storage_classes[i].name))
4198 h->esym.asym.sc = section_storage_classes[i].sc;
4202 if (i == ARRAY_SIZE (section_storage_classes))
4203 h->esym.asym.sc = scAbs;
4206 h->esym.asym.reserved = 0;
4207 h->esym.asym.index = indexNil;
4209 else if (h->esym.ifd != -1)
4211 struct ecoff_debug_info *debug;
4213 /* Adjust the FDR index for the symbol by that used for the
4215 debug = &ecoff_data (h->abfd)->debug_info;
4216 BFD_ASSERT (h->esym.ifd >= 0
4217 && h->esym.ifd < debug->symbolic_header.ifdMax);
4218 h->esym.ifd = debug->ifdmap[h->esym.ifd];
4221 switch (h->root.type)
4224 case bfd_link_hash_warning:
4225 case bfd_link_hash_new:
4227 case bfd_link_hash_undefined:
4228 case bfd_link_hash_undefweak:
4229 if (h->esym.asym.sc != scUndefined
4230 && h->esym.asym.sc != scSUndefined)
4231 h->esym.asym.sc = scUndefined;
4233 case bfd_link_hash_defined:
4234 case bfd_link_hash_defweak:
4235 if (h->esym.asym.sc == scUndefined
4236 || h->esym.asym.sc == scSUndefined)
4237 h->esym.asym.sc = scAbs;
4238 else if (h->esym.asym.sc == scCommon)
4239 h->esym.asym.sc = scBss;
4240 else if (h->esym.asym.sc == scSCommon)
4241 h->esym.asym.sc = scSBss;
4242 h->esym.asym.value = (h->root.u.def.value
4243 + h->root.u.def.section->output_section->vma
4244 + h->root.u.def.section->output_offset);
4246 case bfd_link_hash_common:
4247 if (h->esym.asym.sc != scCommon
4248 && h->esym.asym.sc != scSCommon)
4249 h->esym.asym.sc = scCommon;
4250 h->esym.asym.value = h->root.u.c.size;
4252 case bfd_link_hash_indirect:
4253 /* We ignore these symbols, since the indirected symbol is
4254 already in the hash table. */
4258 /* bfd_ecoff_debug_one_external uses iextMax to keep track of the
4260 h->indx = ecoff_data (output_bfd)->debug_info.symbolic_header.iextMax;
4263 return (bfd_ecoff_debug_one_external
4264 (output_bfd, &ecoff_data (output_bfd)->debug_info,
4265 &ecoff_backend (output_bfd)->debug_swap, h->root.root.string,
4269 /* ECOFF final link routine. This looks through all the input BFDs
4270 and gathers together all the debugging information, and then
4271 processes all the link order information. This may cause it to
4272 close and reopen some input BFDs; I'll see how bad this is. */
4275 _bfd_ecoff_bfd_final_link (bfd *abfd, struct bfd_link_info *info)
4277 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
4278 struct ecoff_debug_info * const debug = &ecoff_data (abfd)->debug_info;
4283 struct bfd_link_order *p;
4284 struct extsym_info einfo;
4286 /* We accumulate the debugging information counts in the symbolic
4288 symhdr = &debug->symbolic_header;
4290 symhdr->ilineMax = 0;
4294 symhdr->isymMax = 0;
4295 symhdr->ioptMax = 0;
4296 symhdr->iauxMax = 0;
4298 symhdr->issExtMax = 0;
4301 symhdr->iextMax = 0;
4303 /* We accumulate the debugging information itself in the debug_info
4306 debug->external_dnr = NULL;
4307 debug->external_pdr = NULL;
4308 debug->external_sym = NULL;
4309 debug->external_opt = NULL;
4310 debug->external_aux = NULL;
4312 debug->ssext = debug->ssext_end = NULL;
4313 debug->external_fdr = NULL;
4314 debug->external_rfd = NULL;
4315 debug->external_ext = debug->external_ext_end = NULL;
4317 handle = bfd_ecoff_debug_init (abfd, debug, &backend->debug_swap, info);
4321 /* Accumulate the debugging symbols from each input BFD. */
4322 for (input_bfd = info->input_bfds;
4324 input_bfd = input_bfd->link.next)
4328 if (bfd_get_flavour (input_bfd) == bfd_target_ecoff_flavour)
4330 /* Arbitrarily set the symbolic header vstamp to the vstamp
4331 of the first object file in the link. */
4332 if (symhdr->vstamp == 0)
4334 = ecoff_data (input_bfd)->debug_info.symbolic_header.vstamp;
4335 ret = ecoff_final_link_debug_accumulate (abfd, input_bfd, info,
4339 ret = bfd_ecoff_debug_accumulate_other (handle, abfd,
4340 debug, &backend->debug_swap,
4345 /* Combine the register masks. */
4346 ecoff_data (abfd)->gprmask |= ecoff_data (input_bfd)->gprmask;
4347 ecoff_data (abfd)->fprmask |= ecoff_data (input_bfd)->fprmask;
4348 ecoff_data (abfd)->cprmask[0] |= ecoff_data (input_bfd)->cprmask[0];
4349 ecoff_data (abfd)->cprmask[1] |= ecoff_data (input_bfd)->cprmask[1];
4350 ecoff_data (abfd)->cprmask[2] |= ecoff_data (input_bfd)->cprmask[2];
4351 ecoff_data (abfd)->cprmask[3] |= ecoff_data (input_bfd)->cprmask[3];
4354 /* Write out the external symbols. */
4357 bfd_hash_traverse (&info->hash->table, ecoff_link_write_external, &einfo);
4359 if (bfd_link_relocatable (info))
4361 /* We need to make a pass over the link_orders to count up the
4362 number of relocations we will need to output, so that we know
4363 how much space they will take up. */
4364 for (o = abfd->sections; o != NULL; o = o->next)
4367 for (p = o->map_head.link_order;
4370 if (p->type == bfd_indirect_link_order)
4371 o->reloc_count += p->u.indirect.section->reloc_count;
4372 else if (p->type == bfd_section_reloc_link_order
4373 || p->type == bfd_symbol_reloc_link_order)
4378 /* Compute the reloc and symbol file positions. */
4379 ecoff_compute_reloc_file_positions (abfd);
4381 /* Write out the debugging information. */
4382 if (! bfd_ecoff_write_accumulated_debug (handle, abfd, debug,
4383 &backend->debug_swap, info,
4384 ecoff_data (abfd)->sym_filepos))
4387 bfd_ecoff_debug_free (handle, abfd, debug, &backend->debug_swap, info);
4389 if (bfd_link_relocatable (info))
4391 /* Now reset the reloc_count field of the sections in the output
4392 BFD to 0, so that we can use them to keep track of how many
4393 relocs we have output thus far. */
4394 for (o = abfd->sections; o != NULL; o = o->next)
4398 /* Get a value for the GP register. */
4399 if (ecoff_data (abfd)->gp == 0)
4401 struct bfd_link_hash_entry *h;
4403 h = bfd_link_hash_lookup (info->hash, "_gp", FALSE, FALSE, TRUE);
4405 && h->type == bfd_link_hash_defined)
4406 ecoff_data (abfd)->gp = (h->u.def.value
4407 + h->u.def.section->output_section->vma
4408 + h->u.def.section->output_offset);
4409 else if (bfd_link_relocatable (info))
4413 /* Make up a value. */
4415 for (o = abfd->sections; o != NULL; o = o->next)
4418 && (streq (o->name, _SBSS)
4419 || streq (o->name, _SDATA)
4420 || streq (o->name, _LIT4)
4421 || streq (o->name, _LIT8)
4422 || streq (o->name, _LITA)))
4425 ecoff_data (abfd)->gp = lo + 0x8000;
4429 /* If the relocate_section function needs to do a reloc
4430 involving the GP value, it should make a reloc_dangerous
4431 callback to warn that GP is not defined. */
4435 for (o = abfd->sections; o != NULL; o = o->next)
4437 for (p = o->map_head.link_order;
4441 if (p->type == bfd_indirect_link_order
4442 && (bfd_get_flavour (p->u.indirect.section->owner)
4443 == bfd_target_ecoff_flavour))
4445 if (! ecoff_indirect_link_order (abfd, info, o, p))
4448 else if (p->type == bfd_section_reloc_link_order
4449 || p->type == bfd_symbol_reloc_link_order)
4451 if (! ecoff_reloc_link_order (abfd, info, o, p))
4456 if (! _bfd_default_link_order (abfd, info, o, p))
4462 bfd_get_symcount (abfd) = symhdr->iextMax + symhdr->isymMax;
4464 ecoff_data (abfd)->linker = TRUE;