gdb/infcmd: remove the unused parameter 'args' in 'attach_post_wait'
[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
340d00fb
TV
1016 /* There's a problem in gcc (PR gcc/98780) that causes missing line
1017 table entries, which results in a too large stepping range.
1018 Use inlined_subroutine info to make the range more narrow. */
1019 if (inline_skipped_frames (tp) > 0)
1020 {
1021 symbol *sym = inline_skipped_symbol (tp);
1022 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
1023 {
1024 const block *block = SYMBOL_BLOCK_VALUE (sym);
1025 if (BLOCK_END (block) < tp->control.step_range_end)
1026 tp->control.step_range_end = BLOCK_END (block);
1027 }
1028 }
1029
c1e36e3e
PA
1030 tp->control.may_range_step = 1;
1031
5fbbeb29 1032 /* If we have no line info, switch to stepi mode. */
16c381f0 1033 if (tp->control.step_range_end == 0 && step_stop_if_no_debug)
c1e36e3e
PA
1034 {
1035 tp->control.step_range_start = tp->control.step_range_end = 1;
1036 tp->control.may_range_step = 0;
1037 }
16c381f0 1038 else if (tp->control.step_range_end == 0)
c906108c 1039 {
2c02bd72 1040 const char *name;
abbb1732 1041
1641cfcc 1042 if (find_pc_partial_function (pc, &name,
16c381f0
JK
1043 &tp->control.step_range_start,
1044 &tp->control.step_range_end) == 0)
8a3fe4f8 1045 error (_("Cannot find bounds of current function"));
c906108c 1046
223ffa71 1047 target_terminal::ours_for_output ();
3e43a32a
MS
1048 printf_filtered (_("Single stepping until exit from function %s,"
1049 "\nwhich has no line number information.\n"),
1050 name);
c906108c
SS
1051 }
1052 }
1053 else
1054 {
1055 /* Say we are stepping, but stop after one insn whatever it does. */
16c381f0 1056 tp->control.step_range_start = tp->control.step_range_end = 1;
243a9253 1057 if (!sm->skip_subroutines)
c906108c
SS
1058 /* It is stepi.
1059 Don't step over function calls, not even to functions lacking
1060 line numbers. */
16c381f0 1061 tp->control.step_over_calls = STEP_OVER_NONE;
c906108c
SS
1062 }
1063
243a9253 1064 if (sm->skip_subroutines)
16c381f0 1065 tp->control.step_over_calls = STEP_OVER_ALL;
c906108c 1066
243a9253 1067 return 0;
c906108c 1068 }
243a9253
PA
1069
1070 /* Done. */
46e3ed7f 1071 sm->set_finished ();
243a9253 1072 return 1;
c906108c 1073}
c2d11a7d 1074
c906108c
SS
1075\f
1076/* Continue program at specified address. */
1077
1078static void
0b39b52e 1079jump_command (const char *arg, int from_tty)
c906108c 1080{
5af949e3 1081 struct gdbarch *gdbarch = get_current_arch ();
52f0bd74 1082 CORE_ADDR addr;
c906108c
SS
1083 struct symbol *fn;
1084 struct symbol *sfn;
6c4486e6 1085 int async_exec;
c5aa993b 1086
c906108c 1087 ERROR_NO_INFERIOR;
573cda03 1088 ensure_not_tfind_mode ();
d729566a 1089 ensure_valid_thread ();
94cc34af 1090 ensure_not_running ();
c906108c 1091
1777feb0 1092 /* Find out whether we must run in the background. */
6be9a197
TT
1093 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (arg, &async_exec);
1094 arg = stripped.get ();
43ff13b4 1095
328d42d8 1096 prepare_execution_command (current_inferior ()->top_target (), async_exec);
43ff13b4 1097
c906108c 1098 if (!arg)
e2e0b3e5 1099 error_no_arg (_("starting address"));
c906108c 1100
6c5b2ebe
PA
1101 std::vector<symtab_and_line> sals
1102 = decode_line_with_last_displayed (arg, DECODE_LINE_FUNFIRSTLINE);
1103 if (sals.size () != 1)
1104 error (_("Unreasonable jump request"));
c906108c 1105
6c5b2ebe
PA
1106 symtab_and_line &sal = sals[0];
1107
c906108c 1108 if (sal.symtab == 0 && sal.pc == 0)
8a3fe4f8 1109 error (_("No source file has been specified."));
c906108c 1110
1777feb0 1111 resolve_sal_pc (&sal); /* May error out. */
c906108c 1112
1777feb0 1113 /* See if we are trying to jump to another function. */
c906108c
SS
1114 fn = get_frame_function (get_current_frame ());
1115 sfn = find_pc_function (sal.pc);
1116 if (fn != NULL && sfn != fn)
1117 {
9e2f0ad4 1118 if (!query (_("Line %d is not in `%s'. Jump anyway? "), sal.line,
987012b8 1119 fn->print_name ()))
c906108c 1120 {
8a3fe4f8 1121 error (_("Not confirmed."));
c906108c
SS
1122 /* NOTREACHED */
1123 }
1124 }
1125
c5aa993b 1126 if (sfn != NULL)
c906108c 1127 {
253342b8
DE
1128 struct obj_section *section;
1129
c906108c 1130 fixup_symbol_section (sfn, 0);
ebbc3a7d 1131 section = sfn->obj_section (symbol_objfile (sfn));
253342b8
DE
1132 if (section_is_overlay (section)
1133 && !section_is_mapped (section))
c906108c 1134 {
3e43a32a
MS
1135 if (!query (_("WARNING!!! Destination is in "
1136 "unmapped overlay! Jump anyway? ")))
c906108c 1137 {
8a3fe4f8 1138 error (_("Not confirmed."));
c906108c
SS
1139 /* NOTREACHED */
1140 }
1141 }
1142 }
1143
c906108c
SS
1144 addr = sal.pc;
1145
1146 if (from_tty)
1147 {
a3f17187 1148 printf_filtered (_("Continuing at "));
5af949e3 1149 fputs_filtered (paddress (gdbarch, addr), gdb_stdout);
c906108c
SS
1150 printf_filtered (".\n");
1151 }
1152
70509625 1153 clear_proceed_status (0);
64ce06e4 1154 proceed (addr, GDB_SIGNAL_0);
c906108c 1155}
c906108c 1156\f
c906108c
SS
1157/* Continue program giving it specified signal. */
1158
1159static void
0b39b52e 1160signal_command (const char *signum_exp, int from_tty)
c906108c 1161{
2ea28649 1162 enum gdb_signal oursig;
6c4486e6 1163 int async_exec;
c906108c
SS
1164
1165 dont_repeat (); /* Too dangerous. */
1166 ERROR_NO_INFERIOR;
573cda03 1167 ensure_not_tfind_mode ();
d729566a 1168 ensure_valid_thread ();
94cc34af 1169 ensure_not_running ();
c906108c 1170
32c1e744 1171 /* Find out whether we must run in the background. */
6be9a197
TT
1172 gdb::unique_xmalloc_ptr<char> stripped
1173 = strip_bg_char (signum_exp, &async_exec);
1174 signum_exp = stripped.get ();
32c1e744 1175
328d42d8 1176 prepare_execution_command (current_inferior ()->top_target (), async_exec);
32c1e744 1177
c906108c 1178 if (!signum_exp)
e2e0b3e5 1179 error_no_arg (_("signal number"));
c906108c
SS
1180
1181 /* It would be even slicker to make signal names be valid expressions,
1182 (the type could be "enum $signal" or some such), then the user could
1183 assign them to convenience variables. */
2ea28649 1184 oursig = gdb_signal_from_name (signum_exp);
c906108c 1185
a493e3e2 1186 if (oursig == GDB_SIGNAL_UNKNOWN)
c906108c
SS
1187 {
1188 /* No, try numeric. */
bb518678 1189 int num = parse_and_eval_long (signum_exp);
c906108c
SS
1190
1191 if (num == 0)
a493e3e2 1192 oursig = GDB_SIGNAL_0;
c906108c 1193 else
2ea28649 1194 oursig = gdb_signal_from_command (num);
c906108c
SS
1195 }
1196
70509625
PA
1197 /* Look for threads other than the current that this command ends up
1198 resuming too (due to schedlock off), and warn if they'll get a
1199 signal delivered. "signal 0" is used to suppress a previous
1200 signal, but if the current thread is no longer the one that got
1201 the signal, then the user is potentially suppressing the signal
1202 of the wrong thread. */
1203 if (!non_stop)
1204 {
70509625
PA
1205 int must_confirm = 0;
1206
1207 /* This indicates what will be resumed. Either a single thread,
1208 a whole process, or all threads of all processes. */
08036331 1209 ptid_t resume_ptid = user_visible_resume_ptid (0);
5b6d1e4f
PA
1210 process_stratum_target *resume_target
1211 = user_visible_resume_target (resume_ptid);
70509625 1212
5b6d1e4f
PA
1213 thread_info *current = inferior_thread ();
1214
1215 for (thread_info *tp : all_non_exited_threads (resume_target, resume_ptid))
70509625 1216 {
5b6d1e4f 1217 if (tp == current)
70509625 1218 continue;
70509625
PA
1219
1220 if (tp->suspend.stop_signal != GDB_SIGNAL_0
1221 && signal_pass_state (tp->suspend.stop_signal))
1222 {
1223 if (!must_confirm)
1224 printf_unfiltered (_("Note:\n"));
43792cf0
PA
1225 printf_unfiltered (_(" Thread %s previously stopped with signal %s, %s.\n"),
1226 print_thread_id (tp),
70509625
PA
1227 gdb_signal_to_name (tp->suspend.stop_signal),
1228 gdb_signal_to_string (tp->suspend.stop_signal));
1229 must_confirm = 1;
1230 }
1231 }
1232
1233 if (must_confirm
43792cf0 1234 && !query (_("Continuing thread %s (the current thread) with specified signal will\n"
70509625
PA
1235 "still deliver the signals noted above to their respective threads.\n"
1236 "Continue anyway? "),
43792cf0 1237 print_thread_id (inferior_thread ())))
70509625
PA
1238 error (_("Not confirmed."));
1239 }
1240
c906108c
SS
1241 if (from_tty)
1242 {
a493e3e2 1243 if (oursig == GDB_SIGNAL_0)
a3f17187 1244 printf_filtered (_("Continuing with no signal.\n"));
c906108c 1245 else
a3f17187 1246 printf_filtered (_("Continuing with signal %s.\n"),
2ea28649 1247 gdb_signal_to_name (oursig));
c906108c
SS
1248 }
1249
70509625 1250 clear_proceed_status (0);
64ce06e4 1251 proceed ((CORE_ADDR) -1, oursig);
c906108c
SS
1252}
1253
81219e53
DE
1254/* Queue a signal to be delivered to the current thread. */
1255
1256static void
0b39b52e 1257queue_signal_command (const char *signum_exp, int from_tty)
81219e53
DE
1258{
1259 enum gdb_signal oursig;
1260 struct thread_info *tp;
1261
1262 ERROR_NO_INFERIOR;
1263 ensure_not_tfind_mode ();
1264 ensure_valid_thread ();
1265 ensure_not_running ();
1266
1267 if (signum_exp == NULL)
1268 error_no_arg (_("signal number"));
1269
1270 /* It would be even slicker to make signal names be valid expressions,
1271 (the type could be "enum $signal" or some such), then the user could
1272 assign them to convenience variables. */
1273 oursig = gdb_signal_from_name (signum_exp);
1274
1275 if (oursig == GDB_SIGNAL_UNKNOWN)
1276 {
1277 /* No, try numeric. */
1278 int num = parse_and_eval_long (signum_exp);
1279
1280 if (num == 0)
1281 oursig = GDB_SIGNAL_0;
1282 else
1283 oursig = gdb_signal_from_command (num);
1284 }
1285
1286 if (oursig != GDB_SIGNAL_0
1287 && !signal_pass_state (oursig))
1288 error (_("Signal handling set to not pass this signal to the program."));
1289
1290 tp = inferior_thread ();
1291 tp->suspend.stop_signal = oursig;
1292}
1293
cfc31633
PA
1294/* Data for the FSM that manages the until (with no argument)
1295 command. */
1296
46e3ed7f 1297struct until_next_fsm : public thread_fsm
fa4cd53f 1298{
cfc31633 1299 /* The thread that as current when the command was executed. */
fa4cd53f 1300 int thread;
cfc31633 1301
46e3ed7f
TT
1302 until_next_fsm (struct interp *cmd_interp, int thread)
1303 : thread_fsm (cmd_interp),
1304 thread (thread)
1305 {
1306 }
cfc31633 1307
46e3ed7f
TT
1308 bool should_stop (struct thread_info *thread) override;
1309 void clean_up (struct thread_info *thread) override;
1310 enum async_reply_reason do_async_reply_reason () override;
cfc31633
PA
1311};
1312
cfc31633
PA
1313/* Implementation of the 'should_stop' FSM method for the until (with
1314 no arg) command. */
1315
46e3ed7f
TT
1316bool
1317until_next_fsm::should_stop (struct thread_info *tp)
cfc31633 1318{
cfc31633 1319 if (tp->control.stop_step)
46e3ed7f 1320 set_finished ();
cfc31633 1321
46e3ed7f 1322 return true;
cfc31633
PA
1323}
1324
1325/* Implementation of the 'clean_up' FSM method for the until (with no
1326 arg) command. */
186c406b 1327
46e3ed7f
TT
1328void
1329until_next_fsm::clean_up (struct thread_info *thread)
186c406b 1330{
8980e177 1331 delete_longjmp_breakpoint (thread->global_num);
cfc31633
PA
1332}
1333
1334/* Implementation of the 'async_reply_reason' FSM method for the until
1335 (with no arg) command. */
1336
46e3ed7f
TT
1337enum async_reply_reason
1338until_next_fsm::do_async_reply_reason ()
cfc31633
PA
1339{
1340 return EXEC_ASYNC_END_STEPPING_RANGE;
186c406b
TT
1341}
1342
c906108c
SS
1343/* Proceed until we reach a different source line with pc greater than
1344 our current one or exit the function. We skip calls in both cases.
1345
1346 Note that eventually this command should probably be changed so
1347 that only source lines are printed out when we hit the breakpoint
1348 we set. This may involve changes to wait_for_inferior and the
1349 proceed status code. */
1350
c906108c 1351static void
fba45db2 1352until_next_command (int from_tty)
c906108c
SS
1353{
1354 struct frame_info *frame;
1355 CORE_ADDR pc;
1356 struct symbol *func;
1357 struct symtab_and_line sal;
4e1c45ea 1358 struct thread_info *tp = inferior_thread ();
5d5658a1 1359 int thread = tp->global_num;
cfc31633 1360 struct until_next_fsm *sm;
c5aa993b 1361
70509625 1362 clear_proceed_status (0);
29734269 1363 set_step_frame (tp);
c906108c
SS
1364
1365 frame = get_current_frame ();
1366
1367 /* Step until either exited from this function or greater
1368 than the current line (if in symbolic section) or pc (if
1777feb0 1369 not). */
c906108c 1370
1c7819ef 1371 pc = get_frame_pc (frame);
c906108c 1372 func = find_pc_function (pc);
c5aa993b 1373
c906108c
SS
1374 if (!func)
1375 {
7cbd4a93 1376 struct bound_minimal_symbol msymbol = lookup_minimal_symbol_by_pc (pc);
c5aa993b 1377
7cbd4a93 1378 if (msymbol.minsym == NULL)
8a3fe4f8 1379 error (_("Execution is not within a known function."));
c5aa993b 1380
77e371c0 1381 tp->control.step_range_start = BMSYMBOL_VALUE_ADDRESS (msymbol);
7e09a223
YQ
1382 /* The upper-bound of step_range is exclusive. In order to make PC
1383 within the range, set the step_range_end with PC + 1. */
1384 tp->control.step_range_end = pc + 1;
c906108c
SS
1385 }
1386 else
1387 {
1388 sal = find_pc_line (pc, 0);
c5aa993b 1389
2b1ffcfd 1390 tp->control.step_range_start = BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (func));
16c381f0 1391 tp->control.step_range_end = sal.end;
c906108c 1392 }
c1e36e3e 1393 tp->control.may_range_step = 1;
c5aa993b 1394
16c381f0 1395 tp->control.step_over_calls = STEP_OVER_ALL;
c906108c 1396
186c406b 1397 set_longjmp_breakpoint (tp, get_frame_id (frame));
5419bdae 1398 delete_longjmp_breakpoint_cleanup lj_deleter (thread);
186c406b 1399
46e3ed7f
TT
1400 sm = new until_next_fsm (command_interp (), tp->global_num);
1401 tp->thread_fsm = sm;
5419bdae 1402 lj_deleter.release ();
fa4cd53f 1403
cfc31633 1404 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
c906108c
SS
1405}
1406
c5aa993b 1407static void
0b39b52e 1408until_command (const char *arg, int from_tty)
c906108c 1409{
6c4486e6 1410 int async_exec;
43ff13b4 1411
4247603b 1412 ERROR_NO_INFERIOR;
573cda03 1413 ensure_not_tfind_mode ();
4247603b
PA
1414 ensure_valid_thread ();
1415 ensure_not_running ();
573cda03 1416
1777feb0 1417 /* Find out whether we must run in the background. */
6be9a197
TT
1418 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (arg, &async_exec);
1419 arg = stripped.get ();
43ff13b4 1420
328d42d8 1421 prepare_execution_command (current_inferior ()->top_target (), async_exec);
43ff13b4 1422
c906108c 1423 if (arg)
ae66c1fc 1424 until_break_command (arg, from_tty, 0);
c906108c
SS
1425 else
1426 until_next_command (from_tty);
1427}
ae66c1fc
EZ
1428
1429static void
0b39b52e 1430advance_command (const char *arg, int from_tty)
ae66c1fc 1431{
6c4486e6 1432 int async_exec;
ae66c1fc 1433
4247603b 1434 ERROR_NO_INFERIOR;
573cda03 1435 ensure_not_tfind_mode ();
4247603b
PA
1436 ensure_valid_thread ();
1437 ensure_not_running ();
573cda03 1438
ae66c1fc 1439 if (arg == NULL)
e2e0b3e5 1440 error_no_arg (_("a location"));
ae66c1fc
EZ
1441
1442 /* Find out whether we must run in the background. */
6be9a197
TT
1443 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (arg, &async_exec);
1444 arg = stripped.get ();
ae66c1fc 1445
328d42d8 1446 prepare_execution_command (current_inferior ()->top_target (), async_exec);
ae66c1fc
EZ
1447
1448 until_break_command (arg, from_tty, 1);
1449}
c906108c 1450\f
cc72b2a2 1451/* Return the value of the result of a function at the end of a 'finish'
8a6c4031
JK
1452 command/BP. DTOR_DATA (if not NULL) can represent inferior registers
1453 right after an inferior call has finished. */
f941662f 1454
cc72b2a2 1455struct value *
0700e23e 1456get_return_value (struct value *function, struct type *value_type)
11cf8741 1457{
215c69dc
YQ
1458 regcache *stop_regs = get_current_regcache ();
1459 struct gdbarch *gdbarch = stop_regs->arch ();
44e5158b
AC
1460 struct value *value;
1461
f168693b 1462 value_type = check_typedef (value_type);
78134374 1463 gdb_assert (value_type->code () != TYPE_CODE_VOID);
11cf8741 1464
92ad9cd9
AC
1465 /* FIXME: 2003-09-27: When returning from a nested inferior function
1466 call, it's possible (with no help from the architecture vector)
1467 to locate and return/print a "struct return" value. This is just
7a9dd1b2 1468 a more complicated case of what is already being done in the
92ad9cd9
AC
1469 inferior function call code. In fact, when inferior function
1470 calls are made async, this will likely be made the norm. */
31db7b6c 1471
6a3a010b 1472 switch (gdbarch_return_value (gdbarch, function, value_type,
c055b101 1473 NULL, NULL, NULL))
44e5158b 1474 {
750eb019
AC
1475 case RETURN_VALUE_REGISTER_CONVENTION:
1476 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
181fc57c 1477 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
44e5158b 1478 value = allocate_value (value_type);
215c69dc 1479 gdbarch_return_value (gdbarch, function, value_type, stop_regs,
990a07ab 1480 value_contents_raw (value), NULL);
750eb019
AC
1481 break;
1482 case RETURN_VALUE_STRUCT_CONVENTION:
1483 value = NULL;
1484 break;
1485 default:
e2e0b3e5 1486 internal_error (__FILE__, __LINE__, _("bad switch"));
44e5158b 1487 }
bb472c1e 1488
cc72b2a2
KP
1489 return value;
1490}
1491
243a9253
PA
1492/* The captured function return value/type and its position in the
1493 value history. */
cc72b2a2 1494
243a9253 1495struct return_value_info
cc72b2a2 1496{
243a9253
PA
1497 /* The captured return value. May be NULL if we weren't able to
1498 retrieve it. See get_return_value. */
1499 struct value *value;
1500
1501 /* The return type. In some cases, we'll not be able extract the
1502 return value, but we always know the type. */
1503 struct type *type;
1504
1505 /* If we captured a value, this is the value history index. */
1506 int value_history_index;
1507};
1508
1509/* Helper for print_return_value. */
cc72b2a2 1510
243a9253
PA
1511static void
1512print_return_value_1 (struct ui_out *uiout, struct return_value_info *rv)
1513{
1514 if (rv->value != NULL)
31db7b6c 1515 {
79a45b7d
TT
1516 struct value_print_options opts;
1517
31db7b6c 1518 /* Print it. */
112e8700
SM
1519 uiout->text ("Value returned is ");
1520 uiout->field_fmt ("gdb-result-var", "$%d",
d7e74731 1521 rv->value_history_index);
112e8700 1522 uiout->text (" = ");
5d9a0608 1523 get_user_print_options (&opts);
d7e74731 1524
000439d5
TT
1525 if (opts.finish_print)
1526 {
1527 string_file stb;
1528 value_print (rv->value, &stb, &opts);
1529 uiout->field_stream ("return-value", stb);
1530 }
1531 else
7f6aba03
TT
1532 uiout->field_string ("return-value", _("<not displayed>"),
1533 metadata_style.style ());
112e8700 1534 uiout->text ("\n");
31db7b6c
MK
1535 }
1536 else
1537 {
2f408ecb 1538 std::string type_name = type_to_string (rv->type);
112e8700
SM
1539 uiout->text ("Value returned has type: ");
1540 uiout->field_string ("return-type", type_name.c_str ());
1541 uiout->text (".");
1542 uiout->text (" Cannot determine contents\n");
31db7b6c 1543 }
11cf8741
JM
1544}
1545
243a9253
PA
1546/* Print the result of a function at the end of a 'finish' command.
1547 RV points at an object representing the captured return value/type
1548 and its position in the value history. */
1549
1550void
1551print_return_value (struct ui_out *uiout, struct return_value_info *rv)
1552{
f097f5ad 1553 if (rv->type == NULL
78134374 1554 || check_typedef (rv->type)->code () == TYPE_CODE_VOID)
243a9253
PA
1555 return;
1556
a70b8144 1557 try
243a9253
PA
1558 {
1559 /* print_return_value_1 can throw an exception in some
1560 circumstances. We need to catch this so that we still
1561 delete the breakpoint. */
1562 print_return_value_1 (uiout, rv);
1563 }
230d2906 1564 catch (const gdb_exception &ex)
243a9253
PA
1565 {
1566 exception_print (gdb_stdout, ex);
1567 }
243a9253
PA
1568}
1569
1570/* Data for the FSM that manages the finish command. */
f941662f 1571
46e3ed7f 1572struct finish_command_fsm : public thread_fsm
43ff13b4 1573{
243a9253
PA
1574 /* The momentary breakpoint set at the function's return address in
1575 the caller. */
46e3ed7f 1576 breakpoint_up breakpoint;
243a9253
PA
1577
1578 /* The function that we're stepping out of. */
46e3ed7f 1579 struct symbol *function = nullptr;
8a6c4031 1580
243a9253
PA
1581 /* If the FSM finishes successfully, this stores the function's
1582 return value. */
46e3ed7f 1583 struct return_value_info return_value_info {};
c5aa993b 1584
46e3ed7f
TT
1585 explicit finish_command_fsm (struct interp *cmd_interp)
1586 : thread_fsm (cmd_interp)
1587 {
1588 }
243a9253 1589
46e3ed7f
TT
1590 bool should_stop (struct thread_info *thread) override;
1591 void clean_up (struct thread_info *thread) override;
1592 struct return_value_info *return_value () override;
1593 enum async_reply_reason do_async_reply_reason () override;
1594};
347bddb7 1595
243a9253
PA
1596/* Implementation of the 'should_stop' FSM method for the finish
1597 commands. Detects whether the thread stepped out of the function
1598 successfully, and if so, captures the function's return value and
1599 marks the FSM finished. */
1600
46e3ed7f
TT
1601bool
1602finish_command_fsm::should_stop (struct thread_info *tp)
243a9253 1603{
46e3ed7f 1604 struct return_value_info *rv = &return_value_info;
243a9253 1605
46e3ed7f 1606 if (function != NULL
243a9253 1607 && bpstat_find_breakpoint (tp->control.stop_bpstat,
46e3ed7f 1608 breakpoint.get ()) != NULL)
43ff13b4 1609 {
243a9253 1610 /* We're done. */
46e3ed7f 1611 set_finished ();
bfec99b2 1612
46e3ed7f 1613 rv->type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function));
243a9253
PA
1614 if (rv->type == NULL)
1615 internal_error (__FILE__, __LINE__,
1616 _("finish_command: function has no target type"));
f5871ec0 1617
78134374 1618 if (check_typedef (rv->type)->code () != TYPE_CODE_VOID)
40c549d6 1619 {
243a9253
PA
1620 struct value *func;
1621
46e3ed7f 1622 func = read_var_value (function, NULL, get_current_frame ());
0700e23e 1623 rv->value = get_return_value (func, rv->type);
aca20ec4
KB
1624 if (rv->value != NULL)
1625 rv->value_history_index = record_latest_value (rv->value);
243a9253
PA
1626 }
1627 }
1628 else if (tp->control.stop_step)
1629 {
1630 /* Finishing from an inline frame, or reverse finishing. In
1631 either case, there's no way to retrieve the return value. */
46e3ed7f 1632 set_finished ();
243a9253 1633 }
fa4cd53f 1634
46e3ed7f 1635 return true;
243a9253 1636}
40c549d6 1637
243a9253
PA
1638/* Implementation of the 'clean_up' FSM method for the finish
1639 commands. */
fa4cd53f 1640
46e3ed7f
TT
1641void
1642finish_command_fsm::clean_up (struct thread_info *thread)
243a9253 1643{
46e3ed7f 1644 breakpoint.reset ();
8980e177 1645 delete_longjmp_breakpoint (thread->global_num);
243a9253 1646}
f941662f 1647
243a9253
PA
1648/* Implementation of the 'return_value' FSM method for the finish
1649 commands. */
1650
46e3ed7f
TT
1651struct return_value_info *
1652finish_command_fsm::return_value ()
243a9253 1653{
46e3ed7f 1654 return &return_value_info;
43ff13b4
JM
1655}
1656
243a9253
PA
1657/* Implementation of the 'async_reply_reason' FSM method for the
1658 finish commands. */
1659
46e3ed7f
TT
1660enum async_reply_reason
1661finish_command_fsm::do_async_reply_reason ()
604ead4a 1662{
243a9253
PA
1663 if (execution_direction == EXEC_REVERSE)
1664 return EXEC_ASYNC_END_STEPPING_RANGE;
1665 else
1666 return EXEC_ASYNC_FUNCTION_FINISHED;
604ead4a
PA
1667}
1668
b2175913
MS
1669/* finish_backward -- helper function for finish_command. */
1670
1671static void
243a9253 1672finish_backward (struct finish_command_fsm *sm)
b2175913
MS
1673{
1674 struct symtab_and_line sal;
1675 struct thread_info *tp = inferior_thread ();
1c7819ef 1676 CORE_ADDR pc;
b2175913 1677 CORE_ADDR func_addr;
b2175913 1678
1c7819ef
PA
1679 pc = get_frame_pc (get_current_frame ());
1680
1681 if (find_pc_partial_function (pc, NULL, &func_addr, NULL) == 0)
1f267ae3 1682 error (_("Cannot find bounds of current function"));
b2175913
MS
1683
1684 sal = find_pc_line (func_addr, 0);
1685
9da8c2a0 1686 tp->control.proceed_to_finish = 1;
b2175913
MS
1687 /* Special case: if we're sitting at the function entry point,
1688 then all we need to do is take a reverse singlestep. We
1689 don't need to set a breakpoint, and indeed it would do us
1690 no good to do so.
1691
1692 Note that this can only happen at frame #0, since there's
1693 no way that a function up the stack can have a return address
1694 that's equal to its entry point. */
1695
1c7819ef 1696 if (sal.pc != pc)
b2175913 1697 {
a6d9a66e
UW
1698 struct frame_info *frame = get_selected_frame (NULL);
1699 struct gdbarch *gdbarch = get_frame_arch (frame);
9da8c2a0
PA
1700
1701 /* Set a step-resume at the function's entry point. Once that's
1702 hit, we'll do one more step backwards. */
51abb421 1703 symtab_and_line sr_sal;
9da8c2a0
PA
1704 sr_sal.pc = sal.pc;
1705 sr_sal.pspace = get_frame_program_space (frame);
1706 insert_step_resume_breakpoint_at_sal (gdbarch,
1707 sr_sal, null_frame_id);
a6d9a66e 1708
64ce06e4 1709 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
b2175913
MS
1710 }
1711 else
b2175913 1712 {
9da8c2a0
PA
1713 /* We're almost there -- we just need to back up by one more
1714 single-step. */
16c381f0 1715 tp->control.step_range_start = tp->control.step_range_end = 1;
64ce06e4 1716 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
b2175913 1717 }
b2175913
MS
1718}
1719
243a9253
PA
1720/* finish_forward -- helper function for finish_command. FRAME is the
1721 frame that called the function we're about to step out of. */
b2175913
MS
1722
1723static void
243a9253 1724finish_forward (struct finish_command_fsm *sm, struct frame_info *frame)
b2175913 1725{
def166f6 1726 struct frame_id frame_id = get_frame_id (frame);
a6d9a66e 1727 struct gdbarch *gdbarch = get_frame_arch (frame);
b2175913
MS
1728 struct symtab_and_line sal;
1729 struct thread_info *tp = inferior_thread ();
b2175913
MS
1730
1731 sal = find_pc_line (get_frame_pc (frame), 0);
1732 sal.pc = get_frame_pc (frame);
1733
243a9253
PA
1734 sm->breakpoint = set_momentary_breakpoint (gdbarch, sal,
1735 get_stack_frame_id (frame),
46e3ed7f 1736 bp_finish);
b2175913 1737
c70a6932
JK
1738 /* set_momentary_breakpoint invalidates FRAME. */
1739 frame = NULL;
1740
def166f6 1741 set_longjmp_breakpoint (tp, frame_id);
186c406b 1742
46c03469 1743 /* We want to print return value, please... */
16c381f0 1744 tp->control.proceed_to_finish = 1;
b2175913 1745
243a9253 1746 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
b2175913
MS
1747}
1748
e3b5daf9
MM
1749/* Skip frames for "finish". */
1750
1751static struct frame_info *
1752skip_finish_frames (struct frame_info *frame)
1753{
1754 struct frame_info *start;
1755
1756 do
1757 {
1758 start = frame;
1759
1760 frame = skip_tailcall_frames (frame);
1761 if (frame == NULL)
1762 break;
1763
1764 frame = skip_unwritable_frames (frame);
1765 if (frame == NULL)
1766 break;
1767 }
1768 while (start != frame);
1769
1770 return frame;
1771}
1772
f941662f
MK
1773/* "finish": Set a temporary breakpoint at the place the selected
1774 frame will return to, then continue. */
c906108c
SS
1775
1776static void
0b39b52e 1777finish_command (const char *arg, int from_tty)
c906108c 1778{
52f0bd74 1779 struct frame_info *frame;
6c4486e6 1780 int async_exec;
243a9253
PA
1781 struct finish_command_fsm *sm;
1782 struct thread_info *tp;
43ff13b4 1783
4247603b 1784 ERROR_NO_INFERIOR;
573cda03 1785 ensure_not_tfind_mode ();
4247603b
PA
1786 ensure_valid_thread ();
1787 ensure_not_running ();
573cda03 1788
f941662f 1789 /* Find out whether we must run in the background. */
6be9a197
TT
1790 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (arg, &async_exec);
1791 arg = stripped.get ();
43ff13b4 1792
328d42d8 1793 prepare_execution_command (current_inferior ()->top_target (), async_exec);
c906108c
SS
1794
1795 if (arg)
8a3fe4f8 1796 error (_("The \"finish\" command does not take any arguments."));
c906108c 1797
206415a3 1798 frame = get_prev_frame (get_selected_frame (_("No selected frame.")));
c906108c 1799 if (frame == 0)
8a3fe4f8 1800 error (_("\"finish\" not meaningful in the outermost frame."));
c906108c 1801
70509625 1802 clear_proceed_status (0);
c906108c 1803
243a9253
PA
1804 tp = inferior_thread ();
1805
46e3ed7f 1806 sm = new finish_command_fsm (command_interp ());
243a9253 1807
46e3ed7f 1808 tp->thread_fsm = sm;
243a9253 1809
edb3359d 1810 /* Finishing from an inline frame is completely different. We don't
243a9253 1811 try to show the "return value" - no way to locate it. */
edb3359d
DJ
1812 if (get_frame_type (get_selected_frame (_("No selected frame.")))
1813 == INLINE_FRAME)
1814 {
1815 /* Claim we are stepping in the calling frame. An empty step
1816 range means that we will stop once we aren't in a function
1817 called by that frame. We don't use the magic "1" value for
1818 step_range_end, because then infrun will think this is nexti,
1819 and not step over the rest of this inlined function call. */
29734269 1820 set_step_info (tp, frame, {});
16c381f0
JK
1821 tp->control.step_range_start = get_frame_pc (frame);
1822 tp->control.step_range_end = tp->control.step_range_start;
1823 tp->control.step_over_calls = STEP_OVER_ALL;
edb3359d
DJ
1824
1825 /* Print info on the selected frame, including level number but not
1826 source. */
1827 if (from_tty)
1828 {
1829 printf_filtered (_("Run till exit from "));
08d72866 1830 print_stack_frame (get_selected_frame (NULL), 1, LOCATION, 0);
edb3359d
DJ
1831 }
1832
64ce06e4 1833 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
edb3359d
DJ
1834 return;
1835 }
1836
c906108c
SS
1837 /* Find the function we will return from. */
1838
243a9253 1839 sm->function = find_pc_function (get_frame_pc (get_selected_frame (NULL)));
c906108c 1840
f941662f
MK
1841 /* Print info on the selected frame, including level number but not
1842 source. */
c906108c
SS
1843 if (from_tty)
1844 {
b2175913
MS
1845 if (execution_direction == EXEC_REVERSE)
1846 printf_filtered (_("Run back to call of "));
1847 else
743649fd 1848 {
243a9253 1849 if (sm->function != NULL && TYPE_NO_RETURN (sm->function->type)
743649fd
MW
1850 && !query (_("warning: Function %s does not return normally.\n"
1851 "Try to finish anyway? "),
987012b8 1852 sm->function->print_name ()))
743649fd
MW
1853 error (_("Not confirmed."));
1854 printf_filtered (_("Run till exit from "));
1855 }
b2175913 1856
08d72866 1857 print_stack_frame (get_selected_frame (NULL), 1, LOCATION, 0);
c906108c
SS
1858 }
1859
b2175913 1860 if (execution_direction == EXEC_REVERSE)
243a9253 1861 finish_backward (sm);
b2175913 1862 else
33b4777c 1863 {
e3b5daf9 1864 frame = skip_finish_frames (frame);
7eb89530 1865
33b4777c
MM
1866 if (frame == NULL)
1867 error (_("Cannot find the caller frame."));
1868
1869 finish_forward (sm, frame);
1870 }
c906108c
SS
1871}
1872\f
f941662f 1873
c906108c 1874static void
1d12d88f 1875info_program_command (const char *args, int from_tty)
c906108c 1876{
347bddb7
PA
1877 bpstat bs;
1878 int num, stat;
347bddb7 1879 ptid_t ptid;
5b6d1e4f 1880 process_stratum_target *proc_target;
c5aa993b 1881
55f6301a 1882 if (!target_has_execution ())
c906108c 1883 {
a3f17187 1884 printf_filtered (_("The program being debugged is not being run.\n"));
c906108c
SS
1885 return;
1886 }
1887
347bddb7 1888 if (non_stop)
5b6d1e4f
PA
1889 {
1890 ptid = inferior_ptid;
1891 proc_target = current_inferior ()->process_target ();
1892 }
347bddb7 1893 else
5b6d1e4f 1894 get_last_target_status (&proc_target, &ptid, nullptr);
347bddb7 1895
9e7f3bbb 1896 if (ptid == null_ptid || ptid == minus_one_ptid)
00431a78
PA
1897 error (_("No selected thread."));
1898
5b6d1e4f 1899 thread_info *tp = find_thread_ptid (proc_target, ptid);
00431a78
PA
1900
1901 if (tp->state == THREAD_EXITED)
347bddb7 1902 error (_("Invalid selected thread."));
00431a78 1903 else if (tp->state == THREAD_RUNNING)
347bddb7
PA
1904 error (_("Selected thread is running."));
1905
16c381f0 1906 bs = tp->control.stop_bpstat;
347bddb7
PA
1907 stat = bpstat_num (&bs, &num);
1908
c906108c 1909 target_files_info ();
5af949e3 1910 printf_filtered (_("Program stopped at %s.\n"),
f2ffa92b 1911 paddress (target_gdbarch (), tp->suspend.stop_pc));
16c381f0 1912 if (tp->control.stop_step)
a3f17187 1913 printf_filtered (_("It stopped after being stepped.\n"));
8671a17b 1914 else if (stat != 0)
c906108c
SS
1915 {
1916 /* There may be several breakpoints in the same place, so this
dda83cd7 1917 isn't as strange as it seems. */
8671a17b 1918 while (stat != 0)
c906108c 1919 {
8671a17b 1920 if (stat < 0)
c906108c 1921 {
3e43a32a
MS
1922 printf_filtered (_("It stopped at a breakpoint "
1923 "that has since been deleted.\n"));
c906108c
SS
1924 }
1925 else
a3f17187 1926 printf_filtered (_("It stopped at breakpoint %d.\n"), num);
8671a17b 1927 stat = bpstat_num (&bs, &num);
c906108c
SS
1928 }
1929 }
a493e3e2 1930 else if (tp->suspend.stop_signal != GDB_SIGNAL_0)
c906108c 1931 {
a3f17187 1932 printf_filtered (_("It stopped with signal %s, %s.\n"),
2ea28649
PA
1933 gdb_signal_to_name (tp->suspend.stop_signal),
1934 gdb_signal_to_string (tp->suspend.stop_signal));
c906108c
SS
1935 }
1936
0d41ba00 1937 if (from_tty)
c906108c 1938 {
3e43a32a
MS
1939 printf_filtered (_("Type \"info stack\" or \"info "
1940 "registers\" for more information.\n"));
c906108c
SS
1941 }
1942}
1943\f
1944static void
69f476a3 1945environment_info (const char *var, int from_tty)
c906108c
SS
1946{
1947 if (var)
1948 {
9a6c7d9c 1949 const char *val = current_inferior ()->environment.get (var);
abbb1732 1950
c906108c
SS
1951 if (val)
1952 {
1953 puts_filtered (var);
1954 puts_filtered (" = ");
1955 puts_filtered (val);
1956 puts_filtered ("\n");
1957 }
1958 else
1959 {
1960 puts_filtered ("Environment variable \"");
1961 puts_filtered (var);
1962 puts_filtered ("\" not defined.\n");
1963 }
1964 }
1965 else
1966 {
9a6c7d9c 1967 char **envp = current_inferior ()->environment.envp ();
abbb1732 1968
9a6c7d9c 1969 for (int idx = 0; envp[idx] != NULL; ++idx)
c906108c 1970 {
9a6c7d9c 1971 puts_filtered (envp[idx]);
c906108c
SS
1972 puts_filtered ("\n");
1973 }
1974 }
1975}
1976
1977static void
69f476a3 1978set_environment_command (const char *arg, int from_tty)
c906108c 1979{
69f476a3 1980 const char *p, *val;
c906108c
SS
1981 int nullset = 0;
1982
1983 if (arg == 0)
e2e0b3e5 1984 error_no_arg (_("environment variable and value"));
c906108c 1985
85102364 1986 /* Find separation between variable name and value. */
c906108c
SS
1987 p = (char *) strchr (arg, '=');
1988 val = (char *) strchr (arg, ' ');
1989
1990 if (p != 0 && val != 0)
1991 {
1992 /* We have both a space and an equals. If the space is before the
dda83cd7
SM
1993 equals, walk forward over the spaces til we see a nonspace
1994 (possibly the equals). */
c906108c
SS
1995 if (p > val)
1996 while (*val == ' ')
1997 val++;
1998
1999 /* Now if the = is after the char following the spaces,
dda83cd7 2000 take the char following the spaces. */
c906108c
SS
2001 if (p > val)
2002 p = val - 1;
2003 }
2004 else if (val != 0 && p == 0)
2005 p = val;
2006
2007 if (p == arg)
e2e0b3e5 2008 error_no_arg (_("environment variable to set"));
c906108c
SS
2009
2010 if (p == 0 || p[1] == 0)
2011 {
2012 nullset = 1;
2013 if (p == 0)
1777feb0 2014 p = arg + strlen (arg); /* So that savestring below will work. */
c906108c
SS
2015 }
2016 else
2017 {
1777feb0 2018 /* Not setting variable value to null. */
c906108c
SS
2019 val = p + 1;
2020 while (*val == ' ' || *val == '\t')
2021 val++;
2022 }
2023
c5aa993b
JM
2024 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
2025 p--;
c906108c 2026
69f476a3 2027 std::string var (arg, p - arg);
c906108c
SS
2028 if (nullset)
2029 {
3e43a32a
MS
2030 printf_filtered (_("Setting environment variable "
2031 "\"%s\" to null value.\n"),
69f476a3
TT
2032 var.c_str ());
2033 current_inferior ()->environment.set (var.c_str (), "");
c906108c
SS
2034 }
2035 else
69f476a3 2036 current_inferior ()->environment.set (var.c_str (), val);
c906108c
SS
2037}
2038
2039static void
69f476a3 2040unset_environment_command (const char *var, int from_tty)
c906108c
SS
2041{
2042 if (var == 0)
2043 {
2044 /* If there is no argument, delete all environment variables.
dda83cd7 2045 Ask for confirmation if reading from the terminal. */
e2e0b3e5 2046 if (!from_tty || query (_("Delete all environment variables? ")))
206726fb 2047 current_inferior ()->environment.clear ();
c906108c
SS
2048 }
2049 else
9a6c7d9c 2050 current_inferior ()->environment.unset (var);
c906108c
SS
2051}
2052
1777feb0 2053/* Handle the execution path (PATH variable). */
c906108c
SS
2054
2055static const char path_var_name[] = "PATH";
2056
c906108c 2057static void
69f476a3 2058path_info (const char *args, int from_tty)
c906108c
SS
2059{
2060 puts_filtered ("Executable and object file path: ");
9a6c7d9c 2061 puts_filtered (current_inferior ()->environment.get (path_var_name));
c906108c
SS
2062 puts_filtered ("\n");
2063}
2064
2065/* Add zero or more directories to the front of the execution path. */
2066
2067static void
0b39b52e 2068path_command (const char *dirname, int from_tty)
c906108c
SS
2069{
2070 char *exec_path;
a121b7c1 2071 const char *env;
abbb1732 2072
c906108c 2073 dont_repeat ();
9a6c7d9c 2074 env = current_inferior ()->environment.get (path_var_name);
1777feb0 2075 /* Can be null if path is not set. */
c906108c
SS
2076 if (!env)
2077 env = "";
4fcf66da 2078 exec_path = xstrdup (env);
c906108c 2079 mod_path (dirname, &exec_path);
9a6c7d9c 2080 current_inferior ()->environment.set (path_var_name, exec_path);
b8c9b27d 2081 xfree (exec_path);
c906108c 2082 if (from_tty)
cafb3438 2083 path_info (NULL, from_tty);
c906108c 2084}
c906108c 2085\f
c5aa993b 2086
e813d34a
RK
2087static void
2088pad_to_column (string_file &stream, int col)
2089{
2090 /* At least one space must be printed to separate columns. */
2091 stream.putc (' ');
2092 const int size = stream.size ();
2093 if (size < col)
2094 stream.puts (n_spaces (col - size));
2095}
2096
1292279a
PA
2097/* Print out the register NAME with value VAL, to FILE, in the default
2098 fashion. */
2099
2100static void
2101default_print_one_register_info (struct ui_file *file,
2102 const char *name,
2103 struct value *val)
2104{
2105 struct type *regtype = value_type (val);
f69d9aef 2106 int print_raw_format;
e813d34a
RK
2107 string_file format_stream;
2108 enum tab_stops
2109 {
2110 value_column_1 = 15,
2111 /* Give enough room for "0x", 16 hex digits and two spaces in
dda83cd7 2112 preceding column. */
e813d34a
RK
2113 value_column_2 = value_column_1 + 2 + 16 + 2,
2114 };
1292279a 2115
e813d34a
RK
2116 format_stream.puts (name);
2117 pad_to_column (format_stream, value_column_1);
1292279a 2118
f69d9aef
AB
2119 print_raw_format = (value_entirely_available (val)
2120 && !value_optimized_out (val));
1292279a
PA
2121
2122 /* If virtual format is floating, print it that way, and in raw
2123 hex. */
78134374
SM
2124 if (regtype->code () == TYPE_CODE_FLT
2125 || regtype->code () == TYPE_CODE_DECFLOAT)
1292279a 2126 {
1292279a
PA
2127 struct value_print_options opts;
2128 const gdb_byte *valaddr = value_contents_for_printing (val);
34877895 2129 enum bfd_endian byte_order = type_byte_order (regtype);
1292279a
PA
2130
2131 get_user_print_options (&opts);
2132 opts.deref_ref = 1;
2133
3444c526 2134 common_val_print (val, &format_stream, 0, &opts, current_language);
1292279a 2135
f69d9aef
AB
2136 if (print_raw_format)
2137 {
e813d34a
RK
2138 pad_to_column (format_stream, value_column_2);
2139 format_stream.puts ("(raw ");
2140 print_hex_chars (&format_stream, valaddr, TYPE_LENGTH (regtype),
2141 byte_order, true);
2142 format_stream.putc (')');
f69d9aef 2143 }
1292279a
PA
2144 }
2145 else
2146 {
2147 struct value_print_options opts;
2148
2149 /* Print the register in hex. */
2150 get_formatted_print_options (&opts, 'x');
2151 opts.deref_ref = 1;
3444c526 2152 common_val_print (val, &format_stream, 0, &opts, current_language);
1292279a
PA
2153 /* If not a vector register, print it also according to its
2154 natural format. */
bd63c870 2155 if (print_raw_format && regtype->is_vector () == 0)
1292279a 2156 {
e813d34a 2157 pad_to_column (format_stream, value_column_2);
1292279a
PA
2158 get_user_print_options (&opts);
2159 opts.deref_ref = 1;
3444c526 2160 common_val_print (val, &format_stream, 0, &opts, current_language);
1292279a
PA
2161 }
2162 }
2163
e813d34a 2164 fputs_filtered (format_stream.c_str (), file);
1292279a
PA
2165 fprintf_filtered (file, "\n");
2166}
2167
1777feb0 2168/* Print out the machine register regnum. If regnum is -1, print all
0ab7a791
AC
2169 registers (print_all == 1) or all non-float and non-vector
2170 registers (print_all == 0).
c906108c
SS
2171
2172 For most machines, having all_registers_info() print the
0ab7a791
AC
2173 register(s) one per line is good enough. If a different format is
2174 required, (eg, for MIPS or Pyramid 90x, which both have lots of
2175 regs), or there is an existing convention for showing all the
2176 registers, define the architecture method PRINT_REGISTERS_INFO to
2177 provide that format. */
c906108c 2178
666e11c5 2179void
0ab7a791
AC
2180default_print_registers_info (struct gdbarch *gdbarch,
2181 struct ui_file *file,
2182 struct frame_info *frame,
2183 int regnum, int print_all)
c906108c 2184{
0ab7a791 2185 int i;
f6efe3f8 2186 const int numregs = gdbarch_num_cooked_regs (gdbarch);
0ab7a791 2187
c906108c
SS
2188 for (i = 0; i < numregs; i++)
2189 {
4782dc19 2190 /* Decide between printing all regs, non-float / vector regs, or
dda83cd7 2191 specific reg. */
c5aa993b
JM
2192 if (regnum == -1)
2193 {
f9418c0f 2194 if (print_all)
4782dc19 2195 {
f9418c0f 2196 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
4782dc19 2197 continue;
f9418c0f
AC
2198 }
2199 else
2200 {
2201 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
4782dc19
AC
2202 continue;
2203 }
c5aa993b
JM
2204 }
2205 else
2206 {
2207 if (i != regnum)
2208 continue;
2209 }
c906108c
SS
2210
2211 /* If the register name is empty, it is undefined for this
dda83cd7 2212 processor, so don't display anything. */
a4bd449d
UW
2213 if (gdbarch_register_name (gdbarch, i) == NULL
2214 || *(gdbarch_register_name (gdbarch, i)) == '\0')
c906108c
SS
2215 continue;
2216
1292279a
PA
2217 default_print_one_register_info (file,
2218 gdbarch_register_name (gdbarch, i),
901461f8 2219 value_of_register (i, frame));
c906108c
SS
2220 }
2221}
c906108c 2222
c906108c 2223void
1d12d88f 2224registers_info (const char *addr_exp, int fpregs)
c906108c 2225{
206415a3 2226 struct frame_info *frame;
a4bd449d 2227 struct gdbarch *gdbarch;
c906108c 2228
9dccd06e 2229 if (!target_has_registers ())
8a3fe4f8 2230 error (_("The program has no registers now."));
206415a3 2231 frame = get_selected_frame (NULL);
a4bd449d 2232 gdbarch = get_frame_arch (frame);
c906108c
SS
2233
2234 if (!addr_exp)
2235 {
a4bd449d 2236 gdbarch_print_registers_info (gdbarch, gdb_stdout,
206415a3 2237 frame, -1, fpregs);
c906108c
SS
2238 return;
2239 }
2240
f9418c0f 2241 while (*addr_exp != '\0')
c5aa993b 2242 {
1d12d88f 2243 const char *start;
f9418c0f 2244 const char *end;
c906108c 2245
529480d0
KS
2246 /* Skip leading white space. */
2247 addr_exp = skip_spaces (addr_exp);
c906108c 2248
f9418c0f 2249 /* Discard any leading ``$''. Check that there is something
dda83cd7 2250 resembling a register following it. */
f9418c0f
AC
2251 if (addr_exp[0] == '$')
2252 addr_exp++;
2253 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
8a3fe4f8 2254 error (_("Missing register name"));
c906108c 2255
f9418c0f
AC
2256 /* Find the start/end of this register name/num/group. */
2257 start = addr_exp;
2258 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
2259 addr_exp++;
2260 end = addr_exp;
ad842144 2261
f9418c0f
AC
2262 /* Figure out what we've found and display it. */
2263
2264 /* A register name? */
2265 {
029a67e4 2266 int regnum = user_reg_map_name_to_regnum (gdbarch, start, end - start);
abbb1732 2267
f9418c0f
AC
2268 if (regnum >= 0)
2269 {
ad842144
MR
2270 /* User registers lie completely outside of the range of
2271 normal registers. Catch them early so that the target
2272 never sees them. */
f6efe3f8 2273 if (regnum >= gdbarch_num_cooked_regs (gdbarch))
ad842144 2274 {
1292279a
PA
2275 struct value *regval = value_of_user_reg (regnum, frame);
2276 const char *regname = user_reg_map_regnum_to_name (gdbarch,
2277 regnum);
2278
2279 /* Print in the same fashion
2280 gdbarch_print_registers_info's default
2281 implementation prints. */
2282 default_print_one_register_info (gdb_stdout,
2283 regname,
2284 regval);
ad842144
MR
2285 }
2286 else
2287 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2288 frame, regnum, fpregs);
f9418c0f
AC
2289 continue;
2290 }
2291 }
ad842144 2292
f9418c0f
AC
2293 /* A register group? */
2294 {
6c7d17ba 2295 struct reggroup *group;
abbb1732 2296
a4bd449d 2297 for (group = reggroup_next (gdbarch, NULL);
6c7d17ba 2298 group != NULL;
a4bd449d 2299 group = reggroup_next (gdbarch, group))
f9418c0f
AC
2300 {
2301 /* Don't bother with a length check. Should the user
2302 enter a short register group name, go with the first
2303 group that matches. */
6c7d17ba 2304 if (strncmp (start, reggroup_name (group), end - start) == 0)
f9418c0f
AC
2305 break;
2306 }
6c7d17ba 2307 if (group != NULL)
f9418c0f
AC
2308 {
2309 int regnum;
abbb1732 2310
f57d151a 2311 for (regnum = 0;
f6efe3f8 2312 regnum < gdbarch_num_cooked_regs (gdbarch);
f57d151a 2313 regnum++)
f9418c0f 2314 {
a4bd449d
UW
2315 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
2316 gdbarch_print_registers_info (gdbarch,
206415a3 2317 gdb_stdout, frame,
f9418c0f
AC
2318 regnum, fpregs);
2319 }
2320 continue;
2321 }
2322 }
c906108c 2323
f9418c0f 2324 /* Nothing matched. */
8a3fe4f8 2325 error (_("Invalid register `%.*s'"), (int) (end - start), start);
c5aa993b 2326 }
c906108c
SS
2327}
2328
1dd5fedc 2329static void
1d12d88f 2330info_all_registers_command (const char *addr_exp, int from_tty)
c906108c
SS
2331{
2332 registers_info (addr_exp, 1);
2333}
2334
a58dd373 2335static void
1d12d88f 2336info_registers_command (const char *addr_exp, int from_tty)
c906108c
SS
2337{
2338 registers_info (addr_exp, 0);
2339}
e76f1f2e
AC
2340
2341static void
d80b854b 2342print_vector_info (struct ui_file *file,
e76f1f2e
AC
2343 struct frame_info *frame, const char *args)
2344{
d80b854b
UW
2345 struct gdbarch *gdbarch = get_frame_arch (frame);
2346
e76f1f2e
AC
2347 if (gdbarch_print_vector_info_p (gdbarch))
2348 gdbarch_print_vector_info (gdbarch, file, frame, args);
2349 else
2350 {
2351 int regnum;
2352 int printed_something = 0;
ab4327e0 2353
f6efe3f8 2354 for (regnum = 0; regnum < gdbarch_num_cooked_regs (gdbarch); regnum++)
e76f1f2e 2355 {
f9418c0f 2356 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
e76f1f2e
AC
2357 {
2358 printed_something = 1;
e76f1f2e 2359 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
e76f1f2e
AC
2360 }
2361 }
2362 if (!printed_something)
2363 fprintf_filtered (file, "No vector information\n");
2364 }
2365}
2366
2367static void
1d12d88f 2368info_vector_command (const char *args, int from_tty)
e76f1f2e 2369{
9dccd06e 2370 if (!target_has_registers ())
206415a3
DJ
2371 error (_("The program has no registers now."));
2372
d80b854b 2373 print_vector_info (gdb_stdout, get_selected_frame (NULL), args);
e76f1f2e 2374}
c906108c 2375\f
5fd62852
PA
2376/* Kill the inferior process. Make us have no inferior. */
2377
2378static void
981a3fb3 2379kill_command (const char *arg, int from_tty)
5fd62852
PA
2380{
2381 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
2382 It should be a distinct flag that indicates that a target is active, cuz
1777feb0 2383 some targets don't have processes! */
5fd62852 2384
d7e15655 2385 if (inferior_ptid == null_ptid)
5fd62852
PA
2386 error (_("The program is not being run."));
2387 if (!query (_("Kill the program being debugged? ")))
2388 error (_("Not confirmed."));
f67c0c91 2389
249b5733
PA
2390 int pid = current_inferior ()->pid;
2391 /* Save the pid as a string before killing the inferior, since that
2392 may unpush the current target, and we need the string after. */
f2907e49 2393 std::string pid_str = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
2394 int infnum = current_inferior ()->num;
2395
5fd62852
PA
2396 target_kill ();
2397
f67c0c91 2398 if (print_inferior_events)
249b5733 2399 printf_unfiltered (_("[Inferior %d (%s) killed]\n"),
f67c0c91
SDJ
2400 infnum, pid_str.c_str ());
2401
5fd62852
PA
2402 bfd_cache_close_all ();
2403}
c5aa993b 2404
08036331 2405/* Used in `attach&' command. Proceed threads of inferior INF iff
74531fed 2406 they stopped due to debugger request, and when they did, they
08036331
PA
2407 reported a clean stop (GDB_SIGNAL_0). Do not proceed threads that
2408 have been explicitly been told to stop. */
74531fed
PA
2409
2410static void
08036331 2411proceed_after_attach (inferior *inf)
74531fed
PA
2412{
2413 /* Don't error out if the current thread is running, because
2414 there may be other stopped threads. */
74531fed
PA
2415
2416 /* Backup current thread and selected frame. */
5ed8105e 2417 scoped_restore_current_thread restore_thread;
74531fed 2418
08036331
PA
2419 for (thread_info *thread : inf->non_exited_threads ())
2420 if (!thread->executing
2421 && !thread->stop_requested
2422 && thread->suspend.stop_signal == GDB_SIGNAL_0)
2423 {
2424 switch_to_thread (thread);
2425 clear_proceed_status (0);
2426 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
2427 }
74531fed
PA
2428}
2429
6efcd9a8 2430/* See inferior.h. */
c906108c 2431
6efcd9a8
PA
2432void
2433setup_inferior (int from_tty)
9356cf8d 2434{
d6b48e9c 2435 struct inferior *inferior;
9356cf8d 2436
d6b48e9c 2437 inferior = current_inferior ();
6efcd9a8 2438 inferior->needs_setup = 0;
9356cf8d
PA
2439
2440 /* If no exec file is yet known, try to determine it from the
2441 process itself. */
a10de604 2442 if (get_exec_file (0) == NULL)
e99b03dc 2443 exec_file_locate_attach (inferior_ptid.pid (), 1, from_tty);
9356cf8d
PA
2444 else
2445 {
2446 reopen_exec_file ();
2447 reread_symbols ();
2448 }
2449
2450 /* Take any necessary post-attaching actions for this platform. */
e99b03dc 2451 target_post_attach (inferior_ptid.pid ());
9356cf8d 2452
a7aba266 2453 post_create_inferior (from_tty);
6efcd9a8
PA
2454}
2455
2456/* What to do after the first program stops after attaching. */
2457enum attach_post_wait_mode
2458{
2459 /* Do nothing. Leaves threads as they are. */
2460 ATTACH_POST_WAIT_NOTHING,
2461
2462 /* Re-resume threads that are marked running. */
2463 ATTACH_POST_WAIT_RESUME,
2464
2465 /* Stop all threads. */
2466 ATTACH_POST_WAIT_STOP,
2467};
2468
2469/* Called after we've attached to a process and we've seen it stop for
2470 the first time. If ASYNC_EXEC is true, re-resume threads that
2471 should be running. Else if ATTACH, */
2472
2473static void
27d0790a 2474attach_post_wait (int from_tty, enum attach_post_wait_mode mode)
6efcd9a8
PA
2475{
2476 struct inferior *inferior;
9356cf8d 2477
6efcd9a8
PA
2478 inferior = current_inferior ();
2479 inferior->control.stop_soon = NO_STOP_QUIETLY;
2480
2481 if (inferior->needs_setup)
2482 setup_inferior (from_tty);
2483
2484 if (mode == ATTACH_POST_WAIT_RESUME)
74531fed
PA
2485 {
2486 /* The user requested an `attach&', so be sure to leave threads
2487 that didn't get a signal running. */
2488
2489 /* Immediatelly resume all suspended threads of this inferior,
2490 and this inferior only. This should have no effect on
2491 already running threads. If a thread has been stopped with a
2492 signal, leave it be. */
2493 if (non_stop)
08036331 2494 proceed_after_attach (inferior);
74531fed
PA
2495 else
2496 {
a493e3e2 2497 if (inferior_thread ()->suspend.stop_signal == GDB_SIGNAL_0)
74531fed 2498 {
70509625 2499 clear_proceed_status (0);
64ce06e4 2500 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
74531fed
PA
2501 }
2502 }
2503 }
6efcd9a8 2504 else if (mode == ATTACH_POST_WAIT_STOP)
9356cf8d 2505 {
74531fed
PA
2506 /* The user requested a plain `attach', so be sure to leave
2507 the inferior stopped. */
2508
74531fed
PA
2509 /* At least the current thread is already stopped. */
2510
2511 /* In all-stop, by definition, all threads have to be already
2512 stopped at this point. In non-stop, however, although the
2513 selected thread is stopped, others may still be executing.
2514 Be sure to explicitly stop all threads of the process. This
2515 should have no effect on already stopped threads. */
066f6b6e 2516 if (non_stop)
f2907e49 2517 target_stop (ptid_t (inferior->pid));
066f6b6e
PA
2518 else if (target_is_non_stop_p ())
2519 {
066f6b6e 2520 struct thread_info *lowest = inferior_thread ();
066f6b6e
PA
2521
2522 stop_all_threads ();
2523
2524 /* It's not defined which thread will report the attach
2525 stop. For consistency, always select the thread with
2526 lowest GDB number, which should be the main thread, if it
2527 still exists. */
08036331
PA
2528 for (thread_info *thread : current_inferior ()->non_exited_threads ())
2529 if (thread->inf->num < lowest->inf->num
2530 || thread->per_inf_num < lowest->per_inf_num)
2531 lowest = thread;
066f6b6e 2532
00431a78 2533 switch_to_thread (lowest);
066f6b6e 2534 }
74531fed
PA
2535
2536 /* Tell the user/frontend where we're stopped. */
9356cf8d
PA
2537 normal_stop ();
2538 if (deprecated_attach_hook)
2539 deprecated_attach_hook ();
2540 }
2541}
2542
bfec99b2 2543struct attach_command_continuation_args
9356cf8d 2544{
9356cf8d 2545 int from_tty;
6efcd9a8 2546 enum attach_post_wait_mode mode;
bfec99b2 2547};
9356cf8d 2548
bfec99b2 2549static void
fa4cd53f 2550attach_command_continuation (void *args, int err)
bfec99b2 2551{
9a3c8263
SM
2552 struct attach_command_continuation_args *a
2553 = (struct attach_command_continuation_args *) args;
abbb1732 2554
fa4cd53f
PA
2555 if (err)
2556 return;
2557
27d0790a 2558 attach_post_wait (a->from_tty, a->mode);
9356cf8d
PA
2559}
2560
604ead4a
PA
2561static void
2562attach_command_continuation_free_args (void *args)
2563{
9a3c8263
SM
2564 struct attach_command_continuation_args *a
2565 = (struct attach_command_continuation_args *) args;
abbb1732 2566
604ead4a
PA
2567 xfree (a);
2568}
2569
6efcd9a8
PA
2570/* "attach" command entry point. Takes a program started up outside
2571 of gdb and ``attaches'' to it. This stops it cold in its tracks
2572 and allows us to start debugging it. */
2573
c906108c 2574void
0b39b52e 2575attach_command (const char *args, int from_tty)
c906108c 2576{
6c4486e6 2577 int async_exec;
b3ccfe11 2578 struct target_ops *attach_target;
6efcd9a8
PA
2579 struct inferior *inferior = current_inferior ();
2580 enum attach_post_wait_mode mode;
c906108c 2581
c5aa993b 2582 dont_repeat (); /* Not for the faint of heart */
c906108c 2583
1192f124
SM
2584 scoped_disable_commit_resumed disable_commit_resumed ("attaching");
2585
f5656ead 2586 if (gdbarch_has_global_solist (target_gdbarch ()))
2567c7d9
PA
2587 /* Don't complain if all processes share the same symbol
2588 space. */
8a305172 2589 ;
55f6301a 2590 else if (target_has_execution ())
c906108c 2591 {
9e2f0ad4 2592 if (query (_("A program is being debugged already. Kill it? ")))
c906108c
SS
2593 target_kill ();
2594 else
8a3fe4f8 2595 error (_("Not killed."));
c906108c
SS
2596 }
2597
fd79ecee
DJ
2598 /* Clean up any leftovers from other runs. Some other things from
2599 this function should probably be moved into target_pre_inferior. */
2600 target_pre_inferior (from_tty);
2601
6be9a197
TT
2602 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (args, &async_exec);
2603 args = stripped.get ();
8bc2fe48 2604
b3ccfe11
TT
2605 attach_target = find_attach_target ();
2606
8bc2fe48
PA
2607 prepare_execution_command (attach_target, async_exec);
2608
f6ac5f3d 2609 if (non_stop && !attach_target->supports_non_stop ())
9908b566
VP
2610 error (_("Cannot attach to this target in non-stop mode"));
2611
f6ac5f3d 2612 attach_target->attach (args, from_tty);
b3ccfe11
TT
2613 /* to_attach should push the target, so after this point we
2614 shouldn't refer to attach_target again. */
2615 attach_target = NULL;
c906108c
SS
2616
2617 /* Set up the "saved terminal modes" of the inferior
2618 based on what modes we are starting it with. */
223ffa71 2619 target_terminal::init ();
c906108c 2620
7180e04a
PA
2621 /* Install inferior's terminal modes. This may look like a no-op,
2622 as we've just saved them above, however, this does more than
2623 restore terminal settings:
2624
2625 - installs a SIGINT handler that forwards SIGINT to the inferior.
2626 Otherwise a Ctrl-C pressed just while waiting for the initial
2627 stop would end up as a spurious Quit.
2628
2629 - removes stdin from the event loop, which we need if attaching
2630 in the foreground, otherwise on targets that report an initial
2631 stop on attach (which are most) we'd process input/commands
2632 while we're in the event loop waiting for that stop. That is,
2633 before the attach continuation runs and the command is really
2634 finished. */
223ffa71 2635 target_terminal::inferior ();
7180e04a 2636
c906108c
SS
2637 /* Set up execution context to know that we should return from
2638 wait_for_inferior as soon as the target reports a stop. */
2639 init_wait_for_inferior ();
c906108c 2640
6efcd9a8
PA
2641 inferior->needs_setup = 1;
2642
fbea99ea 2643 if (target_is_non_stop_p ())
74531fed
PA
2644 {
2645 /* If we find that the current thread isn't stopped, explicitly
2646 do so now, because we're going to install breakpoints and
2647 poke at memory. */
2648
2649 if (async_exec)
2650 /* The user requested an `attach&'; stop just one thread. */
2651 target_stop (inferior_ptid);
2652 else
2653 /* The user requested an `attach', so stop all threads of this
2654 inferior. */
e99b03dc 2655 target_stop (ptid_t (inferior_ptid.pid ()));
74531fed
PA
2656 }
2657
a2fedca9
PW
2658 /* Check for exec file mismatch, and let the user solve it. */
2659 validate_exec_file (from_tty);
2660
6efcd9a8
PA
2661 mode = async_exec ? ATTACH_POST_WAIT_RESUME : ATTACH_POST_WAIT_STOP;
2662
dc177b7a
PA
2663 /* Some system don't generate traps when attaching to inferior.
2664 E.g. Mach 3 or GNU hurd. */
f6ac5f3d 2665 if (!target_attach_no_wait ())
c5aa993b 2666 {
0b333c5e 2667 struct attach_command_continuation_args *a;
d6b48e9c 2668
1777feb0 2669 /* Careful here. See comments in inferior.h. Basically some
dc177b7a
PA
2670 OSes don't ignore SIGSTOPs on continue requests anymore. We
2671 need a way for handle_inferior_event to reset the stop_signal
2672 variable after an attach, and this is what
2673 STOP_QUIETLY_NO_SIGSTOP is for. */
16c381f0 2674 inferior->control.stop_soon = STOP_QUIETLY_NO_SIGSTOP;
c5aa993b 2675
3b12939d 2676 /* Wait for stop. */
0b333c5e 2677 a = XNEW (struct attach_command_continuation_args);
0b333c5e 2678 a->from_tty = from_tty;
6efcd9a8 2679 a->mode = mode;
0b333c5e
PA
2680 add_inferior_continuation (attach_command_continuation, a,
2681 attach_command_continuation_free_args);
0b333c5e 2682
5b6d1e4f
PA
2683 /* Let infrun consider waiting for events out of this
2684 target. */
2685 inferior->process_target ()->threads_executing = true;
2686
0b333c5e
PA
2687 if (!target_is_async_p ())
2688 mark_infrun_async_event_handler ();
2689 return;
dc177b7a 2690 }
5b6d1e4f 2691 else
27d0790a 2692 attach_post_wait (from_tty, mode);
1192f124
SM
2693
2694 disable_commit_resumed.reset_and_commit ();
c906108c
SS
2695}
2696
1941c569
PA
2697/* We had just found out that the target was already attached to an
2698 inferior. PTID points at a thread of this new inferior, that is
2699 the most likely to be stopped right now, but not necessarily so.
2700 The new inferior is assumed to be already added to the inferior
2701 list at this point. If LEAVE_RUNNING, then leave the threads of
2702 this inferior running, except those we've explicitly seen reported
2703 as stopped. */
2704
2705void
00431a78 2706notice_new_inferior (thread_info *thr, int leave_running, int from_tty)
1941c569 2707{
5ed8105e
PA
2708 enum attach_post_wait_mode mode
2709 = leave_running ? ATTACH_POST_WAIT_RESUME : ATTACH_POST_WAIT_NOTHING;
1941c569 2710
5ed8105e 2711 gdb::optional<scoped_restore_current_thread> restore_thread;
1941c569 2712
5ed8105e
PA
2713 if (inferior_ptid != null_ptid)
2714 restore_thread.emplace ();
1941c569 2715
6efcd9a8
PA
2716 /* Avoid reading registers -- we haven't fetched the target
2717 description yet. */
00431a78 2718 switch_to_thread_no_regs (thr);
1941c569
PA
2719
2720 /* When we "notice" a new inferior we need to do all the things we
2721 would normally do if we had just attached to it. */
2722
00431a78 2723 if (thr->executing)
1941c569 2724 {
0b333c5e 2725 struct attach_command_continuation_args *a;
1941c569
PA
2726 struct inferior *inferior = current_inferior ();
2727
2728 /* We're going to install breakpoints, and poke at memory,
2729 ensure that the inferior is stopped for a moment while we do
2730 that. */
2731 target_stop (inferior_ptid);
2732
16c381f0 2733 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
1941c569
PA
2734
2735 /* Wait for stop before proceeding. */
0b333c5e 2736 a = XNEW (struct attach_command_continuation_args);
0b333c5e 2737 a->from_tty = from_tty;
6efcd9a8 2738 a->mode = mode;
0b333c5e
PA
2739 add_inferior_continuation (attach_command_continuation, a,
2740 attach_command_continuation_free_args);
1941c569 2741
0b333c5e 2742 return;
1941c569
PA
2743 }
2744
27d0790a 2745 attach_post_wait (from_tty, mode);
1941c569
PA
2746}
2747
c906108c
SS
2748/*
2749 * detach_command --
2750 * takes a program previously attached to and detaches it.
2751 * The program resumes execution and will no longer stop
2752 * on signals, etc. We better not have left any breakpoints
2753 * in the program or it'll die when it hits one. For this
2754 * to work, it may be necessary for the process to have been
2755 * previously attached. It *might* work if the program was
2756 * started via the normal ptrace (PTRACE_TRACEME).
2757 */
2758
6418d433 2759void
981a3fb3 2760detach_command (const char *args, int from_tty)
c906108c 2761{
1f5d0fc9 2762 dont_repeat (); /* Not for the faint of heart. */
d729566a 2763
d7e15655 2764 if (inferior_ptid == null_ptid)
d729566a
PA
2765 error (_("The program is not being run."));
2766
1192f124
SM
2767 scoped_disable_commit_resumed disable_commit_resumed ("detaching");
2768
2f9d54cf
PA
2769 query_if_trace_running (from_tty);
2770
2771 disconnect_tracing ();
d5551862 2772
408f6686
PA
2773 /* Hold a strong reference to the target while (maybe)
2774 detaching the parent. Otherwise detaching could close the
2775 target. */
2776 auto target_ref
2777 = target_ops_ref::new_reference (current_inferior ()->process_target ());
2778
2779 /* Save this before detaching, since detaching may unpush the
2780 process_stratum target. */
2781 bool was_non_stop_p = target_is_non_stop_p ();
2782
6e1e1966 2783 target_detach (current_inferior (), from_tty);
50c71eaf 2784
63000888
PA
2785 /* The current inferior process was just detached successfully. Get
2786 rid of breakpoints that no longer make sense. Note we don't do
2787 this within target_detach because that is also used when
2788 following child forks, and in that case we will want to transfer
2789 breakpoints to the child, not delete them. */
2790 breakpoint_init_inferior (inf_exited);
2791
50c71eaf
PA
2792 /* If the solist is global across inferiors, don't clear it when we
2793 detach from a single inferior. */
f5656ead 2794 if (!gdbarch_has_global_solist (target_gdbarch ()))
50c71eaf 2795 no_shared_libraries (NULL, from_tty);
8a305172 2796
9a4105ab
AC
2797 if (deprecated_detach_hook)
2798 deprecated_detach_hook ();
408f6686
PA
2799
2800 if (!was_non_stop_p)
2801 restart_after_all_stop_detach (as_process_stratum_target (target_ref.get ()));
1192f124
SM
2802
2803 disable_commit_resumed.reset_and_commit ();
c906108c
SS
2804}
2805
6ad8ae5c
DJ
2806/* Disconnect from the current target without resuming it (leaving it
2807 waiting for a debugger).
2808
2809 We'd better not have left any breakpoints in the program or the
2810 next debugger will get confused. Currently only supported for some
2811 remote targets, since the normal attach mechanisms don't work on
2812 stopped processes on some native platforms (e.g. GNU/Linux). */
2813
2814static void
0b39b52e 2815disconnect_command (const char *args, int from_tty)
6ad8ae5c 2816{
1777feb0 2817 dont_repeat (); /* Not for the faint of heart. */
2f9d54cf
PA
2818 query_if_trace_running (from_tty);
2819 disconnect_tracing ();
6ad8ae5c 2820 target_disconnect (args, from_tty);
e85a822c 2821 no_shared_libraries (NULL, from_tty);
a0ef4274 2822 init_thread_list ();
9a4105ab
AC
2823 if (deprecated_detach_hook)
2824 deprecated_detach_hook ();
6ad8ae5c
DJ
2825}
2826
5b6d1e4f
PA
2827/* Stop PTID in the current target, and tag the PTID threads as having
2828 been explicitly requested to stop. PTID can be a thread, a
2829 process, or minus_one_ptid, meaning all threads of all inferiors of
2830 the current target. */
e42de8c7 2831
5b6d1e4f
PA
2832static void
2833stop_current_target_threads_ns (ptid_t ptid)
2834{
2835 target_stop (ptid);
252fbfc8
PA
2836
2837 /* Tag the thread as having been explicitly requested to stop, so
2838 other parts of gdb know not to resume this thread automatically,
2839 if it was stopped due to an internal event. Limit this to
2840 non-stop mode, as when debugging a multi-threaded application in
2841 all-stop mode, we will only get one stop event --- it's undefined
2842 which thread will report the event. */
5b6d1e4f
PA
2843 set_stop_requested (current_inferior ()->process_target (),
2844 ptid, 1);
2845}
2846
2847/* See inferior.h. */
2848
2849void
2850interrupt_target_1 (bool all_threads)
2851{
1192f124
SM
2852 scoped_disable_commit_resumed disable_commit_resumed ("interrupting");
2853
252fbfc8 2854 if (non_stop)
5b6d1e4f
PA
2855 {
2856 if (all_threads)
2857 {
2858 scoped_restore_current_thread restore_thread;
2859
2860 for (inferior *inf : all_inferiors ())
2861 {
2862 switch_to_inferior_no_thread (inf);
2863 stop_current_target_threads_ns (minus_one_ptid);
2864 }
2865 }
2866 else
2867 stop_current_target_threads_ns (inferior_ptid);
2868 }
2869 else
2870 target_interrupt ();
1192f124
SM
2871
2872 disable_commit_resumed.reset_and_commit ();
77ebaa5a
VP
2873}
2874
6339bfc4
DE
2875/* interrupt [-a]
2876 Stop the execution of the target while running in async mode, in
17e5269b 2877 the background. In all-stop, stop the whole process. In non-stop
8cae4b3f
PA
2878 mode, stop the current thread only by default, or stop all threads
2879 if the `-a' switch is used. */
2880
1dd5fedc 2881static void
0b39b52e 2882interrupt_command (const char *args, int from_tty)
43ff13b4 2883{
362646f5 2884 if (target_can_async_p ())
43ff13b4 2885 {
8cae4b3f
PA
2886 int all_threads = 0;
2887
1777feb0 2888 dont_repeat (); /* Not for the faint of heart. */
94cc34af 2889
8cae4b3f 2890 if (args != NULL
61012eef 2891 && startswith (args, "-a"))
8cae4b3f
PA
2892 all_threads = 1;
2893
2894 if (!non_stop && all_threads)
2895 error (_("-a is meaningless in all-stop mode."));
2896
77ebaa5a 2897 interrupt_target_1 (all_threads);
43ff13b4
JM
2898 }
2899}
2900
cc86d1cb
YQ
2901/* See inferior.h. */
2902
2903void
2904default_print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
2905 struct frame_info *frame, const char *args)
c906108c 2906{
cc86d1cb
YQ
2907 int regnum;
2908 int printed_something = 0;
d80b854b 2909
f6efe3f8 2910 for (regnum = 0; regnum < gdbarch_num_cooked_regs (gdbarch); regnum++)
23e3a7ac 2911 {
cc86d1cb 2912 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
23e3a7ac 2913 {
cc86d1cb
YQ
2914 printed_something = 1;
2915 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
23e3a7ac 2916 }
23e3a7ac 2917 }
cc86d1cb
YQ
2918 if (!printed_something)
2919 fprintf_filtered (file, "No floating-point info "
2920 "available for this processor.\n");
23e3a7ac
AC
2921}
2922
2923static void
1d12d88f 2924info_float_command (const char *args, int from_tty)
23e3a7ac 2925{
cc86d1cb
YQ
2926 struct frame_info *frame;
2927
9dccd06e 2928 if (!target_has_registers ())
206415a3
DJ
2929 error (_("The program has no registers now."));
2930
cc86d1cb
YQ
2931 frame = get_selected_frame (NULL);
2932 gdbarch_print_float_info (get_frame_arch (frame), gdb_stdout, frame, args);
c906108c
SS
2933}
2934\f
145b16a9
UW
2935/* Implement `info proc' family of commands. */
2936
2937static void
69f476a3 2938info_proc_cmd_1 (const char *args, enum info_proc_what what, int from_tty)
145b16a9 2939{
3030c96e
UW
2940 struct gdbarch *gdbarch = get_current_arch ();
2941
451b7c33
TT
2942 if (!target_info_proc (args, what))
2943 {
2944 if (gdbarch_info_proc_p (gdbarch))
2945 gdbarch_info_proc (gdbarch, args, what);
2946 else
2947 error (_("Not supported on this target."));
2948 }
145b16a9
UW
2949}
2950
85102364 2951/* Implement `info proc' when given without any further parameters. */
145b16a9
UW
2952
2953static void
981a3fb3 2954info_proc_cmd (const char *args, int from_tty)
145b16a9
UW
2955{
2956 info_proc_cmd_1 (args, IP_MINIMAL, from_tty);
2957}
2958
2959/* Implement `info proc mappings'. */
2960
2961static void
69f476a3 2962info_proc_cmd_mappings (const char *args, int from_tty)
145b16a9
UW
2963{
2964 info_proc_cmd_1 (args, IP_MAPPINGS, from_tty);
2965}
2966
2967/* Implement `info proc stat'. */
2968
2969static void
69f476a3 2970info_proc_cmd_stat (const char *args, int from_tty)
145b16a9
UW
2971{
2972 info_proc_cmd_1 (args, IP_STAT, from_tty);
2973}
2974
2975/* Implement `info proc status'. */
2976
2977static void
69f476a3 2978info_proc_cmd_status (const char *args, int from_tty)
145b16a9
UW
2979{
2980 info_proc_cmd_1 (args, IP_STATUS, from_tty);
2981}
2982
2983/* Implement `info proc cwd'. */
2984
2985static void
69f476a3 2986info_proc_cmd_cwd (const char *args, int from_tty)
145b16a9
UW
2987{
2988 info_proc_cmd_1 (args, IP_CWD, from_tty);
2989}
2990
2991/* Implement `info proc cmdline'. */
2992
2993static void
69f476a3 2994info_proc_cmd_cmdline (const char *args, int from_tty)
145b16a9
UW
2995{
2996 info_proc_cmd_1 (args, IP_CMDLINE, from_tty);
2997}
2998
2999/* Implement `info proc exe'. */
3000
3001static void
69f476a3 3002info_proc_cmd_exe (const char *args, int from_tty)
145b16a9
UW
3003{
3004 info_proc_cmd_1 (args, IP_EXE, from_tty);
3005}
3006
e98ee8c4
JB
3007/* Implement `info proc files'. */
3008
3009static void
3010info_proc_cmd_files (const char *args, int from_tty)
3011{
3012 info_proc_cmd_1 (args, IP_FILES, from_tty);
3013}
3014
145b16a9
UW
3015/* Implement `info proc all'. */
3016
3017static void
69f476a3 3018info_proc_cmd_all (const char *args, int from_tty)
145b16a9
UW
3019{
3020 info_proc_cmd_1 (args, IP_ALL, from_tty);
3021}
3022
000439d5
TT
3023/* Implement `show print finish'. */
3024
3025static void
3026show_print_finish (struct ui_file *file, int from_tty,
3027 struct cmd_list_element *c,
3028 const char *value)
3029{
3030 fprintf_filtered (file, _("\
3031Printing of return value after `finish' is %s.\n"),
3032 value);
3033}
3034
3035
4e5a4f58
JB
3036/* This help string is used for the run, start, and starti commands.
3037 It is defined as a macro to prevent duplication. */
3038
3039#define RUN_ARGS_HELP \
3040"You may specify arguments to give it.\n\
3041Args may include \"*\", or \"[...]\"; they are expanded using the\n\
3042shell that will start the program (specified by the \"$SHELL\" environment\n\
3043variable). Input and output redirection with \">\", \"<\", or \">>\"\n\
3044are also allowed.\n\
3045\n\
3046With no arguments, uses arguments last specified (with \"run\" or \n\
3047\"set args\"). To cancel previous arguments and run with no arguments,\n\
3048use \"set args\" without arguments.\n\
3049\n\
3050To start the inferior without using a shell, use \"set startup-with-shell off\"."
3051
6c265988 3052void _initialize_infcmd ();
c906108c 3053void
6c265988 3054_initialize_infcmd ()
c906108c 3055{
145b16a9 3056 static struct cmd_list_element *info_proc_cmdlist;
3cb3b8df 3057 struct cmd_list_element *c = NULL;
6f937416 3058 const char *cmd_name;
3cb3b8df 3059
1777feb0 3060 /* Add the filename of the terminal connected to inferior I/O. */
0a1ddfa6
SM
3061 add_setshow_optional_filename_cmd ("inferior-tty", class_run,
3062 &inferior_io_terminal_scratch, _("\
3cb3b8df
BR
3063Set terminal for future runs of program being debugged."), _("\
3064Show terminal for future runs of program being debugged."), _("\
0a1ddfa6
SM
3065Usage: set inferior-tty [TTY]\n\n\
3066If TTY is omitted, the default behavior of using the same terminal as GDB\n\
3067is restored."),
3068 set_inferior_tty_command,
3069 show_inferior_tty_command,
3070 &setlist, &showlist);
21873064 3071 cmd_name = "inferior-tty";
cf00cd6f 3072 c = lookup_cmd (&cmd_name, setlist, "", NULL, -1, 1);
21873064 3073 gdb_assert (c != NULL);
57b4f16e 3074 add_alias_cmd ("tty", c, class_run, 0, &cmdlist);
c906108c 3075
6ace3df1
YQ
3076 cmd_name = "args";
3077 add_setshow_string_noescape_cmd (cmd_name, class_run,
3078 &inferior_args_scratch, _("\
b4b4ac0b
AC
3079Set argument list to give program being debugged when it is started."), _("\
3080Show argument list to give program being debugged when it is started."), _("\
3081Follow this command with any number of args, to be passed to the program."),
6ace3df1
YQ
3082 set_args_command,
3083 show_args_command,
3084 &setlist, &showlist);
cf00cd6f 3085 c = lookup_cmd (&cmd_name, setlist, "", NULL, -1, 1);
6ace3df1
YQ
3086 gdb_assert (c != NULL);
3087 set_cmd_completer (c, filename_completer);
c906108c 3088
d092c5a2
SDJ
3089 cmd_name = "cwd";
3090 add_setshow_string_noescape_cmd (cmd_name, class_run,
3091 &inferior_cwd_scratch, _("\
3092Set the current working directory to be used when the inferior is started.\n\
3093Changing this setting does not have any effect on inferiors that are\n\
3094already running."),
3095 _("\
3096Show the current working directory that is used when the inferior is started."),
3097 _("\
3098Use this command to change the current working directory that will be used\n\
3099when the inferior is started. This setting does not affect GDB's current\n\
3100working directory."),
3101 set_cwd_command,
3102 show_cwd_command,
3103 &setlist, &showlist);
cf00cd6f 3104 c = lookup_cmd (&cmd_name, setlist, "", NULL, -1, 1);
d092c5a2
SDJ
3105 gdb_assert (c != NULL);
3106 set_cmd_completer (c, filename_completer);
3107
1a966eab
AC
3108 c = add_cmd ("environment", no_class, environment_info, _("\
3109The environment to give the program, or one variable's value.\n\
c906108c
SS
3110With an argument VAR, prints the value of environment variable VAR to\n\
3111give the program being debugged. With no arguments, prints the entire\n\
1a966eab 3112environment to be given to the program."), &showlist);
5ba2abeb 3113 set_cmd_completer (c, noop_completer);
c906108c 3114
0743fc83
TT
3115 add_basic_prefix_cmd ("unset", no_class,
3116 _("Complement to certain \"set\" commands."),
3117 &unsetlist, "unset ", 0, &cmdlist);
c5aa993b 3118
1a966eab
AC
3119 c = add_cmd ("environment", class_run, unset_environment_command, _("\
3120Cancel environment variable VAR for the program.\n\
3121This does not affect the program until the next \"run\" command."),
c5aa993b 3122 &unsetlist);
5ba2abeb 3123 set_cmd_completer (c, noop_completer);
c906108c 3124
1a966eab
AC
3125 c = add_cmd ("environment", class_run, set_environment_command, _("\
3126Set environment variable value to give the program.\n\
c906108c
SS
3127Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
3128VALUES of environment variables are uninterpreted strings.\n\
1a966eab 3129This does not affect the program until the next \"run\" command."),
c5aa993b 3130 &setlist);
5ba2abeb 3131 set_cmd_completer (c, noop_completer);
c5aa993b 3132
1bedd215
AC
3133 c = add_com ("path", class_files, path_command, _("\
3134Add directory DIR(s) to beginning of search path for object files.\n\
c906108c
SS
3135$cwd in the path means the current working directory.\n\
3136This path is equivalent to the $PATH shell variable. It is a list of\n\
3137directories, separated by colons. These directories are searched to find\n\
3e43a32a
MS
3138fully linked executable files and separately compiled object files as \
3139needed."));
5ba2abeb 3140 set_cmd_completer (c, filename_completer);
c906108c 3141
1a966eab
AC
3142 c = add_cmd ("paths", no_class, path_info, _("\
3143Current search path for finding object files.\n\
c906108c
SS
3144$cwd in the path means the current working directory.\n\
3145This path is equivalent to the $PATH shell variable. It is a list of\n\
3146directories, separated by colons. These directories are searched to find\n\
3e43a32a
MS
3147fully linked executable files and separately compiled object files as \
3148needed."),
c906108c 3149 &showlist);
5ba2abeb 3150 set_cmd_completer (c, noop_completer);
c906108c 3151
2277426b
PA
3152 add_prefix_cmd ("kill", class_run, kill_command,
3153 _("Kill execution of program being debugged."),
3154 &killlist, "kill ", 0, &cmdlist);
5fd62852 3155
1bedd215
AC
3156 add_com ("attach", class_run, attach_command, _("\
3157Attach to a process or file outside of GDB.\n\
c906108c
SS
3158This command attaches to another target, of the same type as your last\n\
3159\"target\" command (\"info files\" will show your target stack).\n\
3160The command may take as argument a process id or a device file.\n\
3161For a process id, you must have permission to send the process a signal,\n\
3162and it must have the same effective uid as the debugger.\n\
3163When using \"attach\" with a process id, the debugger finds the\n\
3164program running in the process, looking first in the current working\n\
3165directory, or (if not found there) using the source file search path\n\
3166(see the \"directory\" command). You can also use the \"file\" command\n\
1bedd215 3167to specify the program, and to load its symbol table."));
c906108c 3168
f73adfeb 3169 add_prefix_cmd ("detach", class_run, detach_command, _("\
1bedd215 3170Detach a process or file previously attached.\n\
c906108c 3171If a process, it is no longer traced, and it continues its execution. If\n\
f73adfeb
AS
3172you were debugging a file, the file is closed and gdb no longer accesses it."),
3173 &detachlist, "detach ", 0, &cmdlist);
c906108c 3174
1bedd215
AC
3175 add_com ("disconnect", class_run, disconnect_command, _("\
3176Disconnect from a target.\n\
6ad8ae5c 3177The target will wait for another debugger to connect. Not available for\n\
1bedd215 3178all targets."));
6ad8ae5c 3179
de0bea00 3180 c = add_com ("signal", class_run, signal_command, _("\
486c7739
MF
3181Continue program with the specified signal.\n\
3182Usage: signal SIGNAL\n\
2edda2ff 3183The SIGNAL argument is processed the same as the handle command.\n\
486c7739
MF
3184\n\
3185An argument of \"0\" means continue the program without sending it a signal.\n\
3186This is useful in cases where the program stopped because of a signal,\n\
81219e53
DE
3187and you want to resume the program while discarding the signal.\n\
3188\n\
3189In a multi-threaded program the signal is delivered to, or discarded from,\n\
3190the current thread only."));
3191 set_cmd_completer (c, signal_completer);
3192
3193 c = add_com ("queue-signal", class_run, queue_signal_command, _("\
3194Queue a signal to be delivered to the current thread when it is resumed.\n\
3195Usage: queue-signal SIGNAL\n\
3196The SIGNAL argument is processed the same as the handle command.\n\
3197It is an error if the handling state of SIGNAL is \"nopass\".\n\
3198\n\
3199An argument of \"0\" means remove any currently queued signal from\n\
3200the current thread. This is useful in cases where the program stopped\n\
3201because of a signal, and you want to resume it while discarding the signal.\n\
3202\n\
3203In a multi-threaded program the signal is queued with, or discarded from,\n\
3204the current thread only."));
de0bea00 3205 set_cmd_completer (c, signal_completer);
c906108c 3206
1bedd215
AC
3207 add_com ("stepi", class_run, stepi_command, _("\
3208Step one instruction exactly.\n\
486c7739
MF
3209Usage: stepi [N]\n\
3210Argument N means step N times (or till program stops for another \
3e43a32a 3211reason)."));
57b4f16e 3212 add_com_alias ("si", "stepi", class_run, 0);
c906108c 3213
1bedd215
AC
3214 add_com ("nexti", class_run, nexti_command, _("\
3215Step one instruction, but proceed through subroutine calls.\n\
486c7739
MF
3216Usage: nexti [N]\n\
3217Argument N means step N times (or till program stops for another \
3e43a32a 3218reason)."));
57b4f16e 3219 add_com_alias ("ni", "nexti", class_run, 0);
c906108c 3220
1bedd215
AC
3221 add_com ("finish", class_run, finish_command, _("\
3222Execute until selected stack frame returns.\n\
486c7739 3223Usage: finish\n\
1bedd215 3224Upon return, the value returned is printed and put in the value history."));
0e479716 3225 add_com_alias ("fin", "finish", class_run, 1);
c906108c 3226
1bedd215
AC
3227 add_com ("next", class_run, next_command, _("\
3228Step program, proceeding through subroutine calls.\n\
486c7739
MF
3229Usage: next [N]\n\
3230Unlike \"step\", if the current source line calls a subroutine,\n\
3231this command does not enter the subroutine, but instead steps over\n\
dbf6a605 3232the call, in effect treating it as a single source line."));
c906108c 3233 add_com_alias ("n", "next", class_run, 1);
c906108c 3234
1bedd215
AC
3235 add_com ("step", class_run, step_command, _("\
3236Step program until it reaches a different source line.\n\
486c7739
MF
3237Usage: step [N]\n\
3238Argument N means step N times (or till program stops for another \
3e43a32a 3239reason)."));
c906108c
SS
3240 add_com_alias ("s", "step", class_run, 1);
3241
1bedd215 3242 c = add_com ("until", class_run, until_command, _("\
590042fc 3243Execute until past the current line or past a LOCATION.\n\
1bedd215 3244Execute until the program reaches a source line greater than the current\n\
3e43a32a
MS
3245or a specified location (same args as break command) within the current \
3246frame."));
5ba2abeb 3247 set_cmd_completer (c, location_completer);
c906108c 3248 add_com_alias ("u", "until", class_run, 1);
c5aa993b 3249
1bedd215 3250 c = add_com ("advance", class_run, advance_command, _("\
3e43a32a
MS
3251Continue the program up to the given location (same form as args for break \
3252command).\n\
1bedd215 3253Execution will also stop upon exit from the current stack frame."));
ae66c1fc
EZ
3254 set_cmd_completer (c, location_completer);
3255
1bedd215
AC
3256 c = add_com ("jump", class_run, jump_command, _("\
3257Continue program being debugged at specified line or address.\n\
0a8ba311 3258Usage: jump LOCATION\n\
c906108c 3259Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
1bedd215 3260for an address to start at."));
5ba2abeb 3261 set_cmd_completer (c, location_completer);
c1d780c2 3262 add_com_alias ("j", "jump", class_run, 1);
c906108c 3263
df983543 3264 add_com ("continue", class_run, continue_command, _("\
1bedd215 3265Continue program being debugged, after signal or breakpoint.\n\
486c7739 3266Usage: continue [N]\n\
c906108c
SS
3267If proceeding from breakpoint, a number N may be used as an argument,\n\
3268which means to set the ignore count of that breakpoint to N - 1 (so that\n\
8cae4b3f
PA
3269the breakpoint won't break until the Nth time it is reached).\n\
3270\n\
3271If non-stop mode is enabled, continue only the current thread,\n\
3272otherwise all the threads in the program are continued. To \n\
3273continue all stopped threads in non-stop mode, use the -a option.\n\
3274Specifying -a and an ignore count simultaneously is an error."));
c906108c
SS
3275 add_com_alias ("c", "cont", class_run, 1);
3276 add_com_alias ("fg", "cont", class_run, 1);
3277
1bedd215 3278 c = add_com ("run", class_run, run_command, _("\
4e5a4f58
JB
3279Start debugged program.\n"
3280RUN_ARGS_HELP));
5ba2abeb 3281 set_cmd_completer (c, filename_completer);
c906108c 3282 add_com_alias ("r", "run", class_run, 1);
c906108c 3283
1bedd215 3284 c = add_com ("start", class_run, start_command, _("\
4e5a4f58
JB
3285Start the debugged program stopping at the beginning of the main procedure.\n"
3286RUN_ARGS_HELP));
3287 set_cmd_completer (c, filename_completer);
3288
3289 c = add_com ("starti", class_run, starti_command, _("\
3290Start the debugged program stopping at the first instruction.\n"
3291RUN_ARGS_HELP));
a4d5f2e0
JB
3292 set_cmd_completer (c, filename_completer);
3293
0a07590b 3294 add_com ("interrupt", class_run, interrupt_command,
df983543 3295 _("Interrupt the execution of the debugged program.\n\
8cae4b3f
PA
3296If non-stop mode is enabled, interrupt only the current thread,\n\
3297otherwise all the threads in the program are stopped. To \n\
3298interrupt all running threads in non-stop mode, use the -a option."));
43ff13b4 3299
11db9430 3300 c = add_info ("registers", info_registers_command, _("\
1bedd215 3301List of integer registers and their contents, for selected stack frame.\n\
b67d92b0
SH
3302One or more register names as argument means describe the given registers.\n\
3303One or more register group names as argument means describe the registers\n\
3304in the named register groups."));
7194c49b 3305 add_info_alias ("r", "registers", 1);
71c24708 3306 set_cmd_completer (c, reg_or_group_completer);
c906108c 3307
11db9430 3308 c = add_info ("all-registers", info_all_registers_command, _("\
1bedd215 3309List of all registers and their contents, for selected stack frame.\n\
b67d92b0
SH
3310One or more register names as argument means describe the given registers.\n\
3311One or more register group names as argument means describe the registers\n\
3312in the named register groups."));
71c24708 3313 set_cmd_completer (c, reg_or_group_completer);
c906108c 3314
11db9430 3315 add_info ("program", info_program_command,
1bedd215 3316 _("Execution status of the program."));
c906108c 3317
11db9430 3318 add_info ("float", info_float_command,
590042fc 3319 _("Print the status of the floating point unit."));
c906108c 3320
11db9430 3321 add_info ("vector", info_vector_command,
590042fc 3322 _("Print the status of the vector unit."));
145b16a9
UW
3323
3324 add_prefix_cmd ("proc", class_info, info_proc_cmd,
3325 _("\
73f1bd76 3326Show additional information about a process.\n\
145b16a9
UW
3327Specify any process id, or use the program being debugged by default."),
3328 &info_proc_cmdlist, "info proc ",
3329 1/*allow-unknown*/, &infolist);
3330
3331 add_cmd ("mappings", class_info, info_proc_cmd_mappings, _("\
73f1bd76 3332List memory regions mapped by the specified process."),
145b16a9
UW
3333 &info_proc_cmdlist);
3334
3335 add_cmd ("stat", class_info, info_proc_cmd_stat, _("\
3336List process info from /proc/PID/stat."),
3337 &info_proc_cmdlist);
3338
3339 add_cmd ("status", class_info, info_proc_cmd_status, _("\
3340List process info from /proc/PID/status."),
3341 &info_proc_cmdlist);
3342
3343 add_cmd ("cwd", class_info, info_proc_cmd_cwd, _("\
73f1bd76 3344List current working directory of the specified process."),
145b16a9
UW
3345 &info_proc_cmdlist);
3346
3347 add_cmd ("cmdline", class_info, info_proc_cmd_cmdline, _("\
73f1bd76 3348List command line arguments of the specified process."),
145b16a9
UW
3349 &info_proc_cmdlist);
3350
3351 add_cmd ("exe", class_info, info_proc_cmd_exe, _("\
73f1bd76 3352List absolute filename for executable of the specified process."),
145b16a9
UW
3353 &info_proc_cmdlist);
3354
e98ee8c4
JB
3355 add_cmd ("files", class_info, info_proc_cmd_files, _("\
3356List files opened by the specified process."),
3357 &info_proc_cmdlist);
3358
145b16a9 3359 add_cmd ("all", class_info, info_proc_cmd_all, _("\
73f1bd76 3360List all available info about the specified process."),
145b16a9 3361 &info_proc_cmdlist);
000439d5
TT
3362
3363 add_setshow_boolean_cmd ("finish", class_support,
3364 &user_print_options.finish_print, _("\
3365Set whether `finish' prints the return value."), _("\
3366Show whether `finish' prints the return value."), NULL,
3367 NULL,
3368 show_print_finish,
3369 &setprintlist, &showprintlist);
c906108c 3370}
This page took 2.152577 seconds and 4 git commands to generate.