]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/common/nrun.c
sim: split sim-signal.h include out
[thirdparty/binutils-gdb.git] / sim / common / nrun.c
CommitLineData
c906108c 1/* New version of run front end support for simulators.
3666a048 2 Copyright (C) 1997-2021 Free Software Foundation, Inc.
c906108c
SS
3
4This program is free software; you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
4744ac1b
JB
6the Free Software Foundation; either version 3 of the License, or
7(at your option) any later version.
c906108c
SS
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
4744ac1b
JB
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 16
f914e384 17/* Need to be before general includes, to pick up e.g. _GNU_SOURCE. */
6df01ab8 18#include "defs.h"
f914e384 19
c906108c 20#include <signal.h>
b760fb3a 21#include <stdlib.h>
2232061b 22/* For strsignal. */
2232061b 23#include <string.h>
2232061b 24
c906108c 25#include "sim-main.h"
1fef66b0 26#include "sim-signal.h"
ef5058ae 27#include "sim/callback.h"
c906108c
SS
28
29#include "bfd.h"
c5a2e012 30#include "environ.h"
c906108c 31
fe348617
MF
32#ifndef HAVE_STRSIGNAL
33/* While libiberty provides a fallback, it doesn't provide a prototype. */
34extern const char *strsignal (int);
35#endif
36
027e2a04
HPN
37#ifdef HAVE_UNISTD_H
38/* For chdir. */
39#include <unistd.h>
40#endif
41
c906108c
SS
42static void usage (void);
43
44extern host_callback default_callback;
45
aba6f46b 46static const char *myname;
c906108c
SS
47
48static SIM_DESC sd;
49
50static RETSIGTYPE
51cntrl_c (int sig)
52{
53 if (! sim_stop (sd))
54 {
55 fprintf (stderr, "Quit!\n");
56 exit (1);
57 }
58}
59
60int
61main (int argc, char **argv)
62{
aba6f46b 63 const char *name;
c906108c 64 char **prog_argv = NULL;
6b4a8935 65 struct bfd *prog_bfd;
c906108c
SS
66 enum sim_stop reason;
67 int sigrc = 0;
68 int single_step = 0;
69 RETSIGTYPE (*prev_sigint) ();
70
aba6f46b 71 myname = lbasename (argv[0]);
c906108c
SS
72
73 /* INTERNAL: When MYNAME is `step', single step the simulator
74 instead of allowing it to run free. The sole purpose of this
75 HACK is to allow the sim_resume interface's step argument to be
76 tested without having to build/run gdb. */
77 if (strlen (myname) > 4 && strcmp (myname - 4, "step") == 0)
78 {
79 single_step = 1;
80 }
81
82 /* Create an instance of the simulator. */
83 default_callback.init (&default_callback);
84 sd = sim_open (SIM_OPEN_STANDALONE, &default_callback, NULL, argv);
85 if (sd == 0)
86 exit (1);
87 if (STATE_MAGIC (sd) != SIM_MAGIC_NUMBER)
88 {
89 fprintf (stderr, "Internal error - bad magic number in simulator struct\n");
90 abort ();
91 }
92
cfc6061b
MF
93 /* We can't set the endianness in the callback structure until sim_config is
94 called, which happens in sim_open. If it's still the default, switch it.
95 Don't use CURRENT_TARGET_BYTE_ORDER as all its internal processing already
96 happened in sim_config. */
97 if (default_callback.target_endian == BFD_ENDIAN_UNKNOWN)
98 default_callback.target_endian = current_target_byte_order;
f4f8cce4 99
c906108c
SS
100 /* Was there a program to run? */
101 prog_argv = STATE_PROG_ARGV (sd);
102 prog_bfd = STATE_PROG_BFD (sd);
103 if (prog_argv == NULL || *prog_argv == NULL)
104 usage ();
105
106 name = *prog_argv;
107
108 /* For simulators that don't open prog during sim_open() */
109 if (prog_bfd == NULL)
110 {
111 prog_bfd = bfd_openr (name, 0);
112 if (prog_bfd == NULL)
113 {
028f6515 114 fprintf (stderr, "%s: can't open \"%s\": %s\n",
c906108c
SS
115 myname, name, bfd_errmsg (bfd_get_error ()));
116 exit (1);
117 }
028f6515 118 if (!bfd_check_format (prog_bfd, bfd_object))
c906108c
SS
119 {
120 fprintf (stderr, "%s: \"%s\" is not an object file: %s\n",
121 myname, name, bfd_errmsg (bfd_get_error ()));
122 exit (1);
123 }
124 }
125
126 if (STATE_VERBOSE_P (sd))
127 printf ("%s %s\n", myname, name);
128
129 /* Load the program into the simulator. */
130 if (sim_load (sd, name, prog_bfd, 0) == SIM_RC_FAIL)
131 exit (1);
132
133 /* Prepare the program for execution. */
c906108c 134 sim_create_inferior (sd, prog_bfd, prog_argv, environ);
c906108c 135
027e2a04
HPN
136 /* To accommodate relative file paths, chdir to sysroot now. We
137 mustn't do this until BFD has opened the program, else we wouldn't
138 find the executable if it has a relative file path. */
139 if (simulator_sysroot[0] != '\0' && chdir (simulator_sysroot) < 0)
140 {
141 fprintf (stderr, "%s: can't change directory to \"%s\"\n",
142 myname, simulator_sysroot);
143 exit (1);
144 }
145
c906108c
SS
146 /* Run/Step the program. */
147 if (single_step)
148 {
149 do
150 {
151 prev_sigint = signal (SIGINT, cntrl_c);
152 sim_resume (sd, 1/*step*/, 0);
153 signal (SIGINT, prev_sigint);
154 sim_stop_reason (sd, &reason, &sigrc);
155
156 if ((reason == sim_stopped) &&
157 (sigrc == sim_signal_to_host (sd, SIM_SIGINT)))
158 break; /* exit on control-C */
159 }
160 /* remain on breakpoint or signals in oe mode*/
161 while (((reason == sim_signalled) &&
162 (sigrc == sim_signal_to_host (sd, SIM_SIGTRAP))) ||
028f6515 163 ((reason == sim_stopped) &&
c906108c
SS
164 (STATE_ENVIRONMENT (sd) == OPERATING_ENVIRONMENT)));
165 }
028f6515 166 else
c906108c 167 {
43e526b9
JM
168 do
169 {
c906108c 170#if defined (HAVE_SIGACTION) && defined (SA_RESTART)
43e526b9
JM
171 struct sigaction sa, osa;
172 sa.sa_handler = cntrl_c;
173 sigemptyset (&sa.sa_mask);
174 sa.sa_flags = 0;
175 sigaction (SIGINT, &sa, &osa);
176 prev_sigint = osa.sa_handler;
c906108c 177#else
43e526b9 178 prev_sigint = signal (SIGINT, cntrl_c);
c906108c 179#endif
43e526b9
JM
180 sim_resume (sd, 0, sigrc);
181 signal (SIGINT, prev_sigint);
182 sim_stop_reason (sd, &reason, &sigrc);
028f6515 183
43e526b9
JM
184 if ((reason == sim_stopped) &&
185 (sigrc == sim_signal_to_host (sd, SIM_SIGINT)))
186 break; /* exit on control-C */
028f6515 187
43e526b9
JM
188 /* remain on signals in oe mode */
189 } while ((reason == sim_stopped) &&
190 (STATE_ENVIRONMENT (sd) == OPERATING_ENVIRONMENT));
028f6515 191
43e526b9 192 }
c906108c 193 /* Print any stats the simulator collected. */
f9cbceb6
AC
194 if (STATE_VERBOSE_P (sd))
195 sim_info (sd, 0);
028f6515 196
c906108c
SS
197 /* Shutdown the simulator. */
198 sim_close (sd, 0);
028f6515 199
c906108c
SS
200 /* If reason is sim_exited, then sigrc holds the exit code which we want
201 to return. If reason is sim_stopped or sim_signalled, then sigrc holds
202 the signal that the simulator received; we want to return that to
203 indicate failure. */
028f6515 204
c906108c
SS
205 /* Why did we stop? */
206 switch (reason)
207 {
208 case sim_signalled:
209 case sim_stopped:
210 if (sigrc != 0)
9a5e0c49
MF
211 fprintf (stderr, "program stopped with signal %d (%s).\n", sigrc,
212 strsignal (sigrc));
c906108c
SS
213 break;
214
215 case sim_exited:
216 break;
217
218 default:
219 fprintf (stderr, "program in undefined state (%d:%d)\n", reason, sigrc);
220 break;
221
222 }
c906108c
SS
223
224 return sigrc;
225}
226
227static void
dc416615 228usage (void)
c906108c
SS
229{
230 fprintf (stderr, "Usage: %s [options] program [program args]\n", myname);
231 fprintf (stderr, "Run `%s --help' for full list of options.\n", myname);
232 exit (1);
233}