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