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