Coverage Report

Created: 2023-08-28 06:31

/src/binutils-gdb/bfd/coff-alpha.c
Line
Count
Source (jump to first uncovered line)
1
/* BFD back-end for ALPHA Extended-Coff files.
2
   Copyright (C) 1993-2023 Free Software Foundation, Inc.
3
   Modified from coff-mips.c by Steve Chamberlain <sac@cygnus.com> and
4
   Ian Lance Taylor <ian@cygnus.com>.
5
6
   This file is part of BFD, the Binary File Descriptor library.
7
8
   This program is free software; you can redistribute it and/or modify
9
   it under the terms of the GNU General Public License as published by
10
   the Free Software Foundation; either version 3 of the License, or
11
   (at your option) any later version.
12
13
   This program is distributed in the hope that it will be useful,
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
   GNU General Public License for more details.
17
18
   You should have received a copy of the GNU General Public License
19
   along with this program; if not, write to the Free Software
20
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21
   MA 02110-1301, USA.  */
22
23
#include "sysdep.h"
24
#include "bfd.h"
25
#include "bfdlink.h"
26
#include "libbfd.h"
27
#include "coff/internal.h"
28
#include "coff/sym.h"
29
#include "coff/symconst.h"
30
#include "coff/ecoff.h"
31
#include "coff/alpha.h"
32
#include "aout/ar.h"
33
#include "libcoff.h"
34
#include "libecoff.h"
35

36
/* Prototypes for static functions.  */
37
38
39

40
/* ECOFF has COFF sections, but the debugging information is stored in
41
   a completely different format.  ECOFF targets use some of the
42
   swapping routines from coffswap.h, and some of the generic COFF
43
   routines in coffgen.c, but, unlike the real COFF targets, do not
44
   use coffcode.h itself.
45
46
   Get the generic COFF swapping routines, except for the reloc,
47
   symbol, and lineno ones.  Give them ecoff names.  Define some
48
   accessor macros for the large sizes used for Alpha ECOFF.  */
49
50
1.62M
#define GET_FILEHDR_SYMPTR H_GET_64
51
2
#define PUT_FILEHDR_SYMPTR H_PUT_64
52
9.95k
#define GET_AOUTHDR_TSIZE H_GET_64
53
2
#define PUT_AOUTHDR_TSIZE H_PUT_64
54
9.95k
#define GET_AOUTHDR_DSIZE H_GET_64
55
2
#define PUT_AOUTHDR_DSIZE H_PUT_64
56
9.95k
#define GET_AOUTHDR_BSIZE H_GET_64
57
2
#define PUT_AOUTHDR_BSIZE H_PUT_64
58
9.95k
#define GET_AOUTHDR_ENTRY H_GET_64
59
2
#define PUT_AOUTHDR_ENTRY H_PUT_64
60
9.95k
#define GET_AOUTHDR_TEXT_START H_GET_64
61
2
#define PUT_AOUTHDR_TEXT_START H_PUT_64
62
9.95k
#define GET_AOUTHDR_DATA_START H_GET_64
63
2
#define PUT_AOUTHDR_DATA_START H_PUT_64
64
80.8k
#define GET_SCNHDR_PADDR H_GET_64
65
0
#define PUT_SCNHDR_PADDR H_PUT_64
66
80.8k
#define GET_SCNHDR_VADDR H_GET_64
67
0
#define PUT_SCNHDR_VADDR H_PUT_64
68
80.8k
#define GET_SCNHDR_SIZE H_GET_64
69
0
#define PUT_SCNHDR_SIZE H_PUT_64
70
80.8k
#define GET_SCNHDR_SCNPTR H_GET_64
71
0
#define PUT_SCNHDR_SCNPTR H_PUT_64
72
80.8k
#define GET_SCNHDR_RELPTR H_GET_64
73
0
#define PUT_SCNHDR_RELPTR H_PUT_64
74
80.8k
#define GET_SCNHDR_LNNOPTR H_GET_64
75
0
#define PUT_SCNHDR_LNNOPTR H_PUT_64
76
77
#define ALPHAECOFF
78
79
#define NO_COFF_RELOCS
80
#define NO_COFF_SYMBOLS
81
#define NO_COFF_LINENOS
82
#define coff_swap_filehdr_in alpha_ecoff_swap_filehdr_in
83
#define coff_swap_filehdr_out alpha_ecoff_swap_filehdr_out
84
#define coff_swap_aouthdr_in alpha_ecoff_swap_aouthdr_in
85
#define coff_swap_aouthdr_out alpha_ecoff_swap_aouthdr_out
86
#define coff_swap_scnhdr_in alpha_ecoff_swap_scnhdr_in
87
#define coff_swap_scnhdr_out alpha_ecoff_swap_scnhdr_out
88
#include "coffswap.h"
89
90
/* Get the ECOFF swapping routines.  */
91
#define ECOFF_64
92
#include "ecoffswap.h"
93

94
/* How to process the various reloc types.  */
95
96
static bfd_reloc_status_type
97
reloc_nil (bfd *abfd ATTRIBUTE_UNUSED,
98
     arelent *reloc ATTRIBUTE_UNUSED,
99
     asymbol *sym ATTRIBUTE_UNUSED,
100
     void * data ATTRIBUTE_UNUSED,
101
     asection *sec ATTRIBUTE_UNUSED,
102
     bfd *output_bfd ATTRIBUTE_UNUSED,
103
     char **error_message ATTRIBUTE_UNUSED)
104
0
{
105
0
  return bfd_reloc_ok;
106
0
}
107
108
/* In case we're on a 32-bit machine, construct a 64-bit "-1" value
109
   from smaller values.  Start with zero, widen, *then* decrement.  */
110
#define MINUS_ONE (((bfd_vma)0) - 1)
111
112
static reloc_howto_type alpha_howto_table[] =
113
{
114
  /* Reloc type 0 is ignored by itself.  However, it appears after a
115
     GPDISP reloc to identify the location where the low order 16 bits
116
     of the gp register are loaded.  */
117
  HOWTO (ALPHA_R_IGNORE,  /* type */
118
   0,     /* rightshift */
119
   1,     /* size */
120
   8,     /* bitsize */
121
   true,      /* pc_relative */
122
   0,     /* bitpos */
123
   complain_overflow_dont, /* complain_on_overflow */
124
   reloc_nil,   /* special_function */
125
   "IGNORE",    /* name */
126
   true,      /* partial_inplace */
127
   0,     /* src_mask */
128
   0,     /* dst_mask */
129
   true),     /* pcrel_offset */
130
131
  /* A 32 bit reference to a symbol.  */
132
  HOWTO (ALPHA_R_REFLONG, /* type */
133
   0,     /* rightshift */
134
   4,     /* size */
135
   32,      /* bitsize */
136
   false,     /* pc_relative */
137
   0,     /* bitpos */
138
   complain_overflow_bitfield, /* complain_on_overflow */
139
   0,     /* special_function */
140
   "REFLONG",   /* name */
141
   true,      /* partial_inplace */
142
   0xffffffff,    /* src_mask */
143
   0xffffffff,    /* dst_mask */
144
   false),    /* pcrel_offset */
145
146
  /* A 64 bit reference to a symbol.  */
147
  HOWTO (ALPHA_R_REFQUAD, /* type */
148
   0,     /* rightshift */
149
   8,     /* size */
150
   64,      /* bitsize */
151
   false,     /* pc_relative */
152
   0,     /* bitpos */
153
   complain_overflow_bitfield, /* complain_on_overflow */
154
   0,     /* special_function */
155
   "REFQUAD",   /* name */
156
   true,      /* partial_inplace */
157
   MINUS_ONE,   /* src_mask */
158
   MINUS_ONE,   /* dst_mask */
159
   false),    /* pcrel_offset */
160
161
  /* A 32 bit GP relative offset.  This is just like REFLONG except
162
     that when the value is used the value of the gp register will be
163
     added in.  */
164
  HOWTO (ALPHA_R_GPREL32, /* type */
165
   0,     /* rightshift */
166
   4,     /* size */
167
   32,      /* bitsize */
168
   false,     /* pc_relative */
169
   0,     /* bitpos */
170
   complain_overflow_bitfield, /* complain_on_overflow */
171
   0,     /* special_function */
172
   "GPREL32",   /* name */
173
   true,      /* partial_inplace */
174
   0xffffffff,    /* src_mask */
175
   0xffffffff,    /* dst_mask */
176
   false),    /* pcrel_offset */
177
178
  /* Used for an instruction that refers to memory off the GP
179
     register.  The offset is 16 bits of the 32 bit instruction.  This
180
     reloc always seems to be against the .lita section.  */
181
  HOWTO (ALPHA_R_LITERAL, /* type */
182
   0,     /* rightshift */
183
   4,     /* size */
184
   16,      /* bitsize */
185
   false,     /* pc_relative */
186
   0,     /* bitpos */
187
   complain_overflow_signed, /* complain_on_overflow */
188
   0,     /* special_function */
189
   "LITERAL",   /* name */
190
   true,      /* partial_inplace */
191
   0xffff,    /* src_mask */
192
   0xffff,    /* dst_mask */
193
   false),    /* pcrel_offset */
194
195
  /* This reloc only appears immediately following a LITERAL reloc.
196
     It identifies a use of the literal.  It seems that the linker can
197
     use this to eliminate a portion of the .lita section.  The symbol
198
     index is special: 1 means the literal address is in the base
199
     register of a memory format instruction; 2 means the literal
200
     address is in the byte offset register of a byte-manipulation
201
     instruction; 3 means the literal address is in the target
202
     register of a jsr instruction.  This does not actually do any
203
     relocation.  */
204
  HOWTO (ALPHA_R_LITUSE,  /* type */
205
   0,     /* rightshift */
206
   4,     /* size */
207
   32,      /* bitsize */
208
   false,     /* pc_relative */
209
   0,     /* bitpos */
210
   complain_overflow_dont, /* complain_on_overflow */
211
   reloc_nil,   /* special_function */
212
   "LITUSE",    /* name */
213
   false,     /* partial_inplace */
214
   0,     /* src_mask */
215
   0,     /* dst_mask */
216
   false),    /* pcrel_offset */
217
218
  /* Load the gp register.  This is always used for a ldah instruction
219
     which loads the upper 16 bits of the gp register.  The next reloc
220
     will be an IGNORE reloc which identifies the location of the lda
221
     instruction which loads the lower 16 bits.  The symbol index of
222
     the GPDISP instruction appears to actually be the number of bytes
223
     between the ldah and lda instructions.  This gives two different
224
     ways to determine where the lda instruction is; I don't know why
225
     both are used.  The value to use for the relocation is the
226
     difference between the GP value and the current location; the
227
     load will always be done against a register holding the current
228
     address.  */
229
  HOWTO (ALPHA_R_GPDISP,  /* type */
230
   16,      /* rightshift */
231
   4,     /* size */
232
   16,      /* bitsize */
233
   true,      /* pc_relative */
234
   0,     /* bitpos */
235
   complain_overflow_dont, /* complain_on_overflow */
236
   reloc_nil,   /* special_function */
237
   "GPDISP",    /* name */
238
   true,      /* partial_inplace */
239
   0xffff,    /* src_mask */
240
   0xffff,    /* dst_mask */
241
   true),     /* pcrel_offset */
242
243
  /* A 21 bit branch.  The native assembler generates these for
244
     branches within the text segment, and also fills in the PC
245
     relative offset in the instruction.  */
246
  HOWTO (ALPHA_R_BRADDR,  /* type */
247
   2,     /* rightshift */
248
   4,     /* size */
249
   21,      /* bitsize */
250
   true,      /* pc_relative */
251
   0,     /* bitpos */
252
   complain_overflow_signed, /* complain_on_overflow */
253
   0,     /* special_function */
254
   "BRADDR",    /* name */
255
   true,      /* partial_inplace */
256
   0x1fffff,    /* src_mask */
257
   0x1fffff,    /* dst_mask */
258
   false),    /* pcrel_offset */
259
260
  /* A hint for a jump to a register.  */
261
  HOWTO (ALPHA_R_HINT,    /* type */
262
   2,     /* rightshift */
263
   4,     /* size */
264
   14,      /* bitsize */
265
   true,      /* pc_relative */
266
   0,     /* bitpos */
267
   complain_overflow_dont, /* complain_on_overflow */
268
   0,     /* special_function */
269
   "HINT",    /* name */
270
   true,      /* partial_inplace */
271
   0x3fff,    /* src_mask */
272
   0x3fff,    /* dst_mask */
273
   false),    /* pcrel_offset */
274
275
  /* 16 bit PC relative offset.  */
276
  HOWTO (ALPHA_R_SREL16,  /* type */
277
   0,     /* rightshift */
278
   2,     /* size */
279
   16,      /* bitsize */
280
   true,      /* pc_relative */
281
   0,     /* bitpos */
282
   complain_overflow_signed, /* complain_on_overflow */
283
   0,     /* special_function */
284
   "SREL16",    /* name */
285
   true,      /* partial_inplace */
286
   0xffff,    /* src_mask */
287
   0xffff,    /* dst_mask */
288
   false),    /* pcrel_offset */
289
290
  /* 32 bit PC relative offset.  */
291
  HOWTO (ALPHA_R_SREL32,  /* type */
292
   0,     /* rightshift */
293
   4,     /* size */
294
   32,      /* bitsize */
295
   true,      /* pc_relative */
296
   0,     /* bitpos */
297
   complain_overflow_signed, /* complain_on_overflow */
298
   0,     /* special_function */
299
   "SREL32",    /* name */
300
   true,      /* partial_inplace */
301
   0xffffffff,    /* src_mask */
302
   0xffffffff,    /* dst_mask */
303
   false),    /* pcrel_offset */
304
305
  /* A 64 bit PC relative offset.  */
306
  HOWTO (ALPHA_R_SREL64,  /* type */
307
   0,     /* rightshift */
308
   8,     /* size */
309
   64,      /* bitsize */
310
   true,      /* pc_relative */
311
   0,     /* bitpos */
312
   complain_overflow_signed, /* complain_on_overflow */
313
   0,     /* special_function */
314
   "SREL64",    /* name */
315
   true,      /* partial_inplace */
316
   MINUS_ONE,   /* src_mask */
317
   MINUS_ONE,   /* dst_mask */
318
   false),    /* pcrel_offset */
319
320
  /* Push a value on the reloc evaluation stack.  */
321
  HOWTO (ALPHA_R_OP_PUSH, /* type */
322
   0,     /* rightshift */
323
   0,     /* size */
324
   0,     /* bitsize */
325
   false,     /* pc_relative */
326
   0,     /* bitpos */
327
   complain_overflow_dont, /* complain_on_overflow */
328
   0,     /* special_function */
329
   "OP_PUSH",   /* name */
330
   false,     /* partial_inplace */
331
   0,     /* src_mask */
332
   0,     /* dst_mask */
333
   false),    /* pcrel_offset */
334
335
  /* Store the value from the stack at the given address.  Store it in
336
     a bitfield of size r_size starting at bit position r_offset.  */
337
  HOWTO (ALPHA_R_OP_STORE,  /* type */
338
   0,     /* rightshift */
339
   8,     /* size */
340
   64,      /* bitsize */
341
   false,     /* pc_relative */
342
   0,     /* bitpos */
343
   complain_overflow_dont, /* complain_on_overflow */
344
   0,     /* special_function */
345
   "OP_STORE",    /* name */
346
   false,     /* partial_inplace */
347
   0,     /* src_mask */
348
   MINUS_ONE,   /* dst_mask */
349
   false),    /* pcrel_offset */
350
351
  /* Subtract the reloc address from the value on the top of the
352
     relocation stack.  */
353
  HOWTO (ALPHA_R_OP_PSUB, /* type */
354
   0,     /* rightshift */
355
   0,     /* size */
356
   0,     /* bitsize */
357
   false,     /* pc_relative */
358
   0,     /* bitpos */
359
   complain_overflow_dont, /* complain_on_overflow */
360
   0,     /* special_function */
361
   "OP_PSUB",   /* name */
362
   false,     /* partial_inplace */
363
   0,     /* src_mask */
364
   0,     /* dst_mask */
365
   false),    /* pcrel_offset */
366
367
  /* Shift the value on the top of the relocation stack right by the
368
     given value.  */
369
  HOWTO (ALPHA_R_OP_PRSHIFT,  /* type */
370
   0,     /* rightshift */
371
   0,     /* size */
372
   0,     /* bitsize */
373
   false,     /* pc_relative */
374
   0,     /* bitpos */
375
   complain_overflow_dont, /* complain_on_overflow */
376
   0,     /* special_function */
377
   "OP_PRSHIFT",    /* name */
378
   false,     /* partial_inplace */
379
   0,     /* src_mask */
380
   0,     /* dst_mask */
381
   false),    /* pcrel_offset */
382
383
  /* Adjust the GP value for a new range in the object file.  */
384
  HOWTO (ALPHA_R_GPVALUE, /* type */
385
   0,     /* rightshift */
386
   0,     /* size */
387
   0,     /* bitsize */
388
   false,     /* pc_relative */
389
   0,     /* bitpos */
390
   complain_overflow_dont, /* complain_on_overflow */
391
   0,     /* special_function */
392
   "GPVALUE",   /* name */
393
   false,     /* partial_inplace */
394
   0,     /* src_mask */
395
   0,     /* dst_mask */
396
   false)     /* pcrel_offset */
397
};
398

