* bfd.c (enum bfd_error): Define bfd_error_no_armap.
[binutils-gdb.git] / bfd / ecoff.c
1 /* Generic ECOFF (Extended-COFF) routines.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
3 Original version by Per Bothner.
4 Full support added by Ian Lance Taylor, ian@cygnus.com.
5
6 This file is part of BFD, the Binary File Descriptor library.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
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.
17
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., 675 Mass Ave, Cambridge, MA 02139, USA. */
21
22 #include "bfd.h"
23 #include "sysdep.h"
24 #include "bfdlink.h"
25 #include "libbfd.h"
26 #include "aout/ar.h"
27 #include "aout/ranlib.h"
28 #include "aout/stab_gnu.h"
29
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
32 we do want. */
33 #include "libaout.h"
34 #include "aout/aout64.h"
35 #undef N_ABS
36 #undef exec_hdr
37 #undef obj_sym_filepos
38
39 #include "coff/internal.h"
40 #include "coff/sym.h"
41 #include "coff/symconst.h"
42 #include "coff/ecoff.h"
43 #include "libcoff.h"
44 #include "libecoff.h"
45 \f
46 /* Prototypes for static functions. */
47
48 static int ecoff_get_magic PARAMS ((bfd *abfd));
49 static long ecoff_sec_to_styp_flags PARAMS ((const char *name,
50 flagword flags));
51 static boolean ecoff_slurp_symbolic_header PARAMS ((bfd *abfd));
52 static boolean ecoff_set_symbol_info PARAMS ((bfd *abfd, SYMR *ecoff_sym,
53 asymbol *asym, int ext,
54 asymbol **indirect_ptr_ptr));
55 static void ecoff_emit_aggregate PARAMS ((bfd *abfd, FDR *fdr,
56 char *string,
57 RNDXR *rndx, long isym,
58 const char *which));
59 static char *ecoff_type_to_string PARAMS ((bfd *abfd, FDR *fdr,
60 unsigned int indx));
61 static boolean ecoff_slurp_reloc_table PARAMS ((bfd *abfd, asection *section,
62 asymbol **symbols));
63 static void ecoff_compute_section_file_positions PARAMS ((bfd *abfd));
64 static bfd_size_type ecoff_compute_reloc_file_positions PARAMS ((bfd *abfd));
65 static boolean ecoff_get_extr PARAMS ((asymbol *, EXTR *));
66 static void ecoff_set_index PARAMS ((asymbol *, bfd_size_type));
67 static unsigned int ecoff_armap_hash PARAMS ((CONST char *s,
68 unsigned int *rehash,
69 unsigned int size,
70 unsigned int hlog));
71 \f
72 /* This stuff is somewhat copied from coffcode.h. */
73
74 static asection bfd_debug_section = { "*DEBUG*" };
75
76 /* Create an ECOFF object. */
77
78 boolean
79 _bfd_ecoff_mkobject (abfd)
80 bfd *abfd;
81 {
82 abfd->tdata.ecoff_obj_data = ((struct ecoff_tdata *)
83 bfd_zalloc (abfd, sizeof (ecoff_data_type)));
84 if (abfd->tdata.ecoff_obj_data == NULL)
85 {
86 bfd_set_error (bfd_error_no_memory);
87 return false;
88 }
89
90 return true;
91 }
92
93 /* This is a hook called by coff_real_object_p to create any backend
94 specific information. */
95
96 PTR
97 _bfd_ecoff_mkobject_hook (abfd, filehdr, aouthdr)
98 bfd *abfd;
99 PTR filehdr;
100 PTR aouthdr;
101 {
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;
105
106 if (_bfd_ecoff_mkobject (abfd) == false)
107 return NULL;
108
109 ecoff = ecoff_data (abfd);
110 ecoff->gp_size = 8;
111 ecoff->sym_filepos = internal_f->f_symptr;
112
113 if (internal_a != (struct internal_aouthdr *) NULL)
114 {
115 int i;
116
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;
126 else
127 abfd->flags &=~ D_PAGED;
128 }
129
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. */
135
136 return (PTR) ecoff;
137 }
138
139 /* This is a hook needed by SCO COFF, but we have nothing to do. */
140
141 /*ARGSUSED*/
142 asection *
143 _bfd_ecoff_make_section_hook (abfd, name)
144 bfd *abfd;
145 char *name;
146 {
147 return (asection *) NULL;
148 }
149
150 /* Initialize a new section. */
151
152 boolean
153 _bfd_ecoff_new_section_hook (abfd, section)
154 bfd *abfd;
155 asection *section;
156 {
157 /* For the .pdata section, which has a special meaning on the Alpha,
158 we set the alignment power to 3. We correct this later in
159 ecoff_compute_section_file_positions. We do this hackery because
160 we need to know the exact unaligned size of the .pdata section in
161 order to set the lnnoptr field correctly. For every other
162 section we use an alignment power of 4; this could be made target
163 dependent by adding a field to ecoff_backend_data, but 4 appears
164 to be correct for both the MIPS and the Alpha. */
165 if (strcmp (section->name, _PDATA) == 0)
166 section->alignment_power = 3;
167 else
168 section->alignment_power = 4;
169
170 if (strcmp (section->name, _TEXT) == 0)
171 section->flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
172 else if (strcmp (section->name, _DATA) == 0
173 || strcmp (section->name, _SDATA) == 0)
174 section->flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
175 else if (strcmp (section->name, _RDATA) == 0
176 || strcmp (section->name, _LIT8) == 0
177 || strcmp (section->name, _LIT4) == 0)
178 section->flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC | SEC_READONLY;
179 else if (strcmp (section->name, _BSS) == 0
180 || strcmp (section->name, _SBSS) == 0)
181 section->flags |= SEC_ALLOC;
182 else if (strcmp (section->name, _LIB) == 0)
183 {
184 /* An Irix 4 shared libary. */
185 section->flags |= SEC_COFF_SHARED_LIBRARY;
186 }
187
188 /* Probably any other section name is SEC_NEVER_LOAD, but I'm
189 uncertain about .init on some systems and I don't know how shared
190 libraries work. */
191
192 return true;
193 }
194
195 /* Determine the machine architecture and type. This is called from
196 the generic COFF routines. It is the inverse of ecoff_get_magic,
197 below. This could be an ECOFF backend routine, with one version
198 for each target, but there aren't all that many ECOFF targets. */
199
200 boolean
201 _bfd_ecoff_set_arch_mach_hook (abfd, filehdr)
202 bfd *abfd;
203 PTR filehdr;
204 {
205 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
206 enum bfd_architecture arch;
207 unsigned long mach;
208
209 switch (internal_f->f_magic)
210 {
211 case MIPS_MAGIC_1:
212 case MIPS_MAGIC_LITTLE:
213 case MIPS_MAGIC_BIG:
214 arch = bfd_arch_mips;
215 mach = 3000;
216 break;
217
218 case MIPS_MAGIC_LITTLE2:
219 case MIPS_MAGIC_BIG2:
220 /* MIPS ISA level 2: the r6000 */
221 arch = bfd_arch_mips;
222 mach = 6000;
223 break;
224
225 case MIPS_MAGIC_LITTLE3:
226 case MIPS_MAGIC_BIG3:
227 /* MIPS ISA level 3: the r4000 */
228 arch = bfd_arch_mips;
229 mach = 4000;
230 break;
231
232 case ALPHA_MAGIC:
233 arch = bfd_arch_alpha;
234 mach = 0;
235 break;
236
237 default:
238 arch = bfd_arch_obscure;
239 mach = 0;
240 break;
241 }
242
243 return bfd_default_set_arch_mach (abfd, arch, mach);
244 }
245
246 /* Get the magic number to use based on the architecture and machine.
247 This is the inverse of _bfd_ecoff_set_arch_mach_hook, above. */
248
249 static int
250 ecoff_get_magic (abfd)
251 bfd *abfd;
252 {
253 int big, little;
254
255 switch (bfd_get_arch (abfd))
256 {
257 case bfd_arch_mips:
258 switch (bfd_get_mach (abfd))
259 {
260 default:
261 case 0:
262 case 3000:
263 big = MIPS_MAGIC_BIG;
264 little = MIPS_MAGIC_LITTLE;
265 break;
266
267 case 6000:
268 big = MIPS_MAGIC_BIG2;
269 little = MIPS_MAGIC_LITTLE2;
270 break;
271
272 case 4000:
273 big = MIPS_MAGIC_BIG3;
274 little = MIPS_MAGIC_LITTLE3;
275 break;
276 }
277
278 return abfd->xvec->byteorder_big_p ? big : little;
279
280 case bfd_arch_alpha:
281 return ALPHA_MAGIC;
282
283 default:
284 abort ();
285 return 0;
286 }
287 }
288
289 /* Get the section s_flags to use for a section. */
290
291 static long
292 ecoff_sec_to_styp_flags (name, flags)
293 const char *name;
294 flagword flags;
295 {
296 long styp;
297
298 styp = 0;
299
300 if (strcmp (name, _TEXT) == 0)
301 styp = STYP_TEXT;
302 else if (strcmp (name, _DATA) == 0)
303 styp = STYP_DATA;
304 else if (strcmp (name, _SDATA) == 0)
305 styp = STYP_SDATA;
306 else if (strcmp (name, _RDATA) == 0)
307 styp = STYP_RDATA;
308 else if (strcmp (name, _LITA) == 0)
309 styp = STYP_LITA;
310 else if (strcmp (name, _LIT8) == 0)
311 styp = STYP_LIT8;
312 else if (strcmp (name, _LIT4) == 0)
313 styp = STYP_LIT4;
314 else if (strcmp (name, _BSS) == 0)
315 styp = STYP_BSS;
316 else if (strcmp (name, _SBSS) == 0)
317 styp = STYP_SBSS;
318 else if (strcmp (name, _INIT) == 0)
319 styp = STYP_ECOFF_INIT;
320 else if (strcmp (name, _FINI) == 0)
321 styp = STYP_ECOFF_FINI;
322 else if (strcmp (name, _PDATA) == 0)
323 styp = STYP_PDATA;
324 else if (strcmp (name, _XDATA) == 0)
325 styp = STYP_XDATA;
326 else if (strcmp (name, _LIB) == 0)
327 styp = STYP_ECOFF_LIB;
328 else if (flags & SEC_CODE)
329 styp = STYP_TEXT;
330 else if (flags & SEC_DATA)
331 styp = STYP_DATA;
332 else if (flags & SEC_READONLY)
333 styp = STYP_RDATA;
334 else if (flags & SEC_LOAD)
335 styp = STYP_REG;
336 else
337 styp = STYP_BSS;
338
339 if (flags & SEC_NEVER_LOAD)
340 styp |= STYP_NOLOAD;
341
342 return styp;
343 }
344
345 /* Get the BFD flags to use for a section. */
346
347 /*ARGSUSED*/
348 flagword
349 _bfd_ecoff_styp_to_sec_flags (abfd, hdr, name)
350 bfd *abfd;
351 PTR hdr;
352 const char *name;
353 {
354 struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
355 long styp_flags = internal_s->s_flags;
356 flagword sec_flags=0;
357
358 if (styp_flags & STYP_NOLOAD)
359 sec_flags |= SEC_NEVER_LOAD;
360
361 /* For 386 COFF, at least, an unloadable text or data section is
362 actually a shared library section. */
363 if ((styp_flags & STYP_TEXT)
364 || (styp_flags & STYP_ECOFF_INIT)
365 || (styp_flags & STYP_ECOFF_FINI))
366 {
367 if (sec_flags & SEC_NEVER_LOAD)
368 sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
369 else
370 sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
371 }
372 else if ((styp_flags & STYP_DATA)
373 || (styp_flags & STYP_RDATA)
374 || (styp_flags & STYP_SDATA)
375 || styp_flags == STYP_PDATA
376 || styp_flags == STYP_XDATA)
377 {
378 if (sec_flags & SEC_NEVER_LOAD)
379 sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
380 else
381 sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
382 if ((styp_flags & STYP_RDATA)
383 || styp_flags == STYP_PDATA)
384 sec_flags |= SEC_READONLY;
385 }
386 else if ((styp_flags & STYP_BSS)
387 || (styp_flags & STYP_SBSS))
388 {
389 sec_flags |= SEC_ALLOC;
390 }
391 else if ((styp_flags & STYP_INFO) || styp_flags == STYP_COMMENT)
392 {
393 sec_flags |= SEC_NEVER_LOAD;
394 }
395 else if ((styp_flags & STYP_LITA)
396 || (styp_flags & STYP_LIT8)
397 || (styp_flags & STYP_LIT4))
398 {
399 sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC | SEC_READONLY;
400 }
401 else if (styp_flags & STYP_ECOFF_LIB)
402 {
403 sec_flags |= SEC_COFF_SHARED_LIBRARY;
404 }
405 else
406 {
407 sec_flags |= SEC_ALLOC | SEC_LOAD;
408 }
409
410 return sec_flags;
411 }
412 \f
413 /* Read in the symbolic header for an ECOFF object file. */
414
415 static boolean
416 ecoff_slurp_symbolic_header (abfd)
417 bfd *abfd;
418 {
419 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
420 bfd_size_type external_hdr_size;
421 PTR raw = NULL;
422 HDRR *internal_symhdr;
423
424 /* See if we've already read it in. */
425 if (ecoff_data (abfd)->debug_info.symbolic_header.magic ==
426 backend->debug_swap.sym_magic)
427 return true;
428
429 /* See whether there is a symbolic header. */
430 if (ecoff_data (abfd)->sym_filepos == 0)
431 {
432 bfd_get_symcount (abfd) = 0;
433 return true;
434 }
435
436 /* At this point bfd_get_symcount (abfd) holds the number of symbols
437 as read from the file header, but on ECOFF this is always the
438 size of the symbolic information header. It would be cleaner to
439 handle this when we first read the file in coffgen.c. */
440 external_hdr_size = backend->debug_swap.external_hdr_size;
441 if (bfd_get_symcount (abfd) != external_hdr_size)
442 {
443 bfd_set_error (bfd_error_bad_value);
444 return false;
445 }
446
447 /* Read the symbolic information header. */
448 raw = (PTR) malloc ((size_t) external_hdr_size);
449 if (raw == NULL)
450 {
451 bfd_set_error (bfd_error_no_memory);
452 goto error_return;
453 }
454
455 if (bfd_seek (abfd, ecoff_data (abfd)->sym_filepos, SEEK_SET) == -1
456 || (bfd_read (raw, external_hdr_size, 1, abfd)
457 != external_hdr_size))
458 goto error_return;
459 internal_symhdr = &ecoff_data (abfd)->debug_info.symbolic_header;
460 (*backend->debug_swap.swap_hdr_in) (abfd, raw, internal_symhdr);
461
462 if (internal_symhdr->magic != backend->debug_swap.sym_magic)
463 {
464 bfd_set_error (bfd_error_bad_value);
465 goto error_return;
466 }
467
468 /* Now we can get the correct number of symbols. */
469 bfd_get_symcount (abfd) = (internal_symhdr->isymMax
470 + internal_symhdr->iextMax);
471
472 if (raw != NULL)
473 free (raw);
474 return true;
475 error_return:
476 if (raw != NULL)
477 free (raw);
478 return false;
479 }
480
481 /* Read in and swap the important symbolic information for an ECOFF
482 object file. This is called by gdb via the read_debug_info entry
483 point in the backend structure. */
484
485 /*ARGSUSED*/
486 boolean
487 _bfd_ecoff_slurp_symbolic_info (abfd, ignore, debug)
488 bfd *abfd;
489 asection *ignore;
490 struct ecoff_debug_info *debug;
491 {
492 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
493 HDRR *internal_symhdr;
494 bfd_size_type raw_base;
495 bfd_size_type raw_size;
496 PTR raw;
497 bfd_size_type external_fdr_size;
498 char *fraw_src;
499 char *fraw_end;
500 struct fdr *fdr_ptr;
501 bfd_size_type raw_end;
502 bfd_size_type cb_end;
503
504 BFD_ASSERT (debug == &ecoff_data (abfd)->debug_info);
505
506 /* Check whether we've already gotten it, and whether there's any to
507 get. */
508 if (ecoff_data (abfd)->raw_syments != (PTR) NULL)
509 return true;
510 if (ecoff_data (abfd)->sym_filepos == 0)
511 {
512 bfd_get_symcount (abfd) = 0;
513 return true;
514 }
515
516 if (! ecoff_slurp_symbolic_header (abfd))
517 return false;
518
519 internal_symhdr = &debug->symbolic_header;
520
521 /* Read all the symbolic information at once. */
522 raw_base = (ecoff_data (abfd)->sym_filepos
523 + backend->debug_swap.external_hdr_size);
524
525 /* Alpha ecoff makes the determination of raw_size difficult. It has
526 an undocumented debug data section between the symhdr and the first
527 documented section. And the ordering of the sections varies between
528 statically and dynamically linked executables.
529 If bfd supports SEEK_END someday, this code could be simplified. */
530
531 raw_end = 0;
532
533 #define UPDATE_RAW_END(start, count, size) \
534 cb_end = internal_symhdr->start + internal_symhdr->count * (size); \
535 if (cb_end > raw_end) \
536 raw_end = cb_end
537
538 UPDATE_RAW_END (cbLineOffset, cbLine, sizeof (unsigned char));
539 UPDATE_RAW_END (cbDnOffset, idnMax, backend->debug_swap.external_dnr_size);
540 UPDATE_RAW_END (cbPdOffset, ipdMax, backend->debug_swap.external_pdr_size);
541 UPDATE_RAW_END (cbSymOffset, isymMax, backend->debug_swap.external_sym_size);
542 UPDATE_RAW_END (cbOptOffset, ioptMax, backend->debug_swap.external_opt_size);
543 UPDATE_RAW_END (cbAuxOffset, iauxMax, sizeof (union aux_ext));
544 UPDATE_RAW_END (cbSsOffset, issMax, sizeof (char));
545 UPDATE_RAW_END (cbSsExtOffset, issExtMax, sizeof (char));
546 UPDATE_RAW_END (cbFdOffset, ifdMax, backend->debug_swap.external_fdr_size);
547 UPDATE_RAW_END (cbRfdOffset, crfd, backend->debug_swap.external_rfd_size);
548 UPDATE_RAW_END (cbExtOffset, iextMax, backend->debug_swap.external_ext_size);
549
550 #undef UPDATE_RAW_END
551
552 raw_size = raw_end - raw_base;
553 if (raw_size == 0)
554 {
555 ecoff_data (abfd)->sym_filepos = 0;
556 return true;
557 }
558 raw = (PTR) bfd_alloc (abfd, raw_size);
559 if (raw == NULL)
560 {
561 bfd_set_error (bfd_error_no_memory);
562 return false;
563 }
564 if (bfd_seek (abfd,
565 (ecoff_data (abfd)->sym_filepos
566 + backend->debug_swap.external_hdr_size),
567 SEEK_SET) != 0
568 || bfd_read (raw, raw_size, 1, abfd) != raw_size)
569 {
570 bfd_release (abfd, raw);
571 return false;
572 }
573
574 ecoff_data (abfd)->raw_syments = raw;
575
576 /* Get pointers for the numeric offsets in the HDRR structure. */
577 #define FIX(off1, off2, type) \
578 if (internal_symhdr->off1 == 0) \
579 debug->off2 = (type) NULL; \
580 else \
581 debug->off2 = (type) ((char *) raw \
582 + internal_symhdr->off1 \
583 - raw_base)
584 FIX (cbLineOffset, line, unsigned char *);
585 FIX (cbDnOffset, external_dnr, PTR);
586 FIX (cbPdOffset, external_pdr, PTR);
587 FIX (cbSymOffset, external_sym, PTR);
588 FIX (cbOptOffset, external_opt, PTR);
589 FIX (cbAuxOffset, external_aux, union aux_ext *);
590 FIX (cbSsOffset, ss, char *);
591 FIX (cbSsExtOffset, ssext, char *);
592 FIX (cbFdOffset, external_fdr, PTR);
593 FIX (cbRfdOffset, external_rfd, PTR);
594 FIX (cbExtOffset, external_ext, PTR);
595 #undef FIX
596
597 /* I don't want to always swap all the data, because it will just
598 waste time and most programs will never look at it. The only
599 time the linker needs most of the debugging information swapped
600 is when linking big-endian and little-endian MIPS object files
601 together, which is not a common occurrence.
602
603 We need to look at the fdr to deal with a lot of information in
604 the symbols, so we swap them here. */
605 debug->fdr = (struct fdr *) bfd_alloc (abfd,
606 (internal_symhdr->ifdMax *
607 sizeof (struct fdr)));
608 if (debug->fdr == NULL)
609 {
610 bfd_set_error (bfd_error_no_memory);
611 return false;
612 }
613 external_fdr_size = backend->debug_swap.external_fdr_size;
614 fdr_ptr = debug->fdr;
615 fraw_src = (char *) debug->external_fdr;
616 fraw_end = fraw_src + internal_symhdr->ifdMax * external_fdr_size;
617 for (; fraw_src < fraw_end; fraw_src += external_fdr_size, fdr_ptr++)
618 (*backend->debug_swap.swap_fdr_in) (abfd, (PTR) fraw_src, fdr_ptr);
619
620 return true;
621 }
622 \f
623 /* ECOFF symbol table routines. The ECOFF symbol table is described
624 in gcc/mips-tfile.c. */
625
626 /* ECOFF uses two common sections. One is the usual one, and the
627 other is for small objects. All the small objects are kept
628 together, and then referenced via the gp pointer, which yields
629 faster assembler code. This is what we use for the small common
630 section. */
631 static asection ecoff_scom_section;
632 static asymbol ecoff_scom_symbol;
633 static asymbol *ecoff_scom_symbol_ptr;
634
635 /* Create an empty symbol. */
636
637 asymbol *
638 _bfd_ecoff_make_empty_symbol (abfd)
639 bfd *abfd;
640 {
641 ecoff_symbol_type *new;
642
643 new = (ecoff_symbol_type *) bfd_alloc (abfd, sizeof (ecoff_symbol_type));
644 if (new == (ecoff_symbol_type *) NULL)
645 {
646 bfd_set_error (bfd_error_no_memory);
647 return (asymbol *) NULL;
648 }
649 memset ((PTR) new, 0, sizeof *new);
650 new->symbol.section = (asection *) NULL;
651 new->fdr = (FDR *) NULL;
652 new->local = false;
653 new->native = NULL;
654 new->symbol.the_bfd = abfd;
655 return &new->symbol;
656 }
657
658 /* Set the BFD flags and section for an ECOFF symbol. */
659
660 static boolean
661 ecoff_set_symbol_info (abfd, ecoff_sym, asym, ext, indirect_ptr_ptr)
662 bfd *abfd;
663 SYMR *ecoff_sym;
664 asymbol *asym;
665 int ext;
666 asymbol **indirect_ptr_ptr;
667 {
668 asym->the_bfd = abfd;
669 asym->value = ecoff_sym->value;
670 asym->section = &bfd_debug_section;
671 asym->udata.i = 0;
672
673 /* An indirect symbol requires two consecutive stabs symbols. */
674 if (*indirect_ptr_ptr != (asymbol *) NULL)
675 {
676 BFD_ASSERT (ECOFF_IS_STAB (ecoff_sym));
677
678 /* @@ Stuffing pointers into integers is a no-no.
679 We can usually get away with it if the integer is
680 large enough though. */
681 if (sizeof (asym) > sizeof (bfd_vma))
682 abort ();
683 (*indirect_ptr_ptr)->value = (bfd_vma) asym;
684
685 asym->flags = BSF_DEBUGGING;
686 asym->section = bfd_und_section_ptr;
687 *indirect_ptr_ptr = NULL;
688 return true;
689 }
690
691 if (ECOFF_IS_STAB (ecoff_sym)
692 && (ECOFF_UNMARK_STAB (ecoff_sym->index) | N_EXT) == (N_INDR | N_EXT))
693 {
694 asym->flags = BSF_DEBUGGING | BSF_INDIRECT;
695 asym->section = bfd_ind_section_ptr;
696 /* Pass this symbol on to the next call to this function. */
697 *indirect_ptr_ptr = asym;
698 return true;
699 }
700
701 /* Most symbol types are just for debugging. */
702 switch (ecoff_sym->st)
703 {
704 case stGlobal:
705 case stStatic:
706 case stLabel:
707 case stProc:
708 case stStaticProc:
709 break;
710 case stNil:
711 if (ECOFF_IS_STAB (ecoff_sym))
712 {
713 asym->flags = BSF_DEBUGGING;
714 return true;
715 }
716 break;
717 default:
718 asym->flags = BSF_DEBUGGING;
719 return true;
720 }
721
722 if (ext)
723 asym->flags = BSF_EXPORT | BSF_GLOBAL;
724 else
725 {
726 asym->flags = BSF_LOCAL;
727 /* Normally, a local stProc symbol will have a corresponding
728 external symbol. We mark the local symbol as a debugging
729 symbol, in order to prevent nm from printing both out.
730 Similarly, we mark stLabel and stabs symbols as debugging
731 symbols. In both cases, we do want to set the value
732 correctly based on the symbol class. */
733 if (ecoff_sym->st == stProc
734 || ecoff_sym->st == stLabel
735 || ECOFF_IS_STAB (ecoff_sym))
736 asym->flags |= BSF_DEBUGGING;
737 }
738 switch (ecoff_sym->sc)
739 {
740 case scNil:
741 /* Used for compiler generated labels. Leave them in the
742 debugging section, and mark them as local. If BSF_DEBUGGING
743 is set, then nm does not display them for some reason. If no
744 flags are set then the linker whines about them. */
745 asym->flags = BSF_LOCAL;
746 break;
747 case scText:
748 asym->section = bfd_make_section_old_way (abfd, ".text");
749 asym->value -= asym->section->vma;
750 break;
751 case scData:
752 asym->section = bfd_make_section_old_way (abfd, ".data");
753 asym->value -= asym->section->vma;
754 break;
755 case scBss:
756 asym->section = bfd_make_section_old_way (abfd, ".bss");
757 asym->value -= asym->section->vma;
758 break;
759 case scRegister:
760 asym->flags = BSF_DEBUGGING;
761 break;
762 case scAbs:
763 asym->section = bfd_abs_section_ptr;
764 break;
765 case scUndefined:
766 asym->section = bfd_und_section_ptr;
767 asym->flags = 0;
768 asym->value = 0;
769 break;
770 case scCdbLocal:
771 case scBits:
772 case scCdbSystem:
773 case scRegImage:
774 case scInfo:
775 case scUserStruct:
776 asym->flags = BSF_DEBUGGING;
777 break;
778 case scSData:
779 asym->section = bfd_make_section_old_way (abfd, ".sdata");
780 asym->value -= asym->section->vma;
781 break;
782 case scSBss:
783 asym->section = bfd_make_section_old_way (abfd, ".sbss");
784 asym->value -= asym->section->vma;
785 break;
786 case scRData:
787 asym->section = bfd_make_section_old_way (abfd, ".rdata");
788 asym->value -= asym->section->vma;
789 break;
790 case scVar:
791 asym->flags = BSF_DEBUGGING;
792 break;
793 case scCommon:
794 if (asym->value > ecoff_data (abfd)->gp_size)
795 {
796 asym->section = bfd_com_section_ptr;
797 asym->flags = 0;
798 break;
799 }
800 /* Fall through. */
801 case scSCommon:
802 if (ecoff_scom_section.name == NULL)
803 {
804 /* Initialize the small common section. */
805 ecoff_scom_section.name = SCOMMON;
806 ecoff_scom_section.flags = SEC_IS_COMMON;
807 ecoff_scom_section.output_section = &ecoff_scom_section;
808 ecoff_scom_section.symbol = &ecoff_scom_symbol;
809 ecoff_scom_section.symbol_ptr_ptr = &ecoff_scom_symbol_ptr;
810 ecoff_scom_symbol.name = SCOMMON;
811 ecoff_scom_symbol.flags = BSF_SECTION_SYM;
812 ecoff_scom_symbol.section = &ecoff_scom_section;
813 ecoff_scom_symbol_ptr = &ecoff_scom_symbol;
814 }
815 asym->section = &ecoff_scom_section;
816 asym->flags = 0;
817 break;
818 case scVarRegister:
819 case scVariant:
820 asym->flags = BSF_DEBUGGING;
821 break;
822 case scSUndefined:
823 asym->section = bfd_und_section_ptr;
824 asym->flags = 0;
825 asym->value = 0;
826 break;
827 case scInit:
828 asym->section = bfd_make_section_old_way (abfd, ".init");
829 asym->value -= asym->section->vma;
830 break;
831 case scBasedVar:
832 case scXData:
833 case scPData:
834 asym->flags = BSF_DEBUGGING;
835 break;
836 case scFini:
837 asym->section = bfd_make_section_old_way (abfd, ".fini");
838 asym->value -= asym->section->vma;
839 break;
840 default:
841 break;
842 }
843
844 /* Look for special constructors symbols and make relocation entries
845 in a special construction section. These are produced by the
846 -fgnu-linker argument to g++. */
847 if (ECOFF_IS_STAB (ecoff_sym))
848 {
849 switch (ECOFF_UNMARK_STAB (ecoff_sym->index))
850 {
851 default:
852 break;
853
854 case N_SETA:
855 case N_SETT:
856 case N_SETD:
857 case N_SETB:
858 {
859 const char *name;
860 asection *section;
861 arelent_chain *reloc_chain;
862 unsigned int bitsize;
863
864 /* Get a section with the same name as the symbol (usually
865 __CTOR_LIST__ or __DTOR_LIST__). FIXME: gcc uses the
866 name ___CTOR_LIST (three underscores). We need
867 __CTOR_LIST (two underscores), since ECOFF doesn't use
868 a leading underscore. This should be handled by gcc,
869 but instead we do it here. Actually, this should all
870 be done differently anyhow. */
871 name = bfd_asymbol_name (asym);
872 if (name[0] == '_' && name[1] == '_' && name[2] == '_')
873 {
874 ++name;
875 asym->name = name;
876 }
877 section = bfd_get_section_by_name (abfd, name);
878 if (section == (asection *) NULL)
879 {
880 char *copy;
881
882 copy = (char *) bfd_alloc (abfd, strlen (name) + 1);
883 if (!copy)
884 {
885 bfd_set_error (bfd_error_no_memory);
886 return false;
887 }
888 strcpy (copy, name);
889 section = bfd_make_section (abfd, copy);
890 }
891
892 /* Build a reloc pointing to this constructor. */
893 reloc_chain =
894 (arelent_chain *) bfd_alloc (abfd, sizeof (arelent_chain));
895 if (!reloc_chain)
896 {
897 bfd_set_error (bfd_error_no_memory);
898 return false;
899 }
900 reloc_chain->relent.sym_ptr_ptr =
901 bfd_get_section (asym)->symbol_ptr_ptr;
902 reloc_chain->relent.address = section->_raw_size;
903 reloc_chain->relent.addend = asym->value;
904 reloc_chain->relent.howto =
905 ecoff_backend (abfd)->constructor_reloc;
906
907 /* Set up the constructor section to hold the reloc. */
908 section->flags = SEC_CONSTRUCTOR;
909 ++section->reloc_count;
910
911 /* Constructor sections must be rounded to a boundary
912 based on the bitsize. These are not real sections--
913 they are handled specially by the linker--so the ECOFF
914 16 byte alignment restriction does not apply. */
915 bitsize = ecoff_backend (abfd)->constructor_bitsize;
916 section->alignment_power = 1;
917 while ((1 << section->alignment_power) < bitsize / 8)
918 ++section->alignment_power;
919
920 reloc_chain->next = section->constructor_chain;
921 section->constructor_chain = reloc_chain;
922 section->_raw_size += bitsize / 8;
923
924 /* Mark the symbol as a constructor. */
925 asym->flags |= BSF_CONSTRUCTOR;
926 }
927 break;
928 }
929 }
930 return true;
931 }
932
933 /* Read an ECOFF symbol table. */
934
935 boolean
936 _bfd_ecoff_slurp_symbol_table (abfd)
937 bfd *abfd;
938 {
939 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
940 const bfd_size_type external_ext_size
941 = backend->debug_swap.external_ext_size;
942 const bfd_size_type external_sym_size
943 = backend->debug_swap.external_sym_size;
944 void (* const swap_ext_in) PARAMS ((bfd *, PTR, EXTR *))
945 = backend->debug_swap.swap_ext_in;
946 void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *))
947 = backend->debug_swap.swap_sym_in;
948 bfd_size_type internal_size;
949 ecoff_symbol_type *internal;
950 ecoff_symbol_type *internal_ptr;
951 asymbol *indirect_ptr;
952 char *eraw_src;
953 char *eraw_end;
954 FDR *fdr_ptr;
955 FDR *fdr_end;
956
957 /* If we've already read in the symbol table, do nothing. */
958 if (ecoff_data (abfd)->canonical_symbols != NULL)
959 return true;
960
961 /* Get the symbolic information. */
962 if (! _bfd_ecoff_slurp_symbolic_info (abfd, (asection *) NULL,
963 &ecoff_data (abfd)->debug_info))
964 return false;
965 if (bfd_get_symcount (abfd) == 0)
966 return true;
967
968 internal_size = bfd_get_symcount (abfd) * sizeof (ecoff_symbol_type);
969 internal = (ecoff_symbol_type *) bfd_alloc (abfd, internal_size);
970 if (internal == NULL)
971 {
972 bfd_set_error (bfd_error_no_memory);
973 return false;
974 }
975
976 internal_ptr = internal;
977 indirect_ptr = NULL;
978 eraw_src = (char *) ecoff_data (abfd)->debug_info.external_ext;
979 eraw_end = (eraw_src
980 + (ecoff_data (abfd)->debug_info.symbolic_header.iextMax
981 * external_ext_size));
982 for (; eraw_src < eraw_end; eraw_src += external_ext_size, internal_ptr++)
983 {
984 EXTR internal_esym;
985
986 (*swap_ext_in) (abfd, (PTR) eraw_src, &internal_esym);
987 internal_ptr->symbol.name = (ecoff_data (abfd)->debug_info.ssext
988 + internal_esym.asym.iss);
989 if (!ecoff_set_symbol_info (abfd, &internal_esym.asym,
990 &internal_ptr->symbol, 1, &indirect_ptr))
991 return false;
992 /* The alpha uses a negative ifd field for section symbols. */
993 if (internal_esym.ifd >= 0)
994 internal_ptr->fdr = (ecoff_data (abfd)->debug_info.fdr
995 + internal_esym.ifd);
996 else
997 internal_ptr->fdr = NULL;
998 internal_ptr->local = false;
999 internal_ptr->native = (PTR) eraw_src;
1000 }
1001 BFD_ASSERT (indirect_ptr == (asymbol *) NULL);
1002
1003 /* The local symbols must be accessed via the fdr's, because the
1004 string and aux indices are relative to the fdr information. */
1005 fdr_ptr = ecoff_data (abfd)->debug_info.fdr;
1006 fdr_end = fdr_ptr + ecoff_data (abfd)->debug_info.symbolic_header.ifdMax;
1007 for (; fdr_ptr < fdr_end; fdr_ptr++)
1008 {
1009 char *lraw_src;
1010 char *lraw_end;
1011
1012 lraw_src = ((char *) ecoff_data (abfd)->debug_info.external_sym
1013 + fdr_ptr->isymBase * external_sym_size);
1014 lraw_end = lraw_src + fdr_ptr->csym * external_sym_size;
1015 for (;
1016 lraw_src < lraw_end;
1017 lraw_src += external_sym_size, internal_ptr++)
1018 {
1019 SYMR internal_sym;
1020
1021 (*swap_sym_in) (abfd, (PTR) lraw_src, &internal_sym);
1022 internal_ptr->symbol.name = (ecoff_data (abfd)->debug_info.ss
1023 + fdr_ptr->issBase
1024 + internal_sym.iss);
1025 if (!ecoff_set_symbol_info (abfd, &internal_sym,
1026 &internal_ptr->symbol, 0, &indirect_ptr))
1027 return false;
1028 internal_ptr->fdr = fdr_ptr;
1029 internal_ptr->local = true;
1030 internal_ptr->native = (PTR) lraw_src;
1031 }
1032 }
1033 BFD_ASSERT (indirect_ptr == (asymbol *) NULL);
1034
1035 ecoff_data (abfd)->canonical_symbols = internal;
1036
1037 return true;
1038 }
1039
1040 /* Return the amount of space needed for the canonical symbols. */
1041
1042 long
1043 _bfd_ecoff_get_symtab_upper_bound (abfd)
1044 bfd *abfd;
1045 {
1046 if (! _bfd_ecoff_slurp_symbolic_info (abfd, (asection *) NULL,
1047 &ecoff_data (abfd)->debug_info))
1048 return -1;
1049
1050 if (bfd_get_symcount (abfd) == 0)
1051 return 0;
1052
1053 return (bfd_get_symcount (abfd) + 1) * (sizeof (ecoff_symbol_type *));
1054 }
1055
1056 /* Get the canonical symbols. */
1057
1058 long
1059 _bfd_ecoff_get_symtab (abfd, alocation)
1060 bfd *abfd;
1061 asymbol **alocation;
1062 {
1063 unsigned int counter = 0;
1064 ecoff_symbol_type *symbase;
1065 ecoff_symbol_type **location = (ecoff_symbol_type **) alocation;
1066
1067 if (_bfd_ecoff_slurp_symbol_table (abfd) == false)
1068 return -1;
1069 if (bfd_get_symcount (abfd) == 0)
1070 return 0;
1071
1072 symbase = ecoff_data (abfd)->canonical_symbols;
1073 while (counter < bfd_get_symcount (abfd))
1074 {
1075 *(location++) = symbase++;
1076 counter++;
1077 }
1078 *location++ = (ecoff_symbol_type *) NULL;
1079 return bfd_get_symcount (abfd);
1080 }
1081
1082 /* Turn ECOFF type information into a printable string.
1083 ecoff_emit_aggregate and ecoff_type_to_string are from
1084 gcc/mips-tdump.c, with swapping added and used_ptr removed. */
1085
1086 /* Write aggregate information to a string. */
1087
1088 static void
1089 ecoff_emit_aggregate (abfd, fdr, string, rndx, isym, which)
1090 bfd *abfd;
1091 FDR *fdr;
1092 char *string;
1093 RNDXR *rndx;
1094 long isym;
1095 const char *which;
1096 {
1097 const struct ecoff_debug_swap * const debug_swap =
1098 &ecoff_backend (abfd)->debug_swap;
1099 struct ecoff_debug_info * const debug_info = &ecoff_data (abfd)->debug_info;
1100 unsigned int ifd = rndx->rfd;
1101 unsigned int indx = rndx->index;
1102 const char *name;
1103
1104 if (ifd == 0xfff)
1105 ifd = isym;
1106
1107 /* An ifd of -1 is an opaque type. An escaped index of 0 is a
1108 struct return type of a procedure compiled without -g. */
1109 if (ifd == 0xffffffff
1110 || (rndx->rfd == 0xfff && indx == 0))
1111 name = "<undefined>";
1112 else if (indx == indexNil)
1113 name = "<no name>";
1114 else
1115 {
1116 SYMR sym;
1117
1118 if (debug_info->external_rfd == NULL)
1119 fdr = debug_info->fdr + ifd;
1120 else
1121 {
1122 RFDT rfd;
1123
1124 (*debug_swap->swap_rfd_in) (abfd,
1125 ((char *) debug_info->external_rfd
1126 + ((fdr->rfdBase + ifd)
1127 * debug_swap->external_rfd_size)),
1128 &rfd);
1129 fdr = debug_info->fdr + rfd;
1130 }
1131
1132 indx += fdr->isymBase;
1133
1134 (*debug_swap->swap_sym_in) (abfd,
1135 ((char *) debug_info->external_sym
1136 + indx * debug_swap->external_sym_size),
1137 &sym);
1138
1139 name = debug_info->ss + fdr->issBase + sym.iss;
1140 }
1141
1142 sprintf (string,
1143 "%s %s { ifd = %u, index = %lu }",
1144 which, name, ifd,
1145 ((long) indx
1146 + debug_info->symbolic_header.iextMax));
1147 }
1148
1149 /* Convert the type information to string format. */
1150
1151 static char *
1152 ecoff_type_to_string (abfd, fdr, indx)
1153 bfd *abfd;
1154 FDR *fdr;
1155 unsigned int indx;
1156 {
1157 union aux_ext *aux_ptr;
1158 int bigendian;
1159 AUXU u;
1160 struct qual {
1161 unsigned int type;
1162 int low_bound;
1163 int high_bound;
1164 int stride;
1165 } qualifiers[7];
1166 unsigned int basic_type;
1167 int i;
1168 char buffer1[1024];
1169 static char buffer2[1024];
1170 char *p1 = buffer1;
1171 char *p2 = buffer2;
1172 RNDXR rndx;
1173
1174 aux_ptr = ecoff_data (abfd)->debug_info.external_aux + fdr->iauxBase;
1175 bigendian = fdr->fBigendian;
1176
1177 for (i = 0; i < 7; i++)
1178 {
1179 qualifiers[i].low_bound = 0;
1180 qualifiers[i].high_bound = 0;
1181 qualifiers[i].stride = 0;
1182 }
1183
1184 if (AUX_GET_ISYM (bigendian, &aux_ptr[indx]) == -1)
1185 return "-1 (no type)";
1186 _bfd_ecoff_swap_tir_in (bigendian, &aux_ptr[indx++].a_ti, &u.ti);
1187
1188 basic_type = u.ti.bt;
1189 qualifiers[0].type = u.ti.tq0;
1190 qualifiers[1].type = u.ti.tq1;
1191 qualifiers[2].type = u.ti.tq2;
1192 qualifiers[3].type = u.ti.tq3;
1193 qualifiers[4].type = u.ti.tq4;
1194 qualifiers[5].type = u.ti.tq5;
1195 qualifiers[6].type = tqNil;
1196
1197 /*
1198 * Go get the basic type.
1199 */
1200 switch (basic_type)
1201 {
1202 case btNil: /* undefined */
1203 strcpy (p1, "nil");
1204 break;
1205
1206 case btAdr: /* address - integer same size as pointer */
1207 strcpy (p1, "address");
1208 break;
1209
1210 case btChar: /* character */
1211 strcpy (p1, "char");
1212 break;
1213
1214 case btUChar: /* unsigned character */
1215 strcpy (p1, "unsigned char");
1216 break;
1217
1218 case btShort: /* short */
1219 strcpy (p1, "short");
1220 break;
1221
1222 case btUShort: /* unsigned short */
1223 strcpy (p1, "unsigned short");
1224 break;
1225
1226 case btInt: /* int */
1227 strcpy (p1, "int");
1228 break;
1229
1230 case btUInt: /* unsigned int */
1231 strcpy (p1, "unsigned int");
1232 break;
1233
1234 case btLong: /* long */
1235 strcpy (p1, "long");
1236 break;
1237
1238 case btULong: /* unsigned long */
1239 strcpy (p1, "unsigned long");
1240 break;
1241
1242 case btFloat: /* float (real) */
1243 strcpy (p1, "float");
1244 break;
1245
1246 case btDouble: /* Double (real) */
1247 strcpy (p1, "double");
1248 break;
1249
1250 /* Structures add 1-2 aux words:
1251 1st word is [ST_RFDESCAPE, offset] pointer to struct def;
1252 2nd word is file index if 1st word rfd is ST_RFDESCAPE. */
1253
1254 case btStruct: /* Structure (Record) */
1255 _bfd_ecoff_swap_rndx_in (bigendian, &aux_ptr[indx].a_rndx, &rndx);
1256 ecoff_emit_aggregate (abfd, fdr, p1, &rndx,
1257 (long) AUX_GET_ISYM (bigendian, &aux_ptr[indx+1]),
1258 "struct");
1259 indx++; /* skip aux words */
1260 break;
1261
1262 /* Unions add 1-2 aux words:
1263 1st word is [ST_RFDESCAPE, offset] pointer to union def;
1264 2nd word is file index if 1st word rfd is ST_RFDESCAPE. */
1265
1266 case btUnion: /* Union */
1267 _bfd_ecoff_swap_rndx_in (bigendian, &aux_ptr[indx].a_rndx, &rndx);
1268 ecoff_emit_aggregate (abfd, fdr, p1, &rndx,
1269 (long) AUX_GET_ISYM (bigendian, &aux_ptr[indx+1]),
1270 "union");
1271 indx++; /* skip aux words */
1272 break;
1273
1274 /* Enumerations add 1-2 aux words:
1275 1st word is [ST_RFDESCAPE, offset] pointer to enum def;
1276 2nd word is file index if 1st word rfd is ST_RFDESCAPE. */
1277
1278 case btEnum: /* Enumeration */
1279 _bfd_ecoff_swap_rndx_in (bigendian, &aux_ptr[indx].a_rndx, &rndx);
1280 ecoff_emit_aggregate (abfd, fdr, p1, &rndx,
1281 (long) AUX_GET_ISYM (bigendian, &aux_ptr[indx+1]),
1282 "enum");
1283 indx++; /* skip aux words */
1284 break;
1285
1286 case btTypedef: /* defined via a typedef, isymRef points */
1287 strcpy (p1, "typedef");
1288 break;
1289
1290 case btRange: /* subrange of int */
1291 strcpy (p1, "subrange");
1292 break;
1293
1294 case btSet: /* pascal sets */
1295 strcpy (p1, "set");
1296 break;
1297
1298 case btComplex: /* fortran complex */
1299 strcpy (p1, "complex");
1300 break;
1301
1302 case btDComplex: /* fortran double complex */
1303 strcpy (p1, "double complex");
1304 break;
1305
1306 case btIndirect: /* forward or unnamed typedef */
1307 strcpy (p1, "forward/unamed typedef");
1308 break;
1309
1310 case btFixedDec: /* Fixed Decimal */
1311 strcpy (p1, "fixed decimal");
1312 break;
1313
1314 case btFloatDec: /* Float Decimal */
1315 strcpy (p1, "float decimal");
1316 break;
1317
1318 case btString: /* Varying Length Character String */
1319 strcpy (p1, "string");
1320 break;
1321
1322 case btBit: /* Aligned Bit String */
1323 strcpy (p1, "bit");
1324 break;
1325
1326 case btPicture: /* Picture */
1327 strcpy (p1, "picture");
1328 break;
1329
1330 case btVoid: /* Void */
1331 strcpy (p1, "void");
1332 break;
1333
1334 default:
1335 sprintf (p1, "Unknown basic type %d", (int) basic_type);
1336 break;
1337 }
1338
1339 p1 += strlen (buffer1);
1340
1341 /*
1342 * If this is a bitfield, get the bitsize.
1343 */
1344 if (u.ti.fBitfield)
1345 {
1346 int bitsize;
1347
1348 bitsize = AUX_GET_WIDTH (bigendian, &aux_ptr[indx++]);
1349 sprintf (p1, " : %d", bitsize);
1350 p1 += strlen (buffer1);
1351 }
1352
1353
1354 /*
1355 * Deal with any qualifiers.
1356 */
1357 if (qualifiers[0].type != tqNil)
1358 {
1359 /*
1360 * Snarf up any array bounds in the correct order. Arrays
1361 * store 5 successive words in the aux. table:
1362 * word 0 RNDXR to type of the bounds (ie, int)
1363 * word 1 Current file descriptor index
1364 * word 2 low bound
1365 * word 3 high bound (or -1 if [])
1366 * word 4 stride size in bits
1367 */
1368 for (i = 0; i < 7; i++)
1369 {
1370 if (qualifiers[i].type == tqArray)
1371 {
1372 qualifiers[i].low_bound =
1373 AUX_GET_DNLOW (bigendian, &aux_ptr[indx+2]);
1374 qualifiers[i].high_bound =
1375 AUX_GET_DNHIGH (bigendian, &aux_ptr[indx+3]);
1376 qualifiers[i].stride =
1377 AUX_GET_WIDTH (bigendian, &aux_ptr[indx+4]);
1378 indx += 5;
1379 }
1380 }
1381
1382 /*
1383 * Now print out the qualifiers.
1384 */
1385 for (i = 0; i < 6; i++)
1386 {
1387 switch (qualifiers[i].type)
1388 {
1389 case tqNil:
1390 case tqMax:
1391 break;
1392
1393 case tqPtr:
1394 strcpy (p2, "ptr to ");
1395 p2 += sizeof ("ptr to ")-1;
1396 break;
1397
1398 case tqVol:
1399 strcpy (p2, "volatile ");
1400 p2 += sizeof ("volatile ")-1;
1401 break;
1402
1403 case tqFar:
1404 strcpy (p2, "far ");
1405 p2 += sizeof ("far ")-1;
1406 break;
1407
1408 case tqProc:
1409 strcpy (p2, "func. ret. ");
1410 p2 += sizeof ("func. ret. ");
1411 break;
1412
1413 case tqArray:
1414 {
1415 int first_array = i;
1416 int j;
1417
1418 /* Print array bounds reversed (ie, in the order the C
1419 programmer writes them). C is such a fun language.... */
1420
1421 while (i < 5 && qualifiers[i+1].type == tqArray)
1422 i++;
1423
1424 for (j = i; j >= first_array; j--)
1425 {
1426 strcpy (p2, "array [");
1427 p2 += sizeof ("array [")-1;
1428 if (qualifiers[j].low_bound != 0)
1429 sprintf (p2,
1430 "%ld:%ld {%ld bits}",
1431 (long) qualifiers[j].low_bound,
1432 (long) qualifiers[j].high_bound,
1433 (long) qualifiers[j].stride);
1434
1435 else if (qualifiers[j].high_bound != -1)
1436 sprintf (p2,
1437 "%ld {%ld bits}",
1438 (long) (qualifiers[j].high_bound + 1),
1439 (long) (qualifiers[j].stride));
1440
1441 else
1442 sprintf (p2, " {%ld bits}", (long) (qualifiers[j].stride));
1443
1444 p2 += strlen (p2);
1445 strcpy (p2, "] of ");
1446 p2 += sizeof ("] of ")-1;
1447 }
1448 }
1449 break;
1450 }
1451 }
1452 }
1453
1454 strcpy (p2, buffer1);
1455 return buffer2;
1456 }
1457
1458 /* Return information about ECOFF symbol SYMBOL in RET. */
1459
1460 /*ARGSUSED*/
1461 void
1462 _bfd_ecoff_get_symbol_info (abfd, symbol, ret)
1463 bfd *abfd; /* Ignored. */
1464 asymbol *symbol;
1465 symbol_info *ret;
1466 {
1467 bfd_symbol_info (symbol, ret);
1468 }
1469
1470 /* Print information about an ECOFF symbol. */
1471
1472 void
1473 _bfd_ecoff_print_symbol (abfd, filep, symbol, how)
1474 bfd *abfd;
1475 PTR filep;
1476 asymbol *symbol;
1477 bfd_print_symbol_type how;
1478 {
1479 const struct ecoff_debug_swap * const debug_swap
1480 = &ecoff_backend (abfd)->debug_swap;
1481 FILE *file = (FILE *)filep;
1482
1483 switch (how)
1484 {
1485 case bfd_print_symbol_name:
1486 fprintf (file, "%s", symbol->name);
1487 break;
1488 case bfd_print_symbol_more:
1489 if (ecoffsymbol (symbol)->local)
1490 {
1491 SYMR ecoff_sym;
1492
1493 (*debug_swap->swap_sym_in) (abfd, ecoffsymbol (symbol)->native,
1494 &ecoff_sym);
1495 fprintf (file, "ecoff local ");
1496 fprintf_vma (file, (bfd_vma) ecoff_sym.value);
1497 fprintf (file, " %x %x", (unsigned) ecoff_sym.st,
1498 (unsigned) ecoff_sym.sc);
1499 }
1500 else
1501 {
1502 EXTR ecoff_ext;
1503
1504 (*debug_swap->swap_ext_in) (abfd, ecoffsymbol (symbol)->native,
1505 &ecoff_ext);
1506 fprintf (file, "ecoff extern ");
1507 fprintf_vma (file, (bfd_vma) ecoff_ext.asym.value);
1508 fprintf (file, " %x %x", (unsigned) ecoff_ext.asym.st,
1509 (unsigned) ecoff_ext.asym.sc);
1510 }
1511 break;
1512 case bfd_print_symbol_all:
1513 /* Print out the symbols in a reasonable way */
1514 {
1515 char type;
1516 int pos;
1517 EXTR ecoff_ext;
1518 char jmptbl;
1519 char cobol_main;
1520 char weakext;
1521
1522 if (ecoffsymbol (symbol)->local)
1523 {
1524 (*debug_swap->swap_sym_in) (abfd, ecoffsymbol (symbol)->native,
1525 &ecoff_ext.asym);
1526 type = 'l';
1527 pos = ((((char *) ecoffsymbol (symbol)->native
1528 - (char *) ecoff_data (abfd)->debug_info.external_sym)
1529 / debug_swap->external_sym_size)
1530 + ecoff_data (abfd)->debug_info.symbolic_header.iextMax);
1531 jmptbl = ' ';
1532 cobol_main = ' ';
1533 weakext = ' ';
1534 }
1535 else
1536 {
1537 (*debug_swap->swap_ext_in) (abfd, ecoffsymbol (symbol)->native,
1538 &ecoff_ext);
1539 type = 'e';
1540 pos = (((char *) ecoffsymbol (symbol)->native
1541 - (char *) ecoff_data (abfd)->debug_info.external_ext)
1542 / debug_swap->external_ext_size);
1543 jmptbl = ecoff_ext.jmptbl ? 'j' : ' ';
1544 cobol_main = ecoff_ext.cobol_main ? 'c' : ' ';
1545 weakext = ecoff_ext.weakext ? 'w' : ' ';
1546 }
1547
1548 fprintf (file, "[%3d] %c ",
1549 pos, type);
1550 fprintf_vma (file, (bfd_vma) ecoff_ext.asym.value);
1551 fprintf (file, " st %x sc %x indx %x %c%c%c %s",
1552 (unsigned) ecoff_ext.asym.st,
1553 (unsigned) ecoff_ext.asym.sc,
1554 (unsigned) ecoff_ext.asym.index,
1555 jmptbl, cobol_main, weakext,
1556 symbol->name);
1557
1558 if (ecoffsymbol (symbol)->fdr != NULL
1559 && ecoff_ext.asym.index != indexNil)
1560 {
1561 FDR *fdr;
1562 unsigned int indx;
1563 int bigendian;
1564 bfd_size_type sym_base;
1565 union aux_ext *aux_base;
1566
1567 fdr = ecoffsymbol (symbol)->fdr;
1568 indx = ecoff_ext.asym.index;
1569
1570 /* sym_base is used to map the fdr relative indices which
1571 appear in the file to the position number which we are
1572 using. */
1573 sym_base = fdr->isymBase;
1574 if (ecoffsymbol (symbol)->local)
1575 sym_base +=
1576 ecoff_data (abfd)->debug_info.symbolic_header.iextMax;
1577
1578 /* aux_base is the start of the aux entries for this file;
1579 asym.index is an offset from this. */
1580 aux_base = (ecoff_data (abfd)->debug_info.external_aux
1581 + fdr->iauxBase);
1582
1583 /* The aux entries are stored in host byte order; the
1584 order is indicated by a bit in the fdr. */
1585 bigendian = fdr->fBigendian;
1586
1587 /* This switch is basically from gcc/mips-tdump.c */
1588 switch (ecoff_ext.asym.st)
1589 {
1590 case stNil:
1591 case stLabel:
1592 break;
1593
1594 case stFile:
1595 case stBlock:
1596 fprintf (file, "\n End+1 symbol: %ld",
1597 (long) (indx + sym_base));
1598 break;
1599
1600 case stEnd:
1601 if (ecoff_ext.asym.sc == scText
1602 || ecoff_ext.asym.sc == scInfo)
1603 fprintf (file, "\n First symbol: %ld",
1604 (long) (indx + sym_base));
1605 else
1606 fprintf (file, "\n First symbol: %ld",
1607 ((long)
1608 (AUX_GET_ISYM (bigendian,
1609 &aux_base[ecoff_ext.asym.index])
1610 + sym_base)));
1611 break;
1612
1613 case stProc:
1614 case stStaticProc:
1615 if (ECOFF_IS_STAB (&ecoff_ext.asym))
1616 ;
1617 else if (ecoffsymbol (symbol)->local)
1618 fprintf (file, "\n End+1 symbol: %-7ld Type: %s",
1619 ((long)
1620 (AUX_GET_ISYM (bigendian,
1621 &aux_base[ecoff_ext.asym.index])
1622 + sym_base)),
1623 ecoff_type_to_string (abfd, fdr, indx + 1));
1624 else
1625 fprintf (file, "\n Local symbol: %ld",
1626 ((long) indx
1627 + (long) sym_base
1628 + (ecoff_data (abfd)
1629 ->debug_info.symbolic_header.iextMax)));
1630 break;
1631
1632 case stStruct:
1633 fprintf (file, "\n struct; End+1 symbol: %ld",
1634 (long) (indx + sym_base));
1635 break;
1636
1637 case stUnion:
1638 fprintf (file, "\n union; End+1 symbol: %ld",
1639 (long) (indx + sym_base));
1640 break;
1641
1642 case stEnum:
1643 fprintf (file, "\n enum; End+1 symbol: %ld",
1644 (long) (indx + sym_base));
1645 break;
1646
1647 default:
1648 if (! ECOFF_IS_STAB (&ecoff_ext.asym))
1649 fprintf (file, "\n Type: %s",
1650 ecoff_type_to_string (abfd, fdr, indx));
1651 break;
1652 }
1653 }
1654 }
1655 break;
1656 }
1657 }
1658 \f
1659 /* Read in the relocs for a section. */
1660
1661 static boolean
1662 ecoff_slurp_reloc_table (abfd, section, symbols)
1663 bfd *abfd;
1664 asection *section;
1665 asymbol **symbols;
1666 {
1667 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
1668 arelent *internal_relocs;
1669 bfd_size_type external_reloc_size;
1670 bfd_size_type external_relocs_size;
1671 char *external_relocs;
1672 arelent *rptr;
1673 unsigned int i;
1674
1675 if (section->relocation != (arelent *) NULL
1676 || section->reloc_count == 0
1677 || (section->flags & SEC_CONSTRUCTOR) != 0)
1678 return true;
1679
1680 if (_bfd_ecoff_slurp_symbol_table (abfd) == false)
1681 return false;
1682
1683 internal_relocs = (arelent *) bfd_alloc (abfd,
1684 (sizeof (arelent)
1685 * section->reloc_count));
1686 external_reloc_size = backend->external_reloc_size;
1687 external_relocs_size = external_reloc_size * section->reloc_count;
1688 external_relocs = (char *) bfd_alloc (abfd, external_relocs_size);
1689 if (internal_relocs == (arelent *) NULL
1690 || external_relocs == (char *) NULL)
1691 {
1692 bfd_set_error (bfd_error_no_memory);
1693 return false;
1694 }
1695 if (bfd_seek (abfd, section->rel_filepos, SEEK_SET) != 0)
1696 return false;
1697 if (bfd_read (external_relocs, 1, external_relocs_size, abfd)
1698 != external_relocs_size)
1699 return false;
1700
1701 for (i = 0, rptr = internal_relocs; i < section->reloc_count; i++, rptr++)
1702 {
1703 struct internal_reloc intern;
1704
1705 (*backend->swap_reloc_in) (abfd,
1706 external_relocs + i * external_reloc_size,
1707 &intern);
1708
1709 if (intern.r_extern)
1710 {
1711 /* r_symndx is an index into the external symbols. */
1712 BFD_ASSERT (intern.r_symndx >= 0
1713 && (intern.r_symndx
1714 < (ecoff_data (abfd)
1715 ->debug_info.symbolic_header.iextMax)));
1716 rptr->sym_ptr_ptr = symbols + intern.r_symndx;
1717 rptr->addend = 0;
1718 }
1719 else if (intern.r_symndx == RELOC_SECTION_NONE
1720 || intern.r_symndx == RELOC_SECTION_ABS)
1721 {
1722 rptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
1723 rptr->addend = 0;
1724 }
1725 else
1726 {
1727 CONST char *sec_name;
1728 asection *sec;
1729
1730 /* r_symndx is a section key. */
1731 switch (intern.r_symndx)
1732 {
1733 case RELOC_SECTION_TEXT: sec_name = ".text"; break;
1734 case RELOC_SECTION_RDATA: sec_name = ".rdata"; break;
1735 case RELOC_SECTION_DATA: sec_name = ".data"; break;
1736 case RELOC_SECTION_SDATA: sec_name = ".sdata"; break;
1737 case RELOC_SECTION_SBSS: sec_name = ".sbss"; break;
1738 case RELOC_SECTION_BSS: sec_name = ".bss"; break;
1739 case RELOC_SECTION_INIT: sec_name = ".init"; break;
1740 case RELOC_SECTION_LIT8: sec_name = ".lit8"; break;
1741 case RELOC_SECTION_LIT4: sec_name = ".lit4"; break;
1742 case RELOC_SECTION_XDATA: sec_name = ".xdata"; break;
1743 case RELOC_SECTION_PDATA: sec_name = ".pdata"; break;
1744 case RELOC_SECTION_FINI: sec_name = ".fini"; break;
1745 case RELOC_SECTION_LITA: sec_name = ".lita"; break;
1746 default: abort ();
1747 }
1748
1749 sec = bfd_get_section_by_name (abfd, sec_name);
1750 if (sec == (asection *) NULL)
1751 abort ();
1752 rptr->sym_ptr_ptr = sec->symbol_ptr_ptr;
1753
1754 rptr->addend = - bfd_get_section_vma (abfd, sec);
1755 }
1756
1757 rptr->address = intern.r_vaddr - bfd_get_section_vma (abfd, section);
1758
1759 /* Let the backend select the howto field and do any other
1760 required processing. */
1761 (*backend->adjust_reloc_in) (abfd, &intern, rptr);
1762 }
1763
1764 bfd_release (abfd, external_relocs);
1765
1766 section->relocation = internal_relocs;
1767
1768 return true;
1769 }
1770
1771 /* Get a canonical list of relocs. */
1772
1773 long
1774 _bfd_ecoff_canonicalize_reloc (abfd, section, relptr, symbols)
1775 bfd *abfd;
1776 asection *section;
1777 arelent **relptr;
1778 asymbol **symbols;
1779 {
1780 unsigned int count;
1781
1782 if (section->flags & SEC_CONSTRUCTOR)
1783 {
1784 arelent_chain *chain;
1785
1786 /* This section has relocs made up by us, not the file, so take
1787 them out of their chain and place them into the data area
1788 provided. */
1789 for (count = 0, chain = section->constructor_chain;
1790 count < section->reloc_count;
1791 count++, chain = chain->next)
1792 *relptr++ = &chain->relent;
1793 }
1794 else
1795 {
1796 arelent *tblptr;
1797
1798 if (ecoff_slurp_reloc_table (abfd, section, symbols) == false)
1799 return -1;
1800
1801 tblptr = section->relocation;
1802
1803 for (count = 0; count < section->reloc_count; count++)
1804 *relptr++ = tblptr++;
1805 }
1806
1807 *relptr = (arelent *) NULL;
1808
1809 return section->reloc_count;
1810 }
1811 \f
1812 /* Provided a BFD, a section and an offset into the section, calculate
1813 and return the name of the source file and the line nearest to the
1814 wanted location. */
1815
1816 /*ARGSUSED*/
1817 boolean
1818 _bfd_ecoff_find_nearest_line (abfd, section, ignore_symbols, offset,
1819 filename_ptr, functionname_ptr, retline_ptr)
1820 bfd *abfd;
1821 asection *section;
1822 asymbol **ignore_symbols;
1823 bfd_vma offset;
1824 CONST char **filename_ptr;
1825 CONST char **functionname_ptr;
1826 unsigned int *retline_ptr;
1827 {
1828 const struct ecoff_debug_swap * const debug_swap
1829 = &ecoff_backend (abfd)->debug_swap;
1830 struct ecoff_debug_info * const debug_info = &ecoff_data (abfd)->debug_info;
1831 struct ecoff_find_line *line_info;
1832
1833 /* If we're not in the .text section, we don't have any line
1834 numbers. */
1835 if (strcmp (section->name, _TEXT) != 0
1836 || offset < ecoff_data (abfd)->text_start
1837 || offset >= ecoff_data (abfd)->text_end)
1838 return false;
1839
1840 /* Make sure we have the FDR's. */
1841 if (! _bfd_ecoff_slurp_symbolic_info (abfd, (asection *) NULL, debug_info)
1842 || bfd_get_symcount (abfd) == 0)
1843 return false;
1844
1845 if (ecoff_data (abfd)->find_line_info == NULL)
1846 {
1847 ecoff_data (abfd)->find_line_info =
1848 ((struct ecoff_find_line *)
1849 bfd_alloc (abfd, sizeof (struct ecoff_find_line)));
1850 if (ecoff_data (abfd)->find_line_info == NULL)
1851 {
1852 bfd_set_error (bfd_error_no_memory);
1853 return false;
1854 }
1855 }
1856 line_info = ecoff_data (abfd)->find_line_info;
1857
1858 return _bfd_ecoff_locate_line (abfd, section, offset, debug_info,
1859 debug_swap, line_info, filename_ptr,
1860 functionname_ptr, retline_ptr);
1861 }
1862 \f
1863 /* Copy private BFD data. This is called by objcopy and strip. We
1864 use it to copy the ECOFF debugging information from one BFD to the
1865 other. It would be theoretically possible to represent the ECOFF
1866 debugging information in the symbol table. However, it would be a
1867 lot of work, and there would be little gain (gas, gdb, and ld
1868 already access the ECOFF debugging information via the
1869 ecoff_debug_info structure, and that structure would have to be
1870 retained in order to support ECOFF debugging in MIPS ELF).
1871
1872 The debugging information for the ECOFF external symbols comes from
1873 the symbol table, so this function only handles the other debugging
1874 information. */
1875
1876 boolean
1877 _bfd_ecoff_bfd_copy_private_bfd_data (ibfd, obfd)
1878 bfd *ibfd;
1879 bfd *obfd;
1880 {
1881 struct ecoff_debug_info *iinfo = &ecoff_data (ibfd)->debug_info;
1882 struct ecoff_debug_info *oinfo = &ecoff_data (obfd)->debug_info;
1883 register int i;
1884 asymbol **sym_ptr_ptr;
1885 size_t c;
1886 boolean local;
1887
1888 /* This function is selected based on the input vector. We only
1889 want to copy information over if the output BFD also uses ECOFF
1890 format. */
1891 if (bfd_get_flavour (obfd) != bfd_target_ecoff_flavour)
1892 return true;
1893
1894 /* Copy the GP value and the register masks. */
1895 ecoff_data (obfd)->gp = ecoff_data (ibfd)->gp;
1896 ecoff_data (obfd)->gprmask = ecoff_data (ibfd)->gprmask;
1897 ecoff_data (obfd)->fprmask = ecoff_data (ibfd)->fprmask;
1898 for (i = 0; i < 3; i++)
1899 ecoff_data (obfd)->cprmask[i] = ecoff_data (ibfd)->cprmask[i];
1900
1901 /* Copy the version stamp. */
1902 oinfo->symbolic_header.vstamp = iinfo->symbolic_header.vstamp;
1903
1904 /* If there are no symbols, don't copy any debugging information. */
1905 c = bfd_get_symcount (obfd);
1906 sym_ptr_ptr = bfd_get_outsymbols (obfd);
1907 if (c == 0 || sym_ptr_ptr == (asymbol **) NULL)
1908 return true;
1909
1910 /* See if there are any local symbols. */
1911 local = false;
1912 for (; c > 0; c--, sym_ptr_ptr++)
1913 {
1914 if (ecoffsymbol (*sym_ptr_ptr)->local)
1915 {
1916 local = true;
1917 break;
1918 }
1919 }
1920
1921 if (local)
1922 {
1923 /* There are some local symbols. We just bring over all the
1924 debugging information. FIXME: This is not quite the right
1925 thing to do. If the user has asked us to discard all
1926 debugging information, then we are probably going to wind up
1927 keeping it because there will probably be some local symbol
1928 which objcopy did not discard. We should actually break
1929 apart the debugging information and only keep that which
1930 applies to the symbols we want to keep. */
1931 oinfo->symbolic_header.ilineMax = iinfo->symbolic_header.ilineMax;
1932 oinfo->symbolic_header.cbLine = iinfo->symbolic_header.cbLine;
1933 oinfo->line = iinfo->line;
1934
1935 oinfo->symbolic_header.idnMax = iinfo->symbolic_header.idnMax;
1936 oinfo->external_dnr = iinfo->external_dnr;
1937
1938 oinfo->symbolic_header.ipdMax = iinfo->symbolic_header.ipdMax;
1939 oinfo->external_pdr = iinfo->external_pdr;
1940
1941 oinfo->symbolic_header.isymMax = iinfo->symbolic_header.isymMax;
1942 oinfo->external_sym = iinfo->external_sym;
1943
1944 oinfo->symbolic_header.ioptMax = iinfo->symbolic_header.ioptMax;
1945 oinfo->external_opt = iinfo->external_opt;
1946
1947 oinfo->symbolic_header.iauxMax = iinfo->symbolic_header.iauxMax;
1948 oinfo->external_aux = iinfo->external_aux;
1949
1950 oinfo->symbolic_header.issMax = iinfo->symbolic_header.issMax;
1951 oinfo->ss = iinfo->ss;
1952
1953 oinfo->symbolic_header.ifdMax = iinfo->symbolic_header.ifdMax;
1954 oinfo->external_fdr = iinfo->external_fdr;
1955
1956 oinfo->symbolic_header.crfd = iinfo->symbolic_header.crfd;
1957 oinfo->external_rfd = iinfo->external_rfd;
1958 }
1959 else
1960 {
1961 /* We are discarding all the local symbol information. Look
1962 through the external symbols and remove all references to FDR
1963 or aux information. */
1964 c = bfd_get_symcount (obfd);
1965 sym_ptr_ptr = bfd_get_outsymbols (obfd);
1966 for (; c > 0; c--, sym_ptr_ptr++)
1967 {
1968 EXTR esym;
1969
1970 (*(ecoff_backend (obfd)->debug_swap.swap_ext_in))
1971 (obfd, ecoffsymbol (*sym_ptr_ptr)->native, &esym);
1972 esym.ifd = ifdNil;
1973 esym.asym.index = indexNil;
1974 (*(ecoff_backend (obfd)->debug_swap.swap_ext_out))
1975 (obfd, &esym, ecoffsymbol (*sym_ptr_ptr)->native);
1976 }
1977 }
1978
1979 return true;
1980 }
1981 \f
1982 /* Set the architecture. The supported architecture is stored in the
1983 backend pointer. We always set the architecture anyhow, since many
1984 callers ignore the return value. */
1985
1986 boolean
1987 _bfd_ecoff_set_arch_mach (abfd, arch, machine)
1988 bfd *abfd;
1989 enum bfd_architecture arch;
1990 unsigned long machine;
1991 {
1992 bfd_default_set_arch_mach (abfd, arch, machine);
1993 return arch == ecoff_backend (abfd)->arch;
1994 }
1995
1996 /* Get the size of the section headers. */
1997
1998 /*ARGSUSED*/
1999 int
2000 _bfd_ecoff_sizeof_headers (abfd, reloc)
2001 bfd *abfd;
2002 boolean reloc;
2003 {
2004 asection *current;
2005 int c;
2006 int ret;
2007
2008 c = 0;
2009 for (current = abfd->sections;
2010 current != (asection *)NULL;
2011 current = current->next)
2012 ++c;
2013
2014 ret = (bfd_coff_filhsz (abfd)
2015 + bfd_coff_aoutsz (abfd)
2016 + c * bfd_coff_scnhsz (abfd));
2017 return BFD_ALIGN (ret, 16);
2018 }
2019
2020 /* Get the contents of a section. */
2021
2022 boolean
2023 _bfd_ecoff_get_section_contents (abfd, section, location, offset, count)
2024 bfd *abfd;
2025 asection *section;
2026 PTR location;
2027 file_ptr offset;
2028 bfd_size_type count;
2029 {
2030 return _bfd_generic_get_section_contents (abfd, section, location,
2031 offset, count);
2032 }
2033
2034 /* Calculate the file position for each section, and set
2035 reloc_filepos. */
2036
2037 static void
2038 ecoff_compute_section_file_positions (abfd)
2039 bfd *abfd;
2040 {
2041 asection *current;
2042 file_ptr sofar;
2043 file_ptr old_sofar;
2044 boolean first_data;
2045
2046 sofar = _bfd_ecoff_sizeof_headers (abfd, false);
2047
2048 first_data = true;
2049 for (current = abfd->sections;
2050 current != (asection *) NULL;
2051 current = current->next)
2052 {
2053 unsigned int alignment_power;
2054
2055 /* Only deal with sections which have contents */
2056 if ((current->flags & (SEC_HAS_CONTENTS | SEC_LOAD)) == 0)
2057 continue;
2058
2059 /* For the Alpha ECOFF .pdata section the lnnoptr field is
2060 supposed to indicate the number of .pdata entries that are
2061 really in the section. Each entry is 8 bytes. We store this
2062 away in line_filepos before increasing the section size. */
2063 if (strcmp (current->name, _PDATA) != 0)
2064 alignment_power = current->alignment_power;
2065 else
2066 {
2067 current->line_filepos = current->_raw_size / 8;
2068 alignment_power = 4;
2069 }
2070
2071 /* On Ultrix, the data sections in an executable file must be
2072 aligned to a page boundary within the file. This does not
2073 affect the section size, though. FIXME: Does this work for
2074 other platforms? It requires some modification for the
2075 Alpha, because .rdata on the Alpha goes with the text, not
2076 the data. */
2077 if ((abfd->flags & EXEC_P) != 0
2078 && (abfd->flags & D_PAGED) != 0
2079 && first_data != false
2080 && (current->flags & SEC_CODE) == 0
2081 && (! ecoff_backend (abfd)->rdata_in_text
2082 || strcmp (current->name, _RDATA) != 0)
2083 && strcmp (current->name, _PDATA) != 0)
2084 {
2085 const bfd_vma round = ecoff_backend (abfd)->round;
2086
2087 sofar = (sofar + round - 1) &~ (round - 1);
2088 first_data = false;
2089 }
2090 else if (strcmp (current->name, _LIB) == 0)
2091 {
2092 const bfd_vma round = ecoff_backend (abfd)->round;
2093 /* On Irix 4, the location of contents of the .lib section
2094 from a shared library section is also rounded up to a
2095 page boundary. */
2096
2097 sofar = (sofar + round - 1) &~ (round - 1);
2098 }
2099
2100 /* Align the sections in the file to the same boundary on
2101 which they are aligned in virtual memory. */
2102 old_sofar = sofar;
2103 sofar = BFD_ALIGN (sofar, 1 << alignment_power);
2104
2105 current->filepos = sofar;
2106
2107 sofar += current->_raw_size;
2108
2109 /* make sure that this section is of the right size too */
2110 old_sofar = sofar;
2111 sofar = BFD_ALIGN (sofar, 1 << alignment_power);
2112 current->_raw_size += sofar - old_sofar;
2113 }
2114
2115 ecoff_data (abfd)->reloc_filepos = sofar;
2116 }
2117
2118 /* Determine the location of the relocs for all the sections in the
2119 output file, as well as the location of the symbolic debugging
2120 information. */
2121
2122 static bfd_size_type
2123 ecoff_compute_reloc_file_positions (abfd)
2124 bfd *abfd;
2125 {
2126 const bfd_size_type external_reloc_size =
2127 ecoff_backend (abfd)->external_reloc_size;
2128 file_ptr reloc_base;
2129 bfd_size_type reloc_size;
2130 asection *current;
2131 file_ptr sym_base;
2132
2133 if (! abfd->output_has_begun)
2134 {
2135 ecoff_compute_section_file_positions (abfd);
2136 abfd->output_has_begun = true;
2137 }
2138
2139 reloc_base = ecoff_data (abfd)->reloc_filepos;
2140
2141 reloc_size = 0;
2142 for (current = abfd->sections;
2143 current != (asection *)NULL;
2144 current = current->next)
2145 {
2146 if (current->reloc_count == 0)
2147 current->rel_filepos = 0;
2148 else
2149 {
2150 bfd_size_type relsize;
2151
2152 current->rel_filepos = reloc_base;
2153 relsize = current->reloc_count * external_reloc_size;
2154 reloc_size += relsize;
2155 reloc_base += relsize;
2156 }
2157 }
2158
2159 sym_base = ecoff_data (abfd)->reloc_filepos + reloc_size;
2160
2161 /* At least on Ultrix, the symbol table of an executable file must
2162 be aligned to a page boundary. FIXME: Is this true on other
2163 platforms? */
2164 if ((abfd->flags & EXEC_P) != 0
2165 && (abfd->flags & D_PAGED) != 0)
2166 sym_base = ((sym_base + ecoff_backend (abfd)->round - 1)
2167 &~ (ecoff_backend (abfd)->round - 1));
2168
2169 ecoff_data (abfd)->sym_filepos = sym_base;
2170
2171 return reloc_size;
2172 }
2173
2174 /* Set the contents of a section. */
2175
2176 boolean
2177 _bfd_ecoff_set_section_contents (abfd, section, location, offset, count)
2178 bfd *abfd;
2179 asection *section;
2180 PTR location;
2181 file_ptr offset;
2182 bfd_size_type count;
2183 {
2184 /* This must be done first, because bfd_set_section_contents is
2185 going to set output_has_begun to true. */
2186 if (abfd->output_has_begun == false)
2187 ecoff_compute_section_file_positions (abfd);
2188
2189 /* If this is a .lib section, bump the vma address so that it winds
2190 up being the number of .lib sections output. This is right for
2191 Irix 4. Ian Taylor <ian@cygnus.com>. */
2192 if (strcmp (section->name, _LIB) == 0)
2193 ++section->vma;
2194
2195 if (count == 0)
2196 return true;
2197
2198 if (bfd_seek (abfd, (file_ptr) (section->filepos + offset), SEEK_SET) != 0
2199 || bfd_write (location, 1, count, abfd) != count)
2200 return false;
2201
2202 return true;
2203 }
2204
2205 /* Get the GP value for an ECOFF file. This is a hook used by
2206 nlmconv. */
2207
2208 bfd_vma
2209 bfd_ecoff_get_gp_value (abfd)
2210 bfd *abfd;
2211 {
2212 if (bfd_get_flavour (abfd) != bfd_target_ecoff_flavour
2213 || bfd_get_format (abfd) != bfd_object)
2214 {
2215 bfd_set_error (bfd_error_invalid_operation);
2216 return 0;
2217 }
2218
2219 return ecoff_data (abfd)->gp;
2220 }
2221
2222 /* Set the GP value for an ECOFF file. This is a hook used by the
2223 assembler. */
2224
2225 boolean
2226 bfd_ecoff_set_gp_value (abfd, gp_value)
2227 bfd *abfd;
2228 bfd_vma gp_value;
2229 {
2230 if (bfd_get_flavour (abfd) != bfd_target_ecoff_flavour
2231 || bfd_get_format (abfd) != bfd_object)
2232 {
2233 bfd_set_error (bfd_error_invalid_operation);
2234 return false;
2235 }
2236
2237 ecoff_data (abfd)->gp = gp_value;
2238
2239 return true;
2240 }
2241
2242 /* Set the register masks for an ECOFF file. This is a hook used by
2243 the assembler. */
2244
2245 boolean
2246 bfd_ecoff_set_regmasks (abfd, gprmask, fprmask, cprmask)
2247 bfd *abfd;
2248 unsigned long gprmask;
2249 unsigned long fprmask;
2250 unsigned long *cprmask;
2251 {
2252 ecoff_data_type *tdata;
2253
2254 if (bfd_get_flavour (abfd) != bfd_target_ecoff_flavour
2255 || bfd_get_format (abfd) != bfd_object)
2256 {
2257 bfd_set_error (bfd_error_invalid_operation);
2258 return false;
2259 }
2260
2261 tdata = ecoff_data (abfd);
2262 tdata->gprmask = gprmask;
2263 tdata->fprmask = fprmask;
2264 if (cprmask != (unsigned long *) NULL)
2265 {
2266 register int i;
2267
2268 for (i = 0; i < 3; i++)
2269 tdata->cprmask[i] = cprmask[i];
2270 }
2271
2272 return true;
2273 }
2274
2275 /* Get ECOFF EXTR information for an external symbol. This function
2276 is passed to bfd_ecoff_debug_externals. */
2277
2278 static boolean
2279 ecoff_get_extr (sym, esym)
2280 asymbol *sym;
2281 EXTR *esym;
2282 {
2283 ecoff_symbol_type *ecoff_sym_ptr;
2284 bfd *input_bfd;
2285
2286 if (bfd_asymbol_flavour (sym) != bfd_target_ecoff_flavour
2287 || ecoffsymbol (sym)->native == NULL)
2288 {
2289 /* Don't include debugging, local, or section symbols. */
2290 if ((sym->flags & BSF_DEBUGGING) != 0
2291 || (sym->flags & BSF_LOCAL) != 0
2292 || (sym->flags & BSF_SECTION_SYM) != 0)
2293 return false;
2294
2295 esym->jmptbl = 0;
2296 esym->cobol_main = 0;
2297 esym->weakext = 0;
2298 esym->reserved = 0;
2299 esym->ifd = ifdNil;
2300 /* FIXME: we can do better than this for st and sc. */
2301 esym->asym.st = stGlobal;
2302 esym->asym.sc = scAbs;
2303 esym->asym.reserved = 0;
2304 esym->asym.index = indexNil;
2305 return true;
2306 }
2307
2308 ecoff_sym_ptr = ecoffsymbol (sym);
2309
2310 if (ecoff_sym_ptr->local)
2311 return false;
2312
2313 input_bfd = bfd_asymbol_bfd (sym);
2314 (*(ecoff_backend (input_bfd)->debug_swap.swap_ext_in))
2315 (input_bfd, ecoff_sym_ptr->native, esym);
2316
2317 /* If the symbol was defined by the linker, then esym will be
2318 undefined but sym will not be. Get a better class for such a
2319 symbol. */
2320 if ((esym->asym.sc == scUndefined
2321 || esym->asym.sc == scSUndefined)
2322 && ! bfd_is_und_section (bfd_get_section (sym)))
2323 esym->asym.sc = scAbs;
2324
2325 /* Adjust the FDR index for the symbol by that used for the input
2326 BFD. */
2327 if (esym->ifd != -1)
2328 {
2329 struct ecoff_debug_info *input_debug;
2330
2331 input_debug = &ecoff_data (input_bfd)->debug_info;
2332 BFD_ASSERT (esym->ifd < input_debug->symbolic_header.ifdMax);
2333 if (input_debug->ifdmap != (RFDT *) NULL)
2334 esym->ifd = input_debug->ifdmap[esym->ifd];
2335 }
2336
2337 return true;
2338 }
2339
2340 /* Set the external symbol index. This routine is passed to
2341 bfd_ecoff_debug_externals. */
2342
2343 static void
2344 ecoff_set_index (sym, indx)
2345 asymbol *sym;
2346 bfd_size_type indx;
2347 {
2348 ecoff_set_sym_index (sym, indx);
2349 }
2350
2351 /* Write out an ECOFF file. */
2352
2353 boolean
2354 _bfd_ecoff_write_object_contents (abfd)
2355 bfd *abfd;
2356 {
2357 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
2358 const bfd_vma round = backend->round;
2359 const bfd_size_type filhsz = bfd_coff_filhsz (abfd);
2360 const bfd_size_type aoutsz = bfd_coff_aoutsz (abfd);
2361 const bfd_size_type scnhsz = bfd_coff_scnhsz (abfd);
2362 const bfd_size_type external_hdr_size
2363 = backend->debug_swap.external_hdr_size;
2364 const bfd_size_type external_reloc_size = backend->external_reloc_size;
2365 void (* const adjust_reloc_out) PARAMS ((bfd *,
2366 const arelent *,
2367 struct internal_reloc *))
2368 = backend->adjust_reloc_out;
2369 void (* const swap_reloc_out) PARAMS ((bfd *,
2370 const struct internal_reloc *,
2371 PTR))
2372 = backend->swap_reloc_out;
2373 struct ecoff_debug_info * const debug = &ecoff_data (abfd)->debug_info;
2374 HDRR * const symhdr = &debug->symbolic_header;
2375 asection *current;
2376 unsigned int count;
2377 bfd_size_type reloc_size;
2378 bfd_size_type text_size;
2379 bfd_vma text_start;
2380 boolean set_text_start;
2381 bfd_size_type data_size;
2382 bfd_vma data_start;
2383 boolean set_data_start;
2384 bfd_size_type bss_size;
2385 PTR buff = NULL;
2386 PTR reloc_buff = NULL;
2387 struct internal_filehdr internal_f;
2388 struct internal_aouthdr internal_a;
2389 int i;
2390
2391 /* Determine where the sections and relocs will go in the output
2392 file. */
2393 reloc_size = ecoff_compute_reloc_file_positions (abfd);
2394
2395 count = 1;
2396 for (current = abfd->sections;
2397 current != (asection *)NULL;
2398 current = current->next)
2399 {
2400 current->target_index = count;
2401 ++count;
2402 }
2403
2404 if ((abfd->flags & D_PAGED) != 0)
2405 text_size = _bfd_ecoff_sizeof_headers (abfd, false);
2406 else
2407 text_size = 0;
2408 text_start = 0;
2409 set_text_start = false;
2410 data_size = 0;
2411 data_start = 0;
2412 set_data_start = false;
2413 bss_size = 0;
2414
2415 /* Write section headers to the file. */
2416
2417 /* Allocate buff big enough to hold a section header,
2418 file header, or a.out header. */
2419 {
2420 bfd_size_type siz;
2421 siz = scnhsz;
2422 if (siz < filhsz)
2423 siz = filhsz;
2424 if (siz < aoutsz)
2425 siz = aoutsz;
2426 buff = (PTR) malloc (siz);
2427 if (buff == NULL)
2428 {
2429 bfd_set_error (bfd_error_no_memory);
2430 goto error_return;
2431 }
2432 }
2433
2434 internal_f.f_nscns = 0;
2435 if (bfd_seek (abfd, (file_ptr) (filhsz + aoutsz), SEEK_SET) != 0)
2436 goto error_return;
2437 for (current = abfd->sections;
2438 current != (asection *) NULL;
2439 current = current->next)
2440 {
2441 struct internal_scnhdr section;
2442 bfd_vma vma;
2443
2444 ++internal_f.f_nscns;
2445
2446 strncpy (section.s_name, current->name, sizeof section.s_name);
2447
2448 /* This seems to be correct for Irix 4 shared libraries. */
2449 vma = bfd_get_section_vma (abfd, current);
2450 if (strcmp (current->name, _LIB) == 0)
2451 section.s_vaddr = 0;
2452 else
2453 section.s_vaddr = vma;
2454
2455 section.s_paddr = vma;
2456 section.s_size = bfd_get_section_size_before_reloc (current);
2457
2458 /* If this section is unloadable then the scnptr will be 0. */
2459 if ((current->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
2460 section.s_scnptr = 0;
2461 else
2462 section.s_scnptr = current->filepos;
2463 section.s_relptr = current->rel_filepos;
2464
2465 /* FIXME: the lnnoptr of the .sbss or .sdata section of an
2466 object file produced by the assembler is supposed to point to
2467 information about how much room is required by objects of
2468 various different sizes. I think this only matters if we
2469 want the linker to compute the best size to use, or
2470 something. I don't know what happens if the information is
2471 not present. */
2472 if (strcmp (current->name, _PDATA) != 0)
2473 section.s_lnnoptr = 0;
2474 else
2475 {
2476 /* The Alpha ECOFF .pdata section uses the lnnoptr field to
2477 hold the number of entries in the section (each entry is
2478 8 bytes). We stored this in the line_filepos field in
2479 ecoff_compute_section_file_positions. */
2480 section.s_lnnoptr = current->line_filepos;
2481 }
2482
2483 section.s_nreloc = current->reloc_count;
2484 section.s_nlnno = 0;
2485 section.s_flags = ecoff_sec_to_styp_flags (current->name,
2486 current->flags);
2487
2488 if (bfd_coff_swap_scnhdr_out (abfd, (PTR) &section, buff) == 0
2489 || bfd_write (buff, 1, scnhsz, abfd) != scnhsz)
2490 goto error_return;
2491
2492 if ((section.s_flags & STYP_TEXT) != 0
2493 || ((section.s_flags & STYP_RDATA) != 0
2494 && backend->rdata_in_text)
2495 || strcmp (current->name, _PDATA) == 0)
2496 {
2497 text_size += bfd_get_section_size_before_reloc (current);
2498 if (! set_text_start || text_start > vma)
2499 {
2500 text_start = vma;
2501 set_text_start = true;
2502 }
2503 }
2504 else if ((section.s_flags & STYP_RDATA) != 0
2505 || (section.s_flags & STYP_DATA) != 0
2506 || (section.s_flags & STYP_LITA) != 0
2507 || (section.s_flags & STYP_LIT8) != 0
2508 || (section.s_flags & STYP_LIT4) != 0
2509 || (section.s_flags & STYP_SDATA) != 0
2510 || strcmp (current->name, _XDATA) == 0)
2511 {
2512 data_size += bfd_get_section_size_before_reloc (current);
2513 if (! set_data_start || data_start > vma)
2514 {
2515 data_start = vma;
2516 set_data_start = true;
2517 }
2518 }
2519 else if ((section.s_flags & STYP_BSS) != 0
2520 || (section.s_flags & STYP_SBSS) != 0)
2521 bss_size += bfd_get_section_size_before_reloc (current);
2522 else if ((section.s_flags & STYP_ECOFF_LIB) != 0)
2523 /* Do nothing */ ;
2524 else
2525 abort ();
2526 }
2527
2528 /* Set up the file header. */
2529
2530 internal_f.f_magic = ecoff_get_magic (abfd);
2531
2532 /* We will NOT put a fucking timestamp in the header here. Every
2533 time you put it back, I will come in and take it out again. I'm
2534 sorry. This field does not belong here. We fill it with a 0 so
2535 it compares the same but is not a reasonable time. --
2536 gnu@cygnus.com. */
2537 internal_f.f_timdat = 0;
2538
2539 if (bfd_get_symcount (abfd) != 0)
2540 {
2541 /* The ECOFF f_nsyms field is not actually the number of
2542 symbols, it's the size of symbolic information header. */
2543 internal_f.f_nsyms = external_hdr_size;
2544 internal_f.f_symptr = ecoff_data (abfd)->sym_filepos;
2545 }
2546 else
2547 {
2548 internal_f.f_nsyms = 0;
2549 internal_f.f_symptr = 0;
2550 }
2551
2552 internal_f.f_opthdr = aoutsz;
2553
2554 internal_f.f_flags = F_LNNO;
2555 if (reloc_size == 0)
2556 internal_f.f_flags |= F_RELFLG;
2557 if (bfd_get_symcount (abfd) == 0)
2558 internal_f.f_flags |= F_LSYMS;
2559 if (abfd->flags & EXEC_P)
2560 internal_f.f_flags |= F_EXEC;
2561
2562 if (! abfd->xvec->byteorder_big_p)
2563 internal_f.f_flags |= F_AR32WR;
2564 else
2565 internal_f.f_flags |= F_AR32W;
2566
2567 /* Set up the ``optional'' header. */
2568 if ((abfd->flags & D_PAGED) != 0)
2569 internal_a.magic = ECOFF_AOUT_ZMAGIC;
2570 else
2571 internal_a.magic = ECOFF_AOUT_OMAGIC;
2572
2573 /* FIXME: Is this really correct? */
2574 internal_a.vstamp = symhdr->vstamp;
2575
2576 /* At least on Ultrix, these have to be rounded to page boundaries.
2577 FIXME: Is this true on other platforms? */
2578 if ((abfd->flags & D_PAGED) != 0)
2579 {
2580 internal_a.tsize = (text_size + round - 1) &~ (round - 1);
2581 internal_a.text_start = text_start &~ (round - 1);
2582 internal_a.dsize = (data_size + round - 1) &~ (round - 1);
2583 internal_a.data_start = data_start &~ (round - 1);
2584 }
2585 else
2586 {
2587 internal_a.tsize = text_size;
2588 internal_a.text_start = text_start;
2589 internal_a.dsize = data_size;
2590 internal_a.data_start = data_start;
2591 }
2592
2593 /* On Ultrix, the initial portions of the .sbss and .bss segments
2594 are at the end of the data section. The bsize field in the
2595 optional header records how many bss bytes are required beyond
2596 those in the data section. The value is not rounded to a page
2597 boundary. */
2598 if (bss_size < internal_a.dsize - data_size)
2599 bss_size = 0;
2600 else
2601 bss_size -= internal_a.dsize - data_size;
2602 internal_a.bsize = bss_size;
2603 internal_a.bss_start = internal_a.data_start + internal_a.dsize;
2604
2605 internal_a.entry = bfd_get_start_address (abfd);
2606
2607 internal_a.gp_value = ecoff_data (abfd)->gp;
2608
2609 internal_a.gprmask = ecoff_data (abfd)->gprmask;
2610 internal_a.fprmask = ecoff_data (abfd)->fprmask;
2611 for (i = 0; i < 4; i++)
2612 internal_a.cprmask[i] = ecoff_data (abfd)->cprmask[i];
2613
2614 /* Write out the file header and the optional header. */
2615
2616 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
2617 goto error_return;
2618
2619 bfd_coff_swap_filehdr_out (abfd, (PTR) &internal_f, buff);
2620 if (bfd_write (buff, 1, filhsz, abfd) != filhsz)
2621 goto error_return;
2622
2623 bfd_coff_swap_aouthdr_out (abfd, (PTR) &internal_a, buff);
2624 if (bfd_write (buff, 1, aoutsz, abfd) != aoutsz)
2625 goto error_return;
2626
2627 /* Build the external symbol information. This must be done before
2628 writing out the relocs so that we know the symbol indices. We
2629 don't do this if this BFD was created by the backend linker,
2630 since it will have already handled the symbols and relocs. */
2631 if (! ecoff_data (abfd)->linker)
2632 {
2633 symhdr->iextMax = 0;
2634 symhdr->issExtMax = 0;
2635 debug->external_ext = debug->external_ext_end = NULL;
2636 debug->ssext = debug->ssext_end = NULL;
2637 if (bfd_ecoff_debug_externals (abfd, debug, &backend->debug_swap,
2638 (((abfd->flags & EXEC_P) == 0)
2639 ? true : false),
2640 ecoff_get_extr, ecoff_set_index)
2641 == false)
2642 goto error_return;
2643
2644 /* Write out the relocs. */
2645 for (current = abfd->sections;
2646 current != (asection *) NULL;
2647 current = current->next)
2648 {
2649 arelent **reloc_ptr_ptr;
2650 arelent **reloc_end;
2651 char *out_ptr;
2652
2653 if (current->reloc_count == 0)
2654 continue;
2655
2656 reloc_buff =
2657 bfd_alloc (abfd, current->reloc_count * external_reloc_size);
2658 if (reloc_buff == NULL)
2659 {
2660 bfd_set_error (bfd_error_no_memory);
2661 goto error_return;
2662 }
2663
2664 reloc_ptr_ptr = current->orelocation;
2665 reloc_end = reloc_ptr_ptr + current->reloc_count;
2666 out_ptr = (char *) reloc_buff;
2667 for (;
2668 reloc_ptr_ptr < reloc_end;
2669 reloc_ptr_ptr++, out_ptr += external_reloc_size)
2670 {
2671 arelent *reloc;
2672 asymbol *sym;
2673 struct internal_reloc in;
2674
2675 memset ((PTR) &in, 0, sizeof in);
2676
2677 reloc = *reloc_ptr_ptr;
2678 sym = *reloc->sym_ptr_ptr;
2679
2680 in.r_vaddr = (reloc->address
2681 + bfd_get_section_vma (abfd, current));
2682 in.r_type = reloc->howto->type;
2683
2684 if ((sym->flags & BSF_SECTION_SYM) == 0)
2685 {
2686 in.r_symndx = ecoff_get_sym_index (*reloc->sym_ptr_ptr);
2687 in.r_extern = 1;
2688 }
2689 else
2690 {
2691 CONST char *name;
2692
2693 name = bfd_get_section_name (abfd, bfd_get_section (sym));
2694 if (strcmp (name, ".text") == 0)
2695 in.r_symndx = RELOC_SECTION_TEXT;
2696 else if (strcmp (name, ".rdata") == 0)
2697 in.r_symndx = RELOC_SECTION_RDATA;
2698 else if (strcmp (name, ".data") == 0)
2699 in.r_symndx = RELOC_SECTION_DATA;
2700 else if (strcmp (name, ".sdata") == 0)
2701 in.r_symndx = RELOC_SECTION_SDATA;
2702 else if (strcmp (name, ".sbss") == 0)
2703 in.r_symndx = RELOC_SECTION_SBSS;
2704 else if (strcmp (name, ".bss") == 0)
2705 in.r_symndx = RELOC_SECTION_BSS;
2706 else if (strcmp (name, ".init") == 0)
2707 in.r_symndx = RELOC_SECTION_INIT;
2708 else if (strcmp (name, ".lit8") == 0)
2709 in.r_symndx = RELOC_SECTION_LIT8;
2710 else if (strcmp (name, ".lit4") == 0)
2711 in.r_symndx = RELOC_SECTION_LIT4;
2712 else if (strcmp (name, ".xdata") == 0)
2713 in.r_symndx = RELOC_SECTION_XDATA;
2714 else if (strcmp (name, ".pdata") == 0)
2715 in.r_symndx = RELOC_SECTION_PDATA;
2716 else if (strcmp (name, ".fini") == 0)
2717 in.r_symndx = RELOC_SECTION_FINI;
2718 else if (strcmp (name, ".lita") == 0)
2719 in.r_symndx = RELOC_SECTION_LITA;
2720 else if (strcmp (name, "*ABS*") == 0)
2721 in.r_symndx = RELOC_SECTION_ABS;
2722 else
2723 abort ();
2724 in.r_extern = 0;
2725 }
2726
2727 (*adjust_reloc_out) (abfd, reloc, &in);
2728
2729 (*swap_reloc_out) (abfd, &in, (PTR) out_ptr);
2730 }
2731
2732 if (bfd_seek (abfd, current->rel_filepos, SEEK_SET) != 0)
2733 goto error_return;
2734 if (bfd_write (reloc_buff,
2735 external_reloc_size, current->reloc_count, abfd)
2736 != external_reloc_size * current->reloc_count)
2737 goto error_return;
2738 bfd_release (abfd, reloc_buff);
2739 reloc_buff = NULL;
2740 }
2741
2742 /* Write out the symbolic debugging information. */
2743 if (bfd_get_symcount (abfd) > 0)
2744 {
2745 /* Write out the debugging information. */
2746 if (bfd_ecoff_write_debug (abfd, debug, &backend->debug_swap,
2747 ecoff_data (abfd)->sym_filepos)
2748 == false)
2749 goto error_return;
2750 }
2751 }
2752
2753 /* The .bss section of a demand paged executable must receive an
2754 entire page. If there are symbols, the symbols will start on the
2755 next page. If there are no symbols, we must fill out the page by
2756 hand. */
2757 if (bfd_get_symcount (abfd) == 0
2758 && (abfd->flags & EXEC_P) != 0
2759 && (abfd->flags & D_PAGED) != 0)
2760 {
2761 char c;
2762
2763 if (bfd_seek (abfd, (file_ptr) ecoff_data (abfd)->sym_filepos - 1,
2764 SEEK_SET) != 0)
2765 goto error_return;
2766 if (bfd_read (&c, 1, 1, abfd) == 0)
2767 c = 0;
2768 if (bfd_seek (abfd, (file_ptr) ecoff_data (abfd)->sym_filepos - 1,
2769 SEEK_SET) != 0)
2770 goto error_return;
2771 if (bfd_write (&c, 1, 1, abfd) != 1)
2772 goto error_return;
2773 }
2774
2775 if (reloc_buff != NULL)
2776 bfd_release (abfd, reloc_buff);
2777 if (buff != NULL)
2778 free (buff);
2779 return true;
2780 error_return:
2781 if (reloc_buff != NULL)
2782 bfd_release (abfd, reloc_buff);
2783 if (buff != NULL)
2784 free (buff);
2785 return false;
2786 }
2787 \f
2788 /* Archive handling. ECOFF uses what appears to be a unique type of
2789 archive header (armap). The byte ordering of the armap and the
2790 contents are encoded in the name of the armap itself. At least for
2791 now, we only support archives with the same byte ordering in the
2792 armap and the contents.
2793
2794 The first four bytes in the armap are the number of symbol
2795 definitions. This is always a power of two.
2796
2797 This is followed by the symbol definitions. Each symbol definition
2798 occupies 8 bytes. The first four bytes are the offset from the
2799 start of the armap strings to the null-terminated string naming
2800 this symbol. The second four bytes are the file offset to the
2801 archive member which defines this symbol. If the second four bytes
2802 are 0, then this is not actually a symbol definition, and it should
2803 be ignored.
2804
2805 The symbols are hashed into the armap with a closed hashing scheme.
2806 See the functions below for the details of the algorithm.
2807
2808 After the symbol definitions comes four bytes holding the size of
2809 the string table, followed by the string table itself. */
2810
2811 /* The name of an archive headers looks like this:
2812 __________E[BL]E[BL]_ (with a trailing space).
2813 The trailing space is changed to an X if the archive is changed to
2814 indicate that the armap is out of date.
2815
2816 The Alpha seems to use ________64E[BL]E[BL]_. */
2817
2818 #define ARMAP_BIG_ENDIAN 'B'
2819 #define ARMAP_LITTLE_ENDIAN 'L'
2820 #define ARMAP_MARKER 'E'
2821 #define ARMAP_START_LENGTH 10
2822 #define ARMAP_HEADER_MARKER_INDEX 10
2823 #define ARMAP_HEADER_ENDIAN_INDEX 11
2824 #define ARMAP_OBJECT_MARKER_INDEX 12
2825 #define ARMAP_OBJECT_ENDIAN_INDEX 13
2826 #define ARMAP_END_INDEX 14
2827 #define ARMAP_END "_ "
2828
2829 /* This is a magic number used in the hashing algorithm. */
2830 #define ARMAP_HASH_MAGIC 0x9dd68ab5
2831
2832 /* This returns the hash value to use for a string. It also sets
2833 *REHASH to the rehash adjustment if the first slot is taken. SIZE
2834 is the number of entries in the hash table, and HLOG is the log
2835 base 2 of SIZE. */
2836
2837 static unsigned int
2838 ecoff_armap_hash (s, rehash, size, hlog)
2839 CONST char *s;
2840 unsigned int *rehash;
2841 unsigned int size;
2842 unsigned int hlog;
2843 {
2844 unsigned int hash;
2845
2846 hash = *s++;
2847 while (*s != '\0')
2848 hash = ((hash >> 27) | (hash << 5)) + *s++;
2849 hash *= ARMAP_HASH_MAGIC;
2850 *rehash = (hash & (size - 1)) | 1;
2851 return hash >> (32 - hlog);
2852 }
2853
2854 /* Read in the armap. */
2855
2856 boolean
2857 _bfd_ecoff_slurp_armap (abfd)
2858 bfd *abfd;
2859 {
2860 char nextname[17];
2861 unsigned int i;
2862 struct areltdata *mapdata;
2863 bfd_size_type parsed_size;
2864 char *raw_armap;
2865 struct artdata *ardata;
2866 unsigned int count;
2867 char *raw_ptr;
2868 struct symdef *symdef_ptr;
2869 char *stringbase;
2870
2871 /* Get the name of the first element. */
2872 i = bfd_read ((PTR) nextname, 1, 16, abfd);
2873 if (i == 0)
2874 return true;
2875 if (i != 16)
2876 return false;
2877
2878 if (bfd_seek (abfd, (file_ptr) -16, SEEK_CUR) != 0)
2879 return false;
2880
2881 /* Irix 4.0.5F apparently can use either an ECOFF armap or a
2882 standard COFF armap. We could move the ECOFF armap stuff into
2883 bfd_slurp_armap, but that seems inappropriate since no other
2884 target uses this format. Instead, we check directly for a COFF
2885 armap. */
2886 if (strncmp (nextname, "/ ", 16) == 0)
2887 return bfd_slurp_armap (abfd);
2888
2889 /* See if the first element is an armap. */
2890 if (strncmp (nextname, ecoff_backend (abfd)->armap_start,
2891 ARMAP_START_LENGTH) != 0
2892 || nextname[ARMAP_HEADER_MARKER_INDEX] != ARMAP_MARKER
2893 || (nextname[ARMAP_HEADER_ENDIAN_INDEX] != ARMAP_BIG_ENDIAN
2894 && nextname[ARMAP_HEADER_ENDIAN_INDEX] != ARMAP_LITTLE_ENDIAN)
2895 || nextname[ARMAP_OBJECT_MARKER_INDEX] != ARMAP_MARKER
2896 || (nextname[ARMAP_OBJECT_ENDIAN_INDEX] != ARMAP_BIG_ENDIAN
2897 && nextname[ARMAP_OBJECT_ENDIAN_INDEX] != ARMAP_LITTLE_ENDIAN)
2898 || strncmp (nextname + ARMAP_END_INDEX,
2899 ARMAP_END, sizeof ARMAP_END - 1) != 0)
2900 {
2901 bfd_has_map (abfd) = false;
2902 return true;
2903 }
2904
2905 /* Make sure we have the right byte ordering. */
2906 if (((nextname[ARMAP_HEADER_ENDIAN_INDEX] == ARMAP_BIG_ENDIAN)
2907 ^ (abfd->xvec->header_byteorder_big_p != false))
2908 || ((nextname[ARMAP_OBJECT_ENDIAN_INDEX] == ARMAP_BIG_ENDIAN)
2909 ^ (abfd->xvec->byteorder_big_p != false)))
2910 {
2911 bfd_set_error (bfd_error_wrong_format);
2912 return false;
2913 }
2914
2915 /* Read in the armap. */
2916 ardata = bfd_ardata (abfd);
2917 mapdata = _bfd_snarf_ar_hdr (abfd);
2918 if (mapdata == (struct areltdata *) NULL)
2919 return false;
2920 parsed_size = mapdata->parsed_size;
2921 bfd_release (abfd, (PTR) mapdata);
2922
2923 raw_armap = (char *) bfd_alloc (abfd, parsed_size);
2924 if (raw_armap == (char *) NULL)
2925 {
2926 bfd_set_error (bfd_error_no_memory);
2927 return false;
2928 }
2929
2930 if (bfd_read ((PTR) raw_armap, 1, parsed_size, abfd) != parsed_size)
2931 {
2932 if (bfd_get_error () != bfd_error_system_call)
2933 bfd_set_error (bfd_error_malformed_archive);
2934 bfd_release (abfd, (PTR) raw_armap);
2935 return false;
2936 }
2937
2938 ardata->tdata = (PTR) raw_armap;
2939
2940 count = bfd_h_get_32 (abfd, (PTR) raw_armap);
2941
2942 ardata->symdef_count = 0;
2943 ardata->cache = (struct ar_cache *) NULL;
2944
2945 /* This code used to overlay the symdefs over the raw archive data,
2946 but that doesn't work on a 64 bit host. */
2947
2948 stringbase = raw_armap + count * 8 + 8;
2949
2950 #ifdef CHECK_ARMAP_HASH
2951 {
2952 unsigned int hlog;
2953
2954 /* Double check that I have the hashing algorithm right by making
2955 sure that every symbol can be looked up successfully. */
2956 hlog = 0;
2957 for (i = 1; i < count; i <<= 1)
2958 hlog++;
2959 BFD_ASSERT (i == count);
2960
2961 raw_ptr = raw_armap + 4;
2962 for (i = 0; i < count; i++, raw_ptr += 8)
2963 {
2964 unsigned int name_offset, file_offset;
2965 unsigned int hash, rehash, srch;
2966
2967 name_offset = bfd_h_get_32 (abfd, (PTR) raw_ptr);
2968 file_offset = bfd_h_get_32 (abfd, (PTR) (raw_ptr + 4));
2969 if (file_offset == 0)
2970 continue;
2971 hash = ecoff_armap_hash (stringbase + name_offset, &rehash, count,
2972 hlog);
2973 if (hash == i)
2974 continue;
2975
2976 /* See if we can rehash to this location. */
2977 for (srch = (hash + rehash) & (count - 1);
2978 srch != hash && srch != i;
2979 srch = (srch + rehash) & (count - 1))
2980 BFD_ASSERT (bfd_h_get_32 (abfd, (PTR) (raw_armap + 8 + srch * 8))
2981 != 0);
2982 BFD_ASSERT (srch == i);
2983 }
2984 }
2985
2986 #endif /* CHECK_ARMAP_HASH */
2987
2988 raw_ptr = raw_armap + 4;
2989 for (i = 0; i < count; i++, raw_ptr += 8)
2990 if (bfd_h_get_32 (abfd, (PTR) (raw_ptr + 4)) != 0)
2991 ++ardata->symdef_count;
2992
2993 symdef_ptr = ((struct symdef *)
2994 bfd_alloc (abfd,
2995 ardata->symdef_count * sizeof (struct symdef)));
2996 if (!symdef_ptr)
2997 {
2998 bfd_set_error (bfd_error_no_memory);
2999 return false;
3000 }
3001
3002 ardata->symdefs = (carsym *) symdef_ptr;
3003
3004 raw_ptr = raw_armap + 4;
3005 for (i = 0; i < count; i++, raw_ptr += 8)
3006 {
3007 unsigned int name_offset, file_offset;
3008
3009 file_offset = bfd_h_get_32 (abfd, (PTR) (raw_ptr + 4));
3010 if (file_offset == 0)
3011 continue;
3012 name_offset = bfd_h_get_32 (abfd, (PTR) raw_ptr);
3013 symdef_ptr->s.name = stringbase + name_offset;
3014 symdef_ptr->file_offset = file_offset;
3015 ++symdef_ptr;
3016 }
3017
3018 ardata->first_file_filepos = bfd_tell (abfd);
3019 /* Pad to an even boundary. */
3020 ardata->first_file_filepos += ardata->first_file_filepos % 2;
3021
3022 bfd_has_map (abfd) = true;
3023
3024 return true;
3025 }
3026
3027 /* Write out an armap. */
3028
3029 boolean
3030 _bfd_ecoff_write_armap (abfd, elength, map, orl_count, stridx)
3031 bfd *abfd;
3032 unsigned int elength;
3033 struct orl *map;
3034 unsigned int orl_count;
3035 int stridx;
3036 {
3037 unsigned int hashsize, hashlog;
3038 unsigned int symdefsize;
3039 int padit;
3040 unsigned int stringsize;
3041 unsigned int mapsize;
3042 file_ptr firstreal;
3043 struct ar_hdr hdr;
3044 struct stat statbuf;
3045 unsigned int i;
3046 bfd_byte temp[4];
3047 bfd_byte *hashtable;
3048 bfd *current;
3049 bfd *last_elt;
3050
3051 /* Ultrix appears to use as a hash table size the least power of two
3052 greater than twice the number of entries. */
3053 for (hashlog = 0; (1 << hashlog) <= 2 * orl_count; hashlog++)
3054 ;
3055 hashsize = 1 << hashlog;
3056
3057 symdefsize = hashsize * 8;
3058 padit = stridx % 2;
3059 stringsize = stridx + padit;
3060
3061 /* Include 8 bytes to store symdefsize and stringsize in output. */
3062 mapsize = symdefsize + stringsize + 8;
3063
3064 firstreal = SARMAG + sizeof (struct ar_hdr) + mapsize + elength;
3065
3066 memset ((PTR) &hdr, 0, sizeof hdr);
3067
3068 /* Work out the ECOFF armap name. */
3069 strcpy (hdr.ar_name, ecoff_backend (abfd)->armap_start);
3070 hdr.ar_name[ARMAP_HEADER_MARKER_INDEX] = ARMAP_MARKER;
3071 hdr.ar_name[ARMAP_HEADER_ENDIAN_INDEX] =
3072 (abfd->xvec->header_byteorder_big_p
3073 ? ARMAP_BIG_ENDIAN
3074 : ARMAP_LITTLE_ENDIAN);
3075 hdr.ar_name[ARMAP_OBJECT_MARKER_INDEX] = ARMAP_MARKER;
3076 hdr.ar_name[ARMAP_OBJECT_ENDIAN_INDEX] =
3077 abfd->xvec->byteorder_big_p ? ARMAP_BIG_ENDIAN : ARMAP_LITTLE_ENDIAN;
3078 memcpy (hdr.ar_name + ARMAP_END_INDEX, ARMAP_END, sizeof ARMAP_END - 1);
3079
3080 /* Write the timestamp of the archive header to be just a little bit
3081 later than the timestamp of the file, otherwise the linker will
3082 complain that the index is out of date. Actually, the Ultrix
3083 linker just checks the archive name; the GNU linker may check the
3084 date. */
3085 stat (abfd->filename, &statbuf);
3086 sprintf (hdr.ar_date, "%ld", (long) (statbuf.st_mtime + 60));
3087
3088 /* The DECstation uses zeroes for the uid, gid and mode of the
3089 armap. */
3090 hdr.ar_uid[0] = '0';
3091 hdr.ar_gid[0] = '0';
3092 hdr.ar_mode[0] = '0';
3093
3094 sprintf (hdr.ar_size, "%-10d", (int) mapsize);
3095
3096 hdr.ar_fmag[0] = '`';
3097 hdr.ar_fmag[1] = '\012';
3098
3099 /* Turn all null bytes in the header into spaces. */
3100 for (i = 0; i < sizeof (struct ar_hdr); i++)
3101 if (((char *)(&hdr))[i] == '\0')
3102 (((char *)(&hdr))[i]) = ' ';
3103
3104 if (bfd_write ((PTR) &hdr, 1, sizeof (struct ar_hdr), abfd)
3105 != sizeof (struct ar_hdr))
3106 return false;
3107
3108 bfd_h_put_32 (abfd, (bfd_vma) hashsize, temp);
3109 if (bfd_write ((PTR) temp, 1, 4, abfd) != 4)
3110 return false;
3111
3112 hashtable = (bfd_byte *) bfd_zalloc (abfd, symdefsize);
3113 if (!hashtable)
3114 {
3115 bfd_set_error (bfd_error_no_memory);
3116 return false;
3117 }
3118
3119 current = abfd->archive_head;
3120 last_elt = current;
3121 for (i = 0; i < orl_count; i++)
3122 {
3123 unsigned int hash, rehash;
3124
3125 /* Advance firstreal to the file position of this archive
3126 element. */
3127 if (((bfd *) map[i].pos) != last_elt)
3128 {
3129 do
3130 {
3131 firstreal += arelt_size (current) + sizeof (struct ar_hdr);
3132 firstreal += firstreal % 2;
3133 current = current->next;
3134 }
3135 while (current != (bfd *) map[i].pos);
3136 }
3137
3138 last_elt = current;
3139
3140 hash = ecoff_armap_hash (*map[i].name, &rehash, hashsize, hashlog);
3141 if (bfd_h_get_32 (abfd, (PTR) (hashtable + (hash * 8) + 4)) != 0)
3142 {
3143 unsigned int srch;
3144
3145 /* The desired slot is already taken. */
3146 for (srch = (hash + rehash) & (hashsize - 1);
3147 srch != hash;
3148 srch = (srch + rehash) & (hashsize - 1))
3149 if (bfd_h_get_32 (abfd, (PTR) (hashtable + (srch * 8) + 4)) == 0)
3150 break;
3151
3152 BFD_ASSERT (srch != hash);
3153
3154 hash = srch;
3155 }
3156
3157 bfd_h_put_32 (abfd, (bfd_vma) map[i].namidx,
3158 (PTR) (hashtable + hash * 8));
3159 bfd_h_put_32 (abfd, (bfd_vma) firstreal,
3160 (PTR) (hashtable + hash * 8 + 4));
3161 }
3162
3163 if (bfd_write ((PTR) hashtable, 1, symdefsize, abfd) != symdefsize)
3164 return false;
3165
3166 bfd_release (abfd, hashtable);
3167
3168 /* Now write the strings. */
3169 bfd_h_put_32 (abfd, (bfd_vma) stringsize, temp);
3170 if (bfd_write ((PTR) temp, 1, 4, abfd) != 4)
3171 return false;
3172 for (i = 0; i < orl_count; i++)
3173 {
3174 bfd_size_type len;
3175
3176 len = strlen (*map[i].name) + 1;
3177 if (bfd_write ((PTR) (*map[i].name), 1, len, abfd) != len)
3178 return false;
3179 }
3180
3181 /* The spec sez this should be a newline. But in order to be
3182 bug-compatible for DECstation ar we use a null. */
3183 if (padit)
3184 {
3185 if (bfd_write ("", 1, 1, abfd) != 1)
3186 return false;
3187 }
3188
3189 return true;
3190 }
3191
3192 /* See whether this BFD is an archive. If it is, read in the armap
3193 and the extended name table. */
3194
3195 const bfd_target *
3196 _bfd_ecoff_archive_p (abfd)
3197 bfd *abfd;
3198 {
3199 char armag[SARMAG + 1];
3200
3201 if (bfd_read ((PTR) armag, 1, SARMAG, abfd) != SARMAG
3202 || strncmp (armag, ARMAG, SARMAG) != 0)
3203 {
3204 if (bfd_get_error () != bfd_error_system_call)
3205 bfd_set_error (bfd_error_wrong_format);
3206 return (const bfd_target *) NULL;
3207 }
3208
3209 /* We are setting bfd_ardata(abfd) here, but since bfd_ardata
3210 involves a cast, we can't do it as the left operand of
3211 assignment. */
3212 abfd->tdata.aout_ar_data =
3213 (struct artdata *) bfd_zalloc (abfd, sizeof (struct artdata));
3214
3215 if (bfd_ardata (abfd) == (struct artdata *) NULL)
3216 {
3217 bfd_set_error (bfd_error_no_memory);
3218 return (const bfd_target *) NULL;
3219 }
3220
3221 bfd_ardata (abfd)->first_file_filepos = SARMAG;
3222 bfd_ardata (abfd)->cache = NULL;
3223 bfd_ardata (abfd)->archive_head = NULL;
3224 bfd_ardata (abfd)->symdefs = NULL;
3225 bfd_ardata (abfd)->extended_names = NULL;
3226 bfd_ardata (abfd)->tdata = NULL;
3227
3228 if (_bfd_ecoff_slurp_armap (abfd) == false
3229 || _bfd_ecoff_slurp_extended_name_table (abfd) == false)
3230 {
3231 bfd_release (abfd, bfd_ardata (abfd));
3232 abfd->tdata.aout_ar_data = (struct artdata *) NULL;
3233 return (const bfd_target *) NULL;
3234 }
3235
3236 return abfd->xvec;
3237 }
3238 \f
3239 /* ECOFF linker code. */
3240
3241 static struct bfd_hash_entry *ecoff_link_hash_newfunc
3242 PARAMS ((struct bfd_hash_entry *entry,
3243 struct bfd_hash_table *table,
3244 const char *string));
3245 static boolean ecoff_link_add_archive_symbols
3246 PARAMS ((bfd *, struct bfd_link_info *));
3247 static boolean ecoff_link_check_archive_element
3248 PARAMS ((bfd *, struct bfd_link_info *, boolean *pneeded));
3249 static boolean ecoff_link_add_object_symbols
3250 PARAMS ((bfd *, struct bfd_link_info *));
3251 static boolean ecoff_link_add_externals
3252 PARAMS ((bfd *, struct bfd_link_info *, PTR, char *));
3253
3254 /* Routine to create an entry in an ECOFF link hash table. */
3255
3256 static struct bfd_hash_entry *
3257 ecoff_link_hash_newfunc (entry, table, string)
3258 struct bfd_hash_entry *entry;
3259 struct bfd_hash_table *table;
3260 const char *string;
3261 {
3262 struct ecoff_link_hash_entry *ret = (struct ecoff_link_hash_entry *) entry;
3263
3264 /* Allocate the structure if it has not already been allocated by a
3265 subclass. */
3266 if (ret == (struct ecoff_link_hash_entry *) NULL)
3267 ret = ((struct ecoff_link_hash_entry *)
3268 bfd_hash_allocate (table, sizeof (struct ecoff_link_hash_entry)));
3269 if (ret == (struct ecoff_link_hash_entry *) NULL)
3270 {
3271 bfd_set_error (bfd_error_no_memory);
3272 return NULL;
3273 }
3274
3275 /* Call the allocation method of the superclass. */
3276 ret = ((struct ecoff_link_hash_entry *)
3277 _bfd_link_hash_newfunc ((struct bfd_hash_entry *) ret,
3278 table, string));
3279
3280 if (ret)
3281 {
3282 /* Set local fields. */
3283 ret->indx = -1;
3284 ret->abfd = NULL;
3285 ret->written = 0;
3286 ret->small = 0;
3287 }
3288 memset ((PTR) &ret->esym, 0, sizeof ret->esym);
3289
3290 return (struct bfd_hash_entry *) ret;
3291 }
3292
3293 /* Create an ECOFF link hash table. */
3294
3295 struct bfd_link_hash_table *
3296 _bfd_ecoff_bfd_link_hash_table_create (abfd)
3297 bfd *abfd;
3298 {
3299 struct ecoff_link_hash_table *ret;
3300
3301 ret = ((struct ecoff_link_hash_table *)
3302 malloc (sizeof (struct ecoff_link_hash_table)));
3303 if (!ret)
3304 {
3305 bfd_set_error (bfd_error_no_memory);
3306 return NULL;
3307 }
3308 if (! _bfd_link_hash_table_init (&ret->root, abfd,
3309 ecoff_link_hash_newfunc))
3310 {
3311 free (ret);
3312 return (struct bfd_link_hash_table *) NULL;
3313 }
3314 return &ret->root;
3315 }
3316
3317 /* Look up an entry in an ECOFF link hash table. */
3318
3319 #define ecoff_link_hash_lookup(table, string, create, copy, follow) \
3320 ((struct ecoff_link_hash_entry *) \
3321 bfd_link_hash_lookup (&(table)->root, (string), (create), (copy), (follow)))
3322
3323 /* Traverse an ECOFF link hash table. */
3324
3325 #define ecoff_link_hash_traverse(table, func, info) \
3326 (bfd_link_hash_traverse \
3327 (&(table)->root, \
3328 (boolean (*) PARAMS ((struct bfd_link_hash_entry *, PTR))) (func), \
3329 (info)))
3330
3331 /* Get the ECOFF link hash table from the info structure. This is
3332 just a cast. */
3333
3334 #define ecoff_hash_table(p) ((struct ecoff_link_hash_table *) ((p)->hash))
3335
3336 /* Given an ECOFF BFD, add symbols to the global hash table as
3337 appropriate. */
3338
3339 boolean
3340 _bfd_ecoff_bfd_link_add_symbols (abfd, info)
3341 bfd *abfd;
3342 struct bfd_link_info *info;
3343 {
3344 switch (bfd_get_format (abfd))
3345 {
3346 case bfd_object:
3347 return ecoff_link_add_object_symbols (abfd, info);
3348 case bfd_archive:
3349 return ecoff_link_add_archive_symbols (abfd, info);
3350 default:
3351 bfd_set_error (bfd_error_wrong_format);
3352 return false;
3353 }
3354 }
3355
3356 /* Add the symbols from an archive file to the global hash table.
3357 This looks through the undefined symbols, looks each one up in the
3358 archive hash table, and adds any associated object file. We do not
3359 use _bfd_generic_link_add_archive_symbols because ECOFF archives
3360 already have a hash table, so there is no reason to construct
3361 another one. */
3362
3363 static boolean
3364 ecoff_link_add_archive_symbols (abfd, info)
3365 bfd *abfd;
3366 struct bfd_link_info *info;
3367 {
3368 const bfd_byte *raw_armap;
3369 struct bfd_link_hash_entry **pundef;
3370 unsigned int armap_count;
3371 unsigned int armap_log;
3372 unsigned int i;
3373 const bfd_byte *hashtable;
3374 const char *stringbase;
3375
3376 if (! bfd_has_map (abfd))
3377 {
3378 /* An empty archive is a special case. */
3379 if (bfd_openr_next_archived_file (abfd, (bfd *) NULL) == NULL)
3380 return true;
3381 bfd_set_error (bfd_error_no_armap);
3382 return false;
3383 }
3384
3385 /* If we don't have any raw data for this archive, as can happen on
3386 Irix 4.0.5F, we call the generic routine.
3387 FIXME: We should be more clever about this, since someday tdata
3388 may get to something for a generic archive. */
3389 raw_armap = (const bfd_byte *) bfd_ardata (abfd)->tdata;
3390 if (raw_armap == (bfd_byte *) NULL)
3391 return (_bfd_generic_link_add_archive_symbols
3392 (abfd, info, ecoff_link_check_archive_element));
3393
3394 armap_count = bfd_h_get_32 (abfd, raw_armap);
3395
3396 armap_log = 0;
3397 for (i = 1; i < armap_count; i <<= 1)
3398 armap_log++;
3399 BFD_ASSERT (i == armap_count);
3400
3401 hashtable = raw_armap + 4;
3402 stringbase = (const char *) raw_armap + armap_count * 8 + 8;
3403
3404 /* Look through the list of undefined symbols. */
3405 pundef = &info->hash->undefs;
3406 while (*pundef != (struct bfd_link_hash_entry *) NULL)
3407 {
3408 struct bfd_link_hash_entry *h;
3409 unsigned int hash, rehash;
3410 unsigned int file_offset;
3411 const char *name;
3412 bfd *element;
3413
3414 h = *pundef;
3415
3416 /* When a symbol is defined, it is not necessarily removed from
3417 the list. */
3418 if (h->type != bfd_link_hash_undefined
3419 && h->type != bfd_link_hash_common)
3420 {
3421 /* Remove this entry from the list, for general cleanliness
3422 and because we are going to look through the list again
3423 if we search any more libraries. We can't remove the
3424 entry if it is the tail, because that would lose any
3425 entries we add to the list later on. */
3426 if (*pundef != info->hash->undefs_tail)
3427 *pundef = (*pundef)->next;
3428 else
3429 pundef = &(*pundef)->next;
3430 continue;
3431 }
3432
3433 /* Native ECOFF linkers do not pull in archive elements merely
3434 to satisfy common definitions, so neither do we. We leave
3435 them on the list, though, in case we are linking against some
3436 other object format. */
3437 if (h->type != bfd_link_hash_undefined)
3438 {
3439 pundef = &(*pundef)->next;
3440 continue;
3441 }
3442
3443 /* Look for this symbol in the archive hash table. */
3444 hash = ecoff_armap_hash (h->root.string, &rehash, armap_count,
3445 armap_log);
3446
3447 file_offset = bfd_h_get_32 (abfd, hashtable + (hash * 8) + 4);
3448 if (file_offset == 0)
3449 {
3450 /* Nothing in this slot. */
3451 pundef = &(*pundef)->next;
3452 continue;
3453 }
3454
3455 name = stringbase + bfd_h_get_32 (abfd, hashtable + (hash * 8));
3456 if (name[0] != h->root.string[0]
3457 || strcmp (name, h->root.string) != 0)
3458 {
3459 unsigned int srch;
3460 boolean found;
3461
3462 /* That was the wrong symbol. Try rehashing. */
3463 found = false;
3464 for (srch = (hash + rehash) & (armap_count - 1);
3465 srch != hash;
3466 srch = (srch + rehash) & (armap_count - 1))
3467 {
3468 file_offset = bfd_h_get_32 (abfd, hashtable + (srch * 8) + 4);
3469 if (file_offset == 0)
3470 break;
3471 name = stringbase + bfd_h_get_32 (abfd, hashtable + (srch * 8));
3472 if (name[0] == h->root.string[0]
3473 && strcmp (name, h->root.string) == 0)
3474 {
3475 found = true;
3476 break;
3477 }
3478 }
3479
3480 if (! found)
3481 {
3482 pundef = &(*pundef)->next;
3483 continue;
3484 }
3485
3486 hash = srch;
3487 }
3488
3489 element = _bfd_get_elt_at_filepos (abfd, file_offset);
3490 if (element == (bfd *) NULL)
3491 return false;
3492
3493 if (! bfd_check_format (element, bfd_object))
3494 return false;
3495
3496 /* Unlike the generic linker, we know that this element provides
3497 a definition for an undefined symbol and we know that we want
3498 to include it. We don't need to check anything. */
3499 if (! (*info->callbacks->add_archive_element) (info, element, name))
3500 return false;
3501 if (! ecoff_link_add_object_symbols (element, info))
3502 return false;
3503
3504 pundef = &(*pundef)->next;
3505 }
3506
3507 return true;
3508 }
3509
3510 /* This is called if we used _bfd_generic_link_add_archive_symbols
3511 because we were not dealing with an ECOFF archive. */
3512
3513 static boolean
3514 ecoff_link_check_archive_element (abfd, info, pneeded)
3515 bfd *abfd;
3516 struct bfd_link_info *info;
3517 boolean *pneeded;
3518 {
3519 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
3520 void (* const swap_ext_in) PARAMS ((bfd *, PTR, EXTR *))
3521 = backend->debug_swap.swap_ext_in;
3522 HDRR *symhdr;
3523 bfd_size_type external_ext_size;
3524 PTR external_ext = NULL;
3525 size_t esize;
3526 char *ssext = NULL;
3527 char *ext_ptr;
3528 char *ext_end;
3529
3530 *pneeded = false;
3531
3532 if (! ecoff_slurp_symbolic_header (abfd))
3533 goto error_return;
3534
3535 /* If there are no symbols, we don't want it. */
3536 if (bfd_get_symcount (abfd) == 0)
3537 goto successful_return;
3538
3539 symhdr = &ecoff_data (abfd)->debug_info.symbolic_header;
3540
3541 /* Read in the external symbols and external strings. */
3542 external_ext_size = backend->debug_swap.external_ext_size;
3543 esize = symhdr->iextMax * external_ext_size;
3544 external_ext = (PTR) malloc (esize);
3545 if (external_ext == NULL && esize != 0)
3546 {
3547 bfd_set_error (bfd_error_no_memory);
3548 goto error_return;
3549 }
3550
3551 if (bfd_seek (abfd, symhdr->cbExtOffset, SEEK_SET) != 0
3552 || bfd_read (external_ext, 1, esize, abfd) != esize)
3553 goto error_return;
3554
3555 ssext = (char *) malloc (symhdr->issExtMax);
3556 if (ssext == NULL && symhdr->issExtMax != 0)
3557 {
3558 bfd_set_error (bfd_error_no_memory);
3559 goto error_return;
3560 }
3561
3562 if (bfd_seek (abfd, symhdr->cbSsExtOffset, SEEK_SET) != 0
3563 || bfd_read (ssext, 1, symhdr->issExtMax, abfd) != symhdr->issExtMax)
3564 goto error_return;
3565
3566 /* Look through the external symbols to see if they define some
3567 symbol that is currently undefined. */
3568 ext_ptr = (char *) external_ext;
3569 ext_end = ext_ptr + esize;
3570 for (; ext_ptr < ext_end; ext_ptr += external_ext_size)
3571 {
3572 EXTR esym;
3573 boolean def;
3574 const char *name;
3575 struct bfd_link_hash_entry *h;
3576
3577 (*swap_ext_in) (abfd, (PTR) ext_ptr, &esym);
3578
3579 /* See if this symbol defines something. */
3580 if (esym.asym.st != stGlobal
3581 && esym.asym.st != stLabel
3582 && esym.asym.st != stProc)
3583 continue;
3584
3585 switch (esym.asym.sc)
3586 {
3587 case scText:
3588 case scData:
3589 case scBss:
3590 case scAbs:
3591 case scSData:
3592 case scSBss:
3593 case scRData:
3594 case scCommon:
3595 case scSCommon:
3596 case scInit:
3597 case scFini:
3598 def = true;
3599 break;
3600 default:
3601 def = false;
3602 break;
3603 }
3604
3605 if (! def)
3606 continue;
3607
3608 name = ssext + esym.asym.iss;
3609 h = bfd_link_hash_lookup (info->hash, name, false, false, true);
3610
3611 /* Unlike the generic linker, we do not pull in elements because
3612 of common symbols. */
3613 if (h == (struct bfd_link_hash_entry *) NULL
3614 || h->type != bfd_link_hash_undefined)
3615 continue;
3616
3617 /* Include this element. */
3618 if (! (*info->callbacks->add_archive_element) (info, abfd, name))
3619 goto error_return;
3620 if (! ecoff_link_add_externals (abfd, info, external_ext, ssext))
3621 goto error_return;
3622
3623 *pneeded = true;
3624 goto successful_return;
3625 }
3626
3627 successful_return:
3628 if (external_ext != NULL)
3629 free (external_ext);
3630 if (ssext != NULL)
3631 free (ssext);
3632 return true;
3633 error_return:
3634 if (external_ext != NULL)
3635 free (external_ext);
3636 if (ssext != NULL)
3637 free (ssext);
3638 return false;
3639 }
3640
3641 /* Add symbols from an ECOFF object file to the global linker hash
3642 table. */
3643
3644 static boolean
3645 ecoff_link_add_object_symbols (abfd, info)
3646 bfd *abfd;
3647 struct bfd_link_info *info;
3648 {
3649 HDRR *symhdr;
3650 bfd_size_type external_ext_size;
3651 PTR external_ext = NULL;
3652 size_t esize;
3653 char *ssext = NULL;
3654 boolean result;
3655
3656 if (! ecoff_slurp_symbolic_header (abfd))
3657 return false;
3658
3659 /* If there are no symbols, we don't want it. */
3660 if (bfd_get_symcount (abfd) == 0)
3661 return true;
3662
3663 symhdr = &ecoff_data (abfd)->debug_info.symbolic_header;
3664
3665 /* Read in the external symbols and external strings. */
3666 external_ext_size = ecoff_backend (abfd)->debug_swap.external_ext_size;
3667 esize = symhdr->iextMax * external_ext_size;
3668 external_ext = (PTR) malloc (esize);
3669 if (external_ext == NULL && esize != 0)
3670 {
3671 bfd_set_error (bfd_error_no_memory);
3672 goto error_return;
3673 }
3674
3675 if (bfd_seek (abfd, symhdr->cbExtOffset, SEEK_SET) != 0
3676 || bfd_read (external_ext, 1, esize, abfd) != esize)
3677 goto error_return;
3678
3679 ssext = (char *) malloc (symhdr->issExtMax);
3680 if (ssext == NULL && symhdr->issExtMax != 0)
3681 {
3682 bfd_set_error (bfd_error_no_memory);
3683 goto error_return;
3684 }
3685
3686 if (bfd_seek (abfd, symhdr->cbSsExtOffset, SEEK_SET) != 0
3687 || bfd_read (ssext, 1, symhdr->issExtMax, abfd) != symhdr->issExtMax)
3688 goto error_return;
3689
3690 result = ecoff_link_add_externals (abfd, info, external_ext, ssext);
3691
3692 if (ssext != NULL)
3693 free (ssext);
3694 if (external_ext != NULL)
3695 free (external_ext);
3696 return result;
3697
3698 error_return:
3699 if (ssext != NULL)
3700 free (ssext);
3701 if (external_ext != NULL)
3702 free (external_ext);
3703 return false;
3704 }
3705
3706 /* Add the external symbols of an object file to the global linker
3707 hash table. The external symbols and strings we are passed are
3708 just allocated on the stack, and will be discarded. We must
3709 explicitly save any information we may need later on in the link.
3710 We do not want to read the external symbol information again. */
3711
3712 static boolean
3713 ecoff_link_add_externals (abfd, info, external_ext, ssext)
3714 bfd *abfd;
3715 struct bfd_link_info *info;
3716 PTR external_ext;
3717 char *ssext;
3718 {
3719 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
3720 void (* const swap_ext_in) PARAMS ((bfd *, PTR, EXTR *))
3721 = backend->debug_swap.swap_ext_in;
3722 bfd_size_type external_ext_size = backend->debug_swap.external_ext_size;
3723 unsigned long ext_count;
3724 struct ecoff_link_hash_entry **sym_hash;
3725 char *ext_ptr;
3726 char *ext_end;
3727
3728 ext_count = ecoff_data (abfd)->debug_info.symbolic_header.iextMax;
3729
3730 sym_hash = ((struct ecoff_link_hash_entry **)
3731 bfd_alloc (abfd,
3732 ext_count * sizeof (struct bfd_link_hash_entry *)));
3733 if (!sym_hash)
3734 {
3735 bfd_set_error (bfd_error_no_memory);
3736 return false;
3737 }
3738 ecoff_data (abfd)->sym_hashes = sym_hash;
3739
3740 ext_ptr = (char *) external_ext;
3741 ext_end = ext_ptr + ext_count * external_ext_size;
3742 for (; ext_ptr < ext_end; ext_ptr += external_ext_size, sym_hash++)
3743 {
3744 EXTR esym;
3745 boolean skip;
3746 bfd_vma value;
3747 asection *section;
3748 const char *name;
3749 struct ecoff_link_hash_entry *h;
3750
3751 *sym_hash = NULL;
3752
3753 (*swap_ext_in) (abfd, (PTR) ext_ptr, &esym);
3754
3755 /* Skip debugging symbols. */
3756 skip = false;
3757 switch (esym.asym.st)
3758 {
3759 case stGlobal:
3760 case stStatic:
3761 case stLabel:
3762 case stProc:
3763 case stStaticProc:
3764 break;
3765 default:
3766 skip = true;
3767 break;
3768 }
3769
3770 if (skip)
3771 continue;
3772
3773 /* Get the information for this symbol. */
3774 value = esym.asym.value;
3775 switch (esym.asym.sc)
3776 {
3777 default:
3778 case scNil:
3779 case scRegister:
3780 case scCdbLocal:
3781 case scBits:
3782 case scCdbSystem:
3783 case scRegImage:
3784 case scInfo:
3785 case scUserStruct:
3786 case scVar:
3787 case scVarRegister:
3788 case scVariant:
3789 case scBasedVar:
3790 case scXData:
3791 case scPData:
3792 section = NULL;
3793 break;
3794 case scText:
3795 section = bfd_make_section_old_way (abfd, ".text");
3796 value -= section->vma;
3797 break;
3798 case scData:
3799 section = bfd_make_section_old_way (abfd, ".data");
3800 value -= section->vma;
3801 break;
3802 case scBss:
3803 section = bfd_make_section_old_way (abfd, ".bss");
3804 value -= section->vma;
3805 break;
3806 case scAbs:
3807 section = bfd_abs_section_ptr;
3808 break;
3809 case scUndefined:
3810 section = bfd_und_section_ptr;
3811 break;
3812 case scSData:
3813 section = bfd_make_section_old_way (abfd, ".sdata");
3814 value -= section->vma;
3815 break;
3816 case scSBss:
3817 section = bfd_make_section_old_way (abfd, ".sbss");
3818 value -= section->vma;
3819 break;
3820 case scRData:
3821 section = bfd_make_section_old_way (abfd, ".rdata");
3822 value -= section->vma;
3823 break;
3824 case scCommon:
3825 if (value > ecoff_data (abfd)->gp_size)
3826 {
3827 section = bfd_com_section_ptr;
3828 break;
3829 }
3830 /* Fall through. */
3831 case scSCommon:
3832 if (ecoff_scom_section.name == NULL)
3833 {
3834 /* Initialize the small common section. */
3835 ecoff_scom_section.name = SCOMMON;
3836 ecoff_scom_section.flags = SEC_IS_COMMON;
3837 ecoff_scom_section.output_section = &ecoff_scom_section;
3838 ecoff_scom_section.symbol = &ecoff_scom_symbol;
3839 ecoff_scom_section.symbol_ptr_ptr = &ecoff_scom_symbol_ptr;
3840 ecoff_scom_symbol.name = SCOMMON;
3841 ecoff_scom_symbol.flags = BSF_SECTION_SYM;
3842 ecoff_scom_symbol.section = &ecoff_scom_section;
3843 ecoff_scom_symbol_ptr = &ecoff_scom_symbol;
3844 }
3845 section = &ecoff_scom_section;
3846 break;
3847 case scSUndefined:
3848 section = bfd_und_section_ptr;
3849 break;
3850 case scInit:
3851 section = bfd_make_section_old_way (abfd, ".init");
3852 value -= section->vma;
3853 break;
3854 case scFini:
3855 section = bfd_make_section_old_way (abfd, ".fini");
3856 value -= section->vma;
3857 break;
3858 }
3859
3860 if (section == (asection *) NULL)
3861 continue;
3862
3863 name = ssext + esym.asym.iss;
3864
3865 h = NULL;
3866 if (! (_bfd_generic_link_add_one_symbol
3867 (info, abfd, name, BSF_GLOBAL, section, value,
3868 (const char *) NULL, true, true,
3869 (struct bfd_link_hash_entry **) &h)))
3870 return false;
3871
3872 *sym_hash = h;
3873
3874 /* If we are building an ECOFF hash table, save the external
3875 symbol information. */
3876 if (info->hash->creator->flavour == bfd_get_flavour (abfd))
3877 {
3878 if (h->abfd == (bfd *) NULL
3879 || (! bfd_is_und_section (section)
3880 && (! bfd_is_com_section (section)
3881 || (h->root.type != bfd_link_hash_defined
3882 && h->root.type != bfd_link_hash_defweak))))
3883 {
3884 h->abfd = abfd;
3885 h->esym = esym;
3886 }
3887
3888 /* Remember whether this symbol was small undefined. */
3889 if (esym.asym.sc == scSUndefined)
3890 h->small = 1;
3891
3892 /* If this symbol was ever small undefined, it needs to wind
3893 up in a GP relative section. We can't control the
3894 section of a defined symbol, but we can control the
3895 section of a common symbol. This case is actually needed
3896 on Ultrix 4.2 to handle the symbol cred in -lckrb. */
3897 if (h->small
3898 && h->root.type == bfd_link_hash_common
3899 && strcmp (h->root.u.c.p->section->name, SCOMMON) != 0)
3900 {
3901 h->root.u.c.p->section = bfd_make_section_old_way (abfd,
3902 SCOMMON);
3903 h->root.u.c.p->section->flags = SEC_ALLOC;
3904 if (h->esym.asym.sc == scCommon)
3905 h->esym.asym.sc = scSCommon;
3906 }
3907 }
3908 }
3909
3910 return true;
3911 }
3912 \f
3913 /* ECOFF final link routines. */
3914
3915 static boolean ecoff_final_link_debug_accumulate
3916 PARAMS ((bfd *output_bfd, bfd *input_bfd, struct bfd_link_info *,
3917 PTR handle));
3918 static boolean ecoff_link_write_external
3919 PARAMS ((struct ecoff_link_hash_entry *, PTR));
3920 static boolean ecoff_indirect_link_order
3921 PARAMS ((bfd *, struct bfd_link_info *, asection *,
3922 struct bfd_link_order *));
3923 static boolean ecoff_reloc_link_order
3924 PARAMS ((bfd *, struct bfd_link_info *, asection *,
3925 struct bfd_link_order *));
3926
3927 /* ECOFF final link routine. This looks through all the input BFDs
3928 and gathers together all the debugging information, and then
3929 processes all the link order information. This may cause it to
3930 close and reopen some input BFDs; I'll see how bad this is. */
3931
3932 boolean
3933 _bfd_ecoff_bfd_final_link (abfd, info)
3934 bfd *abfd;
3935 struct bfd_link_info *info;
3936 {
3937 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
3938 struct ecoff_debug_info * const debug = &ecoff_data (abfd)->debug_info;
3939 HDRR *symhdr;
3940 PTR handle;
3941 register bfd *input_bfd;
3942 asection *o;
3943 struct bfd_link_order *p;
3944
3945 /* We accumulate the debugging information counts in the symbolic
3946 header. */
3947 symhdr = &debug->symbolic_header;
3948 symhdr->vstamp = 0;
3949 symhdr->ilineMax = 0;
3950 symhdr->cbLine = 0;
3951 symhdr->idnMax = 0;
3952 symhdr->ipdMax = 0;
3953 symhdr->isymMax = 0;
3954 symhdr->ioptMax = 0;
3955 symhdr->iauxMax = 0;
3956 symhdr->issMax = 0;
3957 symhdr->issExtMax = 0;
3958 symhdr->ifdMax = 0;
3959 symhdr->crfd = 0;
3960 symhdr->iextMax = 0;
3961
3962 /* We accumulate the debugging information itself in the debug_info
3963 structure. */
3964 debug->line = NULL;
3965 debug->external_dnr = NULL;
3966 debug->external_pdr = NULL;
3967 debug->external_sym = NULL;
3968 debug->external_opt = NULL;
3969 debug->external_aux = NULL;
3970 debug->ss = NULL;
3971 debug->ssext = debug->ssext_end = NULL;
3972 debug->external_fdr = NULL;
3973 debug->external_rfd = NULL;
3974 debug->external_ext = debug->external_ext_end = NULL;
3975
3976 handle = bfd_ecoff_debug_init (abfd, debug, &backend->debug_swap, info);
3977 if (handle == (PTR) NULL)
3978 return false;
3979
3980 /* Accumulate the debugging symbols from each input BFD. */
3981 for (input_bfd = info->input_bfds;
3982 input_bfd != (bfd *) NULL;
3983 input_bfd = input_bfd->link_next)
3984 {
3985 boolean ret;
3986
3987 if (bfd_get_flavour (input_bfd) == bfd_target_ecoff_flavour)
3988 {
3989 /* Abitrarily set the symbolic header vstamp to the vstamp
3990 of the first object file in the link. */
3991 if (symhdr->vstamp == 0)
3992 symhdr->vstamp
3993 = ecoff_data (input_bfd)->debug_info.symbolic_header.vstamp;
3994 ret = ecoff_final_link_debug_accumulate (abfd, input_bfd, info,
3995 handle);
3996 }
3997 else
3998 ret = bfd_ecoff_debug_accumulate_other (handle, abfd,
3999 debug, &backend->debug_swap,
4000 input_bfd, info);
4001 if (! ret)
4002 return false;
4003
4004 /* Combine the register masks. */
4005 ecoff_data (abfd)->gprmask |= ecoff_data (input_bfd)->gprmask;
4006 ecoff_data (abfd)->fprmask |= ecoff_data (input_bfd)->fprmask;
4007 ecoff_data (abfd)->cprmask[0] |= ecoff_data (input_bfd)->cprmask[0];
4008 ecoff_data (abfd)->cprmask[1] |= ecoff_data (input_bfd)->cprmask[1];
4009 ecoff_data (abfd)->cprmask[2] |= ecoff_data (input_bfd)->cprmask[2];
4010 ecoff_data (abfd)->cprmask[3] |= ecoff_data (input_bfd)->cprmask[3];
4011 }
4012
4013 /* Write out the external symbols. */
4014 ecoff_link_hash_traverse (ecoff_hash_table (info),
4015 ecoff_link_write_external,
4016 (PTR) abfd);
4017
4018 if (info->relocateable)
4019 {
4020 /* We need to make a pass over the link_orders to count up the
4021 number of relocations we will need to output, so that we know
4022 how much space they will take up. */
4023 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
4024 {
4025 o->reloc_count = 0;
4026 for (p = o->link_order_head;
4027 p != (struct bfd_link_order *) NULL;
4028 p = p->next)
4029 if (p->type == bfd_indirect_link_order)
4030 o->reloc_count += p->u.indirect.section->reloc_count;
4031 else if (p->type == bfd_section_reloc_link_order
4032 || p->type == bfd_symbol_reloc_link_order)
4033 ++o->reloc_count;
4034 }
4035 }
4036
4037 /* Compute the reloc and symbol file positions. */
4038 ecoff_compute_reloc_file_positions (abfd);
4039
4040 /* Write out the debugging information. */
4041 if (! bfd_ecoff_write_accumulated_debug (handle, abfd, debug,
4042 &backend->debug_swap, info,
4043 ecoff_data (abfd)->sym_filepos))
4044 return false;
4045
4046 bfd_ecoff_debug_free (handle, abfd, debug, &backend->debug_swap, info);
4047
4048 if (info->relocateable)
4049 {
4050 /* Now reset the reloc_count field of the sections in the output
4051 BFD to 0, so that we can use them to keep track of how many
4052 relocs we have output thus far. */
4053 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
4054 o->reloc_count = 0;
4055 }
4056
4057 /* Get a value for the GP register. */
4058 if (ecoff_data (abfd)->gp == 0)
4059 {
4060 struct bfd_link_hash_entry *h;
4061
4062 h = bfd_link_hash_lookup (info->hash, "_gp", false, false, true);
4063 if (h != (struct bfd_link_hash_entry *) NULL
4064 && h->type == bfd_link_hash_defined)
4065 ecoff_data (abfd)->gp = (h->u.def.value
4066 + h->u.def.section->output_section->vma
4067 + h->u.def.section->output_offset);
4068 else if (info->relocateable)
4069 {
4070 bfd_vma lo;
4071
4072 /* Make up a value. */
4073 lo = (bfd_vma) -1;
4074 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
4075 {
4076 if (o->vma < lo
4077 && (strcmp (o->name, _SBSS) == 0
4078 || strcmp (o->name, _SDATA) == 0
4079 || strcmp (o->name, _LIT4) == 0
4080 || strcmp (o->name, _LIT8) == 0
4081 || strcmp (o->name, _LITA) == 0))
4082 lo = o->vma;
4083 }
4084 ecoff_data (abfd)->gp = lo + 0x8000;
4085 }
4086 else
4087 {
4088 /* If the relocate_section function needs to do a reloc
4089 involving the GP value, it should make a reloc_dangerous
4090 callback to warn that GP is not defined. */
4091 }
4092 }
4093
4094 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
4095 {
4096 for (p = o->link_order_head;
4097 p != (struct bfd_link_order *) NULL;
4098 p = p->next)
4099 {
4100 if (p->type == bfd_indirect_link_order
4101 && (bfd_get_flavour (p->u.indirect.section->owner)
4102 == bfd_target_ecoff_flavour))
4103 {
4104 if (! ecoff_indirect_link_order (abfd, info, o, p))
4105 return false;
4106 }
4107 else if (p->type == bfd_section_reloc_link_order
4108 || p->type == bfd_symbol_reloc_link_order)
4109 {
4110 if (! ecoff_reloc_link_order (abfd, info, o, p))
4111 return false;
4112 }
4113 else
4114 {
4115 if (! _bfd_default_link_order (abfd, info, o, p))
4116 return false;
4117 }
4118 }
4119 }
4120
4121 bfd_get_symcount (abfd) = symhdr->iextMax + symhdr->isymMax;
4122
4123 ecoff_data (abfd)->linker = true;
4124
4125 return true;
4126 }
4127
4128 /* Accumulate the debugging information for an input BFD into the
4129 output BFD. This must read in the symbolic information of the
4130 input BFD. */
4131
4132 static boolean
4133 ecoff_final_link_debug_accumulate (output_bfd, input_bfd, info, handle)
4134 bfd *output_bfd;
4135 bfd *input_bfd;
4136 struct bfd_link_info *info;
4137 PTR handle;
4138 {
4139 struct ecoff_debug_info * const debug = &ecoff_data (input_bfd)->debug_info;
4140 const struct ecoff_debug_swap * const swap =
4141 &ecoff_backend (input_bfd)->debug_swap;
4142 HDRR *symhdr = &debug->symbolic_header;
4143 boolean ret;
4144
4145 #define READ(ptr, offset, count, size, type) \
4146 if (symhdr->count == 0) \
4147 debug->ptr = NULL; \
4148 else \
4149 { \
4150 debug->ptr = (type) malloc (size * symhdr->count); \
4151 if (debug->ptr == NULL) \
4152 { \
4153 bfd_set_error (bfd_error_no_memory); \
4154 ret = false; \
4155 goto return_something; \
4156 } \
4157 if ((bfd_seek (input_bfd, (file_ptr) symhdr->offset, SEEK_SET) \
4158 != 0) \
4159 || (bfd_read (debug->ptr, size, symhdr->count, \
4160 input_bfd) != size * symhdr->count)) \
4161 { \
4162 ret = false; \
4163 goto return_something; \
4164 } \
4165 }
4166
4167 /* If raw_syments is not NULL, then the data was already by read by
4168 _bfd_ecoff_slurp_symbolic_info. */
4169 if (ecoff_data (input_bfd)->raw_syments == NULL)
4170 {
4171 READ (line, cbLineOffset, cbLine, sizeof (unsigned char),
4172 unsigned char *);
4173 READ (external_dnr, cbDnOffset, idnMax, swap->external_dnr_size, PTR);
4174 READ (external_pdr, cbPdOffset, ipdMax, swap->external_pdr_size, PTR);
4175 READ (external_sym, cbSymOffset, isymMax, swap->external_sym_size, PTR);
4176 READ (external_opt, cbOptOffset, ioptMax, swap->external_opt_size, PTR);
4177 READ (external_aux, cbAuxOffset, iauxMax, sizeof (union aux_ext),
4178 union aux_ext *);
4179 READ (ss, cbSsOffset, issMax, sizeof (char), char *);
4180 READ (external_fdr, cbFdOffset, ifdMax, swap->external_fdr_size, PTR);
4181 READ (external_rfd, cbRfdOffset, crfd, swap->external_rfd_size, PTR);
4182 }
4183 #undef READ
4184
4185 /* We do not read the external strings or the external symbols. */
4186
4187 ret = (bfd_ecoff_debug_accumulate
4188 (handle, output_bfd, &ecoff_data (output_bfd)->debug_info,
4189 &ecoff_backend (output_bfd)->debug_swap,
4190 input_bfd, debug, swap, info));
4191
4192 return_something:
4193 if (ecoff_data (input_bfd)->raw_syments == NULL)
4194 {
4195 if (debug->line != NULL)
4196 free (debug->line);
4197 if (debug->external_dnr != NULL)
4198 free (debug->external_dnr);
4199 if (debug->external_pdr != NULL)
4200 free (debug->external_pdr);
4201 if (debug->external_sym != NULL)
4202 free (debug->external_sym);
4203 if (debug->external_opt != NULL)
4204 free (debug->external_opt);
4205 if (debug->external_aux != NULL)
4206 free (debug->external_aux);
4207 if (debug->ss != NULL)
4208 free (debug->ss);
4209 if (debug->external_fdr != NULL)
4210 free (debug->external_fdr);
4211 if (debug->external_rfd != NULL)
4212 free (debug->external_rfd);
4213
4214 /* Make sure we don't accidentally follow one of these pointers
4215 into freed memory. */
4216 debug->line = NULL;
4217 debug->external_dnr = NULL;
4218 debug->external_pdr = NULL;
4219 debug->external_sym = NULL;
4220 debug->external_opt = NULL;
4221 debug->external_aux = NULL;
4222 debug->ss = NULL;
4223 debug->external_fdr = NULL;
4224 debug->external_rfd = NULL;
4225 }
4226
4227 return ret;
4228 }
4229
4230 /* Put out information for an external symbol. These come only from
4231 the hash table. */
4232
4233 static boolean
4234 ecoff_link_write_external (h, data)
4235 struct ecoff_link_hash_entry *h;
4236 PTR data;
4237 {
4238 bfd *output_bfd = (bfd *) data;
4239
4240 /* FIXME: We should check if this symbol is being stripped. */
4241
4242 if (h->written)
4243 return true;
4244
4245 if (h->abfd == (bfd *) NULL)
4246 {
4247 h->esym.jmptbl = 0;
4248 h->esym.cobol_main = 0;
4249 h->esym.weakext = 0;
4250 h->esym.reserved = 0;
4251 h->esym.ifd = ifdNil;
4252 h->esym.asym.value = 0;
4253 h->esym.asym.st = stGlobal;
4254
4255 if (h->root.type != bfd_link_hash_defined
4256 && h->root.type != bfd_link_hash_defweak)
4257 h->esym.asym.sc = scAbs;
4258 else
4259 {
4260 asection *output_section;
4261 const char *name;
4262
4263 output_section = h->root.u.def.section->output_section;
4264 name = bfd_section_name (output_section->owner, output_section);
4265
4266 if (strcmp (name, _TEXT) == 0)
4267 h->esym.asym.sc = scText;
4268 else if (strcmp (name, _DATA) == 0)
4269 h->esym.asym.sc = scData;
4270 else if (strcmp (name, _SDATA) == 0)
4271 h->esym.asym.sc = scSData;
4272 else if (strcmp (name, _RDATA) == 0)
4273 h->esym.asym.sc = scRData;
4274 else if (strcmp (name, _BSS) == 0)
4275 h->esym.asym.sc = scBss;
4276 else if (strcmp (name, _SBSS) == 0)
4277 h->esym.asym.sc = scSBss;
4278 else if (strcmp (name, _INIT) == 0)
4279 h->esym.asym.sc = scInit;
4280 else if (strcmp (name, _FINI) == 0)
4281 h->esym.asym.sc = scFini;
4282 else if (strcmp (name, _PDATA) == 0)
4283 h->esym.asym.sc = scPData;
4284 else if (strcmp (name, _XDATA) == 0)
4285 h->esym.asym.sc = scXData;
4286 else
4287 h->esym.asym.sc = scAbs;
4288 }
4289
4290 h->esym.asym.reserved = 0;
4291 h->esym.asym.index = indexNil;
4292 }
4293 else if (h->esym.ifd != -1)
4294 {
4295 struct ecoff_debug_info *debug;
4296
4297 /* Adjust the FDR index for the symbol by that used for the
4298 input BFD. */
4299 debug = &ecoff_data (h->abfd)->debug_info;
4300 BFD_ASSERT (h->esym.ifd >= 0
4301 && h->esym.ifd < debug->symbolic_header.ifdMax);
4302 h->esym.ifd = debug->ifdmap[h->esym.ifd];
4303 }
4304
4305 switch (h->root.type)
4306 {
4307 default:
4308 case bfd_link_hash_new:
4309 abort ();
4310 case bfd_link_hash_undefined:
4311 case bfd_link_hash_undefweak:
4312 if (h->esym.asym.sc != scUndefined
4313 && h->esym.asym.sc != scSUndefined)
4314 h->esym.asym.sc = scUndefined;
4315 break;
4316 case bfd_link_hash_defined:
4317 case bfd_link_hash_defweak:
4318 if (h->esym.asym.sc == scUndefined
4319 || h->esym.asym.sc == scSUndefined)
4320 h->esym.asym.sc = scAbs;
4321 else if (h->esym.asym.sc == scCommon)
4322 h->esym.asym.sc = scBss;
4323 else if (h->esym.asym.sc == scSCommon)
4324 h->esym.asym.sc = scSBss;
4325 h->esym.asym.value = (h->root.u.def.value
4326 + h->root.u.def.section->output_section->vma
4327 + h->root.u.def.section->output_offset);
4328 break;
4329 case bfd_link_hash_common:
4330 if (h->esym.asym.sc != scCommon
4331 && h->esym.asym.sc != scSCommon)
4332 h->esym.asym.sc = scCommon;
4333 h->esym.asym.value = h->root.u.c.size;
4334 break;
4335 case bfd_link_hash_indirect:
4336 case bfd_link_hash_warning:
4337 /* FIXME: Ignore these for now. The circumstances under which
4338 they should be written out are not clear to me. */
4339 return true;
4340 }
4341
4342 /* bfd_ecoff_debug_one_external uses iextMax to keep track of the
4343 symbol number. */
4344 h->indx = ecoff_data (output_bfd)->debug_info.symbolic_header.iextMax;
4345 h->written = 1;
4346
4347 return (bfd_ecoff_debug_one_external
4348 (output_bfd, &ecoff_data (output_bfd)->debug_info,
4349 &ecoff_backend (output_bfd)->debug_swap, h->root.root.string,
4350 &h->esym));
4351 }
4352
4353 /* Relocate and write an ECOFF section into an ECOFF output file. */
4354
4355 static boolean
4356 ecoff_indirect_link_order (output_bfd, info, output_section, link_order)
4357 bfd *output_bfd;
4358 struct bfd_link_info *info;
4359 asection *output_section;
4360 struct bfd_link_order *link_order;
4361 {
4362 asection *input_section;
4363 bfd *input_bfd;
4364 struct ecoff_section_tdata *section_tdata;
4365 bfd_size_type raw_size;
4366 bfd_size_type cooked_size;
4367 bfd_byte *contents = NULL;
4368 bfd_size_type external_reloc_size;
4369 bfd_size_type external_relocs_size;
4370 PTR external_relocs = NULL;
4371
4372 BFD_ASSERT ((output_section->flags & SEC_HAS_CONTENTS) != 0);
4373
4374 if (link_order->size == 0)
4375 return true;
4376
4377 input_section = link_order->u.indirect.section;
4378 input_bfd = input_section->owner;
4379 section_tdata = ecoff_section_data (input_bfd, input_section);
4380
4381 raw_size = input_section->_raw_size;
4382 cooked_size = input_section->_cooked_size;
4383 if (cooked_size == 0)
4384 cooked_size = raw_size;
4385
4386 BFD_ASSERT (input_section->output_section == output_section);
4387 BFD_ASSERT (input_section->output_offset == link_order->offset);
4388 BFD_ASSERT (cooked_size == link_order->size);
4389
4390 /* Get the section contents. We allocate memory for the larger of
4391 the size before relocating and the size after relocating. */
4392 contents = (bfd_byte *) malloc (raw_size >= cooked_size
4393 ? raw_size
4394 : cooked_size);
4395 if (contents == NULL && raw_size != 0)
4396 {
4397 bfd_set_error (bfd_error_no_memory);
4398 goto error_return;
4399 }
4400
4401 /* If we are relaxing, the contents may have already been read into
4402 memory, in which case we copy them into our new buffer. We don't
4403 simply reuse the old buffer in case cooked_size > raw_size. */
4404 if (section_tdata != (struct ecoff_section_tdata *) NULL
4405 && section_tdata->contents != (bfd_byte *) NULL)
4406 memcpy (contents, section_tdata->contents, raw_size);
4407 else
4408 {
4409 if (! bfd_get_section_contents (input_bfd, input_section,
4410 (PTR) contents,
4411 (file_ptr) 0, raw_size))
4412 goto error_return;
4413 }
4414
4415 /* Get the relocs. If we are relaxing MIPS code, they will already
4416 have been read in. Otherwise, we read them in now. */
4417 external_reloc_size = ecoff_backend (input_bfd)->external_reloc_size;
4418 external_relocs_size = external_reloc_size * input_section->reloc_count;
4419
4420 if (section_tdata != (struct ecoff_section_tdata *) NULL)
4421 external_relocs = section_tdata->external_relocs;
4422 else
4423 {
4424 external_relocs = (PTR) malloc (external_relocs_size);
4425 if (external_relocs == NULL && external_relocs_size != 0)
4426 {
4427 bfd_set_error (bfd_error_no_memory);
4428 goto error_return;
4429 }
4430
4431 if (bfd_seek (input_bfd, input_section->rel_filepos, SEEK_SET) != 0
4432 || (bfd_read (external_relocs, 1, external_relocs_size, input_bfd)
4433 != external_relocs_size))
4434 goto error_return;
4435 }
4436
4437 /* Relocate the section contents. */
4438 if (! ((*ecoff_backend (input_bfd)->relocate_section)
4439 (output_bfd, info, input_bfd, input_section, contents,
4440 external_relocs)))
4441 goto error_return;
4442
4443 /* Write out the relocated section. */
4444 if (! bfd_set_section_contents (output_bfd,
4445 output_section,
4446 (PTR) contents,
4447 input_section->output_offset,
4448 cooked_size))
4449 goto error_return;
4450
4451 /* If we are producing relocateable output, the relocs were
4452 modified, and we write them out now. We use the reloc_count
4453 field of output_section to keep track of the number of relocs we
4454 have output so far. */
4455 if (info->relocateable)
4456 {
4457 if (bfd_seek (output_bfd,
4458 (output_section->rel_filepos +
4459 output_section->reloc_count * external_reloc_size),
4460 SEEK_SET) != 0
4461 || (bfd_write (external_relocs, 1, external_relocs_size, output_bfd)
4462 != external_relocs_size))
4463 goto error_return;
4464 output_section->reloc_count += input_section->reloc_count;
4465 }
4466
4467 if (contents != NULL)
4468 free (contents);
4469 if (external_relocs != NULL && section_tdata == NULL)
4470 free (external_relocs);
4471 return true;
4472
4473 error_return:
4474 if (contents != NULL)
4475 free (contents);
4476 if (external_relocs != NULL && section_tdata == NULL)
4477 free (external_relocs);
4478 return false;
4479 }
4480
4481 /* Generate a reloc when linking an ECOFF file. This is a reloc
4482 requested by the linker, and does come from any input file. This
4483 is used to build constructor and destructor tables when linking
4484 with -Ur. */
4485
4486 static boolean
4487 ecoff_reloc_link_order (output_bfd, info, output_section, link_order)
4488 bfd *output_bfd;
4489 struct bfd_link_info *info;
4490 asection *output_section;
4491 struct bfd_link_order *link_order;
4492 {
4493 arelent rel;
4494 struct internal_reloc in;
4495 bfd_size_type external_reloc_size;
4496 bfd_byte *rbuf;
4497 boolean ok;
4498
4499 /* We set up an arelent to pass to the backend adjust_reloc_out
4500 routine. */
4501 rel.address = link_order->offset;
4502
4503 rel.howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
4504 if (rel.howto == 0)
4505 {
4506 bfd_set_error (bfd_error_bad_value);
4507 return false;
4508 }
4509
4510 if (link_order->type == bfd_section_reloc_link_order)
4511 rel.sym_ptr_ptr = link_order->u.reloc.p->u.section->symbol_ptr_ptr;
4512 else
4513 {
4514 /* We can't set up a reloc against a symbol correctly, because
4515 we have no asymbol structure. Currently no adjust_reloc_out
4516 routine cases. */
4517 rel.sym_ptr_ptr = (asymbol **) NULL;
4518 }
4519
4520 /* All ECOFF relocs are in-place. Put the addend into the object
4521 file. */
4522
4523 BFD_ASSERT (rel.howto->partial_inplace);
4524 if (link_order->u.reloc.p->addend != 0)
4525 {
4526 bfd_size_type size;
4527 bfd_reloc_status_type rstat;
4528 bfd_byte *buf;
4529 boolean ok;
4530
4531 size = bfd_get_reloc_size (rel.howto);
4532 buf = (bfd_byte *) bfd_zmalloc (size);
4533 if (buf == (bfd_byte *) NULL)
4534 {
4535 bfd_set_error (bfd_error_no_memory);
4536 return false;
4537 }
4538 rstat = _bfd_relocate_contents (rel.howto, output_bfd,
4539 link_order->u.reloc.p->addend, buf);
4540 switch (rstat)
4541 {
4542 case bfd_reloc_ok:
4543 break;
4544 default:
4545 case bfd_reloc_outofrange:
4546 abort ();
4547 case bfd_reloc_overflow:
4548 if (! ((*info->callbacks->reloc_overflow)
4549 (info,
4550 (link_order->type == bfd_section_reloc_link_order
4551 ? bfd_section_name (output_bfd,
4552 link_order->u.reloc.p->u.section)
4553 : link_order->u.reloc.p->u.name),
4554 rel.howto->name, link_order->u.reloc.p->addend,
4555 (bfd *) NULL, (asection *) NULL, (bfd_vma) 0)))
4556 {
4557 free (buf);
4558 return false;
4559 }
4560 break;
4561 }
4562 ok = bfd_set_section_contents (output_bfd, output_section, (PTR) buf,
4563 (file_ptr) link_order->offset, size);
4564 free (buf);
4565 if (! ok)
4566 return false;
4567 }
4568
4569 rel.addend = 0;
4570
4571 /* Move the information into a internal_reloc structure. */
4572 in.r_vaddr = (rel.address
4573 + bfd_get_section_vma (output_bfd, output_section));
4574 in.r_type = rel.howto->type;
4575
4576 if (link_order->type == bfd_symbol_reloc_link_order)
4577 {
4578 struct ecoff_link_hash_entry *h;
4579
4580 h = ecoff_link_hash_lookup (ecoff_hash_table (info),
4581 link_order->u.reloc.p->u.name,
4582 false, false, true);
4583 if (h != (struct ecoff_link_hash_entry *) NULL
4584 && h->indx != -1)
4585 in.r_symndx = h->indx;
4586 else
4587 {
4588 if (! ((*info->callbacks->unattached_reloc)
4589 (info, link_order->u.reloc.p->u.name, (bfd *) NULL,
4590 (asection *) NULL, (bfd_vma) 0)))
4591 return false;
4592 in.r_symndx = 0;
4593 }
4594 in.r_extern = 1;
4595 }
4596 else
4597 {
4598 CONST char *name;
4599
4600 name = bfd_get_section_name (output_bfd,
4601 link_order->u.reloc.p->u.section);
4602 if (strcmp (name, ".text") == 0)
4603 in.r_symndx = RELOC_SECTION_TEXT;
4604 else if (strcmp (name, ".rdata") == 0)
4605 in.r_symndx = RELOC_SECTION_RDATA;
4606 else if (strcmp (name, ".data") == 0)
4607 in.r_symndx = RELOC_SECTION_DATA;
4608 else if (strcmp (name, ".sdata") == 0)
4609 in.r_symndx = RELOC_SECTION_SDATA;
4610 else if (strcmp (name, ".sbss") == 0)
4611 in.r_symndx = RELOC_SECTION_SBSS;
4612 else if (strcmp (name, ".bss") == 0)
4613 in.r_symndx = RELOC_SECTION_BSS;
4614 else if (strcmp (name, ".init") == 0)
4615 in.r_symndx = RELOC_SECTION_INIT;
4616 else if (strcmp (name, ".lit8") == 0)
4617 in.r_symndx = RELOC_SECTION_LIT8;
4618 else if (strcmp (name, ".lit4") == 0)
4619 in.r_symndx = RELOC_SECTION_LIT4;
4620 else if (strcmp (name, ".xdata") == 0)
4621 in.r_symndx = RELOC_SECTION_XDATA;
4622 else if (strcmp (name, ".pdata") == 0)
4623 in.r_symndx = RELOC_SECTION_PDATA;
4624 else if (strcmp (name, ".fini") == 0)
4625 in.r_symndx = RELOC_SECTION_FINI;
4626 else if (strcmp (name, ".lita") == 0)
4627 in.r_symndx = RELOC_SECTION_LITA;
4628 else if (strcmp (name, "*ABS*") == 0)
4629 in.r_symndx = RELOC_SECTION_ABS;
4630 else
4631 abort ();
4632 in.r_extern = 0;
4633 }
4634
4635 /* Let the BFD backend adjust the reloc. */
4636 (*ecoff_backend (output_bfd)->adjust_reloc_out) (output_bfd, &rel, &in);
4637
4638 /* Get some memory and swap out the reloc. */
4639 external_reloc_size = ecoff_backend (output_bfd)->external_reloc_size;
4640 rbuf = (bfd_byte *) malloc (external_reloc_size);
4641 if (rbuf == (bfd_byte *) NULL)
4642 {
4643 bfd_set_error (bfd_error_no_memory);
4644 return false;
4645 }
4646
4647 (*ecoff_backend (output_bfd)->swap_reloc_out) (output_bfd, &in, (PTR) rbuf);
4648
4649 ok = (bfd_seek (output_bfd,
4650 (output_section->rel_filepos +
4651 output_section->reloc_count * external_reloc_size),
4652 SEEK_SET) == 0
4653 && (bfd_write ((PTR) rbuf, 1, external_reloc_size, output_bfd)
4654 == external_reloc_size));
4655
4656 if (ok)
4657 ++output_section->reloc_count;
4658
4659 free (rbuf);
4660
4661 return ok;
4662 }