*** empty log message ***
[deliverable/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;
679 Elf_Internal_Shdr *shndx_hdr;
680 Elf_Internal_Rela *internal_relocs;
681 Elf_Internal_Rela *free_relocs = NULL;
682 Elf_Internal_Rela *irel, *irelend;
683 bfd_byte *contents = NULL;
684 bfd_byte *free_contents = NULL;
1fd03b5a
SC
685 Elf32_External_Sym *free_extsyms = NULL;
686 Elf_Internal_Rela *prev_insn_branch = NULL;
687 Elf_Internal_Rela *prev_insn_group = NULL;
688 unsigned insn_group_value = 0;
1f4c5b47 689 Elf_Internal_Sym *isymbuf = NULL;
1fd03b5a
SC
690
691 /* Assume nothing changes. */
b34976b6 692 *again = FALSE;
1fd03b5a 693
1049f94e 694 /* We don't have to do anything for a relocatable link, if
1fd03b5a
SC
695 this section does not have relocs, or if this is not a
696 code section. */
1049f94e 697 if (link_info->relocatable
1fd03b5a
SC
698 || (sec->flags & SEC_RELOC) == 0
699 || sec->reloc_count == 0
700 || (sec->flags & SEC_CODE) == 0)
b34976b6 701 return TRUE;
1fd03b5a 702
1fd03b5a
SC
703 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
704 shndx_hdr = &elf_tdata (abfd)->symtab_shndx_hdr;
705
706 /* Get a copy of the native relocations. */
45d6a902 707 internal_relocs = (_bfd_elf_link_read_relocs
1fd03b5a
SC
708 (abfd, sec, (PTR) NULL, (Elf_Internal_Rela *) NULL,
709 link_info->keep_memory));
710 if (internal_relocs == NULL)
711 goto error_return;
712 if (! link_info->keep_memory)
713 free_relocs = internal_relocs;
714
715 /* Checking for branch relaxation relies on the relocations to
716 be sorted on 'r_offset'. This is not guaranteed so we must sort. */
717 qsort (internal_relocs, sec->reloc_count, sizeof (Elf_Internal_Rela),
718 compare_reloc);
719
720 /* Walk through them looking for relaxing opportunities. */
721 irelend = internal_relocs + sec->reloc_count;
722 for (irel = internal_relocs; irel < irelend; irel++)
723 {
724 bfd_vma symval;
725 bfd_vma value;
1f4c5b47 726 Elf_Internal_Sym *isym;
9b691193 727 asection *sym_sec;
196486be 728 int is_far = 0;
1fd03b5a
SC
729
730 /* If this isn't something that can be relaxed, then ignore
731 this reloc. */
732 if (ELF32_R_TYPE (irel->r_info) != (int) R_M68HC11_16
733 && ELF32_R_TYPE (irel->r_info) != (int) R_M68HC11_RL_JUMP
734 && ELF32_R_TYPE (irel->r_info) != (int) R_M68HC11_RL_GROUP)
735 {
736 prev_insn_branch = 0;
737 prev_insn_group = 0;
738 continue;
739 }
740
741 /* Get the section contents if we haven't done so already. */
742 if (contents == NULL)
743 {
744 /* Get cached copy if it exists. */
745 if (elf_section_data (sec)->this_hdr.contents != NULL)
746 contents = elf_section_data (sec)->this_hdr.contents;
747 else
748 {
749 /* Go get them off disk. */
eea6121a 750 if (!bfd_malloc_and_get_section (abfd, sec, &contents))
1fd03b5a
SC
751 goto error_return;
752 }
753 }
754
755 /* Try to eliminate an unconditional 8 bit pc-relative branch
756 which immediately follows a conditional 8 bit pc-relative
757 branch around the unconditional branch.
758
759 original: new:
760 bCC lab1 bCC' lab2
761 bra lab2
762 lab1: lab1:
763
764 This happens when the bCC can't reach lab2 at assembly time,
765 but due to other relaxations it can reach at link time. */
766 if (ELF32_R_TYPE (irel->r_info) == (int) R_M68HC11_RL_JUMP)
767 {
768 Elf_Internal_Rela *nrel;
769 unsigned char code;
770 unsigned char roffset;
771
772 prev_insn_branch = 0;
773 prev_insn_group = 0;
b34976b6 774
1fd03b5a 775 /* Do nothing if this reloc is the last byte in the section. */
eea6121a 776 if (irel->r_offset + 2 >= sec->size)
1fd03b5a
SC
777 continue;
778
779 /* See if the next instruction is an unconditional pc-relative
780 branch, more often than not this test will fail, so we
781 test it first to speed things up. */
782 code = bfd_get_8 (abfd, contents + irel->r_offset + 2);
783 if (code != 0x7e)
784 continue;
785
786 /* Also make sure the next relocation applies to the next
787 instruction and that it's a pc-relative 8 bit branch. */
788 nrel = irel + 1;
789 if (nrel == irelend
790 || irel->r_offset + 3 != nrel->r_offset
791 || ELF32_R_TYPE (nrel->r_info) != (int) R_M68HC11_16)
792 continue;
793
794 /* Make sure our destination immediately follows the
795 unconditional branch. */
796 roffset = bfd_get_8 (abfd, contents + irel->r_offset + 1);
797 if (roffset != 3)
798 continue;
799
800 prev_insn_branch = irel;
801 prev_insn_group = 0;
802 continue;
803 }
804
805 /* Read this BFD's symbols if we haven't done so already. */
1f4c5b47 806 if (isymbuf == NULL && symtab_hdr->sh_info != 0)
1fd03b5a 807 {
1f4c5b47
SC
808 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
809 if (isymbuf == NULL)
810 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
811 symtab_hdr->sh_info, 0,
812 NULL, NULL, NULL);
813 if (isymbuf == NULL)
814 goto error_return;
1fd03b5a
SC
815 }
816
817 /* Get the value of the symbol referred to by the reloc. */
818 if (ELF32_R_SYM (irel->r_info) < symtab_hdr->sh_info)
819 {
1fd03b5a 820 /* A local symbol. */
1f4c5b47 821 isym = isymbuf + ELF32_R_SYM (irel->r_info);
196486be 822 is_far = isym->st_other & STO_M68HC12_FAR;
1f4c5b47
SC
823 sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
824 symval = (isym->st_value
1fd03b5a
SC
825 + sym_sec->output_section->vma
826 + sym_sec->output_offset);
827 }
828 else
829 {
830 unsigned long indx;
831 struct elf_link_hash_entry *h;
832
833 /* An external symbol. */
834 indx = ELF32_R_SYM (irel->r_info) - symtab_hdr->sh_info;
835 h = elf_sym_hashes (abfd)[indx];
836 BFD_ASSERT (h != NULL);
837 if (h->root.type != bfd_link_hash_defined
838 && h->root.type != bfd_link_hash_defweak)
839 {
840 /* This appears to be a reference to an undefined
841 symbol. Just ignore it--it will be caught by the
842 regular reloc processing. */
843 prev_insn_branch = 0;
844 prev_insn_group = 0;
845 continue;
846 }
847
196486be 848 is_far = h->other & STO_M68HC12_FAR;
9b691193
SC
849 isym = 0;
850 sym_sec = h->root.u.def.section;
1fd03b5a 851 symval = (h->root.u.def.value
9b691193
SC
852 + sym_sec->output_section->vma
853 + sym_sec->output_offset);
1fd03b5a
SC
854 }
855
856 if (ELF32_R_TYPE (irel->r_info) == (int) R_M68HC11_RL_GROUP)
857 {
858 prev_insn_branch = 0;
859 prev_insn_group = 0;
b34976b6 860
1fd03b5a 861 /* Do nothing if this reloc is the last byte in the section. */
eea6121a 862 if (irel->r_offset == sec->size)
1fd03b5a
SC
863 continue;
864
865 prev_insn_group = irel;
1f4c5b47 866 insn_group_value = isym->st_value;
1fd03b5a
SC
867 continue;
868 }
869
9b691193
SC
870 /* When we relax some bytes, the size of our section changes.
871 This affects the layout of next input sections that go in our
872 output section. When the symbol is part of another section that
873 will go in the same output section as the current one, it's
874 final address may now be incorrect (too far). We must let the
875 linker re-compute all section offsets before processing this
876 reloc. Code example:
877
878 Initial Final
879 .sect .text section size = 6 section size = 4
880 jmp foo
881 jmp bar
882 .sect .text.foo_bar output_offset = 6 output_offset = 4
883 foo: rts
884 bar: rts
885
886 If we process the reloc now, the jmp bar is replaced by a
887 relative branch to the initial bar address (output_offset 6). */
888 if (*again && sym_sec != sec
889 && sym_sec->output_section == sec->output_section)
890 {
891 prev_insn_group = 0;
892 prev_insn_branch = 0;
893 continue;
894 }
b34976b6 895
1fd03b5a
SC
896 value = symval;
897 /* Try to turn a far branch to a near branch. */
898 if (ELF32_R_TYPE (irel->r_info) == (int) R_M68HC11_16
899 && prev_insn_branch)
900 {
901 bfd_vma offset;
902 unsigned char code;
903
904 offset = value - (prev_insn_branch->r_offset
905 + sec->output_section->vma
906 + sec->output_offset + 2);
907
908 /* If the offset is still out of -128..+127 range,
909 leave that far branch unchanged. */
910 if ((offset & 0xff80) != 0 && (offset & 0xff80) != 0xff80)
911 {
912 prev_insn_branch = 0;
913 continue;
914 }
915
916 /* Shrink the branch. */
917 code = bfd_get_8 (abfd, contents + prev_insn_branch->r_offset);
918 if (code == 0x7e)
919 {
920 code = 0x20;
921 bfd_put_8 (abfd, code, contents + prev_insn_branch->r_offset);
196486be 922 bfd_put_8 (abfd, 0xff,
1fd03b5a 923 contents + prev_insn_branch->r_offset + 1);
196486be 924 irel->r_offset = prev_insn_branch->r_offset + 1;
1fd03b5a 925 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
196486be 926 R_M68HC11_PCREL_8);
1fd03b5a 927 m68hc11_elf_relax_delete_bytes (abfd, sec,
196486be 928 irel->r_offset + 1, 1);
1fd03b5a
SC
929 }
930 else
931 {
932 code ^= 0x1;
933 bfd_put_8 (abfd, code, contents + prev_insn_branch->r_offset);
196486be 934 bfd_put_8 (abfd, 0xff,
1fd03b5a 935 contents + prev_insn_branch->r_offset + 1);
196486be 936 irel->r_offset = prev_insn_branch->r_offset + 1;
1fd03b5a 937 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
196486be 938 R_M68HC11_PCREL_8);
1fd03b5a 939 m68hc11_elf_relax_delete_bytes (abfd, sec,
196486be 940 irel->r_offset + 1, 3);
1fd03b5a
SC
941 }
942 prev_insn_branch = 0;
b34976b6 943 *again = TRUE;
1fd03b5a
SC
944 }
945
946 /* Try to turn a 16 bit address into a 8 bit page0 address. */
947 else if (ELF32_R_TYPE (irel->r_info) == (int) R_M68HC11_16
948 && (value & 0xff00) == 0)
949 {
950 unsigned char code;
951 unsigned short offset;
952 struct m68hc11_direct_relax *rinfo;
953
954 prev_insn_branch = 0;
955 offset = bfd_get_16 (abfd, contents + irel->r_offset);
956 offset += value;
957 if ((offset & 0xff00) != 0)
958 {
959 prev_insn_group = 0;
960 continue;
961 }
962
963 if (prev_insn_group)
964 {
eea6121a 965 unsigned long old_sec_size = sec->size;
b34976b6 966
4cc11e76 967 /* Note that we've changed the relocation contents, etc. */
1fd03b5a
SC
968 elf_section_data (sec)->relocs = internal_relocs;
969 free_relocs = NULL;
970
971 elf_section_data (sec)->this_hdr.contents = contents;
972 free_contents = NULL;
973
1f4c5b47 974 symtab_hdr->contents = (bfd_byte *) isymbuf;
1fd03b5a
SC
975 free_extsyms = NULL;
976
977 m68hc11_relax_group (abfd, sec, contents, offset,
978 prev_insn_group->r_offset,
979 insn_group_value);
980 irel = prev_insn_group;
981 prev_insn_group = 0;
982 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
983 R_M68HC11_NONE);
eea6121a 984 if (sec->size != old_sec_size)
b34976b6 985 *again = TRUE;
1fd03b5a
SC
986 continue;
987 }
b34976b6 988
1fd03b5a
SC
989 /* Get the opcode. */
990 code = bfd_get_8 (abfd, contents + irel->r_offset - 1);
991 rinfo = find_relaxable_insn (code);
992 if (rinfo == 0)
993 {
994 prev_insn_group = 0;
995 continue;
996 }
997
4cc11e76 998 /* Note that we've changed the relocation contents, etc. */
1fd03b5a
SC
999 elf_section_data (sec)->relocs = internal_relocs;
1000 free_relocs = NULL;
1001
1002 elf_section_data (sec)->this_hdr.contents = contents;
1003 free_contents = NULL;
1004
1f4c5b47 1005 symtab_hdr->contents = (bfd_byte *) isymbuf;
1fd03b5a
SC
1006 free_extsyms = NULL;
1007
1008 /* Fix the opcode. */
1009 /* printf ("A relaxable case : 0x%02x (%s)\n",
1010 code, rinfo->name); */
1011 bfd_put_8 (abfd, rinfo->direct_code,
1012 contents + irel->r_offset - 1);
1013
1014 /* Delete one byte of data (upper byte of address). */
1015 m68hc11_elf_relax_delete_bytes (abfd, sec, irel->r_offset, 1);
1016
1017 /* Fix the relocation's type. */
1018 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
1019 R_M68HC11_8);
1020
9b691193 1021 /* That will change things, so, we should relax again. */
b34976b6 1022 *again = TRUE;
1fd03b5a 1023 }
196486be 1024 else if (ELF32_R_TYPE (irel->r_info) == R_M68HC11_16 && !is_far)
1fd03b5a
SC
1025 {
1026 unsigned char code;
1027 bfd_vma offset;
1028
1029 prev_insn_branch = 0;
1030 code = bfd_get_8 (abfd, contents + irel->r_offset - 1);
196486be 1031 if (code == 0x7e || code == 0xbd)
1fd03b5a
SC
1032 {
1033 offset = value - (irel->r_offset
1034 + sec->output_section->vma
1035 + sec->output_offset + 1);
1036 offset += bfd_get_16 (abfd, contents + irel->r_offset);
1037
1038 /* If the offset is still out of -128..+127 range,
1039 leave that far branch unchanged. */
1040 if ((offset & 0xff80) == 0 || (offset & 0xff80) == 0xff80)
1041 {
1042
4cc11e76 1043 /* Note that we've changed the relocation contents, etc. */
1fd03b5a
SC
1044 elf_section_data (sec)->relocs = internal_relocs;
1045 free_relocs = NULL;
b34976b6 1046
1fd03b5a
SC
1047 elf_section_data (sec)->this_hdr.contents = contents;
1048 free_contents = NULL;
b34976b6 1049
1f4c5b47 1050 symtab_hdr->contents = (bfd_byte *) isymbuf;
1fd03b5a
SC
1051 free_extsyms = NULL;
1052
1053 /* Shrink the branch. */
196486be 1054 code = (code == 0x7e) ? 0x20 : 0x8d;
1fd03b5a
SC
1055 bfd_put_8 (abfd, code,
1056 contents + irel->r_offset - 1);
196486be 1057 bfd_put_8 (abfd, 0xff,
1fd03b5a
SC
1058 contents + irel->r_offset);
1059 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
196486be 1060 R_M68HC11_PCREL_8);
1fd03b5a
SC
1061 m68hc11_elf_relax_delete_bytes (abfd, sec,
1062 irel->r_offset + 1, 1);
9b691193 1063 /* That will change things, so, we should relax again. */
b34976b6 1064 *again = TRUE;
1fd03b5a
SC
1065 }
1066 }
1067 }
1068 prev_insn_branch = 0;
d204f4c0 1069 prev_insn_group = 0;
1fd03b5a
SC
1070 }
1071
1072 if (free_relocs != NULL)
1073 {
1074 free (free_relocs);
1075 free_relocs = NULL;
1076 }
1077
1078 if (free_contents != NULL)
1079 {
1080 if (! link_info->keep_memory)
1081 free (free_contents);
1082 else
1083 {
1084 /* Cache the section contents for elf_link_input_bfd. */
1085 elf_section_data (sec)->this_hdr.contents = contents;
1086 }
1087 free_contents = NULL;
1088 }
1089
1090 if (free_extsyms != NULL)
1091 {
1092 if (! link_info->keep_memory)
1093 free (free_extsyms);
1094 else
1095 {
1096 /* Cache the symbols for elf_link_input_bfd. */
1f4c5b47 1097 symtab_hdr->contents = (unsigned char *) isymbuf;
1fd03b5a
SC
1098 }
1099 free_extsyms = NULL;
1100 }
1101
b34976b6 1102 return TRUE;
1fd03b5a
SC
1103
1104 error_return:
1105 if (free_relocs != NULL)
1106 free (free_relocs);
1107 if (free_contents != NULL)
1108 free (free_contents);
1109 if (free_extsyms != NULL)
1110 free (free_extsyms);
b34976b6 1111 return FALSE;
1fd03b5a
SC
1112}
1113
1114/* Delete some bytes from a section while relaxing. */
1115
1116static void
0a6a3ebe
SC
1117m68hc11_elf_relax_delete_bytes (bfd *abfd, asection *sec,
1118 bfd_vma addr, int count)
1fd03b5a
SC
1119{
1120 Elf_Internal_Shdr *symtab_hdr;
1fd03b5a 1121 unsigned int sec_shndx;
1fd03b5a
SC
1122 bfd_byte *contents;
1123 Elf_Internal_Rela *irel, *irelend;
1124 bfd_vma toaddr;
1f4c5b47 1125 Elf_Internal_Sym *isymbuf, *isym, *isymend;
1fd03b5a
SC
1126 struct elf_link_hash_entry **sym_hashes;
1127 struct elf_link_hash_entry **end_hashes;
1128 unsigned int symcount;
1129
1130 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1f4c5b47 1131 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
1fd03b5a
SC
1132
1133 sec_shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
1134
1135 contents = elf_section_data (sec)->this_hdr.contents;
1136
eea6121a 1137 toaddr = sec->size;
1fd03b5a
SC
1138
1139 irel = elf_section_data (sec)->relocs;
1140 irelend = irel + sec->reloc_count;
1141
1142 /* Actually delete the bytes. */
1143 memmove (contents + addr, contents + addr + count,
1144 (size_t) (toaddr - addr - count));
1fd03b5a 1145
eea6121a 1146 sec->size -= count;
b34976b6 1147
1fd03b5a
SC
1148 /* Adjust all the relocs. */
1149 for (irel = elf_section_data (sec)->relocs; irel < irelend; irel++)
1150 {
1151 unsigned char code;
1152 unsigned char offset;
1153 unsigned short raddr;
1154 unsigned long old_offset;
1155 int branch_pos;
1156
1157 old_offset = irel->r_offset;
1158
1159 /* See if this reloc was for the bytes we have deleted, in which
1160 case we no longer care about it. Don't delete relocs which
1161 represent addresses, though. */
1162 if (ELF32_R_TYPE (irel->r_info) != R_M68HC11_RL_JUMP
1163 && irel->r_offset >= addr && irel->r_offset < addr + count)
1164 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
1165 R_M68HC11_NONE);
1166
1167 if (ELF32_R_TYPE (irel->r_info) == R_M68HC11_NONE)
1168 continue;
1169
1170 /* Get the new reloc address. */
1171 if ((irel->r_offset > addr
1172 && irel->r_offset < toaddr))
1173 irel->r_offset -= count;
1174
1175 /* If this is a PC relative reloc, see if the range it covers
1176 includes the bytes we have deleted. */
1177 switch (ELF32_R_TYPE (irel->r_info))
1178 {
1179 default:
1180 break;
1181
1182 case R_M68HC11_RL_JUMP:
1183 code = bfd_get_8 (abfd, contents + irel->r_offset);
1184 switch (code)
1185 {
1186 /* jsr and jmp instruction are also marked with RL_JUMP
1187 relocs but no adjustment must be made. */
1188 case 0x7e:
1189 case 0x9d:
1190 case 0xbd:
1191 continue;
1192
1193 case 0x12:
1194 case 0x13:
1195 branch_pos = 3;
1196 raddr = 4;
1197
1198 /* Special case when we translate a brclr N,y into brclr *<addr>
1199 In this case, the 0x18 page2 prefix is removed.
1200 The reloc offset is not modified but the instruction
1201 size is reduced by 1. */
1202 if (old_offset == addr)
1203 raddr++;
1204 break;
1205
1206 case 0x1e:
1207 case 0x1f:
1208 branch_pos = 3;
1209 raddr = 4;
1210 break;
1211
1212 case 0x18:
1213 branch_pos = 4;
1214 raddr = 5;
1215 break;
1216
1217 default:
1218 branch_pos = 1;
1219 raddr = 2;
1220 break;
1221 }
1222 offset = bfd_get_8 (abfd, contents + irel->r_offset + branch_pos);
1223 raddr += old_offset;
1224 raddr += ((unsigned short) offset | ((offset & 0x80) ? 0xff00 : 0));
30491647 1225 if (irel->r_offset < addr && raddr > addr)
1fd03b5a
SC
1226 {
1227 offset -= count;
1228 bfd_put_8 (abfd, offset, contents + irel->r_offset + branch_pos);
1229 }
1230 else if (irel->r_offset >= addr && raddr <= addr)
1231 {
1232 offset += count;
1233 bfd_put_8 (abfd, offset, contents + irel->r_offset + branch_pos);
1234 }
1235 else
1236 {
1237 /*printf ("Not adjusted 0x%04x [0x%4x 0x%4x]\n", raddr,
1238 irel->r_offset, addr);*/
1239 }
b34976b6 1240
1fd03b5a
SC
1241 break;
1242 }
1243 }
1244
1245 /* Adjust the local symbols defined in this section. */
1f4c5b47
SC
1246 isymend = isymbuf + symtab_hdr->sh_info;
1247 for (isym = isymbuf; isym < isymend; isym++)
1fd03b5a 1248 {
1f4c5b47
SC
1249 if (isym->st_shndx == sec_shndx
1250 && isym->st_value > addr
196486be 1251 && isym->st_value <= toaddr)
1f4c5b47 1252 isym->st_value -= count;
1fd03b5a
SC
1253 }
1254
1255 /* Now adjust the global symbols defined in this section. */
1256 symcount = (symtab_hdr->sh_size / sizeof (Elf32_External_Sym)
1257 - symtab_hdr->sh_info);
1258 sym_hashes = elf_sym_hashes (abfd);
1259 end_hashes = sym_hashes + symcount;
1260 for (; sym_hashes < end_hashes; sym_hashes++)
1261 {
1262 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1263 if ((sym_hash->root.type == bfd_link_hash_defined
1264 || sym_hash->root.type == bfd_link_hash_defweak)
1265 && sym_hash->root.u.def.section == sec
1266 && sym_hash->root.u.def.value > addr
196486be 1267 && sym_hash->root.u.def.value <= toaddr)
1fd03b5a
SC
1268 {
1269 sym_hash->root.u.def.value -= count;
1270 }
1271 }
1272}
1273
2f89ff8d
L
1274/* Specific sections:
1275 - The .page0 is a data section that is mapped in [0x0000..0x00FF].
1276 Page0 accesses are faster on the M68HC11. Soft registers used by GCC-m6811
1277 are located in .page0.
3f533aa9 1278 - The .vectors is the section that represents the interrupt
2f89ff8d 1279 vectors. */
b35d266b 1280static const struct bfd_elf_special_section elf32_m68hc11_special_sections[] =
2f89ff8d 1281{
0112cd26
NC
1282 { STRING_COMMA_LEN (".eeprom"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
1283 { STRING_COMMA_LEN (".page0"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
1284 { STRING_COMMA_LEN (".softregs"), 0, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
1285 { STRING_COMMA_LEN (".vectors"), 0, SHT_PROGBITS, SHF_ALLOC },
1286 { NULL, 0, 0, 0, 0 }
7f4d3958 1287};
96405e3c 1288\f
60bcf0fa
NC
1289#define ELF_ARCH bfd_arch_m68hc11
1290#define ELF_MACHINE_CODE EM_68HC11
1291#define ELF_MAXPAGESIZE 0x1000
1292
1293#define TARGET_BIG_SYM bfd_elf32_m68hc11_vec
1294#define TARGET_BIG_NAME "elf32-m68hc11"
1295
1296#define elf_info_to_howto 0
1297#define elf_info_to_howto_rel m68hc11_info_to_howto_rel
1fd03b5a 1298#define bfd_elf32_bfd_relax_section m68hc11_elf_relax_section
1fd03b5a
SC
1299#define elf_backend_check_relocs elf32_m68hc11_check_relocs
1300#define elf_backend_relocate_section elf32_m68hc11_relocate_section
3a65329d 1301#define elf_backend_add_symbol_hook elf32_m68hc11_add_symbol_hook
60bcf0fa
NC
1302#define elf_backend_object_p 0
1303#define elf_backend_final_write_processing 0
9b701e44 1304#define elf_backend_can_gc_sections 1
29ef7005 1305#define elf_backend_special_sections elf32_m68hc11_special_sections
3a65329d
SC
1306
1307#define bfd_elf32_bfd_link_hash_table_create \
1308 m68hc11_elf_bfd_link_hash_table_create
1309#define bfd_elf32_bfd_link_hash_table_free \
1310 m68hc11_elf_bfd_link_hash_table_free
96405e3c
SC
1311#define bfd_elf32_bfd_merge_private_bfd_data \
1312 _bfd_m68hc11_elf_merge_private_bfd_data
1313#define bfd_elf32_bfd_set_private_flags _bfd_m68hc11_elf_set_private_flags
1314#define bfd_elf32_bfd_print_private_bfd_data \
1315 _bfd_m68hc11_elf_print_private_bfd_data
1316
60bcf0fa 1317#include "elf32-target.h"
This page took 0.502829 seconds and 4 git commands to generate.