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