1 /* Main simulator entry points for the M32R.
2 Copyright (C) 1996, 1997 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24 #include "libiberty.h"
29 struct host_callback_struct
*sim_callback
;
31 /* Global state until sim_open starts creating and returning it
32 [and the other simulator i/f fns take it as an argument]. */
33 struct sim_state sim_global_state
;
35 /* FIXME: Do we *need* to pass state to the semantic routines? */
38 /* Create an instance of the simulator. */
46 SIM_DESC sd
= &sim_global_state
;
48 /* FIXME: until we alloc one, use the global. */
49 memset (sd
, 0, sizeof (sim_global_state
));
50 STATE_OPEN_KIND (sd
) = kind
;
51 STATE_CALLBACK (sd
) = sim_callback
;
53 if (sim_pre_argv_init (sd
, argv
[0]) != SIM_RC_OK
)
56 #if 0 /* FIXME: 'twould be nice if we could do this */
57 /* These options override any module options.
58 Obviously ambiguity should be avoided, however the caller may wish to
59 augment the meaning of an option. */
60 if (extra_options
!= NULL
)
61 sim_add_option_table (sd
, extra_options
);
64 /* getopt will print the error message so we just have to exit if this fails.
65 FIXME: Hmmm... in the case of gdb we need getopt to call
67 if (sim_parse_args (sd
, argv
) != SIM_RC_OK
)
69 sim_module_uninstall (sd
);
73 if (sim_post_argv_init (sd
) != SIM_RC_OK
)
75 sim_module_uninstall (sd
);
79 /* Initialize various cgen things not done by common framework. */
86 access_read_write_exec
,
87 0, 0, 0x100000, NULL
, NULL
);
89 /* We could only do this if profiling has been enabled, but the
90 structure member is small so we don't bother. */
91 for (i
= 0; i
< MAX_NR_PROCESSORS
; ++i
)
92 memset (& CPU_M32R_PROFILE (STATE_CPU (sd
, i
)), 0,
93 sizeof (CPU_M32R_PROFILE (STATE_CPU (sd
, i
))));
95 return &sim_global_state
;
99 sim_close (sd
, quitting
)
103 sim_module_uninstall (sd
);
107 sim_load (sd
, prog
, abfd
, from_tty
)
113 extern bfd
*sim_load_file (); /* ??? Don't know where this should live. */
116 prog_bfd
= sim_load_file (sd
, STATE_MY_NAME (sd
),
119 /* pass NULL for abfd, we always open our own */
121 STATE_OPEN_KIND (sd
) == SIM_OPEN_DEBUG
);
122 if (prog_bfd
== NULL
)
124 sim_analyze_program (sd
, prog_bfd
);
125 STATE_CPU_CPU (sd
, 0)->pc
= STATE_START_ADDR (sd
);
130 sim_create_inferior (sd
, argv
, envp
)
136 STATE_ARGV (sd
) = sim_copy_argv (argv
);
137 STATE_ENVP (sd
) = sim_copy_argv (envp
);
150 sim_stop (SIM_DESC sd
)
152 return engine_stop (sd
);
156 sim_resume (sd
, step
, siggnal
)
160 engine_run (sd
, step
, siggnal
);
164 sim_stop_reason (sd
, reason
, sigrc
)
166 enum sim_stop
*reason
;
169 sim_cpu
*cpu
= STATE_CPU (sd
, 0);
171 /* Map sim_state to sim_stop. */
172 switch (CPU_EXEC_STATE (cpu
))
174 case EXEC_STATE_EXITED
:
175 *reason
= sim_exited
;
176 *sigrc
= CPU_HALT_SIGRC (cpu
);
178 case EXEC_STATE_STOPPED
:
179 *reason
= sim_stopped
;
180 *sigrc
= sim_signal_to_host (CPU_HALT_SIGRC (cpu
));
182 case EXEC_STATE_SIGNALLED
:
183 *reason
= sim_signalled
;
184 *sigrc
= sim_signal_to_host (CPU_HALT_SIGRC (cpu
));
189 /* PROFILE_CPU_CALLBACK */
192 print_m32r_misc_cpu (SIM_CPU
*cpu
, int verbose
)
194 SIM_DESC sd
= CPU_STATE (cpu
);
197 if (CPU_PROFILE_FLAGS (cpu
) [PROFILE_INSN_IDX
])
199 sim_io_printf (sd
, "Miscellaneous Statistics\n\n");
200 sim_io_printf (sd
, " %-*s %s\n\n",
201 PROFILE_LABEL_WIDTH
, "Fill nops:",
202 sim_add_commas (buf
, sizeof (buf
),
203 CPU_M32R_PROFILE (cpu
).fillnop_count
));
208 sim_info (sd
, verbose
)
212 profile_print (sd
, STATE_VERBOSE_P (sd
), NULL
, print_m32r_misc_cpu
);
216 sim_set_callbacks (sd
, p
)
223 STATE_CALLBACK (sd
) = p
;
226 /* The contents of BUF are in target byte order. */
229 sim_fetch_register (sd
, rn
, buf
)
235 SETTWI (buf
, STATE_CPU_CPU (sd
, 0)->h_gr
[rn
]);
237 SETTWI (buf
, STATE_CPU_CPU (sd
, 0)->h_cr
[rn
- 16]);
240 SETTWI (buf
, STATE_CPU_CPU (sd
, 0)->pc
);
243 SETTWI (buf
, GETLODI (STATE_CPU_CPU (sd
, 0)->h_accum
));
246 SETTWI (buf
, GETHIDI (STATE_CPU_CPU (sd
, 0)->h_accum
));
249 case 23: *reg
= STATE_CPU_CPU (sd
, 0)->h_cond
; break;
250 case 24: *reg
= STATE_CPU_CPU (sd
, 0)->h_sm
; break;
251 case 25: *reg
= STATE_CPU_CPU (sd
, 0)->h_bsm
; break;
252 case 26: *reg
= STATE_CPU_CPU (sd
, 0)->h_ie
; break;
253 case 27: *reg
= STATE_CPU_CPU (sd
, 0)->h_bie
; break;
254 case 28: *reg
= STATE_CPU_CPU (sd
, 0)->h_bcarry
; break; /* rename: bc */
255 case 29: memcpy (buf
, &STATE_CPU_CPU (sd
, 0)->h_bpc
, sizeof(WI
)); break; /* duplicate */
261 /* The contents of BUF are in target byte order. */
264 sim_store_register (sd
, rn
, buf
)
270 STATE_CPU_CPU (sd
, 0)->h_gr
[rn
] = GETTWI (buf
);
272 STATE_CPU_CPU (sd
, 0)->h_cr
[rn
- 16] = GETTWI (buf
);
275 STATE_CPU_CPU (sd
, 0)->pc
= GETTWI (buf
);
278 SETLODI (STATE_CPU_CPU (sd
, 0)->h_accum
, GETTWI (buf
));
281 SETHIDI (STATE_CPU_CPU (sd
, 0)->h_accum
, GETTWI (buf
));
284 case 23: STATE_CPU_CPU (sd
, 0)->h_cond
= *reg
; break;
285 case 24: STATE_CPU_CPU (sd
, 0)->h_sm
= *reg
; break;
286 case 25: STATE_CPU_CPU (sd
, 0)->h_bsm
= *reg
; break;
287 case 26: STATE_CPU_CPU (sd
, 0)->h_ie
= *reg
; break;
288 case 27: STATE_CPU_CPU (sd
, 0)->h_bie
= *reg
; break;
289 case 28: STATE_CPU_CPU (sd
, 0)->h_bcarry
= *reg
; break; /* rename: bc */
290 case 29: memcpy (&STATE_CPU_CPU (sd
, 0)->h_bpc
, buf
, sizeof(DI
)); break; /* duplicate */
296 sim_read (sd
, addr
, buf
, len
)
303 return sim_core_read_buffer (sd
, sim_core_read_map
,
306 return (*STATE_MEM_READ (sd
)) (sd
, addr
, buf
, len
);
311 sim_write (sd
, addr
, buf
, len
)
318 return sim_core_write_buffer (sd
, sim_core_write_map
,
321 return (*STATE_MEM_WRITE (sd
)) (sd
, addr
, buf
, len
);
326 sim_do_command (sd
, cmd
)
330 sim_io_error (sd
, "sim_do_command - unimplemented");