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