Don't add IMAGE_FILE_RELOCS_STRIPPED for PIE.
[deliverable/binutils-gdb.git] / sim / common / sim-model.c
CommitLineData
c906108c 1/* Model support.
dc3cf14f 2 Copyright (C) 1996, 1997, 1998, 2007, 2008, 2009, 2010
e4d013fc 3 Free Software Foundation, Inc.
c906108c
SS
4 Contributed by Cygnus Support.
5
6This file is part of GDB, the GNU debugger.
7
8This program is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
4744ac1b
JB
10the Free Software Foundation; either version 3 of the License, or
11(at your option) any later version.
c906108c
SS
12
13This program is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
4744ac1b
JB
18You should have received a copy of the GNU General Public License
19along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
20
21#include "sim-main.h"
fd87baa9 22#include "sim-model.h"
c906108c
SS
23#include "libiberty.h"
24#include "sim-options.h"
25#include "sim-io.h"
26#include "sim-assert.h"
27#include "bfd.h"
28
29static void model_set (sim_cpu *, const MODEL *);
30
31static DECLARE_OPTION_HANDLER (model_option_handler);
32
33static MODULE_INIT_FN sim_model_init;
34
35#define OPTION_MODEL (OPTION_START + 0)
36
37static const OPTION model_options[] = {
38 { {"model", required_argument, NULL, OPTION_MODEL},
39 '\0', "MODEL", "Specify model to simulate",
40 model_option_handler },
41 { {NULL, no_argument, NULL, 0}, '\0', NULL, NULL, NULL }
42};
43
44static SIM_RC
45model_option_handler (SIM_DESC sd, sim_cpu *cpu, int opt,
46 char *arg, int is_command)
47{
48 switch (opt)
49 {
50 case OPTION_MODEL :
51 {
52 const MODEL *model = sim_model_lookup (arg);
53 if (! model)
54 {
53a5351d 55 sim_io_eprintf (sd, "unknown model `%s'\n", arg);
c906108c
SS
56 return SIM_RC_FAIL;
57 }
58 sim_model_set (sd, cpu, model);
59 break;
60 }
61 }
62
63 return SIM_RC_OK;
64}
65
66SIM_RC
67sim_model_install (SIM_DESC sd)
68{
69 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
70
71 sim_add_option_table (sd, NULL, model_options);
72 sim_module_add_init_fn (sd, sim_model_init);
73
74 return SIM_RC_OK;
75}
76
77/* Subroutine of sim_model_set to set the model for one cpu. */
78
79static void
80model_set (sim_cpu *cpu, const MODEL *model)
81{
82 CPU_MACH (cpu) = MODEL_MACH (model);
83 CPU_MODEL (cpu) = model;
84 (* MACH_INIT_CPU (MODEL_MACH (model))) (cpu);
85 (* MODEL_INIT (model)) (cpu);
86}
87
88/* Set the current model of CPU to MODEL.
89 If CPU is NULL, all cpus are set to MODEL. */
90
91void
92sim_model_set (SIM_DESC sd, sim_cpu *cpu, const MODEL *model)
93{
94 if (! cpu)
95 {
96 int c;
97
98 for (c = 0; c < MAX_NR_PROCESSORS; ++c)
99 if (STATE_CPU (sd, c))
100 model_set (STATE_CPU (sd, c), model);
101 }
102 else
103 {
104 model_set (cpu, model);
105 }
106}
107
108/* Look up model named NAME.
109 Result is pointer to MODEL entry or NULL if not found. */
110
111const MODEL *
112sim_model_lookup (const char *name)
113{
114 const MACH **machp;
115 const MODEL *model;
116
117 for (machp = & sim_machs[0]; *machp != NULL; ++machp)
118 {
119 for (model = MACH_MODELS (*machp); MODEL_NAME (model) != NULL; ++model)
120 {
121 if (strcmp (MODEL_NAME (model), name) == 0)
122 return model;
123 }
124 }
125 return NULL;
126}
127
128/* Look up machine named NAME.
129 Result is pointer to MACH entry or NULL if not found. */
130
131const MACH *
132sim_mach_lookup (const char *name)
133{
134 const MACH **machp;
135
136 for (machp = & sim_machs[0]; *machp != NULL; ++machp)
137 {
138 if (strcmp (MACH_NAME (*machp), name) == 0)
139 return *machp;
140 }
141 return NULL;
142}
143
144/* Look up a machine via its bfd name.
145 Result is pointer to MACH entry or NULL if not found. */
146
147const MACH *
148sim_mach_lookup_bfd_name (const char *name)
149{
150 const MACH **machp;
151
152 for (machp = & sim_machs[0]; *machp != NULL; ++machp)
153 {
154 if (strcmp (MACH_BFD_NAME (*machp), name) == 0)
155 return *machp;
156 }
157 return NULL;
158}
159
160/* Initialize model support. */
161
162static SIM_RC
163sim_model_init (SIM_DESC sd)
164{
165 SIM_CPU *cpu;
166
167 /* If both cpu model and state architecture are set, ensure they're
168 compatible. If only one is set, set the other. If neither are set,
169 use the default model. STATE_ARCHITECTURE is the bfd_arch_info data
170 for the selected "mach" (bfd terminology). */
171
172 /* Only check cpu 0. STATE_ARCHITECTURE is for that one only. */
173 /* ??? At present this only supports homogeneous multiprocessors. */
174 cpu = STATE_CPU (sd, 0);
175
176 if (! STATE_ARCHITECTURE (sd)
177 && ! CPU_MACH (cpu))
178 {
179 /* Set the default model. */
180 const MODEL *model = sim_model_lookup (WITH_DEFAULT_MODEL);
181 sim_model_set (sd, NULL, model);
182 }
183
184 if (STATE_ARCHITECTURE (sd)
185 && CPU_MACH (cpu))
186 {
187 if (strcmp (STATE_ARCHITECTURE (sd)->printable_name,
188 MACH_BFD_NAME (CPU_MACH (cpu))) != 0)
189 {
190 sim_io_eprintf (sd, "invalid model `%s' for `%s'\n",
191 MODEL_NAME (CPU_MODEL (cpu)),
192 STATE_ARCHITECTURE (sd)->printable_name);
193 return SIM_RC_FAIL;
194 }
195 }
196 else if (STATE_ARCHITECTURE (sd))
197 {
198 /* Use the default model for the selected machine.
199 The default model is the first one in the list. */
200 const MACH *mach = sim_mach_lookup_bfd_name (STATE_ARCHITECTURE (sd)->printable_name);
9846de1b
JM
201
202 if (mach == NULL)
203 {
204 sim_io_eprintf (sd, "unsupported machine `%s'\n",
205 STATE_ARCHITECTURE (sd)->printable_name);
206 return SIM_RC_FAIL;
207 }
c906108c
SS
208 sim_model_set (sd, NULL, MACH_MODELS (mach));
209 }
210 else
211 {
212 STATE_ARCHITECTURE (sd) = bfd_scan_arch (MACH_BFD_NAME (CPU_MACH (cpu)));
213 }
214
215 return SIM_RC_OK;
216}
This page took 0.45785 seconds and 4 git commands to generate.