2003-04-15 10:51:55 +02:00
|
|
|
/* BFD library support routines for the Renesas H8/300 architecture.
|
|
|
|
Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 2000, 2001, 2002, 2003
|
2001-03-08 22:04:02 +01:00
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
Hacked by Steve Chamberlain of Cygnus Support.
|
|
|
|
|
2003-04-15 10:51:55 +02:00
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2003-04-15 10:51:55 +02: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
|
|
|
|
2003-04-15 10:51:55 +02: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
|
|
|
|
2003-04-15 10:51:55 +02: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-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean h8300_scan
|
2001-08-29 19:23:16 +02:00
|
|
|
PARAMS ((const struct bfd_arch_info *, const char *));
|
|
|
|
static const bfd_arch_info_type * compatible
|
|
|
|
PARAMS ((const bfd_arch_info_type *, const bfd_arch_info_type *));
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
h8300_scan (info, string)
|
|
|
|
const struct bfd_arch_info *info;
|
|
|
|
const char *string;
|
|
|
|
{
|
|
|
|
if (*string != 'h' && *string != 'H')
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
string++;
|
|
|
|
if (*string != '8')
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
string++;
|
|
|
|
if (*string == '/')
|
|
|
|
string++;
|
|
|
|
|
|
|
|
if (*string != '3')
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
string++;
|
|
|
|
if (*string != '0')
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
string++;
|
|
|
|
if (*string != '0')
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
string++;
|
|
|
|
if (*string == '-')
|
|
|
|
string++;
|
2001-08-29 19:23:16 +02:00
|
|
|
|
|
|
|
/* In ELF linker scripts, we typically express the architecture/machine
|
|
|
|
as architecture:machine.
|
|
|
|
|
|
|
|
So if we've matched so far and encounter a colon, try to match the
|
|
|
|
string following the colon. */
|
|
|
|
if (*string == ':')
|
|
|
|
{
|
|
|
|
string++;
|
2001-08-29 20:45:18 +02:00
|
|
|
return h8300_scan (info, string);
|
2001-08-29 19:23:16 +02:00
|
|
|
}
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if (*string == 'h' || *string == 'H')
|
|
|
|
{
|
2003-04-24 14:36:08 +02:00
|
|
|
string++;
|
|
|
|
if (*string == 'n' || *string == 'N')
|
|
|
|
return (info->mach == bfd_mach_h8300hn);
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
return (info->mach == bfd_mach_h8300h);
|
|
|
|
}
|
|
|
|
else if (*string == 's' || *string == 'S')
|
|
|
|
{
|
2003-04-24 14:36:08 +02:00
|
|
|
string++;
|
|
|
|
if (*string == 'n' || *string == 'N')
|
|
|
|
return (info->mach == bfd_mach_h8300sn);
|
|
|
|
|
2003-05-17 01:39:24 +02:00
|
|
|
if (*string == 'x' || *string == 'X')
|
2003-06-10 09:09:31 +02:00
|
|
|
{
|
|
|
|
string++;
|
|
|
|
if (*string == 'n' || *string == 'N')
|
|
|
|
return (info->mach == bfd_mach_h8300sxn);
|
|
|
|
|
|
|
|
return (info->mach == bfd_mach_h8300sx);
|
|
|
|
}
|
2003-05-17 01:39:24 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
return (info->mach == bfd_mach_h8300s);
|
|
|
|
}
|
|
|
|
else
|
2003-04-24 14:36:08 +02:00
|
|
|
return info->mach == bfd_mach_h8300;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2000-06-27 03:31:59 +02:00
|
|
|
/* This routine is provided two arch_infos and works out the machine
|
|
|
|
which would be compatible with both and returns a pointer to its
|
|
|
|
info structure. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
static const bfd_arch_info_type *
|
|
|
|
compatible (in, out)
|
2000-06-27 03:31:59 +02:00
|
|
|
const bfd_arch_info_type *in;
|
|
|
|
const bfd_arch_info_type *out;
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
/* It's really not a good idea to mix and match modes. */
|
2002-03-13 08:30:45 +01:00
|
|
|
if (in->arch != out->arch || in->mach != out->mach)
|
1999-05-03 09:29:11 +02:00
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
|
2003-06-10 09:09:31 +02:00
|
|
|
static const bfd_arch_info_type h8300sxn_info_struct =
|
|
|
|
{
|
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_h8300,
|
|
|
|
bfd_mach_h8300sxn,
|
|
|
|
"h8300sxn", /* arch_name */
|
|
|
|
"h8300sxn", /* printable name */
|
|
|
|
1,
|
|
|
|
FALSE, /* the default machine */
|
|
|
|
compatible,
|
|
|
|
h8300_scan,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2003-05-17 01:39:24 +02:00
|
|
|
static const bfd_arch_info_type h8300sx_info_struct =
|
|
|
|
{
|
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_h8300,
|
|
|
|
bfd_mach_h8300sx,
|
|
|
|
"h8300sx", /* arch_name */
|
|
|
|
"h8300sx", /* printable name */
|
|
|
|
1,
|
|
|
|
FALSE, /* the default machine */
|
|
|
|
compatible,
|
|
|
|
h8300_scan,
|
2003-06-10 09:09:31 +02:00
|
|
|
&h8300sxn_info_struct
|
2003-05-17 01:39:24 +02:00
|
|
|
};
|
|
|
|
|
2003-04-24 14:36:08 +02:00
|
|
|
static const bfd_arch_info_type h8300sn_info_struct =
|
|
|
|
{
|
|
|
|
32, /* 32 bits in a word. */
|
|
|
|
32, /* 32 bits in an address. */
|
|
|
|
8, /* 8 bits in a byte. */
|
|
|
|
bfd_arch_h8300,
|
|
|
|
bfd_mach_h8300sn,
|
|
|
|
"h8300sn", /* Architecture name. */
|
|
|
|
"h8300sn", /* Printable name. */
|
|
|
|
1,
|
|
|
|
FALSE, /* The default machine. */
|
|
|
|
compatible,
|
|
|
|
h8300_scan,
|
2003-05-17 01:39:24 +02:00
|
|
|
&h8300sx_info_struct
|
2003-04-24 14:36:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static const bfd_arch_info_type h8300hn_info_struct =
|
|
|
|
{
|
|
|
|
32, /* 32 bits in a word. */
|
|
|
|
32, /* 32 bits in an address. */
|
|
|
|
8, /* 8 bits in a byte. */
|
|
|
|
bfd_arch_h8300,
|
|
|
|
bfd_mach_h8300hn,
|
|
|
|
"h8300hn", /* Architecture name. */
|
|
|
|
"h8300hn", /* Printable name. */
|
|
|
|
1,
|
|
|
|
FALSE, /* The default machine. */
|
|
|
|
compatible,
|
|
|
|
h8300_scan,
|
|
|
|
&h8300sn_info_struct
|
|
|
|
};
|
|
|
|
|
2002-05-29 02:58:46 +02:00
|
|
|
static const bfd_arch_info_type h8300s_info_struct =
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2003-04-24 14:36:08 +02:00
|
|
|
32, /* 32 bits in a word. */
|
|
|
|
32, /* 32 bits in an address. */
|
|
|
|
8, /* 8 bits in a byte. */
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_arch_h8300,
|
2002-05-29 02:58:46 +02:00
|
|
|
bfd_mach_h8300s,
|
2003-04-24 14:36:08 +02:00
|
|
|
"h8300s", /* Architecture name. */
|
|
|
|
"h8300s", /* Printable name. */
|
1999-05-03 09:29:11 +02:00
|
|
|
1,
|
2003-04-24 14:36:08 +02:00
|
|
|
FALSE, /* The default machine. */
|
1999-05-03 09:29:11 +02:00
|
|
|
compatible,
|
|
|
|
h8300_scan,
|
2003-04-24 14:36:08 +02:00
|
|
|
& h8300hn_info_struct
|
1999-05-03 09:29:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static const bfd_arch_info_type h8300h_info_struct =
|
|
|
|
{
|
2003-04-24 14:36:08 +02:00
|
|
|
32, /* 32 bits in a word. */
|
|
|
|
32, /* 32 bits in an address. */
|
|
|
|
8, /* 8 bits in a byte. */
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_arch_h8300,
|
|
|
|
bfd_mach_h8300h,
|
2003-04-24 14:36:08 +02:00
|
|
|
"h8300h", /* Architecture name. */
|
|
|
|
"h8300h", /* Printable name. */
|
1999-05-03 09:29:11 +02:00
|
|
|
1,
|
2003-04-24 14:36:08 +02:00
|
|
|
FALSE, /* The default machine. */
|
1999-05-03 09:29:11 +02:00
|
|
|
compatible,
|
|
|
|
h8300_scan,
|
2002-05-29 02:58:46 +02:00
|
|
|
&h8300s_info_struct
|
1999-05-03 09:29:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const bfd_arch_info_type bfd_h8300_arch =
|
|
|
|
{
|
2003-04-24 14:36:08 +02:00
|
|
|
16, /* 16 bits in a word. */
|
|
|
|
16, /* 16 bits in an address. */
|
|
|
|
8, /* 8 bits in a byte. */
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_arch_h8300,
|
2002-05-29 02:58:46 +02:00
|
|
|
bfd_mach_h8300,
|
2003-04-24 14:36:08 +02:00
|
|
|
"h8300", /* Architecture name. */
|
|
|
|
"h8300", /* Printable name. */
|
1999-05-03 09:29:11 +02:00
|
|
|
1,
|
2003-04-24 14:36:08 +02:00
|
|
|
TRUE, /* The default machine. */
|
1999-05-03 09:29:11 +02:00
|
|
|
compatible,
|
|
|
|
h8300_scan,
|
2002-05-29 02:58:46 +02:00
|
|
|
&h8300h_info_struct
|
1999-05-03 09:29:11 +02:00
|
|
|
};
|