399
/* Recognize an Alpha ECOFF file.  */
400
401
static bfd_cleanup
402
alpha_ecoff_object_p (bfd *abfd)
403
1.65M
{
404
1.65M
  bfd_cleanup ret;
405
406
1.65M
  ret = coff_object_p (abfd);
407
408
1.65M
  if (ret != NULL)
409
16.7k
    {
410
16.7k
      asection *sec;
411
412
      /* Alpha ECOFF has a .pdata section.  The lnnoptr field of the
413
   .pdata section is the number of entries it contains.  Each
414
   entry takes up 8 bytes.  The number of entries is required
415
   since the section is aligned to a 16 byte boundary.  When we
416
   link .pdata sections together, we do not want to include the
417
   alignment bytes.  We handle this on input by faking the size
418
   of the .pdata section to remove the unwanted alignment bytes.
419
   On output we will set the lnnoptr field and force the
420
   alignment.  */
421
16.7k
      sec = bfd_get_section_by_name (abfd, _PDATA);
422
16.7k
      if (sec != (asection *) NULL)
423
10.2k
  {
424
10.2k
    bfd_size_type size;
425
426
10.2k
    size = (bfd_size_type) sec->line_filepos * 8;
427
10.2k
    BFD_ASSERT (size == sec->size
428
10.2k
          || size + 8 == sec->size);
429
10.2k
    if (!bfd_set_section_size (sec, size))
430
0
      return NULL;
431
10.2k
  }
432
16.7k
    }
433
434
1.65M
  return ret;
435
1.65M
}
436
437
/* See whether the magic number matches.  */
438
439
static bool
440
alpha_ecoff_bad_format_hook (bfd *abfd ATTRIBUTE_UNUSED,
441
           void * filehdr)
442
1.62M
{
443
1.62M
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
444
445
1.62M
  if (! ALPHA_ECOFF_BADMAG (*internal_f))
446
17.2k
    return true;
447
448
1.60M
  if (ALPHA_ECOFF_COMPRESSEDMAG (*internal_f))
449
6
    _bfd_error_handler
450
6
      (_("%pB: cannot handle compressed Alpha binaries; "
451
6
   "use compiler flags, or objZ, to generate uncompressed binaries"),
452
6
       abfd);
453
454
1.60M
  return false;
455
1.62M
}
456
457
/* This is a hook called by coff_real_object_p to create any backend
458
   specific information.  */
459
460
static void *
461
alpha_ecoff_mkobject_hook (bfd *abfd, void * filehdr, void * aouthdr)
462
17.2k
{
463
17.2k
  void * ecoff;
464
465
17.2k
  ecoff = _bfd_ecoff_mkobject_hook (abfd, filehdr, aouthdr);
466
467
17.2k
  if (ecoff != NULL)
468
17.2k
    {
469
17.2k
      struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
470
471
      /* Set additional BFD flags according to the object type from the
472
   machine specific file header flags.  */
473
17.2k
      switch (internal_f->f_flags & F_ALPHA_OBJECT_TYPE_MASK)
474
17.2k
  {
475
1.16k
  case F_ALPHA_SHARABLE:
476
1.16k
    abfd->flags |= DYNAMIC;
477
1.16k
    break;
478
9.55k
  case F_ALPHA_CALL_SHARED:
479
    /* Always executable if using shared libraries as the run time
480
       loader might resolve undefined references.  */
481
9.55k
    abfd->flags |= (DYNAMIC | EXEC_P);
482
9.55k
    break;
483
17.2k
  }
484
17.2k
    }
485
17.2k
  return ecoff;
486
17.2k
}
487

488
/* Reloc handling.  */
489
490
/* Swap a reloc in.  */
491
492
static void
493
alpha_ecoff_swap_reloc_in (bfd *abfd,
494
         void * ext_ptr,
495
         struct internal_reloc *intern)
496
5.09k
{
497
5.09k
  const RELOC *ext = (RELOC *) ext_ptr;
498
499
5.09k
  intern->r_vaddr = H_GET_64 (abfd, ext->r_vaddr);
500
5.09k
  intern->r_symndx = H_GET_32 (abfd, ext->r_symndx);
501
502
5.09k
  BFD_ASSERT (bfd_header_little_endian (abfd));
503
504
5.09k
  intern->r_type = ((ext->r_bits[0] & RELOC_BITS0_TYPE_LITTLE)
505
5.09k
        >> RELOC_BITS0_TYPE_SH_LITTLE);
506
5.09k
  intern->r_extern = (ext->r_bits[1] & RELOC_BITS1_EXTERN_LITTLE) != 0;
507
5.09k
  intern->r_offset = ((ext->r_bits[1] & RELOC_BITS1_OFFSET_LITTLE)
508
5.09k
          >> RELOC_BITS1_OFFSET_SH_LITTLE);
509
  /* Ignored the reserved bits.  */
510
5.09k
  intern->r_size = ((ext->r_bits[3] & RELOC_BITS3_SIZE_LITTLE)
511
5.09k
        >> RELOC_BITS3_SIZE_SH_LITTLE);
512
513
5.09k
  if (intern->r_type == ALPHA_R_LITUSE
514
5.09k
      || intern->r_type == ALPHA_R_GPDISP)
515
31
    {
516
      /* Handle the LITUSE and GPDISP relocs specially.  Its symndx
517
   value is not actually a symbol index, but is instead a
518
   special code.  We put the code in the r_size field, and
519
   clobber the symndx.  */
520
31
      if (intern->r_size != 0)
521
0
  abort ();
522
31
      intern->r_size = intern->r_symndx;
523
31
      intern->r_symndx = RELOC_SECTION_NONE;
524
31
    }
525
5.06k
  else if (intern->r_type == ALPHA_R_IGNORE)
526
2.77k
    {
527
      /* The IGNORE reloc generally follows a GPDISP reloc, and is
528
   against the .lita section.  The section is irrelevant.  */
529
2.77k
      if (! intern->r_extern &&
530
2.77k
    intern->r_symndx == RELOC_SECTION_ABS)
531
0
  abort ();
532
2.77k
      if (! intern->r_extern && intern->r_symndx == RELOC_SECTION_LITA)
533
3
  intern->r_symndx = RELOC_SECTION_ABS;
534
2.77k
    }
535
5.09k
}
536
537
/* Swap a reloc out.  */
538
539
static void
540
alpha_ecoff_swap_reloc_out (bfd *abfd,
541
          const struct internal_reloc *intern,
542
          void * dst)
543
0
{
544
0
  RELOC *ext = (RELOC *) dst;
545
0
  long symndx;
546
0
  unsigned char size;
547
548
  /* Undo the hackery done in swap_reloc_in.  */
549
0
  if (intern->r_type == ALPHA_R_LITUSE
550
0
      || intern->r_type == ALPHA_R_GPDISP)
551
0
    {
552
0
      symndx = intern->r_size;
553
0
      size = 0;
554
0
    }
555
0
  else if (intern->r_type == ALPHA_R_IGNORE
556
0
     && ! intern->r_extern
557
0
     && intern->r_symndx == RELOC_SECTION_ABS)
558
0
    {
559
0
      symndx = RELOC_SECTION_LITA;
560
0
      size = intern->r_size;
561
0
    }
562
0
  else
563
0
    {
564
0
      symndx = intern->r_symndx;
565
0
      size = intern->r_size;
566
0
    }
567
568
  /* XXX FIXME:  The maximum symndx value used to be 14 but this
569
     fails with object files produced by DEC's C++ compiler.
570
     Where does the value 14 (or 15) come from anyway ?  */
571
0
  BFD_ASSERT (intern->r_extern
572
0
        || (intern->r_symndx >= 0 && intern->r_symndx <= 15));
573
574
0
  H_PUT_64 (abfd, intern->r_vaddr, ext->r_vaddr);
575
0
  H_PUT_32 (abfd, symndx, ext->r_symndx);
576
577
0
  BFD_ASSERT (bfd_header_little_endian (abfd));
578
579
0
  ext->r_bits[0] = ((intern->r_type << RELOC_BITS0_TYPE_SH_LITTLE)
580
0
        & RELOC_BITS0_TYPE_LITTLE);
581
0
  ext->r_bits[1] = ((intern->r_extern ? RELOC_BITS1_EXTERN_LITTLE : 0)
582
0
        | ((intern->r_offset << RELOC_BITS1_OFFSET_SH_LITTLE)
583
0
           & RELOC_BITS1_OFFSET_LITTLE));
584
0
  ext->r_bits[2] = 0;
585
0
  ext->r_bits[3] = ((size << RELOC_BITS3_SIZE_SH_LITTLE)
586
0
        & RELOC_BITS3_SIZE_LITTLE);
587
0
}
588
589
/* Finish canonicalizing a reloc.  Part of this is generic to all
590
   ECOFF targets, and that part is in ecoff.c.  The rest is done in
591
   this backend routine.  It must fill in the howto field.  */
592
593
static void
594
alpha_adjust_reloc_in (bfd *abfd,
595
           const struct internal_reloc *intern,
596
           arelent *rptr)
597
5.09k
{
598
5.09k
  if (intern->r_type > ALPHA_R_GPVALUE)
599
1.75k
    {
600
      /* xgettext:c-format */
601
1.75k
      _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
602
1.75k
        abfd, intern->r_type);
603
1.75k
      bfd_set_error (bfd_error_bad_value);
604
1.75k
      rptr->addend = 0;
605
1.75k
      rptr->howto  = NULL;
606
1.75k
      return;
607
1.75k
    }
