1 /* run front end support for arm
2 Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
4 This file is part of ARM SIM.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 /* This file provides the interface between the simulator and run.c and gdb
21 (when the simulator is linked with gdb).
22 All simulator interaction should go through this file. */
29 #include "remote-sim.h"
34 host_callback *sim_callback;
36 static struct ARMul_State *state;
38 /* Who is using the simulator. */
39 static SIM_OPEN_KIND sim_kind;
44 /* Memory size in bytes. */
45 static int mem_size = (1 << 21);
47 /* Non-zero to display start up banner, and maybe other things. */
58 state = ARMul_NewState ();
59 ARMul_MemoryInit(state, mem_size);
61 ARMul_CoProInit(state);
62 state->verbose = verbosity;
67 /* Set verbosity level of simulator.
68 This is not intended to produce detailed tracing or debugging information.
70 /* FIXME: common/run.c doesn't do this yet. */
79 /* Set the memory size to SIZE bytes.
80 Must be called before initializing simulator. */
81 /* FIXME: Rename to sim_set_mem_size. */
91 ARMul_ConsolePrint (ARMul_State * state, const char *format,...)
97 va_start (ap, format);
104 ARMul_Debug (ARMul_State * state, ARMword pc, ARMword instr)
110 sim_write (sd, addr, buffer, size)
113 unsigned char *buffer;
118 for (i = 0; i < size; i++)
120 ARMul_WriteByte (state, addr+i, buffer[i]);
126 sim_read (sd, addr, buffer, size)
129 unsigned char *buffer;
134 for (i = 0; i < size; i++)
136 buffer[i] = ARMul_ReadByte (state, addr + i);
145 (*sim_callback->printf_filtered) (sim_callback, "This simulator does not support tracing\n");
157 sim_resume (sd, step, siggnal)
161 state->EndCondition = 0;
165 state->Reg[15] = ARMul_DoInstr (state);
166 if (state->EndCondition == 0)
167 state->EndCondition = RDIError_BreakpointReached;
171 state->Reg[15] = ARMul_DoProg (state);
178 sim_create_inferior (sd, argv, env)
187 sim_info (sd, verbose)
195 frommem (state, memory)
196 struct ARMul_State *state;
197 unsigned char *memory;
199 if (state->bigendSig == HIGH)
201 return (memory[0] << 24)
208 return (memory[3] << 24)
217 tomem (state, memory, val)
218 struct ARMul_State *state;
219 unsigned char *memory;
222 if (state->bigendSig == HIGH)
224 memory[0] = val >> 24;
225 memory[1] = val >> 16;
226 memory[2] = val >> 8;
227 memory[3] = val >> 0;
231 memory[3] = val >> 24;
232 memory[2] = val >> 16;
233 memory[1] = val >> 8;
234 memory[0] = val >> 0;
239 sim_store_register (sd, rn, memory)
242 unsigned char *memory;
245 ARMul_SetReg(state, state->Mode, rn, frommem (state, memory));
249 sim_fetch_register (sd, rn, memory)
252 unsigned char *memory;
255 tomem (state, memory, ARMul_GetReg(state, state->Mode, rn));
262 sim_open (kind, ptr, abfd, argv)
275 sim_close (sd, quitting)
283 sim_load (sd, prog, abfd, from_tty)
289 extern bfd *sim_load_file (); /* ??? Don't know where this should live. */
292 prog_bfd = sim_load_file (sd, myname, sim_callback, prog, abfd,
293 sim_kind == SIM_OPEN_DEBUG);
294 if (prog_bfd == NULL)
296 ARMul_SetPC (state, bfd_get_start_address (prog_bfd));
298 bfd_close (prog_bfd);
303 sim_stop_reason (sd, reason, sigrc)
305 enum sim_stop *reason;
308 if (state->EndCondition == 0)
310 *reason = sim_exited;
311 *sigrc = state->Reg[0] & 255;
315 *reason = sim_stopped;
316 if (state->EndCondition == RDIError_BreakpointReached)
331 sim_do_command (sd, cmd)
335 (*sim_callback->printf_filtered) (sim_callback, "This simulator does not accept any commands.\n");
340 sim_set_callbacks (ptr)