1 /* M32R-specific support for 32-bit ELF.
2 Copyright (C) 1996, 1997 Free Software Foundation, Inc.
4 This file is part of BFD, the Binary File Descriptor library.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
26 static bfd_reloc_status_type m32r_elf_10_pcrel_reloc
27 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
28 static bfd_reloc_status_type m32r_elf_hi16_slo_reloc
29 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
30 static reloc_howto_type *bfd_elf32_bfd_reloc_type_lookup
31 PARAMS ((bfd *abfd, bfd_reloc_code_real_type code));
32 static void m32r_info_to_howto_rel
33 PARAMS ((bfd *, arelent *, Elf32_Internal_Rel *));
35 /* Use REL instead of RELA to save space. */
38 static reloc_howto_type elf_m32r_howto_table[] =
40 /* This reloc does nothing. */
41 HOWTO (R_M32R_NONE, /* type */
43 2, /* size (0 = byte, 1 = short, 2 = long) */
45 false, /* pc_relative */
47 complain_overflow_bitfield, /* complain_on_overflow */
48 bfd_elf_generic_reloc, /* special_function */
49 "R_M32R_NONE", /* name */
50 false, /* partial_inplace */
53 false), /* pcrel_offset */
55 /* A 16 bit absolute relocation. */
56 HOWTO (R_M32R_16, /* type */
58 1, /* size (0 = byte, 1 = short, 2 = long) */
60 false, /* pc_relative */
62 complain_overflow_bitfield, /* complain_on_overflow */
63 bfd_elf_generic_reloc, /* special_function */
64 "R_M32R_16", /* name */
65 true, /* partial_inplace */
66 0xffff, /* src_mask */
67 0xffff, /* dst_mask */
68 false), /* pcrel_offset */
70 /* A 32 bit absolute relocation. */
71 HOWTO (R_M32R_32, /* type */
73 2, /* size (0 = byte, 1 = short, 2 = long) */
75 false, /* pc_relative */
77 complain_overflow_bitfield, /* complain_on_overflow */
78 bfd_elf_generic_reloc, /* special_function */
79 "R_M32R_32", /* name */
80 true, /* partial_inplace */
81 0xffffffff, /* src_mask */
82 0xffffffff, /* dst_mask */
83 false), /* pcrel_offset */
85 /* A 24 bit address. */
86 HOWTO (R_M32R_24, /* type */
88 2, /* size (0 = byte, 1 = short, 2 = long) */
90 false, /* pc_relative */
92 complain_overflow_unsigned, /* complain_on_overflow */
93 bfd_elf_generic_reloc, /* special_function */
94 "R_M32R_24", /* name */
95 true, /* partial_inplace */
96 0xffffff, /* src_mask */
97 0xffffff, /* dst_mask */
98 false), /* pcrel_offset */
100 /* An PC Relative 10-bit relocation, shifted by 2.
101 This reloc is complicated because relocations are relative to pc & -4.
102 i.e. branches in the right insn slot use the address of the left insn
104 HOWTO (R_M32R_10_PCREL, /* type */
106 1, /* size (0 = byte, 1 = short, 2 = long) */
108 true, /* pc_relative */
110 complain_overflow_signed, /* complain_on_overflow */
111 m32r_elf_10_pcrel_reloc, /* special_function */
112 "R_M32R_10_PCREL", /* name */
113 false, /* partial_inplace */
116 true), /* pcrel_offset */
118 /* A relative 18 bit relocation, right shifted by 2. */
119 HOWTO (R_M32R_18_PCREL, /* type */
121 2, /* size (0 = byte, 1 = short, 2 = long) */
123 true, /* pc_relative */
125 complain_overflow_signed, /* complain_on_overflow */
126 bfd_elf_generic_reloc, /* special_function */
127 "R_M32R_18_PCREL", /* name */
128 false, /* partial_inplace */
129 0xffff, /* src_mask */
130 0xffff, /* dst_mask */
131 true), /* pcrel_offset */
133 /* A relative 26 bit relocation, right shifted by 2. */
134 HOWTO (R_M32R_26_PCREL, /* type */
136 2, /* size (0 = byte, 1 = short, 2 = long) */
138 true, /* pc_relative */
140 complain_overflow_signed, /* complain_on_overflow */
141 bfd_elf_generic_reloc, /* special_function */
142 "R_M32R_26_PCREL", /* name */
143 false, /* partial_inplace */
144 0xffffff, /* src_mask */
145 0xffffff, /* dst_mask */
146 true), /* pcrel_offset */
148 /* High 16 bits of address when lower 16 is or'd in. */
149 HOWTO (R_M32R_HI16_ULO, /* type */
151 2, /* size (0 = byte, 1 = short, 2 = long) */
153 false, /* pc_relative */
155 complain_overflow_dont, /* complain_on_overflow */
156 bfd_elf_generic_reloc, /* special_function */
157 "R_M32R_HI16_ULO", /* name */
158 true, /* partial_inplace */
159 0x0000ffff, /* src_mask */
160 0x0000ffff, /* dst_mask */
161 false), /* pcrel_offset */
163 /* High 16 bits of address when lower 16 is added in. */
164 HOWTO (R_M32R_HI16_SLO, /* type */
166 2, /* size (0 = byte, 1 = short, 2 = long) */
168 false, /* pc_relative */
170 complain_overflow_dont, /* complain_on_overflow */
171 m32r_elf_hi16_slo_reloc, /* special_function */
172 "R_M32R_HI16_SLO", /* name */
173 true, /* partial_inplace */
174 0x0000ffff, /* src_mask */
175 0x0000ffff, /* dst_mask */
176 false), /* pcrel_offset */
178 /* Lower 16 bits of address. */
179 HOWTO (R_M32R_LO16, /* type */
181 2, /* size (0 = byte, 1 = short, 2 = long) */
183 false, /* pc_relative */
185 complain_overflow_dont, /* complain_on_overflow */
186 bfd_elf_generic_reloc, /* special_function */
187 "R_M32R_LO16", /* name */
188 true, /* partial_inplace */
189 0x0000ffff, /* src_mask */
190 0x0000ffff, /* dst_mask */
191 false), /* pcrel_offset */
194 /* Handle the R_M32R_10_PCREL reloc. */
196 static bfd_reloc_status_type
197 m32r_elf_10_pcrel_reloc (abfd, reloc_entry, symbol, data,
198 input_section, output_bfd, error_message)
200 arelent *reloc_entry;
203 asection *input_section;
205 char **error_message;
209 reloc_howto_type *howto;
211 /* This part if from bfd_elf_generic_reloc. */
212 if (output_bfd != (bfd *) NULL
213 && (symbol->flags & BSF_SECTION_SYM) == 0
214 && (! reloc_entry->howto->partial_inplace
215 || reloc_entry->addend == 0))
217 reloc_entry->address += input_section->output_offset;
221 if (output_bfd != NULL)
223 /* FIXME: See bfd_perform_relocation. Is this right? */
224 return bfd_reloc_continue;
227 /* The rest is copied from bfd_perform_relocation, modified to suit us. */
229 if (reloc_entry->address > input_section->_cooked_size)
230 return bfd_reloc_outofrange;
232 relocation = (symbol->value
233 + symbol->section->output_section->vma
234 + symbol->section->output_offset);
235 relocation += reloc_entry->addend;
236 relocation -= (input_section->output_section->vma
237 + input_section->output_offset);
238 relocation -= (reloc_entry->address & -4L);
240 howto = reloc_entry->howto;
241 x = bfd_get_16 (abfd, (char *) data + reloc_entry->address);
242 relocation >>= howto->rightshift;
243 relocation <<= howto->bitpos;
244 x = (x & ~howto->dst_mask) | (((x & howto->src_mask) + relocation) & howto->dst_mask);
245 bfd_put_16 (abfd, x, (char *) data + reloc_entry->address);
247 if ((bfd_signed_vma) relocation < - 0x80
248 || (bfd_signed_vma) relocation > 0x7f)
249 return bfd_reloc_overflow;
254 /* Handle the R_M32R_HI16_SLO reloc.
255 This reloc is used in load/store with displacement instructions.
256 The lower 16 bits are sign extended when added to the high 16 bytes
257 so if the lower 16 bits are negative (bit 15 == 1) then we must add one
258 to the high 16 bytes (which will get subtracted off when the low 16 bits
261 static bfd_reloc_status_type
262 m32r_elf_hi16_slo_reloc (abfd, reloc_entry, symbol, data,
263 input_section, output_bfd, error_message)
265 arelent *reloc_entry;
268 asection *input_section;
270 char **error_message;
275 reloc_howto_type *howto;
277 /* This part if from bfd_elf_generic_reloc. */
278 if (output_bfd != (bfd *) NULL
279 && (symbol->flags & BSF_SECTION_SYM) == 0
280 && (! reloc_entry->howto->partial_inplace
281 || reloc_entry->addend == 0))
283 reloc_entry->address += input_section->output_offset;
287 if (output_bfd != NULL)
289 /* FIXME: See bfd_perform_relocation. Is this right? */
290 return bfd_reloc_continue;
293 /* The rest is copied from bfd_perform_relocation, modified to suit us. */
295 if (reloc_entry->address > input_section->_cooked_size)
296 return bfd_reloc_outofrange;
298 relocation = (symbol->value
299 + symbol->section->output_section->vma
300 + symbol->section->output_offset);
301 relocation += reloc_entry->addend;
303 howto = reloc_entry->howto;
304 x = bfd_get_32 (abfd, (char *) data + reloc_entry->address);
305 bit15 = relocation & 0x8000;
306 relocation >>= howto->rightshift;
309 relocation <<= howto->bitpos;
310 x = (x & ~howto->dst_mask) | (((x & howto->src_mask) + relocation) & howto->dst_mask);
311 bfd_put_32 (abfd, x, (char *) data + reloc_entry->address);
316 /* Map BFD reloc types to M32R ELF reloc types. */
318 struct m32r_reloc_map
320 unsigned char bfd_reloc_val;
321 unsigned char elf_reloc_val;
324 static const struct m32r_reloc_map m32r_reloc_map[] =
326 { BFD_RELOC_NONE, R_M32R_NONE },
327 { BFD_RELOC_16, R_M32R_16 },
328 { BFD_RELOC_32, R_M32R_32 },
329 { BFD_RELOC_M32R_24, R_M32R_24 },
330 { BFD_RELOC_M32R_10_PCREL, R_M32R_10_PCREL },
331 { BFD_RELOC_M32R_18_PCREL, R_M32R_18_PCREL },
332 { BFD_RELOC_M32R_26_PCREL, R_M32R_26_PCREL },
333 { BFD_RELOC_M32R_HI16_ULO, R_M32R_HI16_ULO },
334 { BFD_RELOC_M32R_HI16_SLO, R_M32R_HI16_SLO },
335 { BFD_RELOC_M32R_LO16, R_M32R_LO16 },
338 static reloc_howto_type *
339 bfd_elf32_bfd_reloc_type_lookup (abfd, code)
341 bfd_reloc_code_real_type code;
346 i < sizeof (m32r_reloc_map) / sizeof (struct m32r_reloc_map);
349 if (m32r_reloc_map[i].bfd_reloc_val == code)
350 return &elf_m32r_howto_table[m32r_reloc_map[i].elf_reloc_val];
356 /* Set the howto pointer for an M32R ELF reloc. */
359 m32r_info_to_howto_rel (abfd, cache_ptr, dst)
362 Elf32_Internal_Rel *dst;
366 r_type = ELF32_R_TYPE (dst->r_info);
367 BFD_ASSERT (r_type < (unsigned int) R_M32R_max);
368 cache_ptr->howto = &elf_m32r_howto_table[r_type];
371 #define ELF_ARCH bfd_arch_m32r
372 #define ELF_MACHINE_CODE EM_CYGNUS_M32R
373 #define ELF_MAXPAGESIZE 0x1000
375 #define TARGET_BIG_SYM bfd_elf32_m32r_vec
376 #define TARGET_BIG_NAME "elf32-m32r"
378 #define elf_info_to_howto 0
379 #define elf_info_to_howto_rel m32r_info_to_howto_rel
380 #define elf_backend_object_p 0
381 #define elf_backend_final_write_processing 0
383 #include "elf32-target.h"