608
609
3.34k
  switch (intern->r_type)
610
3.34k
    {
611
17
    case ALPHA_R_BRADDR:
612
25
    case ALPHA_R_SREL16:
613
158
    case ALPHA_R_SREL32:
614
168
    case ALPHA_R_SREL64:
615
      /* This relocs appear to be fully resolved when they are against
616
   internal symbols.  Against external symbols, BRADDR at least
617
   appears to be resolved against the next instruction.  */
618
168
      if (! intern->r_extern)
619
164
  rptr->addend = 0;
620
4
      else
621
4
  rptr->addend = - (intern->r_vaddr + 4);
622
168
      break;
623
624
35
    case ALPHA_R_GPREL32:
625
110
    case ALPHA_R_LITERAL:
626
      /* Copy the gp value for this object file into the addend, to
627
   ensure that we are not confused by the linker.  */
628
110
      if (! intern->r_extern)
629
103
  rptr->addend += ecoff_data (abfd)->gp;
630
110
      break;
631
632
23
    case ALPHA_R_LITUSE:
633
31
    case ALPHA_R_GPDISP:
634
      /* The LITUSE and GPDISP relocs do not use a symbol, or an
635
   addend, but they do use a special code.  Put this code in the
636
   addend field.  */
637
31
      rptr->addend = intern->r_size;
638
31
      break;
639
640
14
    case ALPHA_R_OP_STORE:
641
      /* The STORE reloc needs the size and offset fields.  We store
642
   them in the addend.  */
643
14
      BFD_ASSERT (intern->r_offset <= 256);
644
14
      rptr->addend = (intern->r_offset << 8) + intern->r_size;
645
14
      break;
646
647
12
    case ALPHA_R_OP_PUSH:
648
21
    case ALPHA_R_OP_PSUB:
649
30
    case ALPHA_R_OP_PRSHIFT:
650
      /* The PUSH, PSUB and PRSHIFT relocs do not actually use an
651
   address.  I believe that the address supplied is really an
652
   addend.  */
653
30
      rptr->addend = intern->r_vaddr;
654
30
      break;
655
656
28
    case ALPHA_R_GPVALUE:
657
      /* Set the addend field to the new GP value.  */
658
28
      rptr->addend = intern->r_symndx + ecoff_data (abfd)->gp;
659
28
      break;
660
661
2.77k
    case ALPHA_R_IGNORE:
662
      /* If the type is ALPHA_R_IGNORE, make sure this is a reference
663
   to the absolute section so that the reloc is ignored.  For
664
   some reason the address of this reloc type is not adjusted by
665
   the section vma.  We record the gp value for this object file
666
   here, for convenience when doing the GPDISP relocation.  */
667
2.77k
      rptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
668
2.77k
      rptr->address = intern->r_vaddr;
669
2.77k
      rptr->addend = ecoff_data (abfd)->gp;
670
2.77k
      break;
671
672
183
    default:
673
183
      break;
674
3.34k
    }
675
676
3.34k
  rptr->howto = &alpha_howto_table[intern->r_type];
677
3.34k
}
678
679
/* When writing out a reloc we need to pull some values back out of
680
   the addend field into the reloc.  This is roughly the reverse of
681
   alpha_adjust_reloc_in, except that there are several changes we do
682
   not need to undo.  */
683
684
static void
685
alpha_adjust_reloc_out (bfd *abfd ATTRIBUTE_UNUSED,
686
      const arelent *rel,
687
      struct internal_reloc *intern)
688
0
{
689
0
  switch (intern->r_type)
690
0
    {
691
0
    case ALPHA_R_LITUSE:
692
0
    case ALPHA_R_GPDISP:
693
0
      intern->r_size = rel->addend;
694
0
      break;
695
696
0
    case ALPHA_R_OP_STORE:
697
0
      intern->r_size = rel->addend & 0xff;
698
0
      intern->r_offset = (rel->addend >> 8) & 0xff;
699
0
      break;
700
701
0
    case ALPHA_R_OP_PUSH:
702
0
    case ALPHA_R_OP_PSUB:
703
0
    case ALPHA_R_OP_PRSHIFT:
704
0
      intern->r_vaddr = rel->addend;
705
0
      break;
706
707
0
    case ALPHA_R_IGNORE:
708
0
      intern->r_vaddr = rel->address;
709
0
      break;
710
711
0
    default:
712
0
      break;
713
0
    }
714
0
}
715
716
/* The size of the stack for the relocation evaluator.  */
717
0
#define RELOC_STACKSIZE (10)
718
719
/* Alpha ECOFF relocs have a built in expression evaluator as well as
720
   other interdependencies.  Rather than use a bunch of special
721
   functions and global variables, we use a single routine to do all
722
   the relocation for a section.  I haven't yet worked out how the
723
   assembler is going to handle this.  */
724
725
static bfd_byte *
726
alpha_ecoff_get_relocated_section_contents (bfd *abfd,
727
              struct bfd_link_info *link_info,
728
              struct bfd_link_order *link_order,
729
              bfd_byte *data,
730
              bool relocatable,
731
              asymbol **symbols)
732
0
{
733
0
  bfd *input_bfd = link_order->u.indirect.section->owner;
734
0
  asection *input_section = link_order->u.indirect.section;
735
0
  long reloc_size;
736
0
  arelent **reloc_vector;
737
0
  long reloc_count;
738
0
  bfd *output_bfd = relocatable ? abfd : (bfd *) NULL;
739
0
  bfd_vma gp;
740
0
  bool gp_undefined;
741
0
  bfd_vma stack[RELOC_STACKSIZE];
742
0
  int tos = 0;
743
744
0
  reloc_size = bfd_get_reloc_upper_bound (input_bfd, input_section);
745
0
  if (reloc_size < 0)
746
0
    return NULL;
747
748
0
  bfd_byte *orig_data = data;
749
0
  if (!bfd_get_full_section_contents (input_bfd, input_section, &data))
750
0
    return NULL;
751
752
0
  if (data == NULL)
753
0
    return NULL;
754
755
0
  if (reloc_size == 0)
756
0
    return data;
757
758
0
  reloc_vector = (arelent **) bfd_malloc (reloc_size);
759
0
  if (reloc_vector == NULL)
760
0
    goto error_return;
761
762
0
  reloc_count = bfd_canonicalize_reloc (input_bfd, input_section,
763
0
          reloc_vector, symbols);
764
0
  if (reloc_count < 0)
765
0
    goto error_return;
766
0
  if (reloc_count == 0)
767
0
    goto successful_return;
768
769
  /* Get the GP value for the output BFD.  */
770
0
  gp_undefined = false;
771
0
  gp = _bfd_get_gp_value (abfd);
772
0
  if (gp == 0)
773
0
    {
774
0
      if (relocatable)
775
0
  {
776
0
    asection *sec;
777
0
    bfd_vma lo;
778
779
    /* Make up a value.  */
780
0
    lo = (bfd_vma) -1;
781
0
    for (sec = abfd->sections; sec != NULL; sec = sec->next)
782
0
      {
783
0
        if (sec->vma < lo
784
0
      && (strcmp (sec->name, ".sbss") == 0
785
0
          || strcmp (sec->name, ".sdata") == 0
786
0
          || strcmp (sec->name, ".lit4") == 0
787
0
          || strcmp (sec->name, ".lit8") == 0
788
0
          || strcmp (sec->name, ".lita") == 0))
789
0
    lo = sec->vma;
790
0
      }
791
0
    gp = lo + 0x8000;
792
0
    _bfd_set_gp_value (abfd, gp);
793
0
  }
794
0
      else
795
0
  {
796
0
    struct bfd_link_hash_entry *h;
797
798
0
    h = bfd_link_hash_lookup (link_info->hash, "_gp", false, false,
799
0
            true);
800
0
    if (h == (struct bfd_link_hash_entry *) NULL
801
0
        || h->type != bfd_link_hash_defined)
802
0
      gp_undefined = true;
803
0
    else
804
0
      {
805
0
        gp = (h->u.def.value
806
0
        + h->u.def.section->output_section->vma
807
0
        + h->u.def.section->output_offset);
808
0
        _bfd_set_gp_value (abfd, gp);
809
0
      }
810
0
  }
811
0
    }
812
813
0
  for (; *reloc_vector != (arelent *) NULL; reloc_vector++)
814
0
    {
815
0
      arelent *rel;
816
0
      bfd_reloc_status_type r;
817
0
      char *err;
818
819
0
      rel = *reloc_vector;
820
0
      r = bfd_reloc_ok;
821
0
      switch (rel->howto->type)
822
0
  {
823
0
  case ALPHA_R_IGNORE:
824
0
    rel->address += input_section->output_offset;
825
0
    break;
826
827
0
  case ALPHA_R_REFLONG:
828
0
  case ALPHA_R_REFQUAD:
829
0
  case ALPHA_R_BRADDR:
830
0
  case ALPHA_R_HINT:
831
0
  case ALPHA_R_SREL16:
832
0
  case ALPHA_R_SREL32:
833
0
  case ALPHA_R_SREL64:
834
0
    if (relocatable
835
0
        && ((*rel->sym_ptr_ptr)->flags & BSF_SECTION_SYM) == 0)
836
0
      {
837
0
        rel->address += input_section->output_offset;
838
0
        break;
839
0
      }
840
0
    r = bfd_perform_relocation (input_bfd, rel, data, input_section,
841
0
              output_bfd, &err);
842
0
    break;
843
844
0
  case ALPHA_R_GPREL32:
845
    /* This relocation is used in a switch table.  It is a 32
846
       bit offset from the current GP value.  We must adjust it
847
       by the different between the original GP value and the
848
       current GP value.  The original GP value is stored in the
849
       addend.  We adjust the addend and let
850
       bfd_perform_relocation finish the job.  */
851
0
    rel->addend -= gp;
852
0
    r = bfd_perform_relocation (input_bfd, rel, data, input_section,
853
0
              output_bfd, &err);
854
0
    if (r == bfd_reloc_ok && gp_undefined)
855
0
      {
856
0
        r = bfd_reloc_dangerous;
857
0
        err = (char *) _("GP relative relocation used when GP not defined");
858
0
      }
859
0
    break;
860
861
0
  case ALPHA_R_LITERAL:
862
    /* This is a reference to a literal value, generally
863
       (always?) in the .lita section.  This is a 16 bit GP
864
       relative relocation.  Sometimes the subsequent reloc is a
865
       LITUSE reloc, which indicates how this reloc is used.
866
       This sometimes permits rewriting the two instructions
867
       referred to by the LITERAL and the LITUSE into different
868
       instructions which do not refer to .lita.  This can save
869
       a memory reference, and permits removing a value from
870
       .lita thus saving GP relative space.
871
872
       We do not these optimizations.  To do them we would need
873
       to arrange to link the .lita section first, so that by
874
       the time we got here we would know the final values to
875
       use.  This would not be particularly difficult, but it is
876
       not currently implemented.  */
877
878
0
    {
879
0
      unsigned long insn;
880
881
      /* I believe that the LITERAL reloc will only apply to a
882
         ldq or ldl instruction, so check my assumption.  */
883
0
      insn = bfd_get_32 (input_bfd, data + rel->address);
884
0
      BFD_ASSERT (((insn >> 26) & 0x3f) == 0x29
885
0
      || ((insn >> 26) & 0x3f) == 0x28);
886
887
0
      rel->addend -= gp;
888
0
      r = bfd_perform_relocation (input_bfd, rel, data, input_section,
889
0
          output_bfd, &err);
890
0
      if (r == bfd_reloc_ok && gp_undefined)
891
0
        {
892
0
    r = bfd_reloc_dangerous;
893
0
    err =
894
0
      (char *) _("GP relative relocation used when GP not defined");
895
0
        }
896
0
    }
897
0
    break;
898
899
0
  case ALPHA_R_LITUSE:
900
    /* See ALPHA_R_LITERAL above for the uses of this reloc.  It
901
       does not cause anything to happen, itself.  */
902
0
    rel->address += input_section->output_offset;
903
0
    break;
904
905
0
  case ALPHA_R_GPDISP:
906
    /* This marks the ldah of an ldah/lda pair which loads the
907
       gp register with the difference of the gp value and the
908
       current location.  The second of the pair is r_size bytes
909
       ahead; it used to be marked with an ALPHA_R_IGNORE reloc,
910
       but that no longer happens in OSF/1 3.2.  */
911
0
    {
912
0
      unsigned long insn1, insn2;
913
0
      bfd_vma addend;
914
915
      /* Get the two instructions.  */
916
0
      insn1 = bfd_get_32 (input_bfd, data + rel->address);
917
0
      insn2 = bfd_get_32 (input_bfd, data + rel->address + rel->addend);
918
919
0
      BFD_ASSERT (((insn1 >> 26) & 0x3f) == 0x09); /* ldah */
920
0
      BFD_ASSERT (((insn2 >> 26) & 0x3f) == 0x08); /* lda */
921
922
      /* Get the existing addend.  We must account for the sign
923
         extension done by lda and ldah.  */
924
0
      addend = ((insn1 & 0xffff) << 16) + (insn2 & 0xffff);
925
0
      if (insn1 & 0x8000)
926
0
        {
927
0
    addend -= 0x80000000;
928
0
    addend -= 0x80000000;
929
0
        }
930
0
      if (insn2 & 0x8000)
931
0
        addend -= 0x10000;
932
933
      /* The existing addend includes the different between the
934
         gp of the input BFD and the address in the input BFD.
935
         Subtract this out.  */
936
0
      addend -= (ecoff_data (input_bfd)->gp
937
0
           - (input_section->vma + rel->address));
938
939
      /* Now add in the final gp value, and subtract out the
940
         final address.  */
941
0
      addend += (gp
942
0
           - (input_section->output_section->vma
943
0
        + input_section->output_offset
944
0
        + rel->address));
945
946
      /* Change the instructions, accounting for the sign
947
         extension, and write them out.  */
948
0
      if (addend & 0x8000)
949
0
        addend += 0x10000;
950
0
      insn1 = (insn1 & 0xffff0000) | ((addend >> 16) & 0xffff);
951
0
      insn2 = (insn2 & 0xffff0000) | (addend & 0xffff);
952
953
0
      bfd_put_32 (input_bfd, (bfd_vma) insn1, data + rel->address);
954
0
      bfd_put_32 (input_bfd, (bfd_vma) insn2,
955
0
      data + rel->address + rel->addend);
956
957
0
      rel->address += input_section->output_offset;
958
0
    }
959
0
    break;
960
961
0
  case ALPHA_R_OP_PUSH:
962
    /* Push a value on the reloc evaluation stack.  */
963
0
    {
964
0
      asymbol *symbol;
965
0
      bfd_vma relocation;
966
967
0
      if (relocatable)
968
0
        {
969
0
    rel->address += input_section->output_offset;
970
0
    break;
971
0
        }
972
973
      /* Figure out the relocation of this symbol.  */
974
0
      symbol = *rel->sym_ptr_ptr;
975
976
0
      if (bfd_is_und_section (symbol->section))
977
0
        r = bfd_reloc_undefined;
978
979
0
      if (bfd_is_com_section (symbol->section))
980
0
        relocation = 0;
981
0
      else
982
0
        relocation = symbol->value;
983
0
      relocation += symbol->section->output_section->vma;
984
0
      relocation += symbol->section->output_offset;
985
0
      relocation += rel->addend;
986
987
0
      if (tos >= RELOC_STACKSIZE)
988
0
        abort ();
989
990
0
      stack[tos++] = relocation;
991
0
    }
992
0
    break;
993
994
0
  case ALPHA_R_OP_STORE:
995
    /* Store a value from the reloc stack into a bitfield.  */
996
0
    {
997
0
      bfd_vma val;
998
0
      int offset, size;
999
1000
0
      if (relocatable)
1001
0
        {
1002
0
    rel->address += input_section->output_offset;
1003
0
    break;
1004
0
        }
1005
1006
0
      if (tos == 0)
1007
0
        abort ();
1008
1009
      /* The offset and size for this reloc are encoded into the
1010
         addend field by alpha_adjust_reloc_in.  */
1011
0
      offset = (rel->addend >> 8) & 0xff;
1012
0
      size = rel->addend & 0xff;
1013
1014
0
      val = bfd_get_64 (abfd, data + rel->address);
1015
0
      val &=~ (((1 << size) - 1) << offset);
1016
0
      val |= (stack[--tos] & ((1 << size) - 1)) << offset;
1017
0
      bfd_put_64 (abfd, val, data + rel->address);
1018
0
    }
1019
0
    break;
1020
1021
0
  case ALPHA_R_OP_PSUB:
1022
    /* Subtract a value from the top of the stack.  */
1023
0
    {
1024
0
      asymbol *symbol;
1025
0
      bfd_vma relocation;
1026
1027
0
      if (relocatable)
1028
0
        {
1029
0
    rel->address += input_section->output_offset;
1030
0
    break;
1031
0
        }
1032
1033
      /* Figure out the relocation of this symbol.  */
1034
0
      symbol = *rel->sym_ptr_ptr;
1035
1036
0
      if (bfd_is_und_section (symbol->section))
1037
0
        r = bfd_reloc_undefined;
1038
1039
0
      if (bfd_is_com_section (symbol->section))
1040
0
        relocation = 0;
1041
0
      else
1042
0
        relocation = symbol->value;
1043
0
      relocation += symbol->section->output_section->vma;
1044
0
      relocation += symbol->section->output_offset;
1045
0
      relocation += rel->addend;
1046
1047
0
      if (tos == 0)
1048
0
        abort ();
1049
1050
0
      stack[tos - 1] -= relocation;
1051
0
    }
1052
0
    break;
1053
1054
0
  case ALPHA_R_OP_PRSHIFT:
1055
    /* Shift the value on the top of the stack.  */
1056
0
    {
1057
0
      asymbol *symbol;
1058
0
      bfd_vma relocation;
1059
1060
0
      if (relocatable)
1061
0
        {
1062
0
    rel->address += input_section->output_offset;
1063
0
    break;
1064
0
        }
1065
1066
      /* Figure out the relocation of this symbol.  */
1067
0
      symbol = *rel->sym_ptr_ptr;
1068
1069
0
      if (bfd_is_und_section (symbol->section))
1070
0
        r = bfd_reloc_undefined;
1071
1072
0
      if (bfd_is_com_section (symbol->section))
1073
0
        relocation = 0;
1074
0
      else
1075
0
        relocation = symbol->value;
1076
0
      relocation += symbol->section->output_section->vma;
1077
0
      relocation += symbol->section->output_offset;
1078
0
      relocation += rel->addend;
1079
1080
0
      if (tos == 0)
1081
0
        abort ();
1082
1083
0
      stack[tos - 1] >>= relocation;
1084
0
    }
1085
0
    break;
1086
1087
0
  case ALPHA_R_GPVALUE:
1088
    /* I really don't know if this does the right thing.  */
1089
0
    gp = rel->addend;
1090
0
    gp_undefined = false;
1091
0
    break;
1092
1093
0
  default:
1094
0
    abort ();
1095
0
  }
1096
1097
0
      if (relocatable)
1098
0
  {
1099
0
    asection *os = input_section->output_section;
1100
1101
    /* A partial link, so keep the relocs.  */
1102
0
    os->orelocation[os->reloc_count] = rel;
1103
0
    os->reloc_count++;
1104
0
  }
1105
1106
0
      if (r != bfd_reloc_ok)
1107
0
  {
1108
0
    switch (r)
1109
0
      {
1110
0
      case bfd_reloc_undefined:
1111
0
        (*link_info->callbacks->undefined_symbol)
1112
0
    (link_info, bfd_asymbol_name (*rel->sym_ptr_ptr),
1113
0
     input_bfd, input_section, rel->address, true);
1114
0
        break;
1115
0
      case bfd_reloc_dangerous:
1116
0
        (*link_info->callbacks->reloc_dangerous)
1117
0
    (link_info, err, input_bfd, input_section, rel->address);
1118
0
        break;
1119
0
      case bfd_reloc_overflow:
1120
0
        (*link_info->callbacks->reloc_overflow)
1121
0
    (link_info, NULL, bfd_asymbol_name (*rel->sym_ptr_ptr),
1122
0
     rel->howto->name, rel->addend, input_bfd,
1123
0
     input_section, rel->address);
1124
0
        break;
1125
0
      case bfd_reloc_outofrange:
1126
0
      default:
1127
0
        abort ();
1128
0
        break;
1129
0
      }
1130
0
  }
1131
0
    }
1132
1133
0
  if (tos != 0)
1134
0
    abort ();
1135
1136
0
 successful_return:
1137
0
  free (reloc_vector);
1138
0
  return data;
1139
1140
0
 error_return:
1141
0
  free (reloc_vector);
1142
0
  if (orig_data == NULL)
1143
0
    free (data);
1144
0
  return NULL;
1145
0
}
1146
1147
/* Get the howto structure for a generic reloc type.  */
1148
1149
static reloc_howto_type *
1150
alpha_bfd_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
1151
           bfd_reloc_code_real_type code)
