* symtab.h: Remove outdated comment.
[deliverable/binutils-gdb.git] / bfd / cpu-sparc.c
CommitLineData
252b5132 1/* BFD support for the SPARC architecture.
aa820537 2 Copyright 1992, 1995, 1996, 1998, 2000, 2002, 2005, 2007
b74fa2cd 3 Free Software Foundation, Inc.
252b5132 4
cd123cb7 5 This file is part of BFD, the Binary File Descriptor library.
252b5132 6
cd123cb7
NC
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 3 of the License, or
10 (at your option) any later version.
252b5132 11
cd123cb7
NC
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.
252b5132 16
cd123cb7
NC
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., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
252b5132 21
252b5132 22#include "sysdep.h"
3db64b00 23#include "bfd.h"
252b5132
RH
24#include "libbfd.h"
25
252b5132
RH
26static const bfd_arch_info_type arch_info_struct[] =
27{
28 {
29 32, /* bits in a word */
30 32, /* bits in an address */
31 8, /* bits in a byte */
32 bfd_arch_sparc,
33 bfd_mach_sparc_sparclet,
34 "sparc",
35 "sparc:sparclet",
36 3,
b34976b6 37 FALSE,
b74fa2cd 38 bfd_default_compatible,
252b5132
RH
39 bfd_default_scan,
40 &arch_info_struct[1],
41 },
42 {
43 32, /* bits in a word */
44 32, /* bits in an address */
45 8, /* bits in a byte */
46 bfd_arch_sparc,
47 bfd_mach_sparc_sparclite,
48 "sparc",
49 "sparc:sparclite",
50 3,
b34976b6 51 FALSE,
b74fa2cd 52 bfd_default_compatible,
252b5132
RH
53 bfd_default_scan,
54 &arch_info_struct[2],
55 },
56 {
57 32, /* bits in a word */
58 32, /* bits in an address */
59 8, /* bits in a byte */
60 bfd_arch_sparc,
61 bfd_mach_sparc_v8plus,
62 "sparc",
63 "sparc:v8plus",
64 3,
b34976b6 65 FALSE,
b74fa2cd 66 bfd_default_compatible,
252b5132
RH
67 bfd_default_scan,
68 &arch_info_struct[3],
69 },
70 {
71 32, /* bits in a word */
72 32, /* bits in an address */
73 8, /* bits in a byte */
74 bfd_arch_sparc,
75 bfd_mach_sparc_v8plusa,
76 "sparc",
77 "sparc:v8plusa",
78 3,
b34976b6 79 FALSE,
b74fa2cd 80 bfd_default_compatible,
252b5132
RH
81 bfd_default_scan,
82 &arch_info_struct[4],
83 },
84 {
85 32, /* bits in a word */
86 32, /* bits in an address */
87 8, /* bits in a byte */
88 bfd_arch_sparc,
89 bfd_mach_sparc_sparclite_le,
90 "sparc",
91 "sparc:sparclite_le",
92 3,
b34976b6 93 FALSE,
b74fa2cd 94 bfd_default_compatible,
252b5132
RH
95 bfd_default_scan,
96 &arch_info_struct[5],
97 },
98 {
99 64, /* bits in a word */
100 64, /* bits in an address */
101 8, /* bits in a byte */
102 bfd_arch_sparc,
103 bfd_mach_sparc_v9,
104 "sparc",
105 "sparc:v9",
106 3,
b34976b6 107 FALSE,
b74fa2cd 108 bfd_default_compatible,
252b5132
RH
109 bfd_default_scan,
110 &arch_info_struct[6],
111 },
112 {
113 64, /* bits in a word */
114 64, /* bits in an address */
115 8, /* bits in a byte */
116 bfd_arch_sparc,
117 bfd_mach_sparc_v9a,
118 "sparc",
119 "sparc:v9a",
120 3,
b34976b6 121 FALSE,
b74fa2cd 122 bfd_default_compatible,
252b5132 123 bfd_default_scan,
19f7b010
JJ
124 &arch_info_struct[7],
125 },
126 {
127 32, /* bits in a word */
128 32, /* bits in an address */
129 8, /* bits in a byte */
130 bfd_arch_sparc,
131 bfd_mach_sparc_v8plusb,
132 "sparc",
133 "sparc:v8plusb",
134 3,
b34976b6 135 FALSE,
b74fa2cd 136 bfd_default_compatible,
19f7b010
JJ
137 bfd_default_scan,
138 &arch_info_struct[8],
139 },
140 {
141 64, /* bits in a word */
142 64, /* bits in an address */
143 8, /* bits in a byte */
144 bfd_arch_sparc,
145 bfd_mach_sparc_v9b,
146 "sparc",
147 "sparc:v9b",
148 3,
b34976b6 149 FALSE,
b74fa2cd 150 bfd_default_compatible,
19f7b010 151 bfd_default_scan,
252b5132
RH
152 0,
153 }
154};
155
156const bfd_arch_info_type bfd_sparc_arch =
157 {
158 32, /* bits in a word */
159 32, /* bits in an address */
160 8, /* bits in a byte */
161 bfd_arch_sparc,
162 bfd_mach_sparc,
163 "sparc",
164 "sparc",
165 3,
b34976b6 166 TRUE, /* the default */
b74fa2cd 167 bfd_default_compatible,
252b5132
RH
168 bfd_default_scan,
169 &arch_info_struct[0],
170 };
This page took 0.628248 seconds and 4 git commands to generate.