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