1 /* BFD library support routines for the Hitachi H8/300 architecture.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 2000, 2001, 2002
3 Free Software Foundation, Inc.
4 Hacked by Steve Chamberlain of Cygnus Support.
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
26 static bfd_boolean h8300_scan
27 PARAMS ((const struct bfd_arch_info
*, const char *));
28 static const bfd_arch_info_type
* compatible
29 PARAMS ((const bfd_arch_info_type
*, const bfd_arch_info_type
*));
32 h8300_scan (info
, string
)
33 const struct bfd_arch_info
*info
;
36 if (*string
!= 'h' && *string
!= 'H')
59 /* In ELF linker scripts, we typically express the architecture/machine
60 as architecture:machine.
62 So if we've matched so far and encounter a colon, try to match the
63 string following the colon. */
67 return h8300_scan (info
, string
);
70 if (*string
== 'h' || *string
== 'H')
72 return (info
->mach
== bfd_mach_h8300h
);
74 else if (*string
== 's' || *string
== 'S')
76 return (info
->mach
== bfd_mach_h8300s
);
80 return info
->mach
== bfd_mach_h8300
;
84 /* This routine is provided two arch_infos and works out the machine
85 which would be compatible with both and returns a pointer to its
88 static const bfd_arch_info_type
*
90 const bfd_arch_info_type
*in
;
91 const bfd_arch_info_type
*out
;
93 /* It's really not a good idea to mix and match modes. */
94 if (in
->arch
!= out
->arch
|| in
->mach
!= out
->mach
)
100 static const bfd_arch_info_type h8300s_info_struct
=
102 32, /* 32 bits in a word */
103 32, /* 32 bits in an address */
104 8, /* 8 bits in a byte */
107 "h8300s", /* arch_name */
108 "h8300s", /* printable name */
110 FALSE
, /* the default machine */
116 static const bfd_arch_info_type h8300h_info_struct
=
118 32, /* 32 bits in a word */
119 32, /* 32 bits in an address */
120 8, /* 8 bits in a byte */
123 "h8300h", /* arch_name */
124 "h8300h", /* printable name */
126 FALSE
, /* the default machine */
132 const bfd_arch_info_type bfd_h8300_arch
=
134 16, /* 16 bits in a word */
135 16, /* 16 bits in an address */
136 8, /* 8 bits in a byte */
139 "h8300", /* arch_name */
140 "h8300", /* printable name */
142 TRUE
, /* the default machine */