1 /* ARC-specific support for 32-bit ELF
2 Copyright 1994, 1995, 1997, 1999, 2001 Free Software Foundation, Inc.
3 Contributed by Doug Evans (dje@cygnus.com).
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. */
26 #include "libiberty.h"
28 static reloc_howto_type
*bfd_elf32_bfd_reloc_type_lookup
29 PARAMS ((bfd
*abfd
, bfd_reloc_code_real_type code
));
30 static void arc_info_to_howto_rel
31 PARAMS ((bfd
*, arelent
*, Elf32_Internal_Rel
*));
32 static boolean arc_elf_object_p
34 static void arc_elf_final_write_processing
35 PARAMS ((bfd
*, boolean
));
36 static bfd_reloc_status_type arc_elf_b22_pcrel
37 PARAMS ((bfd
*, arelent
*, asymbol
*, PTR
, asection
*, bfd
*, char **));
39 /* Try to minimize the amount of space occupied by relocation tables
40 on the ROM (not that the ROM won't be swamped by other ELF overhead). */
44 static reloc_howto_type elf_arc_howto_table
[] =
46 /* This reloc does nothing. */
47 HOWTO (R_ARC_NONE
, /* type */
49 2, /* size (0 = byte, 1 = short, 2 = long) */
51 false, /* pc_relative */
53 complain_overflow_bitfield
, /* complain_on_overflow */
54 bfd_elf_generic_reloc
, /* special_function */
55 "R_ARC_NONE", /* name */
56 true, /* partial_inplace */
59 false), /* pcrel_offset */
61 /* A standard 32 bit relocation. */
62 HOWTO (R_ARC_32
, /* type */
64 2, /* size (0 = byte, 1 = short, 2 = long) */
66 false, /* pc_relative */
68 complain_overflow_bitfield
, /* complain_on_overflow */
69 bfd_elf_generic_reloc
, /* special_function */
70 "R_ARC_32", /* name */
71 true, /* partial_inplace */
72 0xffffffff, /* src_mask */
73 0xffffffff, /* dst_mask */
74 false), /* pcrel_offset */
76 /* A 26 bit absolute branch, right shifted by 2. */
77 HOWTO (R_ARC_B26
, /* type */
79 2, /* size (0 = byte, 1 = short, 2 = long) */
81 false, /* pc_relative */
83 complain_overflow_bitfield
, /* complain_on_overflow */
84 bfd_elf_generic_reloc
, /* special_function */
85 "R_ARC_B26", /* name */
86 true, /* partial_inplace */
87 0x00ffffff, /* src_mask */
88 0x00ffffff, /* dst_mask */
89 false), /* pcrel_offset */
91 /* A relative 22 bit branch; bits 21-2 are stored in bits 26-7. */
92 HOWTO (R_ARC_B22_PCREL
, /* type */
94 2, /* size (0 = byte, 1 = short, 2 = long) */
96 true, /* pc_relative */
98 complain_overflow_signed
, /* complain_on_overflow */
99 arc_elf_b22_pcrel
, /* special_function */
100 "R_ARC_B22_PCREL", /* name */
101 true, /* partial_inplace */
102 0x07ffff80, /* src_mask */
103 0x07ffff80, /* dst_mask */
104 false), /* pcrel_offset */
107 /* Map BFD reloc types to ARC ELF reloc types. */
111 bfd_reloc_code_real_type bfd_reloc_val
;
112 unsigned char elf_reloc_val
;
115 static const struct arc_reloc_map arc_reloc_map
[] =
117 { BFD_RELOC_NONE
, R_ARC_NONE
, },
118 { BFD_RELOC_32
, R_ARC_32
},
119 { BFD_RELOC_CTOR
, R_ARC_32
},
120 { BFD_RELOC_ARC_B26
, R_ARC_B26
},
121 { BFD_RELOC_ARC_B22_PCREL
, R_ARC_B22_PCREL
},
124 static reloc_howto_type
*
125 bfd_elf32_bfd_reloc_type_lookup (abfd
, code
)
126 bfd
*abfd ATTRIBUTE_UNUSED
;
127 bfd_reloc_code_real_type code
;
131 for (i
= ARRAY_SIZE (arc_reloc_map
); i
--;)
132 if (arc_reloc_map
[i
].bfd_reloc_val
== code
)
133 return elf_arc_howto_table
+ arc_reloc_map
[i
].elf_reloc_val
;
138 /* Set the howto pointer for an ARC ELF reloc. */
141 arc_info_to_howto_rel (abfd
, cache_ptr
, dst
)
142 bfd
*abfd ATTRIBUTE_UNUSED
;
144 Elf32_Internal_Rel
*dst
;
148 r_type
= ELF32_R_TYPE (dst
->r_info
);
149 BFD_ASSERT (r_type
< (unsigned int) R_ARC_max
);
150 cache_ptr
->howto
= &elf_arc_howto_table
[r_type
];
153 /* Set the right machine number for an ARC ELF file. */
156 arc_elf_object_p (abfd
)
159 unsigned int mach
= bfd_mach_arc_6
;
161 if (elf_elfheader(abfd
)->e_machine
== EM_ARC
)
163 unsigned long arch
= elf_elfheader (abfd
)->e_flags
& EF_ARC_MACH
;
167 case E_ARC_MACH_ARC5
:
168 mach
= bfd_mach_arc_5
;
171 case E_ARC_MACH_ARC6
:
172 mach
= bfd_mach_arc_6
;
174 case E_ARC_MACH_ARC7
:
175 mach
= bfd_mach_arc_7
;
177 case E_ARC_MACH_ARC8
:
178 mach
= bfd_mach_arc_8
;
182 return bfd_default_set_arch_mach (abfd
, bfd_arch_arc
, mach
);
185 /* The final processing done just before writing out an ARC ELF object file.
186 This gets the ARC architecture right based on the machine number. */
189 arc_elf_final_write_processing (abfd
, linker
)
191 boolean linker ATTRIBUTE_UNUSED
;
195 switch (bfd_get_mach (abfd
))
198 val
= E_ARC_MACH_ARC5
;
202 val
= E_ARC_MACH_ARC6
;
205 val
= E_ARC_MACH_ARC7
;
208 val
= E_ARC_MACH_ARC8
;
211 elf_elfheader (abfd
)->e_flags
&=~ EF_ARC_MACH
;
212 elf_elfheader (abfd
)->e_flags
|= val
;
215 bfd_reloc_status_type
216 arc_elf_b22_pcrel (abfd
, reloc_entry
, symbol
, data
, input_section
,
217 output_bfd
, error_message
)
219 arelent
* reloc_entry
;
222 asection
* input_section
;
224 char ** error_message
;
226 /* If linking, back up the final symbol address by the address of the
227 reloc. This cannot be accomplished by setting the pcrel_offset
228 field to true, as bfd_install_relocation will detect this and refuse
229 to install the offset in the first place, but bfd_perform_relocation
230 will still insist on removing it. */
231 if (output_bfd
== (bfd
*) NULL
)
232 reloc_entry
->addend
-= reloc_entry
->address
;
234 /* Fall through to the default elf reloc handler. */
235 return bfd_elf_generic_reloc (abfd
, reloc_entry
, symbol
, data
,
236 input_section
, output_bfd
, error_message
);
239 #define TARGET_LITTLE_SYM bfd_elf32_littlearc_vec
240 #define TARGET_LITTLE_NAME "elf32-littlearc"
241 #define TARGET_BIG_SYM bfd_elf32_bigarc_vec
242 #define TARGET_BIG_NAME "elf32-bigarc"
243 #define ELF_ARCH bfd_arch_arc
244 #define ELF_MACHINE_CODE EM_ARC
245 #define ELF_MAXPAGESIZE 0x1000
247 #define elf_info_to_howto 0
248 #define elf_info_to_howto_rel arc_info_to_howto_rel
249 #define elf_backend_object_p arc_elf_object_p
250 #define elf_backend_final_write_processing arc_elf_final_write_processing
252 #include "elf32-target.h"