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