]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/elf32-m68hc11.c
PR threads/10729
[thirdparty/binutils-gdb.git] / bfd / elf32-m68hc11.c
CommitLineData
60bcf0fa 1/* Motorola 68HC11-specific support for 32-bit ELF
4dfe6ac6 2 Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2010
eea6121a 3 Free Software Foundation, Inc.
dae78fb0 4 Contributed by Stephane Carrez (stcarrez@nerim.fr)
60bcf0fa
NC
5 (Heavily copied from the D10V port by Martin Hunt (hunt@cygnus.com))
6
cd123cb7 7 This file is part of BFD, the Binary File Descriptor library.
60bcf0fa 8
cd123cb7
NC
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
60bcf0fa 13
cd123cb7
NC
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
60bcf0fa 18
cd123cb7
NC
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
60bcf0fa 23
60bcf0fa 24#include "sysdep.h"
3db64b00 25#include "bfd.h"
1fd03b5a 26#include "bfdlink.h"
60bcf0fa
NC
27#include "libbfd.h"
28#include "elf-bfd.h"
3a65329d 29#include "elf32-m68hc1x.h"
60bcf0fa 30#include "elf/m68hc11.h"
3a65329d 31#include "opcode/m68hc11.h"
60bcf0fa 32
3a65329d 33/* Relocation functions. */
60bcf0fa 34static reloc_howto_type *bfd_elf32_bfd_reloc_type_lookup
0a6a3ebe 35 (bfd *, bfd_reloc_code_real_type);
60bcf0fa 36static void m68hc11_info_to_howto_rel
0a6a3ebe 37 (bfd *, arelent *, Elf_Internal_Rela *);
60bcf0fa 38
3a65329d
SC
39/* Trampoline generation. */
40static bfd_boolean m68hc11_elf_size_one_stub
0a6a3ebe 41 (struct bfd_hash_entry *gen_entry, void *in_arg);
3a65329d 42static bfd_boolean m68hc11_elf_build_one_stub
0a6a3ebe 43 (struct bfd_hash_entry *gen_entry, void *in_arg);
3a65329d 44static struct bfd_link_hash_table* m68hc11_elf_bfd_link_hash_table_create
0a6a3ebe 45 (bfd* abfd);
3a65329d
SC
46
47/* Linker relaxation. */
b34976b6 48static bfd_boolean m68hc11_elf_relax_section
0a6a3ebe 49 (bfd *, asection *, struct bfd_link_info *, bfd_boolean *);
1fd03b5a 50static void m68hc11_elf_relax_delete_bytes
0a6a3ebe 51 (bfd *, asection *, bfd_vma, int);
1fd03b5a 52static void m68hc11_relax_group
0a6a3ebe
SC
53 (bfd *, asection *, bfd_byte *, unsigned, unsigned long, unsigned long);
54static int compare_reloc (const void *, const void *);
1fd03b5a 55
60bcf0fa 56/* Use REL instead of RELA to save space */
acf8aed4 57#define USE_REL 1
60bcf0fa 58
3a65329d
SC
59/* The Motorola 68HC11 microcontroller only addresses 64Kb but we also
60 support a memory bank switching mechanism similar to 68HC12.
60bcf0fa 61 We must handle 8 and 16-bit relocations. The 32-bit relocation
3a65329d
SC
62 are used for debugging sections (DWARF2) to represent a virtual
63 address.
60bcf0fa
NC
64 The 3-bit and 16-bit PC rel relocation is only used by 68HC12. */
65static reloc_howto_type elf_m68hc11_howto_table[] = {
66 /* This reloc does nothing. */
67 HOWTO (R_M68HC11_NONE, /* type */
68 0, /* rightshift */
69 2, /* size (0 = byte, 1 = short, 2 = long) */
70 32, /* bitsize */
b34976b6 71 FALSE, /* pc_relative */
60bcf0fa 72 0, /* bitpos */
7a897be4 73 complain_overflow_dont,/* complain_on_overflow */
60bcf0fa
NC
74 bfd_elf_generic_reloc, /* special_function */
75 "R_M68HC11_NONE", /* name */
b34976b6 76 FALSE, /* partial_inplace */
60bcf0fa
NC
77 0, /* src_mask */
78 0, /* dst_mask */
b34976b6 79 FALSE), /* pcrel_offset */
60bcf0fa
NC
80
81 /* A 8 bit absolute relocation */
82 HOWTO (R_M68HC11_8, /* type */
83 0, /* rightshift */
84 0, /* size (0 = byte, 1 = short, 2 = long) */
85 8, /* bitsize */
b34976b6 86 FALSE, /* pc_relative */
60bcf0fa
NC
87 0, /* bitpos */
88 complain_overflow_bitfield, /* complain_on_overflow */
89 bfd_elf_generic_reloc, /* special_function */
90 "R_M68HC11_8", /* name */
b34976b6 91 FALSE, /* partial_inplace */
60bcf0fa
NC
92 0x00ff, /* src_mask */
93 0x00ff, /* dst_mask */
b34976b6 94 FALSE), /* pcrel_offset */
60bcf0fa
NC
95
96 /* A 8 bit absolute relocation (upper address) */
97 HOWTO (R_M68HC11_HI8, /* type */
98 8, /* rightshift */
99 0, /* size (0 = byte, 1 = short, 2 = long) */
100 8, /* bitsize */
b34976b6 101 FALSE, /* pc_relative */
60bcf0fa
NC
102 0, /* bitpos */
103 complain_overflow_bitfield, /* complain_on_overflow */
104 bfd_elf_generic_reloc, /* special_function */
105 "R_M68HC11_HI8", /* name */
b34976b6 106 FALSE, /* partial_inplace */
60bcf0fa
NC
107 0x00ff, /* src_mask */
108 0x00ff, /* dst_mask */
b34976b6 109 FALSE), /* pcrel_offset */
60bcf0fa
NC
110
111 /* A 8 bit absolute relocation (upper address) */
112 HOWTO (R_M68HC11_LO8, /* type */
113 0, /* rightshift */
114 0, /* size (0 = byte, 1 = short, 2 = long) */
115 8, /* bitsize */
b34976b6 116 FALSE, /* pc_relative */
60bcf0fa
NC
117 0, /* bitpos */
118 complain_overflow_dont, /* complain_on_overflow */
119 bfd_elf_generic_reloc, /* special_function */
120 "R_M68HC11_LO8", /* name */
b34976b6 121 FALSE, /* partial_inplace */
60bcf0fa
NC
122 0x00ff, /* src_mask */
123 0x00ff, /* dst_mask */
b34976b6 124 FALSE), /* pcrel_offset */
60bcf0fa
NC
125
126 /* A 8 bit PC-rel relocation */
127 HOWTO (R_M68HC11_PCREL_8, /* type */
128 0, /* rightshift */
129 0, /* size (0 = byte, 1 = short, 2 = long) */
130 8, /* bitsize */
b34976b6 131 TRUE, /* pc_relative */
60bcf0fa
NC
132 0, /* bitpos */
133 complain_overflow_bitfield, /* complain_on_overflow */
134 bfd_elf_generic_reloc, /* special_function */
135 "R_M68HC11_PCREL_8", /* name */
b34976b6 136 FALSE, /* partial_inplace */
dae78fb0 137 0x00ff, /* src_mask */
60bcf0fa 138 0x00ff, /* dst_mask */
196486be 139 TRUE), /* pcrel_offset */
60bcf0fa
NC
140
141 /* A 16 bit absolute relocation */
142 HOWTO (R_M68HC11_16, /* type */
143 0, /* rightshift */
144 1, /* size (0 = byte, 1 = short, 2 = long) */
145 16, /* bitsize */
b34976b6 146 FALSE, /* pc_relative */
60bcf0fa
NC
147 0, /* bitpos */
148 complain_overflow_dont /*bitfield */ , /* complain_on_overflow */
149 bfd_elf_generic_reloc, /* special_function */
150 "R_M68HC11_16", /* name */
b34976b6 151 FALSE, /* partial_inplace */
60bcf0fa
NC
152 0xffff, /* src_mask */
153 0xffff, /* dst_mask */
b34976b6 154 FALSE), /* pcrel_offset */
60bcf0fa
NC
155
156 /* A 32 bit absolute relocation. This one is never used for the
157 code relocation. It's used by gas for -gstabs generation. */
158 HOWTO (R_M68HC11_32, /* type */
159 0, /* rightshift */
160 2, /* size (0 = byte, 1 = short, 2 = long) */
161 32, /* bitsize */
b34976b6 162 FALSE, /* pc_relative */
60bcf0fa
NC
163 0, /* bitpos */
164 complain_overflow_bitfield, /* complain_on_overflow */
165 bfd_elf_generic_reloc, /* special_function */
166 "R_M68HC11_32", /* name */
b34976b6 167 FALSE, /* partial_inplace */
60bcf0fa
NC
168 0xffffffff, /* src_mask */
169 0xffffffff, /* dst_mask */
b34976b6 170 FALSE), /* pcrel_offset */
60bcf0fa
NC
171
172 /* A 3 bit absolute relocation */
173 HOWTO (R_M68HC11_3B, /* type */
174 0, /* rightshift */
175 0, /* size (0 = byte, 1 = short, 2 = long) */
176 3, /* bitsize */
b34976b6 177 FALSE, /* pc_relative */
60bcf0fa
NC
178 0, /* bitpos */
179 complain_overflow_bitfield, /* complain_on_overflow */
180 bfd_elf_generic_reloc, /* special_function */
181 "R_M68HC11_4B", /* name */
b34976b6 182 FALSE, /* partial_inplace */
60bcf0fa
NC
183 0x003, /* src_mask */
184 0x003, /* dst_mask */
b34976b6 185 FALSE), /* pcrel_offset */
60bcf0fa
NC
186
187 /* A 16 bit PC-rel relocation */
188 HOWTO (R_M68HC11_PCREL_16, /* type */
189 0, /* rightshift */
190 1, /* size (0 = byte, 1 = short, 2 = long) */
191 16, /* bitsize */
b34976b6 192 TRUE, /* pc_relative */
60bcf0fa
NC
193 0, /* bitpos */
194 complain_overflow_dont, /* complain_on_overflow */
195 bfd_elf_generic_reloc, /* special_function */
196 "R_M68HC11_PCREL_16", /* name */
b34976b6 197 FALSE, /* partial_inplace */
dae78fb0 198 0xffff, /* src_mask */
60bcf0fa 199 0xffff, /* dst_mask */
196486be 200 TRUE), /* pcrel_offset */
60bcf0fa
NC
201
202 /* GNU extension to record C++ vtable hierarchy */
203 HOWTO (R_M68HC11_GNU_VTINHERIT, /* type */
204 0, /* rightshift */
205 1, /* size (0 = byte, 1 = short, 2 = long) */
206 0, /* bitsize */
b34976b6 207 FALSE, /* pc_relative */
60bcf0fa
NC
208 0, /* bitpos */
209 complain_overflow_dont, /* complain_on_overflow */
210 NULL, /* special_function */
211 "R_M68HC11_GNU_VTINHERIT", /* name */
b34976b6 212 FALSE, /* partial_inplace */
60bcf0fa
NC
213 0, /* src_mask */
214 0, /* dst_mask */
b34976b6 215 FALSE), /* pcrel_offset */
60bcf0fa
NC
216
217 /* GNU extension to record C++ vtable member usage */
218 HOWTO (R_M68HC11_GNU_VTENTRY, /* type */
219 0, /* rightshift */
220 1, /* size (0 = byte, 1 = short, 2 = long) */
221 0, /* bitsize */
b34976b6 222 FALSE, /* pc_relative */
60bcf0fa
NC
223 0, /* bitpos */
224 complain_overflow_dont, /* complain_on_overflow */
225 _bfd_elf_rel_vtable_reloc_fn, /* special_function */
226 "R_M68HC11_GNU_VTENTRY", /* name */
b34976b6 227 FALSE, /* partial_inplace */
60bcf0fa
NC
228 0, /* src_mask */
229 0, /* dst_mask */
b34976b6 230 FALSE), /* pcrel_offset */
dae78fb0 231
7a897be4
SC
232 /* A 24 bit relocation */
233 HOWTO (R_M68HC11_24, /* type */
234 0, /* rightshift */
235 1, /* size (0 = byte, 1 = short, 2 = long) */
236 24, /* bitsize */
b34976b6 237 FALSE, /* pc_relative */
7a897be4
SC
238 0, /* bitpos */
239 complain_overflow_bitfield, /* complain_on_overflow */
240 bfd_elf_generic_reloc, /* special_function */
241 "R_M68HC11_24", /* name */
b34976b6 242 FALSE, /* partial_inplace */
196486be
SC
243 0xffffff, /* src_mask */
244 0xffffff, /* dst_mask */
b34976b6
AM
245 FALSE), /* pcrel_offset */
246
7a897be4
SC
247 /* A 16-bit low relocation */
248 HOWTO (R_M68HC11_LO16, /* type */
249 0, /* rightshift */
250 1, /* size (0 = byte, 1 = short, 2 = long) */
251 16, /* bitsize */
b34976b6 252 FALSE, /* pc_relative */
7a897be4
SC
253 0, /* bitpos */
254 complain_overflow_bitfield, /* complain_on_overflow */
255 bfd_elf_generic_reloc, /* special_function */
256 "R_M68HC11_LO16", /* name */
b34976b6 257 FALSE, /* partial_inplace */
7a897be4
SC
258 0xffff, /* src_mask */
259 0xffff, /* dst_mask */
b34976b6 260 FALSE), /* pcrel_offset */
7a897be4
SC
261
262 /* A page relocation */
263 HOWTO (R_M68HC11_PAGE, /* type */
264 0, /* rightshift */
265 0, /* size (0 = byte, 1 = short, 2 = long) */
266 8, /* bitsize */
b34976b6 267 FALSE, /* pc_relative */
7a897be4
SC
268 0, /* bitpos */
269 complain_overflow_bitfield, /* complain_on_overflow */
270 bfd_elf_generic_reloc, /* special_function */
271 "R_M68HC11_PAGE", /* name */
b34976b6 272 FALSE, /* partial_inplace */
7a897be4
SC
273 0x00ff, /* src_mask */
274 0x00ff, /* dst_mask */
b34976b6 275 FALSE), /* pcrel_offset */
7a897be4 276
dae78fb0
SC
277 EMPTY_HOWTO (14),
278 EMPTY_HOWTO (15),
279 EMPTY_HOWTO (16),
280 EMPTY_HOWTO (17),
281 EMPTY_HOWTO (18),
282 EMPTY_HOWTO (19),
b34976b6 283
dae78fb0
SC
284 /* Mark beginning of a jump instruction (any form). */
285 HOWTO (R_M68HC11_RL_JUMP, /* type */
286 0, /* rightshift */
287 1, /* size (0 = byte, 1 = short, 2 = long) */
288 0, /* bitsize */
b34976b6 289 FALSE, /* pc_relative */
dae78fb0
SC
290 0, /* bitpos */
291 complain_overflow_dont, /* complain_on_overflow */
292 m68hc11_elf_ignore_reloc, /* special_function */
293 "R_M68HC11_RL_JUMP", /* name */
b34976b6 294 TRUE, /* partial_inplace */
dae78fb0
SC
295 0, /* src_mask */
296 0, /* dst_mask */
b34976b6 297 TRUE), /* pcrel_offset */
dae78fb0
SC
298
299 /* Mark beginning of Gcc relaxation group instruction. */
300 HOWTO (R_M68HC11_RL_GROUP, /* type */
301 0, /* rightshift */
302 1, /* size (0 = byte, 1 = short, 2 = long) */
303 0, /* bitsize */
b34976b6 304 FALSE, /* pc_relative */
dae78fb0
SC
305 0, /* bitpos */
306 complain_overflow_dont, /* complain_on_overflow */
307 m68hc11_elf_ignore_reloc, /* special_function */
308 "R_M68HC11_RL_GROUP", /* name */
b34976b6 309 TRUE, /* partial_inplace */
dae78fb0
SC
310 0, /* src_mask */
311 0, /* dst_mask */
b34976b6 312 TRUE), /* pcrel_offset */
60bcf0fa
NC
313};
314
315/* Map BFD reloc types to M68HC11 ELF reloc types. */
316
317struct m68hc11_reloc_map
318{
319 bfd_reloc_code_real_type bfd_reloc_val;
320 unsigned char elf_reloc_val;
321};
322
323static const struct m68hc11_reloc_map m68hc11_reloc_map[] = {
324 {BFD_RELOC_NONE, R_M68HC11_NONE,},
325 {BFD_RELOC_8, R_M68HC11_8},
326 {BFD_RELOC_M68HC11_HI8, R_M68HC11_HI8},
327 {BFD_RELOC_M68HC11_LO8, R_M68HC11_LO8},
328 {BFD_RELOC_8_PCREL, R_M68HC11_PCREL_8},
329 {BFD_RELOC_16_PCREL, R_M68HC11_PCREL_16},
330 {BFD_RELOC_16, R_M68HC11_16},
331 {BFD_RELOC_32, R_M68HC11_32},
332 {BFD_RELOC_M68HC11_3B, R_M68HC11_3B},
333
60bcf0fa
NC
334 {BFD_RELOC_VTABLE_INHERIT, R_M68HC11_GNU_VTINHERIT},
335 {BFD_RELOC_VTABLE_ENTRY, R_M68HC11_GNU_VTENTRY},
dae78fb0 336
7a897be4
SC
337 {BFD_RELOC_M68HC11_LO16, R_M68HC11_LO16},
338 {BFD_RELOC_M68HC11_PAGE, R_M68HC11_PAGE},
339 {BFD_RELOC_M68HC11_24, R_M68HC11_24},
340
dae78fb0
SC
341 {BFD_RELOC_M68HC11_RL_JUMP, R_M68HC11_RL_JUMP},
342 {BFD_RELOC_M68HC11_RL_GROUP, R_M68HC11_RL_GROUP},
60bcf0fa
NC
343};
344
345static reloc_howto_type *
0a6a3ebe
SC
346bfd_elf32_bfd_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
347 bfd_reloc_code_real_type code)
60bcf0fa
NC
348{
349 unsigned int i;
350
351 for (i = 0;
352 i < sizeof (m68hc11_reloc_map) / sizeof (struct m68hc11_reloc_map);
353 i++)
354 {
355 if (m68hc11_reloc_map[i].bfd_reloc_val == code)
356 return &elf_m68hc11_howto_table[m68hc11_reloc_map[i].elf_reloc_val];
357 }
358
359 return NULL;
360}
361
157090f7
AM
362static reloc_howto_type *
363bfd_elf32_bfd_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
364 const char *r_name)
365{
366 unsigned int i;
367
368 for (i = 0;
369 i < (sizeof (elf_m68hc11_howto_table)
370 / sizeof (elf_m68hc11_howto_table[0]));
371 i++)
372 if (elf_m68hc11_howto_table[i].name != NULL
373 && strcasecmp (elf_m68hc11_howto_table[i].name, r_name) == 0)
374 return &elf_m68hc11_howto_table[i];
375
376 return NULL;
377}
378
60bcf0fa
NC
379/* Set the howto pointer for an M68HC11 ELF reloc. */
380
381static void
0a6a3ebe
SC
382m68hc11_info_to_howto_rel (bfd *abfd ATTRIBUTE_UNUSED,
383 arelent *cache_ptr, Elf_Internal_Rela *dst)
60bcf0fa
NC
384{
385 unsigned int r_type;
386
387 r_type = ELF32_R_TYPE (dst->r_info);
388 BFD_ASSERT (r_type < (unsigned int) R_M68HC11_max);
389 cache_ptr->howto = &elf_m68hc11_howto_table[r_type];
390}
391
3a65329d
SC
392\f
393/* Far trampoline generation. */
9b701e44 394
3a65329d
SC
395/* Build a 68HC11 trampoline stub. */
396static bfd_boolean
0a6a3ebe 397m68hc11_elf_build_one_stub (struct bfd_hash_entry *gen_entry, void *in_arg)
3a65329d
SC
398{
399 struct elf32_m68hc11_stub_hash_entry *stub_entry;
400 struct bfd_link_info *info;
401 struct m68hc11_elf_link_hash_table *htab;
402 asection *stub_sec;
403 bfd *stub_bfd;
404 bfd_byte *loc;
405 bfd_vma sym_value, phys_page, phys_addr;
406
407 /* Massage our args to the form they really have. */
408 stub_entry = (struct elf32_m68hc11_stub_hash_entry *) gen_entry;
409 info = (struct bfd_link_info *) in_arg;
410
411 htab = m68hc11_elf_hash_table (info);
4dfe6ac6
NC
412 if (htab == NULL)
413 return FALSE;
3a65329d
SC
414
415 stub_sec = stub_entry->stub_sec;
416
417 /* Make a note of the offset within the stubs for this entry. */
eea6121a
AM
418 stub_entry->stub_offset = stub_sec->size;
419 stub_sec->size += 10;
3a65329d
SC
420 loc = stub_sec->contents + stub_entry->stub_offset;
421
422 stub_bfd = stub_sec->owner;
423
424 /* Create the trampoline call stub:
425
426 pshb
427 ldab #%page(symbol)
428 ldy #%addr(symbol)
429 jmp __trampoline
430
431 */
432 sym_value = (stub_entry->target_value
433 + stub_entry->target_section->output_offset
434 + stub_entry->target_section->output_section->vma);
435 phys_addr = m68hc11_phys_addr (&htab->pinfo, sym_value);
436 phys_page = m68hc11_phys_page (&htab->pinfo, sym_value);
437
438 /* pshb; ldab #%page(sym) */
439 bfd_put_8 (stub_bfd, 0x37, loc);
440 bfd_put_8 (stub_bfd, 0xC6, loc + 1);
441 bfd_put_8 (stub_bfd, phys_page, loc + 2);
442 loc += 3;
443
444 /* ldy #%addr(sym) */
445 bfd_put_8 (stub_bfd, 0x18, loc);
446 bfd_put_8 (stub_bfd, 0xCE, loc + 1);
447 bfd_put_16 (stub_bfd, phys_addr, loc + 2);
448 loc += 4;
449
450 /* jmp __trampoline */
451 bfd_put_8 (stub_bfd, 0x7E, loc);
452 bfd_put_16 (stub_bfd, htab->pinfo.trampoline_addr, loc + 1);
56780f18 453
3a65329d 454 return TRUE;
9b701e44
SC
455}
456
3a65329d
SC
457/* As above, but don't actually build the stub. Just bump offset so
458 we know stub section sizes. */
459
b34976b6 460static bfd_boolean
0a6a3ebe
SC
461m68hc11_elf_size_one_stub (struct bfd_hash_entry *gen_entry,
462 void *in_arg ATTRIBUTE_UNUSED)
9b701e44 463{
3a65329d
SC
464 struct elf32_m68hc11_stub_hash_entry *stub_entry;
465
466 /* Massage our args to the form they really have. */
467 stub_entry = (struct elf32_m68hc11_stub_hash_entry *) gen_entry;
468
eea6121a 469 stub_entry->stub_sec->size += 10;
b34976b6 470 return TRUE;
9b701e44
SC
471}
472
3a65329d
SC
473/* Create a 68HC11 ELF linker hash table. */
474
475static struct bfd_link_hash_table *
0a6a3ebe 476m68hc11_elf_bfd_link_hash_table_create (bfd *abfd)
3a65329d
SC
477{
478 struct m68hc11_elf_link_hash_table *ret;
479
480 ret = m68hc11_elf_hash_table_create (abfd);
481 if (ret == (struct m68hc11_elf_link_hash_table *) NULL)
482 return NULL;
483
484 ret->size_one_stub = m68hc11_elf_size_one_stub;
485 ret->build_one_stub = m68hc11_elf_build_one_stub;
486
487 return &ret->root.root;
488}
489
196486be
SC
490\f
491/* 68HC11 Linker Relaxation. */
492
b34976b6 493struct m68hc11_direct_relax
1fd03b5a
SC
494{
495 const char *name;
496 unsigned char code;
497 unsigned char direct_code;
498} m68hc11_direct_relax_table[] = {
499 { "adca", 0xB9, 0x99 },
500 { "adcb", 0xF9, 0xD9 },
501 { "adda", 0xBB, 0x9B },
502 { "addb", 0xFB, 0xDB },
503 { "addd", 0xF3, 0xD3 },
504 { "anda", 0xB4, 0x94 },
505 { "andb", 0xF4, 0xD4 },
506 { "cmpa", 0xB1, 0x91 },
507 { "cmpb", 0xF1, 0xD1 },
508 { "cpd", 0xB3, 0x93 },
509 { "cpxy", 0xBC, 0x9C },
510/* { "cpy", 0xBC, 0x9C }, */
511 { "eora", 0xB8, 0x98 },
512 { "eorb", 0xF8, 0xD8 },
513 { "jsr", 0xBD, 0x9D },
514 { "ldaa", 0xB6, 0x96 },
515 { "ldab", 0xF6, 0xD6 },
516 { "ldd", 0xFC, 0xDC },
517 { "lds", 0xBE, 0x9E },
518 { "ldxy", 0xFE, 0xDE },
519 /* { "ldy", 0xFE, 0xDE },*/
520 { "oraa", 0xBA, 0x9A },
521 { "orab", 0xFA, 0xDA },
522 { "sbca", 0xB2, 0x92 },
523 { "sbcb", 0xF2, 0xD2 },
524 { "staa", 0xB7, 0x97 },
525 { "stab", 0xF7, 0xD7 },
526 { "std", 0xFD, 0xDD },
527 { "sts", 0xBF, 0x9F },
528 { "stxy", 0xFF, 0xDF },
529 /* { "sty", 0xFF, 0xDF },*/
530 { "suba", 0xB0, 0x90 },
531 { "subb", 0xF0, 0xD0 },
532 { "subd", 0xB3, 0x93 },
533 { 0, 0, 0 }
534};
535
536static struct m68hc11_direct_relax *
537find_relaxable_insn (unsigned char code)
538{
539 int i;
540
541 for (i = 0; m68hc11_direct_relax_table[i].name; i++)
542 if (m68hc11_direct_relax_table[i].code == code)
543 return &m68hc11_direct_relax_table[i];
544
545 return 0;
546}
547
548static int
0a6a3ebe 549compare_reloc (const void *e1, const void *e2)
1fd03b5a
SC
550{
551 const Elf_Internal_Rela *i1 = (const Elf_Internal_Rela *) e1;
552 const Elf_Internal_Rela *i2 = (const Elf_Internal_Rela *) e2;
553
554 if (i1->r_offset == i2->r_offset)
555 return 0;
556 else
557 return i1->r_offset < i2->r_offset ? -1 : 1;
558}
559
560#define M6811_OP_LDX_IMMEDIATE (0xCE)
561
562static void
0a6a3ebe
SC
563m68hc11_relax_group (bfd *abfd, asection *sec, bfd_byte *contents,
564 unsigned value, unsigned long offset,
565 unsigned long end_group)
1fd03b5a
SC
566{
567 unsigned char code;
568 unsigned long start_offset;
569 unsigned long ldx_offset = offset;
570 unsigned long ldx_size;
571 int can_delete_ldx;
572 int relax_ldy = 0;
573
574 /* First instruction of the relax group must be a
575 LDX #value or LDY #value. If this is not the case,
576 ignore the relax group. */
577 code = bfd_get_8 (abfd, contents + offset);
578 if (code == 0x18)
579 {
580 relax_ldy++;
581 offset++;
582 code = bfd_get_8 (abfd, contents + offset);
583 }
584 ldx_size = offset - ldx_offset + 3;
585 offset += 3;
586 if (code != M6811_OP_LDX_IMMEDIATE || offset >= end_group)
587 return;
588
589
590 /* We can remove the LDX/LDY only when all bset/brclr instructions
591 of the relax group have been converted to use direct addressing
592 mode. */
593 can_delete_ldx = 1;
594 while (offset < end_group)
595 {
596 unsigned isize;
597 unsigned new_value;
598 int bset_use_y;
599
600 bset_use_y = 0;
601 start_offset = offset;
602 code = bfd_get_8 (abfd, contents + offset);
603 if (code == 0x18)
604 {
605 bset_use_y++;
606 offset++;
607 code = bfd_get_8 (abfd, contents + offset);
608 }
609
610 /* Check the instruction and translate to use direct addressing mode. */
611 switch (code)
612 {
613 /* bset */
614 case 0x1C:
615 code = 0x14;
616 isize = 3;
617 break;
618
619 /* brclr */
620 case 0x1F:
621 code = 0x13;
622 isize = 4;
623 break;
624
625 /* brset */
626 case 0x1E:
627 code = 0x12;
628 isize = 4;
629 break;
630
631 /* bclr */
632 case 0x1D:
633 code = 0x15;
634 isize = 3;
635 break;
636
637 /* This instruction is not recognized and we are not
638 at end of the relax group. Ignore and don't remove
639 the first LDX (we don't know what it is used for...). */
640 default:
641 return;
642 }
643 new_value = (unsigned) bfd_get_8 (abfd, contents + offset + 1);
644 new_value += value;
645 if ((new_value & 0xff00) == 0 && bset_use_y == relax_ldy)
646 {
647 bfd_put_8 (abfd, code, contents + offset);
648 bfd_put_8 (abfd, new_value, contents + offset + 1);
649 if (start_offset != offset)
650 {
651 m68hc11_elf_relax_delete_bytes (abfd, sec, start_offset,
652 offset - start_offset);
653 end_group--;
654 }
655 }
656 else
657 {
658 can_delete_ldx = 0;
659 }
660 offset = start_offset + isize;
661 }
662 if (can_delete_ldx)
663 {
664 /* Remove the move instruction (3 or 4 bytes win). */
665 m68hc11_elf_relax_delete_bytes (abfd, sec, ldx_offset, ldx_size);
666 }
667}
668
669/* This function handles relaxing for the 68HC11.
670
b34976b6 671
1fd03b5a
SC
672 and somewhat more difficult to support. */
673
b34976b6 674static bfd_boolean
0a6a3ebe
SC
675m68hc11_elf_relax_section (bfd *abfd, asection *sec,
676 struct bfd_link_info *link_info, bfd_boolean *again)
1fd03b5a
SC
677{
678 Elf_Internal_Shdr *symtab_hdr;
1fd03b5a
SC
679 Elf_Internal_Rela *internal_relocs;
680 Elf_Internal_Rela *free_relocs = NULL;
681 Elf_Internal_Rela *irel, *irelend;
682 bfd_byte *contents = NULL;
683 bfd_byte *free_contents = NULL;
1fd03b5a
SC
684 Elf32_External_Sym *free_extsyms = NULL;
685 Elf_Internal_Rela *prev_insn_branch = NULL;
686 Elf_Internal_Rela *prev_insn_group = NULL;
687 unsigned insn_group_value = 0;
1f4c5b47 688 Elf_Internal_Sym *isymbuf = NULL;
1fd03b5a
SC
689
690 /* Assume nothing changes. */
b34976b6 691 *again = FALSE;
1fd03b5a 692
1049f94e 693 /* We don't have to do anything for a relocatable link, if
1fd03b5a
SC
694 this section does not have relocs, or if this is not a
695 code section. */
1049f94e 696 if (link_info->relocatable
1fd03b5a
SC
697 || (sec->flags & SEC_RELOC) == 0
698 || sec->reloc_count == 0
699 || (sec->flags & SEC_CODE) == 0)
b34976b6 700 return TRUE;
1fd03b5a 701
1fd03b5a 702 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1fd03b5a
SC
703
704 /* Get a copy of the native relocations. */
45d6a902 705 internal_relocs = (_bfd_elf_link_read_relocs
1fd03b5a
SC
706 (abfd, sec, (PTR) NULL, (Elf_Internal_Rela *) NULL,
707 link_info->keep_memory));
708 if (internal_relocs == NULL)
709 goto error_return;
710 if (! link_info->keep_memory)
711 free_relocs = internal_relocs;
712
713 /* Checking for branch relaxation relies on the relocations to
714 be sorted on 'r_offset'. This is not guaranteed so we must sort. */
715 qsort (internal_relocs, sec->reloc_count, sizeof (Elf_Internal_Rela),
716 compare_reloc);
717
718 /* Walk through them looking for relaxing opportunities. */
719 irelend = internal_relocs + sec->reloc_count;
720 for (irel = internal_relocs; irel < irelend; irel++)
721 {
722 bfd_vma symval;
723 bfd_vma value;
1f4c5b47 724 Elf_Internal_Sym *isym;
9b691193 725 asection *sym_sec;
196486be 726 int is_far = 0;
1fd03b5a
SC
727
728 /* If this isn't something that can be relaxed, then ignore
729 this reloc. */
730 if (ELF32_R_TYPE (irel->r_info) != (int) R_M68HC11_16
731 && ELF32_R_TYPE (irel->r_info) != (int) R_M68HC11_RL_JUMP
732 && ELF32_R_TYPE (irel->r_info) != (int) R_M68HC11_RL_GROUP)
733 {
734 prev_insn_branch = 0;
735 prev_insn_group = 0;
736 continue;
737 }
738
739 /* Get the section contents if we haven't done so already. */
740 if (contents == NULL)
741 {
742 /* Get cached copy if it exists. */
743 if (elf_section_data (sec)->this_hdr.contents != NULL)
744 contents = elf_section_data (sec)->this_hdr.contents;
745 else
746 {
747 /* Go get them off disk. */
eea6121a 748 if (!bfd_malloc_and_get_section (abfd, sec, &contents))
1fd03b5a
SC
749 goto error_return;
750 }
751 }
752
753 /* Try to eliminate an unconditional 8 bit pc-relative branch
754 which immediately follows a conditional 8 bit pc-relative
755 branch around the unconditional branch.
756
757 original: new:
758 bCC lab1 bCC' lab2
759 bra lab2
760 lab1: lab1:
761
762 This happens when the bCC can't reach lab2 at assembly time,
763 but due to other relaxations it can reach at link time. */
764 if (ELF32_R_TYPE (irel->r_info) == (int) R_M68HC11_RL_JUMP)
765 {
766 Elf_Internal_Rela *nrel;
767 unsigned char code;
768 unsigned char roffset;
769
770 prev_insn_branch = 0;
771 prev_insn_group = 0;
b34976b6 772
1fd03b5a 773 /* Do nothing if this reloc is the last byte in the section. */
eea6121a 774 if (irel->r_offset + 2 >= sec->size)
1fd03b5a
SC
775 continue;
776
777 /* See if the next instruction is an unconditional pc-relative
778 branch, more often than not this test will fail, so we
779 test it first to speed things up. */
780 code = bfd_get_8 (abfd, contents + irel->r_offset + 2);
781 if (code != 0x7e)
782 continue;
783
784 /* Also make sure the next relocation applies to the next
785 instruction and that it's a pc-relative 8 bit branch. */
786 nrel = irel + 1;
787 if (nrel == irelend
788 || irel->r_offset + 3 != nrel->r_offset
789 || ELF32_R_TYPE (nrel->r_info) != (int) R_M68HC11_16)
790 continue;
791
792 /* Make sure our destination immediately follows the
793 unconditional branch. */
794 roffset = bfd_get_8 (abfd, contents + irel->r_offset + 1);
795 if (roffset != 3)
796 continue;
797
798 prev_insn_branch = irel;
799 prev_insn_group = 0;
800 continue;
801 }
802
803 /* Read this BFD's symbols if we haven't done so already. */
1f4c5b47 804 if (isymbuf == NULL && symtab_hdr->sh_info != 0)
1fd03b5a 805 {
1f4c5b47
SC
806 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
807 if (isymbuf == NULL)
808 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
809 symtab_hdr->sh_info, 0,
810 NULL, NULL, NULL);
811 if (isymbuf == NULL)
812 goto error_return;
1fd03b5a
SC
813 }
814
815 /* Get the value of the symbol referred to by the reloc. */
816 if (ELF32_R_SYM (irel->r_info) < symtab_hdr->sh_info)
817 {
1fd03b5a 818 /* A local symbol. */
1f4c5b47 819 isym = isymbuf + ELF32_R_SYM (irel->r_info);
196486be 820 is_far = isym->st_other & STO_M68HC12_FAR;
1f4c5b47
SC
821 sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
822 symval = (isym->st_value
1fd03b5a
SC
823 + sym_sec->output_section->vma
824 + sym_sec->output_offset);
825 }
826 else
827 {
828 unsigned long indx;
829 struct elf_link_hash_entry *h;
830
831 /* An external symbol. */
832 indx = ELF32_R_SYM (irel->r_info) - symtab_hdr->sh_info;
833 h = elf_sym_hashes (abfd)[indx];
834 BFD_ASSERT (h != NULL);
835 if (h->root.type != bfd_link_hash_defined
836 && h->root.type != bfd_link_hash_defweak)
837 {
838 /* This appears to be a reference to an undefined
839 symbol. Just ignore it--it will be caught by the
840 regular reloc processing. */
841 prev_insn_branch = 0;
842 prev_insn_group = 0;
843 continue;
844 }
845
196486be 846 is_far = h->other & STO_M68HC12_FAR;
9b691193
SC
847 isym = 0;
848 sym_sec = h->root.u.def.section;
1fd03b5a 849 symval = (h->root.u.def.value
9b691193
SC
850 + sym_sec->output_section->vma
851 + sym_sec->output_offset);
1fd03b5a
SC
852 }
853
854 if (ELF32_R_TYPE (irel->r_info) == (int) R_M68HC11_RL_GROUP)
855 {
856 prev_insn_branch = 0;
857 prev_insn_group = 0;
b34976b6 858
1fd03b5a 859 /* Do nothing if this reloc is the last byte in the section. */
eea6121a 860 if (irel->r_offset == sec->size)
1fd03b5a
SC
861 continue;
862
863 prev_insn_group = irel;
1f4c5b47 864 insn_group_value = isym->st_value;
1fd03b5a
SC
865 continue;
866 }
867
9b691193
SC
868 /* When we relax some bytes, the size of our section changes.
869 This affects the layout of next input sections that go in our
870 output section. When the symbol is part of another section that
871 will go in the same output section as the current one, it's
872 final address may now be incorrect (too far). We must let the
873 linker re-compute all section offsets before processing this
874 reloc. Code example:
875
876 Initial Final
877 .sect .text section size = 6 section size = 4
878 jmp foo
879 jmp bar
880 .sect .text.foo_bar output_offset = 6 output_offset = 4
881 foo: rts
882 bar: rts
883
884 If we process the reloc now, the jmp bar is replaced by a
885 relative branch to the initial bar address (output_offset 6). */
886 if (*again && sym_sec != sec
887 && sym_sec->output_section == sec->output_section)
888 {
889 prev_insn_group = 0;
890 prev_insn_branch = 0;
891 continue;
892 }
b34976b6 893
1fd03b5a
SC
894 value = symval;
895 /* Try to turn a far branch to a near branch. */
896 if (ELF32_R_TYPE (irel->r_info) == (int) R_M68HC11_16
897 && prev_insn_branch)
898 {
899 bfd_vma offset;
900 unsigned char code;
901
902 offset = value - (prev_insn_branch->r_offset
903 + sec->output_section->vma
904 + sec->output_offset + 2);
905
906 /* If the offset is still out of -128..+127 range,
907 leave that far branch unchanged. */
908 if ((offset & 0xff80) != 0 && (offset & 0xff80) != 0xff80)
909 {
910 prev_insn_branch = 0;
911 continue;
912 }
913
914 /* Shrink the branch. */
915 code = bfd_get_8 (abfd, contents + prev_insn_branch->r_offset);
916 if (code == 0x7e)
917 {
918 code = 0x20;
919 bfd_put_8 (abfd, code, contents + prev_insn_branch->r_offset);
196486be 920 bfd_put_8 (abfd, 0xff,
1fd03b5a 921 contents + prev_insn_branch->r_offset + 1);
196486be 922 irel->r_offset = prev_insn_branch->r_offset + 1;
1fd03b5a 923 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
196486be 924 R_M68HC11_PCREL_8);
1fd03b5a 925 m68hc11_elf_relax_delete_bytes (abfd, sec,
196486be 926 irel->r_offset + 1, 1);
1fd03b5a
SC
927 }
928 else
929 {
930 code ^= 0x1;
931 bfd_put_8 (abfd, code, contents + prev_insn_branch->r_offset);
196486be 932 bfd_put_8 (abfd, 0xff,
1fd03b5a 933 contents + prev_insn_branch->r_offset + 1);
196486be 934 irel->r_offset = prev_insn_branch->r_offset + 1;
1fd03b5a 935 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
196486be 936 R_M68HC11_PCREL_8);
1fd03b5a 937 m68hc11_elf_relax_delete_bytes (abfd, sec,
196486be 938 irel->r_offset + 1, 3);
1fd03b5a
SC
939 }
940 prev_insn_branch = 0;
b34976b6 941 *again = TRUE;
1fd03b5a
SC
942 }
943
944 /* Try to turn a 16 bit address into a 8 bit page0 address. */
945 else if (ELF32_R_TYPE (irel->r_info) == (int) R_M68HC11_16
946 && (value & 0xff00) == 0)
947 {
948 unsigned char code;
949 unsigned short offset;
950 struct m68hc11_direct_relax *rinfo;
951
952 prev_insn_branch = 0;
953 offset = bfd_get_16 (abfd, contents + irel->r_offset);
954 offset += value;
955 if ((offset & 0xff00) != 0)
956 {
957 prev_insn_group = 0;
958 continue;
959 }
960
961 if (prev_insn_group)
962 {
eea6121a 963 unsigned long old_sec_size = sec->size;
b34976b6 964
4cc11e76 965 /* Note that we've changed the relocation contents, etc. */
1fd03b5a
SC
966 elf_section_data (sec)->relocs = internal_relocs;
967 free_relocs = NULL;
968
969 elf_section_data (sec)->this_hdr.contents = contents;
970 free_contents = NULL;
971
1f4c5b47 972 symtab_hdr->contents = (bfd_byte *) isymbuf;
1fd03b5a
SC
973 free_extsyms = NULL;
974
975 m68hc11_relax_group (abfd, sec, contents, offset,
976 prev_insn_group->r_offset,
977 insn_group_value);
978 irel = prev_insn_group;
979 prev_insn_group = 0;
980 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
981 R_M68HC11_NONE);
eea6121a 982 if (sec->size != old_sec_size)
b34976b6 983 *again = TRUE;
1fd03b5a
SC
984 continue;
985 }
b34976b6 986
1fd03b5a
SC
987 /* Get the opcode. */
988 code = bfd_get_8 (abfd, contents + irel->r_offset - 1);
989 rinfo = find_relaxable_insn (code);
990 if (rinfo == 0)
991 {
992 prev_insn_group = 0;
993 continue;
994 }
995
4cc11e76 996 /* Note that we've changed the relocation contents, etc. */
1fd03b5a
SC
997 elf_section_data (sec)->relocs = internal_relocs;
998 free_relocs = NULL;
999
1000 elf_section_data (sec)->this_hdr.contents = contents;
1001 free_contents = NULL;
1002
1f4c5b47 1003 symtab_hdr->contents = (bfd_byte *) isymbuf;
1fd03b5a
SC
1004 free_extsyms = NULL;
1005
1006 /* Fix the opcode. */
1007 /* printf ("A relaxable case : 0x%02x (%s)\n",
1008 code, rinfo->name); */
1009 bfd_put_8 (abfd, rinfo->direct_code,
1010 contents + irel->r_offset - 1);
1011
1012 /* Delete one byte of data (upper byte of address). */
1013 m68hc11_elf_relax_delete_bytes (abfd, sec, irel->r_offset, 1);
1014
1015 /* Fix the relocation's type. */
1016 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
1017 R_M68HC11_8);
1018
9b691193 1019 /* That will change things, so, we should relax again. */
b34976b6 1020 *again = TRUE;
1fd03b5a 1021 }
196486be 1022 else if (ELF32_R_TYPE (irel->r_info) == R_M68HC11_16 && !is_far)
1fd03b5a
SC
1023 {
1024 unsigned char code;
1025 bfd_vma offset;
1026
1027 prev_insn_branch = 0;
1028 code = bfd_get_8 (abfd, contents + irel->r_offset - 1);
196486be 1029 if (code == 0x7e || code == 0xbd)
1fd03b5a
SC
1030 {
1031 offset = value - (irel->r_offset
1032 + sec->output_section->vma
1033 + sec->output_offset + 1);
1034 offset += bfd_get_16 (abfd, contents + irel->r_offset);
1035
1036 /* If the offset is still out of -128..+127 range,
1037 leave that far branch unchanged. */
1038 if ((offset & 0xff80) == 0 || (offset & 0xff80) == 0xff80)
1039 {
1040
4cc11e76 1041 /* Note that we've changed the relocation contents, etc. */
1fd03b5a
SC
1042 elf_section_data (sec)->relocs = internal_relocs;
1043 free_relocs = NULL;
b34976b6 1044
1fd03b5a
SC
1045 elf_section_data (sec)->this_hdr.contents = contents;
1046 free_contents = NULL;
b34976b6 1047
1f4c5b47 1048 symtab_hdr->contents = (bfd_byte *) isymbuf;
1fd03b5a
SC
1049 free_extsyms = NULL;
1050
1051 /* Shrink the branch. */
196486be 1052 code = (code == 0x7e) ? 0x20 : 0x8d;
1fd03b5a
SC
1053 bfd_put_8 (abfd, code,
1054 contents + irel->r_offset - 1);
196486be 1055 bfd_put_8 (abfd, 0xff,
1fd03b5a
SC
1056 contents + irel->r_offset);
1057 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
196486be 1058 R_M68HC11_PCREL_8);
1fd03b5a
SC
1059 m68hc11_elf_relax_delete_bytes (abfd, sec,
1060 irel->r_offset + 1, 1);
9b691193 1061 /* That will change things, so, we should relax again. */
b34976b6 1062 *again = TRUE;
1fd03b5a
SC
1063 }
1064 }
1065 }
1066 prev_insn_branch = 0;
d204f4c0 1067 prev_insn_group = 0;
1fd03b5a
SC
1068 }
1069
1070 if (free_relocs != NULL)
1071 {
1072 free (free_relocs);
1073 free_relocs = NULL;
1074 }
1075
1076 if (free_contents != NULL)
1077 {
1078 if (! link_info->keep_memory)
1079 free (free_contents);
1080 else
1081 {
1082 /* Cache the section contents for elf_link_input_bfd. */
1083 elf_section_data (sec)->this_hdr.contents = contents;
1084 }
1085 free_contents = NULL;
1086 }
1087
1088 if (free_extsyms != NULL)
1089 {
1090 if (! link_info->keep_memory)
1091 free (free_extsyms);
1092 else
1093 {
1094 /* Cache the symbols for elf_link_input_bfd. */
1f4c5b47 1095 symtab_hdr->contents = (unsigned char *) isymbuf;
1fd03b5a
SC
1096 }
1097 free_extsyms = NULL;
1098 }
1099
b34976b6 1100 return TRUE;
1fd03b5a
SC
1101
1102 error_return:
1103 if (free_relocs != NULL)
1104 free (free_relocs);
1105 if (free_contents != NULL)
1106 free (free_contents);
1107 if (free_extsyms != NULL)
1108 free (free_extsyms);
b34976b6 1109 return FALSE;
1fd03b5a
SC
1110}
1111
1112/* Delete some bytes from a section while relaxing. */
1113
1114static void
0a6a3ebe
SC
1115m68hc11_elf_relax_delete_bytes (bfd *abfd, asection *sec,
1116 bfd_vma addr, int count)
1fd03b5a
SC
1117{
1118 Elf_Internal_Shdr *symtab_hdr;
1fd03b5a 1119 unsigned int sec_shndx;
1fd03b5a
SC
1120 bfd_byte *contents;
1121 Elf_Internal_Rela *irel, *irelend;
1122 bfd_vma toaddr;
1f4c5b47 1123 Elf_Internal_Sym *isymbuf, *isym, *isymend;
1fd03b5a
SC
1124 struct elf_link_hash_entry **sym_hashes;
1125 struct elf_link_hash_entry **end_hashes;
1126 unsigned int symcount;
1127
1128 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1f4c5b47 1129 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
1fd03b5a
SC
1130
1131 sec_shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
1132
1133 contents = elf_section_data (sec)->this_hdr.contents;
1134
eea6121a 1135 toaddr = sec->size;
1fd03b5a
SC
1136
1137 irel = elf_section_data (sec)->relocs;
1138 irelend = irel + sec->reloc_count;
1139
1140 /* Actually delete the bytes. */
1141 memmove (contents + addr, contents + addr + count,
1142 (size_t) (toaddr - addr - count));
1fd03b5a 1143
eea6121a 1144 sec->size -= count;
b34976b6 1145
1fd03b5a
SC
1146 /* Adjust all the relocs. */
1147 for (irel = elf_section_data (sec)->relocs; irel < irelend; irel++)
1148 {
1149 unsigned char code;
1150 unsigned char offset;
1151 unsigned short raddr;
1152 unsigned long old_offset;
1153 int branch_pos;
1154
1155 old_offset = irel->r_offset;
1156
1157 /* See if this reloc was for the bytes we have deleted, in which
1158 case we no longer care about it. Don't delete relocs which
1159 represent addresses, though. */
1160 if (ELF32_R_TYPE (irel->r_info) != R_M68HC11_RL_JUMP
1161 && irel->r_offset >= addr && irel->r_offset < addr + count)
1162 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
1163 R_M68HC11_NONE);
1164
1165 if (ELF32_R_TYPE (irel->r_info) == R_M68HC11_NONE)
1166 continue;
1167
1168 /* Get the new reloc address. */
1169 if ((irel->r_offset > addr
1170 && irel->r_offset < toaddr))
1171 irel->r_offset -= count;
1172
1173 /* If this is a PC relative reloc, see if the range it covers
1174 includes the bytes we have deleted. */
1175 switch (ELF32_R_TYPE (irel->r_info))
1176 {
1177 default:
1178 break;
1179
1180 case R_M68HC11_RL_JUMP:
1181 code = bfd_get_8 (abfd, contents + irel->r_offset);
1182 switch (code)
1183 {
1184 /* jsr and jmp instruction are also marked with RL_JUMP
1185 relocs but no adjustment must be made. */
1186 case 0x7e:
1187 case 0x9d:
1188 case 0xbd:
1189 continue;
1190
1191 case 0x12:
1192 case 0x13:
1193 branch_pos = 3;
1194 raddr = 4;
1195
1196 /* Special case when we translate a brclr N,y into brclr *<addr>
1197 In this case, the 0x18 page2 prefix is removed.
1198 The reloc offset is not modified but the instruction
1199 size is reduced by 1. */
1200 if (old_offset == addr)
1201 raddr++;
1202 break;
1203
1204 case 0x1e:
1205 case 0x1f:
1206 branch_pos = 3;
1207 raddr = 4;
1208 break;
1209
1210 case 0x18:
1211 branch_pos = 4;
1212 raddr = 5;
1213 break;
1214
1215 default:
1216 branch_pos = 1;
1217 raddr = 2;
1218 break;
1219 }
1220 offset = bfd_get_8 (abfd, contents + irel->r_offset + branch_pos);
1221 raddr += old_offset;
1222 raddr += ((unsigned short) offset | ((offset & 0x80) ? 0xff00 : 0));
30491647 1223 if (irel->r_offset < addr && raddr > addr)
1fd03b5a
SC
1224 {
1225 offset -= count;
1226 bfd_put_8 (abfd, offset, contents + irel->r_offset + branch_pos);
1227 }
1228 else if (irel->r_offset >= addr && raddr <= addr)
1229 {
1230 offset += count;
1231 bfd_put_8 (abfd, offset, contents + irel->r_offset + branch_pos);
1232 }
1233 else
1234 {
1235 /*printf ("Not adjusted 0x%04x [0x%4x 0x%4x]\n", raddr,
1236 irel->r_offset, addr);*/
1237 }
b34976b6 1238
1fd03b5a
SC
1239 break;
1240 }
1241 }
1242
1243 /* Adjust the local symbols defined in this section. */
1f4c5b47
SC
1244 isymend = isymbuf + symtab_hdr->sh_info;
1245 for (isym = isymbuf; isym < isymend; isym++)
1fd03b5a 1246 {
1f4c5b47
SC
1247 if (isym->st_shndx == sec_shndx
1248 && isym->st_value > addr
196486be 1249 && isym->st_value <= toaddr)
1f4c5b47 1250 isym->st_value -= count;
1fd03b5a
SC
1251 }
1252
1253 /* Now adjust the global symbols defined in this section. */
1254 symcount = (symtab_hdr->sh_size / sizeof (Elf32_External_Sym)
1255 - symtab_hdr->sh_info);
1256 sym_hashes = elf_sym_hashes (abfd);
1257 end_hashes = sym_hashes + symcount;
1258 for (; sym_hashes < end_hashes; sym_hashes++)
1259 {
1260 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1261 if ((sym_hash->root.type == bfd_link_hash_defined
1262 || sym_hash->root.type == bfd_link_hash_defweak)
1263 && sym_hash->root.u.def.section == sec
1264 && sym_hash->root.u.def.value > addr
196486be 1265 && sym_hash->root.u.def.value <= toaddr)
1fd03b5a
SC
1266 {
1267 sym_hash->root.u.def.value -= count;
1268 }
1269 }
1270}
1271
2f89ff8d
L
1272/* Specific sections:
1273 - The .page0 is a data section that is mapped in [0x0000..0x00FF].
1274 Page0 accesses are faster on the M68HC11. Soft registers used by GCC-m6811
1275 are located in .page0.
3f533aa9 1276 - The .vectors is the section that represents the interrupt
2f89ff8d 1277 vectors. */
b35d266b 1278static const struct bfd_elf_special_section elf32_m68hc11_special_sections[] =
2f89ff8d 1279{
0112cd26
NC
1280 { STRING_COMMA_LEN (".eeprom"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
1281 { STRING_COMMA_LEN (".page0"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
1282 { STRING_COMMA_LEN (".softregs"), 0, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
1283 { STRING_COMMA_LEN (".vectors"), 0, SHT_PROGBITS, SHF_ALLOC },
1284 { NULL, 0, 0, 0, 0 }
7f4d3958 1285};
96405e3c 1286\f
60bcf0fa
NC
1287#define ELF_ARCH bfd_arch_m68hc11
1288#define ELF_MACHINE_CODE EM_68HC11
1289#define ELF_MAXPAGESIZE 0x1000
1290
1291#define TARGET_BIG_SYM bfd_elf32_m68hc11_vec
1292#define TARGET_BIG_NAME "elf32-m68hc11"
1293
1294#define elf_info_to_howto 0
1295#define elf_info_to_howto_rel m68hc11_info_to_howto_rel
1fd03b5a 1296#define bfd_elf32_bfd_relax_section m68hc11_elf_relax_section
1fd03b5a
SC
1297#define elf_backend_check_relocs elf32_m68hc11_check_relocs
1298#define elf_backend_relocate_section elf32_m68hc11_relocate_section
3a65329d 1299#define elf_backend_add_symbol_hook elf32_m68hc11_add_symbol_hook
60bcf0fa
NC
1300#define elf_backend_object_p 0
1301#define elf_backend_final_write_processing 0
9b701e44 1302#define elf_backend_can_gc_sections 1
29ef7005 1303#define elf_backend_special_sections elf32_m68hc11_special_sections
3a65329d
SC
1304
1305#define bfd_elf32_bfd_link_hash_table_create \
1306 m68hc11_elf_bfd_link_hash_table_create
1307#define bfd_elf32_bfd_link_hash_table_free \
1308 m68hc11_elf_bfd_link_hash_table_free
96405e3c
SC
1309#define bfd_elf32_bfd_merge_private_bfd_data \
1310 _bfd_m68hc11_elf_merge_private_bfd_data
1311#define bfd_elf32_bfd_set_private_flags _bfd_m68hc11_elf_set_private_flags
1312#define bfd_elf32_bfd_print_private_bfd_data \
1313 _bfd_m68hc11_elf_print_private_bfd_data
1314
60bcf0fa 1315#include "elf32-target.h"