Add support for non-contiguous memory regions
[deliverable/binutils-gdb.git] / bfd / ecoff.c
CommitLineData
252b5132 1/* Generic ECOFF (Extended-COFF) routines.
b3adc24a 2 Copyright (C) 1990-2020 Free Software Foundation, Inc.
252b5132
RH
3 Original version by Per Bothner.
4 Full support added by Ian Lance Taylor, ian@cygnus.com.
5
b0ac09d2 6 This file is part of BFD, the Binary File Descriptor library.
252b5132 7
b0ac09d2
NC
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
cd123cb7 10 the Free Software Foundation; either version 3 of the License, or
b0ac09d2 11 (at your option) any later version.
252b5132 12
b0ac09d2
NC
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.
252b5132 17
b0ac09d2
NC
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
cd123cb7
NC
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
252b5132 22
252b5132 23#include "sysdep.h"
3db64b00 24#include "bfd.h"
252b5132
RH
25#include "bfdlink.h"
26#include "libbfd.h"
0ba9378a 27#include "ecoff-bfd.h"
252b5132 28#include "aout/ar.h"
252b5132
RH
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"
3b5d3310
NC
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
252b5132
RH
51\f
52/* This stuff is somewhat copied from coffcode.h. */
5f771d47
ILT
53static asection bfd_debug_section =
54{
a8c4d40b
L
55 /* name, id, section_id, index, next, prev, flags, */
56 "*DEBUG*", 0, 0, 0, NULL, NULL, 0,
57 /* user_set_vma, */
58 0,
07d6d2b8
AM
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,
b0dddeec 63 /* sec_flg0, sec_flg1, sec_flg2, sec_flg3, sec_flg4, sec_flg5, */
07d6d2b8 64 0, 0, 0, 0, 0, 0,
4a114e3e 65 /* vma, lma, size, rawsize, compressed_size, relax, relax_count, */
07d6d2b8
AM
66 0, 0, 0, 0, 0, 0, 0,
67 /* output_offset, output_section, alignment_power, */
68 0, NULL, 0,
51d7ee16 69 /* relocation, orelocation, reloc_count, filepos, rel_filepos, */
07d6d2b8
AM
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, */
3b5d3310 78 NULL,
07d6d2b8 79 /* symbol_ptr_ptr, */
3b5d3310 80 NULL,
abf874aa
CL
81 /* map_head, map_tail, */
82 { NULL }, { NULL },
83 /* already_assigned */
84 NULL,
5f771d47 85};
252b5132
RH
86
87/* Create an ECOFF object. */
88
b34976b6 89bfd_boolean
3b5d3310 90_bfd_ecoff_mkobject (bfd *abfd)
252b5132 91{
986f0783 92 size_t amt = sizeof (ecoff_data_type);
b0ac09d2 93
21d799b5 94 abfd->tdata.ecoff_obj_data = (struct ecoff_tdata *) bfd_zalloc (abfd, amt);
252b5132 95 if (abfd->tdata.ecoff_obj_data == NULL)
b34976b6 96 return FALSE;
252b5132 97
b34976b6 98 return TRUE;
252b5132
RH
99}
100
101/* This is a hook called by coff_real_object_p to create any backend
102 specific information. */
103
3b5d3310
NC
104void *
105_bfd_ecoff_mkobject_hook (bfd *abfd, void * filehdr, void * aouthdr)
252b5132
RH
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
82e51918 111 if (! _bfd_ecoff_mkobject (abfd))
252b5132
RH
112 return NULL;
113
114 ecoff = ecoff_data (abfd);
115 ecoff->gp_size = 8;
116 ecoff->sym_filepos = internal_f->f_symptr;
117
3b5d3310 118 if (internal_a != NULL)
252b5132
RH
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
3b5d3310 141 return (void *) ecoff;
252b5132
RH
142}
143
144/* Initialize a new section. */
145
b34976b6 146bfd_boolean
f592407e 147_bfd_ecoff_new_section_hook (bfd *abfd, asection *section)
252b5132 148{
3b5d3310
NC
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 },
a4dd6c97 161 { _SDATA, SEC_ALLOC | SEC_DATA | SEC_LOAD | SEC_SMALL_DATA },
3b5d3310 162 { _RDATA, SEC_ALLOC | SEC_DATA | SEC_LOAD | SEC_READONLY},
a4dd6c97
AM
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},
3b5d3310
NC
165 { _RCONST, SEC_ALLOC | SEC_DATA | SEC_LOAD | SEC_READONLY},
166 { _PDATA, SEC_ALLOC | SEC_DATA | SEC_LOAD | SEC_READONLY},
167 { _BSS, SEC_ALLOC},
a4dd6c97 168 { _SBSS, SEC_ALLOC | SEC_SMALL_DATA},
3b5d3310
NC
169 /* An Irix 4 shared libary. */
170 { _LIB, SEC_COFF_SHARED_LIBRARY}
171 };
172
252b5132
RH
173 section->alignment_power = 4;
174
3b5d3310
NC
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
252b5132
RH
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
f592407e 187 return _bfd_generic_new_section_hook (abfd, section);
252b5132
RH
188}
189
d00dd7dc
AM
190void
191_bfd_ecoff_set_alignment_hook (bfd *abfd ATTRIBUTE_UNUSED,
192 asection *section ATTRIBUTE_UNUSED,
193 void *scnhdr ATTRIBUTE_UNUSED)
194{
195}
196
252b5132
RH
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
b34976b6 202bfd_boolean
3b5d3310 203_bfd_ecoff_set_arch_mach_hook (bfd *abfd, void * filehdr)
252b5132 204{
21d799b5 205 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
252b5132
RH
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;
250d94fd 215 mach = bfd_mach_mips3000;
252b5132
RH
216 break;
217
218 case MIPS_MAGIC_LITTLE2:
219 case MIPS_MAGIC_BIG2:
b0ac09d2 220 /* MIPS ISA level 2: the r6000. */
252b5132 221 arch = bfd_arch_mips;
250d94fd 222 mach = bfd_mach_mips6000;
252b5132
RH
223 break;
224
225 case MIPS_MAGIC_LITTLE3:
226 case MIPS_MAGIC_BIG3:
b0ac09d2 227 /* MIPS ISA level 3: the r4000. */
252b5132 228 arch = bfd_arch_mips;
250d94fd 229 mach = bfd_mach_mips4000;
252b5132
RH
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
88183869 246bfd_boolean
2c3fc389 247_bfd_ecoff_no_long_sections (bfd *abfd, int enable)
88183869
DK
248{
249 (void) abfd;
250 (void) enable;
251 return FALSE;
252}
253
252b5132
RH
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
257static int
3b5d3310 258ecoff_get_magic (bfd *abfd)
252b5132
RH
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:
250d94fd 269 case bfd_mach_mips3000:
252b5132
RH
270 big = MIPS_MAGIC_BIG;
271 little = MIPS_MAGIC_LITTLE;
272 break;
273
250d94fd 274 case bfd_mach_mips6000:
252b5132
RH
275 big = MIPS_MAGIC_BIG2;
276 little = MIPS_MAGIC_LITTLE2;
277 break;
278
250d94fd 279 case bfd_mach_mips4000:
252b5132
RH
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
298static long
3b5d3310 299ecoff_sec_to_styp_flags (const char *name, flagword flags)
252b5132 300{
3b5d3310
NC
301 unsigned int i;
302 static struct
303 {
304 const char * name;
305 long flags;
306 }
307 styp_flags [] =
308 {
07d6d2b8
AM
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 }
3b5d3310
NC
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)
252b5132 343 {
3b5d3310
NC
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;
252b5132 359 }
252b5132
RH
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
b34976b6 369bfd_boolean
3b5d3310
NC
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)
252b5132 375{
21d799b5 376 struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
252b5132 377 long styp_flags = internal_s->s_flags;
7c8ca0e4 378 flagword sec_flags = 0;
252b5132
RH
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;
a4dd6c97
AM
417 if (styp_flags & STYP_SDATA)
418 sec_flags |= SEC_SMALL_DATA;
252b5132 419 }
a4dd6c97
AM
420 else if (styp_flags & STYP_SBSS)
421 sec_flags |= SEC_ALLOC | SEC_SMALL_DATA;
422 else if (styp_flags & STYP_BSS)
7c8ca0e4 423 sec_flags |= SEC_ALLOC;
252b5132 424 else if ((styp_flags & STYP_INFO) || styp_flags == STYP_COMMENT)
7c8ca0e4 425 sec_flags |= SEC_NEVER_LOAD;
252b5132
RH
426 else if ((styp_flags & STYP_LITA)
427 || (styp_flags & STYP_LIT8)
428 || (styp_flags & STYP_LIT4))
a4dd6c97 429 sec_flags |= SEC_DATA |SEC_SMALL_DATA | SEC_LOAD | SEC_ALLOC | SEC_READONLY;
252b5132 430 else if (styp_flags & STYP_ECOFF_LIB)
7c8ca0e4 431 sec_flags |= SEC_COFF_SHARED_LIBRARY;
252b5132 432 else
7c8ca0e4 433 sec_flags |= SEC_ALLOC | SEC_LOAD;
252b5132 434
7c8ca0e4 435 * flags_ptr = sec_flags;
b34976b6 436 return TRUE;
252b5132
RH
437}
438\f
439/* Read in the symbolic header for an ECOFF object file. */
440
b34976b6 441static bfd_boolean
3b5d3310 442ecoff_slurp_symbolic_header (bfd *abfd)
252b5132
RH
443{
444 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
445 bfd_size_type external_hdr_size;
3b5d3310 446 void * raw = NULL;
252b5132
RH
447 HDRR *internal_symhdr;
448
449 /* See if we've already read it in. */
1abaf976 450 if (ecoff_data (abfd)->debug_info.symbolic_header.magic ==
252b5132 451 backend->debug_swap.sym_magic)
b34976b6 452 return TRUE;
252b5132
RH
453
454 /* See whether there is a symbolic header. */
455 if (ecoff_data (abfd)->sym_filepos == 0)
456 {
ed48ec2e 457 abfd->symcount = 0;
b34976b6 458 return TRUE;
252b5132
RH
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);
b34976b6 469 return FALSE;
252b5132
RH
470 }
471
472 /* Read the symbolic information header. */
2bb3687b
AM
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);
252b5132
RH
476 if (raw == NULL)
477 goto error_return;
478
252b5132
RH
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. */
ed48ec2e 489 abfd->symcount = internal_symhdr->isymMax + internal_symhdr->iextMax;
252b5132
RH
490
491 if (raw != NULL)
492 free (raw);
b34976b6 493 return TRUE;
252b5132
RH
494 error_return:
495 if (raw != NULL)
496 free (raw);
b34976b6 497 return FALSE;
252b5132
RH
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
b34976b6 504bfd_boolean
3b5d3310
NC
505_bfd_ecoff_slurp_symbolic_info (bfd *abfd,
506 asection *ignore ATTRIBUTE_UNUSED,
507 struct ecoff_debug_info *debug)
252b5132
RH
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;
3b5d3310 513 void * raw;
252b5132
RH
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;
dc810e39 520 file_ptr pos;
1f4361a7 521 size_t amt;
252b5132
RH
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. */
3b5d3310 527 if (ecoff_data (abfd)->raw_syments != NULL)
b34976b6 528 return TRUE;
252b5132
RH
529 if (ecoff_data (abfd)->sym_filepos == 0)
530 {
ed48ec2e 531 abfd->symcount = 0;
b34976b6 532 return TRUE;
252b5132
RH
533 }
534
535 if (! ecoff_slurp_symbolic_header (abfd))
b34976b6 536 return FALSE;
252b5132
RH
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. */
252b5132
RH
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);
0e327d91 560 /* eraxxon@alumni.rice.edu: ioptMax refers to the size of the
3b5d3310 561 optimization symtab, not the number of entries. */
0e327d91 562 UPDATE_RAW_END (cbOptOffset, ioptMax, sizeof (char));
252b5132
RH
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;
b34976b6 576 return TRUE;
252b5132 577 }
dc810e39
AM
578 pos = ecoff_data (abfd)->sym_filepos;
579 pos += backend->debug_swap.external_hdr_size;
2bb3687b
AM
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;
252b5132
RH
585
586 ecoff_data (abfd)->raw_syments = raw;
587
588 /* Get pointers for the numeric offsets in the HDRR structure. */
3b5d3310
NC
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 \
252b5132 595 - raw_base))
b0ac09d2 596
252b5132 597 FIX (cbLineOffset, line, unsigned char *);
3b5d3310
NC
598 FIX (cbDnOffset, external_dnr, void *);
599 FIX (cbPdOffset, external_pdr, void *);
600 FIX (cbSymOffset, external_sym, void *);
601 FIX (cbOptOffset, external_opt, void *);
252b5132
RH
602 FIX (cbAuxOffset, external_aux, union aux_ext *);
603 FIX (cbSsOffset, ss, char *);
604 FIX (cbSsExtOffset, ssext, char *);
3b5d3310
NC
605 FIX (cbFdOffset, external_fdr, void *);
606 FIX (cbRfdOffset, external_rfd, void *);
607 FIX (cbExtOffset, external_ext, void *);
252b5132
RH
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. */
1f4361a7
AM
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);
252b5132 625 if (debug->fdr == NULL)
b34976b6 626 return FALSE;
252b5132
RH
627 external_fdr_size = backend->debug_swap.external_fdr_size;
628 fdr_ptr = debug->fdr;
629 fraw_src = (char *) debug->external_fdr;
a1165289
NC
630 /* PR 17512: file: 3372-1243-0.004. */
631 if (fraw_src == NULL && internal_symhdr->ifdMax > 0)
632 return FALSE;
252b5132
RH
633 fraw_end = fraw_src + internal_symhdr->ifdMax * external_fdr_size;
634 for (; fraw_src < fraw_end; fraw_src += external_fdr_size, fdr_ptr++)
3b5d3310 635 (*backend->debug_swap.swap_fdr_in) (abfd, (void *) fraw_src, fdr_ptr);
252b5132 636
b34976b6 637 return TRUE;
252b5132
RH
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. */
648static asection ecoff_scom_section;
649static asymbol ecoff_scom_symbol;
650static asymbol *ecoff_scom_symbol_ptr;
651
652/* Create an empty symbol. */
653
654asymbol *
3b5d3310 655_bfd_ecoff_make_empty_symbol (bfd *abfd)
252b5132 656{
d3ce72d0 657 ecoff_symbol_type *new_symbol;
986f0783 658 size_t amt = sizeof (ecoff_symbol_type);
252b5132 659
d3ce72d0
NC
660 new_symbol = (ecoff_symbol_type *) bfd_zalloc (abfd, amt);
661 if (new_symbol == NULL)
3b5d3310 662 return NULL;
d3ce72d0
NC
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;
252b5132
RH
669}
670
671/* Set the BFD flags and section for an ECOFF symbol. */
672
b34976b6 673static bfd_boolean
3b5d3310
NC
674ecoff_set_symbol_info (bfd *abfd,
675 SYMR *ecoff_sym,
676 asymbol *asym,
677 int ext,
678 int weak)
252b5132
RH
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;
b34976b6 698 return TRUE;
252b5132
RH
699 }
700 break;
701 default:
702 asym->flags = BSF_DEBUGGING;
b34976b6 703 return TRUE;
252b5132
RH
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
07d6d2b8
AM
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. */
252b5132
RH
719 if (ecoff_sym->st == stProc
720 || ecoff_sym->st == stLabel
721 || ECOFF_IS_STAB (ecoff_sym))
722 asym->flags |= BSF_DEBUGGING;
723 }
b0ac09d2
NC
724
725 if (ecoff_sym->st == stProc || ecoff_sym->st == stStaticProc)
726 asym->flags |= BSF_FUNCTION;
727
252b5132
RH
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:
3b5d3310 738 asym->section = bfd_make_section_old_way (abfd, _TEXT);
252b5132
RH
739 asym->value -= asym->section->vma;
740 break;
741 case scData:
3b5d3310 742 asym->section = bfd_make_section_old_way (abfd, _DATA);
252b5132
RH
743 asym->value -= asym->section->vma;
744 break;
745 case scBss:
3b5d3310 746 asym->section = bfd_make_section_old_way (abfd, _BSS);
252b5132
RH
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:
3b5d3310
NC
852 /* Mark the symbol as a constructor. */
853 asym->flags |= BSF_CONSTRUCTOR;
252b5132
RH
854 break;
855 }
856 }
b34976b6 857 return TRUE;
252b5132
RH
858}
859
860/* Read an ECOFF symbol table. */
861
b34976b6 862bfd_boolean
3b5d3310 863_bfd_ecoff_slurp_symbol_table (bfd *abfd)
252b5132
RH
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;
3b5d3310 870 void (* const swap_ext_in) (bfd *, void *, EXTR *)
252b5132 871 = backend->debug_swap.swap_ext_in;
3b5d3310 872 void (* const swap_sym_in) (bfd *, void *, SYMR *)
252b5132 873 = backend->debug_swap.swap_sym_in;
252b5132
RH
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;
1f4361a7 880 size_t amt;
252b5132
RH
881
882 /* If we've already read in the symbol table, do nothing. */
883 if (ecoff_data (abfd)->canonical_symbols != NULL)
b34976b6 884 return TRUE;
252b5132
RH
885
886 /* Get the symbolic information. */
3b5d3310 887 if (! _bfd_ecoff_slurp_symbolic_info (abfd, NULL,
252b5132 888 &ecoff_data (abfd)->debug_info))
b34976b6 889 return FALSE;
252b5132 890 if (bfd_get_symcount (abfd) == 0)
b34976b6 891 return TRUE;
252b5132 892
1f4361a7
AM
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);
252b5132 900 if (internal == NULL)
b34976b6 901 return FALSE;
252b5132
RH
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
3b5d3310 912 (*swap_ext_in) (abfd, (void *) eraw_src, &internal_esym);
a1165289
NC
913
914 /* PR 17512: file: 3372-1000-0.004. */
64d29018
NC
915 if (internal_esym.asym.iss >= ecoff_data (abfd)->debug_info.symbolic_header.issExtMax
916 || internal_esym.asym.iss < 0)
a1165289
NC
917 return FALSE;
918
252b5132
RH
919 internal_ptr->symbol.name = (ecoff_data (abfd)->debug_info.ssext
920 + internal_esym.asym.iss);
64d29018 921
252b5132
RH
922 if (!ecoff_set_symbol_info (abfd, &internal_esym.asym,
923 &internal_ptr->symbol, 1,
924 internal_esym.weakext))
b34976b6 925 return FALSE;
64d29018 926
252b5132
RH
927 /* The alpha uses a negative ifd field for section symbols. */
928 if (internal_esym.ifd >= 0)
64d29018
NC
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 }
252b5132
RH
937 else
938 internal_ptr->fdr = NULL;
b34976b6 939 internal_ptr->local = FALSE;
3b5d3310 940 internal_ptr->native = (void *) eraw_src;
252b5132
RH
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
3b5d3310 961 (*swap_sym_in) (abfd, (void *) lraw_src, &internal_sym);
252b5132
RH
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))
b34976b6 967 return FALSE;
252b5132 968 internal_ptr->fdr = fdr_ptr;
b34976b6 969 internal_ptr->local = TRUE;
3b5d3310 970 internal_ptr->native = (void *) lraw_src;
252b5132
RH
971 }
972 }
973
1036838a
NC
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. */
238309aa 979 if (internal_ptr - internal < (ptrdiff_t) bfd_get_symcount (abfd))
1036838a 980 {
ed48ec2e 981 abfd->symcount = internal_ptr - internal;
4eca0228 982 _bfd_error_handler
695344c0 983 /* xgettext:c-format */
871b3ab2 984 (_("%pB: warning: isymMax (%ld) is greater than ifdMax (%ld)"),
1036838a
NC
985 abfd, ecoff_data (abfd)->debug_info.symbolic_header.isymMax,
986 ecoff_data (abfd)->debug_info.symbolic_header.ifdMax);
987 }
988
252b5132
RH
989 ecoff_data (abfd)->canonical_symbols = internal;
990
b34976b6 991 return TRUE;
252b5132
RH
992}
993
994/* Return the amount of space needed for the canonical symbols. */
995
996long
3b5d3310 997_bfd_ecoff_get_symtab_upper_bound (bfd *abfd)
252b5132 998{
3b5d3310 999 if (! _bfd_ecoff_slurp_symbolic_info (abfd, NULL,
252b5132
RH
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
1011long
3b5d3310 1012_bfd_ecoff_canonicalize_symtab (bfd *abfd, asymbol **alocation)
252b5132
RH
1013{
1014 unsigned int counter = 0;
1015 ecoff_symbol_type *symbase;
1016 ecoff_symbol_type **location = (ecoff_symbol_type **) alocation;
1017
82e51918 1018 if (! _bfd_ecoff_slurp_symbol_table (abfd))
252b5132
RH
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 }
3b5d3310 1029 *location++ = NULL;
252b5132
RH
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
1039static void
3b5d3310
NC
1040ecoff_emit_aggregate (bfd *abfd,
1041 FDR *fdr,
1042 char *string,
1043 RNDXR *rndx,
1044 long isym,
1045 const char *which)
252b5132
RH
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;
1abaf976 1053
252b5132
RH
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,
0af1713e 1095 ((unsigned long) indx
252b5132
RH
1096 + debug_info->symbolic_header.iextMax));
1097}
1098
1099/* Convert the type information to string format. */
1100
1101static char *
3b5d3310 1102ecoff_type_to_string (bfd *abfd, FDR *fdr, unsigned int indx)
252b5132
RH
1103{
1104 union aux_ext *aux_ptr;
1105 int bigendian;
1106 AUXU u;
3b5d3310
NC
1107 struct qual
1108 {
252b5132
RH
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
b0ac09d2 1145 /* Go get the basic type. */
252b5132
RH
1146 switch (basic_type)
1147 {
b0ac09d2 1148 case btNil: /* Undefined. */
252b5132
RH
1149 strcpy (p1, "nil");
1150 break;
1151
b0ac09d2 1152 case btAdr: /* Address - integer same size as pointer. */
252b5132
RH
1153 strcpy (p1, "address");
1154 break;
1155
b0ac09d2 1156 case btChar: /* Character. */
252b5132
RH
1157 strcpy (p1, "char");
1158 break;
1159
b0ac09d2 1160 case btUChar: /* Unsigned character. */
252b5132
RH
1161 strcpy (p1, "unsigned char");
1162 break;
1163
b0ac09d2 1164 case btShort: /* Short. */
252b5132
RH
1165 strcpy (p1, "short");
1166 break;
1167
b0ac09d2 1168 case btUShort: /* Unsigned short. */
252b5132
RH
1169 strcpy (p1, "unsigned short");
1170 break;
1171
b0ac09d2 1172 case btInt: /* Int. */
252b5132
RH
1173 strcpy (p1, "int");
1174 break;
1175
b0ac09d2 1176 case btUInt: /* Unsigned int. */
252b5132
RH
1177 strcpy (p1, "unsigned int");
1178 break;
1179
b0ac09d2 1180 case btLong: /* Long. */
252b5132
RH
1181 strcpy (p1, "long");
1182 break;
1183
b0ac09d2 1184 case btULong: /* Unsigned long. */
252b5132
RH
1185 strcpy (p1, "unsigned long");
1186 break;
1187
b0ac09d2 1188 case btFloat: /* Float (real). */
252b5132
RH
1189 strcpy (p1, "float");
1190 break;
1191
b0ac09d2 1192 case btDouble: /* Double (real). */
252b5132
RH
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
b0ac09d2 1200 case btStruct: /* Structure (Record). */
252b5132
RH
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");
b0ac09d2 1205 indx++; /* Skip aux words. */
252b5132
RH
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
b0ac09d2 1212 case btUnion: /* Union. */
252b5132
RH
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");
b0ac09d2 1217 indx++; /* Skip aux words. */
252b5132
RH
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
b0ac09d2 1224 case btEnum: /* Enumeration. */
252b5132
RH
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");
b0ac09d2 1229 indx++; /* Skip aux words. */
252b5132
RH
1230 break;
1231
b0ac09d2 1232 case btTypedef: /* Defined via a typedef, isymRef points. */
252b5132
RH
1233 strcpy (p1, "typedef");
1234 break;
1235
b0ac09d2 1236 case btRange: /* Subrange of int. */
252b5132
RH
1237 strcpy (p1, "subrange");
1238 break;
1239
b0ac09d2 1240 case btSet: /* Pascal sets. */
252b5132
RH
1241 strcpy (p1, "set");
1242 break;
1243
b0ac09d2 1244 case btComplex: /* Fortran complex. */
252b5132
RH
1245 strcpy (p1, "complex");
1246 break;
1247
b0ac09d2 1248 case btDComplex: /* Fortran double complex. */
252b5132
RH
1249 strcpy (p1, "double complex");
1250 break;
1251
b0ac09d2 1252 case btIndirect: /* Forward or unnamed typedef. */
252b5132
RH
1253 strcpy (p1, "forward/unamed typedef");
1254 break;
1255
b0ac09d2 1256 case btFixedDec: /* Fixed Decimal. */
252b5132
RH
1257 strcpy (p1, "fixed decimal");
1258 break;
1259
b0ac09d2 1260 case btFloatDec: /* Float Decimal. */
252b5132
RH
1261 strcpy (p1, "float decimal");
1262 break;
1263
b0ac09d2 1264 case btString: /* Varying Length Character String. */
252b5132
RH
1265 strcpy (p1, "string");
1266 break;
1267
b0ac09d2 1268 case btBit: /* Aligned Bit String. */
252b5132
RH
1269 strcpy (p1, "bit");
1270 break;
1271
b0ac09d2 1272 case btPicture: /* Picture. */
252b5132
RH
1273 strcpy (p1, "picture");
1274 break;
1275
b0ac09d2 1276 case btVoid: /* Void. */
252b5132
RH
1277 strcpy (p1, "void");
1278 break;
1279
1280 default:
59d08d6c 1281 sprintf (p1, _("unknown basic type %d"), (int) basic_type);
252b5132
RH
1282 break;
1283 }
1284
1285 p1 += strlen (buffer1);
1286
b0ac09d2 1287 /* If this is a bitfield, get the bitsize. */
252b5132
RH
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
b0ac09d2 1297 /* Deal with any qualifiers. */
252b5132
RH
1298 if (qualifiers[0].type != tqNil)
1299 {
b0ac09d2 1300 /* Snarf up any array bounds in the correct order. Arrays
07d6d2b8
AM
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. */
252b5132
RH
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
b0ac09d2 1321 /* Now print out the qualifiers. */
252b5132
RH
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
1abaf976 1356 programmer writes them). C is such a fun language.... */
252b5132
RH
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
252b5132 1396void
3b5d3310
NC
1397_bfd_ecoff_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
1398 asymbol *symbol,
1399 symbol_info *ret)
252b5132
RH
1400{
1401 bfd_symbol_info (symbol, ret);
1402}
1403
1404/* Return whether this is a local label. */
1405
b34976b6 1406bfd_boolean
3b5d3310
NC
1407_bfd_ecoff_bfd_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
1408 const char *name)
252b5132
RH
1409{
1410 return name[0] == '$';
1411}
1412
1413/* Print information about an ECOFF symbol. */
1414
1415void
3b5d3310
NC
1416_bfd_ecoff_print_symbol (bfd *abfd,
1417 void * filep,
1418 asymbol *symbol,
1419 bfd_print_symbol_type how)
252b5132
RH
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;
1abaf976 1434
252b5132
RH
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:
b0ac09d2 1455 /* Print out the symbols in a reasonable way. */
252b5132
RH
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
b0ac09d2 1529 /* This switch is basically from gcc/mips-tdump.c. */
252b5132
RH
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
1abaf976 1548 fprintf (file, _("\n First symbol: %ld"),
252b5132
RH
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)
695344c0 1560 /* xgettext:c-format */
252b5132
RH
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
b34976b6 1604static bfd_boolean
3b5d3310
NC
1605ecoff_slurp_reloc_table (bfd *abfd,
1606 asection *section,
1607 asymbol **symbols)
252b5132
RH
1608{
1609 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
1610 arelent *internal_relocs;
1611 bfd_size_type external_reloc_size;
dc810e39 1612 bfd_size_type amt;
2bb3687b 1613 bfd_byte *external_relocs;
252b5132
RH
1614 arelent *rptr;
1615 unsigned int i;
1616
3b5d3310 1617 if (section->relocation != NULL
252b5132
RH
1618 || section->reloc_count == 0
1619 || (section->flags & SEC_CONSTRUCTOR) != 0)
b34976b6 1620 return TRUE;
252b5132 1621
82e51918 1622 if (! _bfd_ecoff_slurp_symbol_table (abfd))
b34976b6 1623 return FALSE;
1abaf976 1624
252b5132 1625 external_reloc_size = backend->external_reloc_size;
dc810e39 1626 amt = external_reloc_size * section->reloc_count;
252b5132 1627 if (bfd_seek (abfd, section->rel_filepos, SEEK_SET) != 0)
b34976b6 1628 return FALSE;
2bb3687b
AM
1629 external_relocs = _bfd_alloc_and_read (abfd, amt, amt);
1630 if (external_relocs == NULL)
b34976b6 1631 return FALSE;
252b5132 1632
806470a2
AM
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
252b5132
RH
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 {
dc810e39 1668 const char *sec_name;
252b5132
RH
1669 asection *sec;
1670
1671 /* r_symndx is a section key. */
1672 switch (intern.r_symndx)
1673 {
3b5d3310
NC
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;
252b5132
RH
1688 default: abort ();
1689 }
1690
1691 sec = bfd_get_section_by_name (abfd, sec_name);
3b5d3310 1692 if (sec == NULL)
252b5132
RH
1693 abort ();
1694 rptr->sym_ptr_ptr = sec->symbol_ptr_ptr;
1695
fd361982 1696 rptr->addend = - bfd_section_vma (sec);
252b5132
RH
1697 }
1698
fd361982 1699 rptr->address = intern.r_vaddr - bfd_section_vma (section);
252b5132
RH
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
b34976b6 1710 return TRUE;
252b5132
RH
1711}
1712
1713/* Get a canonical list of relocs. */
1714
1715long
3b5d3310
NC
1716_bfd_ecoff_canonicalize_reloc (bfd *abfd,
1717 asection *section,
1718 arelent **relptr,
1719 asymbol **symbols)
252b5132
RH
1720{
1721 unsigned int count;
1722
1abaf976 1723 if (section->flags & SEC_CONSTRUCTOR)
252b5132
RH
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
1abaf976 1736 {
252b5132
RH
1737 arelent *tblptr;
1738
82e51918 1739 if (! ecoff_slurp_reloc_table (abfd, section, symbols))
252b5132
RH
1740 return -1;
1741
1742 tblptr = section->relocation;
1743
1744 for (count = 0; count < section->reloc_count; count++)
1745 *relptr++ = tblptr++;
1746 }
1747
3b5d3310 1748 *relptr = NULL;
252b5132
RH
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
b34976b6 1757bfd_boolean
3b5d3310 1758_bfd_ecoff_find_nearest_line (bfd *abfd,
fb167eb2 1759 asymbol **symbols ATTRIBUTE_UNUSED,
3b5d3310 1760 asection *section,
3b5d3310
NC
1761 bfd_vma offset,
1762 const char **filename_ptr,
1763 const char **functionname_ptr,
fb167eb2
AM
1764 unsigned int *retline_ptr,
1765 unsigned int *discriminator_ptr)
252b5132
RH
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. */
3b5d3310 1773 if (! _bfd_ecoff_slurp_symbolic_info (abfd, NULL, debug_info)
252b5132 1774 || bfd_get_symcount (abfd) == 0)
b34976b6 1775 return FALSE;
252b5132
RH
1776
1777 if (ecoff_data (abfd)->find_line_info == NULL)
1778 {
986f0783 1779 size_t amt = sizeof (struct ecoff_find_line);
3b5d3310 1780
21d799b5 1781 ecoff_data (abfd)->find_line_info =
07d6d2b8 1782 (struct ecoff_find_line *) bfd_zalloc (abfd, amt);
252b5132 1783 if (ecoff_data (abfd)->find_line_info == NULL)
b34976b6 1784 return FALSE;
252b5132 1785 }
252b5132 1786
fb167eb2
AM
1787 if (discriminator_ptr)
1788 *discriminator_ptr = 0;
1789 line_info = ecoff_data (abfd)->find_line_info;
252b5132
RH
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
b34976b6 1808bfd_boolean
3b5d3310 1809_bfd_ecoff_bfd_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
252b5132
RH
1810{
1811 struct ecoff_debug_info *iinfo = &ecoff_data (ibfd)->debug_info;
1812 struct ecoff_debug_info *oinfo = &ecoff_data (obfd)->debug_info;
3b5d3310 1813 int i;
252b5132
RH
1814 asymbol **sym_ptr_ptr;
1815 size_t c;
b34976b6 1816 bfd_boolean local;
252b5132
RH
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)
b34976b6 1822 return TRUE;
252b5132
RH
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);
3b5d3310 1837 if (c == 0 || sym_ptr_ptr == NULL)
b34976b6 1838 return TRUE;
252b5132
RH
1839
1840 /* See if there are any local symbols. */
b34976b6 1841 local = FALSE;
252b5132
RH
1842 for (; c > 0; c--, sym_ptr_ptr++)
1843 {
1844 if (ecoffsymbol (*sym_ptr_ptr)->local)
1845 {
b34976b6 1846 local = TRUE;
252b5132
RH
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
b34976b6 1909 return TRUE;
252b5132
RH
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
b34976b6 1916bfd_boolean
3b5d3310
NC
1917_bfd_ecoff_set_arch_mach (bfd *abfd,
1918 enum bfd_architecture arch,
1919 unsigned long machine)
252b5132
RH
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
252b5132 1927int
a6b96beb
AM
1928_bfd_ecoff_sizeof_headers (bfd *abfd,
1929 struct bfd_link_info *info ATTRIBUTE_UNUSED)
252b5132
RH
1930{
1931 asection *current;
1932 int c;
1933 int ret;
1934
1935 c = 0;
1936 for (current = abfd->sections;
3b5d3310 1937 current != NULL;
1abaf976 1938 current = current->next)
252b5132
RH
1939 ++c;
1940
1941 ret = (bfd_coff_filhsz (abfd)
1942 + bfd_coff_aoutsz (abfd)
1943 + c * bfd_coff_scnhsz (abfd));
544008aa 1944 return (int) BFD_ALIGN (ret, 16);
252b5132
RH
1945}
1946
1947/* Get the contents of a section. */
1948
b34976b6 1949bfd_boolean
3b5d3310
NC
1950_bfd_ecoff_get_section_contents (bfd *abfd,
1951 asection *section,
1952 void * location,
1953 file_ptr offset,
1954 bfd_size_type count)
252b5132
RH
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
1963static int
3b5d3310 1964ecoff_sort_hdrs (const void * arg1, const void * arg2)
252b5132
RH
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
b34976b6 1990static bfd_boolean
3b5d3310 1991ecoff_compute_section_file_positions (bfd *abfd)
252b5132
RH
1992{
1993 file_ptr sofar, file_sofar;
1994 asection **sorted_hdrs;
1995 asection *current;
1996 unsigned int i;
1997 file_ptr old_sofar;
b34976b6
AM
1998 bfd_boolean rdata_in_text;
1999 bfd_boolean first_data, first_nonalloc;
252b5132 2000 const bfd_vma round = ecoff_backend (abfd)->round;
dc810e39 2001 bfd_size_type amt;
252b5132 2002
a6b96beb 2003 sofar = _bfd_ecoff_sizeof_headers (abfd, NULL);
252b5132
RH
2004 file_sofar = sofar;
2005
2006 /* Sort the sections by VMA. */
dc810e39
AM
2007 amt = abfd->section_count;
2008 amt *= sizeof (asection *);
21d799b5 2009 sorted_hdrs = (asection **) bfd_malloc (amt);
252b5132 2010 if (sorted_hdrs == NULL)
b34976b6 2011 return FALSE;
252b5132
RH
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];
3b5d3310 2029 if (streq (current->name, _RDATA))
252b5132
RH
2030 break;
2031 if ((current->flags & SEC_CODE) == 0
3b5d3310
NC
2032 && ! streq (current->name, _PDATA)
2033 && ! streq (current->name, _RCONST))
252b5132 2034 {
b34976b6 2035 rdata_in_text = FALSE;
252b5132
RH
2036 break;
2037 }
2038 }
2039 }
2040 ecoff_data (abfd)->rdata_in_text = rdata_in_text;
2041
b34976b6
AM
2042 first_data = TRUE;
2043 first_nonalloc = TRUE;
252b5132
RH
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. */
3b5d3310 2054 if (streq (current->name, _PDATA))
eea6121a 2055 current->line_filepos = current->size / 8;
252b5132
RH
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
3b5d3310
NC
2070 || ! streq (current->name, _RDATA))
2071 && ! streq (current->name, _PDATA)
2072 && ! streq (current->name, _RCONST))
252b5132
RH
2073 {
2074 sofar = (sofar + round - 1) &~ (round - 1);
2075 file_sofar = (file_sofar + round - 1) &~ (round - 1);
b34976b6 2076 first_data = FALSE;
252b5132 2077 }
3b5d3310 2078 else if (streq (current->name, _LIB))
252b5132
RH
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
07d6d2b8
AM
2092 as the .comment section on the Alpha. This leaves room
2093 for the .bss section. */
b34976b6 2094 first_nonalloc = FALSE;
252b5132
RH
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
eea6121a 2116 sofar += current->size;
252b5132 2117 if ((current->flags & SEC_HAS_CONTENTS) != 0)
eea6121a 2118 file_sofar += current->size;
252b5132 2119
b0ac09d2 2120 /* Make sure that this section is of the right size too. */
252b5132
RH
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);
eea6121a 2125 current->size += sofar - old_sofar;
252b5132
RH
2126 }
2127
2128 free (sorted_hdrs);
2129 sorted_hdrs = NULL;
2130
2131 ecoff_data (abfd)->reloc_filepos = file_sofar;
2132
b34976b6 2133 return TRUE;
252b5132
RH
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
2140static bfd_size_type
3b5d3310 2141ecoff_compute_reloc_file_positions (bfd *abfd)
252b5132
RH
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 ();
b34976b6 2154 abfd->output_has_begun = TRUE;
252b5132 2155 }
1abaf976 2156
252b5132
RH
2157 reloc_base = ecoff_data (abfd)->reloc_filepos;
2158
2159 reloc_size = 0;
2160 for (current = abfd->sections;
3b5d3310 2161 current != NULL;
1abaf976 2162 current = current->next)
252b5132
RH
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
b34976b6 2194bfd_boolean
3b5d3310
NC
2195_bfd_ecoff_set_section_contents (bfd *abfd,
2196 asection *section,
2197 const void * location,
2198 file_ptr offset,
2199 bfd_size_type count)
252b5132 2200{
dc810e39
AM
2201 file_ptr pos;
2202
252b5132 2203 /* This must be done first, because bfd_set_section_contents is
b34976b6 2204 going to set output_has_begun to TRUE. */
3b5d3310
NC
2205 if (! abfd->output_has_begun
2206 && ! ecoff_compute_section_file_positions (abfd))
2207 return FALSE;
252b5132
RH
2208
2209 /* Handle the .lib section specially so that Irix 4 shared libraries
2210 work out. See coff_set_section_contents in coffcode.h. */
3b5d3310 2211 if (streq (section->name, _LIB))
252b5132
RH
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)
b34976b6 2227 return TRUE;
252b5132 2228
dc810e39
AM
2229 pos = section->filepos + offset;
2230 if (bfd_seek (abfd, pos, SEEK_SET) != 0
2231 || bfd_bwrite (location, count, abfd) != count)
b34976b6 2232 return FALSE;
252b5132 2233
b34976b6 2234 return TRUE;
252b5132
RH
2235}
2236
252b5132
RH
2237/* Set the GP value for an ECOFF file. This is a hook used by the
2238 assembler. */
2239
b34976b6 2240bfd_boolean
3b5d3310 2241bfd_ecoff_set_gp_value (bfd *abfd, bfd_vma gp_value)
252b5132
RH
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);
b34976b6 2247 return FALSE;
252b5132
RH
2248 }
2249
2250 ecoff_data (abfd)->gp = gp_value;
2251
b34976b6 2252 return TRUE;
252b5132
RH
2253}
2254
2255/* Set the register masks for an ECOFF file. This is a hook used by
2256 the assembler. */
2257
b34976b6 2258bfd_boolean
3b5d3310
NC
2259bfd_ecoff_set_regmasks (bfd *abfd,
2260 unsigned long gprmask,
2261 unsigned long fprmask,
2262 unsigned long *cprmask)
252b5132
RH
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);
b34976b6 2270 return FALSE;
252b5132
RH
2271 }
2272
2273 tdata = ecoff_data (abfd);
2274 tdata->gprmask = gprmask;
2275 tdata->fprmask = fprmask;
3b5d3310 2276 if (cprmask != NULL)
252b5132 2277 {
b0ac09d2 2278 int i;
252b5132
RH
2279
2280 for (i = 0; i < 3; i++)
2281 tdata->cprmask[i] = cprmask[i];
2282 }
2283
b34976b6 2284 return TRUE;
252b5132
RH
2285}
2286
2287/* Get ECOFF EXTR information for an external symbol. This function
2288 is passed to bfd_ecoff_debug_externals. */
2289
b34976b6 2290static bfd_boolean
3b5d3310 2291ecoff_get_extr (asymbol *sym, EXTR *esym)
252b5132
RH
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)
b34976b6 2303 return FALSE;
252b5132
RH
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;
b34976b6 2315 return TRUE;
252b5132
RH
2316 }
2317
2318 ecoff_sym_ptr = ecoffsymbol (sym);
2319
2320 if (ecoff_sym_ptr->local)
b34976b6 2321 return FALSE;
252b5132
RH
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)
e6f7f6d1 2332 && ! bfd_is_und_section (bfd_asymbol_section (sym)))
252b5132
RH
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);
3b5d3310 2343 if (input_debug->ifdmap != NULL)
252b5132
RH
2344 esym->ifd = input_debug->ifdmap[esym->ifd];
2345 }
2346
b34976b6 2347 return TRUE;
252b5132
RH
2348}
2349
2350/* Set the external symbol index. This routine is passed to
2351 bfd_ecoff_debug_externals. */
2352
2353static void
3b5d3310 2354ecoff_set_index (asymbol *sym, bfd_size_type indx)
252b5132
RH
2355{
2356 ecoff_set_sym_index (sym, indx);
2357}
2358
2359/* Write out an ECOFF file. */
2360
b34976b6 2361bfd_boolean
3b5d3310 2362_bfd_ecoff_write_object_contents (bfd *abfd)
252b5132
RH
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;
3b5d3310 2372 void (* const adjust_reloc_out) (bfd *, const arelent *, struct internal_reloc *)
252b5132 2373 = backend->adjust_reloc_out;
3b5d3310 2374 void (* const swap_reloc_out) (bfd *, const struct internal_reloc *, void *)
252b5132
RH
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;
b34976b6 2383 bfd_boolean set_text_start;
252b5132
RH
2384 bfd_size_type data_size;
2385 bfd_vma data_start;
b34976b6 2386 bfd_boolean set_data_start;
252b5132 2387 bfd_size_type bss_size;
3b5d3310
NC
2388 void * buff = NULL;
2389 void * reloc_buff = NULL;
252b5132
RH
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;
3b5d3310 2400 current != NULL;
1abaf976 2401 current = current->next)
252b5132
RH
2402 {
2403 current->target_index = count;
2404 ++count;
2405 }
2406
2407 if ((abfd->flags & D_PAGED) != 0)
a6b96beb 2408 text_size = _bfd_ecoff_sizeof_headers (abfd, NULL);
252b5132
RH
2409 else
2410 text_size = 0;
2411 text_start = 0;
b34976b6 2412 set_text_start = FALSE;
252b5132
RH
2413 data_size = 0;
2414 data_start = 0;
b34976b6 2415 set_data_start = FALSE;
252b5132
RH
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;
3b5d3310 2424
252b5132
RH
2425 siz = scnhsz;
2426 if (siz < filhsz)
2427 siz = filhsz;
2428 if (siz < aoutsz)
2429 siz = aoutsz;
3b5d3310 2430 buff = bfd_malloc (siz);
252b5132
RH
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;
3b5d3310 2438
252b5132 2439 for (current = abfd->sections;
3b5d3310 2440 current != NULL;
252b5132
RH
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. */
fd361982 2451 vma = bfd_section_vma (current);
3b5d3310 2452 if (streq (current->name, _LIB))
252b5132
RH
2453 section.s_vaddr = 0;
2454 else
2455 section.s_vaddr = vma;
2456
2457 section.s_paddr = current->lma;
eea6121a 2458 section.s_size = current->size;
252b5132
RH
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. */
3b5d3310 2474 if (! streq (current->name, _PDATA))
252b5132
RH
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
3b5d3310 2490 if (bfd_coff_swap_scnhdr_out (abfd, (void *) &section, buff) == 0
dc810e39 2491 || bfd_bwrite (buff, scnhsz, abfd) != scnhsz)
252b5132
RH
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 {
eea6121a 2509 text_size += current->size;
252b5132
RH
2510 if (! set_text_start || text_start > vma)
2511 {
2512 text_start = vma;
b34976b6 2513 set_text_start = TRUE;
252b5132
RH
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 {
eea6121a 2525 data_size += current->size;
252b5132
RH
2526 if (! set_data_start || data_start > vma)
2527 {
2528 data_start = vma;
b34976b6 2529 set_data_start = TRUE;
252b5132
RH
2530 }
2531 }
2532 else if ((section.s_flags & STYP_BSS) != 0
2533 || (section.s_flags & STYP_SBSS) != 0)
eea6121a 2534 bss_size += current->size;
252b5132
RH
2535 else if (section.s_flags == 0
2536 || (section.s_flags & STYP_ECOFF_LIB) != 0
2537 || section.s_flags == STYP_COMMENT)
b0ac09d2 2538 /* Do nothing. */ ;
252b5132
RH
2539 else
2540 abort ();
1abaf976 2541 }
252b5132
RH
2542
2543 /* Set up the file header. */
252b5132
RH
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. */
252b5132
RH
2636 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
2637 goto error_return;
2638
3b5d3310 2639 bfd_coff_swap_filehdr_out (abfd, (void *) &internal_f, buff);
dc810e39 2640 if (bfd_bwrite (buff, filhsz, abfd) != filhsz)
252b5132
RH
2641 goto error_return;
2642
3b5d3310 2643 bfd_coff_swap_aouthdr_out (abfd, (void *) &internal_a, buff);
dc810e39 2644 if (bfd_bwrite (buff, aoutsz, abfd) != aoutsz)
252b5132
RH
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;
82e51918
AM
2657 if (! bfd_ecoff_debug_externals (abfd, debug, &backend->debug_swap,
2658 (abfd->flags & EXEC_P) == 0,
2659 ecoff_get_extr, ecoff_set_index))
252b5132
RH
2660 goto error_return;
2661
2662 /* Write out the relocs. */
2663 for (current = abfd->sections;
3b5d3310 2664 current != NULL;
252b5132
RH
2665 current = current->next)
2666 {
2667 arelent **reloc_ptr_ptr;
2668 arelent **reloc_end;
2669 char *out_ptr;
dc810e39 2670 bfd_size_type amt;
252b5132
RH
2671
2672 if (current->reloc_count == 0)
2673 continue;
2674
dc810e39
AM
2675 amt = current->reloc_count * external_reloc_size;
2676 reloc_buff = bfd_alloc (abfd, amt);
252b5132
RH
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;
0adc9281 2683
252b5132
RH
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;
1abaf976 2691
3b5d3310 2692 memset ((void *) &in, 0, sizeof in);
252b5132
RH
2693
2694 reloc = *reloc_ptr_ptr;
2695 sym = *reloc->sym_ptr_ptr;
2696
0adc9281
NC
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
fd361982 2702 in.r_vaddr = reloc->address + bfd_section_vma (current);
252b5132
RH
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 {
dc810e39 2712 const char *name;
91d6fa6a 2713 unsigned int j;
3b5d3310
NC
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 };
252b5132 2737
fd361982 2738 name = bfd_section_name (bfd_asymbol_section (sym));
3b5d3310 2739
91d6fa6a
NC
2740 for (j = 0; j < ARRAY_SIZE (section_symndx); j++)
2741 if (streq (name, section_symndx[j].name))
3b5d3310 2742 {
91d6fa6a 2743 in.r_symndx = section_symndx[j].r_symndx;
3b5d3310
NC
2744 break;
2745 }
2746
91d6fa6a 2747 if (j == ARRAY_SIZE (section_symndx))
252b5132
RH
2748 abort ();
2749 in.r_extern = 0;
2750 }
2751
2752 (*adjust_reloc_out) (abfd, reloc, &in);
2753
3b5d3310 2754 (*swap_reloc_out) (abfd, &in, (void *) out_ptr);
252b5132
RH
2755 }
2756
2757 if (bfd_seek (abfd, current->rel_filepos, SEEK_SET) != 0)
2758 goto error_return;
dc810e39
AM
2759 amt = current->reloc_count * external_reloc_size;
2760 if (bfd_bwrite (reloc_buff, amt, abfd) != amt)
252b5132
RH
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. */
82e51918
AM
2770 if (! bfd_ecoff_write_debug (abfd, debug, &backend->debug_swap,
2771 ecoff_data (abfd)->sym_filepos))
252b5132
RH
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;
dc810e39 2789 if (bfd_bread (&c, (bfd_size_type) 1, abfd) == 0)
252b5132
RH
2790 c = 0;
2791 if (bfd_seek (abfd, (file_ptr) ecoff_data (abfd)->sym_filepos - 1,
2792 SEEK_SET) != 0)
2793 goto error_return;
dc810e39 2794 if (bfd_bwrite (&c, (bfd_size_type) 1, abfd) != 1)
252b5132
RH
2795 goto error_return;
2796 }
2797
2798 if (reloc_buff != NULL)
2799 bfd_release (abfd, reloc_buff);
2800 if (buff != NULL)
2801 free (buff);
b34976b6 2802 return TRUE;
252b5132
RH
2803 error_return:
2804 if (reloc_buff != NULL)
2805 bfd_release (abfd, reloc_buff);
2806 if (buff != NULL)
2807 free (buff);
b34976b6 2808 return FALSE;
252b5132
RH
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
07d6d2b8
AM
2841#define ARMAP_BIG_ENDIAN 'B'
2842#define ARMAP_LITTLE_ENDIAN 'L'
2843#define ARMAP_MARKER 'E'
2844#define ARMAP_START_LENGTH 10
3b5d3310 2845#define ARMAP_HEADER_MARKER_INDEX 10
07d6d2b8
AM
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 "_ "
252b5132
RH
2851
2852/* This is a magic number used in the hashing algorithm. */
07d6d2b8 2853#define ARMAP_HASH_MAGIC 0x9dd68ab5
252b5132
RH
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
2860static unsigned int
3b5d3310
NC
2861ecoff_armap_hash (const char *s,
2862 unsigned int *rehash,
2863 unsigned int size,
2864 unsigned int hlog)
252b5132
RH
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
b34976b6 2880bfd_boolean
3b5d3310 2881_bfd_ecoff_slurp_armap (bfd *abfd)
252b5132
RH
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;
c6a3cf87 2891 carsym *symdef_ptr;
252b5132 2892 char *stringbase;
dc810e39 2893 bfd_size_type amt;
1abaf976 2894
252b5132 2895 /* Get the name of the first element. */
3b5d3310 2896 i = bfd_bread ((void *) nextname, (bfd_size_type) 16, abfd);
252b5132 2897 if (i == 0)
b34976b6 2898 return TRUE;
252b5132 2899 if (i != 16)
b34976b6 2900 return FALSE;
252b5132
RH
2901
2902 if (bfd_seek (abfd, (file_ptr) -16, SEEK_CUR) != 0)
b34976b6 2903 return FALSE;
252b5132
RH
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. */
0112cd26 2910 if (CONST_STRNEQ (nextname, "/ "))
252b5132
RH
2911 return bfd_slurp_armap (abfd);
2912
2913 /* See if the first element is an armap. */
3b5d3310 2914 if (! strneq (nextname, ecoff_backend (abfd)->armap_start, ARMAP_START_LENGTH)
252b5132
RH
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)
3b5d3310 2921 || ! strneq (nextname + ARMAP_END_INDEX, ARMAP_END, sizeof ARMAP_END - 1))
252b5132 2922 {
ed48ec2e 2923 abfd->has_armap = FALSE;
b34976b6 2924 return TRUE;
252b5132
RH
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);
b34976b6 2934 return FALSE;
252b5132
RH
2935 }
2936
2937 /* Read in the armap. */
2938 ardata = bfd_ardata (abfd);
2939 mapdata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
3b5d3310 2940 if (mapdata == NULL)
b34976b6 2941 return FALSE;
252b5132 2942 parsed_size = mapdata->parsed_size;
06e7acd7 2943 free (mapdata);
1abaf976 2944
2bb3687b 2945 raw_armap = (char *) _bfd_alloc_and_read (abfd, parsed_size, parsed_size);
3b5d3310 2946 if (raw_armap == NULL)
252b5132
RH
2947 {
2948 if (bfd_get_error () != bfd_error_system_call)
2949 bfd_set_error (bfd_error_malformed_archive);
b34976b6 2950 return FALSE;
252b5132 2951 }
1abaf976 2952
3b5d3310 2953 ardata->tdata = (void *) raw_armap;
252b5132 2954
dc810e39 2955 count = H_GET_32 (abfd, raw_armap);
252b5132
RH
2956
2957 ardata->symdef_count = 0;
3b5d3310 2958 ardata->cache = NULL;
252b5132
RH
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. */
252b5132
RH
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;
1abaf976 2980
dc810e39
AM
2981 name_offset = H_GET_32 (abfd, raw_ptr);
2982 file_offset = H_GET_32 (abfd, (raw_ptr + 4));
252b5132
RH
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))
dc810e39 2994 BFD_ASSERT (H_GET_32 (abfd, (raw_armap + 8 + srch * 8)) != 0);
252b5132
RH
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)
dc810e39 3003 if (H_GET_32 (abfd, (raw_ptr + 4)) != 0)
252b5132
RH
3004 ++ardata->symdef_count;
3005
dc810e39 3006 amt = ardata->symdef_count;
c6a3cf87
AM
3007 amt *= sizeof (carsym);
3008 symdef_ptr = (carsym *) bfd_alloc (abfd, amt);
252b5132 3009 if (!symdef_ptr)
b34976b6 3010 return FALSE;
252b5132 3011
c6a3cf87 3012 ardata->symdefs = symdef_ptr;
252b5132
RH
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
dc810e39 3019 file_offset = H_GET_32 (abfd, (raw_ptr + 4));
252b5132
RH
3020 if (file_offset == 0)
3021 continue;
dc810e39 3022 name_offset = H_GET_32 (abfd, raw_ptr);
c6a3cf87 3023 symdef_ptr->name = stringbase + name_offset;
252b5132
RH
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
ed48ec2e 3032 abfd->has_armap = TRUE;
252b5132 3033
b34976b6 3034 return TRUE;
252b5132
RH
3035}
3036
3037/* Write out an armap. */
3038
b34976b6 3039bfd_boolean
3b5d3310
NC
3040_bfd_ecoff_write_armap (bfd *abfd,
3041 unsigned int elength,
3042 struct orl *map,
3043 unsigned int orl_count,
3044 int stridx)
252b5132
RH
3045{
3046 unsigned int hashsize, hashlog;
dc810e39 3047 bfd_size_type symdefsize;
252b5132
RH
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
1abaf976 3070 /* Include 8 bytes to store symdefsize and stringsize in output. */
252b5132
RH
3071 mapsize = symdefsize + stringsize + 8;
3072
3073 firstreal = SARMAG + sizeof (struct ar_hdr) + mapsize + elength;
3074
3b5d3310 3075 memset ((void *) &hdr, 0, sizeof hdr);
252b5132
RH
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);
c6a3cf87
AM
3095 _bfd_ar_spacepad (hdr.ar_date, sizeof (hdr.ar_date), "%ld",
3096 (long) (statbuf.st_mtime + 60));
252b5132
RH
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';
1abaf976 3102 /* Building gcc ends up extracting the armap as a file - twice. */
ec0ef80e
DD
3103 hdr.ar_mode[0] = '6';
3104 hdr.ar_mode[1] = '4';
3105 hdr.ar_mode[2] = '4';
252b5132 3106
c6a3cf87 3107 _bfd_ar_spacepad (hdr.ar_size, sizeof (hdr.ar_size), "%-10ld", mapsize);
252b5132
RH
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++)
1abaf976
KH
3114 if (((char *) (&hdr))[i] == '\0')
3115 (((char *) (&hdr))[i]) = ' ';
252b5132 3116
3b5d3310 3117 if (bfd_bwrite ((void *) &hdr, (bfd_size_type) sizeof (struct ar_hdr), abfd)
252b5132 3118 != sizeof (struct ar_hdr))
b34976b6 3119 return FALSE;
252b5132 3120
dc810e39 3121 H_PUT_32 (abfd, hashsize, temp);
3b5d3310 3122 if (bfd_bwrite ((void *) temp, (bfd_size_type) 4, abfd) != 4)
b34976b6 3123 return FALSE;
1abaf976 3124
21d799b5 3125 hashtable = (bfd_byte *) bfd_zalloc (abfd, symdefsize);
252b5132 3126 if (!hashtable)
b34976b6 3127 return FALSE;
252b5132
RH
3128
3129 current = abfd->archive_head;
3130 last_elt = current;
3131 for (i = 0; i < orl_count; i++)
3132 {
1b0b5b1b 3133 unsigned int hash, rehash = 0;
252b5132
RH
3134
3135 /* Advance firstreal to the file position of this archive
3136 element. */
dc810e39 3137 if (map[i].u.abfd != last_elt)
252b5132
RH
3138 {
3139 do
3140 {
3141 firstreal += arelt_size (current) + sizeof (struct ar_hdr);
3142 firstreal += firstreal % 2;
cc481421 3143 current = current->archive_next;
252b5132 3144 }
dc810e39 3145 while (current != map[i].u.abfd);
252b5132
RH
3146 }
3147
3148 last_elt = current;
3149
3150 hash = ecoff_armap_hash (*map[i].name, &rehash, hashsize, hashlog);
dc810e39 3151 if (H_GET_32 (abfd, (hashtable + (hash * 8) + 4)) != 0)
252b5132
RH
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))
dc810e39 3159 if (H_GET_32 (abfd, (hashtable + (srch * 8) + 4)) == 0)
252b5132
RH
3160 break;
3161
3162 BFD_ASSERT (srch != hash);
3163
3164 hash = srch;
3165 }
1abaf976 3166
dc810e39
AM
3167 H_PUT_32 (abfd, map[i].namidx, (hashtable + hash * 8));
3168 H_PUT_32 (abfd, firstreal, (hashtable + hash * 8 + 4));
252b5132
RH
3169 }
3170
3b5d3310 3171 if (bfd_bwrite ((void *) hashtable, symdefsize, abfd) != symdefsize)
b34976b6 3172 return FALSE;
252b5132
RH
3173
3174 bfd_release (abfd, hashtable);
3175
3176 /* Now write the strings. */
dc810e39 3177 H_PUT_32 (abfd, stringsize, temp);
3b5d3310 3178 if (bfd_bwrite ((void *) temp, (bfd_size_type) 4, abfd) != 4)
b34976b6 3179 return FALSE;
252b5132
RH
3180 for (i = 0; i < orl_count; i++)
3181 {
3182 bfd_size_type len;
3183
3184 len = strlen (*map[i].name) + 1;
3b5d3310 3185 if (bfd_bwrite ((void *) (*map[i].name), len, abfd) != len)
b34976b6 3186 return FALSE;
252b5132
RH
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 {
dc810e39 3193 if (bfd_bwrite ("", (bfd_size_type) 1, abfd) != 1)
b34976b6 3194 return FALSE;
252b5132
RH
3195 }
3196
b34976b6 3197 return TRUE;
252b5132 3198}
252b5132
RH
3199\f
3200/* ECOFF linker code. */
3201
252b5132
RH
3202/* Routine to create an entry in an ECOFF link hash table. */
3203
3204static struct bfd_hash_entry *
3b5d3310
NC
3205ecoff_link_hash_newfunc (struct bfd_hash_entry *entry,
3206 struct bfd_hash_table *table,
3207 const char *string)
252b5132
RH
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. */
3b5d3310 3213 if (ret == NULL)
252b5132
RH
3214 ret = ((struct ecoff_link_hash_entry *)
3215 bfd_hash_allocate (table, sizeof (struct ecoff_link_hash_entry)));
3b5d3310 3216 if (ret == NULL)
252b5132
RH
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 }
3b5d3310 3232 memset ((void *) &ret->esym, 0, sizeof ret->esym);
252b5132
RH
3233
3234 return (struct bfd_hash_entry *) ret;
3235}
3236
3237/* Create an ECOFF link hash table. */
3238
3239struct bfd_link_hash_table *
3b5d3310 3240_bfd_ecoff_bfd_link_hash_table_create (bfd *abfd)
252b5132
RH
3241{
3242 struct ecoff_link_hash_table *ret;
986f0783 3243 size_t amt = sizeof (struct ecoff_link_hash_table);
252b5132 3244
21d799b5 3245 ret = (struct ecoff_link_hash_table *) bfd_malloc (amt);
252b5132
RH
3246 if (ret == NULL)
3247 return NULL;
66eb6687
AM
3248 if (!_bfd_link_hash_table_init (&ret->root, abfd,
3249 ecoff_link_hash_newfunc,
3250 sizeof (struct ecoff_link_hash_entry)))
252b5132
RH
3251 {
3252 free (ret);
3b5d3310 3253 return NULL;
252b5132
RH
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
252b5132
RH
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
3b5d3310
NC
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. */
252b5132 3274
b34976b6 3275static bfd_boolean
3b5d3310
NC
3276ecoff_link_add_externals (bfd *abfd,
3277 struct bfd_link_info *info,
3278 void * external_ext,
3279 char *ssext)
252b5132
RH
3280{
3281 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
3b5d3310
NC
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;
252b5132 3290
3b5d3310 3291 ext_count = ecoff_data (abfd)->debug_info.symbolic_header.iextMax;
252b5132 3292
3b5d3310
NC
3293 amt = ext_count;
3294 amt *= sizeof (struct bfd_link_hash_entry *);
21d799b5 3295 sym_hash = (struct bfd_link_hash_entry **) bfd_alloc (abfd, amt);
3b5d3310
NC
3296 if (!sym_hash)
3297 return FALSE;
3298 ecoff_data (abfd)->sym_hashes = (struct ecoff_link_hash_entry **) sym_hash;
252b5132 3299
3b5d3310
NC
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++)
252b5132 3303 {
3b5d3310
NC
3304 EXTR esym;
3305 bfd_boolean skip;
3306 bfd_vma value;
3307 asection *section;
252b5132 3308 const char *name;
3b5d3310 3309 struct ecoff_link_hash_entry *h;
252b5132 3310
3b5d3310 3311 *sym_hash = NULL;
252b5132 3312
3b5d3310 3313 (*swap_ext_in) (abfd, (void *) ext_ptr, &esym);
252b5132 3314
3b5d3310
NC
3315 /* Skip debugging symbols. */
3316 skip = FALSE;
3317 switch (esym.asym.st)
252b5132 3318 {
3b5d3310
NC
3319 case stGlobal:
3320 case stStatic:
3321 case stLabel:
3322 case stProc:
3323 case stStaticProc:
3324 break;
3325 default:
3326 skip = TRUE;
3327 break;
252b5132
RH
3328 }
3329
3b5d3310
NC
3330 if (skip)
3331 continue;
252b5132 3332
3b5d3310
NC
3333 /* Get the information for this symbol. */
3334 value = esym.asym.value;
3335 switch (esym.asym.sc)
252b5132 3336 {
3b5d3310
NC
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)
252b5132 3386 {
3b5d3310
NC
3387 section = bfd_com_section_ptr;
3388 break;
252b5132 3389 }
3b5d3310
NC
3390 /* Fall through. */
3391 case scSCommon:
3392 if (ecoff_scom_section.name == NULL)
252b5132 3393 {
3b5d3310
NC
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;
252b5132 3404 }
3b5d3310
NC
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;
252b5132
RH
3422 }
3423
3b5d3310
NC
3424 if (section == NULL)
3425 continue;
252b5132 3426
3b5d3310 3427 name = ssext + esym.asym.iss;
252b5132 3428
3b5d3310
NC
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)))
b34976b6 3433 return FALSE;
252b5132 3434
3b5d3310
NC
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. */
f13a99db 3439 if (bfd_get_flavour (info->output_bfd) == bfd_get_flavour (abfd))
3b5d3310
NC
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 }
252b5132
RH
3471 }
3472
b34976b6 3473 return TRUE;
252b5132
RH
3474}
3475
3b5d3310
NC
3476/* Add symbols from an ECOFF object file to the global linker hash
3477 table. */
3478
3479static bfd_boolean
3480ecoff_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. */
2bb3687b
AM
3499 if (bfd_seek (abfd, symhdr->cbExtOffset, SEEK_SET) != 0)
3500 return FALSE;
3b5d3310
NC
3501 external_ext_size = ecoff_backend (abfd)->debug_swap.external_ext_size;
3502 esize = symhdr->iextMax * external_ext_size;
2bb3687b 3503 external_ext = _bfd_malloc_and_read (abfd, esize, esize);
3b5d3310
NC
3504 if (external_ext == NULL && esize != 0)
3505 goto error_return;
3506
2bb3687b 3507 if (bfd_seek (abfd, symhdr->cbSsExtOffset, SEEK_SET) != 0)
3b5d3310 3508 goto error_return;
2bb3687b
AM
3509 ssext = (char *) _bfd_malloc_and_read (abfd, symhdr->issExtMax,
3510 symhdr->issExtMax);
3b5d3310
NC
3511 if (ssext == NULL && symhdr->issExtMax != 0)
3512 goto error_return;
3513
3b5d3310
NC
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
252b5132
RH
3530/* This is called if we used _bfd_generic_link_add_archive_symbols
3531 because we were not dealing with an ECOFF archive. */
3532
b34976b6 3533static bfd_boolean
3b5d3310
NC
3534ecoff_link_check_archive_element (bfd *abfd,
3535 struct bfd_link_info *info,
13e570f8
AM
3536 struct bfd_link_hash_entry *h,
3537 const char *name,
3b5d3310 3538 bfd_boolean *pneeded)
252b5132 3539{
b34976b6 3540 *pneeded = FALSE;
252b5132 3541
13e570f8
AM
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;
252b5132 3546
b95a0a31 3547 /* Include this element? */
13e570f8 3548 if (!(*info->callbacks->add_archive_element) (info, abfd, name, &abfd))
b95a0a31 3549 return TRUE;
13e570f8 3550 *pneeded = TRUE;
252b5132 3551
13e570f8 3552 return ecoff_link_add_object_symbols (abfd, info);
252b5132
RH
3553}
3554
3b5d3310
NC
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. */
252b5132 3561
b34976b6 3562static bfd_boolean
3b5d3310 3563ecoff_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
252b5132 3564{
3b5d3310
NC
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;
252b5132 3573
3b5d3310
NC
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 }
252b5132 3582
3b5d3310
NC
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));
252b5132 3591
3b5d3310 3592 armap_count = H_GET_32 (abfd, raw_armap);
252b5132 3593
3b5d3310
NC
3594 armap_log = 0;
3595 for (i = 1; i < armap_count; i <<= 1)
3596 armap_log++;
3597 BFD_ASSERT (i == armap_count);
252b5132 3598
3b5d3310
NC
3599 hashtable = raw_armap + 4;
3600 stringbase = (const char *) raw_armap + armap_count * 8 + 8;
252b5132 3601
3b5d3310
NC
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;
1b0b5b1b 3607 unsigned int hash, rehash = 0;
3b5d3310
NC
3608 unsigned int file_offset;
3609 const char *name;
3610 bfd *element;
252b5132 3611
3b5d3310 3612 h = *pundef;
252b5132 3613
3b5d3310
NC
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 }
252b5132 3630
3b5d3310
NC
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 }
252b5132 3640
3b5d3310
NC
3641 /* Look for this symbol in the archive hash table. */
3642 hash = ecoff_armap_hash (h->root.string, &rehash, armap_count,
3643 armap_log);
252b5132 3644
3b5d3310
NC
3645 file_offset = H_GET_32 (abfd, hashtable + (hash * 8) + 4);
3646 if (file_offset == 0)
252b5132 3647 {
3b5d3310
NC
3648 /* Nothing in this slot. */
3649 pundef = &(*pundef)->u.undef.next;
3650 continue;
252b5132
RH
3651 }
3652
3b5d3310
NC
3653 name = stringbase + H_GET_32 (abfd, hashtable + (hash * 8));
3654 if (name[0] != h->root.string[0]
3655 || ! streq (name, h->root.string))
252b5132 3656 {
3b5d3310
NC
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))
252b5132 3665 {
3b5d3310
NC
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 }
252b5132 3676 }
3b5d3310
NC
3677
3678 if (! found)
252b5132 3679 {
3b5d3310
NC
3680 pundef = &(*pundef)->u.undef.next;
3681 continue;
252b5132 3682 }
3b5d3310
NC
3683
3684 hash = srch;
252b5132
RH
3685 }
3686
3b5d3310
NC
3687 element = (*backend->get_elt_at_filepos) (abfd, (file_ptr) file_offset);
3688 if (element == NULL)
3689 return FALSE;
252b5132 3690
3b5d3310
NC
3691 if (! bfd_check_format (element, bfd_object))
3692 return FALSE;
252b5132 3693
3b5d3310
NC
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. */
0e144ba7
AM
3697 if (!(*info->callbacks
3698 ->add_archive_element) (info, element, name, &element))
3b5d3310 3699 return FALSE;
0e144ba7 3700 if (! ecoff_link_add_object_symbols (element, info))
b34976b6 3701 return FALSE;
252b5132 3702
3b5d3310
NC
3703 pundef = &(*pundef)->u.undef.next;
3704 }
252b5132 3705
3b5d3310
NC
3706 return TRUE;
3707}
252b5132 3708
3b5d3310
NC
3709/* Given an ECOFF BFD, add symbols to the global hash table as
3710 appropriate. */
252b5132 3711
3b5d3310
NC
3712bfd_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;
252b5132 3724 }
252b5132 3725}
3b5d3310 3726
252b5132
RH
3727\f
3728/* ECOFF final link routines. */
3729
252b5132
RH
3730/* Structure used to pass information to ecoff_link_write_external. */
3731
3732struct extsym_info
3733{
3734 bfd *abfd;
3735 struct bfd_link_info *info;
3736};
3737
3b5d3310
NC
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. */
252b5132 3741
3b5d3310
NC
3742static bfd_boolean
3743ecoff_final_link_debug_accumulate (bfd *output_bfd,
3744 bfd *input_bfd,
3745 struct bfd_link_info *info,
3746 void * handle)
252b5132 3747{
3b5d3310
NC
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;
252b5132 3753
1f4361a7
AM
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 } \
2bb3687b 3767 if (bfd_seek (input_bfd, symhdr->offset, SEEK_SET) != 0) \
1f4361a7
AM
3768 { \
3769 ret = FALSE; \
3770 goto return_something; \
3771 } \
2bb3687b
AM
3772 debug->ptr = (type) _bfd_malloc_and_read (input_bfd, amt, amt); \
3773 if (debug->ptr == NULL) \
1f4361a7
AM
3774 { \
3775 ret = FALSE; \
3776 goto return_something; \
3777 } \
3778 } while (0)
252b5132 3779
3b5d3310
NC
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
252b5132 3797
3b5d3310 3798 /* We do not read the external strings or the external symbols. */
252b5132 3799
3b5d3310
NC
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));
252b5132 3804
3b5d3310
NC
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);
252b5132 3826
3b5d3310
NC
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;
252b5132
RH
3838 }
3839
3b5d3310
NC
3840 return ret;
3841}
3842
3843/* Relocate and write an ECOFF section into an ECOFF output file. */
3844
3845static bfd_boolean
3846ecoff_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
3b5d3310
NC
3860 input_section = link_order->u.indirect.section;
3861 input_bfd = input_section->owner;
44da2da1
AM
3862 if (input_section->size == 0)
3863 return TRUE;
3b5d3310
NC
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
2bb3687b 3878 if (bfd_seek (input_bfd, input_section->rel_filepos, SEEK_SET) != 0)
3b5d3310 3879 goto error_return;
2bb3687b
AM
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)
3b5d3310
NC
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;
252b5132 3898
3b5d3310
NC
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. */
0e1862bb 3903 if (bfd_link_relocatable (info))
252b5132 3904 {
3b5d3310
NC
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;
252b5132
RH
3912 }
3913
3b5d3310
NC
3914 if (contents != NULL)
3915 free (contents);
3916 if (external_relocs != NULL)
3917 free (external_relocs);
3918 return TRUE;
252b5132 3919
3b5d3310
NC
3920 error_return:
3921 if (contents != NULL)
3922 free (contents);
3923 if (external_relocs != NULL)
3924 free (external_relocs);
3925 return FALSE;
3926}
252b5132 3927
3b5d3310
NC
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. */
252b5132 3932
3b5d3310
NC
3933static bfd_boolean
3934ecoff_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)
252b5132 3959 {
3b5d3310
NC
3960 bfd_set_error (bfd_error_bad_value);
3961 return FALSE;
252b5132
RH
3962 }
3963
3b5d3310
NC
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
252b5132
RH
3970 {
3971 struct bfd_link_hash_entry *h;
3972
3b5d3310 3973 /* Treat a reloc against a defined symbol as though it were
07d6d2b8 3974 actually against the section. */
3b5d3310
NC
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))
252b5132 3981 {
3b5d3310
NC
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
07d6d2b8
AM
3985 addend here, but in practice it has already been added
3986 because it was passed to constructor_callback. */
3b5d3310 3987 addend += section->vma + h->u.def.section->output_offset;
252b5132
RH
3988 }
3989 else
3990 {
3b5d3310
NC
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);
21d799b5 4009 buf = (bfd_byte *) bfd_zmalloc (size);
6346d5ca 4010 if (buf == NULL && size != 0)
3b5d3310
NC
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:
1a72702b
AM
4022 (*info->callbacks->reloc_overflow)
4023 (info, NULL,
4024 (link_order->type == bfd_section_reloc_link_order
fd361982 4025 ? bfd_section_name (section)
1a72702b
AM
4026 : link_order->u.reloc.p->u.name),
4027 rel.howto->name, addend, NULL, NULL, (bfd_vma) 0);
3b5d3310 4028 break;
252b5132 4029 }
3b5d3310
NC
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;
252b5132
RH
4035 }
4036
3b5d3310
NC
4037 rel.addend = 0;
4038
4039 /* Move the information into an internal_reloc structure. */
fd361982 4040 in.r_vaddr = rel.address + bfd_section_vma (output_section);
3b5d3310
NC
4041 in.r_type = rel.howto->type;
4042
4043 if (type == bfd_symbol_reloc_link_order)
252b5132 4044 {
3b5d3310
NC
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
252b5132 4055 {
1a72702b
AM
4056 (*info->callbacks->unattached_reloc)
4057 (info, link_order->u.reloc.p->u.name, NULL, NULL, (bfd_vma) 0);
3b5d3310 4058 in.r_symndx = 0;
252b5132 4059 }
3b5d3310 4060 in.r_extern = 1;
252b5132 4061 }
3b5d3310
NC
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 };
252b5132 4089
fd361982 4090 name = bfd_section_name (section);
252b5132 4091
3b5d3310
NC
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 }
252b5132 4098
3b5d3310
NC
4099 if (i == ARRAY_SIZE (section_symndx))
4100 abort ();
252b5132 4101
3b5d3310 4102 in.r_extern = 0;
252b5132
RH
4103 }
4104
3b5d3310
NC
4105 /* Let the BFD backend adjust the reloc. */
4106 (*ecoff_backend (output_bfd)->adjust_reloc_out) (output_bfd, &rel, &in);
252b5132 4107
3b5d3310
NC
4108 /* Get some memory and swap out the reloc. */
4109 external_reloc_size = ecoff_backend (output_bfd)->external_reloc_size;
21d799b5 4110 rbuf = (bfd_byte *) bfd_malloc (external_reloc_size);
3b5d3310
NC
4111 if (rbuf == NULL)
4112 return FALSE;
252b5132 4113
3b5d3310 4114 (*ecoff_backend (output_bfd)->swap_reloc_out) (output_bfd, &in, (void *) rbuf);
252b5132 4115
3b5d3310
NC
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));
252b5132 4121
3b5d3310
NC
4122 if (ok)
4123 ++output_section->reloc_count;
252b5132 4124
3b5d3310
NC
4125 free (rbuf);
4126
4127 return ok;
252b5132
RH
4128}
4129
4130/* Put out information for an external symbol. These come only from
4131 the hash table. */
4132
b34976b6 4133static bfd_boolean
7686d77d 4134ecoff_link_write_external (struct bfd_hash_entry *bh, void * data)
252b5132 4135{
7686d77d 4136 struct ecoff_link_hash_entry *h = (struct ecoff_link_hash_entry *) bh;
252b5132
RH
4137 struct extsym_info *einfo = (struct extsym_info *) data;
4138 bfd *output_bfd = einfo->abfd;
b34976b6 4139 bfd_boolean strip;
252b5132 4140
e92d460e
AM
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)
b34976b6 4145 return TRUE;
e92d460e
AM
4146 }
4147
1abaf976 4148 /* We need to check if this symbol is being stripped. */
252b5132
RH
4149 if (h->root.type == bfd_link_hash_undefined
4150 || h->root.type == bfd_link_hash_undefweak)
b34976b6 4151 strip = FALSE;
252b5132
RH
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,
b34976b6
AM
4156 FALSE, FALSE) == NULL))
4157 strip = TRUE;
252b5132 4158 else
b34976b6 4159 strip = FALSE;
252b5132
RH
4160
4161 if (strip || h->written)
b34976b6 4162 return TRUE;
252b5132 4163
3b5d3310 4164 if (h->abfd == NULL)
252b5132
RH
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;
3b5d3310
NC
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 };
252b5132
RH
4201
4202 output_section = h->root.u.def.section->output_section;
fd361982 4203 name = bfd_section_name (output_section);
1abaf976 4204
3b5d3310
NC
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))
252b5132
RH
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:
e92d460e 4234 case bfd_link_hash_warning:
252b5132
RH
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:
e92d460e
AM
4263 /* We ignore these symbols, since the indirected symbol is
4264 already in the hash table. */
b34976b6 4265 return TRUE;
252b5132
RH
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
3b5d3310
NC
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. */
252b5132 4283
3b5d3310
NC
4284bfd_boolean
4285_bfd_ecoff_bfd_final_link (bfd *abfd, struct bfd_link_info *info)
252b5132 4286{
3b5d3310
NC
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;
252b5132 4291 bfd *input_bfd;
3b5d3310
NC
4292 asection *o;
4293 struct bfd_link_order *p;
4294 struct extsym_info einfo;
252b5132 4295
3b5d3310
NC
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;
252b5132 4312
3b5d3310
NC
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;
252b5132 4326
3b5d3310
NC
4327 handle = bfd_ecoff_debug_init (abfd, debug, &backend->debug_swap, info);
4328 if (handle == NULL)
4329 return FALSE;
252b5132 4330
3b5d3310
NC
4331 /* Accumulate the debugging symbols from each input BFD. */
4332 for (input_bfd = info->input_bfds;
4333 input_bfd != NULL;
c72f2fb2 4334 input_bfd = input_bfd->link.next)
3b5d3310
NC
4335 {
4336 bfd_boolean ret;
252b5132 4337
3b5d3310
NC
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;
252b5132 4354
3b5d3310
NC
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 }
252b5132 4363
3b5d3310
NC
4364 /* Write out the external symbols. */
4365 einfo.abfd = abfd;
4366 einfo.info = info;
7686d77d 4367 bfd_hash_traverse (&info->hash->table, ecoff_link_write_external, &einfo);
252b5132 4368
0e1862bb 4369 if (bfd_link_relocatable (info))
252b5132 4370 {
3b5d3310
NC
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;
8423293d 4377 for (p = o->map_head.link_order;
3b5d3310
NC
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 }
252b5132
RH
4386 }
4387
3b5d3310
NC
4388 /* Compute the reloc and symbol file positions. */
4389 ecoff_compute_reloc_file_positions (abfd);
252b5132 4390
3b5d3310
NC
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;
252b5132 4396
3b5d3310 4397 bfd_ecoff_debug_free (handle, abfd, debug, &backend->debug_swap, info);
252b5132 4398
0e1862bb 4399 if (bfd_link_relocatable (info))
252b5132 4400 {
3b5d3310
NC
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;
252b5132
RH
4406 }
4407
3b5d3310
NC
4408 /* Get a value for the GP register. */
4409 if (ecoff_data (abfd)->gp == 0)
252b5132
RH
4410 {
4411 struct bfd_link_hash_entry *h;
4412
3b5d3310 4413 h = bfd_link_hash_lookup (info->hash, "_gp", FALSE, FALSE, TRUE);
252b5132 4414 if (h != NULL
3b5d3310
NC
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);
0e1862bb 4419 else if (bfd_link_relocatable (info))
252b5132 4420 {
3b5d3310
NC
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;
252b5132
RH
4436 }
4437 else
4438 {
3b5d3310
NC
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. */
252b5132
RH
4442 }
4443 }
4444
3b5d3310 4445 for (o = abfd->sections; o != NULL; o = o->next)
252b5132 4446 {
8423293d 4447 for (p = o->map_head.link_order;
3b5d3310
NC
4448 p != NULL;
4449 p = p->next)
252b5132 4450 {
3b5d3310
NC
4451 if (p->type == bfd_indirect_link_order
4452 && (bfd_get_flavour (p->u.indirect.section->owner)
4453 == bfd_target_ecoff_flavour))
252b5132 4454 {
3b5d3310
NC
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;
252b5132 4468 }
252b5132 4469 }
252b5132
RH
4470 }
4471
ed48ec2e 4472 abfd->symcount = symhdr->iextMax + symhdr->isymMax;
252b5132 4473
3b5d3310 4474 ecoff_data (abfd)->linker = TRUE;
252b5132 4475
3b5d3310 4476 return TRUE;
252b5132 4477}
This page took 1.421626 seconds and 4 git commands to generate.