binutils-gdb/bfd/cpu-arm.c

152 lines
4.8 KiB
C
Raw Normal View History

1999-05-03 09:29:11 +02:00
/* BFD support for the ARM processor
2002-02-14 17:24:20 +01:00
Copyright 1994, 1997, 1999, 2000, 2002 Free Software Foundation, Inc.
1999-05-03 09:29:11 +02:00
Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
2002-02-14 17:24:20 +01:00
This file is part of BFD, the Binary File Descriptor library.
1999-05-03 09:29:11 +02:00
2002-02-14 17:24:20 +01:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
1999-05-03 09:29:11 +02:00
2002-02-14 17:24:20 +01:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
1999-05-03 09:29:11 +02:00
2002-02-14 17:24:20 +01:00
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
1999-05-03 09:29:11 +02:00
#include "bfd.h"
#include "sysdep.h"
#include "libbfd.h"
2002-02-14 17:24:20 +01:00
static const bfd_arch_info_type * compatible
1999-05-03 09:29:11 +02:00
PARAMS ((const bfd_arch_info_type *, const bfd_arch_info_type *));
static bfd_boolean scan
2002-02-14 17:24:20 +01:00
PARAMS ((const struct bfd_arch_info *, const char *));
1999-05-03 09:29:11 +02:00
/* This routine is provided two arch_infos and works out which ARM
machine which would be compatible with both and returns a pointer
2002-02-14 17:24:20 +01:00
to its info structure. */
1999-05-03 09:29:11 +02:00
static const bfd_arch_info_type *
compatible (a,b)
const bfd_arch_info_type * a;
const bfd_arch_info_type * b;
{
2002-02-14 17:24:20 +01:00
/* If a & b are for different architecture we can do nothing. */
1999-05-03 09:29:11 +02:00
if (a->arch != b->arch)
return NULL;
2002-02-14 17:24:20 +01:00
/* If a & b are for the same machine then all is well. */
1999-05-03 09:29:11 +02:00
if (a->mach == b->mach)
return a;
2002-02-14 17:24:20 +01:00
/* Otherwise if either a or b is the 'default' machine
then it can be polymorphed into the other. */
1999-05-03 09:29:11 +02:00
if (a->the_default)
return b;
1999-05-03 09:29:11 +02:00
if (b->the_default)
return a;
2002-02-14 17:24:20 +01:00
/* So far all newer ARM architecture cores are
supersets of previous cores. */
1999-05-03 09:29:11 +02:00
if (a->mach < b->mach)
return b;
else if (a->mach > b->mach)
return a;
2002-02-14 17:24:20 +01:00
/* Never reached! */
1999-05-03 09:29:11 +02:00
return NULL;
}
static struct
{
2002-02-14 17:24:20 +01:00
unsigned int mach;
char * name;
1999-05-03 09:29:11 +02:00
}
processors[] =
{
{ bfd_mach_arm_2, "arm2" },
{ bfd_mach_arm_2a, "arm250" },
{ bfd_mach_arm_2a, "arm3" },
{ bfd_mach_arm_3, "arm6" },
{ bfd_mach_arm_3, "arm60" },
{ bfd_mach_arm_3, "arm600" },
{ bfd_mach_arm_3, "arm610" },
{ bfd_mach_arm_3, "arm7" },
{ bfd_mach_arm_3, "arm710" },
{ bfd_mach_arm_3, "arm7500" },
{ bfd_mach_arm_3, "arm7d" },
{ bfd_mach_arm_3, "arm7di" },
{ bfd_mach_arm_3M, "arm7dm" },
{ bfd_mach_arm_3M, "arm7dmi" },
1999-07-05 09:28:24 +02:00
{ bfd_mach_arm_4T, "arm7tdmi" },
1999-05-03 09:29:11 +02:00
{ bfd_mach_arm_4, "arm8" },
{ bfd_mach_arm_4, "arm810" },
1999-07-05 09:28:24 +02:00
{ bfd_mach_arm_4, "arm9" },
{ bfd_mach_arm_4, "arm920" },
{ bfd_mach_arm_4T, "arm920t" },
{ bfd_mach_arm_4T, "arm9tdmi" },
1999-05-03 09:29:11 +02:00
{ bfd_mach_arm_4, "sa1" },
1999-07-05 09:28:24 +02:00
{ bfd_mach_arm_4, "strongarm"},
{ bfd_mach_arm_4, "strongarm110" },
{ bfd_mach_arm_4, "strongarm1100" },
{ bfd_mach_arm_XScale, "xscale" },
2003-03-25 21:56:01 +01:00
{ bfd_mach_arm_ep9312, "ep9312" },
{ bfd_mach_arm_iWMMXt, "iwmmxt" }
1999-05-03 09:29:11 +02:00
};
static bfd_boolean
1999-05-03 09:29:11 +02:00
scan (info, string)
const struct bfd_arch_info * info;
const char * string;
{
int i;
2002-02-14 17:24:20 +01:00
/* First test for an exact match. */
1999-05-03 09:29:11 +02:00
if (strcasecmp (string, info->printable_name) == 0)
return TRUE;
1999-05-03 09:29:11 +02:00
2002-02-14 17:24:20 +01:00
/* Next check for a processor name instead of an Architecture name. */
1999-05-03 09:29:11 +02:00
for (i = sizeof (processors) / sizeof (processors[0]); i--;)
{
2002-02-14 17:24:20 +01:00
if (strcasecmp (string, processors [i].name) == 0)
1999-05-03 09:29:11 +02:00
break;
}
2002-02-14 17:24:20 +01:00
if (i != -1 && info->mach == processors [i].mach)
return TRUE;
1999-05-03 09:29:11 +02:00
2002-02-14 17:24:20 +01:00
/* Finally check for the default architecture. */
1999-05-03 09:29:11 +02:00
if (strcasecmp (string, "arm") == 0)
return info->the_default;
return FALSE;
1999-05-03 09:29:11 +02:00
}
#define N(number, print, default, next) \
{ 32, 32, 8, bfd_arch_arm, number, "arm", print, 4, default, compatible, scan, next }
static const bfd_arch_info_type arch_info_struct[] =
{
N (bfd_mach_arm_2, "armv2", FALSE, & arch_info_struct[1]),
N (bfd_mach_arm_2a, "armv2a", FALSE, & arch_info_struct[2]),
N (bfd_mach_arm_3, "armv3", FALSE, & arch_info_struct[3]),
N (bfd_mach_arm_3M, "armv3m", FALSE, & arch_info_struct[4]),
N (bfd_mach_arm_4, "armv4", FALSE, & arch_info_struct[5]),
N (bfd_mach_arm_4T, "armv4t", FALSE, & arch_info_struct[6]),
N (bfd_mach_arm_5, "armv5", FALSE, & arch_info_struct[7]),
N (bfd_mach_arm_5T, "armv5t", FALSE, & arch_info_struct[8]),
N (bfd_mach_arm_5TE, "armv5te", FALSE, & arch_info_struct[9]),
N (bfd_mach_arm_XScale, "xscale", FALSE, & arch_info_struct[10]),
2003-03-25 21:56:01 +01:00
N (bfd_mach_arm_ep9312, "ep9312", FALSE, & arch_info_struct[11]),
N (bfd_mach_arm_iWMMXt,"iwmmxt", FALSE, NULL)
1999-05-03 09:29:11 +02:00
};
const bfd_arch_info_type bfd_arm_arch =
N (0, "arm", TRUE, & arch_info_struct[0]);