1 /* BFD back-end for rs6000 support
2 Copyright 1990, 1991, 1993, 1995, 2000, 2002, 2003, 2007
3 Free Software Foundation, Inc.
4 Written by Mimi Phuong-Thao Vo of IBM
5 and John Gilmore of Cygnus Support.
7 This file is part of BFD, the Binary File Descriptor library.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
27 /* The RS/6000 architecture is compatible with the PowerPC common
30 static const bfd_arch_info_type *rs6000_compatible
31 PARAMS ((const bfd_arch_info_type *, const bfd_arch_info_type *));
33 static const bfd_arch_info_type *
34 rs6000_compatible (a,b)
35 const bfd_arch_info_type *a;
36 const bfd_arch_info_type *b;
38 BFD_ASSERT (a->arch == bfd_arch_rs6000);
44 return bfd_default_compatible (a, b);
45 case bfd_arch_powerpc:
46 if (a->mach == bfd_mach_rs6k)
53 static const bfd_arch_info_type arch_info_struct[] =
56 32, /* 32 bits in a word */
57 32, /* 32 bits in an address */
58 8, /* 8 bits in a byte */
64 FALSE, /* not the default */
70 32, /* 32 bits in a word */
71 32, /* 32 bits in an address */
72 8, /* 8 bits in a byte */
78 FALSE, /* not the default */
84 32, /* 32 bits in a word */
85 32, /* 32 bits in an address */
86 8, /* 8 bits in a byte */
92 FALSE, /* not the default */
99 const bfd_arch_info_type bfd_rs6000_arch =
101 32, /* 32 bits in a word */
102 32, /* 32 bits in an address */
103 8, /* 8 bits in a byte */
105 bfd_mach_rs6k, /* POWER common architecture */
109 TRUE, /* the default */