1 /* BFD back-end for ns32k a.out-ish binaries.
2 Copyright 1990, 1991, 1992, 1994, 1995, 1996, 1998, 2000, 2001, 2002
3 Free Software Foundation, Inc.
4 Contributed by Ian Dall (idall@eleceng.adelaide.edu.au).
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 #define BYTES_IN_WORD 4
25 #include "aout/aout64.h"
28 /* Do not "beautify" the CONCAT* macro args. Traditional C will not
29 remove whitespace added here, and thus will fail to concatenate
31 #define MYNS(OP) CONCAT2 (ns32kaout_,OP)
34 MYNS(bfd_reloc_type_lookup
)
36 bfd_reloc_code_real_type code
));
39 MYNS(write_object_contents
)
42 /* Avoid multiple definitions from aoutx if supporting
43 standard a.out format(s) as well as this one. */
44 #define NAME(x,y) CONCAT3 (ns32kaout,_32_,y)
46 void bfd_ns32k_arch
PARAMS ((void));
50 #define MY(OP) MYNS(OP)
52 #define MY_swap_std_reloc_in MY(swap_std_reloc_in)
53 #define MY_swap_std_reloc_out MY(swap_std_reloc_out)
56 MY_swap_std_reloc_in
PARAMS ((bfd
*, struct reloc_std_external
*,
57 arelent
*, asymbol
**,
60 MY_swap_std_reloc_out
PARAMS ((bfd
*, arelent
*,
61 struct reloc_std_external
*));
63 MY(reloc_howto
) PARAMS ((bfd
*, struct reloc_std_external
*,
64 int *, int *, int *));
66 MY(put_reloc
) PARAMS ((bfd
*, int, int, bfd_vma
, reloc_howto_type
*,
67 struct reloc_std_external
*));
69 /* The ns32k series is ah, unusual, when it comes to relocation.
70 There are three storage methods for relocateable objects. There
71 are displacements, immediate operands and ordinary twos complement
72 data. Of these, only the last fits into the standard relocation
73 scheme. Immediate operands are stored huffman encoded and
74 immediate operands are stored big endian (where as the natural byte
75 order is little endian for this achitecture).
77 Note that the ns32k displacement storage method is orthogonal to
78 whether the relocation is pc relative or not. The "displacement"
79 storage scheme is used for essentially all address constants. The
80 displacement can be relative to zero (absolute displacement),
81 relative to the pc (pc relative), the stack pointer, the frame
82 pointer, the static base register and general purpose register etc.
86 sym1: .long . # pc relative 2's complement
87 sym1: .long foo # 2's complement not pc relative
89 self: movd @self, r0 # pc relative displacement
90 movd foo, r0 # non pc relative displacement
92 self: movd self, r0 # pc relative immediate
93 movd foo, r0 # non pc relative immediate
95 In addition, for historical reasons the encoding of the relocation types
96 in the a.out format relocation entries is such that even the relocation
97 methods which are standard are not encoded the standard way. */
99 reloc_howto_type
MY(howto_table
)[] =
101 /* type rs size bsz pcrel bitpos ovrf sf name part_inpl readmask setmask pcdone */
102 /* ns32k immediate operands. */
103 HOWTO (BFD_RELOC_NS32K_IMM_8
, 0, 0, 8, FALSE
, 0, complain_overflow_signed
,
104 _bfd_ns32k_reloc_imm
, "NS32K_IMM_8",
105 TRUE
, 0x000000ff,0x000000ff, FALSE
),
106 HOWTO (BFD_RELOC_NS32K_IMM_16
, 0, 1, 16, FALSE
, 0, complain_overflow_signed
,
107 _bfd_ns32k_reloc_imm
, "NS32K_IMM_16",
108 TRUE
, 0x0000ffff,0x0000ffff, FALSE
),
109 HOWTO (BFD_RELOC_NS32K_IMM_32
, 0, 2, 32, FALSE
, 0, complain_overflow_signed
,
110 _bfd_ns32k_reloc_imm
, "NS32K_IMM_32",
111 TRUE
, 0xffffffff,0xffffffff, FALSE
),
112 HOWTO (BFD_RELOC_NS32K_IMM_8_PCREL
, 0, 0, 8, TRUE
, 0, complain_overflow_signed
,
113 _bfd_ns32k_reloc_imm
, "PCREL_NS32K_IMM_8",
114 TRUE
, 0x000000ff, 0x000000ff, FALSE
),
115 HOWTO (BFD_RELOC_NS32K_IMM_16_PCREL
, 0, 1, 16, TRUE
, 0, complain_overflow_signed
,
116 _bfd_ns32k_reloc_imm
, "PCREL_NS32K_IMM_16",
117 TRUE
, 0x0000ffff,0x0000ffff, FALSE
),
118 HOWTO (BFD_RELOC_NS32K_IMM_32_PCREL
, 0, 2, 32, TRUE
, 0, complain_overflow_signed
,
119 _bfd_ns32k_reloc_imm
, "PCREL_NS32K_IMM_32",
120 TRUE
, 0xffffffff,0xffffffff, FALSE
),
122 /* ns32k displacements. */
123 HOWTO (BFD_RELOC_NS32K_DISP_8
, 0, 0, 7, FALSE
, 0, complain_overflow_signed
,
124 _bfd_ns32k_reloc_disp
, "NS32K_DISP_8",
125 TRUE
, 0x000000ff,0x000000ff, FALSE
),
126 HOWTO (BFD_RELOC_NS32K_DISP_16
, 0, 1, 14, FALSE
, 0, complain_overflow_signed
,
127 _bfd_ns32k_reloc_disp
, "NS32K_DISP_16",
128 TRUE
, 0x0000ffff, 0x0000ffff, FALSE
),
129 HOWTO (BFD_RELOC_NS32K_DISP_32
, 0, 2, 30, FALSE
, 0, complain_overflow_signed
,
130 _bfd_ns32k_reloc_disp
, "NS32K_DISP_32",
131 TRUE
, 0xffffffff, 0xffffffff, FALSE
),
132 HOWTO (BFD_RELOC_NS32K_DISP_8_PCREL
, 0, 0, 7, TRUE
, 0, complain_overflow_signed
,
133 _bfd_ns32k_reloc_disp
, "PCREL_NS32K_DISP_8",
134 TRUE
, 0x000000ff,0x000000ff, FALSE
),
135 HOWTO (BFD_RELOC_NS32K_DISP_16_PCREL
, 0, 1, 14, TRUE
, 0, complain_overflow_signed
,
136 _bfd_ns32k_reloc_disp
, "PCREL_NS32K_DISP_16",
137 TRUE
, 0x0000ffff,0x0000ffff, FALSE
),
138 HOWTO (BFD_RELOC_NS32K_DISP_32_PCREL
, 0, 2, 30, TRUE
, 0, complain_overflow_signed
,
139 _bfd_ns32k_reloc_disp
, "PCREL_NS32K_DISP_32",
140 TRUE
, 0xffffffff,0xffffffff, FALSE
),
142 /* Normal 2's complement. */
143 HOWTO (BFD_RELOC_8
, 0, 0, 8, FALSE
, 0, complain_overflow_bitfield
,0,
144 "8", TRUE
, 0x000000ff,0x000000ff, FALSE
),
145 HOWTO (BFD_RELOC_16
, 0, 1, 16, FALSE
, 0, complain_overflow_bitfield
,0,
146 "16", TRUE
, 0x0000ffff,0x0000ffff, FALSE
),
147 HOWTO (BFD_RELOC_32
, 0, 2, 32, FALSE
, 0, complain_overflow_bitfield
,0,
148 "32", TRUE
, 0xffffffff,0xffffffff, FALSE
),
149 HOWTO (BFD_RELOC_8_PCREL
, 0, 0, 8, TRUE
, 0, complain_overflow_signed
, 0,
150 "PCREL_8", TRUE
, 0x000000ff,0x000000ff, FALSE
),
151 HOWTO (BFD_RELOC_16_PCREL
, 0, 1, 16, TRUE
, 0, complain_overflow_signed
, 0,
152 "PCREL_16", TRUE
, 0x0000ffff,0x0000ffff, FALSE
),
153 HOWTO (BFD_RELOC_32_PCREL
, 0, 2, 32, TRUE
, 0, complain_overflow_signed
, 0,
154 "PCREL_32", TRUE
, 0xffffffff,0xffffffff, FALSE
),
157 #define CTOR_TABLE_RELOC_HOWTO(BFD) (MY(howto_table) + 14)
159 #define RELOC_STD_BITS_NS32K_TYPE_BIG 0x06
160 #define RELOC_STD_BITS_NS32K_TYPE_LITTLE 0x60
161 #define RELOC_STD_BITS_NS32K_TYPE_SH_BIG 1
162 #define RELOC_STD_BITS_NS32K_TYPE_SH_LITTLE 5
165 MY(reloc_howto
) (abfd
, rel
, r_index
, r_extern
, r_pcrel
)
166 bfd
*abfd ATTRIBUTE_UNUSED
;
167 struct reloc_std_external
*rel
;
172 unsigned int r_length
;
175 /* BFD_ASSERT(bfd_header_little_endian (abfd)); */
176 *r_index
= ((rel
->r_index
[2] << 16)
177 | (rel
->r_index
[1] << 8)
179 *r_extern
= (0 != (rel
->r_type
[0] & RELOC_STD_BITS_EXTERN_LITTLE
));
180 *r_pcrel
= (0 != (rel
->r_type
[0] & RELOC_STD_BITS_PCREL_LITTLE
));
181 r_length
= ((rel
->r_type
[0] & RELOC_STD_BITS_LENGTH_LITTLE
)
182 >> RELOC_STD_BITS_LENGTH_SH_LITTLE
);
183 r_ns32k_type
= ((rel
->r_type
[0] & RELOC_STD_BITS_NS32K_TYPE_LITTLE
)
184 >> RELOC_STD_BITS_NS32K_TYPE_SH_LITTLE
);
185 return (MY(howto_table
) + r_length
+ 3 * (*r_pcrel
) + 6 * r_ns32k_type
);
188 #define MY_reloc_howto(BFD, REL, IN, EX, PC) \
189 MY(reloc_howto) (BFD, REL, &IN, &EX, &PC)
192 MY(put_reloc
) (abfd
, r_extern
, r_index
, value
, howto
, reloc
)
197 reloc_howto_type
*howto
;
198 struct reloc_std_external
*reloc
;
200 unsigned int r_length
;
204 PUT_WORD (abfd
, value
, reloc
->r_address
);
205 r_length
= howto
->size
; /* Size as a power of two. */
206 r_pcrel
= (int) howto
->pc_relative
; /* Relative to PC? */
207 r_ns32k_type
= (howto
- MY(howto_table
) )/6;
209 /* BFD_ASSERT (bfd_header_little_endian (abfd)); */
210 reloc
->r_index
[2] = r_index
>> 16;
211 reloc
->r_index
[1] = r_index
>> 8;
212 reloc
->r_index
[0] = r_index
;
214 (r_extern
? RELOC_STD_BITS_EXTERN_LITTLE
: 0)
215 | (r_pcrel
? RELOC_STD_BITS_PCREL_LITTLE
: 0)
216 | (r_length
<< RELOC_STD_BITS_LENGTH_SH_LITTLE
)
217 | (r_ns32k_type
<< RELOC_STD_BITS_NS32K_TYPE_SH_LITTLE
);
220 #define MY_put_reloc(BFD, EXT, IDX, VAL, HOWTO, RELOC) \
221 MY(put_reloc) (BFD, EXT, IDX, VAL, HOWTO, RELOC)
223 #define STAT_FOR_EXEC
225 #define MY_final_link_relocate _bfd_ns32k_final_link_relocate
226 #define MY_relocate_contents _bfd_ns32k_relocate_contents
231 MY(bfd_reloc_type_lookup
) (abfd
,code
)
233 bfd_reloc_code_real_type code
;
236 #define ENTRY(i,j) case i: return &MY(howto_table)[j]
238 int ext
= obj_reloc_entry_size (abfd
) == RELOC_EXT_SIZE
;
240 BFD_ASSERT(ext
== 0);
241 if (code
== BFD_RELOC_CTOR
)
242 switch (bfd_get_arch_info (abfd
)->bits_per_address
)
252 ENTRY(BFD_RELOC_NS32K_IMM_8
, 0);
253 ENTRY(BFD_RELOC_NS32K_IMM_16
, 1);
254 ENTRY(BFD_RELOC_NS32K_IMM_32
, 2);
255 ENTRY(BFD_RELOC_NS32K_IMM_8_PCREL
, 3);
256 ENTRY(BFD_RELOC_NS32K_IMM_16_PCREL
, 4);
257 ENTRY(BFD_RELOC_NS32K_IMM_32_PCREL
, 5);
258 ENTRY(BFD_RELOC_NS32K_DISP_8
, 6);
259 ENTRY(BFD_RELOC_NS32K_DISP_16
, 7);
260 ENTRY(BFD_RELOC_NS32K_DISP_32
, 8);
261 ENTRY(BFD_RELOC_NS32K_DISP_8_PCREL
, 9);
262 ENTRY(BFD_RELOC_NS32K_DISP_16_PCREL
, 10);
263 ENTRY(BFD_RELOC_NS32K_DISP_32_PCREL
, 11);
264 ENTRY(BFD_RELOC_8
, 12);
265 ENTRY(BFD_RELOC_16
, 13);
266 ENTRY(BFD_RELOC_32
, 14);
267 ENTRY(BFD_RELOC_8_PCREL
, 15);
268 ENTRY(BFD_RELOC_16_PCREL
, 16);
269 ENTRY(BFD_RELOC_32_PCREL
, 17);
271 return (reloc_howto_type
*) NULL
;
277 MY_swap_std_reloc_in (abfd
, bytes
, cache_ptr
, symbols
, symcount
)
279 struct reloc_std_external
*bytes
;
282 bfd_size_type symcount ATTRIBUTE_UNUSED
;
287 struct aoutdata
*su
= &(abfd
->tdata
.aout_data
->a
);
289 cache_ptr
->address
= H_GET_32 (abfd
, bytes
->r_address
);
291 /* Now the fun stuff. */
292 cache_ptr
->howto
= MY_reloc_howto(abfd
, bytes
, r_index
, r_extern
, r_pcrel
);
298 MY_swap_std_reloc_out (abfd
, g
, natptr
)
301 struct reloc_std_external
*natptr
;
304 asymbol
*sym
= *(g
->sym_ptr_ptr
);
306 unsigned int r_addend
;
307 asection
*output_section
= sym
->section
->output_section
;
309 r_addend
= g
->addend
+ (*(g
->sym_ptr_ptr
))->section
->output_section
->vma
;
311 /* Name was clobbered by aout_write_syms to be symbol index. */
313 /* If this relocation is relative to a symbol then set the
314 r_index to the symbols index, and the r_extern bit.
316 Absolute symbols can come in in two ways, either as an offset
317 from the abs section, or as a symbol which has an abs value.
318 Check for that here. */
319 if (bfd_is_com_section (output_section
)
320 || output_section
== &bfd_abs_section
321 || output_section
== &bfd_und_section
)
323 if (bfd_abs_section
.symbol
== sym
)
325 /* Whoops, looked like an abs symbol, but is really an offset
326 from the abs section. */
332 /* Fill in symbol. */
335 #define KEEPIT udata.i
336 r_index
= (*(g
->sym_ptr_ptr
))->KEEPIT
;
342 /* Just an ordinary section. */
344 r_index
= output_section
->target_index
;
347 MY_put_reloc (abfd
, r_extern
, r_index
, g
->address
, g
->howto
, natptr
);
350 bfd_reloc_status_type
351 _bfd_ns32k_relocate_contents (howto
, input_bfd
, relocation
, location
)
352 reloc_howto_type
*howto
;
357 int r_ns32k_type
= (howto
- MY(howto_table
)) / 6;
358 bfd_vma (*get_data
) PARAMS ((bfd_byte
*, int));
359 void (*put_data
) PARAMS ((bfd_vma
, bfd_byte
*, int));
361 switch (r_ns32k_type
)
364 get_data
= _bfd_ns32k_get_immediate
;
365 put_data
= _bfd_ns32k_put_immediate
;
368 get_data
= _bfd_ns32k_get_displacement
;
369 put_data
= _bfd_ns32k_put_displacement
;
372 return _bfd_relocate_contents (howto
, input_bfd
, relocation
,
377 return bfd_reloc_notsupported
;
379 return _bfd_do_ns32k_reloc_contents (howto
, input_bfd
, relocation
,
380 location
, get_data
, put_data
);