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