]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/infcmd.c
Normalize include guards in gdb
[thirdparty/binutils-gdb.git] / gdb / infcmd.c
CommitLineData
c906108c 1/* Memory-access and commands for "inferior" process, for GDB.
990a07ab 2
42a4f53d 3 Copyright (C) 1986-2019 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
5af949e3 21#include "arch-utils.h"
c906108c 22#include <signal.h>
c906108c
SS
23#include "symtab.h"
24#include "gdbtypes.h"
25#include "frame.h"
26#include "inferior.h"
45741a9c 27#include "infrun.h"
0747795c 28#include "common/environ.h"
c906108c
SS
29#include "value.h"
30#include "gdbcmd.h"
1adeb98a 31#include "symfile.h"
c906108c
SS
32#include "gdbcore.h"
33#include "target.h"
34#include "language.h"
c906108c 35#include "objfiles.h"
c94fdfd0 36#include "completer.h"
8b93c638 37#include "ui-out.h"
6426a772 38#include "event-top.h"
96baa820 39#include "parser-defs.h"
36160dc4 40#include "regcache.h"
f9418c0f 41#include "reggroups.h"
fe898f56 42#include "block.h"
a77053c2 43#include "solib.h"
f9418c0f 44#include <ctype.h>
76727919 45#include "observable.h"
424163ea 46#include "target-descriptions.h"
ad842144 47#include "user-regs.h"
700b53b1 48#include "cli/cli-decode.h"
a0ef4274 49#include "gdbthread.h"
79a45b7d 50#include "valprint.h"
edb3359d 51#include "inline-frame.h"
573cda03 52#include "tracepoint.h"
09cee04b 53#include "inf-loop.h"
be34f849 54#include "continuations.h"
f8eba3c6 55#include "linespec.h"
529480d0 56#include "cli/cli-utils.h"
8a6c4031 57#include "infcall.h"
243a9253 58#include "thread-fsm.h"
3b12939d 59#include "top.h"
8980e177 60#include "interps.h"
5ed8105e 61#include "common/gdb_optional.h"
b46a8d7c 62#include "source.h"
d5551862 63
a58dd373
EZ
64/* Local functions: */
65
a14ed312 66static void until_next_command (int);
c906108c 67
0b39b52e 68static void step_1 (int, int, const char *);
c906108c 69
c906108c 70#define ERROR_NO_INFERIOR \
8a3fe4f8 71 if (!target_has_execution) error (_("The program is not being run."));
c906108c 72
3e43a32a
MS
73/* Scratch area where string containing arguments to give to the
74 program will be stored by 'set args'. As soon as anything is
75 stored, notice_args_set will move it into per-inferior storage.
1777feb0 76 Arguments are separated by spaces. Empty string (pointer to '\0')
3e43a32a 77 means no args. */
c906108c 78
3f81c18a 79static char *inferior_args_scratch;
c906108c 80
d092c5a2
SDJ
81/* Scratch area where the new cwd will be stored by 'set cwd'. */
82
83static char *inferior_cwd_scratch;
84
3f81c18a
VP
85/* Scratch area where 'set inferior-tty' will store user-provided value.
86 We'll immediate copy it into per-inferior storage. */
552c04a7 87
3f81c18a 88static char *inferior_io_terminal_scratch;
c906108c
SS
89
90/* Pid of our debugged inferior, or 0 if no inferior now.
91 Since various parts of infrun.c test this to see whether there is a program
92 being debugged it should be nonzero (currently 3 is used) for remote
93 debugging. */
94
39f77062 95ptid_t inferior_ptid;
c906108c 96
c906108c
SS
97/* Nonzero if stopped due to completion of a stack dummy routine. */
98
aa7d318d 99enum stop_stack_kind stop_stack_dummy;
c906108c
SS
100
101/* Nonzero if stopped due to a random (unexpected) signal in inferior
102 process. */
103
104int stopped_by_random_signal;
105
98882a26
PA
106/* See inferior.h. */
107
108int startup_with_shell = 1;
109
c906108c 110\f
1777feb0 111/* Accessor routines. */
07091751 112
3f81c18a
VP
113/* Set the io terminal for the current inferior. Ownership of
114 TERMINAL_NAME is not transferred. */
115
3cb3b8df
BR
116void
117set_inferior_io_terminal (const char *terminal_name)
118{
3f81c18a 119 xfree (current_inferior ()->terminal);
0a1ddfa6
SM
120
121 if (terminal_name != NULL && *terminal_name != '\0')
122 current_inferior ()->terminal = xstrdup (terminal_name);
123 else
124 current_inferior ()->terminal = NULL;
3cb3b8df
BR
125}
126
127const char *
128get_inferior_io_terminal (void)
129{
3f81c18a
VP
130 return current_inferior ()->terminal;
131}
132
133static void
eb4c3f4a 134set_inferior_tty_command (const char *args, int from_tty,
3f81c18a
VP
135 struct cmd_list_element *c)
136{
137 /* CLI has assigned the user-provided value to inferior_io_terminal_scratch.
138 Now route it to current inferior. */
139 set_inferior_io_terminal (inferior_io_terminal_scratch);
140}
141
142static void
143show_inferior_tty_command (struct ui_file *file, int from_tty,
144 struct cmd_list_element *c, const char *value)
145{
146 /* Note that we ignore the passed-in value in favor of computing it
147 directly. */
275f2e57 148 const char *inferior_io_terminal = get_inferior_io_terminal ();
abbb1732 149
275f2e57
DJ
150 if (inferior_io_terminal == NULL)
151 inferior_io_terminal = "";
3f81c18a 152 fprintf_filtered (gdb_stdout,
275f2e57
DJ
153 _("Terminal for future runs of program being debugged "
154 "is \"%s\".\n"), inferior_io_terminal);
3cb3b8df
BR
155}
156
cbaaa0ca 157const char *
07091751
FN
158get_inferior_args (void)
159{
3f81c18a 160 if (current_inferior ()->argc != 0)
552c04a7 161 {
3f81c18a 162 char *n;
552c04a7 163
3f81c18a
VP
164 n = construct_inferior_arguments (current_inferior ()->argc,
165 current_inferior ()->argv);
166 set_inferior_args (n);
167 xfree (n);
552c04a7
TT
168 }
169
3f81c18a
VP
170 if (current_inferior ()->args == NULL)
171 current_inferior ()->args = xstrdup ("");
552c04a7 172
3f81c18a 173 return current_inferior ()->args;
07091751
FN
174}
175
3f81c18a
VP
176/* Set the arguments for the current inferior. Ownership of
177 NEWARGS is not transferred. */
178
179void
0b39b52e 180set_inferior_args (const char *newargs)
07091751 181{
3f81c18a
VP
182 xfree (current_inferior ()->args);
183 current_inferior ()->args = newargs ? xstrdup (newargs) : NULL;
184 current_inferior ()->argc = 0;
185 current_inferior ()->argv = 0;
07091751 186}
c5aa993b 187
552c04a7
TT
188void
189set_inferior_args_vector (int argc, char **argv)
190{
3f81c18a
VP
191 current_inferior ()->argc = argc;
192 current_inferior ()->argv = argv;
552c04a7
TT
193}
194
195/* Notice when `set args' is run. */
6339bfc4 196
552c04a7 197static void
eb4c3f4a 198set_args_command (const char *args, int from_tty, struct cmd_list_element *c)
552c04a7 199{
3f81c18a
VP
200 /* CLI has assigned the user-provided value to inferior_args_scratch.
201 Now route it to current inferior. */
202 set_inferior_args (inferior_args_scratch);
552c04a7
TT
203}
204
205/* Notice when `show args' is run. */
6339bfc4 206
552c04a7 207static void
3f81c18a
VP
208show_args_command (struct ui_file *file, int from_tty,
209 struct cmd_list_element *c, const char *value)
552c04a7 210{
258c00cc
TT
211 /* Note that we ignore the passed-in value in favor of computing it
212 directly. */
213 deprecated_show_value_hack (file, from_tty, c, get_inferior_args ());
552c04a7
TT
214}
215
bc3b087d 216/* See common/common-inferior.h. */
d092c5a2 217
bc3b087d 218void
d092c5a2
SDJ
219set_inferior_cwd (const char *cwd)
220{
221 struct inferior *inf = current_inferior ();
222
223 gdb_assert (inf != NULL);
224
225 if (cwd == NULL)
226 inf->cwd.reset ();
227 else
228 inf->cwd.reset (xstrdup (cwd));
229}
230
231/* See common/common-inferior.h. */
232
233const char *
234get_inferior_cwd ()
235{
236 return current_inferior ()->cwd.get ();
237}
238
239/* Handle the 'set cwd' command. */
240
241static void
eb4c3f4a 242set_cwd_command (const char *args, int from_tty, struct cmd_list_element *c)
d092c5a2
SDJ
243{
244 if (*inferior_cwd_scratch == '\0')
245 set_inferior_cwd (NULL);
246 else
247 set_inferior_cwd (inferior_cwd_scratch);
248}
249
250/* Handle the 'show cwd' command. */
251
252static void
253show_cwd_command (struct ui_file *file, int from_tty,
254 struct cmd_list_element *c, const char *value)
255{
256 const char *cwd = get_inferior_cwd ();
257
258 if (cwd == NULL)
259 fprintf_filtered (gdb_stdout,
260 _("\
261You have not set the inferior's current working directory.\n\
bc3b087d
SDJ
262The inferior will inherit GDB's cwd if native debugging, or the remote\n\
263server's cwd if remote debugging.\n"));
d092c5a2
SDJ
264 else
265 fprintf_filtered (gdb_stdout,
266 _("Current working directory that will be used "
267 "when starting the inferior is \"%s\".\n"), cwd);
268}
269
c2a727fa
TT
270\f
271/* Compute command-line string given argument vector. This does the
272 same shell processing as fork_inferior. */
6339bfc4 273
c2a727fa 274char *
bd57a748 275construct_inferior_arguments (int argc, char **argv)
c2a727fa
TT
276{
277 char *result;
278
98882a26 279 if (startup_with_shell)
c2a727fa 280 {
5d60742e
EZ
281#ifdef __MINGW32__
282 /* This holds all the characters considered special to the
283 Windows shells. */
a121b7c1
PA
284 static const char special[] = "\"!&*|[]{}<>?`~^=;, \t\n";
285 static const char quote = '"';
5d60742e 286#else
c2a727fa
TT
287 /* This holds all the characters considered special to the
288 typical Unix shells. We include `^' because the SunOS
289 /bin/sh treats it as a synonym for `|'. */
a121b7c1
PA
290 static const char special[] = "\"!#$&*()\\|[]{}<>?'`~^; \t\n";
291 static const char quote = '\'';
5d60742e 292#endif
c2a727fa
TT
293 int i;
294 int length = 0;
295 char *out, *cp;
296
297 /* We over-compute the size. It shouldn't matter. */
298 for (i = 0; i < argc; ++i)
c2226152 299 length += 3 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0');
c2a727fa
TT
300
301 result = (char *) xmalloc (length);
302 out = result;
303
304 for (i = 0; i < argc; ++i)
305 {
306 if (i > 0)
307 *out++ = ' ';
308
03c6228e
AS
309 /* Need to handle empty arguments specially. */
310 if (argv[i][0] == '\0')
c2a727fa 311 {
5d60742e
EZ
312 *out++ = quote;
313 *out++ = quote;
03c6228e
AS
314 }
315 else
316 {
5d60742e
EZ
317#ifdef __MINGW32__
318 int quoted = 0;
319
320 if (strpbrk (argv[i], special))
321 {
322 quoted = 1;
323 *out++ = quote;
324 }
325#endif
03c6228e
AS
326 for (cp = argv[i]; *cp; ++cp)
327 {
c2226152
AS
328 if (*cp == '\n')
329 {
330 /* A newline cannot be quoted with a backslash (it
331 just disappears), only by putting it inside
332 quotes. */
5d60742e 333 *out++ = quote;
c2226152 334 *out++ = '\n';
5d60742e 335 *out++ = quote;
c2226152
AS
336 }
337 else
338 {
5d60742e
EZ
339#ifdef __MINGW32__
340 if (*cp == quote)
341#else
c2226152 342 if (strchr (special, *cp) != NULL)
5d60742e 343#endif
c2226152
AS
344 *out++ = '\\';
345 *out++ = *cp;
346 }
03c6228e 347 }
5d60742e
EZ
348#ifdef __MINGW32__
349 if (quoted)
350 *out++ = quote;
351#endif
c2a727fa
TT
352 }
353 }
354 *out = '\0';
355 }
356 else
357 {
358 /* In this case we can't handle arguments that contain spaces,
359 tabs, or newlines -- see breakup_args(). */
360 int i;
361 int length = 0;
362
363 for (i = 0; i < argc; ++i)
364 {
365 char *cp = strchr (argv[i], ' ');
366 if (cp == NULL)
367 cp = strchr (argv[i], '\t');
368 if (cp == NULL)
369 cp = strchr (argv[i], '\n');
370 if (cp != NULL)
3e43a32a
MS
371 error (_("can't handle command-line "
372 "argument containing whitespace"));
c2a727fa
TT
373 length += strlen (argv[i]) + 1;
374 }
375
376 result = (char *) xmalloc (length);
377 result[0] = '\0';
378 for (i = 0; i < argc; ++i)
379 {
380 if (i > 0)
381 strcat (result, " ");
382 strcat (result, argv[i]);
383 }
384 }
385
386 return result;
387}
552c04a7
TT
388\f
389
6c4486e6
PA
390/* This function strips the '&' character (indicating background
391 execution) that is added as *the last* of the arguments ARGS of a
392 command. A copy of the incoming ARGS without the '&' is returned,
393 unless the resulting string after stripping is empty, in which case
394 NULL is returned. *BG_CHAR_P is an output boolean that indicates
395 whether the '&' character was found. */
6339bfc4 396
6be9a197 397static gdb::unique_xmalloc_ptr<char>
6c4486e6 398strip_bg_char (const char *args, int *bg_char_p)
43ff13b4 399{
6c4486e6 400 const char *p;
c5aa993b 401
6c4486e6
PA
402 if (args == NULL || *args == '\0')
403 {
404 *bg_char_p = 0;
405 return NULL;
406 }
c5aa993b 407
6c4486e6
PA
408 p = args + strlen (args);
409 if (p[-1] == '&')
43ff13b4 410 {
6c4486e6
PA
411 p--;
412 while (p > args && isspace (p[-1]))
413 p--;
414
415 *bg_char_p = 1;
416 if (p != args)
6be9a197
TT
417 return gdb::unique_xmalloc_ptr<char>
418 (savestring (args, p - args));
6c4486e6 419 else
6be9a197 420 return gdb::unique_xmalloc_ptr<char> (nullptr);
43ff13b4 421 }
6c4486e6
PA
422
423 *bg_char_p = 0;
6be9a197 424 return gdb::unique_xmalloc_ptr<char> (xstrdup (args));
43ff13b4
JM
425}
426
281b533b
DJ
427/* Common actions to take after creating any sort of inferior, by any
428 means (running, attaching, connecting, et cetera). The target
429 should be stopped. */
430
431void
432post_create_inferior (struct target_ops *target, int from_tty)
433{
ce406537 434
b79599ff 435 /* Be sure we own the terminal in case write operations are performed. */
223ffa71 436 target_terminal::ours_for_output ();
b79599ff 437
424163ea
DJ
438 /* If the target hasn't taken care of this already, do it now.
439 Targets which need to access registers during to_open,
440 to_create_inferior, or to_attach should do it earlier; but many
441 don't need to. */
442 target_find_description ();
443
ce406537
PA
444 /* Now that we know the register layout, retrieve current PC. But
445 if the PC is unavailable (e.g., we're opening a core file with
446 missing registers info), ignore it. */
f2ffa92b
PA
447 thread_info *thr = inferior_thread ();
448
449 thr->suspend.stop_pc = 0;
492d29ea 450 TRY
ce406537 451 {
f2ffa92b 452 thr->suspend.stop_pc = regcache_read_pc (get_current_regcache ());
ce406537 453 }
492d29ea 454 CATCH (ex, RETURN_MASK_ERROR)
7556d4a4
PA
455 {
456 if (ex.error != NOT_AVAILABLE_ERROR)
457 throw_exception (ex);
458 }
492d29ea 459 END_CATCH
f698437e 460
50c71eaf
PA
461 if (exec_bfd)
462 {
2eff07b3
PP
463 const unsigned solib_add_generation
464 = current_program_space->solib_add_generation;
465
9353355f
DJ
466 /* Create the hooks to handle shared library load and unload
467 events. */
268a4a75 468 solib_create_inferior_hook (from_tty);
268a4a75 469
2eff07b3
PP
470 if (current_program_space->solib_add_generation == solib_add_generation)
471 {
472 /* The platform-specific hook should load initial shared libraries,
473 but didn't. FROM_TTY will be incorrectly 0 but such solib
474 targets should be fixed anyway. Call it only after the solib
475 target has been initialized by solib_create_inferior_hook. */
476
477 if (info_verbose)
478 warning (_("platform-specific solib_create_inferior_hook did "
479 "not load initial shared libraries."));
480
481 /* If the solist is global across processes, there's no need to
482 refetch it here. */
f5656ead 483 if (!gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 484 solib_add (NULL, 0, auto_solib_add);
2eff07b3 485 }
9353355f
DJ
486 }
487
ea5d7a99
PM
488 /* If the user sets watchpoints before execution having started,
489 then she gets software watchpoints, because GDB can't know which
490 target will end up being pushed, or if it supports hardware
491 watchpoints or not. breakpoint_re_set takes care of promoting
492 watchpoints to hardware watchpoints if possible, however, if this
493 new inferior doesn't load shared libraries or we don't pull in
494 symbols from any other source on this target/arch,
495 breakpoint_re_set is never called. Call it now so that software
496 watchpoints get a chance to be promoted to hardware watchpoints
497 if the now pushed target supports hardware watchpoints. */
498 breakpoint_re_set ();
499
76727919 500 gdb::observers::inferior_created.notify (target, from_tty);
281b533b
DJ
501}
502
a4d5f2e0
JB
503/* Kill the inferior if already running. This function is designed
504 to be called when we are about to start the execution of the program
505 from the beginning. Ask the user to confirm that he wants to restart
506 the program being debugged when FROM_TTY is non-null. */
c906108c 507
8edfe269 508static void
a4d5f2e0
JB
509kill_if_already_running (int from_tty)
510{
d7e15655 511 if (inferior_ptid != null_ptid && target_has_execution)
c906108c 512 {
8edfe269
DJ
513 /* Bail out before killing the program if we will not be able to
514 restart it. */
515 target_require_runnable ();
516
adf40b2e 517 if (from_tty
9e2f0ad4
HZ
518 && !query (_("The program being debugged has been started already.\n\
519Start it from the beginning? ")))
8a3fe4f8 520 error (_("Program not restarted."));
c906108c 521 target_kill ();
c906108c 522 }
a4d5f2e0
JB
523}
524
329ea579 525/* See inferior.h. */
8bc2fe48 526
329ea579 527void
8bc2fe48
PA
528prepare_execution_command (struct target_ops *target, int background)
529{
530 /* If we get a request for running in the bg but the target
531 doesn't support it, error out. */
f6ac5f3d 532 if (background && !target->can_async_p ())
8bc2fe48
PA
533 error (_("Asynchronous execution not supported on this target."));
534
0b333c5e 535 if (!background)
8bc2fe48 536 {
0b333c5e
PA
537 /* If we get a request for running in the fg, then we need to
538 simulate synchronous (fg) execution. Note no cleanup is
539 necessary for this. stdin is re-enabled whenever an error
540 reaches the top level. */
a8836c93 541 all_uis_on_sync_execution_starting ();
8bc2fe48
PA
542 }
543}
544
4e5a4f58
JB
545/* Determine how the new inferior will behave. */
546
547enum run_how
548 {
549 /* Run program without any explicit stop during startup. */
550 RUN_NORMAL,
551
552 /* Stop at the beginning of the program's main function. */
553 RUN_STOP_AT_MAIN,
554
555 /* Stop at the first instruction of the program. */
556 RUN_STOP_AT_FIRST_INSN
557 };
558
559/* Implement the "run" command. Force a stop during program start if
560 requested by RUN_HOW. */
f67a969f 561
a4d5f2e0 562static void
0b39b52e 563run_command_1 (const char *args, int from_tty, enum run_how run_how)
a4d5f2e0 564{
7c5ded6a 565 const char *exec_file;
79a45e25 566 struct ui_out *uiout = current_uiout;
b3ccfe11 567 struct target_ops *run_target;
6c4486e6 568 int async_exec;
c906108c 569
a4d5f2e0
JB
570 dont_repeat ();
571
572 kill_if_already_running (from_tty);
3c35e65b
UW
573
574 init_wait_for_inferior ();
c906108c
SS
575 clear_breakpoint_hit_counts ();
576
fd79ecee
DJ
577 /* Clean up any leftovers from other runs. Some other things from
578 this function should probably be moved into target_pre_inferior. */
579 target_pre_inferior (from_tty);
580
39ad761d
JB
581 /* The comment here used to read, "The exec file is re-read every
582 time we do a generic_mourn_inferior, so we just have to worry
583 about the symbol file." The `generic_mourn_inferior' function
584 gets called whenever the program exits. However, suppose the
585 program exits, and *then* the executable file changes? We need
586 to check again here. Since reopen_exec_file doesn't do anything
587 if the timestamp hasn't changed, I don't see the harm. */
588 reopen_exec_file ();
c906108c
SS
589 reread_symbols ();
590
6be9a197
TT
591 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (args, &async_exec);
592 args = stripped.get ();
f67a969f 593
8bc2fe48
PA
594 /* Do validation and preparation before possibly changing anything
595 in the inferior. */
39ad761d 596
b3ccfe11
TT
597 run_target = find_run_target ();
598
8bc2fe48
PA
599 prepare_execution_command (run_target, async_exec);
600
f6ac5f3d 601 if (non_stop && !run_target->supports_non_stop ())
9908b566
VP
602 error (_("The target does not support running in non-stop mode."));
603
8bc2fe48
PA
604 /* Done. Can now set breakpoints, change inferior args, etc. */
605
4e5a4f58
JB
606 /* Insert temporary breakpoint in main function if requested. */
607 if (run_how == RUN_STOP_AT_MAIN)
8bc2fe48
PA
608 tbreak_command (main_name (), 0);
609
7c5ded6a 610 exec_file = get_exec_file (0);
8bc2fe48 611
c906108c
SS
612 /* We keep symbols from add-symbol-file, on the grounds that the
613 user might want to add some symbols before running the program
614 (right?). But sometimes (dynamic loading where the user manually
615 introduces the new symbols with add-symbol-file), the code which
616 the symbols describe does not persist between runs. Currently
617 the user has to manually nuke all symbols between runs if they
618 want them to go away (PR 2207). This is probably reasonable. */
619
8bc2fe48
PA
620 /* If there were other args, beside '&', process them. */
621 if (args != NULL)
622 set_inferior_args (args);
c906108c
SS
623
624 if (from_tty)
625 {
112e8700
SM
626 uiout->field_string (NULL, "Starting program");
627 uiout->text (": ");
8b93c638 628 if (exec_file)
112e8700
SM
629 uiout->field_string ("execfile", exec_file);
630 uiout->spaces (1);
552c04a7
TT
631 /* We call get_inferior_args() because we might need to compute
632 the value now. */
112e8700
SM
633 uiout->field_string ("infargs", get_inferior_args ());
634 uiout->text ("\n");
635 uiout->flush ();
c906108c
SS
636 }
637
552c04a7
TT
638 /* We call get_inferior_args() because we might need to compute
639 the value now. */
f6ac5f3d
PA
640 run_target->create_inferior (exec_file,
641 std::string (get_inferior_args ()),
642 current_inferior ()->environment.envp (),
643 from_tty);
b3ccfe11
TT
644 /* to_create_inferior should push the target, so after this point we
645 shouldn't refer to run_target again. */
646 run_target = NULL;
281b533b 647
29f49a6a
PA
648 /* We're starting off a new process. When we get out of here, in
649 non-stop mode, finish the state of all threads of that process,
650 but leave other threads alone, as they may be stopped in internal
651 events --- the frontend shouldn't see them as stopped. In
652 all-stop, always finish the state of all threads, as we may be
653 resuming more than just the new process. */
731f534f
PA
654 ptid_t finish_ptid = (non_stop
655 ? ptid_t (current_inferior ()->pid)
656 : minus_one_ptid);
657 scoped_finish_thread_state finish_state (finish_ptid);
29f49a6a 658
de1b3c3d
PA
659 /* Pass zero for FROM_TTY, because at this point the "run" command
660 has done its thing; now we are setting up the running program. */
8b88a78e 661 post_create_inferior (current_top_target (), 0);
281b533b 662
4e5a4f58
JB
663 /* Queue a pending event so that the program stops immediately. */
664 if (run_how == RUN_STOP_AT_FIRST_INSN)
665 {
666 thread_info *thr = inferior_thread ();
667 thr->suspend.waitstatus_pending_p = 1;
668 thr->suspend.waitstatus.kind = TARGET_WAITKIND_STOPPED;
669 thr->suspend.waitstatus.value.sig = GDB_SIGNAL_0;
670 }
671
74d1f91e
JK
672 /* Start the target running. Do not use -1 continuation as it would skip
673 breakpoint right at the entry point. */
64ce06e4 674 proceed (regcache_read_pc (get_current_regcache ()), GDB_SIGNAL_0);
c906108c 675
29f49a6a
PA
676 /* Since there was no error, there's no need to finish the thread
677 states here. */
731f534f 678 finish_state.release ();
29f49a6a 679}
c906108c 680
f67a969f 681static void
0b39b52e 682run_command (const char *args, int from_tty)
f67a969f 683{
4e5a4f58 684 run_command_1 (args, from_tty, RUN_NORMAL);
f67a969f
JB
685}
686
a4d5f2e0
JB
687/* Start the execution of the program up until the beginning of the main
688 program. */
689
690static void
0b39b52e 691start_command (const char *args, int from_tty)
a4d5f2e0
JB
692{
693 /* Some languages such as Ada need to search inside the program
694 minimal symbols for the location where to put the temporary
695 breakpoint before starting. */
696 if (!have_minimal_symbols ())
8a3fe4f8 697 error (_("No symbol table loaded. Use the \"file\" command."));
a4d5f2e0 698
f67a969f 699 /* Run the program until reaching the main procedure... */
4e5a4f58
JB
700 run_command_1 (args, from_tty, RUN_STOP_AT_MAIN);
701}
702
703/* Start the execution of the program stopping at the first
704 instruction. */
705
706static void
0b39b52e 707starti_command (const char *args, int from_tty)
4e5a4f58
JB
708{
709 run_command_1 (args, from_tty, RUN_STOP_AT_FIRST_INSN);
a4d5f2e0
JB
710}
711
8cae4b3f
PA
712static int
713proceed_thread_callback (struct thread_info *thread, void *arg)
714{
74531fed
PA
715 /* We go through all threads individually instead of compressing
716 into a single target `resume_all' request, because some threads
717 may be stopped in internal breakpoints/events, or stopped waiting
718 for its turn in the displaced stepping queue (that is, they are
719 running && !executing). The target side has no idea about why
720 the thread is stopped, so a `resume_all' command would resume too
721 much. If/when GDB gains a way to tell the target `hold this
722 thread stopped until I say otherwise', then we can optimize
723 this. */
00431a78 724 if (thread->state != THREAD_STOPPED)
8cae4b3f
PA
725 return 0;
726
00431a78 727 switch_to_thread (thread);
70509625 728 clear_proceed_status (0);
64ce06e4 729 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
8cae4b3f
PA
730 return 0;
731}
732
70221824 733static void
d729566a
PA
734ensure_valid_thread (void)
735{
00431a78
PA
736 if (inferior_ptid == null_ptid
737 || inferior_thread ()->state == THREAD_EXITED)
3e43a32a 738 error (_("Cannot execute this command without a live selected thread."));
d729566a
PA
739}
740
573cda03 741/* If the user is looking at trace frames, any resumption of execution
1777feb0 742 is likely to mix up recorded and live target data. So simply
573cda03
SS
743 disallow those commands. */
744
70221824 745static void
573cda03
SS
746ensure_not_tfind_mode (void)
747{
748 if (get_traceframe_number () >= 0)
3e43a32a 749 error (_("Cannot execute this command while looking at trace frames."));
573cda03
SS
750}
751
3d3fef6b
YQ
752/* Throw an error indicating the current thread is running. */
753
754static void
755error_is_running (void)
756{
757 error (_("Cannot execute this command while "
758 "the selected thread is running."));
759}
760
761/* Calls error_is_running if the current thread is running. */
762
763static void
764ensure_not_running (void)
765{
00431a78 766 if (inferior_thread ()->state == THREAD_RUNNING)
3d3fef6b
YQ
767 error_is_running ();
768}
769
77ebaa5a
VP
770void
771continue_1 (int all_threads)
772{
3d488bfc 773 ERROR_NO_INFERIOR;
573cda03 774 ensure_not_tfind_mode ();
3d488bfc 775
77ebaa5a
VP
776 if (non_stop && all_threads)
777 {
778 /* Don't error out if the current thread is running, because
abbb1732 779 there may be other stopped threads. */
77ebaa5a 780
5ed8105e
PA
781 /* Backup current thread and selected frame and restore on scope
782 exit. */
783 scoped_restore_current_thread restore_thread;
77ebaa5a
VP
784
785 iterate_over_threads (proceed_thread_callback, NULL);
786
3b12939d 787 if (current_ui->prompt_state == PROMPT_BLOCKED)
0ff33695
PA
788 {
789 /* If all threads in the target were already running,
790 proceed_thread_callback ends up never calling proceed,
791 and so nothing calls this to put the inferior's terminal
792 settings in effect and remove stdin from the event loop,
793 which we must when running a foreground command. E.g.:
794
795 (gdb) c -a&
796 Continuing.
797 <all threads are running now>
798 (gdb) c -a
799 Continuing.
800 <no thread was resumed, but the inferior now owns the terminal>
801 */
223ffa71 802 target_terminal::inferior ();
0ff33695 803 }
77ebaa5a
VP
804 }
805 else
806 {
d729566a 807 ensure_valid_thread ();
77ebaa5a 808 ensure_not_running ();
70509625 809 clear_proceed_status (0);
64ce06e4 810 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
77ebaa5a
VP
811 }
812}
813
8cae4b3f 814/* continue [-a] [proceed-count] [&] */
6339bfc4 815
1dd5fedc 816static void
0b39b52e 817continue_command (const char *args, int from_tty)
c906108c 818{
6c4486e6 819 int async_exec;
8cae4b3f 820 int all_threads = 0;
6c4486e6 821
c906108c
SS
822 ERROR_NO_INFERIOR;
823
1777feb0 824 /* Find out whether we must run in the background. */
6be9a197
TT
825 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (args, &async_exec);
826 args = stripped.get ();
43ff13b4 827
8cae4b3f
PA
828 if (args != NULL)
829 {
61012eef 830 if (startswith (args, "-a"))
8cae4b3f
PA
831 {
832 all_threads = 1;
833 args += sizeof ("-a") - 1;
834 if (*args == '\0')
835 args = NULL;
836 }
837 }
838
839 if (!non_stop && all_threads)
840 error (_("`-a' is meaningless in all-stop mode."));
841
842 if (args != NULL && all_threads)
3e43a32a
MS
843 error (_("Can't resume all threads and specify "
844 "proceed count simultaneously."));
8cae4b3f
PA
845
846 /* If we have an argument left, set proceed count of breakpoint we
847 stopped at. */
848 if (args != NULL)
c906108c 849 {
347bddb7 850 bpstat bs = NULL;
8671a17b
PA
851 int num, stat;
852 int stopped = 0;
347bddb7
PA
853 struct thread_info *tp;
854
855 if (non_stop)
00431a78 856 tp = inferior_thread ();
347bddb7
PA
857 else
858 {
859 ptid_t last_ptid;
860 struct target_waitstatus ws;
861
862 get_last_target_status (&last_ptid, &ws);
e09875d4 863 tp = find_thread_ptid (last_ptid);
347bddb7
PA
864 }
865 if (tp != NULL)
16c381f0 866 bs = tp->control.stop_bpstat;
8671a17b
PA
867
868 while ((stat = bpstat_num (&bs, &num)) != 0)
869 if (stat > 0)
870 {
871 set_ignore_count (num,
8cae4b3f 872 parse_and_eval_long (args) - 1,
8671a17b
PA
873 from_tty);
874 /* set_ignore_count prints a message ending with a period.
875 So print two spaces before "Continuing.". */
876 if (from_tty)
877 printf_filtered (" ");
878 stopped = 1;
879 }
880
881 if (!stopped && from_tty)
c906108c
SS
882 {
883 printf_filtered
884 ("Not stopped at any breakpoint; argument ignored.\n");
885 }
c906108c
SS
886 }
887
3b12939d
PA
888 ERROR_NO_INFERIOR;
889 ensure_not_tfind_mode ();
890
891 if (!non_stop || !all_threads)
892 {
893 ensure_valid_thread ();
894 ensure_not_running ();
895 }
896
8b88a78e 897 prepare_execution_command (current_top_target (), async_exec);
3b12939d 898
c906108c 899 if (from_tty)
a3f17187 900 printf_filtered (_("Continuing.\n"));
c906108c 901
77ebaa5a 902 continue_1 (all_threads);
c906108c
SS
903}
904\f
edb3359d
DJ
905/* Record the starting point of a "step" or "next" command. */
906
907static void
908set_step_frame (void)
909{
51abb421 910 frame_info *frame = get_current_frame ();
edb3359d 911
51abb421 912 symtab_and_line sal = find_frame_sal (frame);
64ce06e4 913 set_step_info (frame, sal);
51abb421
PA
914
915 CORE_ADDR pc = get_frame_pc (frame);
916 thread_info *tp = inferior_thread ();
64ce06e4 917 tp->control.step_start_function = find_pc_function (pc);
edb3359d
DJ
918}
919
c906108c
SS
920/* Step until outside of current statement. */
921
c906108c 922static void
0b39b52e 923step_command (const char *count_string, int from_tty)
c906108c
SS
924{
925 step_1 (0, 0, count_string);
926}
927
928/* Likewise, but skip over subroutine calls as if single instructions. */
929
c906108c 930static void
0b39b52e 931next_command (const char *count_string, int from_tty)
c906108c
SS
932{
933 step_1 (1, 0, count_string);
934}
935
936/* Likewise, but step only one instruction. */
937
1dd5fedc 938static void
0b39b52e 939stepi_command (const char *count_string, int from_tty)
c906108c
SS
940{
941 step_1 (0, 1, count_string);
942}
943
1dd5fedc 944static void
0b39b52e 945nexti_command (const char *count_string, int from_tty)
c906108c
SS
946{
947 step_1 (1, 1, count_string);
948}
949
243a9253
PA
950/* Data for the FSM that manages the step/next/stepi/nexti
951 commands. */
952
953struct step_command_fsm
954{
955 /* The base class. */
956 struct thread_fsm thread_fsm;
957
958 /* How many steps left in a "step N"-like command. */
959 int count;
960
961 /* If true, this is a next/nexti, otherwise a step/stepi. */
962 int skip_subroutines;
963
964 /* If true, this is a stepi/nexti, otherwise a step/step. */
965 int single_inst;
243a9253
PA
966};
967
8980e177
PA
968static void step_command_fsm_clean_up (struct thread_fsm *self,
969 struct thread_info *thread);
970static int step_command_fsm_should_stop (struct thread_fsm *self,
971 struct thread_info *thread);
243a9253
PA
972static enum async_reply_reason
973 step_command_fsm_async_reply_reason (struct thread_fsm *self);
974
975/* step_command_fsm's vtable. */
976
977static struct thread_fsm_ops step_command_fsm_ops =
978{
979 NULL,
980 step_command_fsm_clean_up,
981 step_command_fsm_should_stop,
982 NULL, /* return_value */
983 step_command_fsm_async_reply_reason,
984};
985
986/* Allocate a new step_command_fsm. */
987
988static struct step_command_fsm *
8980e177 989new_step_command_fsm (struct interp *cmd_interp)
243a9253
PA
990{
991 struct step_command_fsm *sm;
992
993 sm = XCNEW (struct step_command_fsm);
8980e177 994 thread_fsm_ctor (&sm->thread_fsm, &step_command_fsm_ops, cmd_interp);
243a9253
PA
995
996 return sm;
997}
998
999/* Prepare for a step/next/etc. command. Any target resource
1000 allocated here is undone in the FSM's clean_up method. */
1001
1002static void
1003step_command_fsm_prepare (struct step_command_fsm *sm,
1004 int skip_subroutines, int single_inst,
1005 int count, struct thread_info *thread)
1006{
1007 sm->skip_subroutines = skip_subroutines;
1008 sm->single_inst = single_inst;
1009 sm->count = count;
243a9253
PA
1010
1011 /* Leave the si command alone. */
1012 if (!sm->single_inst || sm->skip_subroutines)
1013 set_longjmp_breakpoint (thread, get_frame_id (get_current_frame ()));
1014
1015 thread->control.stepping_command = 1;
1016}
1017
1018static int prepare_one_step (struct step_command_fsm *sm);
1019
c906108c 1020static void
0b39b52e 1021step_1 (int skip_subroutines, int single_inst, const char *count_string)
c906108c 1022{
243a9253 1023 int count;
6c4486e6 1024 int async_exec;
243a9253
PA
1025 struct thread_info *thr;
1026 struct step_command_fsm *step_sm;
c5aa993b 1027
c906108c 1028 ERROR_NO_INFERIOR;
573cda03 1029 ensure_not_tfind_mode ();
d729566a 1030 ensure_valid_thread ();
94cc34af 1031 ensure_not_running ();
43ff13b4 1032
6be9a197
TT
1033 gdb::unique_xmalloc_ptr<char> stripped
1034 = strip_bg_char (count_string, &async_exec);
1035 count_string = stripped.get ();
c5aa993b 1036
8b88a78e 1037 prepare_execution_command (current_top_target (), async_exec);
43ff13b4 1038
bb518678 1039 count = count_string ? parse_and_eval_long (count_string) : 1;
c906108c 1040
243a9253 1041 clear_proceed_status (1);
611c83ae 1042
243a9253
PA
1043 /* Setup the execution command state machine to handle all the COUNT
1044 steps. */
1045 thr = inferior_thread ();
8980e177 1046 step_sm = new_step_command_fsm (command_interp ());
243a9253 1047 thr->thread_fsm = &step_sm->thread_fsm;
611c83ae 1048
243a9253
PA
1049 step_command_fsm_prepare (step_sm, skip_subroutines,
1050 single_inst, count, thr);
c2d11a7d 1051
0b333c5e
PA
1052 /* Do only one step for now, before returning control to the event
1053 loop. Let the continuation figure out how many other steps we
1054 need to do, and handle them one at the time, through
1055 step_once. */
243a9253
PA
1056 if (!prepare_one_step (step_sm))
1057 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
1058 else
1059 {
3b12939d
PA
1060 int proceeded;
1061
243a9253
PA
1062 /* Stepped into an inline frame. Pretend that we've
1063 stopped. */
8980e177 1064 thread_fsm_clean_up (thr->thread_fsm, thr);
3b12939d
PA
1065 proceeded = normal_stop ();
1066 if (!proceeded)
1067 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
1068 all_uis_check_sync_execution_done ();
243a9253 1069 }
c2d11a7d 1070}
c906108c 1071
243a9253
PA
1072/* Implementation of the 'should_stop' FSM method for stepping
1073 commands. Called after we are done with one step operation, to
1074 check whether we need to step again, before we print the prompt and
1075 return control to the user. If count is > 1, returns false, as we
1076 will need to keep going. */
6339bfc4 1077
243a9253 1078static int
8980e177 1079step_command_fsm_should_stop (struct thread_fsm *self, struct thread_info *tp)
c2d11a7d 1080{
243a9253 1081 struct step_command_fsm *sm = (struct step_command_fsm *) self;
f13468d9 1082
243a9253 1083 if (tp->control.stop_step)
f13468d9 1084 {
243a9253
PA
1085 /* There are more steps to make, and we did stop due to
1086 ending a stepping range. Do another step. */
1087 if (--sm->count > 0)
1088 return prepare_one_step (sm);
af679fd0 1089
243a9253 1090 thread_fsm_set_finished (self);
f107f563 1091 }
af679fd0 1092
243a9253 1093 return 1;
c2d11a7d
JM
1094}
1095
243a9253 1096/* Implementation of the 'clean_up' FSM method for stepping commands. */
37d94800
PA
1097
1098static void
8980e177 1099step_command_fsm_clean_up (struct thread_fsm *self, struct thread_info *thread)
bfec99b2 1100{
243a9253
PA
1101 struct step_command_fsm *sm = (struct step_command_fsm *) self;
1102
1103 if (!sm->single_inst || sm->skip_subroutines)
8980e177 1104 delete_longjmp_breakpoint (thread->global_num);
243a9253
PA
1105}
1106
1107/* Implementation of the 'async_reply_reason' FSM method for stepping
1108 commands. */
1109
1110static enum async_reply_reason
1111step_command_fsm_async_reply_reason (struct thread_fsm *self)
1112{
1113 return EXEC_ASYNC_END_STEPPING_RANGE;
1114}
1115
1116/* Prepare for one step in "step N". The actual target resumption is
1117 done by the caller. Return true if we're done and should thus
1118 report a stop to the user. Returns false if the target needs to be
1119 resumed. */
c2d11a7d 1120
243a9253
PA
1121static int
1122prepare_one_step (struct step_command_fsm *sm)
1123{
1124 if (sm->count > 0)
c906108c 1125 {
243a9253
PA
1126 struct frame_info *frame = get_current_frame ();
1127
4e1c45ea
PA
1128 /* Don't assume THREAD is a valid thread id. It is set to -1 if
1129 the longjmp breakpoint was not required. Use the
1130 INFERIOR_PTID thread instead, which is the same thread when
1131 THREAD is set. */
1132 struct thread_info *tp = inferior_thread ();
abbb1732 1133
edb3359d 1134 set_step_frame ();
c906108c 1135
243a9253 1136 if (!sm->single_inst)
c906108c 1137 {
1641cfcc
PA
1138 CORE_ADDR pc;
1139
edb3359d 1140 /* Step at an inlined function behaves like "down". */
243a9253 1141 if (!sm->skip_subroutines
00431a78 1142 && inline_skipped_frames (tp))
edb3359d 1143 {
09cee04b
PA
1144 ptid_t resume_ptid;
1145
1146 /* Pretend that we've ran. */
1147 resume_ptid = user_visible_resume_ptid (1);
1148 set_running (resume_ptid, 1);
1149
00431a78 1150 step_into_inline_frame (tp);
243a9253
PA
1151 sm->count--;
1152 return prepare_one_step (sm);
edb3359d
DJ
1153 }
1154
1641cfcc
PA
1155 pc = get_frame_pc (frame);
1156 find_pc_line_pc_range (pc,
16c381f0
JK
1157 &tp->control.step_range_start,
1158 &tp->control.step_range_end);
5fbbeb29 1159
c1e36e3e
PA
1160 tp->control.may_range_step = 1;
1161
5fbbeb29 1162 /* If we have no line info, switch to stepi mode. */
16c381f0 1163 if (tp->control.step_range_end == 0 && step_stop_if_no_debug)
c1e36e3e
PA
1164 {
1165 tp->control.step_range_start = tp->control.step_range_end = 1;
1166 tp->control.may_range_step = 0;
1167 }
16c381f0 1168 else if (tp->control.step_range_end == 0)
c906108c 1169 {
2c02bd72 1170 const char *name;
abbb1732 1171
1641cfcc 1172 if (find_pc_partial_function (pc, &name,
16c381f0
JK
1173 &tp->control.step_range_start,
1174 &tp->control.step_range_end) == 0)
8a3fe4f8 1175 error (_("Cannot find bounds of current function"));
c906108c 1176
223ffa71 1177 target_terminal::ours_for_output ();
3e43a32a
MS
1178 printf_filtered (_("Single stepping until exit from function %s,"
1179 "\nwhich has no line number information.\n"),
1180 name);
c906108c
SS
1181 }
1182 }
1183 else
1184 {
1185 /* Say we are stepping, but stop after one insn whatever it does. */
16c381f0 1186 tp->control.step_range_start = tp->control.step_range_end = 1;
243a9253 1187 if (!sm->skip_subroutines)
c906108c
SS
1188 /* It is stepi.
1189 Don't step over function calls, not even to functions lacking
1190 line numbers. */
16c381f0 1191 tp->control.step_over_calls = STEP_OVER_NONE;
c906108c
SS
1192 }
1193
243a9253 1194 if (sm->skip_subroutines)
16c381f0 1195 tp->control.step_over_calls = STEP_OVER_ALL;
c906108c 1196
243a9253 1197 return 0;
c906108c 1198 }
243a9253
PA
1199
1200 /* Done. */
1201 thread_fsm_set_finished (&sm->thread_fsm);
1202 return 1;
c906108c 1203}
c2d11a7d 1204
c906108c
SS
1205\f
1206/* Continue program at specified address. */
1207
1208static void
0b39b52e 1209jump_command (const char *arg, int from_tty)
c906108c 1210{
5af949e3 1211 struct gdbarch *gdbarch = get_current_arch ();
52f0bd74 1212 CORE_ADDR addr;
c906108c
SS
1213 struct symbol *fn;
1214 struct symbol *sfn;
6c4486e6 1215 int async_exec;
c5aa993b 1216
c906108c 1217 ERROR_NO_INFERIOR;
573cda03 1218 ensure_not_tfind_mode ();
d729566a 1219 ensure_valid_thread ();
94cc34af 1220 ensure_not_running ();
c906108c 1221
1777feb0 1222 /* Find out whether we must run in the background. */
6be9a197
TT
1223 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (arg, &async_exec);
1224 arg = stripped.get ();
43ff13b4 1225
8b88a78e 1226 prepare_execution_command (current_top_target (), async_exec);
43ff13b4 1227
c906108c 1228 if (!arg)
e2e0b3e5 1229 error_no_arg (_("starting address"));
c906108c 1230
6c5b2ebe
PA
1231 std::vector<symtab_and_line> sals
1232 = decode_line_with_last_displayed (arg, DECODE_LINE_FUNFIRSTLINE);
1233 if (sals.size () != 1)
1234 error (_("Unreasonable jump request"));
c906108c 1235
6c5b2ebe
PA
1236 symtab_and_line &sal = sals[0];
1237
c906108c 1238 if (sal.symtab == 0 && sal.pc == 0)
8a3fe4f8 1239 error (_("No source file has been specified."));
c906108c 1240
1777feb0 1241 resolve_sal_pc (&sal); /* May error out. */
c906108c 1242
1777feb0 1243 /* See if we are trying to jump to another function. */
c906108c
SS
1244 fn = get_frame_function (get_current_frame ());
1245 sfn = find_pc_function (sal.pc);
1246 if (fn != NULL && sfn != fn)
1247 {
9e2f0ad4 1248 if (!query (_("Line %d is not in `%s'. Jump anyway? "), sal.line,
de5ad195 1249 SYMBOL_PRINT_NAME (fn)))
c906108c 1250 {
8a3fe4f8 1251 error (_("Not confirmed."));
c906108c
SS
1252 /* NOTREACHED */
1253 }
1254 }
1255
c5aa993b 1256 if (sfn != NULL)
c906108c 1257 {
253342b8
DE
1258 struct obj_section *section;
1259
c906108c 1260 fixup_symbol_section (sfn, 0);
08be3fe3 1261 section = SYMBOL_OBJ_SECTION (symbol_objfile (sfn), sfn);
253342b8
DE
1262 if (section_is_overlay (section)
1263 && !section_is_mapped (section))
c906108c 1264 {
3e43a32a
MS
1265 if (!query (_("WARNING!!! Destination is in "
1266 "unmapped overlay! Jump anyway? ")))
c906108c 1267 {
8a3fe4f8 1268 error (_("Not confirmed."));
c906108c
SS
1269 /* NOTREACHED */
1270 }
1271 }
1272 }
1273
c906108c
SS
1274 addr = sal.pc;
1275
1276 if (from_tty)
1277 {
a3f17187 1278 printf_filtered (_("Continuing at "));
5af949e3 1279 fputs_filtered (paddress (gdbarch, addr), gdb_stdout);
c906108c
SS
1280 printf_filtered (".\n");
1281 }
1282
70509625 1283 clear_proceed_status (0);
64ce06e4 1284 proceed (addr, GDB_SIGNAL_0);
c906108c 1285}
c906108c 1286\f
c906108c
SS
1287/* Continue program giving it specified signal. */
1288
1289static void
0b39b52e 1290signal_command (const char *signum_exp, int from_tty)
c906108c 1291{
2ea28649 1292 enum gdb_signal oursig;
6c4486e6 1293 int async_exec;
c906108c
SS
1294
1295 dont_repeat (); /* Too dangerous. */
1296 ERROR_NO_INFERIOR;
573cda03 1297 ensure_not_tfind_mode ();
d729566a 1298 ensure_valid_thread ();
94cc34af 1299 ensure_not_running ();
c906108c 1300
32c1e744 1301 /* Find out whether we must run in the background. */
6be9a197
TT
1302 gdb::unique_xmalloc_ptr<char> stripped
1303 = strip_bg_char (signum_exp, &async_exec);
1304 signum_exp = stripped.get ();
32c1e744 1305
8b88a78e 1306 prepare_execution_command (current_top_target (), async_exec);
32c1e744 1307
c906108c 1308 if (!signum_exp)
e2e0b3e5 1309 error_no_arg (_("signal number"));
c906108c
SS
1310
1311 /* It would be even slicker to make signal names be valid expressions,
1312 (the type could be "enum $signal" or some such), then the user could
1313 assign them to convenience variables. */
2ea28649 1314 oursig = gdb_signal_from_name (signum_exp);
c906108c 1315
a493e3e2 1316 if (oursig == GDB_SIGNAL_UNKNOWN)
c906108c
SS
1317 {
1318 /* No, try numeric. */
bb518678 1319 int num = parse_and_eval_long (signum_exp);
c906108c
SS
1320
1321 if (num == 0)
a493e3e2 1322 oursig = GDB_SIGNAL_0;
c906108c 1323 else
2ea28649 1324 oursig = gdb_signal_from_command (num);
c906108c
SS
1325 }
1326
70509625
PA
1327 /* Look for threads other than the current that this command ends up
1328 resuming too (due to schedlock off), and warn if they'll get a
1329 signal delivered. "signal 0" is used to suppress a previous
1330 signal, but if the current thread is no longer the one that got
1331 the signal, then the user is potentially suppressing the signal
1332 of the wrong thread. */
1333 if (!non_stop)
1334 {
70509625
PA
1335 int must_confirm = 0;
1336
1337 /* This indicates what will be resumed. Either a single thread,
1338 a whole process, or all threads of all processes. */
08036331 1339 ptid_t resume_ptid = user_visible_resume_ptid (0);
70509625 1340
08036331 1341 for (thread_info *tp : all_non_exited_threads (resume_ptid))
70509625 1342 {
d7e15655 1343 if (tp->ptid == inferior_ptid)
70509625 1344 continue;
70509625
PA
1345
1346 if (tp->suspend.stop_signal != GDB_SIGNAL_0
1347 && signal_pass_state (tp->suspend.stop_signal))
1348 {
1349 if (!must_confirm)
1350 printf_unfiltered (_("Note:\n"));
43792cf0
PA
1351 printf_unfiltered (_(" Thread %s previously stopped with signal %s, %s.\n"),
1352 print_thread_id (tp),
70509625
PA
1353 gdb_signal_to_name (tp->suspend.stop_signal),
1354 gdb_signal_to_string (tp->suspend.stop_signal));
1355 must_confirm = 1;
1356 }
1357 }
1358
1359 if (must_confirm
43792cf0 1360 && !query (_("Continuing thread %s (the current thread) with specified signal will\n"
70509625
PA
1361 "still deliver the signals noted above to their respective threads.\n"
1362 "Continue anyway? "),
43792cf0 1363 print_thread_id (inferior_thread ())))
70509625
PA
1364 error (_("Not confirmed."));
1365 }
1366
c906108c
SS
1367 if (from_tty)
1368 {
a493e3e2 1369 if (oursig == GDB_SIGNAL_0)
a3f17187 1370 printf_filtered (_("Continuing with no signal.\n"));
c906108c 1371 else
a3f17187 1372 printf_filtered (_("Continuing with signal %s.\n"),
2ea28649 1373 gdb_signal_to_name (oursig));
c906108c
SS
1374 }
1375
70509625 1376 clear_proceed_status (0);
64ce06e4 1377 proceed ((CORE_ADDR) -1, oursig);
c906108c
SS
1378}
1379
81219e53
DE
1380/* Queue a signal to be delivered to the current thread. */
1381
1382static void
0b39b52e 1383queue_signal_command (const char *signum_exp, int from_tty)
81219e53
DE
1384{
1385 enum gdb_signal oursig;
1386 struct thread_info *tp;
1387
1388 ERROR_NO_INFERIOR;
1389 ensure_not_tfind_mode ();
1390 ensure_valid_thread ();
1391 ensure_not_running ();
1392
1393 if (signum_exp == NULL)
1394 error_no_arg (_("signal number"));
1395
1396 /* It would be even slicker to make signal names be valid expressions,
1397 (the type could be "enum $signal" or some such), then the user could
1398 assign them to convenience variables. */
1399 oursig = gdb_signal_from_name (signum_exp);
1400
1401 if (oursig == GDB_SIGNAL_UNKNOWN)
1402 {
1403 /* No, try numeric. */
1404 int num = parse_and_eval_long (signum_exp);
1405
1406 if (num == 0)
1407 oursig = GDB_SIGNAL_0;
1408 else
1409 oursig = gdb_signal_from_command (num);
1410 }
1411
1412 if (oursig != GDB_SIGNAL_0
1413 && !signal_pass_state (oursig))
1414 error (_("Signal handling set to not pass this signal to the program."));
1415
1416 tp = inferior_thread ();
1417 tp->suspend.stop_signal = oursig;
1418}
1419
cfc31633
PA
1420/* Data for the FSM that manages the until (with no argument)
1421 command. */
1422
1423struct until_next_fsm
fa4cd53f 1424{
cfc31633
PA
1425 /* The base class. */
1426 struct thread_fsm thread_fsm;
1427
1428 /* The thread that as current when the command was executed. */
fa4cd53f
PA
1429 int thread;
1430};
1431
8980e177
PA
1432static int until_next_fsm_should_stop (struct thread_fsm *self,
1433 struct thread_info *thread);
1434static void until_next_fsm_clean_up (struct thread_fsm *self,
1435 struct thread_info *thread);
cfc31633
PA
1436static enum async_reply_reason
1437 until_next_fsm_async_reply_reason (struct thread_fsm *self);
1438
1439/* until_next_fsm's vtable. */
1440
1441static struct thread_fsm_ops until_next_fsm_ops =
1442{
1443 NULL, /* dtor */
1444 until_next_fsm_clean_up,
1445 until_next_fsm_should_stop,
1446 NULL, /* return_value */
1447 until_next_fsm_async_reply_reason,
1448};
1449
1450/* Allocate a new until_next_fsm. */
1451
1452static struct until_next_fsm *
8980e177 1453new_until_next_fsm (struct interp *cmd_interp, int thread)
cfc31633
PA
1454{
1455 struct until_next_fsm *sm;
1456
1457 sm = XCNEW (struct until_next_fsm);
8980e177 1458 thread_fsm_ctor (&sm->thread_fsm, &until_next_fsm_ops, cmd_interp);
cfc31633
PA
1459
1460 sm->thread = thread;
1461
1462 return sm;
1463}
1464
1465/* Implementation of the 'should_stop' FSM method for the until (with
1466 no arg) command. */
1467
1468static int
8980e177
PA
1469until_next_fsm_should_stop (struct thread_fsm *self,
1470 struct thread_info *tp)
cfc31633 1471{
cfc31633
PA
1472 if (tp->control.stop_step)
1473 thread_fsm_set_finished (self);
1474
1475 return 1;
1476}
1477
1478/* Implementation of the 'clean_up' FSM method for the until (with no
1479 arg) command. */
186c406b
TT
1480
1481static void
8980e177 1482until_next_fsm_clean_up (struct thread_fsm *self, struct thread_info *thread)
186c406b 1483{
8980e177 1484 delete_longjmp_breakpoint (thread->global_num);
cfc31633
PA
1485}
1486
1487/* Implementation of the 'async_reply_reason' FSM method for the until
1488 (with no arg) command. */
1489
1490static enum async_reply_reason
1491until_next_fsm_async_reply_reason (struct thread_fsm *self)
1492{
1493 return EXEC_ASYNC_END_STEPPING_RANGE;
186c406b
TT
1494}
1495
c906108c
SS
1496/* Proceed until we reach a different source line with pc greater than
1497 our current one or exit the function. We skip calls in both cases.
1498
1499 Note that eventually this command should probably be changed so
1500 that only source lines are printed out when we hit the breakpoint
1501 we set. This may involve changes to wait_for_inferior and the
1502 proceed status code. */
1503
c906108c 1504static void
fba45db2 1505until_next_command (int from_tty)
c906108c
SS
1506{
1507 struct frame_info *frame;
1508 CORE_ADDR pc;
1509 struct symbol *func;
1510 struct symtab_and_line sal;
4e1c45ea 1511 struct thread_info *tp = inferior_thread ();
5d5658a1 1512 int thread = tp->global_num;
cfc31633 1513 struct until_next_fsm *sm;
c5aa993b 1514
70509625 1515 clear_proceed_status (0);
edb3359d 1516 set_step_frame ();
c906108c
SS
1517
1518 frame = get_current_frame ();
1519
1520 /* Step until either exited from this function or greater
1521 than the current line (if in symbolic section) or pc (if
1777feb0 1522 not). */
c906108c 1523
1c7819ef 1524 pc = get_frame_pc (frame);
c906108c 1525 func = find_pc_function (pc);
c5aa993b 1526
c906108c
SS
1527 if (!func)
1528 {
7cbd4a93 1529 struct bound_minimal_symbol msymbol = lookup_minimal_symbol_by_pc (pc);
c5aa993b 1530
7cbd4a93 1531 if (msymbol.minsym == NULL)
8a3fe4f8 1532 error (_("Execution is not within a known function."));
c5aa993b 1533
77e371c0 1534 tp->control.step_range_start = BMSYMBOL_VALUE_ADDRESS (msymbol);
7e09a223
YQ
1535 /* The upper-bound of step_range is exclusive. In order to make PC
1536 within the range, set the step_range_end with PC + 1. */
1537 tp->control.step_range_end = pc + 1;
c906108c
SS
1538 }
1539 else
1540 {
1541 sal = find_pc_line (pc, 0);
c5aa993b 1542
2b1ffcfd 1543 tp->control.step_range_start = BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (func));
16c381f0 1544 tp->control.step_range_end = sal.end;
c906108c 1545 }
c1e36e3e 1546 tp->control.may_range_step = 1;
c5aa993b 1547
16c381f0 1548 tp->control.step_over_calls = STEP_OVER_ALL;
c906108c 1549
186c406b 1550 set_longjmp_breakpoint (tp, get_frame_id (frame));
5419bdae 1551 delete_longjmp_breakpoint_cleanup lj_deleter (thread);
186c406b 1552
8980e177 1553 sm = new_until_next_fsm (command_interp (), tp->global_num);
cfc31633 1554 tp->thread_fsm = &sm->thread_fsm;
5419bdae 1555 lj_deleter.release ();
fa4cd53f 1556
cfc31633 1557 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
c906108c
SS
1558}
1559
c5aa993b 1560static void
0b39b52e 1561until_command (const char *arg, int from_tty)
c906108c 1562{
6c4486e6 1563 int async_exec;
43ff13b4 1564
4247603b 1565 ERROR_NO_INFERIOR;
573cda03 1566 ensure_not_tfind_mode ();
4247603b
PA
1567 ensure_valid_thread ();
1568 ensure_not_running ();
573cda03 1569
1777feb0 1570 /* Find out whether we must run in the background. */
6be9a197
TT
1571 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (arg, &async_exec);
1572 arg = stripped.get ();
43ff13b4 1573
8b88a78e 1574 prepare_execution_command (current_top_target (), async_exec);
43ff13b4 1575
c906108c 1576 if (arg)
ae66c1fc 1577 until_break_command (arg, from_tty, 0);
c906108c
SS
1578 else
1579 until_next_command (from_tty);
1580}
ae66c1fc
EZ
1581
1582static void
0b39b52e 1583advance_command (const char *arg, int from_tty)
ae66c1fc 1584{
6c4486e6 1585 int async_exec;
ae66c1fc 1586
4247603b 1587 ERROR_NO_INFERIOR;
573cda03 1588 ensure_not_tfind_mode ();
4247603b
PA
1589 ensure_valid_thread ();
1590 ensure_not_running ();
573cda03 1591
ae66c1fc 1592 if (arg == NULL)
e2e0b3e5 1593 error_no_arg (_("a location"));
ae66c1fc
EZ
1594
1595 /* Find out whether we must run in the background. */
6be9a197
TT
1596 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (arg, &async_exec);
1597 arg = stripped.get ();
ae66c1fc 1598
8b88a78e 1599 prepare_execution_command (current_top_target (), async_exec);
ae66c1fc
EZ
1600
1601 until_break_command (arg, from_tty, 1);
1602}
c906108c 1603\f
cc72b2a2 1604/* Return the value of the result of a function at the end of a 'finish'
8a6c4031
JK
1605 command/BP. DTOR_DATA (if not NULL) can represent inferior registers
1606 right after an inferior call has finished. */
f941662f 1607
cc72b2a2 1608struct value *
0700e23e 1609get_return_value (struct value *function, struct type *value_type)
11cf8741 1610{
215c69dc
YQ
1611 regcache *stop_regs = get_current_regcache ();
1612 struct gdbarch *gdbarch = stop_regs->arch ();
44e5158b
AC
1613 struct value *value;
1614
f168693b 1615 value_type = check_typedef (value_type);
44e5158b 1616 gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
11cf8741 1617
92ad9cd9
AC
1618 /* FIXME: 2003-09-27: When returning from a nested inferior function
1619 call, it's possible (with no help from the architecture vector)
1620 to locate and return/print a "struct return" value. This is just
7a9dd1b2 1621 a more complicated case of what is already being done in the
92ad9cd9
AC
1622 inferior function call code. In fact, when inferior function
1623 calls are made async, this will likely be made the norm. */
31db7b6c 1624
6a3a010b 1625 switch (gdbarch_return_value (gdbarch, function, value_type,
c055b101 1626 NULL, NULL, NULL))
44e5158b 1627 {
750eb019
AC
1628 case RETURN_VALUE_REGISTER_CONVENTION:
1629 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
181fc57c 1630 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
44e5158b 1631 value = allocate_value (value_type);
215c69dc 1632 gdbarch_return_value (gdbarch, function, value_type, stop_regs,
990a07ab 1633 value_contents_raw (value), NULL);
750eb019
AC
1634 break;
1635 case RETURN_VALUE_STRUCT_CONVENTION:
1636 value = NULL;
1637 break;
1638 default:
e2e0b3e5 1639 internal_error (__FILE__, __LINE__, _("bad switch"));
44e5158b 1640 }
bb472c1e 1641
cc72b2a2
KP
1642 return value;
1643}
1644
243a9253
PA
1645/* The captured function return value/type and its position in the
1646 value history. */
cc72b2a2 1647
243a9253 1648struct return_value_info
cc72b2a2 1649{
243a9253
PA
1650 /* The captured return value. May be NULL if we weren't able to
1651 retrieve it. See get_return_value. */
1652 struct value *value;
1653
1654 /* The return type. In some cases, we'll not be able extract the
1655 return value, but we always know the type. */
1656 struct type *type;
1657
1658 /* If we captured a value, this is the value history index. */
1659 int value_history_index;
1660};
1661
1662/* Helper for print_return_value. */
cc72b2a2 1663
243a9253
PA
1664static void
1665print_return_value_1 (struct ui_out *uiout, struct return_value_info *rv)
1666{
1667 if (rv->value != NULL)
31db7b6c 1668 {
79a45b7d
TT
1669 struct value_print_options opts;
1670
31db7b6c 1671 /* Print it. */
112e8700
SM
1672 uiout->text ("Value returned is ");
1673 uiout->field_fmt ("gdb-result-var", "$%d",
d7e74731 1674 rv->value_history_index);
112e8700 1675 uiout->text (" = ");
5d9a0608 1676 get_user_print_options (&opts);
d7e74731
PA
1677
1678 string_file stb;
1679
1680 value_print (rv->value, &stb, &opts);
112e8700
SM
1681 uiout->field_stream ("return-value", stb);
1682 uiout->text ("\n");
31db7b6c
MK
1683 }
1684 else
1685 {
2f408ecb 1686 std::string type_name = type_to_string (rv->type);
112e8700
SM
1687 uiout->text ("Value returned has type: ");
1688 uiout->field_string ("return-type", type_name.c_str ());
1689 uiout->text (".");
1690 uiout->text (" Cannot determine contents\n");
31db7b6c 1691 }
11cf8741
JM
1692}
1693
243a9253
PA
1694/* Print the result of a function at the end of a 'finish' command.
1695 RV points at an object representing the captured return value/type
1696 and its position in the value history. */
1697
1698void
1699print_return_value (struct ui_out *uiout, struct return_value_info *rv)
1700{
f097f5ad
TT
1701 if (rv->type == NULL
1702 || TYPE_CODE (check_typedef (rv->type)) == TYPE_CODE_VOID)
243a9253
PA
1703 return;
1704
1705 TRY
1706 {
1707 /* print_return_value_1 can throw an exception in some
1708 circumstances. We need to catch this so that we still
1709 delete the breakpoint. */
1710 print_return_value_1 (uiout, rv);
1711 }
1712 CATCH (ex, RETURN_MASK_ALL)
1713 {
1714 exception_print (gdb_stdout, ex);
1715 }
1716 END_CATCH
1717}
1718
1719/* Data for the FSM that manages the finish command. */
f941662f 1720
243a9253 1721struct finish_command_fsm
43ff13b4 1722{
243a9253
PA
1723 /* The base class. */
1724 struct thread_fsm thread_fsm;
1725
243a9253
PA
1726 /* The momentary breakpoint set at the function's return address in
1727 the caller. */
43ff13b4 1728 struct breakpoint *breakpoint;
243a9253
PA
1729
1730 /* The function that we're stepping out of. */
bfec99b2 1731 struct symbol *function;
8a6c4031 1732
243a9253
PA
1733 /* If the FSM finishes successfully, this stores the function's
1734 return value. */
1735 struct return_value_info return_value;
bfec99b2 1736};
c5aa993b 1737
8980e177
PA
1738static int finish_command_fsm_should_stop (struct thread_fsm *self,
1739 struct thread_info *thread);
1740static void finish_command_fsm_clean_up (struct thread_fsm *self,
1741 struct thread_info *thread);
243a9253
PA
1742static struct return_value_info *
1743 finish_command_fsm_return_value (struct thread_fsm *self);
1744static enum async_reply_reason
1745 finish_command_fsm_async_reply_reason (struct thread_fsm *self);
1746
1747/* finish_command_fsm's vtable. */
1748
1749static struct thread_fsm_ops finish_command_fsm_ops =
1750{
1751 NULL, /* dtor */
1752 finish_command_fsm_clean_up,
1753 finish_command_fsm_should_stop,
1754 finish_command_fsm_return_value,
1755 finish_command_fsm_async_reply_reason,
8980e177 1756 NULL, /* should_notify_stop */
243a9253
PA
1757};
1758
1759/* Allocate a new finish_command_fsm. */
1760
1761static struct finish_command_fsm *
8980e177 1762new_finish_command_fsm (struct interp *cmd_interp)
bfec99b2 1763{
243a9253
PA
1764 struct finish_command_fsm *sm;
1765
1766 sm = XCNEW (struct finish_command_fsm);
8980e177 1767 thread_fsm_ctor (&sm->thread_fsm, &finish_command_fsm_ops, cmd_interp);
243a9253
PA
1768
1769 return sm;
1770}
347bddb7 1771
243a9253
PA
1772/* Implementation of the 'should_stop' FSM method for the finish
1773 commands. Detects whether the thread stepped out of the function
1774 successfully, and if so, captures the function's return value and
1775 marks the FSM finished. */
1776
1777static int
8980e177
PA
1778finish_command_fsm_should_stop (struct thread_fsm *self,
1779 struct thread_info *tp)
243a9253
PA
1780{
1781 struct finish_command_fsm *f = (struct finish_command_fsm *) self;
1782 struct return_value_info *rv = &f->return_value;
243a9253
PA
1783
1784 if (f->function != NULL
1785 && bpstat_find_breakpoint (tp->control.stop_bpstat,
1786 f->breakpoint) != NULL)
43ff13b4 1787 {
243a9253
PA
1788 /* We're done. */
1789 thread_fsm_set_finished (self);
bfec99b2 1790
243a9253
PA
1791 rv->type = TYPE_TARGET_TYPE (SYMBOL_TYPE (f->function));
1792 if (rv->type == NULL)
1793 internal_error (__FILE__, __LINE__,
1794 _("finish_command: function has no target type"));
f5871ec0 1795
f097f5ad 1796 if (TYPE_CODE (check_typedef (rv->type)) != TYPE_CODE_VOID)
40c549d6 1797 {
243a9253
PA
1798 struct value *func;
1799
1800 func = read_var_value (f->function, NULL, get_current_frame ());
0700e23e 1801 rv->value = get_return_value (func, rv->type);
aca20ec4
KB
1802 if (rv->value != NULL)
1803 rv->value_history_index = record_latest_value (rv->value);
243a9253
PA
1804 }
1805 }
1806 else if (tp->control.stop_step)
1807 {
1808 /* Finishing from an inline frame, or reverse finishing. In
1809 either case, there's no way to retrieve the return value. */
1810 thread_fsm_set_finished (self);
1811 }
fa4cd53f 1812
243a9253
PA
1813 return 1;
1814}
40c549d6 1815
243a9253
PA
1816/* Implementation of the 'clean_up' FSM method for the finish
1817 commands. */
fa4cd53f 1818
243a9253 1819static void
8980e177
PA
1820finish_command_fsm_clean_up (struct thread_fsm *self,
1821 struct thread_info *thread)
243a9253
PA
1822{
1823 struct finish_command_fsm *f = (struct finish_command_fsm *) self;
fa4cd53f 1824
243a9253
PA
1825 if (f->breakpoint != NULL)
1826 {
1827 delete_breakpoint (f->breakpoint);
1828 f->breakpoint = NULL;
43ff13b4 1829 }
8980e177 1830 delete_longjmp_breakpoint (thread->global_num);
243a9253 1831}
f941662f 1832
243a9253
PA
1833/* Implementation of the 'return_value' FSM method for the finish
1834 commands. */
1835
1836static struct return_value_info *
1837finish_command_fsm_return_value (struct thread_fsm *self)
1838{
1839 struct finish_command_fsm *f = (struct finish_command_fsm *) self;
1840
1841 return &f->return_value;
43ff13b4
JM
1842}
1843
243a9253
PA
1844/* Implementation of the 'async_reply_reason' FSM method for the
1845 finish commands. */
1846
1847static enum async_reply_reason
1848finish_command_fsm_async_reply_reason (struct thread_fsm *self)
604ead4a 1849{
243a9253
PA
1850 if (execution_direction == EXEC_REVERSE)
1851 return EXEC_ASYNC_END_STEPPING_RANGE;
1852 else
1853 return EXEC_ASYNC_FUNCTION_FINISHED;
604ead4a
PA
1854}
1855
b2175913
MS
1856/* finish_backward -- helper function for finish_command. */
1857
1858static void
243a9253 1859finish_backward (struct finish_command_fsm *sm)
b2175913
MS
1860{
1861 struct symtab_and_line sal;
1862 struct thread_info *tp = inferior_thread ();
1c7819ef 1863 CORE_ADDR pc;
b2175913 1864 CORE_ADDR func_addr;
b2175913 1865
1c7819ef
PA
1866 pc = get_frame_pc (get_current_frame ());
1867
1868 if (find_pc_partial_function (pc, NULL, &func_addr, NULL) == 0)
1f267ae3 1869 error (_("Cannot find bounds of current function"));
b2175913
MS
1870
1871 sal = find_pc_line (func_addr, 0);
1872
9da8c2a0 1873 tp->control.proceed_to_finish = 1;
b2175913
MS
1874 /* Special case: if we're sitting at the function entry point,
1875 then all we need to do is take a reverse singlestep. We
1876 don't need to set a breakpoint, and indeed it would do us
1877 no good to do so.
1878
1879 Note that this can only happen at frame #0, since there's
1880 no way that a function up the stack can have a return address
1881 that's equal to its entry point. */
1882
1c7819ef 1883 if (sal.pc != pc)
b2175913 1884 {
a6d9a66e
UW
1885 struct frame_info *frame = get_selected_frame (NULL);
1886 struct gdbarch *gdbarch = get_frame_arch (frame);
9da8c2a0
PA
1887
1888 /* Set a step-resume at the function's entry point. Once that's
1889 hit, we'll do one more step backwards. */
51abb421 1890 symtab_and_line sr_sal;
9da8c2a0
PA
1891 sr_sal.pc = sal.pc;
1892 sr_sal.pspace = get_frame_program_space (frame);
1893 insert_step_resume_breakpoint_at_sal (gdbarch,
1894 sr_sal, null_frame_id);
a6d9a66e 1895
64ce06e4 1896 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
b2175913
MS
1897 }
1898 else
b2175913 1899 {
9da8c2a0
PA
1900 /* We're almost there -- we just need to back up by one more
1901 single-step. */
16c381f0 1902 tp->control.step_range_start = tp->control.step_range_end = 1;
64ce06e4 1903 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
b2175913 1904 }
b2175913
MS
1905}
1906
243a9253
PA
1907/* finish_forward -- helper function for finish_command. FRAME is the
1908 frame that called the function we're about to step out of. */
b2175913
MS
1909
1910static void
243a9253 1911finish_forward (struct finish_command_fsm *sm, struct frame_info *frame)
b2175913 1912{
def166f6 1913 struct frame_id frame_id = get_frame_id (frame);
a6d9a66e 1914 struct gdbarch *gdbarch = get_frame_arch (frame);
b2175913
MS
1915 struct symtab_and_line sal;
1916 struct thread_info *tp = inferior_thread ();
b2175913
MS
1917
1918 sal = find_pc_line (get_frame_pc (frame), 0);
1919 sal.pc = get_frame_pc (frame);
1920
243a9253
PA
1921 sm->breakpoint = set_momentary_breakpoint (gdbarch, sal,
1922 get_stack_frame_id (frame),
454dafbd 1923 bp_finish).release ();
b2175913 1924
c70a6932
JK
1925 /* set_momentary_breakpoint invalidates FRAME. */
1926 frame = NULL;
1927
def166f6 1928 set_longjmp_breakpoint (tp, frame_id);
186c406b 1929
46c03469 1930 /* We want to print return value, please... */
16c381f0 1931 tp->control.proceed_to_finish = 1;
b2175913 1932
243a9253 1933 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
b2175913
MS
1934}
1935
e3b5daf9
MM
1936/* Skip frames for "finish". */
1937
1938static struct frame_info *
1939skip_finish_frames (struct frame_info *frame)
1940{
1941 struct frame_info *start;
1942
1943 do
1944 {
1945 start = frame;
1946
1947 frame = skip_tailcall_frames (frame);
1948 if (frame == NULL)
1949 break;
1950
1951 frame = skip_unwritable_frames (frame);
1952 if (frame == NULL)
1953 break;
1954 }
1955 while (start != frame);
1956
1957 return frame;
1958}
1959
f941662f
MK
1960/* "finish": Set a temporary breakpoint at the place the selected
1961 frame will return to, then continue. */
c906108c
SS
1962
1963static void
0b39b52e 1964finish_command (const char *arg, int from_tty)
c906108c 1965{
52f0bd74 1966 struct frame_info *frame;
6c4486e6 1967 int async_exec;
243a9253
PA
1968 struct finish_command_fsm *sm;
1969 struct thread_info *tp;
43ff13b4 1970
4247603b 1971 ERROR_NO_INFERIOR;
573cda03 1972 ensure_not_tfind_mode ();
4247603b
PA
1973 ensure_valid_thread ();
1974 ensure_not_running ();
573cda03 1975
f941662f 1976 /* Find out whether we must run in the background. */
6be9a197
TT
1977 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (arg, &async_exec);
1978 arg = stripped.get ();
43ff13b4 1979
8b88a78e 1980 prepare_execution_command (current_top_target (), async_exec);
c906108c
SS
1981
1982 if (arg)
8a3fe4f8 1983 error (_("The \"finish\" command does not take any arguments."));
c906108c 1984
206415a3 1985 frame = get_prev_frame (get_selected_frame (_("No selected frame.")));
c906108c 1986 if (frame == 0)
8a3fe4f8 1987 error (_("\"finish\" not meaningful in the outermost frame."));
c906108c 1988
70509625 1989 clear_proceed_status (0);
c906108c 1990
243a9253
PA
1991 tp = inferior_thread ();
1992
8980e177 1993 sm = new_finish_command_fsm (command_interp ());
243a9253
PA
1994
1995 tp->thread_fsm = &sm->thread_fsm;
1996
edb3359d 1997 /* Finishing from an inline frame is completely different. We don't
243a9253 1998 try to show the "return value" - no way to locate it. */
edb3359d
DJ
1999 if (get_frame_type (get_selected_frame (_("No selected frame.")))
2000 == INLINE_FRAME)
2001 {
2002 /* Claim we are stepping in the calling frame. An empty step
2003 range means that we will stop once we aren't in a function
2004 called by that frame. We don't use the magic "1" value for
2005 step_range_end, because then infrun will think this is nexti,
2006 and not step over the rest of this inlined function call. */
51abb421 2007 set_step_info (frame, {});
16c381f0
JK
2008 tp->control.step_range_start = get_frame_pc (frame);
2009 tp->control.step_range_end = tp->control.step_range_start;
2010 tp->control.step_over_calls = STEP_OVER_ALL;
edb3359d
DJ
2011
2012 /* Print info on the selected frame, including level number but not
2013 source. */
2014 if (from_tty)
2015 {
2016 printf_filtered (_("Run till exit from "));
08d72866 2017 print_stack_frame (get_selected_frame (NULL), 1, LOCATION, 0);
edb3359d
DJ
2018 }
2019
64ce06e4 2020 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
edb3359d
DJ
2021 return;
2022 }
2023
c906108c
SS
2024 /* Find the function we will return from. */
2025
243a9253 2026 sm->function = find_pc_function (get_frame_pc (get_selected_frame (NULL)));
c906108c 2027
f941662f
MK
2028 /* Print info on the selected frame, including level number but not
2029 source. */
c906108c
SS
2030 if (from_tty)
2031 {
b2175913
MS
2032 if (execution_direction == EXEC_REVERSE)
2033 printf_filtered (_("Run back to call of "));
2034 else
743649fd 2035 {
243a9253 2036 if (sm->function != NULL && TYPE_NO_RETURN (sm->function->type)
743649fd
MW
2037 && !query (_("warning: Function %s does not return normally.\n"
2038 "Try to finish anyway? "),
243a9253 2039 SYMBOL_PRINT_NAME (sm->function)))
743649fd
MW
2040 error (_("Not confirmed."));
2041 printf_filtered (_("Run till exit from "));
2042 }
b2175913 2043
08d72866 2044 print_stack_frame (get_selected_frame (NULL), 1, LOCATION, 0);
c906108c
SS
2045 }
2046
b2175913 2047 if (execution_direction == EXEC_REVERSE)
243a9253 2048 finish_backward (sm);
b2175913 2049 else
33b4777c 2050 {
e3b5daf9 2051 frame = skip_finish_frames (frame);
7eb89530 2052
33b4777c
MM
2053 if (frame == NULL)
2054 error (_("Cannot find the caller frame."));
2055
2056 finish_forward (sm, frame);
2057 }
c906108c
SS
2058}
2059\f
f941662f 2060
c906108c 2061static void
1d12d88f 2062info_program_command (const char *args, int from_tty)
c906108c 2063{
347bddb7
PA
2064 bpstat bs;
2065 int num, stat;
347bddb7 2066 ptid_t ptid;
c5aa993b 2067
c906108c
SS
2068 if (!target_has_execution)
2069 {
a3f17187 2070 printf_filtered (_("The program being debugged is not being run.\n"));
c906108c
SS
2071 return;
2072 }
2073
347bddb7
PA
2074 if (non_stop)
2075 ptid = inferior_ptid;
2076 else
2077 {
2078 struct target_waitstatus ws;
abbb1732 2079
347bddb7
PA
2080 get_last_target_status (&ptid, &ws);
2081 }
2082
9e7f3bbb 2083 if (ptid == null_ptid || ptid == minus_one_ptid)
00431a78
PA
2084 error (_("No selected thread."));
2085
2086 thread_info *tp = find_thread_ptid (ptid);
2087
2088 if (tp->state == THREAD_EXITED)
347bddb7 2089 error (_("Invalid selected thread."));
00431a78 2090 else if (tp->state == THREAD_RUNNING)
347bddb7
PA
2091 error (_("Selected thread is running."));
2092
16c381f0 2093 bs = tp->control.stop_bpstat;
347bddb7
PA
2094 stat = bpstat_num (&bs, &num);
2095
c906108c 2096 target_files_info ();
5af949e3 2097 printf_filtered (_("Program stopped at %s.\n"),
f2ffa92b 2098 paddress (target_gdbarch (), tp->suspend.stop_pc));
16c381f0 2099 if (tp->control.stop_step)
a3f17187 2100 printf_filtered (_("It stopped after being stepped.\n"));
8671a17b 2101 else if (stat != 0)
c906108c
SS
2102 {
2103 /* There may be several breakpoints in the same place, so this
c5aa993b 2104 isn't as strange as it seems. */
8671a17b 2105 while (stat != 0)
c906108c 2106 {
8671a17b 2107 if (stat < 0)
c906108c 2108 {
3e43a32a
MS
2109 printf_filtered (_("It stopped at a breakpoint "
2110 "that has since been deleted.\n"));
c906108c
SS
2111 }
2112 else
a3f17187 2113 printf_filtered (_("It stopped at breakpoint %d.\n"), num);
8671a17b 2114 stat = bpstat_num (&bs, &num);
c906108c
SS
2115 }
2116 }
a493e3e2 2117 else if (tp->suspend.stop_signal != GDB_SIGNAL_0)
c906108c 2118 {
a3f17187 2119 printf_filtered (_("It stopped with signal %s, %s.\n"),
2ea28649
PA
2120 gdb_signal_to_name (tp->suspend.stop_signal),
2121 gdb_signal_to_string (tp->suspend.stop_signal));
c906108c
SS
2122 }
2123
0d41ba00 2124 if (from_tty)
c906108c 2125 {
3e43a32a
MS
2126 printf_filtered (_("Type \"info stack\" or \"info "
2127 "registers\" for more information.\n"));
c906108c
SS
2128 }
2129}
2130\f
2131static void
69f476a3 2132environment_info (const char *var, int from_tty)
c906108c
SS
2133{
2134 if (var)
2135 {
9a6c7d9c 2136 const char *val = current_inferior ()->environment.get (var);
abbb1732 2137
c906108c
SS
2138 if (val)
2139 {
2140 puts_filtered (var);
2141 puts_filtered (" = ");
2142 puts_filtered (val);
2143 puts_filtered ("\n");
2144 }
2145 else
2146 {
2147 puts_filtered ("Environment variable \"");
2148 puts_filtered (var);
2149 puts_filtered ("\" not defined.\n");
2150 }
2151 }
2152 else
2153 {
9a6c7d9c 2154 char **envp = current_inferior ()->environment.envp ();
abbb1732 2155
9a6c7d9c 2156 for (int idx = 0; envp[idx] != NULL; ++idx)
c906108c 2157 {
9a6c7d9c 2158 puts_filtered (envp[idx]);
c906108c
SS
2159 puts_filtered ("\n");
2160 }
2161 }
2162}
2163
2164static void
69f476a3 2165set_environment_command (const char *arg, int from_tty)
c906108c 2166{
69f476a3 2167 const char *p, *val;
c906108c
SS
2168 int nullset = 0;
2169
2170 if (arg == 0)
e2e0b3e5 2171 error_no_arg (_("environment variable and value"));
c906108c 2172
1777feb0 2173 /* Find seperation between variable name and value. */
c906108c
SS
2174 p = (char *) strchr (arg, '=');
2175 val = (char *) strchr (arg, ' ');
2176
2177 if (p != 0 && val != 0)
2178 {
2179 /* We have both a space and an equals. If the space is before the
c5aa993b 2180 equals, walk forward over the spaces til we see a nonspace
1777feb0 2181 (possibly the equals). */
c906108c
SS
2182 if (p > val)
2183 while (*val == ' ')
2184 val++;
2185
2186 /* Now if the = is after the char following the spaces,
c5aa993b 2187 take the char following the spaces. */
c906108c
SS
2188 if (p > val)
2189 p = val - 1;
2190 }
2191 else if (val != 0 && p == 0)
2192 p = val;
2193
2194 if (p == arg)
e2e0b3e5 2195 error_no_arg (_("environment variable to set"));
c906108c
SS
2196
2197 if (p == 0 || p[1] == 0)
2198 {
2199 nullset = 1;
2200 if (p == 0)
1777feb0 2201 p = arg + strlen (arg); /* So that savestring below will work. */
c906108c
SS
2202 }
2203 else
2204 {
1777feb0 2205 /* Not setting variable value to null. */
c906108c
SS
2206 val = p + 1;
2207 while (*val == ' ' || *val == '\t')
2208 val++;
2209 }
2210
c5aa993b
JM
2211 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
2212 p--;
c906108c 2213
69f476a3 2214 std::string var (arg, p - arg);
c906108c
SS
2215 if (nullset)
2216 {
3e43a32a
MS
2217 printf_filtered (_("Setting environment variable "
2218 "\"%s\" to null value.\n"),
69f476a3
TT
2219 var.c_str ());
2220 current_inferior ()->environment.set (var.c_str (), "");
c906108c
SS
2221 }
2222 else
69f476a3 2223 current_inferior ()->environment.set (var.c_str (), val);
c906108c
SS
2224}
2225
2226static void
69f476a3 2227unset_environment_command (const char *var, int from_tty)
c906108c
SS
2228{
2229 if (var == 0)
2230 {
2231 /* If there is no argument, delete all environment variables.
c5aa993b 2232 Ask for confirmation if reading from the terminal. */
e2e0b3e5 2233 if (!from_tty || query (_("Delete all environment variables? ")))
206726fb 2234 current_inferior ()->environment.clear ();
c906108c
SS
2235 }
2236 else
9a6c7d9c 2237 current_inferior ()->environment.unset (var);
c906108c
SS
2238}
2239
1777feb0 2240/* Handle the execution path (PATH variable). */
c906108c
SS
2241
2242static const char path_var_name[] = "PATH";
2243
c906108c 2244static void
69f476a3 2245path_info (const char *args, int from_tty)
c906108c
SS
2246{
2247 puts_filtered ("Executable and object file path: ");
9a6c7d9c 2248 puts_filtered (current_inferior ()->environment.get (path_var_name));
c906108c
SS
2249 puts_filtered ("\n");
2250}
2251
2252/* Add zero or more directories to the front of the execution path. */
2253
2254static void
0b39b52e 2255path_command (const char *dirname, int from_tty)
c906108c
SS
2256{
2257 char *exec_path;
a121b7c1 2258 const char *env;
abbb1732 2259
c906108c 2260 dont_repeat ();
9a6c7d9c 2261 env = current_inferior ()->environment.get (path_var_name);
1777feb0 2262 /* Can be null if path is not set. */
c906108c
SS
2263 if (!env)
2264 env = "";
4fcf66da 2265 exec_path = xstrdup (env);
c906108c 2266 mod_path (dirname, &exec_path);
9a6c7d9c 2267 current_inferior ()->environment.set (path_var_name, exec_path);
b8c9b27d 2268 xfree (exec_path);
c906108c 2269 if (from_tty)
c5aa993b 2270 path_info ((char *) NULL, from_tty);
c906108c 2271}
c906108c 2272\f
c5aa993b 2273
e813d34a
RK
2274static void
2275pad_to_column (string_file &stream, int col)
2276{
2277 /* At least one space must be printed to separate columns. */
2278 stream.putc (' ');
2279 const int size = stream.size ();
2280 if (size < col)
2281 stream.puts (n_spaces (col - size));
2282}
2283
1292279a
PA
2284/* Print out the register NAME with value VAL, to FILE, in the default
2285 fashion. */
2286
2287static void
2288default_print_one_register_info (struct ui_file *file,
2289 const char *name,
2290 struct value *val)
2291{
2292 struct type *regtype = value_type (val);
f69d9aef 2293 int print_raw_format;
e813d34a
RK
2294 string_file format_stream;
2295 enum tab_stops
2296 {
2297 value_column_1 = 15,
2298 /* Give enough room for "0x", 16 hex digits and two spaces in
2299 preceding column. */
2300 value_column_2 = value_column_1 + 2 + 16 + 2,
2301 };
1292279a 2302
e813d34a
RK
2303 format_stream.puts (name);
2304 pad_to_column (format_stream, value_column_1);
1292279a 2305
f69d9aef
AB
2306 print_raw_format = (value_entirely_available (val)
2307 && !value_optimized_out (val));
1292279a
PA
2308
2309 /* If virtual format is floating, print it that way, and in raw
2310 hex. */
2311 if (TYPE_CODE (regtype) == TYPE_CODE_FLT
2312 || TYPE_CODE (regtype) == TYPE_CODE_DECFLOAT)
2313 {
1292279a
PA
2314 struct value_print_options opts;
2315 const gdb_byte *valaddr = value_contents_for_printing (val);
2316 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (regtype));
2317
2318 get_user_print_options (&opts);
2319 opts.deref_ref = 1;
2320
2321 val_print (regtype,
1292279a 2322 value_embedded_offset (val), 0,
e813d34a 2323 &format_stream, 0, val, &opts, current_language);
1292279a 2324
f69d9aef
AB
2325 if (print_raw_format)
2326 {
e813d34a
RK
2327 pad_to_column (format_stream, value_column_2);
2328 format_stream.puts ("(raw ");
2329 print_hex_chars (&format_stream, valaddr, TYPE_LENGTH (regtype),
2330 byte_order, true);
2331 format_stream.putc (')');
f69d9aef 2332 }
1292279a
PA
2333 }
2334 else
2335 {
2336 struct value_print_options opts;
2337
2338 /* Print the register in hex. */
2339 get_formatted_print_options (&opts, 'x');
2340 opts.deref_ref = 1;
2341 val_print (regtype,
1292279a 2342 value_embedded_offset (val), 0,
e813d34a 2343 &format_stream, 0, val, &opts, current_language);
1292279a
PA
2344 /* If not a vector register, print it also according to its
2345 natural format. */
f69d9aef 2346 if (print_raw_format && TYPE_VECTOR (regtype) == 0)
1292279a 2347 {
e813d34a 2348 pad_to_column (format_stream, value_column_2);
1292279a
PA
2349 get_user_print_options (&opts);
2350 opts.deref_ref = 1;
1292279a 2351 val_print (regtype,
1292279a 2352 value_embedded_offset (val), 0,
e813d34a 2353 &format_stream, 0, val, &opts, current_language);
1292279a
PA
2354 }
2355 }
2356
e813d34a 2357 fputs_filtered (format_stream.c_str (), file);
1292279a
PA
2358 fprintf_filtered (file, "\n");
2359}
2360
1777feb0 2361/* Print out the machine register regnum. If regnum is -1, print all
0ab7a791
AC
2362 registers (print_all == 1) or all non-float and non-vector
2363 registers (print_all == 0).
c906108c
SS
2364
2365 For most machines, having all_registers_info() print the
0ab7a791
AC
2366 register(s) one per line is good enough. If a different format is
2367 required, (eg, for MIPS or Pyramid 90x, which both have lots of
2368 regs), or there is an existing convention for showing all the
2369 registers, define the architecture method PRINT_REGISTERS_INFO to
2370 provide that format. */
c906108c 2371
666e11c5 2372void
0ab7a791
AC
2373default_print_registers_info (struct gdbarch *gdbarch,
2374 struct ui_file *file,
2375 struct frame_info *frame,
2376 int regnum, int print_all)
c906108c 2377{
0ab7a791 2378 int i;
f6efe3f8 2379 const int numregs = gdbarch_num_cooked_regs (gdbarch);
0ab7a791 2380
c906108c
SS
2381 for (i = 0; i < numregs; i++)
2382 {
4782dc19
AC
2383 /* Decide between printing all regs, non-float / vector regs, or
2384 specific reg. */
c5aa993b
JM
2385 if (regnum == -1)
2386 {
f9418c0f 2387 if (print_all)
4782dc19 2388 {
f9418c0f 2389 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
4782dc19 2390 continue;
f9418c0f
AC
2391 }
2392 else
2393 {
2394 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
4782dc19
AC
2395 continue;
2396 }
c5aa993b
JM
2397 }
2398 else
2399 {
2400 if (i != regnum)
2401 continue;
2402 }
c906108c
SS
2403
2404 /* If the register name is empty, it is undefined for this
c5aa993b 2405 processor, so don't display anything. */
a4bd449d
UW
2406 if (gdbarch_register_name (gdbarch, i) == NULL
2407 || *(gdbarch_register_name (gdbarch, i)) == '\0')
c906108c
SS
2408 continue;
2409
1292279a
PA
2410 default_print_one_register_info (file,
2411 gdbarch_register_name (gdbarch, i),
901461f8 2412 value_of_register (i, frame));
c906108c
SS
2413 }
2414}
c906108c 2415
c906108c 2416void
1d12d88f 2417registers_info (const char *addr_exp, int fpregs)
c906108c 2418{
206415a3 2419 struct frame_info *frame;
a4bd449d 2420 struct gdbarch *gdbarch;
c906108c
SS
2421
2422 if (!target_has_registers)
8a3fe4f8 2423 error (_("The program has no registers now."));
206415a3 2424 frame = get_selected_frame (NULL);
a4bd449d 2425 gdbarch = get_frame_arch (frame);
c906108c
SS
2426
2427 if (!addr_exp)
2428 {
a4bd449d 2429 gdbarch_print_registers_info (gdbarch, gdb_stdout,
206415a3 2430 frame, -1, fpregs);
c906108c
SS
2431 return;
2432 }
2433
f9418c0f 2434 while (*addr_exp != '\0')
c5aa993b 2435 {
1d12d88f 2436 const char *start;
f9418c0f 2437 const char *end;
c906108c 2438
529480d0
KS
2439 /* Skip leading white space. */
2440 addr_exp = skip_spaces (addr_exp);
c906108c 2441
f9418c0f
AC
2442 /* Discard any leading ``$''. Check that there is something
2443 resembling a register following it. */
2444 if (addr_exp[0] == '$')
2445 addr_exp++;
2446 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
8a3fe4f8 2447 error (_("Missing register name"));
c906108c 2448
f9418c0f
AC
2449 /* Find the start/end of this register name/num/group. */
2450 start = addr_exp;
2451 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
2452 addr_exp++;
2453 end = addr_exp;
ad842144 2454
f9418c0f
AC
2455 /* Figure out what we've found and display it. */
2456
2457 /* A register name? */
2458 {
029a67e4 2459 int regnum = user_reg_map_name_to_regnum (gdbarch, start, end - start);
abbb1732 2460
f9418c0f
AC
2461 if (regnum >= 0)
2462 {
ad842144
MR
2463 /* User registers lie completely outside of the range of
2464 normal registers. Catch them early so that the target
2465 never sees them. */
f6efe3f8 2466 if (regnum >= gdbarch_num_cooked_regs (gdbarch))
ad842144 2467 {
1292279a
PA
2468 struct value *regval = value_of_user_reg (regnum, frame);
2469 const char *regname = user_reg_map_regnum_to_name (gdbarch,
2470 regnum);
2471
2472 /* Print in the same fashion
2473 gdbarch_print_registers_info's default
2474 implementation prints. */
2475 default_print_one_register_info (gdb_stdout,
2476 regname,
2477 regval);
ad842144
MR
2478 }
2479 else
2480 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2481 frame, regnum, fpregs);
f9418c0f
AC
2482 continue;
2483 }
2484 }
ad842144 2485
f9418c0f
AC
2486 /* A register group? */
2487 {
6c7d17ba 2488 struct reggroup *group;
abbb1732 2489
a4bd449d 2490 for (group = reggroup_next (gdbarch, NULL);
6c7d17ba 2491 group != NULL;
a4bd449d 2492 group = reggroup_next (gdbarch, group))
f9418c0f
AC
2493 {
2494 /* Don't bother with a length check. Should the user
2495 enter a short register group name, go with the first
2496 group that matches. */
6c7d17ba 2497 if (strncmp (start, reggroup_name (group), end - start) == 0)
f9418c0f
AC
2498 break;
2499 }
6c7d17ba 2500 if (group != NULL)
f9418c0f
AC
2501 {
2502 int regnum;
abbb1732 2503
f57d151a 2504 for (regnum = 0;
f6efe3f8 2505 regnum < gdbarch_num_cooked_regs (gdbarch);
f57d151a 2506 regnum++)
f9418c0f 2507 {
a4bd449d
UW
2508 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
2509 gdbarch_print_registers_info (gdbarch,
206415a3 2510 gdb_stdout, frame,
f9418c0f
AC
2511 regnum, fpregs);
2512 }
2513 continue;
2514 }
2515 }
c906108c 2516
f9418c0f 2517 /* Nothing matched. */
8a3fe4f8 2518 error (_("Invalid register `%.*s'"), (int) (end - start), start);
c5aa993b 2519 }
c906108c
SS
2520}
2521
1dd5fedc 2522static void
1d12d88f 2523info_all_registers_command (const char *addr_exp, int from_tty)
c906108c
SS
2524{
2525 registers_info (addr_exp, 1);
2526}
2527
a58dd373 2528static void
1d12d88f 2529info_registers_command (const char *addr_exp, int from_tty)
c906108c
SS
2530{
2531 registers_info (addr_exp, 0);
2532}
e76f1f2e
AC
2533
2534static void
d80b854b 2535print_vector_info (struct ui_file *file,
e76f1f2e
AC
2536 struct frame_info *frame, const char *args)
2537{
d80b854b
UW
2538 struct gdbarch *gdbarch = get_frame_arch (frame);
2539
e76f1f2e
AC
2540 if (gdbarch_print_vector_info_p (gdbarch))
2541 gdbarch_print_vector_info (gdbarch, file, frame, args);
2542 else
2543 {
2544 int regnum;
2545 int printed_something = 0;
ab4327e0 2546
f6efe3f8 2547 for (regnum = 0; regnum < gdbarch_num_cooked_regs (gdbarch); regnum++)
e76f1f2e 2548 {
f9418c0f 2549 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
e76f1f2e
AC
2550 {
2551 printed_something = 1;
e76f1f2e 2552 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
e76f1f2e
AC
2553 }
2554 }
2555 if (!printed_something)
2556 fprintf_filtered (file, "No vector information\n");
2557 }
2558}
2559
2560static void
1d12d88f 2561info_vector_command (const char *args, int from_tty)
e76f1f2e 2562{
206415a3
DJ
2563 if (!target_has_registers)
2564 error (_("The program has no registers now."));
2565
d80b854b 2566 print_vector_info (gdb_stdout, get_selected_frame (NULL), args);
e76f1f2e 2567}
c906108c 2568\f
5fd62852
PA
2569/* Kill the inferior process. Make us have no inferior. */
2570
2571static void
981a3fb3 2572kill_command (const char *arg, int from_tty)
5fd62852
PA
2573{
2574 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
2575 It should be a distinct flag that indicates that a target is active, cuz
1777feb0 2576 some targets don't have processes! */
5fd62852 2577
d7e15655 2578 if (inferior_ptid == null_ptid)
5fd62852
PA
2579 error (_("The program is not being run."));
2580 if (!query (_("Kill the program being debugged? ")))
2581 error (_("Not confirmed."));
f67c0c91 2582
249b5733
PA
2583 int pid = current_inferior ()->pid;
2584 /* Save the pid as a string before killing the inferior, since that
2585 may unpush the current target, and we need the string after. */
f2907e49 2586 std::string pid_str = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
2587 int infnum = current_inferior ()->num;
2588
5fd62852
PA
2589 target_kill ();
2590
f67c0c91 2591 if (print_inferior_events)
249b5733 2592 printf_unfiltered (_("[Inferior %d (%s) killed]\n"),
f67c0c91
SDJ
2593 infnum, pid_str.c_str ());
2594
c35b1492
PA
2595 /* If we still have other inferiors to debug, then don't mess with
2596 with their threads. */
2597 if (!have_inferiors ())
5fd62852 2598 {
1777feb0 2599 init_thread_list (); /* Destroy thread info. */
5fd62852
PA
2600
2601 /* Killing off the inferior can leave us with a core file. If
2602 so, print the state we are left in. */
2603 if (target_has_stack)
2604 {
2605 printf_filtered (_("In %s,\n"), target_longname);
08d72866 2606 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
5fd62852
PA
2607 }
2608 }
2609 bfd_cache_close_all ();
2610}
c5aa993b 2611
08036331 2612/* Used in `attach&' command. Proceed threads of inferior INF iff
74531fed 2613 they stopped due to debugger request, and when they did, they
08036331
PA
2614 reported a clean stop (GDB_SIGNAL_0). Do not proceed threads that
2615 have been explicitly been told to stop. */
74531fed
PA
2616
2617static void
08036331 2618proceed_after_attach (inferior *inf)
74531fed
PA
2619{
2620 /* Don't error out if the current thread is running, because
2621 there may be other stopped threads. */
74531fed
PA
2622
2623 /* Backup current thread and selected frame. */
5ed8105e 2624 scoped_restore_current_thread restore_thread;
74531fed 2625
08036331
PA
2626 for (thread_info *thread : inf->non_exited_threads ())
2627 if (!thread->executing
2628 && !thread->stop_requested
2629 && thread->suspend.stop_signal == GDB_SIGNAL_0)
2630 {
2631 switch_to_thread (thread);
2632 clear_proceed_status (0);
2633 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
2634 }
74531fed
PA
2635}
2636
6efcd9a8 2637/* See inferior.h. */
c906108c 2638
6efcd9a8
PA
2639void
2640setup_inferior (int from_tty)
9356cf8d 2641{
d6b48e9c 2642 struct inferior *inferior;
9356cf8d 2643
d6b48e9c 2644 inferior = current_inferior ();
6efcd9a8 2645 inferior->needs_setup = 0;
9356cf8d
PA
2646
2647 /* If no exec file is yet known, try to determine it from the
2648 process itself. */
a10de604 2649 if (get_exec_file (0) == NULL)
e99b03dc 2650 exec_file_locate_attach (inferior_ptid.pid (), 1, from_tty);
9356cf8d
PA
2651 else
2652 {
2653 reopen_exec_file ();
2654 reread_symbols ();
2655 }
2656
2657 /* Take any necessary post-attaching actions for this platform. */
e99b03dc 2658 target_post_attach (inferior_ptid.pid ());
9356cf8d 2659
8b88a78e 2660 post_create_inferior (current_top_target (), from_tty);
6efcd9a8
PA
2661}
2662
2663/* What to do after the first program stops after attaching. */
2664enum attach_post_wait_mode
2665{
2666 /* Do nothing. Leaves threads as they are. */
2667 ATTACH_POST_WAIT_NOTHING,
2668
2669 /* Re-resume threads that are marked running. */
2670 ATTACH_POST_WAIT_RESUME,
2671
2672 /* Stop all threads. */
2673 ATTACH_POST_WAIT_STOP,
2674};
2675
2676/* Called after we've attached to a process and we've seen it stop for
2677 the first time. If ASYNC_EXEC is true, re-resume threads that
2678 should be running. Else if ATTACH, */
2679
2680static void
a121b7c1 2681attach_post_wait (const char *args, int from_tty, enum attach_post_wait_mode mode)
6efcd9a8
PA
2682{
2683 struct inferior *inferior;
9356cf8d 2684
6efcd9a8
PA
2685 inferior = current_inferior ();
2686 inferior->control.stop_soon = NO_STOP_QUIETLY;
2687
2688 if (inferior->needs_setup)
2689 setup_inferior (from_tty);
2690
2691 if (mode == ATTACH_POST_WAIT_RESUME)
74531fed
PA
2692 {
2693 /* The user requested an `attach&', so be sure to leave threads
2694 that didn't get a signal running. */
2695
2696 /* Immediatelly resume all suspended threads of this inferior,
2697 and this inferior only. This should have no effect on
2698 already running threads. If a thread has been stopped with a
2699 signal, leave it be. */
2700 if (non_stop)
08036331 2701 proceed_after_attach (inferior);
74531fed
PA
2702 else
2703 {
a493e3e2 2704 if (inferior_thread ()->suspend.stop_signal == GDB_SIGNAL_0)
74531fed 2705 {
70509625 2706 clear_proceed_status (0);
64ce06e4 2707 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
74531fed
PA
2708 }
2709 }
2710 }
6efcd9a8 2711 else if (mode == ATTACH_POST_WAIT_STOP)
9356cf8d 2712 {
74531fed
PA
2713 /* The user requested a plain `attach', so be sure to leave
2714 the inferior stopped. */
2715
74531fed
PA
2716 /* At least the current thread is already stopped. */
2717
2718 /* In all-stop, by definition, all threads have to be already
2719 stopped at this point. In non-stop, however, although the
2720 selected thread is stopped, others may still be executing.
2721 Be sure to explicitly stop all threads of the process. This
2722 should have no effect on already stopped threads. */
066f6b6e 2723 if (non_stop)
f2907e49 2724 target_stop (ptid_t (inferior->pid));
066f6b6e
PA
2725 else if (target_is_non_stop_p ())
2726 {
066f6b6e 2727 struct thread_info *lowest = inferior_thread ();
066f6b6e
PA
2728
2729 stop_all_threads ();
2730
2731 /* It's not defined which thread will report the attach
2732 stop. For consistency, always select the thread with
2733 lowest GDB number, which should be the main thread, if it
2734 still exists. */
08036331
PA
2735 for (thread_info *thread : current_inferior ()->non_exited_threads ())
2736 if (thread->inf->num < lowest->inf->num
2737 || thread->per_inf_num < lowest->per_inf_num)
2738 lowest = thread;
066f6b6e 2739
00431a78 2740 switch_to_thread (lowest);
066f6b6e 2741 }
74531fed
PA
2742
2743 /* Tell the user/frontend where we're stopped. */
9356cf8d
PA
2744 normal_stop ();
2745 if (deprecated_attach_hook)
2746 deprecated_attach_hook ();
2747 }
2748}
2749
bfec99b2 2750struct attach_command_continuation_args
9356cf8d
PA
2751{
2752 char *args;
2753 int from_tty;
6efcd9a8 2754 enum attach_post_wait_mode mode;
bfec99b2 2755};
9356cf8d 2756
bfec99b2 2757static void
fa4cd53f 2758attach_command_continuation (void *args, int err)
bfec99b2 2759{
9a3c8263
SM
2760 struct attach_command_continuation_args *a
2761 = (struct attach_command_continuation_args *) args;
abbb1732 2762
fa4cd53f
PA
2763 if (err)
2764 return;
2765
6efcd9a8 2766 attach_post_wait (a->args, a->from_tty, a->mode);
9356cf8d
PA
2767}
2768
604ead4a
PA
2769static void
2770attach_command_continuation_free_args (void *args)
2771{
9a3c8263
SM
2772 struct attach_command_continuation_args *a
2773 = (struct attach_command_continuation_args *) args;
abbb1732 2774
604ead4a
PA
2775 xfree (a->args);
2776 xfree (a);
2777}
2778
6efcd9a8
PA
2779/* "attach" command entry point. Takes a program started up outside
2780 of gdb and ``attaches'' to it. This stops it cold in its tracks
2781 and allows us to start debugging it. */
2782
c906108c 2783void
0b39b52e 2784attach_command (const char *args, int from_tty)
c906108c 2785{
6c4486e6 2786 int async_exec;
b3ccfe11 2787 struct target_ops *attach_target;
6efcd9a8
PA
2788 struct inferior *inferior = current_inferior ();
2789 enum attach_post_wait_mode mode;
c906108c 2790
c5aa993b 2791 dont_repeat (); /* Not for the faint of heart */
c906108c 2792
f5656ead 2793 if (gdbarch_has_global_solist (target_gdbarch ()))
2567c7d9
PA
2794 /* Don't complain if all processes share the same symbol
2795 space. */
8a305172
PA
2796 ;
2797 else if (target_has_execution)
c906108c 2798 {
9e2f0ad4 2799 if (query (_("A program is being debugged already. Kill it? ")))
c906108c
SS
2800 target_kill ();
2801 else
8a3fe4f8 2802 error (_("Not killed."));
c906108c
SS
2803 }
2804
fd79ecee
DJ
2805 /* Clean up any leftovers from other runs. Some other things from
2806 this function should probably be moved into target_pre_inferior. */
2807 target_pre_inferior (from_tty);
2808
6be9a197
TT
2809 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (args, &async_exec);
2810 args = stripped.get ();
8bc2fe48 2811
b3ccfe11
TT
2812 attach_target = find_attach_target ();
2813
8bc2fe48
PA
2814 prepare_execution_command (attach_target, async_exec);
2815
f6ac5f3d 2816 if (non_stop && !attach_target->supports_non_stop ())
9908b566
VP
2817 error (_("Cannot attach to this target in non-stop mode"));
2818
f6ac5f3d 2819 attach_target->attach (args, from_tty);
b3ccfe11
TT
2820 /* to_attach should push the target, so after this point we
2821 shouldn't refer to attach_target again. */
2822 attach_target = NULL;
c906108c
SS
2823
2824 /* Set up the "saved terminal modes" of the inferior
2825 based on what modes we are starting it with. */
223ffa71 2826 target_terminal::init ();
c906108c 2827
7180e04a
PA
2828 /* Install inferior's terminal modes. This may look like a no-op,
2829 as we've just saved them above, however, this does more than
2830 restore terminal settings:
2831
2832 - installs a SIGINT handler that forwards SIGINT to the inferior.
2833 Otherwise a Ctrl-C pressed just while waiting for the initial
2834 stop would end up as a spurious Quit.
2835
2836 - removes stdin from the event loop, which we need if attaching
2837 in the foreground, otherwise on targets that report an initial
2838 stop on attach (which are most) we'd process input/commands
2839 while we're in the event loop waiting for that stop. That is,
2840 before the attach continuation runs and the command is really
2841 finished. */
223ffa71 2842 target_terminal::inferior ();
7180e04a 2843
c906108c
SS
2844 /* Set up execution context to know that we should return from
2845 wait_for_inferior as soon as the target reports a stop. */
2846 init_wait_for_inferior ();
70509625 2847 clear_proceed_status (0);
c906108c 2848
6efcd9a8
PA
2849 inferior->needs_setup = 1;
2850
fbea99ea 2851 if (target_is_non_stop_p ())
74531fed
PA
2852 {
2853 /* If we find that the current thread isn't stopped, explicitly
2854 do so now, because we're going to install breakpoints and
2855 poke at memory. */
2856
2857 if (async_exec)
2858 /* The user requested an `attach&'; stop just one thread. */
2859 target_stop (inferior_ptid);
2860 else
2861 /* The user requested an `attach', so stop all threads of this
2862 inferior. */
e99b03dc 2863 target_stop (ptid_t (inferior_ptid.pid ()));
74531fed
PA
2864 }
2865
6efcd9a8
PA
2866 mode = async_exec ? ATTACH_POST_WAIT_RESUME : ATTACH_POST_WAIT_STOP;
2867
dc177b7a
PA
2868 /* Some system don't generate traps when attaching to inferior.
2869 E.g. Mach 3 or GNU hurd. */
f6ac5f3d 2870 if (!target_attach_no_wait ())
c5aa993b 2871 {
0b333c5e 2872 struct attach_command_continuation_args *a;
d6b48e9c 2873
1777feb0 2874 /* Careful here. See comments in inferior.h. Basically some
dc177b7a
PA
2875 OSes don't ignore SIGSTOPs on continue requests anymore. We
2876 need a way for handle_inferior_event to reset the stop_signal
2877 variable after an attach, and this is what
2878 STOP_QUIETLY_NO_SIGSTOP is for. */
16c381f0 2879 inferior->control.stop_soon = STOP_QUIETLY_NO_SIGSTOP;
c5aa993b 2880
3b12939d 2881 /* Wait for stop. */
0b333c5e
PA
2882 a = XNEW (struct attach_command_continuation_args);
2883 a->args = xstrdup (args);
2884 a->from_tty = from_tty;
6efcd9a8 2885 a->mode = mode;
0b333c5e
PA
2886 add_inferior_continuation (attach_command_continuation, a,
2887 attach_command_continuation_free_args);
0b333c5e
PA
2888
2889 if (!target_is_async_p ())
2890 mark_infrun_async_event_handler ();
2891 return;
dc177b7a 2892 }
6426a772 2893
6efcd9a8 2894 attach_post_wait (args, from_tty, mode);
c906108c
SS
2895}
2896
1941c569
PA
2897/* We had just found out that the target was already attached to an
2898 inferior. PTID points at a thread of this new inferior, that is
2899 the most likely to be stopped right now, but not necessarily so.
2900 The new inferior is assumed to be already added to the inferior
2901 list at this point. If LEAVE_RUNNING, then leave the threads of
2902 this inferior running, except those we've explicitly seen reported
2903 as stopped. */
2904
2905void
00431a78 2906notice_new_inferior (thread_info *thr, int leave_running, int from_tty)
1941c569 2907{
5ed8105e
PA
2908 enum attach_post_wait_mode mode
2909 = leave_running ? ATTACH_POST_WAIT_RESUME : ATTACH_POST_WAIT_NOTHING;
1941c569 2910
5ed8105e 2911 gdb::optional<scoped_restore_current_thread> restore_thread;
1941c569 2912
5ed8105e
PA
2913 if (inferior_ptid != null_ptid)
2914 restore_thread.emplace ();
1941c569 2915
6efcd9a8
PA
2916 /* Avoid reading registers -- we haven't fetched the target
2917 description yet. */
00431a78 2918 switch_to_thread_no_regs (thr);
1941c569
PA
2919
2920 /* When we "notice" a new inferior we need to do all the things we
2921 would normally do if we had just attached to it. */
2922
00431a78 2923 if (thr->executing)
1941c569 2924 {
0b333c5e 2925 struct attach_command_continuation_args *a;
1941c569
PA
2926 struct inferior *inferior = current_inferior ();
2927
2928 /* We're going to install breakpoints, and poke at memory,
2929 ensure that the inferior is stopped for a moment while we do
2930 that. */
2931 target_stop (inferior_ptid);
2932
16c381f0 2933 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
1941c569
PA
2934
2935 /* Wait for stop before proceeding. */
0b333c5e
PA
2936 a = XNEW (struct attach_command_continuation_args);
2937 a->args = xstrdup ("");
2938 a->from_tty = from_tty;
6efcd9a8 2939 a->mode = mode;
0b333c5e
PA
2940 add_inferior_continuation (attach_command_continuation, a,
2941 attach_command_continuation_free_args);
1941c569 2942
0b333c5e 2943 return;
1941c569
PA
2944 }
2945
6efcd9a8 2946 attach_post_wait ("" /* args */, from_tty, mode);
1941c569
PA
2947}
2948
c906108c
SS
2949/*
2950 * detach_command --
2951 * takes a program previously attached to and detaches it.
2952 * The program resumes execution and will no longer stop
2953 * on signals, etc. We better not have left any breakpoints
2954 * in the program or it'll die when it hits one. For this
2955 * to work, it may be necessary for the process to have been
2956 * previously attached. It *might* work if the program was
2957 * started via the normal ptrace (PTRACE_TRACEME).
2958 */
2959
6418d433 2960void
981a3fb3 2961detach_command (const char *args, int from_tty)
c906108c 2962{
1f5d0fc9 2963 dont_repeat (); /* Not for the faint of heart. */
d729566a 2964
d7e15655 2965 if (inferior_ptid == null_ptid)
d729566a
PA
2966 error (_("The program is not being run."));
2967
2f9d54cf
PA
2968 query_if_trace_running (from_tty);
2969
2970 disconnect_tracing ();
d5551862 2971
6e1e1966 2972 target_detach (current_inferior (), from_tty);
50c71eaf 2973
63000888
PA
2974 /* The current inferior process was just detached successfully. Get
2975 rid of breakpoints that no longer make sense. Note we don't do
2976 this within target_detach because that is also used when
2977 following child forks, and in that case we will want to transfer
2978 breakpoints to the child, not delete them. */
2979 breakpoint_init_inferior (inf_exited);
2980
50c71eaf
PA
2981 /* If the solist is global across inferiors, don't clear it when we
2982 detach from a single inferior. */
f5656ead 2983 if (!gdbarch_has_global_solist (target_gdbarch ()))
50c71eaf 2984 no_shared_libraries (NULL, from_tty);
8a305172 2985
9a4105ab
AC
2986 if (deprecated_detach_hook)
2987 deprecated_detach_hook ();
c906108c
SS
2988}
2989
6ad8ae5c
DJ
2990/* Disconnect from the current target without resuming it (leaving it
2991 waiting for a debugger).
2992
2993 We'd better not have left any breakpoints in the program or the
2994 next debugger will get confused. Currently only supported for some
2995 remote targets, since the normal attach mechanisms don't work on
2996 stopped processes on some native platforms (e.g. GNU/Linux). */
2997
2998static void
0b39b52e 2999disconnect_command (const char *args, int from_tty)
6ad8ae5c 3000{
1777feb0 3001 dont_repeat (); /* Not for the faint of heart. */
2f9d54cf
PA
3002 query_if_trace_running (from_tty);
3003 disconnect_tracing ();
6ad8ae5c 3004 target_disconnect (args, from_tty);
e85a822c 3005 no_shared_libraries (NULL, from_tty);
a0ef4274 3006 init_thread_list ();
9a4105ab
AC
3007 if (deprecated_detach_hook)
3008 deprecated_detach_hook ();
6ad8ae5c
DJ
3009}
3010
77ebaa5a
VP
3011void
3012interrupt_target_1 (int all_threads)
3013{
3014 ptid_t ptid;
abbb1732 3015
77ebaa5a
VP
3016 if (all_threads)
3017 ptid = minus_one_ptid;
3018 else
3019 ptid = inferior_ptid;
e42de8c7
PA
3020
3021 if (non_stop)
3022 target_stop (ptid);
3023 else
e671cd59 3024 target_interrupt ();
252fbfc8
PA
3025
3026 /* Tag the thread as having been explicitly requested to stop, so
3027 other parts of gdb know not to resume this thread automatically,
3028 if it was stopped due to an internal event. Limit this to
3029 non-stop mode, as when debugging a multi-threaded application in
3030 all-stop mode, we will only get one stop event --- it's undefined
3031 which thread will report the event. */
3032 if (non_stop)
3033 set_stop_requested (ptid, 1);
77ebaa5a
VP
3034}
3035
6339bfc4
DE
3036/* interrupt [-a]
3037 Stop the execution of the target while running in async mode, in
17e5269b 3038 the background. In all-stop, stop the whole process. In non-stop
8cae4b3f
PA
3039 mode, stop the current thread only by default, or stop all threads
3040 if the `-a' switch is used. */
3041
1dd5fedc 3042static void
0b39b52e 3043interrupt_command (const char *args, int from_tty)
43ff13b4 3044{
362646f5 3045 if (target_can_async_p ())
43ff13b4 3046 {
8cae4b3f
PA
3047 int all_threads = 0;
3048
1777feb0 3049 dont_repeat (); /* Not for the faint of heart. */
94cc34af 3050
8cae4b3f 3051 if (args != NULL
61012eef 3052 && startswith (args, "-a"))
8cae4b3f
PA
3053 all_threads = 1;
3054
3055 if (!non_stop && all_threads)
3056 error (_("-a is meaningless in all-stop mode."));
3057
77ebaa5a 3058 interrupt_target_1 (all_threads);
43ff13b4
JM
3059 }
3060}
3061
cc86d1cb
YQ
3062/* See inferior.h. */
3063
3064void
3065default_print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
3066 struct frame_info *frame, const char *args)
c906108c 3067{
cc86d1cb
YQ
3068 int regnum;
3069 int printed_something = 0;
d80b854b 3070
f6efe3f8 3071 for (regnum = 0; regnum < gdbarch_num_cooked_regs (gdbarch); regnum++)
23e3a7ac 3072 {
cc86d1cb 3073 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
23e3a7ac 3074 {
cc86d1cb
YQ
3075 printed_something = 1;
3076 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
23e3a7ac 3077 }
23e3a7ac 3078 }
cc86d1cb
YQ
3079 if (!printed_something)
3080 fprintf_filtered (file, "No floating-point info "
3081 "available for this processor.\n");
23e3a7ac
AC
3082}
3083
3084static void
1d12d88f 3085info_float_command (const char *args, int from_tty)
23e3a7ac 3086{
cc86d1cb
YQ
3087 struct frame_info *frame;
3088
206415a3
DJ
3089 if (!target_has_registers)
3090 error (_("The program has no registers now."));
3091
cc86d1cb
YQ
3092 frame = get_selected_frame (NULL);
3093 gdbarch_print_float_info (get_frame_arch (frame), gdb_stdout, frame, args);
c906108c
SS
3094}
3095\f
c906108c 3096static void
981a3fb3 3097unset_command (const char *args, int from_tty)
c906108c 3098{
3e43a32a
MS
3099 printf_filtered (_("\"unset\" must be followed by the "
3100 "name of an unset subcommand.\n"));
635c7e8a 3101 help_list (unsetlist, "unset ", all_commands, gdb_stdout);
c906108c
SS
3102}
3103
145b16a9
UW
3104/* Implement `info proc' family of commands. */
3105
3106static void
69f476a3 3107info_proc_cmd_1 (const char *args, enum info_proc_what what, int from_tty)
145b16a9 3108{
3030c96e
UW
3109 struct gdbarch *gdbarch = get_current_arch ();
3110
451b7c33
TT
3111 if (!target_info_proc (args, what))
3112 {
3113 if (gdbarch_info_proc_p (gdbarch))
3114 gdbarch_info_proc (gdbarch, args, what);
3115 else
3116 error (_("Not supported on this target."));
3117 }
145b16a9
UW
3118}
3119
3120/* Implement `info proc' when given without any futher parameters. */
3121
3122static void
981a3fb3 3123info_proc_cmd (const char *args, int from_tty)
145b16a9
UW
3124{
3125 info_proc_cmd_1 (args, IP_MINIMAL, from_tty);
3126}
3127
3128/* Implement `info proc mappings'. */
3129
3130static void
69f476a3 3131info_proc_cmd_mappings (const char *args, int from_tty)
145b16a9
UW
3132{
3133 info_proc_cmd_1 (args, IP_MAPPINGS, from_tty);
3134}
3135
3136/* Implement `info proc stat'. */
3137
3138static void
69f476a3 3139info_proc_cmd_stat (const char *args, int from_tty)
145b16a9
UW
3140{
3141 info_proc_cmd_1 (args, IP_STAT, from_tty);
3142}
3143
3144/* Implement `info proc status'. */
3145
3146static void
69f476a3 3147info_proc_cmd_status (const char *args, int from_tty)
145b16a9
UW
3148{
3149 info_proc_cmd_1 (args, IP_STATUS, from_tty);
3150}
3151
3152/* Implement `info proc cwd'. */
3153
3154static void
69f476a3 3155info_proc_cmd_cwd (const char *args, int from_tty)
145b16a9
UW
3156{
3157 info_proc_cmd_1 (args, IP_CWD, from_tty);
3158}
3159
3160/* Implement `info proc cmdline'. */
3161
3162static void
69f476a3 3163info_proc_cmd_cmdline (const char *args, int from_tty)
145b16a9
UW
3164{
3165 info_proc_cmd_1 (args, IP_CMDLINE, from_tty);
3166}
3167
3168/* Implement `info proc exe'. */
3169
3170static void
69f476a3 3171info_proc_cmd_exe (const char *args, int from_tty)
145b16a9
UW
3172{
3173 info_proc_cmd_1 (args, IP_EXE, from_tty);
3174}
3175
e98ee8c4
JB
3176/* Implement `info proc files'. */
3177
3178static void
3179info_proc_cmd_files (const char *args, int from_tty)
3180{
3181 info_proc_cmd_1 (args, IP_FILES, from_tty);
3182}
3183
145b16a9
UW
3184/* Implement `info proc all'. */
3185
3186static void
69f476a3 3187info_proc_cmd_all (const char *args, int from_tty)
145b16a9
UW
3188{
3189 info_proc_cmd_1 (args, IP_ALL, from_tty);
3190}
3191
4e5a4f58
JB
3192/* This help string is used for the run, start, and starti commands.
3193 It is defined as a macro to prevent duplication. */
3194
3195#define RUN_ARGS_HELP \
3196"You may specify arguments to give it.\n\
3197Args may include \"*\", or \"[...]\"; they are expanded using the\n\
3198shell that will start the program (specified by the \"$SHELL\" environment\n\
3199variable). Input and output redirection with \">\", \"<\", or \">>\"\n\
3200are also allowed.\n\
3201\n\
3202With no arguments, uses arguments last specified (with \"run\" or \n\
3203\"set args\"). To cancel previous arguments and run with no arguments,\n\
3204use \"set args\" without arguments.\n\
3205\n\
3206To start the inferior without using a shell, use \"set startup-with-shell off\"."
3207
c906108c 3208void
fba45db2 3209_initialize_infcmd (void)
c906108c 3210{
145b16a9 3211 static struct cmd_list_element *info_proc_cmdlist;
3cb3b8df 3212 struct cmd_list_element *c = NULL;
6f937416 3213 const char *cmd_name;
3cb3b8df 3214
1777feb0 3215 /* Add the filename of the terminal connected to inferior I/O. */
0a1ddfa6
SM
3216 add_setshow_optional_filename_cmd ("inferior-tty", class_run,
3217 &inferior_io_terminal_scratch, _("\
3cb3b8df
BR
3218Set terminal for future runs of program being debugged."), _("\
3219Show terminal for future runs of program being debugged."), _("\
0a1ddfa6
SM
3220Usage: set inferior-tty [TTY]\n\n\
3221If TTY is omitted, the default behavior of using the same terminal as GDB\n\
3222is restored."),
3223 set_inferior_tty_command,
3224 show_inferior_tty_command,
3225 &setlist, &showlist);
21873064
YQ
3226 cmd_name = "inferior-tty";
3227 c = lookup_cmd (&cmd_name, setlist, "", -1, 1);
3228 gdb_assert (c != NULL);
3229 add_alias_cmd ("tty", c, class_alias, 0, &cmdlist);
c906108c 3230
6ace3df1
YQ
3231 cmd_name = "args";
3232 add_setshow_string_noescape_cmd (cmd_name, class_run,
3233 &inferior_args_scratch, _("\
b4b4ac0b
AC
3234Set argument list to give program being debugged when it is started."), _("\
3235Show argument list to give program being debugged when it is started."), _("\
3236Follow this command with any number of args, to be passed to the program."),
6ace3df1
YQ
3237 set_args_command,
3238 show_args_command,
3239 &setlist, &showlist);
3240 c = lookup_cmd (&cmd_name, setlist, "", -1, 1);
3241 gdb_assert (c != NULL);
3242 set_cmd_completer (c, filename_completer);
c906108c 3243
d092c5a2
SDJ
3244 cmd_name = "cwd";
3245 add_setshow_string_noescape_cmd (cmd_name, class_run,
3246 &inferior_cwd_scratch, _("\
3247Set the current working directory to be used when the inferior is started.\n\
3248Changing this setting does not have any effect on inferiors that are\n\
3249already running."),
3250 _("\
3251Show the current working directory that is used when the inferior is started."),
3252 _("\
3253Use this command to change the current working directory that will be used\n\
3254when the inferior is started. This setting does not affect GDB's current\n\
3255working directory."),
3256 set_cwd_command,
3257 show_cwd_command,
3258 &setlist, &showlist);
3259 c = lookup_cmd (&cmd_name, setlist, "", -1, 1);
3260 gdb_assert (c != NULL);
3261 set_cmd_completer (c, filename_completer);
3262
1a966eab
AC
3263 c = add_cmd ("environment", no_class, environment_info, _("\
3264The environment to give the program, or one variable's value.\n\
c906108c
SS
3265With an argument VAR, prints the value of environment variable VAR to\n\
3266give the program being debugged. With no arguments, prints the entire\n\
1a966eab 3267environment to be given to the program."), &showlist);
5ba2abeb 3268 set_cmd_completer (c, noop_completer);
c906108c
SS
3269
3270 add_prefix_cmd ("unset", no_class, unset_command,
1bedd215 3271 _("Complement to certain \"set\" commands."),
c906108c 3272 &unsetlist, "unset ", 0, &cmdlist);
c5aa993b 3273
1a966eab
AC
3274 c = add_cmd ("environment", class_run, unset_environment_command, _("\
3275Cancel environment variable VAR for the program.\n\
3276This does not affect the program until the next \"run\" command."),
c5aa993b 3277 &unsetlist);
5ba2abeb 3278 set_cmd_completer (c, noop_completer);
c906108c 3279
1a966eab
AC
3280 c = add_cmd ("environment", class_run, set_environment_command, _("\
3281Set environment variable value to give the program.\n\
c906108c
SS
3282Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
3283VALUES of environment variables are uninterpreted strings.\n\
1a966eab 3284This does not affect the program until the next \"run\" command."),
c5aa993b 3285 &setlist);
5ba2abeb 3286 set_cmd_completer (c, noop_completer);
c5aa993b 3287
1bedd215
AC
3288 c = add_com ("path", class_files, path_command, _("\
3289Add directory DIR(s) to beginning of search path for object files.\n\
c906108c
SS
3290$cwd in the path means the current working directory.\n\
3291This path is equivalent to the $PATH shell variable. It is a list of\n\
3292directories, separated by colons. These directories are searched to find\n\
3e43a32a
MS
3293fully linked executable files and separately compiled object files as \
3294needed."));
5ba2abeb 3295 set_cmd_completer (c, filename_completer);
c906108c 3296
1a966eab
AC
3297 c = add_cmd ("paths", no_class, path_info, _("\
3298Current search path for finding object files.\n\
c906108c
SS
3299$cwd in the path means the current working directory.\n\
3300This path is equivalent to the $PATH shell variable. It is a list of\n\
3301directories, separated by colons. These directories are searched to find\n\
3e43a32a
MS
3302fully linked executable files and separately compiled object files as \
3303needed."),
c906108c 3304 &showlist);
5ba2abeb 3305 set_cmd_completer (c, noop_completer);
c906108c 3306
2277426b
PA
3307 add_prefix_cmd ("kill", class_run, kill_command,
3308 _("Kill execution of program being debugged."),
3309 &killlist, "kill ", 0, &cmdlist);
5fd62852 3310
1bedd215
AC
3311 add_com ("attach", class_run, attach_command, _("\
3312Attach to a process or file outside of GDB.\n\
c906108c
SS
3313This command attaches to another target, of the same type as your last\n\
3314\"target\" command (\"info files\" will show your target stack).\n\
3315The command may take as argument a process id or a device file.\n\
3316For a process id, you must have permission to send the process a signal,\n\
3317and it must have the same effective uid as the debugger.\n\
3318When using \"attach\" with a process id, the debugger finds the\n\
3319program running in the process, looking first in the current working\n\
3320directory, or (if not found there) using the source file search path\n\
3321(see the \"directory\" command). You can also use the \"file\" command\n\
1bedd215 3322to specify the program, and to load its symbol table."));
c906108c 3323
f73adfeb 3324 add_prefix_cmd ("detach", class_run, detach_command, _("\
1bedd215 3325Detach a process or file previously attached.\n\
c906108c 3326If a process, it is no longer traced, and it continues its execution. If\n\
f73adfeb
AS
3327you were debugging a file, the file is closed and gdb no longer accesses it."),
3328 &detachlist, "detach ", 0, &cmdlist);
c906108c 3329
1bedd215
AC
3330 add_com ("disconnect", class_run, disconnect_command, _("\
3331Disconnect from a target.\n\
6ad8ae5c 3332The target will wait for another debugger to connect. Not available for\n\
1bedd215 3333all targets."));
6ad8ae5c 3334
de0bea00 3335 c = add_com ("signal", class_run, signal_command, _("\
486c7739
MF
3336Continue program with the specified signal.\n\
3337Usage: signal SIGNAL\n\
2edda2ff 3338The SIGNAL argument is processed the same as the handle command.\n\
486c7739
MF
3339\n\
3340An argument of \"0\" means continue the program without sending it a signal.\n\
3341This is useful in cases where the program stopped because of a signal,\n\
81219e53
DE
3342and you want to resume the program while discarding the signal.\n\
3343\n\
3344In a multi-threaded program the signal is delivered to, or discarded from,\n\
3345the current thread only."));
3346 set_cmd_completer (c, signal_completer);
3347
3348 c = add_com ("queue-signal", class_run, queue_signal_command, _("\
3349Queue a signal to be delivered to the current thread when it is resumed.\n\
3350Usage: queue-signal SIGNAL\n\
3351The SIGNAL argument is processed the same as the handle command.\n\
3352It is an error if the handling state of SIGNAL is \"nopass\".\n\
3353\n\
3354An argument of \"0\" means remove any currently queued signal from\n\
3355the current thread. This is useful in cases where the program stopped\n\
3356because of a signal, and you want to resume it while discarding the signal.\n\
3357\n\
3358In a multi-threaded program the signal is queued with, or discarded from,\n\
3359the current thread only."));
de0bea00 3360 set_cmd_completer (c, signal_completer);
c906108c 3361
1bedd215
AC
3362 add_com ("stepi", class_run, stepi_command, _("\
3363Step one instruction exactly.\n\
486c7739
MF
3364Usage: stepi [N]\n\
3365Argument N means step N times (or till program stops for another \
3e43a32a 3366reason)."));
c906108c
SS
3367 add_com_alias ("si", "stepi", class_alias, 0);
3368
1bedd215
AC
3369 add_com ("nexti", class_run, nexti_command, _("\
3370Step one instruction, but proceed through subroutine calls.\n\
486c7739
MF
3371Usage: nexti [N]\n\
3372Argument N means step N times (or till program stops for another \
3e43a32a 3373reason)."));
c906108c
SS
3374 add_com_alias ("ni", "nexti", class_alias, 0);
3375
1bedd215
AC
3376 add_com ("finish", class_run, finish_command, _("\
3377Execute until selected stack frame returns.\n\
486c7739 3378Usage: finish\n\
1bedd215 3379Upon return, the value returned is printed and put in the value history."));
0e479716 3380 add_com_alias ("fin", "finish", class_run, 1);
c906108c 3381
1bedd215
AC
3382 add_com ("next", class_run, next_command, _("\
3383Step program, proceeding through subroutine calls.\n\
486c7739
MF
3384Usage: next [N]\n\
3385Unlike \"step\", if the current source line calls a subroutine,\n\
3386this command does not enter the subroutine, but instead steps over\n\
dbf6a605 3387the call, in effect treating it as a single source line."));
c906108c 3388 add_com_alias ("n", "next", class_run, 1);
c906108c 3389
1bedd215
AC
3390 add_com ("step", class_run, step_command, _("\
3391Step program until it reaches a different source line.\n\
486c7739
MF
3392Usage: step [N]\n\
3393Argument N means step N times (or till program stops for another \
3e43a32a 3394reason)."));
c906108c
SS
3395 add_com_alias ("s", "step", class_run, 1);
3396
1bedd215
AC
3397 c = add_com ("until", class_run, until_command, _("\
3398Execute until the program reaches a source line greater than the current\n\
3e43a32a
MS
3399or a specified location (same args as break command) within the current \
3400frame."));
5ba2abeb 3401 set_cmd_completer (c, location_completer);
c906108c 3402 add_com_alias ("u", "until", class_run, 1);
c5aa993b 3403
1bedd215 3404 c = add_com ("advance", class_run, advance_command, _("\
3e43a32a
MS
3405Continue the program up to the given location (same form as args for break \
3406command).\n\
1bedd215 3407Execution will also stop upon exit from the current stack frame."));
ae66c1fc
EZ
3408 set_cmd_completer (c, location_completer);
3409
1bedd215
AC
3410 c = add_com ("jump", class_run, jump_command, _("\
3411Continue program being debugged at specified line or address.\n\
0a8ba311 3412Usage: jump LOCATION\n\
c906108c 3413Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
1bedd215 3414for an address to start at."));
5ba2abeb 3415 set_cmd_completer (c, location_completer);
c1d780c2 3416 add_com_alias ("j", "jump", class_run, 1);
c906108c 3417
df983543 3418 add_com ("continue", class_run, continue_command, _("\
1bedd215 3419Continue program being debugged, after signal or breakpoint.\n\
486c7739 3420Usage: continue [N]\n\
c906108c
SS
3421If proceeding from breakpoint, a number N may be used as an argument,\n\
3422which means to set the ignore count of that breakpoint to N - 1 (so that\n\
8cae4b3f
PA
3423the breakpoint won't break until the Nth time it is reached).\n\
3424\n\
3425If non-stop mode is enabled, continue only the current thread,\n\
3426otherwise all the threads in the program are continued. To \n\
3427continue all stopped threads in non-stop mode, use the -a option.\n\
3428Specifying -a and an ignore count simultaneously is an error."));
c906108c
SS
3429 add_com_alias ("c", "cont", class_run, 1);
3430 add_com_alias ("fg", "cont", class_run, 1);
3431
1bedd215 3432 c = add_com ("run", class_run, run_command, _("\
4e5a4f58
JB
3433Start debugged program.\n"
3434RUN_ARGS_HELP));
5ba2abeb 3435 set_cmd_completer (c, filename_completer);
c906108c 3436 add_com_alias ("r", "run", class_run, 1);
c906108c 3437
1bedd215 3438 c = add_com ("start", class_run, start_command, _("\
4e5a4f58
JB
3439Start the debugged program stopping at the beginning of the main procedure.\n"
3440RUN_ARGS_HELP));
3441 set_cmd_completer (c, filename_completer);
3442
3443 c = add_com ("starti", class_run, starti_command, _("\
3444Start the debugged program stopping at the first instruction.\n"
3445RUN_ARGS_HELP));
a4d5f2e0
JB
3446 set_cmd_completer (c, filename_completer);
3447
0a07590b 3448 add_com ("interrupt", class_run, interrupt_command,
df983543 3449 _("Interrupt the execution of the debugged program.\n\
8cae4b3f
PA
3450If non-stop mode is enabled, interrupt only the current thread,\n\
3451otherwise all the threads in the program are stopped. To \n\
3452interrupt all running threads in non-stop mode, use the -a option."));
43ff13b4 3453
11db9430 3454 c = add_info ("registers", info_registers_command, _("\
1bedd215 3455List of integer registers and their contents, for selected stack frame.\n\
b67d92b0
SH
3456One or more register names as argument means describe the given registers.\n\
3457One or more register group names as argument means describe the registers\n\
3458in the named register groups."));
7194c49b 3459 add_info_alias ("r", "registers", 1);
71c24708 3460 set_cmd_completer (c, reg_or_group_completer);
c906108c 3461
11db9430 3462 c = add_info ("all-registers", info_all_registers_command, _("\
1bedd215 3463List of all registers and their contents, for selected stack frame.\n\
b67d92b0
SH
3464One or more register names as argument means describe the given registers.\n\
3465One or more register group names as argument means describe the registers\n\
3466in the named register groups."));
71c24708 3467 set_cmd_completer (c, reg_or_group_completer);
c906108c 3468
11db9430 3469 add_info ("program", info_program_command,
1bedd215 3470 _("Execution status of the program."));
c906108c 3471
11db9430 3472 add_info ("float", info_float_command,
1bedd215 3473 _("Print the status of the floating point unit\n"));
c906108c 3474
11db9430 3475 add_info ("vector", info_vector_command,
1bedd215 3476 _("Print the status of the vector unit\n"));
145b16a9
UW
3477
3478 add_prefix_cmd ("proc", class_info, info_proc_cmd,
3479 _("\
73f1bd76 3480Show additional information about a process.\n\
145b16a9
UW
3481Specify any process id, or use the program being debugged by default."),
3482 &info_proc_cmdlist, "info proc ",
3483 1/*allow-unknown*/, &infolist);
3484
3485 add_cmd ("mappings", class_info, info_proc_cmd_mappings, _("\
73f1bd76 3486List memory regions mapped by the specified process."),
145b16a9
UW
3487 &info_proc_cmdlist);
3488
3489 add_cmd ("stat", class_info, info_proc_cmd_stat, _("\
3490List process info from /proc/PID/stat."),
3491 &info_proc_cmdlist);
3492
3493 add_cmd ("status", class_info, info_proc_cmd_status, _("\
3494List process info from /proc/PID/status."),
3495 &info_proc_cmdlist);
3496
3497 add_cmd ("cwd", class_info, info_proc_cmd_cwd, _("\
73f1bd76 3498List current working directory of the specified process."),
145b16a9
UW
3499 &info_proc_cmdlist);
3500
3501 add_cmd ("cmdline", class_info, info_proc_cmd_cmdline, _("\
73f1bd76 3502List command line arguments of the specified process."),
145b16a9
UW
3503 &info_proc_cmdlist);
3504
3505 add_cmd ("exe", class_info, info_proc_cmd_exe, _("\
73f1bd76 3506List absolute filename for executable of the specified process."),
145b16a9
UW
3507 &info_proc_cmdlist);
3508
e98ee8c4
JB
3509 add_cmd ("files", class_info, info_proc_cmd_files, _("\
3510List files opened by the specified process."),
3511 &info_proc_cmdlist);
3512
145b16a9 3513 add_cmd ("all", class_info, info_proc_cmd_all, _("\
73f1bd76 3514List all available info about the specified process."),
145b16a9 3515 &info_proc_cmdlist);
c906108c 3516}