1152
0
{
1153
0
  int alpha_type;
1154
1155
0
  switch (code)
1156
0
    {
1157
0
    case BFD_RELOC_32:
1158
0
      alpha_type = ALPHA_R_REFLONG;
1159
0
      break;
1160
0
    case BFD_RELOC_64:
1161
0
    case BFD_RELOC_CTOR:
1162
0
      alpha_type = ALPHA_R_REFQUAD;
1163
0
      break;
1164
0
    case BFD_RELOC_GPREL32:
1165
0
      alpha_type = ALPHA_R_GPREL32;
1166
0
      break;
1167
0
    case BFD_RELOC_ALPHA_LITERAL:
1168
0
      alpha_type = ALPHA_R_LITERAL;
1169
0
      break;
1170
0
    case BFD_RELOC_ALPHA_LITUSE:
1171
0
      alpha_type = ALPHA_R_LITUSE;
1172
0
      break;
1173
0
    case BFD_RELOC_ALPHA_GPDISP_HI16:
1174
0
      alpha_type = ALPHA_R_GPDISP;
1175
0
      break;
1176
0
    case BFD_RELOC_ALPHA_GPDISP_LO16:
1177
0
      alpha_type = ALPHA_R_IGNORE;
1178
0
      break;
1179
0
    case BFD_RELOC_23_PCREL_S2:
1180
0
      alpha_type = ALPHA_R_BRADDR;
1181
0
      break;
1182
0
    case BFD_RELOC_ALPHA_HINT:
1183
0
      alpha_type = ALPHA_R_HINT;
1184
0
      break;
1185
0
    case BFD_RELOC_16_PCREL:
1186
0
      alpha_type = ALPHA_R_SREL16;
1187
0
      break;
1188
0
    case BFD_RELOC_32_PCREL:
1189
0
      alpha_type = ALPHA_R_SREL32;
1190
0
      break;
1191
0
    case BFD_RELOC_64_PCREL:
1192
0
      alpha_type = ALPHA_R_SREL64;
1193
0
      break;
1194
0
    default:
1195
0
      return (reloc_howto_type *) NULL;
1196
0
    }
1197
1198
0
  return &alpha_howto_table[alpha_type];
1199
0
}
1200
1201
static reloc_howto_type *
1202
alpha_bfd_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
1203
           const char *r_name)
1204
0
{
1205
0
  unsigned int i;
1206
1207
0
  for (i = 0;
1208
0
       i < sizeof (alpha_howto_table) / sizeof (alpha_howto_table[0]);
1209
0
       i++)
1210
0
    if (alpha_howto_table[i].name != NULL
1211
0
  && strcasecmp (alpha_howto_table[i].name, r_name) == 0)
1212
0
      return &alpha_howto_table[i];
1213
1214
0
  return NULL;
1215
0
}
1216

1217
/* A helper routine for alpha_relocate_section which converts an
1218
   external reloc when generating relocatable output.  Returns the
1219
   relocation amount.  */
1220
1221
static bfd_vma
1222
alpha_convert_external_reloc (bfd *output_bfd ATTRIBUTE_UNUSED,
1223
            struct bfd_link_info *info,
1224
            bfd *input_bfd,
1225
            struct external_reloc *ext_rel,
1226
            struct ecoff_link_hash_entry *h)
1227
0
{
1228
0
  unsigned long r_symndx;
1229
0
  bfd_vma relocation;
1230
1231
0
  BFD_ASSERT (bfd_link_relocatable (info));
1232
1233
0
  if (h->root.type == bfd_link_hash_defined
1234
0
      || h->root.type == bfd_link_hash_defweak)
1235
0
    {
1236
0
      asection *hsec;
1237
0
      const char *name;
1238
1239
      /* This symbol is defined in the output.  Convert the reloc from
1240
   being against the symbol to being against the section.  */
1241
1242
      /* Clear the r_extern bit.  */
1243
0
      ext_rel->r_bits[1] &=~ RELOC_BITS1_EXTERN_LITTLE;
1244
1245
      /* Compute a new r_symndx value.  */
1246
0
      hsec = h->root.u.def.section;
1247
0
      name = bfd_section_name (hsec->output_section);
1248
1249
0
      r_symndx = (unsigned long) -1;
1250
0
      switch (name[1])
1251
0
  {
1252
0
  case 'A':
1253
0
    if (strcmp (name, "*ABS*") == 0)
1254
0
      r_symndx = RELOC_SECTION_ABS;
1255
0
    break;
1256
0
  case 'b':
1257
0
    if (strcmp (name, ".bss") == 0)
1258
0
      r_symndx = RELOC_SECTION_BSS;
1259
0
    break;
1260
0
  case 'd':
1261
0
    if (strcmp (name, ".data") == 0)
1262
0
      r_symndx = RELOC_SECTION_DATA;
1263
0
    break;
1264
0
  case 'f':
1265
0
    if (strcmp (name, ".fini") == 0)
1266
0
      r_symndx = RELOC_SECTION_FINI;
1267
0
    break;
1268
0
  case 'i':
1269
0
    if (strcmp (name, ".init") == 0)
1270
0
      r_symndx = RELOC_SECTION_INIT;
1271
0
    break;
1272
0
  case 'l':
1273
0
    if (strcmp (name, ".lita") == 0)
1274
0
      r_symndx = RELOC_SECTION_LITA;
1275
0
    else if (strcmp (name, ".lit8") == 0)
1276
0
      r_symndx = RELOC_SECTION_LIT8;
1277
0
    else if (strcmp (name, ".lit4") == 0)
1278
0
      r_symndx = RELOC_SECTION_LIT4;
1279
0
    break;
1280
0
  case 'p':
1281
0
    if (strcmp (name, ".pdata") == 0)
1282
0
      r_symndx = RELOC_SECTION_PDATA;
1283
0
    break;
1284
0
  case 'r':
1285
0
    if (strcmp (name, ".rdata") == 0)
1286
0
      r_symndx = RELOC_SECTION_RDATA;
1287
0
    else if (strcmp (name, ".rconst") == 0)
1288
0
      r_symndx = RELOC_SECTION_RCONST;
1289
0
    break;
1290
0
  case 's':
1291
0
    if (strcmp (name, ".sdata") == 0)
1292
0
      r_symndx = RELOC_SECTION_SDATA;
1293
0
    else if (strcmp (name, ".sbss") == 0)
1294
0
      r_symndx = RELOC_SECTION_SBSS;
1295
0
    break;
1296
0
  case 't':
1297
0
    if (strcmp (name, ".text") == 0)
1298
0
      r_symndx = RELOC_SECTION_TEXT;
1299
0
    break;
1300
0
  case 'x':
1301
0
    if (strcmp (name, ".xdata") == 0)
1302
0
      r_symndx = RELOC_SECTION_XDATA;
1303
0
    break;
1304
0
  }
1305
1306
0
      if (r_symndx == (unsigned long) -1)
1307
0
  abort ();
1308
1309
      /* Add the section VMA and the symbol value.  */
1310
0
      relocation = (h->root.u.def.value
1311
0
        + hsec->output_section->vma
1312
0
        + hsec->output_offset);
1313
0
    }
1314
0
  else
1315
0
    {
1316
      /* Change the symndx value to the right one for
1317
   the output BFD.  */
1318
0
      r_symndx = h->indx;
1319
0
      if (r_symndx == (unsigned long) -1)
1320
0
  {
1321
    /* Caller must give an error.  */
1322
0
    r_symndx = 0;
1323
0
  }
1324
0
      relocation = 0;
1325
0
    }
1326
1327
  /* Write out the new r_symndx value.  */
1328
0
  H_PUT_32 (input_bfd, r_symndx, ext_rel->r_symndx);
1329
1330
0
  return relocation;
1331
0
}
1332
1333
/* Relocate a section while linking an Alpha ECOFF file.  This is
1334
   quite similar to get_relocated_section_contents.  Perhaps they
1335
   could be combined somehow.  */
