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