1 /* run front end support for all the simulators.
2 Copyright (C) 1992, 93-96, 1997, 2002 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License along
15 with this program; if not, write to the Free Software Foundation, Inc.,
16 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19 and others at Cygnus. */
44 #include "libiberty.h"
46 #include "gdb/callback.h"
47 #include "gdb/remote-sim.h"
51 static void usage PARAMS ((void));
55 extern host_callback default_callback;
61 #ifdef NEED_UI_LOOP_HOOK
62 /* Gdb foolery. This is only needed for gdb using a gui. */
63 int (*ui_loop_hook) PARAMS ((int signo));
69 cntrl_c (int sig ATTRIBUTE_UNUSED)
73 fprintf (stderr, "Quit!\n");
83 RETSIGTYPE (*prev_sigint) ();
88 #ifdef SIM_HAVE_ENVIRONMENT
92 static char *no_args[4];
93 char **sim_argv = &no_args[0];
98 myname = av[0] + strlen (av[0]);
99 while (myname > av[0] && myname[-1] != '/')
102 /* The first element of sim_open's argv is the program name. */
104 #ifdef SIM_HAVE_BIENDIAN
106 no_args[2] = "set-later";
109 /* FIXME: This is currently being migrated into sim_open.
110 Simulators that use functions such as sim_size() still require
112 default_callback.init (&default_callback);
113 sim_set_callbacks (&default_callback);
115 #ifdef SIM_TARGET_SWITCHES
116 ac = sim_target_parse_command_line (ac, av);
119 /* FIXME: This is currently being rewritten to have each simulator
120 do all argv processing. */
122 while ((i = getopt (ac, av, "a:c:m:op:s:tv")) != EOF)
126 /* FIXME: Temporary hack. */
128 int len = strlen (av[0]) + strlen (optarg);
129 char *argbuf = (char *) alloca (len + 2 + 50);
130 sprintf (argbuf, "%s %s", av[0], optarg);
131 #ifdef SIM_HAVE_BIENDIAN
132 /* The desired endianness must be passed to sim_open.
133 The value for "set-later" is set when we know what it is.
134 -E support isn't yet part of the published interface. */
135 strcat (argbuf, " -E set-later");
137 sim_argv = buildargv (argbuf);
140 #ifdef SIM_HAVE_SIMCACHE
142 sim_set_simcache_size (atoi (optarg));
146 /* FIXME: Rename to sim_set_mem_size. */
147 sim_size (atoi (optarg));
149 #ifdef SIM_HAVE_ENVIRONMENT
151 /* Operating enironment where any signals are delivered to the
156 #ifdef SIM_HAVE_PROFILE
158 sim_set_profile (atoi (optarg));
161 sim_set_profile_size (atoi (optarg));
168 /* Things that are printed with -v are the kinds of things that
169 gcc -v prints. This is not meant to include detailed tracing
170 or debugging information, just summaries. */
172 /* sim_set_verbose (1); */
174 /* FIXME: Quick hack, to be replaced by more general facility. */
189 printf ("%s %s\n", myname, name);
192 abfd = bfd_openr (name, 0);
195 fprintf (stderr, "%s: can't open %s: %s\n",
196 myname, name, bfd_errmsg (bfd_get_error ()));
200 if (!bfd_check_format (abfd, bfd_object))
202 fprintf (stderr, "%s: can't load %s: %s\n",
203 myname, name, bfd_errmsg (bfd_get_error ()));
207 #ifdef SIM_HAVE_BIENDIAN
208 /* The endianness must be passed to sim_open because one may wish to
209 examine/set registers before calling sim_load [which is the other
210 place where one can determine endianness]. We previously passed the
211 endianness via global `target_byte_order' but that's not a clean
213 for (i = 1; sim_argv[i + 1] != NULL; ++i)
215 if (bfd_big_endian (abfd))
218 sim_argv[i] = "little";
221 /* Ensure that any run-time initialisation that needs to be
222 performed by the simulator can occur. */
223 sd = sim_open (SIM_OPEN_STANDALONE, &default_callback, abfd, sim_argv);
227 if (sim_load (sd, name, abfd, 0) == SIM_RC_FAIL)
230 if (sim_create_inferior (sd, abfd, prog_args, NULL) == SIM_RC_FAIL)
233 #ifdef SIM_HAVE_ENVIRONMENT
234 /* NOTE: An old simulator supporting the operating environment MUST
235 provide sim_set_trace() and not sim_trace(). That way
236 sim_stop_reason() can be used to determine any stop reason. */
242 prev_sigint = signal (SIGINT, cntrl_c);
243 sim_resume (sd, 0, sigrc);
244 signal (SIGINT, prev_sigint);
245 sim_stop_reason (sd, &reason, &sigrc);
247 while (operating_p && reason == sim_stopped && sigrc != SIGINT);
252 prev_sigint = signal (SIGINT, cntrl_c);
255 done = sim_trace (sd);
257 signal (SIGINT, prev_sigint);
258 sim_stop_reason (sd, &reason, &sigrc);
262 prev_sigint = signal (SIGINT, cntrl_c);
264 sim_resume (sd, 0, sigrc);
265 signal (SIGINT, prev_sigint);
266 sim_stop_reason (sd, &reason, &sigrc);
274 /* If reason is sim_exited, then sigrc holds the exit code which we want
275 to return. If reason is sim_stopped or sim_signalled, then sigrc holds
276 the signal that the simulator received; we want to return that to
279 /* Why did we stop? */
285 fprintf (stderr, "program stopped with signal %d.\n", sigrc);
292 case sim_polling: /* These indicate a serious problem. */
304 fprintf (stderr, "Usage: %s [options] program [program args]\n", myname);
305 fprintf (stderr, "Options:\n");
306 fprintf (stderr, "-a args Pass `args' to simulator.\n");
307 #ifdef SIM_HAVE_SIMCACHE
308 fprintf (stderr, "-c size Set simulator cache size to `size'.\n");
310 fprintf (stderr, "-m size Set memory size of simulator, in bytes.\n");
311 #ifdef SIM_HAVE_ENVIRONMENT
312 fprintf (stderr, "-o Select operating (kernel) environment.\n");
314 #ifdef SIM_HAVE_PROFILE
315 fprintf (stderr, "-p freq Set profiling frequency.\n");
316 fprintf (stderr, "-s size Set profiling size.\n");
318 fprintf (stderr, "-t Perform instruction tracing.\n");
319 fprintf (stderr, " Note: Very few simulators support tracing.\n");
320 fprintf (stderr, "-v Verbose output.\n");
321 fprintf (stderr, "\n");
322 fprintf (stderr, "program args Arguments to pass to simulated program.\n");
323 fprintf (stderr, " Note: Very few simulators support this.\n");
324 #ifdef SIM_TARGET_SWITCHES
325 fprintf (stderr, "\nTarget specific options:\n");
326 sim_target_display_usage ();