1336
1337
static bool
1338
alpha_relocate_section (bfd *output_bfd,
1339
      struct bfd_link_info *info,
1340
      bfd *input_bfd,
1341
      asection *input_section,
1342
      bfd_byte *contents,
1343
      void * external_relocs)
1344
0
{
1345
0
  asection **symndx_to_section, *lita_sec;
1346
0
  struct ecoff_link_hash_entry **sym_hashes;
1347
0
  bfd_vma gp;
1348
0
  bool gp_undefined;
1349
0
  bfd_vma stack[RELOC_STACKSIZE];
1350
0
  int tos = 0;
1351
0
  struct external_reloc *ext_rel;
1352
0
  struct external_reloc *ext_rel_end;
1353
0
  bfd_size_type amt;
1354
1355
  /* We keep a table mapping the symndx found in an internal reloc to
1356
     the appropriate section.  This is faster than looking up the
1357
     section by name each time.  */
1358
0
  symndx_to_section = ecoff_data (input_bfd)->symndx_to_section;
1359
0
  if (symndx_to_section == (asection **) NULL)
1360
0
    {
1361
0
      amt = NUM_RELOC_SECTIONS * sizeof (asection *);
1362
0
      symndx_to_section = (asection **) bfd_alloc (input_bfd, amt);
1363
0
      if (!symndx_to_section)
1364
0
  return false;
1365
1366
0
      symndx_to_section[RELOC_SECTION_NONE] = NULL;
1367
0
      symndx_to_section[RELOC_SECTION_TEXT] =
1368
0
  bfd_get_section_by_name (input_bfd, ".text");
1369
0
      symndx_to_section[RELOC_SECTION_RDATA] =
1370
0
  bfd_get_section_by_name (input_bfd, ".rdata");
1371
0
      symndx_to_section[RELOC_SECTION_DATA] =
1372
0
  bfd_get_section_by_name (input_bfd, ".data");
1373
0
      symndx_to_section[RELOC_SECTION_SDATA] =
1374
0
  bfd_get_section_by_name (input_bfd, ".sdata");
1375
0
      symndx_to_section[RELOC_SECTION_SBSS] =
1376
0
  bfd_get_section_by_name (input_bfd, ".sbss");
1377
0
      symndx_to_section[RELOC_SECTION_BSS] =
1378
0
  bfd_get_section_by_name (input_bfd, ".bss");
1379
0
      symndx_to_section[RELOC_SECTION_INIT] =
1380
0
  bfd_get_section_by_name (input_bfd, ".init");
1381
0
      symndx_to_section[RELOC_SECTION_LIT8] =
1382
0
  bfd_get_section_by_name (input_bfd, ".lit8");
1383
0
      symndx_to_section[RELOC_SECTION_LIT4] =
1384
0
  bfd_get_section_by_name (input_bfd, ".lit4");
1385
0
      symndx_to_section[RELOC_SECTION_XDATA] =
1386
0
  bfd_get_section_by_name (input_bfd, ".xdata");
1387
0
      symndx_to_section[RELOC_SECTION_PDATA] =
1388
0
  bfd_get_section_by_name (input_bfd, ".pdata");
1389
0
      symndx_to_section[RELOC_SECTION_FINI] =
1390
0
  bfd_get_section_by_name (input_bfd, ".fini");
1391
0
      symndx_to_section[RELOC_SECTION_LITA] =
1392
0
  bfd_get_section_by_name (input_bfd, ".lita");
1393
0
      symndx_to_section[RELOC_SECTION_ABS] = bfd_abs_section_ptr;
1394
0
      symndx_to_section[RELOC_SECTION_RCONST] =
1395
0
  bfd_get_section_by_name (input_bfd, ".rconst");
1396
1397
0
      ecoff_data (input_bfd)->symndx_to_section = symndx_to_section;
1398
0
    }
1399
1400
0
  sym_hashes = ecoff_data (input_bfd)->sym_hashes;
1401
1402
  /* On the Alpha, the .lita section must be addressable by the global
1403
     pointer.  To support large programs, we need to allow multiple
1404
     global pointers.  This works as long as each input .lita section
1405
     is <64KB big.  This implies that when producing relocatable
1406
     output, the .lita section is limited to 64KB. .  */
1407
1408
0
  lita_sec = symndx_to_section[RELOC_SECTION_LITA];
1409
0
  gp = _bfd_get_gp_value (output_bfd);
1410
0
  if (! bfd_link_relocatable (info) && lita_sec != NULL)
1411
0
    {
1412
0
      struct ecoff_section_tdata *lita_sec_data;
1413
1414
      /* Make sure we have a section data structure to which we can
1415
   hang on to the gp value we pick for the section.  */
1416
0
      lita_sec_data = ecoff_section_data (input_bfd, lita_sec);
1417
0
      if (lita_sec_data == NULL)
1418
0
  {
1419
0
    amt = sizeof (struct ecoff_section_tdata);
1420
0
    lita_sec_data = ((struct ecoff_section_tdata *)
1421
0
         bfd_zalloc (input_bfd, amt));
1422
0
    lita_sec->used_by_bfd = lita_sec_data;
1423
0
  }
1424
1425
0
      if (lita_sec_data->gp != 0)
1426
0
  {
1427
    /* If we already assigned a gp to this section, we better
1428
       stick with that value.  */
1429
0
    gp = lita_sec_data->gp;
1430
0
  }
1431
0
      else
1432
0
  {
1433
0
    bfd_vma lita_vma;
1434
0
    bfd_size_type lita_size;
1435
1436
0
    lita_vma = lita_sec->output_offset + lita_sec->output_section->vma;
1437
0
    lita_size = lita_sec->size;
1438
1439
0
    if (gp == 0
1440
0
        || lita_vma <  gp - 0x8000
1441
0
        || lita_vma + lita_size >= gp + 0x8000)
1442
0
      {
1443
        /* Either gp hasn't been set at all or the current gp
1444
     cannot address this .lita section.  In both cases we
1445
     reset the gp to point into the "middle" of the
1446
     current input .lita section.  */
1447
0
        if (gp && !ecoff_data (output_bfd)->issued_multiple_gp_warning)
1448
0
    {
1449
0
      (*info->callbacks->warning) (info,
1450
0
                 _("using multiple gp values"),
1451
0
                 (char *) NULL, output_bfd,
1452
0
                 (asection *) NULL, (bfd_vma) 0);
1453
0
      ecoff_data (output_bfd)->issued_multiple_gp_warning = true;
1454
0
    }
1455
0
        if (lita_vma < gp - 0x8000)
1456
0
    gp = lita_vma + lita_size - 0x8000;
1457
0
        else
1458
0
    gp = lita_vma + 0x8000;
1459
1460
0
      }
1461
1462
0
    lita_sec_data->gp = gp;
1463
0
  }
1464
1465
0
      _bfd_set_gp_value (output_bfd, gp);
1466
0
    }
1467
1468
0
  gp_undefined = (gp == 0);
1469
1470
0
  BFD_ASSERT (bfd_header_little_endian (output_bfd));
1471
0
  BFD_ASSERT (bfd_header_little_endian (input_bfd));
1472
1473
0
  ext_rel = (struct external_reloc *) external_relocs;
1474
0
  ext_rel_end = ext_rel + input_section->reloc_count;
1475
0
  for (; ext_rel < ext_rel_end; ext_rel++)
1476
0
    {
1477
0
      bfd_vma r_vaddr;
1478
0
      unsigned long r_symndx;
1479
0
      int r_type;
1480
0
      int r_extern;
1481
0
      int r_offset;
1482
0
      int r_size;
1483
0
      bool relocatep;
1484
0
      bool adjust_addrp;
1485
0
      bool gp_usedp;
1486
0
      bfd_vma addend;
1487
1488
0
      r_vaddr = H_GET_64 (input_bfd, ext_rel->r_vaddr);
1489
0
      r_symndx = H_GET_32 (input_bfd, ext_rel->r_symndx);
1490
1491
0
      r_type = ((ext_rel->r_bits[0] & RELOC_BITS0_TYPE_LITTLE)
1492
0
    >> RELOC_BITS0_TYPE_SH_LITTLE);
1493
0
      r_extern = (ext_rel->r_bits[1] & RELOC_BITS1_EXTERN_LITTLE) != 0;
1494
0
      r_offset = ((ext_rel->r_bits[1] & RELOC_BITS1_OFFSET_LITTLE)
1495
0
      >> RELOC_BITS1_OFFSET_SH_LITTLE);
1496
      /* Ignored the reserved bits.  */
1497
0
      r_size = ((ext_rel->r_bits[3] & RELOC_BITS3_SIZE_LITTLE)
1498
0
    >> RELOC_BITS3_SIZE_SH_LITTLE);
1499
1500
0
      relocatep = false;
1501
0
      adjust_addrp = true;
1502
0
      gp_usedp = false;
1503
0
      addend = 0;
1504
1505
0
      switch (r_type)
1506
0
  {
1507
0
  case ALPHA_R_GPRELHIGH:
1508
0
    _bfd_error_handler (_("%pB: %s unsupported"),
1509
0
            input_bfd, "ALPHA_R_GPRELHIGH");
1510
0
    bfd_set_error (bfd_error_bad_value);
1511
0
    continue;
1512
1513
0
  case ALPHA_R_GPRELLOW:
1514
0
    _bfd_error_handler (_("%pB: %s unsupported"),
1515
0
            input_bfd, "ALPHA_R_GPRELLOW");
1516
0
    bfd_set_error (bfd_error_bad_value);
1517
0
    continue;
1518
1519
0
  default:
1520
    /* xgettext:c-format */
1521
0
    _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
1522
0
            input_bfd, (int) r_type);
1523
0
    bfd_set_error (bfd_error_bad_value);
1524
0
    continue;
1525
1526
0
  case ALPHA_R_IGNORE:
1527
    /* This reloc appears after a GPDISP reloc.  On earlier
1528
       versions of OSF/1, It marked the position of the second
1529
       instruction to be altered by the GPDISP reloc, but it is
1530
       not otherwise used for anything.  For some reason, the
1531
       address of the relocation does not appear to include the
1532
       section VMA, unlike the other relocation types.  */
1533
0
    if (bfd_link_relocatable (info))
1534
0
      H_PUT_64 (input_bfd, input_section->output_offset + r_vaddr,
1535
0
          ext_rel->r_vaddr);
1536
0
    adjust_addrp = false;
1537
0
    break;
1538
1539
0
  case ALPHA_R_REFLONG:
1540
0
  case ALPHA_R_REFQUAD:
1541
0
  case ALPHA_R_HINT:
1542
0
    relocatep = true;
1543
0
    break;
1544
1545
0
  case ALPHA_R_BRADDR:
1546
0
  case ALPHA_R_SREL16:
1547
0
  case ALPHA_R_SREL32:
1548
0
  case ALPHA_R_SREL64:
1549
0
    if (r_extern)
1550
0
      addend += - (r_vaddr + 4);
1551
0
    relocatep = true;
1552
0
    break;
1553
1554
0
  case ALPHA_R_GPREL32:
1555
    /* This relocation is used in a switch table.  It is a 32
1556
       bit offset from the current GP value.  We must adjust it
1557
       by the different between the original GP value and the
1558
       current GP value.  */
1559
0
    relocatep = true;
1560
0
    addend = ecoff_data (input_bfd)->gp - gp;
1561
0
    gp_usedp = true;
1562
0
    break;
1563
1564
0
  case ALPHA_R_LITERAL:
1565
    /* This is a reference to a literal value, generally
1566
       (always?) in the .lita section.  This is a 16 bit GP
1567
       relative relocation.  Sometimes the subsequent reloc is a
1568
       LITUSE reloc, which indicates how this reloc is used.
1569
       This sometimes permits rewriting the two instructions
1570
       referred to by the LITERAL and the LITUSE into different
1571
       instructions which do not refer to .lita.  This can save
1572
       a memory reference, and permits removing a value from
1573
       .lita thus saving GP relative space.
1574
1575
       We do not these optimizations.  To do them we would need
1576
       to arrange to link the .lita section first, so that by
1577
       the time we got here we would know the final values to
1578
       use.  This would not be particularly difficult, but it is
1579
       not currently implemented.  */
1580
1581
    /* I believe that the LITERAL reloc will only apply to a ldq
1582
       or ldl instruction, so check my assumption.  */
1583
0
    {
1584
0
      unsigned long insn;
1585
1586
0
      insn = bfd_get_32 (input_bfd,
1587
0
             contents + r_vaddr - input_section->vma);
1588
0
      BFD_ASSERT (((insn >> 26) & 0x3f) == 0x29
1589
0
      || ((insn >> 26) & 0x3f) == 0x28);
1590
0
    }
1591
1592
0
    relocatep = true;
1593
0
    addend = ecoff_data (input_bfd)->gp - gp;
1594
0
    gp_usedp = true;
1595
0
    break;
1596
1597
0
  case ALPHA_R_LITUSE:
1598
    /* See ALPHA_R_LITERAL above for the uses of this reloc.  It
1599
       does not cause anything to happen, itself.  */
1600
0
    break;
1601
1602
0
  case ALPHA_R_GPDISP:
1603
    /* This marks the ldah of an ldah/lda pair which loads the
1604
       gp register with the difference of the gp value and the
1605
       current location.  The second of the pair is r_symndx
1606
       bytes ahead.  It used to be marked with an ALPHA_R_IGNORE
1607
       reloc, but OSF/1 3.2 no longer does that.  */
1608
0
    {
1609
0
      unsigned long insn1, insn2;
1610
1611
      /* Get the two instructions.  */
1612
0
      insn1 = bfd_get_32 (input_bfd,
1613
0
        contents + r_vaddr - input_section->vma);
1614
0
      insn2 = bfd_get_32 (input_bfd,
1615
0
        (contents
1616
0
         + r_vaddr
1617
0
         - input_section->vma
1618
0
         + r_symndx));
1619
1620
0
      BFD_ASSERT (((insn1 >> 26) & 0x3f) == 0x09); /* ldah */
1621
0
      BFD_ASSERT (((insn2 >> 26) & 0x3f) == 0x08); /* lda */
1622
1623
      /* Get the existing addend.  We must account for the sign
1624
         extension done by lda and ldah.  */
1625
0
      addend = ((insn1 & 0xffff) << 16) + (insn2 & 0xffff);
1626
0
      if (insn1 & 0x8000)
1627
0
        {
1628
    /* This is addend -= 0x100000000 without causing an
1629
       integer overflow on a 32 bit host.  */
1630
0
    addend -= 0x80000000;
1631
0
    addend -= 0x80000000;
1632
0
        }
1633
0
      if (insn2 & 0x8000)
1634
0
        addend -= 0x10000;
1635
1636
      /* The existing addend includes the difference between the
1637
         gp of the input BFD and the address in the input BFD.
1638
         We want to change this to the difference between the
1639
         final GP and the final address.  */
1640
0
      addend += (gp
1641
0
           - ecoff_data (input_bfd)->gp
1642
0
           + input_section->vma
1643
0
           - (input_section->output_section->vma
1644
0
        + input_section->output_offset));
1645
1646
      /* Change the instructions, accounting for the sign
1647
         extension, and write them out.  */
1648
0
      if (addend & 0x8000)
1649
0
        addend += 0x10000;
1650
0
      insn1 = (insn1 & 0xffff0000) | ((addend >> 16) & 0xffff);
1651
0
      insn2 = (insn2 & 0xffff0000) | (addend & 0xffff);
1652
1653
0
      bfd_put_32 (input_bfd, (bfd_vma) insn1,
1654
0
      contents + r_vaddr - input_section->vma);
1655
0
      bfd_put_32 (input_bfd, (bfd_vma) insn2,
1656
0
      contents + r_vaddr - input_section->vma + r_symndx);
1657
1658
0
      gp_usedp = true;
1659
0
    }
1660
0
    break;
1661
1662
0
  case ALPHA_R_OP_PUSH:
1663
0
  case ALPHA_R_OP_PSUB:
1664
0
  case ALPHA_R_OP_PRSHIFT:
1665
    /* Manipulate values on the reloc evaluation stack.  The
1666
       r_vaddr field is not an address in input_section, it is
1667
       the current value (including any addend) of the object
1668
       being used.  */
1669
0
    if (! r_extern)
1670
0
      {
1671
0
        asection *s;
1672
1673
0
        s = symndx_to_section[r_symndx];
1674
0
        if (s == (asection *) NULL)
1675
0
    abort ();
1676
0
        addend = s->output_section->vma + s->output_offset - s->vma;
1677
0
      }
1678
0
    else
1679
0
      {
1680
0
        struct ecoff_link_hash_entry *h;
1681
1682
0
        h = sym_hashes[r_symndx];
1683
0
        if (h == (struct ecoff_link_hash_entry *) NULL)
1684
0
    abort ();
1685
1686
0
        if (! bfd_link_relocatable (info))
1687
0
    {
1688
0
      if (h->root.type == bfd_link_hash_defined
1689
0
          || h->root.type == bfd_link_hash_defweak)
1690
0
        addend = (h->root.u.def.value
1691
0
            + h->root.u.def.section->output_section->vma
1692
0
            + h->root.u.def.section->output_offset);
1693
0
      else
1694
0
        {
1695
          /* Note that we pass the address as 0, since we
1696
       do not have a meaningful number for the
1697
       location within the section that is being
1698
       relocated.  */
1699
0
          (*info->callbacks->undefined_symbol)
1700
0
      (info, h->root.root.string, input_bfd,
1701
0
       input_section, (bfd_vma) 0, true);
1702
0
          addend = 0;
1703
0
        }
1704
0
    }
1705
0
        else
1706
0
    {
1707
0
      if (h->root.type != bfd_link_hash_defined
1708
0
          && h->root.type != bfd_link_hash_defweak
1709
0
          && h->indx == -1)
1710
0
        {
1711
          /* This symbol is not being written out.  Pass
1712
       the address as 0, as with undefined_symbol,
1713
       above.  */
1714
0
          (*info->callbacks->unattached_reloc)
1715
0
      (info, h->root.root.string,
1716
0
       input_bfd, input_section, (bfd_vma) 0);
1717
0
        }
1718
1719
0
      addend = alpha_convert_external_reloc (output_bfd, info,
1720
0
               input_bfd,
1721
0
               ext_rel, h);
1722
0
    }
1723
0
      }
1724
1725
0
    addend += r_vaddr;
1726
1727
0
    if (bfd_link_relocatable (info))
1728
0
      {
1729
        /* Adjust r_vaddr by the addend.  */
1730
0
        H_PUT_64 (input_bfd, addend, ext_rel->r_vaddr);
1731
0
      }
1732
0
    else
1733
0
      {
1734
0
        switch (r_type)
1735
0
    {
1736
0
    case ALPHA_R_OP_PUSH:
1737
0
      if (tos >= RELOC_STACKSIZE)
1738
0
        abort ();
1739
0
      stack[tos++] = addend;
1740
0
      break;
1741
1742
0
    case ALPHA_R_OP_PSUB:
1743
0
      if (tos == 0)
1744
0
        abort ();
1745
0
      stack[tos - 1] -= addend;
1746
0
      break;
1747
1748
0
    case ALPHA_R_OP_PRSHIFT:
1749
0
      if (tos == 0)
1750
0
        abort ();
1751
0
      stack[tos - 1] >>= addend;
1752
0
      break;
1753
0
    }
1754
0
      }
1755
1756
0
    adjust_addrp = false;
1757
0
    break;
1758
1759
0
  case ALPHA_R_OP_STORE:
1760
    /* Store a value from the reloc stack into a bitfield.  If
1761
       we are generating relocatable output, all we do is
1762
       adjust the address of the reloc.  */
1763
0
    if (! bfd_link_relocatable (info))
1764
0
      {
1765
0
        bfd_vma mask;
1766
0
        bfd_vma val;
1767
1768
0
        if (tos == 0)
1769
0
    abort ();
1770
1771
        /* Get the relocation mask.  The separate steps and the
1772
     casts to bfd_vma are attempts to avoid a bug in the
1773
     Alpha OSF 1.3 C compiler.  See reloc.c for more
1774
     details.  */
1775
0
        mask = 1;
1776
0
        mask <<= (bfd_vma) r_size;
1777
0
        mask -= 1;
1778
1779
        /* FIXME: I don't know what kind of overflow checking,
1780
     if any, should be done here.  */
1781
0
        val = bfd_get_64 (input_bfd,
1782
0
        contents + r_vaddr - input_section->vma);
1783
0
        val &=~ mask << (bfd_vma) r_offset;
1784
0
        val |= (stack[--tos] & mask) << (bfd_vma) r_offset;
1785
0
        bfd_put_64 (input_bfd, val,
1786
0
        contents + r_vaddr - input_section->vma);
1787
0
      }
1788
0
    break;
1789
1790
0
  case ALPHA_R_GPVALUE:
1791
    /* I really don't know if this does the right thing.  */
1792
0
    gp = ecoff_data (input_bfd)->gp + r_symndx;
1793
0
    gp_undefined = false;
1794
0
    break;
1795
0
  }
1796
1797
0
      if (relocatep)
1798
0
  {
1799
0
    reloc_howto_type *howto;
1800
0
    struct ecoff_link_hash_entry *h = NULL;
1801
0
    asection *s = NULL;
1802
0
    bfd_vma relocation;
1803
0
    bfd_reloc_status_type r;
1804
1805
    /* Perform a relocation.  */
1806
1807
0
    howto = &alpha_howto_table[r_type];
1808
1809
0
    if (r_extern)
1810
0
      {
1811
0
        h = sym_hashes[r_symndx];
1812
        /* If h is NULL, that means that there is a reloc
1813
     against an external symbol which we thought was just
1814
     a debugging symbol.  This should not happen.  */
1815
0
        if (h == (struct ecoff_link_hash_entry *) NULL)
1816
0
    abort ();
1817
0
      }
1818
0
    else
1819
0
      {
1820
0
        if (r_symndx >= NUM_RELOC_SECTIONS)
1821
0
    s = NULL;
1822
0
        else
1823
0
    s = symndx_to_section[r_symndx];
1824
1825
0
        if (s == (asection *) NULL)
1826
0
    abort ();
1827
0
      }
1828
1829
0
    if (bfd_link_relocatable (info))
1830
0
      {
1831
        /* We are generating relocatable output, and must
1832
     convert the existing reloc.  */
1833
0
        if (r_extern)
1834
0
    {
1835
0
      if (h->root.type != bfd_link_hash_defined
1836
0
          && h->root.type != bfd_link_hash_defweak
1837
0
          && h->indx == -1)
1838
0
        {
1839
          /* This symbol is not being written out.  */
1840
0
          (*info->callbacks->unattached_reloc)
1841
0
      (info, h->root.root.string, input_bfd,
1842
0
       input_section, r_vaddr - input_section->vma);
1843
0
        }
1844
1845
0
      relocation = alpha_convert_external_reloc (output_bfd,
1846
0
                   info,
1847
0
                   input_bfd,
1848
0
                   ext_rel,
1849
0
                   h);
1850
0
    }
1851
0
        else
1852
0
    {
1853
      /* This is a relocation against a section.  Adjust
1854
         the value by the amount the section moved.  */
1855
0
      relocation = (s->output_section->vma
1856
0
        + s->output_offset
1857
0
        - s->vma);
1858
0
    }
1859
1860
        /* If this is PC relative, the existing object file
1861
     appears to already have the reloc worked out.  We
1862
     must subtract out the old value and add in the new
1863
     one.  */
1864
0
        if (howto->pc_relative)
1865
0
    relocation -= (input_section->output_section->vma
1866
0
             + input_section->output_offset
1867
0
             - input_section->vma);
1868
1869
        /* Put in any addend.  */
1870
0
        relocation += addend;
1871
1872
        /* Adjust the contents.  */
1873
0
        r = _bfd_relocate_contents (howto, input_bfd, relocation,
1874
0
            (contents
1875
0
             + r_vaddr
1876
0
             - input_section->vma));
1877
0
      }
1878
0
    else
1879
0
      {
1880
        /* We are producing a final executable.  */
1881
0
        if (r_extern)
1882
0
    {
1883
      /* This is a reloc against a symbol.  */
1884
0
      if (h->root.type == bfd_link_hash_defined
1885
0
          || h->root.type == bfd_link_hash_defweak)
1886
0
        {
1887
0
          asection *hsec;
1888
1889
0
          hsec = h->root.u.def.section;
1890
0
          relocation = (h->root.u.def.value
1891
0
            + hsec->output_section->vma
1892
0
            + hsec->output_offset);
1893
0
        }
1894
0
      else
1895
0
        {
1896
0
          (*info->callbacks->undefined_symbol)
1897
0
      (info, h->root.root.string, input_bfd, input_section,
1898
0
       r_vaddr - input_section->vma, true);
1899
0
          relocation = 0;
1900
0
        }
1901
0
    }
1902
0
        else
1903
0
    {
1904
      /* This is a reloc against a section.  */
1905
0
      relocation = (s->output_section->vma
1906
0
        + s->output_offset
1907
0
        - s->vma);
1908
1909
      /* Adjust a PC relative relocation by removing the
1910
         reference to the original source section.  */
1911
0
      if (howto->pc_relative)
1912
0
        relocation += input_section->vma;
1913
0
    }
1914
1915
0
        r = _bfd_final_link_relocate (howto,
1916
0
              input_bfd,
1917
0
              input_section,
1918
0
              contents,
1919
0
              r_vaddr - input_section->vma,
1920
0
              relocation,
1921
0
              addend);
1922
0
      }
1923
1924
0
    if (r != bfd_reloc_ok)
1925
0
      {
1926
0
        switch (r)
1927
0
    {
1928
0
    default:
1929
0
    case bfd_reloc_outofrange:
1930
0
      abort ();
1931
0
    case bfd_reloc_overflow:
1932
0
      {
1933
0
        const char *name;
1934
1935
0
        if (r_extern)
1936
0
          name = sym_hashes[r_symndx]->root.root.string;
1937
0
        else
1938
0
          name = bfd_section_name (symndx_to_section[r_symndx]);
1939
0
        (*info->callbacks->reloc_overflow)
1940
0
          (info, NULL, name, alpha_howto_table[r_type].name,
1941
0
           (bfd_vma) 0, input_bfd, input_section,
1942
0
           r_vaddr - input_section->vma);
1943
0
      }
1944
0
      break;
1945
0
    }
1946
0
      }
1947
0
  }
1948
1949
0
      if (bfd_link_relocatable (info) && adjust_addrp)
1950
0
  {
1951
    /* Change the address of the relocation.  */
1952
0
    H_PUT_64 (input_bfd,
1953
0
        (input_section->output_section->vma
1954
0
         + input_section->output_offset
1955
0
         - input_section->vma
1956
0
         + r_vaddr),
1957
0
        ext_rel->r_vaddr);
1958
0
  }
1959
1960
0
      if (gp_usedp && gp_undefined)
1961
0
  {
1962
0
    (*info->callbacks->reloc_dangerous)
1963
0
      (info, _("GP relative relocation used when GP not defined"),
1964
0
       input_bfd, input_section, r_vaddr - input_section->vma);
1965
    /* Only give the error once per link.  */
1966
0
    gp = 4;
1967
0
    _bfd_set_gp_value (output_bfd, gp);
1968
0
    gp_undefined = false;
1969
0
  }
1970
0
    }
