1 /* AVR-specific support for 32-bit ELF
2 Copyright 1999, 2000 Free Software Foundation, Inc.
3 Contributed by Denis Chertykov <denisc@overta.ru>
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
27 static reloc_howto_type
*bfd_elf32_bfd_reloc_type_lookup
28 PARAMS ((bfd
*abfd
, bfd_reloc_code_real_type code
));
29 static void avr_info_to_howto_rela
30 PARAMS ((bfd
*, arelent
*, Elf32_Internal_Rela
*));
31 static asection
*elf32_avr_gc_mark_hook
32 PARAMS ((bfd
*, struct bfd_link_info
*, Elf_Internal_Rela
*,
33 struct elf_link_hash_entry
*, Elf_Internal_Sym
*));
34 static boolean elf32_avr_gc_sweep_hook
35 PARAMS ((bfd
*, struct bfd_link_info
*, asection
*,
36 const Elf_Internal_Rela
*));
37 static boolean elf32_avr_check_relocs
38 PARAMS ((bfd
*, struct bfd_link_info
*, asection
*,
39 const Elf_Internal_Rela
*));
40 static bfd_reloc_status_type avr_final_link_relocate
41 PARAMS ((reloc_howto_type
*, bfd
*, asection
*, bfd_byte
*,
42 Elf_Internal_Rela
*, bfd_vma
));
43 static boolean elf32_avr_relocate_section
44 PARAMS ((bfd
*, struct bfd_link_info
*, bfd
*, asection
*, bfd_byte
*,
45 Elf_Internal_Rela
*, Elf_Internal_Sym
*, asection
**));
46 static void bfd_elf_avr_final_write_processing
PARAMS ((bfd
*, boolean
));
47 static boolean elf32_avr_object_p
PARAMS ((bfd
*));
49 /* Use RELA instead of REL */
52 static reloc_howto_type elf_avr_howto_table
[] =
54 HOWTO (R_AVR_NONE
, /* type */
56 2, /* size (0 = byte, 1 = short, 2 = long) */
58 false, /* pc_relative */
60 complain_overflow_bitfield
, /* complain_on_overflow */
61 bfd_elf_generic_reloc
, /* special_function */
62 "R_AVR_NONE", /* name */
63 false, /* partial_inplace */
66 false), /* pcrel_offset */
68 HOWTO (R_AVR_32
, /* type */
70 2, /* size (0 = byte, 1 = short, 2 = long) */
72 false, /* pc_relative */
74 complain_overflow_bitfield
, /* complain_on_overflow */
75 bfd_elf_generic_reloc
, /* special_function */
76 "R_AVR_32", /* name */
77 false, /* partial_inplace */
78 0xffffffff, /* src_mask */
79 0xffffffff, /* dst_mask */
80 false), /* pcrel_offset */
82 /* A 7 bit PC relative relocation. */
83 HOWTO (R_AVR_7_PCREL
, /* type */
85 1, /* size (0 = byte, 1 = short, 2 = long) */
87 true, /* pc_relative */
89 complain_overflow_bitfield
, /* complain_on_overflow */
90 bfd_elf_generic_reloc
, /* special_function */
91 "R_AVR_7_PCREL", /* name */
92 false, /* partial_inplace */
93 0xffff, /* src_mask */
94 0xffff, /* dst_mask */
95 true), /* pcrel_offset */
97 /* A 13 bit PC relative relocation. */
98 HOWTO (R_AVR_13_PCREL
, /* type */
100 1, /* size (0 = byte, 1 = short, 2 = long) */
102 true, /* pc_relative */
104 complain_overflow_bitfield
, /* complain_on_overflow */
105 bfd_elf_generic_reloc
, /* special_function */
106 "R_AVR_13_PCREL", /* name */
107 false, /* partial_inplace */
108 0xfff, /* src_mask */
109 0xfff, /* dst_mask */
110 true), /* pcrel_offset */
112 /* A 16 bit absolute relocation. */
113 HOWTO (R_AVR_16
, /* type */
115 1, /* size (0 = byte, 1 = short, 2 = long) */
117 false, /* pc_relative */
119 complain_overflow_dont
, /* complain_on_overflow */
120 bfd_elf_generic_reloc
, /* special_function */
121 "R_AVR_16", /* name */
122 false, /* partial_inplace */
123 0xffff, /* src_mask */
124 0xffff, /* dst_mask */
125 false), /* pcrel_offset */
127 /* A 16 bit absolute relocation for command address. */
128 HOWTO (R_AVR_16_PM
, /* type */
130 1, /* size (0 = byte, 1 = short, 2 = long) */
132 false, /* pc_relative */
134 complain_overflow_bitfield
, /* complain_on_overflow */
135 bfd_elf_generic_reloc
, /* special_function */
136 "R_AVR_16_PM", /* name */
137 false, /* partial_inplace */
138 0xffff, /* src_mask */
139 0xffff, /* dst_mask */
140 false), /* pcrel_offset */
141 /* A low 8 bit absolute relocation of 16 bit address.
143 HOWTO (R_AVR_LO8_LDI
, /* type */
145 1, /* size (0 = byte, 1 = short, 2 = long) */
147 false, /* pc_relative */
149 complain_overflow_dont
, /* complain_on_overflow */
150 bfd_elf_generic_reloc
, /* special_function */
151 "R_AVR_LO8_LDI", /* name */
152 false, /* partial_inplace */
153 0xffff, /* src_mask */
154 0xffff, /* dst_mask */
155 false), /* pcrel_offset */
156 /* A high 8 bit absolute relocation of 16 bit address.
158 HOWTO (R_AVR_HI8_LDI
, /* type */
160 1, /* size (0 = byte, 1 = short, 2 = long) */
162 false, /* pc_relative */
164 complain_overflow_dont
, /* complain_on_overflow */
165 bfd_elf_generic_reloc
, /* special_function */
166 "R_AVR_HI8_LDI", /* name */
167 false, /* partial_inplace */
168 0xffff, /* src_mask */
169 0xffff, /* dst_mask */
170 false), /* pcrel_offset */
171 /* A high 6 bit absolute relocation of 22 bit address.
173 HOWTO (R_AVR_HH8_LDI
, /* type */
175 1, /* size (0 = byte, 1 = short, 2 = long) */
177 false, /* pc_relative */
179 complain_overflow_dont
, /* complain_on_overflow */
180 bfd_elf_generic_reloc
, /* special_function */
181 "R_AVR_HH8_LDI", /* name */
182 false, /* partial_inplace */
183 0xffff, /* src_mask */
184 0xffff, /* dst_mask */
185 false), /* pcrel_offset */
186 /* A negative low 8 bit absolute relocation of 16 bit address.
188 HOWTO (R_AVR_LO8_LDI_NEG
, /* type */
190 1, /* size (0 = byte, 1 = short, 2 = long) */
192 false, /* pc_relative */
194 complain_overflow_dont
, /* complain_on_overflow */
195 bfd_elf_generic_reloc
, /* special_function */
196 "R_AVR_LO8_LDI_NEG", /* name */
197 false, /* partial_inplace */
198 0xffff, /* src_mask */
199 0xffff, /* dst_mask */
200 false), /* pcrel_offset */
201 /* A hegative high 8 bit absolute relocation of 16 bit address.
203 HOWTO (R_AVR_HI8_LDI_NEG
, /* type */
205 1, /* size (0 = byte, 1 = short, 2 = long) */
207 false, /* pc_relative */
209 complain_overflow_dont
, /* complain_on_overflow */
210 bfd_elf_generic_reloc
, /* special_function */
211 "R_AVR_HI8_LDI_NEG", /* name */
212 false, /* partial_inplace */
213 0xffff, /* src_mask */
214 0xffff, /* dst_mask */
215 false), /* pcrel_offset */
216 /* A hegative high 6 bit absolute relocation of 22 bit address.
218 HOWTO (R_AVR_HH8_LDI_NEG
, /* type */
220 1, /* size (0 = byte, 1 = short, 2 = long) */
222 false, /* pc_relative */
224 complain_overflow_dont
, /* complain_on_overflow */
225 bfd_elf_generic_reloc
, /* special_function */
226 "R_AVR_HH8_LDI_NEG", /* name */
227 false, /* partial_inplace */
228 0xffff, /* src_mask */
229 0xffff, /* dst_mask */
230 false), /* pcrel_offset */
231 /* A low 8 bit absolute relocation of 24 bit program memory address.
233 HOWTO (R_AVR_LO8_LDI_PM
, /* type */
235 1, /* size (0 = byte, 1 = short, 2 = long) */
237 false, /* pc_relative */
239 complain_overflow_dont
, /* complain_on_overflow */
240 bfd_elf_generic_reloc
, /* special_function */
241 "R_AVR_LO8_LDI_PM", /* name */
242 false, /* partial_inplace */
243 0xffff, /* src_mask */
244 0xffff, /* dst_mask */
245 false), /* pcrel_offset */
246 /* A high 8 bit absolute relocation of 16 bit program memory address.
248 HOWTO (R_AVR_HI8_LDI_PM
, /* type */
250 1, /* size (0 = byte, 1 = short, 2 = long) */
252 false, /* pc_relative */
254 complain_overflow_dont
, /* complain_on_overflow */
255 bfd_elf_generic_reloc
, /* special_function */
256 "R_AVR_HI8_LDI_PM", /* name */
257 false, /* partial_inplace */
258 0xffff, /* src_mask */
259 0xffff, /* dst_mask */
260 false), /* pcrel_offset */
261 /* A high 8 bit absolute relocation of 24 bit program memory address.
263 HOWTO (R_AVR_HH8_LDI_PM
, /* type */
265 1, /* size (0 = byte, 1 = short, 2 = long) */
267 false, /* pc_relative */
269 complain_overflow_dont
, /* complain_on_overflow */
270 bfd_elf_generic_reloc
, /* special_function */
271 "R_AVR_HH8_LDI_PM", /* name */
272 false, /* partial_inplace */
273 0xffff, /* src_mask */
274 0xffff, /* dst_mask */
275 false), /* pcrel_offset */
276 /* A low 8 bit absolute relocation of a negative 24 bit
277 program memory address. For LDI command. */
278 HOWTO (R_AVR_LO8_LDI_PM_NEG
, /* type */
280 1, /* size (0 = byte, 1 = short, 2 = long) */
282 false, /* pc_relative */
284 complain_overflow_dont
, /* complain_on_overflow */
285 bfd_elf_generic_reloc
, /* special_function */
286 "R_AVR_LO8_LDI_PM_NEG", /* name */
287 false, /* partial_inplace */
288 0xffff, /* src_mask */
289 0xffff, /* dst_mask */
290 false), /* pcrel_offset */
291 /* A high 8 bit absolute relocation of a negative 16 bit
292 program memory address. For LDI command. */
293 HOWTO (R_AVR_HI8_LDI_PM_NEG
, /* type */
295 1, /* size (0 = byte, 1 = short, 2 = long) */
297 false, /* pc_relative */
299 complain_overflow_dont
, /* complain_on_overflow */
300 bfd_elf_generic_reloc
, /* special_function */
301 "R_AVR_HI8_LDI_PM_NEG", /* name */
302 false, /* partial_inplace */
303 0xffff, /* src_mask */
304 0xffff, /* dst_mask */
305 false), /* pcrel_offset */
306 /* A high 8 bit absolute relocation of a negative 24 bit
307 program memory address. For LDI command. */
308 HOWTO (R_AVR_HH8_LDI_PM_NEG
, /* type */
310 1, /* size (0 = byte, 1 = short, 2 = long) */
312 false, /* pc_relative */
314 complain_overflow_dont
, /* complain_on_overflow */
315 bfd_elf_generic_reloc
, /* special_function */
316 "R_AVR_HH8_LDI_PM_NEG", /* name */
317 false, /* partial_inplace */
318 0xffff, /* src_mask */
319 0xffff, /* dst_mask */
320 false), /* pcrel_offset */
321 /* Relocation for CALL command in ATmega. */
322 HOWTO (R_AVR_CALL
, /* type */
324 2, /* size (0 = byte, 1 = short, 2 = long) */
326 false, /* pc_relative */
328 complain_overflow_dont
, /* complain_on_overflow */
329 bfd_elf_generic_reloc
, /* special_function */
330 "R_AVR_CALL", /* name */
331 false, /* partial_inplace */
332 0xffffffff, /* src_mask */
333 0xffffffff, /* dst_mask */
334 false) /* pcrel_offset */
337 /* Map BFD reloc types to AVR ELF reloc types. */
341 bfd_reloc_code_real_type bfd_reloc_val
;
342 unsigned int elf_reloc_val
;
345 static const struct avr_reloc_map avr_reloc_map
[] =
347 { BFD_RELOC_NONE
, R_AVR_NONE
},
348 { BFD_RELOC_32
, R_AVR_32
},
349 { BFD_RELOC_AVR_7_PCREL
, R_AVR_7_PCREL
},
350 { BFD_RELOC_AVR_13_PCREL
, R_AVR_13_PCREL
},
351 { BFD_RELOC_16
, R_AVR_16
},
352 { BFD_RELOC_AVR_16_PM
, R_AVR_16_PM
},
353 { BFD_RELOC_AVR_LO8_LDI
, R_AVR_LO8_LDI
},
354 { BFD_RELOC_AVR_HI8_LDI
, R_AVR_HI8_LDI
},
355 { BFD_RELOC_AVR_HH8_LDI
, R_AVR_HH8_LDI
},
356 { BFD_RELOC_AVR_LO8_LDI_NEG
, R_AVR_LO8_LDI_NEG
},
357 { BFD_RELOC_AVR_HI8_LDI_NEG
, R_AVR_HI8_LDI_NEG
},
358 { BFD_RELOC_AVR_HH8_LDI_NEG
, R_AVR_HH8_LDI_NEG
},
359 { BFD_RELOC_AVR_LO8_LDI_PM
, R_AVR_LO8_LDI_PM
},
360 { BFD_RELOC_AVR_HI8_LDI_PM
, R_AVR_HI8_LDI_PM
},
361 { BFD_RELOC_AVR_HH8_LDI_PM
, R_AVR_HH8_LDI_PM
},
362 { BFD_RELOC_AVR_LO8_LDI_PM_NEG
, R_AVR_LO8_LDI_PM_NEG
},
363 { BFD_RELOC_AVR_HI8_LDI_PM_NEG
, R_AVR_HI8_LDI_PM_NEG
},
364 { BFD_RELOC_AVR_HH8_LDI_PM_NEG
, R_AVR_HH8_LDI_PM_NEG
},
365 { BFD_RELOC_AVR_CALL
, R_AVR_CALL
}
368 static reloc_howto_type
*
369 bfd_elf32_bfd_reloc_type_lookup (abfd
, code
)
370 bfd
*abfd ATTRIBUTE_UNUSED
;
371 bfd_reloc_code_real_type code
;
376 i
< sizeof (avr_reloc_map
) / sizeof (struct avr_reloc_map
);
379 if (avr_reloc_map
[i
].bfd_reloc_val
== code
)
380 return &elf_avr_howto_table
[avr_reloc_map
[i
].elf_reloc_val
];
386 /* Set the howto pointer for an AVR ELF reloc. */
389 avr_info_to_howto_rela (abfd
, cache_ptr
, dst
)
390 bfd
*abfd ATTRIBUTE_UNUSED
;
392 Elf32_Internal_Rela
*dst
;
396 r_type
= ELF32_R_TYPE (dst
->r_info
);
397 BFD_ASSERT (r_type
< (unsigned int) R_AVR_max
);
398 cache_ptr
->howto
= &elf_avr_howto_table
[r_type
];
402 elf32_avr_gc_mark_hook (abfd
, info
, rel
, h
, sym
)
404 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
405 Elf_Internal_Rela
*rel
;
406 struct elf_link_hash_entry
*h
;
407 Elf_Internal_Sym
*sym
;
411 switch (ELF32_R_TYPE (rel
->r_info
))
414 switch (h
->root
.type
)
416 case bfd_link_hash_defined
:
417 case bfd_link_hash_defweak
:
418 return h
->root
.u
.def
.section
;
420 case bfd_link_hash_common
:
421 return h
->root
.u
.c
.p
->section
;
430 if (!(elf_bad_symtab (abfd
)
431 && ELF_ST_BIND (sym
->st_info
) != STB_LOCAL
)
432 && !((sym
->st_shndx
<= 0 || sym
->st_shndx
>= SHN_LORESERVE
)
433 && sym
->st_shndx
!= SHN_COMMON
))
435 return bfd_section_from_elf_index (abfd
, sym
->st_shndx
);
442 elf32_avr_gc_sweep_hook (abfd
, info
, sec
, relocs
)
443 bfd
*abfd ATTRIBUTE_UNUSED
;
444 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
445 asection
*sec ATTRIBUTE_UNUSED
;
446 const Elf_Internal_Rela
*relocs ATTRIBUTE_UNUSED
;
448 /* We don't use got and plt entries for avr. */
452 /* Look through the relocs for a section during the first phase.
453 Since we don't do .gots or .plts, we just need to consider the
454 virtual table relocs for gc. */
457 elf32_avr_check_relocs (abfd
, info
, sec
, relocs
)
459 struct bfd_link_info
*info
;
461 const Elf_Internal_Rela
*relocs
;
463 Elf_Internal_Shdr
*symtab_hdr
;
464 struct elf_link_hash_entry
**sym_hashes
, **sym_hashes_end
;
465 const Elf_Internal_Rela
*rel
;
466 const Elf_Internal_Rela
*rel_end
;
468 if (info
->relocateable
)
471 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
472 sym_hashes
= elf_sym_hashes (abfd
);
473 sym_hashes_end
= sym_hashes
+ symtab_hdr
->sh_size
/sizeof (Elf32_External_Sym
);
474 if (!elf_bad_symtab (abfd
))
475 sym_hashes_end
-= symtab_hdr
->sh_info
;
477 rel_end
= relocs
+ sec
->reloc_count
;
478 for (rel
= relocs
; rel
< rel_end
; rel
++)
480 struct elf_link_hash_entry
*h
;
481 unsigned long r_symndx
;
483 r_symndx
= ELF32_R_SYM (rel
->r_info
);
484 if (r_symndx
< symtab_hdr
->sh_info
)
487 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
493 /* Perform a single relocation. By default we use the standard BFD
494 routines, but a few relocs, we have to do them ourselves. */
496 static bfd_reloc_status_type
497 avr_final_link_relocate (howto
, input_bfd
, input_section
,
498 contents
, rel
, relocation
)
499 reloc_howto_type
* howto
;
501 asection
* input_section
;
503 Elf_Internal_Rela
* rel
;
506 bfd_reloc_status_type r
= bfd_reloc_ok
;
513 contents
+= rel
->r_offset
;
514 srel
= (bfd_signed_vma
) relocation
;
515 srel
+= rel
->r_addend
;
516 srel
-= rel
->r_offset
;
517 srel
-= 2; /* Branch instructions add 2 to the PC... */
518 srel
-= (input_section
->output_section
->vma
+
519 input_section
->output_offset
);
522 return bfd_reloc_outofrange
;
523 if (srel
> ((1 << 7) - 1) || (srel
< - (1 << 7)))
524 return bfd_reloc_overflow
;
525 x
= bfd_get_16 (input_bfd
, contents
);
526 x
= (x
& 0xfc07) | (((srel
>> 1) << 3) & 0x3f8);
527 bfd_put_16 (input_bfd
, x
, contents
);
531 contents
+= rel
->r_offset
;
532 srel
= (bfd_signed_vma
) relocation
;
533 srel
+= rel
->r_addend
;
534 srel
-= rel
->r_offset
;
535 srel
-= 2; /* Branch instructions add 2 to the PC... */
536 srel
-= (input_section
->output_section
->vma
+
537 input_section
->output_offset
);
540 return bfd_reloc_outofrange
;
542 /* AVR addresses commands as words. */
545 /* Check for overflow. */
546 if (srel
< -2048 || srel
> 2047)
548 /* Apply WRAPAROUND if possible. */
549 switch (bfd_get_mach (input_bfd
))
556 return bfd_reloc_overflow
;
560 x
= bfd_get_16 (input_bfd
, contents
);
561 x
= (x
& 0xf000) | (srel
& 0xfff);
562 bfd_put_16 (input_bfd
, x
, contents
);
566 contents
+= rel
->r_offset
;
567 srel
= (bfd_signed_vma
) relocation
+ rel
->r_addend
;
568 x
= bfd_get_16 (input_bfd
, contents
);
569 x
= (x
& 0xf0f0) | (srel
& 0xf) | ((srel
<< 4) & 0xf00);
570 bfd_put_16 (input_bfd
, x
, contents
);
574 contents
+= rel
->r_offset
;
575 srel
= (bfd_signed_vma
) relocation
+ rel
->r_addend
;
576 srel
= (srel
>> 8) & 0xff;
577 x
= bfd_get_16 (input_bfd
, contents
);
578 x
= (x
& 0xf0f0) | (srel
& 0xf) | ((srel
<< 4) & 0xf00);
579 bfd_put_16 (input_bfd
, x
, contents
);
583 contents
+= rel
->r_offset
;
584 srel
= (bfd_signed_vma
) relocation
+ rel
->r_addend
;
585 srel
= (srel
>> 16) & 0xff;
586 x
= bfd_get_16 (input_bfd
, contents
);
587 x
= (x
& 0xf0f0) | (srel
& 0xf) | ((srel
<< 4) & 0xf00);
588 bfd_put_16 (input_bfd
, x
, contents
);
591 case R_AVR_LO8_LDI_NEG
:
592 contents
+= rel
->r_offset
;
593 srel
= (bfd_signed_vma
) relocation
+ rel
->r_addend
;
595 x
= bfd_get_16 (input_bfd
, contents
);
596 x
= (x
& 0xf0f0) | (srel
& 0xf) | ((srel
<< 4) & 0xf00);
597 bfd_put_16 (input_bfd
, x
, contents
);
600 case R_AVR_HI8_LDI_NEG
:
601 contents
+= rel
->r_offset
;
602 srel
= (bfd_signed_vma
) relocation
+ rel
->r_addend
;
604 srel
= (srel
>> 8) & 0xff;
605 x
= bfd_get_16 (input_bfd
, contents
);
606 x
= (x
& 0xf0f0) | (srel
& 0xf) | ((srel
<< 4) & 0xf00);
607 bfd_put_16 (input_bfd
, x
, contents
);
610 case R_AVR_HH8_LDI_NEG
:
611 contents
+= rel
->r_offset
;
612 srel
= (bfd_signed_vma
) relocation
+ rel
->r_addend
;
614 srel
= (srel
>> 16) & 0xff;
615 x
= bfd_get_16 (input_bfd
, contents
);
616 x
= (x
& 0xf0f0) | (srel
& 0xf) | ((srel
<< 4) & 0xf00);
617 bfd_put_16 (input_bfd
, x
, contents
);
620 case R_AVR_LO8_LDI_PM
:
621 contents
+= rel
->r_offset
;
622 srel
= (bfd_signed_vma
) relocation
+ rel
->r_addend
;
624 return bfd_reloc_outofrange
;
626 x
= bfd_get_16 (input_bfd
, contents
);
627 x
= (x
& 0xf0f0) | (srel
& 0xf) | ((srel
<< 4) & 0xf00);
628 bfd_put_16 (input_bfd
, x
, contents
);
631 case R_AVR_HI8_LDI_PM
:
632 contents
+= rel
->r_offset
;
633 srel
= (bfd_signed_vma
) relocation
+ rel
->r_addend
;
635 return bfd_reloc_outofrange
;
637 srel
= (srel
>> 8) & 0xff;
638 x
= bfd_get_16 (input_bfd
, contents
);
639 x
= (x
& 0xf0f0) | (srel
& 0xf) | ((srel
<< 4) & 0xf00);
640 bfd_put_16 (input_bfd
, x
, contents
);
643 case R_AVR_HH8_LDI_PM
:
644 contents
+= rel
->r_offset
;
645 srel
= (bfd_signed_vma
) relocation
+ rel
->r_addend
;
647 return bfd_reloc_outofrange
;
649 srel
= (srel
>> 16) & 0xff;
650 x
= bfd_get_16 (input_bfd
, contents
);
651 x
= (x
& 0xf0f0) | (srel
& 0xf) | ((srel
<< 4) & 0xf00);
652 bfd_put_16 (input_bfd
, x
, contents
);
655 case R_AVR_LO8_LDI_PM_NEG
:
656 contents
+= rel
->r_offset
;
657 srel
= (bfd_signed_vma
) relocation
+ rel
->r_addend
;
660 return bfd_reloc_outofrange
;
662 x
= bfd_get_16 (input_bfd
, contents
);
663 x
= (x
& 0xf0f0) | (srel
& 0xf) | ((srel
<< 4) & 0xf00);
664 bfd_put_16 (input_bfd
, x
, contents
);
667 case R_AVR_HI8_LDI_PM_NEG
:
668 contents
+= rel
->r_offset
;
669 srel
= (bfd_signed_vma
) relocation
+ rel
->r_addend
;
672 return bfd_reloc_outofrange
;
674 srel
= (srel
>> 8) & 0xff;
675 x
= bfd_get_16 (input_bfd
, contents
);
676 x
= (x
& 0xf0f0) | (srel
& 0xf) | ((srel
<< 4) & 0xf00);
677 bfd_put_16 (input_bfd
, x
, contents
);
680 case R_AVR_HH8_LDI_PM_NEG
:
681 contents
+= rel
->r_offset
;
682 srel
= (bfd_signed_vma
) relocation
+ rel
->r_addend
;
685 return bfd_reloc_outofrange
;
687 srel
= (srel
>> 16) & 0xff;
688 x
= bfd_get_16 (input_bfd
, contents
);
689 x
= (x
& 0xf0f0) | (srel
& 0xf) | ((srel
<< 4) & 0xf00);
690 bfd_put_16 (input_bfd
, x
, contents
);
694 contents
+= rel
->r_offset
;
695 srel
= (bfd_signed_vma
) relocation
+ rel
->r_addend
;
697 return bfd_reloc_outofrange
;
699 x
= bfd_get_16 (input_bfd
, contents
);
700 x
|= ((srel
& 0x10000) | ((srel
<< 3) & 0x1f00000)) >> 16;
701 bfd_put_16 (input_bfd
, x
, contents
);
702 bfd_put_16 (input_bfd
, srel
& 0xffff, contents
+2);
706 r
= _bfd_final_link_relocate (howto
, input_bfd
, input_section
,
707 contents
, rel
->r_offset
,
708 relocation
, rel
->r_addend
);
714 /* Relocate an AVR ELF section. */
716 elf32_avr_relocate_section (output_bfd
, info
, input_bfd
, input_section
,
717 contents
, relocs
, local_syms
, local_sections
)
718 bfd
*output_bfd ATTRIBUTE_UNUSED
;
719 struct bfd_link_info
*info
;
721 asection
*input_section
;
723 Elf_Internal_Rela
*relocs
;
724 Elf_Internal_Sym
*local_syms
;
725 asection
**local_sections
;
727 Elf_Internal_Shdr
* symtab_hdr
;
728 struct elf_link_hash_entry
** sym_hashes
;
729 Elf_Internal_Rela
* rel
;
730 Elf_Internal_Rela
* relend
;
732 symtab_hdr
= & elf_tdata (input_bfd
)->symtab_hdr
;
733 sym_hashes
= elf_sym_hashes (input_bfd
);
734 relend
= relocs
+ input_section
->reloc_count
;
736 for (rel
= relocs
; rel
< relend
; rel
++)
738 reloc_howto_type
* howto
;
739 unsigned long r_symndx
;
740 Elf_Internal_Sym
* sym
;
742 struct elf_link_hash_entry
* h
;
744 bfd_reloc_status_type r
;
745 const char * name
= NULL
;
748 r_type
= ELF32_R_TYPE (rel
->r_info
);
749 r_symndx
= ELF32_R_SYM (rel
->r_info
);
751 if (info
->relocateable
)
753 /* This is a relocateable link. We don't have to change
754 anything, unless the reloc is against a section symbol,
755 in which case we have to adjust according to where the
756 section symbol winds up in the output section. */
757 if (r_symndx
< symtab_hdr
->sh_info
)
759 sym
= local_syms
+ r_symndx
;
761 if (ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
763 sec
= local_sections
[r_symndx
];
764 rel
->r_addend
+= sec
->output_offset
+ sym
->st_value
;
771 /* This is a final link. */
772 howto
= elf_avr_howto_table
+ ELF32_R_TYPE (rel
->r_info
);
777 if (r_symndx
< symtab_hdr
->sh_info
)
779 sym
= local_syms
+ r_symndx
;
780 sec
= local_sections
[r_symndx
];
781 relocation
= (sec
->output_section
->vma
785 name
= bfd_elf_string_from_elf_section
786 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
);
787 name
= (name
== NULL
) ? bfd_section_name (input_bfd
, sec
) : name
;
791 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
793 while (h
->root
.type
== bfd_link_hash_indirect
794 || h
->root
.type
== bfd_link_hash_warning
)
795 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
797 name
= h
->root
.root
.string
;
799 if (h
->root
.type
== bfd_link_hash_defined
800 || h
->root
.type
== bfd_link_hash_defweak
)
802 sec
= h
->root
.u
.def
.section
;
803 relocation
= (h
->root
.u
.def
.value
804 + sec
->output_section
->vma
805 + sec
->output_offset
);
807 else if (h
->root
.type
== bfd_link_hash_undefweak
)
813 if (! ((*info
->callbacks
->undefined_symbol
)
814 (info
, h
->root
.root
.string
, input_bfd
,
815 input_section
, rel
->r_offset
, true)))
821 r
= avr_final_link_relocate (howto
, input_bfd
, input_section
,
822 contents
, rel
, relocation
);
824 if (r
!= bfd_reloc_ok
)
826 const char * msg
= (const char *) NULL
;
830 case bfd_reloc_overflow
:
831 r
= info
->callbacks
->reloc_overflow
832 (info
, name
, howto
->name
, (bfd_vma
) 0,
833 input_bfd
, input_section
, rel
->r_offset
);
836 case bfd_reloc_undefined
:
837 r
= info
->callbacks
->undefined_symbol
838 (info
, name
, input_bfd
, input_section
, rel
->r_offset
, true);
841 case bfd_reloc_outofrange
:
842 msg
= _("internal error: out of range error");
845 case bfd_reloc_notsupported
:
846 msg
= _("internal error: unsupported relocation error");
849 case bfd_reloc_dangerous
:
850 msg
= _("internal error: dangerous relocation");
854 msg
= _("internal error: unknown error");
859 r
= info
->callbacks
->warning
860 (info
, msg
, name
, input_bfd
, input_section
, rel
->r_offset
);
870 /* The final processing done just before writing out a AVR ELF object
871 file. This gets the AVR architecture right based on the machine
875 bfd_elf_avr_final_write_processing (abfd
, linker
)
877 boolean linker ATTRIBUTE_UNUSED
;
881 switch (bfd_get_mach (abfd
))
885 val
= E_AVR_MACH_AVR2
;
889 val
= E_AVR_MACH_AVR1
;
893 val
= E_AVR_MACH_AVR3
;
897 val
= E_AVR_MACH_AVR4
;
901 val
= E_AVR_MACH_AVR5
;
905 elf_elfheader (abfd
)->e_machine
= EM_AVR
;
906 elf_elfheader (abfd
)->e_flags
&= ~ EF_AVR_MACH
;
907 elf_elfheader (abfd
)->e_flags
|= val
;
910 /* Set the right machine number. */
913 elf32_avr_object_p (abfd
)
916 int e_set
= bfd_mach_avr2
;
917 if (elf_elfheader (abfd
)->e_machine
== EM_AVR
)
919 int e_mach
= elf_elfheader (abfd
)->e_flags
& EF_AVR_MACH
;
923 case E_AVR_MACH_AVR2
:
924 e_set
= bfd_mach_avr2
;
927 case E_AVR_MACH_AVR1
:
928 e_set
= bfd_mach_avr1
;
931 case E_AVR_MACH_AVR3
:
932 e_set
= bfd_mach_avr3
;
935 case E_AVR_MACH_AVR4
:
936 e_set
= bfd_mach_avr4
;
939 case E_AVR_MACH_AVR5
:
940 e_set
= bfd_mach_avr5
;
944 return bfd_default_set_arch_mach (abfd
, bfd_arch_avr
,
948 #define ELF_ARCH bfd_arch_avr
949 #define ELF_MACHINE_CODE EM_AVR
950 #define ELF_MAXPAGESIZE 1
952 #define TARGET_LITTLE_SYM bfd_elf32_avr_vec
953 #define TARGET_LITTLE_NAME "elf32-avr"
955 #define elf_info_to_howto avr_info_to_howto_rela
956 #define elf_info_to_howto_rel NULL
957 #define elf_backend_relocate_section elf32_avr_relocate_section
958 #define elf_backend_gc_mark_hook elf32_avr_gc_mark_hook
959 #define elf_backend_gc_sweep_hook elf32_avr_gc_sweep_hook
960 #define elf_backend_check_relocs elf32_avr_check_relocs
961 #define elf_backend_can_gc_sections 1
962 #define elf_backend_final_write_processing \
963 bfd_elf_avr_final_write_processing
964 #define elf_backend_object_p elf32_avr_object_p
966 #include "elf32-target.h"