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