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