1971
1972
0
  if (tos != 0)
1973
0
    abort ();
1974
1975
0
  return true;
1976
0
}
1977

1978
/* Do final adjustments to the filehdr and the aouthdr.  This routine
1979
   sets the dynamic bits in the file header.  */
1980
1981
static bool
1982
alpha_adjust_headers (bfd *abfd,
1983
          struct internal_filehdr *fhdr,
1984
          struct internal_aouthdr *ahdr ATTRIBUTE_UNUSED)
1985
2
{
1986
2
  if ((abfd->flags & (DYNAMIC | EXEC_P)) == (DYNAMIC | EXEC_P))
1987
1
    fhdr->f_flags |= F_ALPHA_CALL_SHARED;
1988
1
  else if ((abfd->flags & DYNAMIC) != 0)
1989
1
    fhdr->f_flags |= F_ALPHA_SHARABLE;
1990
2
  return true;
1991
2
}
1992

1993
/* Archive handling.  In OSF/1 (or Digital Unix) v3.2, Digital
1994
   introduced archive packing, in which the elements in an archive are
1995
   optionally compressed using a simple dictionary scheme.  We know
1996
   how to read such archives, but we don't write them.  */
1997
1998
#define alpha_ecoff_slurp_armap _bfd_ecoff_slurp_armap
1999
#define alpha_ecoff_slurp_extended_name_table \
2000
  _bfd_ecoff_slurp_extended_name_table
