* sh.h (R_SH_SWITCH8, R_SH_GNU_VTINHERIT, R_SH_GNU_VTENTRY,
[binutils.git] / bfd / cpu-arm.c
blob9ef527cb94360058da7f3a79e31fc43c6342c991
1 /* BFD support for the ARM processor
2 Copyright 1994, 1997, 1999, 2000, 2002, 2003 Free Software Foundation, Inc.
3 Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
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. */
21 #include "bfd.h"
22 #include "sysdep.h"
23 #include "libbfd.h"
24 #include "libiberty.h"
26 static const bfd_arch_info_type * compatible
27 PARAMS ((const bfd_arch_info_type *, const bfd_arch_info_type *));
28 static bfd_boolean scan
29 PARAMS ((const struct bfd_arch_info *, const char *));
30 static bfd_boolean arm_check_note
31 PARAMS ((bfd *, char *, bfd_size_type, const char *, char **));
33 /* This routine is provided two arch_infos and works out which ARM
34 machine which would be compatible with both and returns a pointer
35 to its info structure. */
37 static const bfd_arch_info_type *
38 compatible (a,b)
39 const bfd_arch_info_type * a;
40 const bfd_arch_info_type * b;
42 /* If a & b are for different architecture we can do nothing. */
43 if (a->arch != b->arch)
44 return NULL;
46 /* If a & b are for the same machine then all is well. */
47 if (a->mach == b->mach)
48 return a;
50 /* Otherwise if either a or b is the 'default' machine
51 then it can be polymorphed into the other. */
52 if (a->the_default)
53 return b;
55 if (b->the_default)
56 return a;
58 /* So far all newer ARM architecture cores are
59 supersets of previous cores. */
60 if (a->mach < b->mach)
61 return b;
62 else if (a->mach > b->mach)
63 return a;
65 /* Never reached! */
66 return NULL;
69 static struct
71 unsigned int mach;
72 char * name;
74 processors[] =
76 { bfd_mach_arm_2, "arm2" },
77 { bfd_mach_arm_2a, "arm250" },
78 { bfd_mach_arm_2a, "arm3" },
79 { bfd_mach_arm_3, "arm6" },
80 { bfd_mach_arm_3, "arm60" },
81 { bfd_mach_arm_3, "arm600" },
82 { bfd_mach_arm_3, "arm610" },
83 { bfd_mach_arm_3, "arm7" },
84 { bfd_mach_arm_3, "arm710" },
85 { bfd_mach_arm_3, "arm7500" },
86 { bfd_mach_arm_3, "arm7d" },
87 { bfd_mach_arm_3, "arm7di" },
88 { bfd_mach_arm_3M, "arm7dm" },
89 { bfd_mach_arm_3M, "arm7dmi" },
90 { bfd_mach_arm_4T, "arm7tdmi" },
91 { bfd_mach_arm_4, "arm8" },
92 { bfd_mach_arm_4, "arm810" },
93 { bfd_mach_arm_4, "arm9" },
94 { bfd_mach_arm_4, "arm920" },
95 { bfd_mach_arm_4T, "arm920t" },
96 { bfd_mach_arm_4T, "arm9tdmi" },
97 { bfd_mach_arm_4, "sa1" },
98 { bfd_mach_arm_4, "strongarm"},
99 { bfd_mach_arm_4, "strongarm110" },
100 { bfd_mach_arm_4, "strongarm1100" },
101 { bfd_mach_arm_XScale, "xscale" },
102 { bfd_mach_arm_ep9312, "ep9312" },
103 { bfd_mach_arm_iWMMXt, "iwmmxt" }
106 static bfd_boolean
107 scan (info, string)
108 const struct bfd_arch_info * info;
109 const char * string;
111 int i;
113 /* First test for an exact match. */
114 if (strcasecmp (string, info->printable_name) == 0)
115 return TRUE;
117 /* Next check for a processor name instead of an Architecture name. */
118 for (i = sizeof (processors) / sizeof (processors[0]); i--;)
120 if (strcasecmp (string, processors [i].name) == 0)
121 break;
124 if (i != -1 && info->mach == processors [i].mach)
125 return TRUE;
127 /* Finally check for the default architecture. */
128 if (strcasecmp (string, "arm") == 0)
129 return info->the_default;
131 return FALSE;
134 #define N(number, print, default, next) \
135 { 32, 32, 8, bfd_arch_arm, number, "arm", print, 4, default, compatible, scan, next }
137 static const bfd_arch_info_type arch_info_struct[] =
139 N (bfd_mach_arm_2, "armv2", FALSE, & arch_info_struct[1]),
140 N (bfd_mach_arm_2a, "armv2a", FALSE, & arch_info_struct[2]),
141 N (bfd_mach_arm_3, "armv3", FALSE, & arch_info_struct[3]),
142 N (bfd_mach_arm_3M, "armv3m", FALSE, & arch_info_struct[4]),
143 N (bfd_mach_arm_4, "armv4", FALSE, & arch_info_struct[5]),
144 N (bfd_mach_arm_4T, "armv4t", FALSE, & arch_info_struct[6]),
145 N (bfd_mach_arm_5, "armv5", FALSE, & arch_info_struct[7]),
146 N (bfd_mach_arm_5T, "armv5t", FALSE, & arch_info_struct[8]),
147 N (bfd_mach_arm_5TE, "armv5te", FALSE, & arch_info_struct[9]),
148 N (bfd_mach_arm_XScale, "xscale", FALSE, & arch_info_struct[10]),
149 N (bfd_mach_arm_ep9312, "ep9312", FALSE, & arch_info_struct[11]),
150 N (bfd_mach_arm_iWMMXt,"iwmmxt", FALSE, NULL)
153 const bfd_arch_info_type bfd_arm_arch =
154 N (0, "arm", TRUE, & arch_info_struct[0]);
156 /* Support functions used by both the COFF and ELF versions of the ARM port. */
158 /* Handle the mergeing of the 'machine' settings of input file IBFD
159 and an output file OBFD. These values actually represent the
160 different possible ARM architecture variants.
161 Returns TRUE if they were merged successfully or FALSE otherwise. */
163 bfd_boolean
164 bfd_arm_merge_machines (ibfd, obfd)
165 bfd * ibfd;
166 bfd * obfd;
168 unsigned int in = bfd_get_mach (ibfd);
169 unsigned int out = bfd_get_mach (obfd);
171 /* If the output architecture is unknown, we now have a value to set. */
172 if (out == bfd_mach_arm_unknown)
173 bfd_set_arch_mach (obfd, bfd_arch_arm, in);
175 /* If the input architecure is unknown,
176 then so must be the output architecture. */
177 else if (in == bfd_mach_arm_unknown)
178 /* FIXME: We ought to have some way to
179 override this on the command line. */
180 bfd_set_arch_mach (obfd, bfd_arch_arm, bfd_mach_arm_unknown);
182 /* If they are the same then nothing needs to be done. */
183 else if (out == in)
186 /* Otherwise the general principle that a earlier architecture can be
187 linked with a later architecure to produce a binary that will execute
188 on the later architecture.
190 We fail however if we attempt to link a Cirrus EP9312 binary with an
191 Intel XScale binary, since these architecture have co-processors which
192 will not both be present on the same physical hardware. */
193 else if (in == bfd_mach_arm_ep9312
194 && (out == bfd_mach_arm_XScale || out == bfd_mach_arm_iWMMXt))
196 _bfd_error_handler (_("\
197 ERROR: %s is compiled for the EP9312, whereas %s is compiled for XScale"),
198 bfd_archive_filename (ibfd),
199 bfd_get_filename (obfd));
200 bfd_set_error (bfd_error_wrong_format);
201 return FALSE;
203 else if (out == bfd_mach_arm_ep9312
204 && (in == bfd_mach_arm_XScale || in == bfd_mach_arm_iWMMXt))
206 _bfd_error_handler (_("\
207 ERROR: %s is compiled for the EP9312, whereas %s is compiled for XScale"),
208 bfd_archive_filename (obfd),
209 bfd_get_filename (ibfd));
210 bfd_set_error (bfd_error_wrong_format);
211 return FALSE;
213 else if (in > out)
214 bfd_set_arch_mach (obfd, bfd_arch_arm, in);
215 /* else
216 Nothing to do. */
218 return TRUE;
221 typedef struct
223 unsigned char namesz[4]; /* Size of entry's owner string. */
224 unsigned char descsz[4]; /* Size of the note descriptor. */
225 unsigned char type[4]; /* Interpretation of the descriptor. */
226 char name[1]; /* Start of the name+desc data. */
227 } arm_Note;
229 static bfd_boolean
230 arm_check_note (abfd, buffer, buffer_size, expected_name, description_return)
231 bfd * abfd;
232 char * buffer;
233 bfd_size_type buffer_size;
234 const char * expected_name;
235 char ** description_return;
237 unsigned long namesz;
238 unsigned long descsz;
239 unsigned long type;
240 char * descr;
242 if (buffer_size < offsetof (arm_Note, name))
243 return FALSE;
245 /* We have to extract the values this way to allow for a
246 host whose endian-ness is different from the target. */
247 namesz = bfd_get_32 (abfd, buffer);
248 descsz = bfd_get_32 (abfd, buffer + offsetof (arm_Note, descsz));
249 type = bfd_get_32 (abfd, buffer + offsetof (arm_Note, type));
250 descr = buffer + offsetof (arm_Note, name);
252 /* Check for buffer overflow. */
253 if (namesz + descsz + offsetof (arm_Note, name) > buffer_size)
254 return FALSE;
256 if (expected_name == NULL)
258 if (namesz != 0)
259 return FALSE;
261 else
263 if (namesz != ((strlen (expected_name) + 1 + 3) & ~3))
264 return FALSE;
266 if (strcmp (descr, expected_name) != 0)
267 return FALSE;
269 descr += (namesz + 3) & ~3;
272 /* FIXME: We should probably check the type as well. */
274 if (description_return != NULL)
275 * description_return = descr;
277 return TRUE;
280 #define NOTE_ARCH_STRING "arch: "
282 bfd_boolean
283 bfd_arm_update_notes (abfd, note_section)
284 bfd * abfd;
285 const char * note_section;
287 asection * arm_arch_section;
288 bfd_size_type buffer_size;
289 char * buffer;
290 char * arch_string;
291 char * expected;
293 /* Look for a note section. If one is present check the architecture
294 string encoded in it, and set it to the current architecture if it is
295 different. */
296 arm_arch_section = bfd_get_section_by_name (abfd, note_section);
298 if (arm_arch_section == NULL)
299 return TRUE;
301 buffer_size = arm_arch_section->_raw_size;
302 if (buffer_size == 0)
303 return FALSE;
305 buffer = bfd_malloc (buffer_size);
306 if (buffer == NULL)
307 return FALSE;
309 if (! bfd_get_section_contents (abfd, arm_arch_section, buffer,
310 (file_ptr) 0, buffer_size))
311 goto FAIL;
313 /* Parse the note. */
314 if (! arm_check_note (abfd, buffer, buffer_size, NOTE_ARCH_STRING, & arch_string))
315 goto FAIL;
317 /* Check the architecture in the note against the architecture of the bfd. */
318 switch (bfd_get_mach (abfd))
320 default:
321 case bfd_mach_arm_unknown: expected = "unknown"; break;
322 case bfd_mach_arm_2: expected = "armv2"; break;
323 case bfd_mach_arm_2a: expected = "armv2a"; break;
324 case bfd_mach_arm_3: expected = "armv3"; break;
325 case bfd_mach_arm_3M: expected = "armv3M"; break;
326 case bfd_mach_arm_4: expected = "armv4"; break;
327 case bfd_mach_arm_4T: expected = "armv4t"; break;
328 case bfd_mach_arm_5: expected = "armv5"; break;
329 case bfd_mach_arm_5T: expected = "armv5t"; break;
330 case bfd_mach_arm_5TE: expected = "armv5te"; break;
331 case bfd_mach_arm_XScale: expected = "XScale"; break;
332 case bfd_mach_arm_ep9312: expected = "ep9312"; break;
333 case bfd_mach_arm_iWMMXt: expected = "iWMMXt"; break;
336 if (strcmp (arch_string, expected) != 0)
338 strcpy (buffer + offsetof (arm_Note, name) + ((strlen (NOTE_ARCH_STRING) + 3) & ~3), expected);
340 if (! bfd_set_section_contents (abfd, arm_arch_section, buffer,
341 (file_ptr) 0, buffer_size))
343 (*_bfd_error_handler)
344 (_("warning: unable to update contents of %s section in %s"),
345 note_section, bfd_get_filename (abfd));
346 goto FAIL;
350 free (buffer);
351 return TRUE;
353 FAIL:
354 free (buffer);
355 return FALSE;
359 static struct
361 const char * string;
362 unsigned int mach;
364 architectures[] =
366 { "armv2", bfd_mach_arm_2 },
367 { "armv2a", bfd_mach_arm_2a },
368 { "armv3", bfd_mach_arm_3 },
369 { "armv3M", bfd_mach_arm_3M },
370 { "armv4", bfd_mach_arm_4 },
371 { "armv4t", bfd_mach_arm_4T },
372 { "armv5", bfd_mach_arm_5 },
373 { "armv5t", bfd_mach_arm_5T },
374 { "armv5te", bfd_mach_arm_5TE },
375 { "XScale", bfd_mach_arm_XScale },
376 { "ep9312", bfd_mach_arm_ep9312 },
377 { "iWMMXt", bfd_mach_arm_iWMMXt }
380 /* Extract the machine number stored in a note section. */
381 unsigned int
382 bfd_arm_get_mach_from_notes (abfd, note_section)
383 bfd * abfd;
384 const char * note_section;
386 asection * arm_arch_section;
387 bfd_size_type buffer_size;
388 char * buffer;
389 char * arch_string;
390 int i;
392 /* Look for a note section. If one is present check the architecture
393 string encoded in it, and set it to the current architecture if it is
394 different. */
395 arm_arch_section = bfd_get_section_by_name (abfd, note_section);
397 if (arm_arch_section == NULL)
398 return bfd_mach_arm_unknown;
400 buffer_size = arm_arch_section->_raw_size;
401 if (buffer_size == 0)
402 return bfd_mach_arm_unknown;
404 buffer = bfd_malloc (buffer_size);
405 if (buffer == NULL)
406 return bfd_mach_arm_unknown;
408 if (! bfd_get_section_contents (abfd, arm_arch_section, buffer,
409 (file_ptr) 0, buffer_size))
410 goto FAIL;
412 /* Parse the note. */
413 if (! arm_check_note (abfd, buffer, buffer_size, NOTE_ARCH_STRING, & arch_string))
414 goto FAIL;
416 /* Interpret the architecture string. */
417 for (i = ARRAY_SIZE (architectures); i--;)
418 if (strcmp (arch_string, architectures[i].string) == 0)
420 free (buffer);
421 return architectures[i].mach;
424 FAIL:
425 free (buffer);
426 return bfd_mach_arm_unknown;