2001
#define alpha_ecoff_construct_extended_name_table \
2002
  _bfd_ecoff_construct_extended_name_table
2003
#define alpha_ecoff_truncate_arname _bfd_ecoff_truncate_arname
2004
#define alpha_ecoff_write_armap _bfd_ecoff_write_armap
2005
#define alpha_ecoff_write_ar_hdr _bfd_generic_write_ar_hdr
2006
#define alpha_ecoff_generic_stat_arch_elt _bfd_ecoff_generic_stat_arch_elt
2007
#define alpha_ecoff_update_armap_timestamp _bfd_ecoff_update_armap_timestamp
2008
2009
/* A compressed file uses this instead of ARFMAG.  */
2010
2011
38.9k
#define ARFZMAG "Z\012"
2012
2013
/* Read an archive header.  This is like the standard routine, but it
2014
   also accepts ARFZMAG.  */
2015
2016
static void *
2017
alpha_ecoff_read_ar_hdr (bfd *abfd)
2018
16.9k
{
2019
16.9k
  struct areltdata *ret;
2020
16.9k
  struct ar_hdr *h;
2021
2022
16.9k
  ret = (struct areltdata *) _bfd_generic_read_ar_hdr_mag (abfd, ARFZMAG);
2023
16.9k
  if (ret == NULL)
2024
1.10k
    return NULL;
2025
2026
15.8k
  h = (struct ar_hdr *) ret->arch_header;
2027
15.8k
  if (strncmp (h->ar_fmag, ARFZMAG, 2) == 0)
2028
3.21k
    {
2029
3.21k
      bfd_byte ab[8];
2030
2031
      /* This is a compressed file.  We must set the size correctly.
2032
   The size is the eight bytes after the dummy file header.  */
2033
3.21k
      if (bfd_seek (abfd, FILHSZ, SEEK_CUR) != 0
2034
3.21k
    || bfd_read (ab, 8, abfd) != 8
2035
3.21k
    || bfd_seek (abfd, -(FILHSZ + 8), SEEK_CUR) != 0)
2036
20
  {
2037
20
    free (ret);
2038
20
    return NULL;
2039
20
  }
2040
2041
3.19k
      ret->parsed_size = H_GET_64 (abfd, ab);
2042
3.19k
    }
2043
2044
15.8k
  return ret;
2045
15.8k
}
2046
2047
/* Get an archive element at a specified file position.  This is where
2048
   we uncompress the archive element if necessary.  */
2049
2050
static bfd *
2051
alpha_ecoff_get_elt_at_filepos (bfd *archive, file_ptr filepos,
2052
        struct bfd_link_info *info)
2053
6.47k
{
2054
6.47k
  bfd *nbfd = NULL;
2055
6.47k
  struct areltdata *tdata;
2056
6.47k
  struct ar_hdr *hdr;
2057
6.47k
  bfd_byte ab[8];
2058
6.47k
  bfd_size_type size;
2059
6.47k
  bfd_byte *buf, *p;
2060
6.47k
  struct bfd_in_memory *bim;
2061
6.47k
  ufile_ptr filesize;
2062
2063
6.47k
  buf = NULL;
2064
6.47k
  nbfd = _bfd_get_elt_at_filepos (archive, filepos, info);
2065
6.47k
  if (nbfd == NULL)
2066
247
    goto error_return;
2067
2068
6.22k
  if ((nbfd->flags & BFD_IN_MEMORY) != 0)
2069
0
    {
2070
      /* We have already expanded this BFD.  */
2071
0
      return nbfd;
2072
0
    }
2073
2074
6.22k
  tdata = (struct areltdata *) nbfd->arelt_data;
2075
6.22k
  hdr = (struct ar_hdr *) tdata->arch_header;
2076
6.22k
  if (strncmp (hdr->ar_fmag, ARFZMAG, 2) != 0)
2077
5.82k
    return nbfd;
2078
2079
  /* We must uncompress this element.  We do this by copying it into a
2080
     memory buffer, and making bfd_read and bfd_seek use that buffer.
2081
     This can use a lot of memory, but it's simpler than getting a
2082
     temporary file, making that work with the file descriptor caching
2083
     code, and making sure that it is deleted at all appropriate
2084
     times.  It can be changed if it ever becomes important.  */
2085
2086
  /* The compressed file starts with a dummy ECOFF file header.  */
2087
402
  if (bfd_seek (nbfd, FILHSZ, SEEK_SET) != 0)
2088
0
    goto error_return;
2089
2090
  /* The next eight bytes are the real file size.  */
2091
402
  if (bfd_read (ab, 8, nbfd) != 8)
2092
17
    goto error_return;
2093
385
  size = H_GET_64 (nbfd, ab);
2094
2095
  /* The decompression algorithm will at most expand by eight times.  */
2096
385
  filesize = bfd_get_file_size (archive);
2097
385
  if (filesize != 0 && size / 8 > filesize)
2098
234
    {
2099
234
      bfd_set_error (bfd_error_malformed_archive);
2100
234
      goto error_return;
2101
234
    }
2102
2103
151
  if (size != 0)
2104
151
    {
2105
151
      bfd_size_type left;
2106
151
      bfd_byte dict[4096];
2107
151
      unsigned int h;
2108
151
      bfd_byte b;
2109
2110
151
      buf = (bfd_byte *) bfd_malloc (size);
2111
151
      if (buf == NULL)
2112
0
  goto error_return;
2113
151
      p = buf;
2114
2115
151
      left = size;
2116
2117
      /* I don't know what the next eight bytes are for.  */
2118
151
      if (bfd_read (ab, 8, nbfd) != 8)
2119
9
  goto error_return;
2120
2121
      /* This is the uncompression algorithm.  It's a simple
2122
   dictionary based scheme in which each character is predicted
2123
   by a hash of the previous three characters.  A control byte
2124
   indicates whether the character is predicted or whether it
2125
   appears in the input stream; each control byte manages the
2126
   next eight bytes in the output stream.  */
2127
142
      memset (dict, 0, sizeof dict);
2128
142
      h = 0;
2129
10.7k
      while (bfd_read (&b, 1, nbfd) == 1)
2130
10.7k
  {
2131
10.7k
    unsigned int i;
2132
2133
96.2k
    for (i = 0; i < 8; i++, b >>= 1)
2134
85.6k
      {
2135
85.6k
        bfd_byte n;
2136
2137
85.6k
        if ((b & 1) == 0)
2138
70.5k
    n = dict[h];
2139
15.0k
        else
2140
15.0k
    {
2141
15.0k
      if (bfd_read (&n, 1, nbfd) != 1)
2142
69
        goto error_return;
2143
14.9k
      dict[h] = n;
2144
14.9k
    }
2145
2146
85.5k
        *p++ = n;
2147
2148
85.5k
        --left;
2149
85.5k
        if (left == 0)
2150
29
    break;
2151
2152
85.5k
        h <<= 4;
2153
85.5k
        h ^= n;
2154
85.5k
        h &= sizeof dict - 1;
2155
85.5k
      }
2156
2157
10.6k
    if (left == 0)
2158
29
      break;
2159
10.6k
  }
2160
142
    }
2161
2162
  /* Now the uncompressed file contents are in buf.  */
2163
73
  bim = ((struct bfd_in_memory *)
2164
73
   bfd_malloc ((bfd_size_type) sizeof (struct bfd_in_memory)));
2165
73
  if (bim == NULL)
2166
0
    goto error_return;
2167
73
  bim->size = size;
2168
73
  bim->buffer = buf;
2169
2170
73
  nbfd->mtime_set = true;
2171
73
  nbfd->mtime = strtol (hdr->ar_date, (char **) NULL, 10);
2172
2173
73
  nbfd->flags |= BFD_IN_MEMORY;
2174
73
  nbfd->iostream = bim;
2175
73
  nbfd->iovec = &_bfd_memory_iovec;
2176
73
  nbfd->origin = 0;
2177
73
  nbfd->size = 0;
2178
73
  BFD_ASSERT (! nbfd->cacheable);
2179
2180
73
  return nbfd;
2181
2182
576
 error_return:
2183
576
  free (buf);
2184
576
  if (nbfd != NULL)
2185
329
    bfd_close (nbfd);
2186
576
  return NULL;
2187
73
}
2188
2189
/* Open the next archived file.  */
2190
2191
static bfd *
2192
alpha_ecoff_openr_next_archived_file (bfd *archive, bfd *last_file)
2193
6.52k
{
2194
6.52k
  ufile_ptr filestart;
2195
2196
6.52k
  if (last_file == NULL)
2197
6.23k
    filestart = bfd_ardata (archive)->first_file_filepos;
2198
286
  else
2199
286
    {
2200
286
      struct areltdata *t;
2201
286
      struct ar_hdr *h;
2202
286
      bfd_size_type size;
2203
2204
      /* We can't use arelt_size here, because that uses parsed_size,
2205
   which is the uncompressed size.  We need the compressed size.  */
2206
286
      t = (struct areltdata *) last_file->arelt_data;
2207
286
      h = (struct ar_hdr *) t->arch_header;
2208
286
      size = strtol (h->ar_size, (char **) NULL, 10);
2209
2210
      /* Pad to an even boundary...
2211
   Note that last_file->origin can be odd in the case of
2212
   BSD-4.4-style element with a long odd size.  */
2213
286
      filestart = last_file->proxy_origin + size;
2214
286
      filestart += filestart % 2;
2215
286
      if (filestart < last_file->proxy_origin)
2216
52
  {
2217
    /* Prevent looping.  See PR19256.  */
2218
52
    bfd_set_error (bfd_error_malformed_archive);
2219
52
    return NULL;
2220
52
  }
2221
286
    }
2222
2223
6.47k
  return alpha_ecoff_get_elt_at_filepos (archive, filestart, NULL);
2224
6.52k
}
2225
2226
/* Open the archive file given an index into the armap.  */
2227
2228
static bfd *
2229
alpha_ecoff_get_elt_at_index (bfd *abfd, symindex sym_index)
2230
0
{
2231
0
  carsym *entry;
2232
2233
0
  entry = bfd_ardata (abfd)->symdefs + sym_index;
2234
0
  return alpha_ecoff_get_elt_at_filepos (abfd, entry->file_offset,
2235
0
           NULL);
2236
0
}
2237
2238
static void
2239
alpha_ecoff_swap_coff_aux_in (bfd *abfd ATTRIBUTE_UNUSED,
2240
            void *ext1 ATTRIBUTE_UNUSED,
2241
            int type ATTRIBUTE_UNUSED,
2242
            int in_class ATTRIBUTE_UNUSED,
2243
            int indx ATTRIBUTE_UNUSED,
2244
            int numaux ATTRIBUTE_UNUSED,
2245
            void *in1 ATTRIBUTE_UNUSED)
2246
0
{
2247
0
}
2248
2249
static void
2250
alpha_ecoff_swap_coff_sym_in (bfd *abfd ATTRIBUTE_UNUSED,
2251
            void *ext1 ATTRIBUTE_UNUSED,
2252
            void *in1 ATTRIBUTE_UNUSED)
2253
0
{
2254
0
}
2255
2256
static void
2257
alpha_ecoff_swap_coff_lineno_in (bfd *abfd ATTRIBUTE_UNUSED,
2258
         void *ext1 ATTRIBUTE_UNUSED,
2259
         void *in1 ATTRIBUTE_UNUSED)
2260
0
{
2261
0
}
2262
2263
static unsigned int
2264
alpha_ecoff_swap_coff_aux_out (bfd *abfd ATTRIBUTE_UNUSED,
2265
             void *inp ATTRIBUTE_UNUSED,
2266
             int type ATTRIBUTE_UNUSED,
2267
             int in_class ATTRIBUTE_UNUSED,
2268
             int indx ATTRIBUTE_UNUSED,
2269
             int numaux ATTRIBUTE_UNUSED,
2270
             void *extp ATTRIBUTE_UNUSED)
2271
0
{
2272
0
  return 0;
2273
0
}
2274
2275
static unsigned int
2276
alpha_ecoff_swap_coff_sym_out (bfd *abfd ATTRIBUTE_UNUSED,
2277
             void *inp ATTRIBUTE_UNUSED,
2278
             void *extp ATTRIBUTE_UNUSED)
2279
0
{
2280
0
  return 0;
2281
0
}
2282
2283
static unsigned int
2284
alpha_ecoff_swap_coff_lineno_out (bfd *abfd ATTRIBUTE_UNUSED,
2285
          void *inp ATTRIBUTE_UNUSED,
2286
          void *extp ATTRIBUTE_UNUSED)
2287
0
{
2288
0
  return 0;
2289
0
}
2290
2291
static unsigned int
2292
alpha_ecoff_swap_coff_reloc_out (bfd *abfd ATTRIBUTE_UNUSED,
2293
         void *inp ATTRIBUTE_UNUSED,
2294
         void *extp ATTRIBUTE_UNUSED)
2295
0
{
2296
0
  return 0;
2297
0
}
2298

2299
/* This is the ECOFF backend structure.  The backend field of the
2300
   target vector points to this.  */
2301
2302
static const struct ecoff_backend_data alpha_ecoff_backend_data =
2303
{
2304
  /* COFF backend structure.  */
2305
  {
2306
    alpha_ecoff_swap_coff_aux_in, alpha_ecoff_swap_coff_sym_in,
2307
    alpha_ecoff_swap_coff_lineno_in, alpha_ecoff_swap_coff_aux_out,
2308
    alpha_ecoff_swap_coff_sym_out, alpha_ecoff_swap_coff_lineno_out,
2309
    alpha_ecoff_swap_coff_reloc_out,
2310
    alpha_ecoff_swap_filehdr_out, alpha_ecoff_swap_aouthdr_out,
2311
    alpha_ecoff_swap_scnhdr_out,
2312
    FILHSZ, AOUTSZ, SCNHSZ, 0, 0, 0, 0, FILNMLEN, true,
2313
    ECOFF_NO_LONG_SECTION_NAMES, 4, false, 2, 32768,
2314
    alpha_ecoff_swap_filehdr_in, alpha_ecoff_swap_aouthdr_in,
2315
    alpha_ecoff_swap_scnhdr_in, NULL,
2316
    alpha_ecoff_bad_format_hook, _bfd_ecoff_set_arch_mach_hook,
2317
    alpha_ecoff_mkobject_hook, _bfd_ecoff_styp_to_sec_flags,
2318
    _bfd_ecoff_set_alignment_hook, _bfd_ecoff_slurp_symbol_table,
2319
    NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
2320
    NULL, NULL, NULL, NULL
2321
  },
2322
  /* Supported architecture.  */
2323
  bfd_arch_alpha,
2324
  /* Initial portion of armap string.  */
2325
  "________64",
2326
  /* The page boundary used to align sections in a demand-paged
2327
     executable file.  E.g., 0x1000.  */
2328
  0x2000,
2329
  /* TRUE if the .rdata section is part of the text segment, as on the
2330
     Alpha.  FALSE if .rdata is part of the data segment, as on the
2331
     MIPS.  */
2332
  true,
2333
  /* Bitsize of constructor entries.  */
2334
  64,
2335
  /* Reloc to use for constructor entries.  */
2336
  &alpha_howto_table[ALPHA_R_REFQUAD],
2337
  {
2338
    /* Symbol table magic number.  */
2339
    magicSym2,
2340
    /* Alignment of debugging information.  E.g., 4.  */
2341
    8,
2342
    /* Sizes of external symbolic information.  */
2343
    sizeof (struct hdr_ext),
2344
    sizeof (struct dnr_ext),
2345
    sizeof (struct pdr_ext),
2346
    sizeof (struct sym_ext),
2347
    sizeof (struct opt_ext),
2348
    sizeof (struct fdr_ext),
2349
    sizeof (struct rfd_ext),
2350
    sizeof (struct ext_ext),
2351
    /* Functions to swap in external symbolic data.  */
2352
    ecoff_swap_hdr_in,
2353
    ecoff_swap_dnr_in,
2354
    ecoff_swap_pdr_in,
2355
    ecoff_swap_sym_in,
2356
    ecoff_swap_opt_in,
2357
    ecoff_swap_fdr_in,
2358
    ecoff_swap_rfd_in,
2359
    ecoff_swap_ext_in,
2360
    _bfd_ecoff_swap_tir_in,
2361
    _bfd_ecoff_swap_rndx_in,
2362
    /* Functions to swap out external symbolic data.  */
2363
    ecoff_swap_hdr_out,
2364
    ecoff_swap_dnr_out,
2365
    ecoff_swap_pdr_out,
2366
    ecoff_swap_sym_out,
2367
    ecoff_swap_opt_out,
2368
    ecoff_swap_fdr_out,
2369
    ecoff_swap_rfd_out,
2370
    ecoff_swap_ext_out,
2371
    _bfd_ecoff_swap_tir_out,
2372
    _bfd_ecoff_swap_rndx_out,
2373
    /* Function to read in symbolic data.  */
2374
    _bfd_ecoff_slurp_symbolic_info
2375
  },
2376
  /* External reloc size.  */
2377
  RELSZ,
2378
  /* Reloc swapping functions.  */
2379
  alpha_ecoff_swap_reloc_in,
2380
  alpha_ecoff_swap_reloc_out,
2381
  /* Backend reloc tweaking.  */
2382
  alpha_adjust_reloc_in,
2383
  alpha_adjust_reloc_out,
2384
  /* Relocate section contents while linking.  */
2385
  alpha_relocate_section,
2386
  /* Do final adjustments to filehdr and aouthdr.  */
2387
  alpha_adjust_headers,
2388
  /* Read an element from an archive at a given file position.  */
2389
  alpha_ecoff_get_elt_at_filepos
2390
};
2391
2392
/* Looking up a reloc type is Alpha specific.  */
2393
#define _bfd_ecoff_bfd_reloc_type_lookup alpha_bfd_reloc_type_lookup
2394
#define _bfd_ecoff_bfd_reloc_name_lookup \
2395
  alpha_bfd_reloc_name_lookup
2396
2397
/* So is getting relocated section contents.  */
2398
#define _bfd_ecoff_bfd_get_relocated_section_contents \
2399
  alpha_ecoff_get_relocated_section_contents
2400
2401
/* Handling file windows is generic.  */
2402
#define _bfd_ecoff_get_section_contents_in_window \
2403
  _bfd_generic_get_section_contents_in_window
2404
2405
/* Input section flag lookup is generic.  */
2406
#define _bfd_ecoff_bfd_lookup_section_flags bfd_generic_lookup_section_flags
2407
2408
/* Relaxing sections is generic.  */
2409
#define _bfd_ecoff_bfd_relax_section bfd_generic_relax_section
2410
#define _bfd_ecoff_bfd_gc_sections bfd_generic_gc_sections
2411
#define _bfd_ecoff_bfd_merge_sections bfd_generic_merge_sections
2412
#define _bfd_ecoff_bfd_is_group_section bfd_generic_is_group_section
2413
#define _bfd_ecoff_bfd_group_name bfd_generic_group_name
2414
#define _bfd_ecoff_bfd_discard_group bfd_generic_discard_group
2415
#define _bfd_ecoff_section_already_linked \
2416
  _bfd_coff_section_already_linked
2417
#define _bfd_ecoff_bfd_define_common_symbol bfd_generic_define_common_symbol
2418
#define _bfd_ecoff_bfd_link_hide_symbol _bfd_generic_link_hide_symbol
2419
#define _bfd_ecoff_bfd_define_start_stop    bfd_generic_define_start_stop
2420
#define _bfd_ecoff_bfd_link_check_relocs    _bfd_generic_link_check_relocs
2421
2422
/* Installing internal relocations in a section is also generic.  */
2423
#define _bfd_ecoff_set_reloc _bfd_generic_set_reloc
2424
2425
const bfd_target alpha_ecoff_le_vec =
2426
{
2427
  "ecoff-littlealpha",    /* name */
2428
  bfd_target_ecoff_flavour,
2429
  BFD_ENDIAN_LITTLE,    /* data byte order is little */
2430
  BFD_ENDIAN_LITTLE,    /* header byte order is little */
2431
2432
  (HAS_RELOC | EXEC_P   /* object flags */
2433
   | HAS_LINENO | HAS_DEBUG
2434
   | HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT | D_PAGED),
2435
2436
  (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_CODE
2437
   | SEC_DATA | SEC_SMALL_DATA),
2438
  0,        /* leading underscore */
2439
  ' ',        /* ar_pad_char */
2440
  15,       /* ar_max_namelen */
2441
  0,        /* match priority.  */
2442
  TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols.  */
2443
  bfd_getl64, bfd_getl_signed_64, bfd_putl64,
2444
     bfd_getl32, bfd_getl_signed_32, bfd_putl32,
2445
     bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* data */
2446
  bfd_getl64, bfd_getl_signed_64, bfd_putl64,
2447
     bfd_getl32, bfd_getl_signed_32, bfd_putl32,
2448
     bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* hdrs */
2449
2450
  {       /* bfd_check_format */
2451
    _bfd_dummy_target,
2452
    alpha_ecoff_object_p,
2453
    bfd_generic_archive_p,
2454
    _bfd_dummy_target
2455
  },
2456
  {       /* bfd_set_format */
2457
    _bfd_bool_bfd_false_error,
2458
    _bfd_ecoff_mkobject,
2459
    _bfd_generic_mkarchive,
2460
    _bfd_bool_bfd_false_error
2461
  },
2462
  {       /* bfd_write_contents */
2463
    _bfd_bool_bfd_false_error,
2464
    _bfd_ecoff_write_object_contents,
2465
    _bfd_write_archive_contents,
2466
    _bfd_bool_bfd_false_error
2467
  },
2468
2469
  BFD_JUMP_TABLE_GENERIC (_bfd_ecoff),
2470
  BFD_JUMP_TABLE_COPY (_bfd_ecoff),
2471
  BFD_JUMP_TABLE_CORE (_bfd_nocore),
2472
  BFD_JUMP_TABLE_ARCHIVE (alpha_ecoff),
2473
  BFD_JUMP_TABLE_SYMBOLS (_bfd_ecoff),
2474
  BFD_JUMP_TABLE_RELOCS (_bfd_ecoff),
2475
  BFD_JUMP_TABLE_WRITE (_bfd_ecoff),
2476
  BFD_JUMP_TABLE_LINK (_bfd_ecoff),
2477
  BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
2478
2479
  NULL,
2480
2481
  &alpha_ecoff_backend_data
2482
};